From a56ed7bbab250521f961c1ccf2d1efaf4522df67 Mon Sep 17 00:00:00 2001 From: Openarl <19189971+Openarl@users.noreply.github.com> Date: Mon, 16 Mar 2020 21:36:54 +1300 Subject: [PATCH] Release 1.4.163 - Updated skills - Fixed Cluster Jewel layout - Fixed Small Cluster Jewels allowing 2 notables - Fixed passive spec copying - Fixed Minion Instability --- CHANGELOG.md | 9 + Classes/Item.lua | 14 +- Classes/ItemsTab.lua | 3 +- Classes/PassiveSpec.lua | 44 +- Classes/PassiveSpecListControl.lua | 3 +- Data/3_0/ClusterJewels.lua | 1377 ++-- Data/3_0/Gems.lua | 18 +- Data/3_0/Minions.lua | 3 +- Data/3_0/ModCache.lua | 2 +- Data/3_0/ModFlask.lua | 84 +- Data/3_0/ModItem.lua | 7174 ++++++++--------- Data/3_0/ModJewel.lua | 442 +- Data/3_0/ModJewelAbyss.lua | 988 +-- Data/3_0/ModJewelCluster.lua | 994 +-- Data/3_0/ModMaster.lua | 1464 ++-- Data/3_0/Skills/act_dex.lua | 1011 +-- Data/3_0/Skills/act_int.lua | 1082 +-- Data/3_0/Skills/act_str.lua | 70 +- Data/3_0/Skills/glove.lua | 120 +- Data/3_0/Skills/minion.lua | 84 +- Data/3_0/Skills/other.lua | 131 +- Data/3_0/Skills/spectre.lua | 32 +- Data/3_0/Skills/sup_dex.lua | 337 +- Data/3_0/Skills/sup_int.lua | 374 +- Data/3_0/Skills/sup_str.lua | 86 +- .../active_skill_gem_stat_descriptions.lua | 2 +- .../curse_skill_stat_descriptions.lua | 2 +- .../gem_stat_descriptions.lua | 2 +- .../minion_skill_stat_descriptions.lua | 2 +- .../minion_spell_skill_stat_descriptions.lua | 2 +- .../monster_stat_descriptions.lua | 2 +- .../offering_skill_stat_descriptions.lua | 2 +- .../skill_stat_descriptions.lua | 2 +- .../StatDescriptions/stat_descriptions.lua | 2 +- Data/Global.lua | 7 + Export/Scripts/cluster.lua | 80 +- Export/Scripts/mods.lua | 9 +- Export/Scripts/skills.lua | 7 + Export/Skills/act_dex.txt | 25 +- Export/Skills/act_int.txt | 3 + Export/spec.lua | 16 +- Modules/CalcPerform.lua | 2 +- Modules/ModParser-3_0.lua | 3 +- changelog.txt | 8 + manifest.xml | 76 +- 45 files changed, 8305 insertions(+), 7895 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35566b68e..118457edd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +### 1.4.163 - 2020/03/16 + * Applied the skill reworks and balance changes for 3.10.0 + * New skills are still to come + * Fixed ordering of notables in Cluster Jewel wheels + * Various fixes to the layout of passives in Cluster Jewel wheels + * Fixed issue allowing 2 Notable passives to be crafted onto Small Cluster Jewels + * Duplicating passive trees now correctly copies allocated nodes in Cluster Jewel wheels + * Fixed Minion Instability + ### 1.4.162 - 2020/03/15 * Fixed Cluster Jewels not updating their cluster layouts when edited * Fixed Rigwald's Curse not correctly converting Claw modifiers diff --git a/Classes/Item.lua b/Classes/Item.lua index 0213c9c83..a87398b48 100644 --- a/Classes/Item.lua +++ b/Classes/Item.lua @@ -109,7 +109,7 @@ function ItemClass:ParseRaw(raw) self.corruptable = self.base.type ~= "Flask" and self.base.subType ~= "Cluster" self.shaperElderTags = data.specialBaseTags[self.type] self.canBeShaperElder = self.shaperElderTags - self.clusterJewel = verData.clusterJewels and verData.clusterJewels[self.baseName] + self.clusterJewel = verData.clusterJewels and verData.clusterJewels.jewels[self.baseName] end self.variantList = nil self.prefixes = { } @@ -425,14 +425,22 @@ function ItemClass:NormaliseQuality() end function ItemClass:GetModSpawnWeight(mod, extraTags) + local weight = 0 if self.base then for i, key in ipairs(mod.weightKey) do if self.base.tags[key] or (extraTags and extraTags[key]) or (self.shaperElderTags and (self.shaper and self.shaperElderTags.shaper == key) or (self.elder and self.shaperElderTags.elder == key)) then - return mod.weightVal[i] + weight = mod.weightVal[i] + break + end + end + for i, key in ipairs(mod.weightMultiplierKey) do + if self.base.tags[key] or (extraTags and extraTags[key]) or (self.shaperElderTags and (self.shaper and self.shaperElderTags.shaper == key) or (self.elder and self.shaperElderTags.elder == key)) then + weight = weight * mod.weightMultiplierVal[i] / 100 + break end end end - return 0 + return weight end function ItemClass:BuildRaw() diff --git a/Classes/ItemsTab.lua b/Classes/ItemsTab.lua index d39acd16b..9fb95e580 100644 --- a/Classes/ItemsTab.lua +++ b/Classes/ItemsTab.lua @@ -932,8 +932,7 @@ function ItemsTabClass:AddItem(item, noAutoEquip, index) if replacing and (replacing.clusterJewel or item.clusterJewel) then -- We're replacing an existing item, and either the new or old one is a cluster jewel - local slot, itemSet = self:GetEquippedSlotForItem(item) - if slot and not itemSet then + if isValueInTable(self.build.spec.jewels, item.id) then -- Item is currently equipped, so we need to rebuild the graphs self.build.spec:BuildClusterJewelGraphs() end diff --git a/Classes/PassiveSpec.lua b/Classes/PassiveSpec.lua index d572e0aee..a1fbff908 100644 --- a/Classes/PassiveSpec.lua +++ b/Classes/PassiveSpec.lua @@ -703,8 +703,22 @@ function PassiveSpecClass:BuildSubgraph(jewel, parentSocket, id, upSize) }) end + -- Process list of notables + local notableList = { } + local sortOrder = self.build.data.clusterJewels.notableSortOrder + for _, name in ipairs(jewelData.clusterJewelNotables) do + local baseNode = self.tree.clusterNodeMap[name] + assert(baseNode, "Cluster notable not found: "..name) + assert(sortOrder[baseNode.dn], "Cluster notable has no sort order: "..name) + t_insert(notableList, baseNode) + end + table.sort(notableList, function(a, b) return sortOrder[a.dn] < sortOrder[b.dn] end) + local indicies = { } - local smallCount = m_min(m_max(jewelData.clusterJewelNodeCount or clusterJewel.maxNodes, clusterJewel.minNodes), clusterJewel.maxNodes) + local nodeCount = m_min(m_max(jewelData.clusterJewelNodeCount or clusterJewel.maxNodes, clusterJewel.minNodes), clusterJewel.maxNodes) + local socketCount = jewelData.clusterJewelSocketCount or 0 + local notableCount = #notableList + local smallCount = nodeCount - socketCount - notableCount local function makeJewel(nodeIndex, jewelIndex) -- Look for the socket @@ -725,24 +739,22 @@ function PassiveSpecClass:BuildSubgraph(jewel, parentSocket, id, upSize) } t_insert(subGraph.nodes, node) indicies[nodeIndex] = node - smallCount = smallCount - 1 end -- First pass: sockets - if jewelData.clusterJewelSocketCount == 1 and clusterJewel.size == "Large" then + if clusterJewel.size == "Large" and socketCount == 1 then -- Large clusters always have the single jewel at index 6 makeJewel(6, 1) else - local count = jewelData.clusterJewelSocketCount or 0 - assert(count <= #clusterJewel.socketIndicies) + assert(socketCount <= #clusterJewel.socketIndicies, "Too many sockets!") local getJewels = { 0, 2, 1 } - for i = 1, count do + for i = 1, socketCount do makeJewel(clusterJewel.socketIndicies[i], getJewels[i]) end end -- Second pass: notables - for _, name in ipairs(jewelData.clusterJewelNotables) do + for _, baseNode in ipairs(notableList) do -- Find a free index local nodeIndex for _, index in ipairs(clusterJewel.notableIndicies) do @@ -754,6 +766,7 @@ function PassiveSpecClass:BuildSubgraph(jewel, parentSocket, id, upSize) if not nodeIndex then for index = clusterJewel.totalIndicies - 2, 0, -2 do -- Silly fallback to handle maybe possible cases? + -- Update: cases shouldn't be allowed anymore, but we need to handle existing instances if not indicies[index] then nodeIndex = index break @@ -762,9 +775,10 @@ function PassiveSpecClass:BuildSubgraph(jewel, parentSocket, id, upSize) assert(nodeIndex, "No free index to place notable") end - -- Locate the base node - local baseNode = self.tree.clusterNodeMap[name] - assert(baseNode, "Cluster notable not found: "..name) + if clusterJewel.size == "Medium" and socketCount == 0 and notableCount == 2 then + -- Special rule for two notables in a Medium cluster + nodeIndex = indicies[4] and 8 or 4 + end -- Construct the new node local node = { @@ -780,7 +794,6 @@ function PassiveSpecClass:BuildSubgraph(jewel, parentSocket, id, upSize) } t_insert(subGraph.nodes, node) indicies[nodeIndex] = node - smallCount = smallCount - 1 end -- Third pass: small fill @@ -795,6 +808,15 @@ function PassiveSpecClass:BuildSubgraph(jewel, parentSocket, id, upSize) end assert(nodeIndex, "No free index to place small node") + if clusterJewel.size == "Medium" then + -- Special rules for small nodes in Medium clusters + if nodeCount == 5 and nodeIndex == 4 then + nodeIndex = indicies[3] and 10 or 3 + elseif nodeCount == 4 and nodeIndex == 8 then + nodeIndex = indicies[9] and 3 or 9 + end + end + -- Construct the new node local node = { type = "Normal", diff --git a/Classes/PassiveSpecListControl.lua b/Classes/PassiveSpecListControl.lua index a82a91502..cb48147e1 100644 --- a/Classes/PassiveSpecListControl.lua +++ b/Classes/PassiveSpecListControl.lua @@ -14,7 +14,8 @@ local PassiveSpecListClass = newClass("PassiveSpecListControl", "ListControl", f local newSpec = new("PassiveSpec", treeTab.build, self.selValue.treeVersion) newSpec.title = self.selValue.title newSpec.jewels = copyTable(self.selValue.jewels) - newSpec:DecodeURL(self.selValue:EncodeURL()) + newSpec:RestoreUndoState(self.selValue:CreateUndoState()) + newSpec:BuildClusterJewelGraphs() self:RenameSpec(newSpec, true) end) self.controls.copy.enabled = function() diff --git a/Data/3_0/ClusterJewels.lua b/Data/3_0/ClusterJewels.lua index 35bad6bb9..eb39423d3 100644 --- a/Data/3_0/ClusterJewels.lua +++ b/Data/3_0/ClusterJewels.lua @@ -2,560 +2,845 @@ -- Jewel data (c) Grinding Gear Games return { - ["Small Cluster Jewel"] = { - size = "Small", - sizeIndex = 0, - minNodes = 2, - maxNodes = 3, - smallIndicies = { 0, 4, 2 }, - notableIndicies = { 4 }, - socketIndicies = { 4 }, - totalIndicies = 6, - skills = { - ["affliction_maximum_life"] = { - name = "Life", - icon = "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png", - tag = "affliction_maximum_life", - stats = { "4% increased maximum Life" }, - enchant = { - "Added Small Passive Skills grant: 4% increased maximum Life", - }, - }, - ["affliction_maximum_energy_shield"] = { - name = "Energy Shield", - icon = "Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", - tag = "affliction_maximum_energy_shield", - stats = { "6% increased maximum Energy Shield" }, - enchant = { - "Added Small Passive Skills grant: 6% increased maximum Energy Shield", - }, - }, - ["affliction_maximum_mana"] = { - name = "Mana", - icon = "Art/2DArt/SkillIcons/passives/MaxManaNode.png", - tag = "affliction_maximum_mana", - stats = { "6% increased maximum Mana" }, - enchant = { - "Added Small Passive Skills grant: 6% increased maximum Mana", - }, - }, - ["affliction_armour"] = { - name = "Armour", - icon = "Art/2DArt/SkillIcons/passives/ArmourNode.png", - tag = "affliction_armour", - stats = { "15% increased Armour" }, - enchant = { - "Added Small Passive Skills grant: 15% increased Armour", - }, - }, - ["affliction_evasion"] = { - name = "Evasion", - icon = "Art/2DArt/SkillIcons/passives/EvasionNode.png", - tag = "affliction_evasion", - stats = { "15% increased Evasion Rating" }, - enchant = { - "Added Small Passive Skills grant: 15% increased Evasion Rating", - }, - }, - ["affliction_chance_to_block_attack_damage"] = { - name = "Chance to Block Attack Damage", - icon = "Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png", - tag = "affliction_chance_to_block", - stats = { "1% Chance to Block Attack Damage" }, - enchant = { - "Added Small Passive Skills grant: 1% Chance to Block Attack Damage", - }, - }, - ["affliction_chance_to_block_spell_damage"] = { - name = "Chance to Block Spell Damage", - icon = "Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png", - tag = "affliction_chance_to_block", - stats = { "1% Chance to Block Spell Damage" }, - enchant = { - "Added Small Passive Skills grant: 1% Chance to Block Spell Damage", - }, - }, - ["affliction_fire_resistance"] = { - name = "Fire Resistance", - icon = "Art/2DArt/SkillIcons/passives/FireResistNode.png", - tag = "affliction_fire_resistance", - stats = { "+15% to Fire Resistance" }, - enchant = { - "Added Small Passive Skills grant: +15% to Fire Resistance", - }, - }, - ["affliction_cold_resistance"] = { - name = "Cold Resistance", - icon = "Art/2DArt/SkillIcons/passives/ColdResistNode.png", - tag = "affliction_cold_resistance", - stats = { "+15% to Cold Resistance" }, - enchant = { - "Added Small Passive Skills grant: +15% to Cold Resistance", - }, - }, - ["affliction_lightning_resistance"] = { - name = "Lightning Resistance", - icon = "Art/2DArt/SkillIcons/passives/LightningResistNode.png", - tag = "affliction_lightning_resistance", - stats = { "+15% to Lightning Resistance" }, - enchant = { - "Added Small Passive Skills grant: +15% to Lightning Resistance", - }, - }, - ["affliction_chaos_resistance"] = { - name = "Chaos Resistance", - icon = "Art/2DArt/SkillIcons/passives/ChaosResistNode.png", - tag = "affliction_chaos_resistance", - stats = { "+12% to Chaos Resistance" }, - enchant = { - "Added Small Passive Skills grant: +12% to Chaos Resistance", - }, - }, - ["affliction_chance_to_dodge_attacks"] = { - name = "Chance to Dodge Attacks", - icon = "Art/2DArt/SkillIcons/passives/DodgeAtksNode.png", - tag = "affliction_chance_to_dodge_attacks", - stats = { "1% chance to Dodge Attack Hits" }, - enchant = { - "Added Small Passive Skills grant: 1% chance to Dodge Attack Hits", - }, - }, - ["affliction_strength"] = { - name = "Strength", - icon = "Art/2DArt/SkillIcons/passives/plusstrength.png", - tag = "affliction_strength", - stats = { "+10 to Strength" }, - enchant = { - "Added Small Passive Skills grant: +10 to Strength", - }, - }, - ["affliction_dexterity"] = { - name = "Dexterity", - icon = "Art/2DArt/SkillIcons/passives/plusdexterity.png", - tag = "affliction_dexterity", - stats = { "+10 to Dexterity" }, - enchant = { - "Added Small Passive Skills grant: +10 to Dexterity", - }, - }, - ["affliction_intelligence"] = { - name = "Intelligence", - icon = "Art/2DArt/SkillIcons/passives/plusintelligence.png", - tag = "affliction_intelligence", - stats = { "+10 to Intelligence" }, - enchant = { - "Added Small Passive Skills grant: +10 to Intelligence", + jewels = { + ["Small Cluster Jewel"] = { + size = "Small", + sizeIndex = 0, + minNodes = 2, + maxNodes = 3, + smallIndicies = { 0, 4, 2 }, + notableIndicies = { 4 }, + socketIndicies = { 4 }, + totalIndicies = 6, + skills = { + ["affliction_maximum_life"] = { + name = "Life", + icon = "Art/2DArt/SkillIcons/passives/IncreasedMaximumLifeNode.png", + tag = "affliction_maximum_life", + stats = { "4% increased maximum Life" }, + enchant = { + "Added Small Passive Skills grant: 4% increased maximum Life", + }, + }, + ["affliction_maximum_energy_shield"] = { + name = "Energy Shield", + icon = "Art/2DArt/SkillIcons/passives/EnergyShieldNode.png", + tag = "affliction_maximum_energy_shield", + stats = { "6% increased maximum Energy Shield" }, + enchant = { + "Added Small Passive Skills grant: 6% increased maximum Energy Shield", + }, + }, + ["affliction_maximum_mana"] = { + name = "Mana", + icon = "Art/2DArt/SkillIcons/passives/MaxManaNode.png", + tag = "affliction_maximum_mana", + stats = { "6% increased maximum Mana" }, + enchant = { + "Added Small Passive Skills grant: 6% increased maximum Mana", + }, + }, + ["affliction_armour"] = { + name = "Armour", + icon = "Art/2DArt/SkillIcons/passives/ArmourNode.png", + tag = "affliction_armour", + stats = { "15% increased Armour" }, + enchant = { + "Added Small Passive Skills grant: 15% increased Armour", + }, + }, + ["affliction_evasion"] = { + name = "Evasion", + icon = "Art/2DArt/SkillIcons/passives/EvasionNode.png", + tag = "affliction_evasion", + stats = { "15% increased Evasion Rating" }, + enchant = { + "Added Small Passive Skills grant: 15% increased Evasion Rating", + }, + }, + ["affliction_chance_to_block_attack_damage"] = { + name = "Chance to Block Attack Damage", + icon = "Art/2DArt/SkillIcons/passives/BlockAttackDmgNode.png", + tag = "affliction_chance_to_block", + stats = { "1% Chance to Block Attack Damage" }, + enchant = { + "Added Small Passive Skills grant: 1% Chance to Block Attack Damage", + }, + }, + ["affliction_chance_to_block_spell_damage"] = { + name = "Chance to Block Spell Damage", + icon = "Art/2DArt/SkillIcons/passives/BlockSpellDmgNode.png", + tag = "affliction_chance_to_block", + stats = { "1% Chance to Block Spell Damage" }, + enchant = { + "Added Small Passive Skills grant: 1% Chance to Block Spell Damage", + }, + }, + ["affliction_fire_resistance"] = { + name = "Fire Resistance", + icon = "Art/2DArt/SkillIcons/passives/FireResistNode.png", + tag = "affliction_fire_resistance", + stats = { "+15% to Fire Resistance" }, + enchant = { + "Added Small Passive Skills grant: +15% to Fire Resistance", + }, + }, + ["affliction_cold_resistance"] = { + name = "Cold Resistance", + icon = "Art/2DArt/SkillIcons/passives/ColdResistNode.png", + tag = "affliction_cold_resistance", + stats = { "+15% to Cold Resistance" }, + enchant = { + "Added Small Passive Skills grant: +15% to Cold Resistance", + }, + }, + ["affliction_lightning_resistance"] = { + name = "Lightning Resistance", + icon = "Art/2DArt/SkillIcons/passives/LightningResistNode.png", + tag = "affliction_lightning_resistance", + stats = { "+15% to Lightning Resistance" }, + enchant = { + "Added Small Passive Skills grant: +15% to Lightning Resistance", + }, + }, + ["affliction_chaos_resistance"] = { + name = "Chaos Resistance", + icon = "Art/2DArt/SkillIcons/passives/ChaosResistNode.png", + tag = "affliction_chaos_resistance", + stats = { "+12% to Chaos Resistance" }, + enchant = { + "Added Small Passive Skills grant: +12% to Chaos Resistance", + }, + }, + ["affliction_chance_to_dodge_attacks"] = { + name = "Chance to Dodge Attacks", + icon = "Art/2DArt/SkillIcons/passives/DodgeAtksNode.png", + tag = "affliction_chance_to_dodge_attacks", + stats = { "1% chance to Dodge Attack Hits" }, + enchant = { + "Added Small Passive Skills grant: 1% chance to Dodge Attack Hits", + }, + }, + ["affliction_strength"] = { + name = "Strength", + icon = "Art/2DArt/SkillIcons/passives/plusstrength.png", + tag = "affliction_strength", + stats = { "+10 to Strength" }, + enchant = { + "Added Small Passive Skills grant: +10 to Strength", + }, + }, + ["affliction_dexterity"] = { + name = "Dexterity", + icon = "Art/2DArt/SkillIcons/passives/plusdexterity.png", + tag = "affliction_dexterity", + stats = { "+10 to Dexterity" }, + enchant = { + "Added Small Passive Skills grant: +10 to Dexterity", + }, + }, + ["affliction_intelligence"] = { + name = "Intelligence", + icon = "Art/2DArt/SkillIcons/passives/plusintelligence.png", + tag = "affliction_intelligence", + stats = { "+10 to Intelligence" }, + enchant = { + "Added Small Passive Skills grant: +10 to Intelligence", + }, }, }, }, - }, - ["Medium Cluster Jewel"] = { - size = "Medium", - sizeIndex = 1, - minNodes = 4, - maxNodes = 6, - smallIndicies = { 0, 6, 8, 4, 10, 2 }, - notableIndicies = { 6, 10, 2, 0 }, - socketIndicies = { 6 }, - totalIndicies = 12, - skills = { - ["affliction_fire_damage_over_time_multiplier"] = { - name = "Fire Damage over Time Multiplier", - icon = "Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltFireDamageMastery.png", - tag = "affliction_fire_damage_over_time_multiplier", - stats = { "+5% to Fire Damage over Time Multiplier" }, - enchant = { - "Added Small Passive Skills grant: +5% to Fire Damage over Time Multiplier", - }, - }, - ["affliction_chaos_damage_over_time_multiplier"] = { - name = "Chaos Damage over Time Multiplier", - icon = "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltChaosDamageMastery.png", - tag = "affliction_chaos_damage_over_time_multiplier", - stats = { "+5% to Chaos Damage over Time Multiplier" }, - enchant = { - "Added Small Passive Skills grant: +5% to Chaos Damage over Time Multiplier", - }, - }, - ["affliction_physical_damage_over_time_multiplier"] = { - name = "Physical Damage over Time Multiplier", - icon = "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltBloodMastery.png", - tag = "affliction_physical_damage_over_time_multiplier", - stats = { "+5% to Physical Damage over Time Multiplier" }, - enchant = { - "Added Small Passive Skills grant: +5% to Physical Damage over Time Multiplier", - }, - }, - ["affliction_cold_damage_over_time_multiplier"] = { - name = "Cold Damage over Time Multiplier", - icon = "Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltColdDamageMastery.png", - tag = "affliction_cold_damage_over_time_multiplier", - stats = { "+5% to Cold Damage over Time Multiplier" }, - enchant = { - "Added Small Passive Skills grant: +5% to Cold Damage over Time Multiplier", - }, - }, - ["affliction_damage_over_time_multiplier"] = { - name = "Damage over Time Multiplier", - icon = "Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltDamageOverTimeMultiplierMastery.png", - tag = "affliction_damage_over_time_multiplier", - stats = { "+4% to Damage over Time Multiplier" }, - enchant = { - "Added Small Passive Skills grant: +4% to Damage over Time Multiplier", - }, - }, - ["affliction_effect_of_non-damaging_ailments"] = { - name = "Effect of Non-Damaging Ailments", - icon = "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltNonDamagingAilmentsMastery.png", - tag = "affliction_effect_of_non-damaging_ailments", - stats = { "10% increased Effect of Non-Damaging Ailments" }, - enchant = { - "Added Small Passive Skills grant: 10% increased Effect of Non-Damaging Ailments", - }, - }, - ["affliction_aura_effect"] = { - name = "Aura Effect", - icon = "Art/2DArt/SkillIcons/passives/AuraEffectNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryAuras.png", - tag = "affliction_aura_effect", - stats = { "6% increased effect of Non-Curse Auras from your Skills" }, - enchant = { - "Added Small Passive Skills grant: 6% increased effect of Non-Curse Auras from your Skills", - }, - }, - ["affliction_curse_effect"] = { - name = "Curse Effect", - icon = "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryCurse.png", - tag = "affliction_curse_effect", - stats = { "5% increased Effect of your Curses" }, - enchant = { - "Added Small Passive Skills grant: 5% increased Effect of your Curses", - }, - }, - ["affliction_damage_while_you_have_a_herald"] = { - name = "Damage while you have a Herald", - icon = "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltDamageWithHeraldMastery.png", - tag = "affliction_damage_while_you_have_a_herald", - stats = { "10% increased Damage while affected by a Herald" }, - enchant = { - "Added Small Passive Skills grant: 10% increased Damage while affected by a Herald", - }, - }, - ["affliction_minion_damage_while_you_have_a_herald"] = { - name = "Minion Damage while you have a Herald", - icon = "Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.png", - tag = "affliction_minion_damage_while_you_have_a_herald", - stats = { "Minions deal 10% increased Damage while you are affected by a Herald" }, - enchant = { - "Added Small Passive Skills grant: Minions deal 10% increased Damage while you are affected by a Herald", - }, - }, - ["affliction_warcry_buff_effect"] = { - name = "Warcry Buff Effect", - icon = "Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltWarcryMastery.png", - tag = "affliction_warcry_buff_effect", - stats = { "15% increased Warcry Buff Effect" }, - enchant = { - "Added Small Passive Skills grant: 15% increased Warcry Buff Effect", - }, - }, - ["affliction_critical_chance"] = { - name = "Critical Chance", - icon = "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupCrit.png", - tag = "affliction_critical_chance", - stats = { "15% increased Critical Strike Chance" }, - enchant = { - "Added Small Passive Skills grant: 15% increased Critical Strike Chance", - }, - }, - ["affliction_minion_life"] = { - name = "Minion Life", - icon = "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupMinions.png", - tag = "affliction_minion_life", - stats = { "Minions have 12% increased maximum Life" }, - enchant = { - "Added Small Passive Skills grant: Minions have 12% increased maximum Life", - }, - }, - ["affliction_area_damage"] = { - name = "Area Damage", - icon = "Art/2DArt/SkillIcons/passives/AreaDmgNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltAreaDamageMastery.png", - tag = "affliction_area_damage", - stats = { "10% increased Area Damage" }, - enchant = { - "Added Small Passive Skills grant: 10% increased Area Damage", - }, - }, - ["affliction_projectile_damage"] = { - name = "Projectile Damage", - icon = "Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryProjectiles.png", - tag = "affliction_projectile_damage", - stats = { "10% increased Projectile Damage" }, - enchant = { - "Added Small Passive Skills grant: 10% increased Projectile Damage", - }, - }, - ["affliction_trap_and_mine_damage"] = { - name = "Trap and Mine Damage", - icon = "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryTraps.png", - tag = "affliction_trap_and_mine_damage", - stats = { "12% increased Trap Damage", "12% increased Mine Damage" }, - enchant = { - "Added Small Passive Skills grant: 12% increased Trap Damage", - "Added Small Passive Skills grant: 12% increased Mine Damage", - }, - }, - ["affliction_totem_damage"] = { - name = "Totem Damage", - icon = "Art/2DArt/SkillIcons/passives/TotemDmgNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryTotem.png", - tag = "affliction_totem_damage", - stats = { "12% increased Totem Damage" }, - enchant = { - "Added Small Passive Skills grant: 12% increased Totem Damage", - }, - }, - ["affliction_brand_damage"] = { - name = "Brand Damage", - icon = "Art/2DArt/SkillIcons/passives/BrandDmgNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryBrand.png", - tag = "affliction_brand_damage", - stats = { "12% increased Damage with Brand Skills" }, - enchant = { - "Added Small Passive Skills grant: 12% increased Damage with Brand Skills", - }, - }, - ["affliction_channelling_skill_damage"] = { - name = "Channelling Skill Damage", - icon = "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryChannelling.png", - tag = "affliction_channelling_skill_damage", - stats = { "Channelling Skills deal 12% increased Damage" }, - enchant = { - "Added Small Passive Skills grant: Channelling Skills deal 12% increased Damage", - }, - }, - ["affliction_flask_duration"] = { - name = "Flask Duration", - icon = "Art/2DArt/SkillIcons/passives/FlaskDurationnode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryFlasks.png", - tag = "affliction_flask_duration", - stats = { "6% increased Flask Effect Duration" }, - enchant = { - "Added Small Passive Skills grant: 6% increased Flask Effect Duration", - }, - }, - ["affliction_life_and_mana_recovery_from_flasks"] = { - name = "Life and Mana recovery from Flasks", - icon = "Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryFlasks.png", - tag = "affliction_life_and_mana_recovery_from_flasks", - stats = { "10% increased Life Recovery from Flasks", "10% increased Mana Recovery from Flasks" }, - enchant = { - "Added Small Passive Skills grant: 10% increased Life Recovery from Flasks", - "Added Small Passive Skills grant: 10% increased Mana Recovery from Flasks", + ["Medium Cluster Jewel"] = { + size = "Medium", + sizeIndex = 1, + minNodes = 4, + maxNodes = 6, + smallIndicies = { 0, 6, 8, 4, 10, 2 }, + notableIndicies = { 6, 10, 2, 0 }, + socketIndicies = { 6 }, + totalIndicies = 12, + skills = { + ["affliction_fire_damage_over_time_multiplier"] = { + name = "Fire Damage over Time Multiplier", + icon = "Art/2DArt/SkillIcons/passives/FireDamageOverTimeNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltFireDamageMastery.png", + tag = "affliction_fire_damage_over_time_multiplier", + stats = { "+5% to Fire Damage over Time Multiplier" }, + enchant = { + "Added Small Passive Skills grant: +5% to Fire Damage over Time Multiplier", + }, + }, + ["affliction_chaos_damage_over_time_multiplier"] = { + name = "Chaos Damage over Time Multiplier", + icon = "Art/2DArt/SkillIcons/passives/ChaosDamageOverTimeNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltChaosDamageMastery.png", + tag = "affliction_chaos_damage_over_time_multiplier", + stats = { "+5% to Chaos Damage over Time Multiplier" }, + enchant = { + "Added Small Passive Skills grant: +5% to Chaos Damage over Time Multiplier", + }, + }, + ["affliction_physical_damage_over_time_multiplier"] = { + name = "Physical Damage over Time Multiplier", + icon = "Art/2DArt/SkillIcons/passives/PhysicalDamageOverTimeNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltBloodMastery.png", + tag = "affliction_physical_damage_over_time_multiplier", + stats = { "+5% to Physical Damage over Time Multiplier" }, + enchant = { + "Added Small Passive Skills grant: +5% to Physical Damage over Time Multiplier", + }, + }, + ["affliction_cold_damage_over_time_multiplier"] = { + name = "Cold Damage over Time Multiplier", + icon = "Art/2DArt/SkillIcons/passives/ColdDamageOverTimeNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltColdDamageMastery.png", + tag = "affliction_cold_damage_over_time_multiplier", + stats = { "+5% to Cold Damage over Time Multiplier" }, + enchant = { + "Added Small Passive Skills grant: +5% to Cold Damage over Time Multiplier", + }, + }, + ["affliction_damage_over_time_multiplier"] = { + name = "Damage over Time Multiplier", + icon = "Art/2DArt/SkillIcons/passives/DamageOverTimeNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltDamageOverTimeMultiplierMastery.png", + tag = "affliction_damage_over_time_multiplier", + stats = { "+4% to Damage over Time Multiplier" }, + enchant = { + "Added Small Passive Skills grant: +4% to Damage over Time Multiplier", + }, + }, + ["affliction_effect_of_non-damaging_ailments"] = { + name = "Effect of Non-Damaging Ailments", + icon = "Art/2DArt/SkillIcons/passives/IncreasedNonDamageAilmentNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltNonDamagingAilmentsMastery.png", + tag = "affliction_effect_of_non-damaging_ailments", + stats = { "10% increased Effect of Non-Damaging Ailments" }, + enchant = { + "Added Small Passive Skills grant: 10% increased Effect of Non-Damaging Ailments", + }, + }, + ["affliction_aura_effect"] = { + name = "Aura Effect", + icon = "Art/2DArt/SkillIcons/passives/AuraEffectNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryAuras.png", + tag = "affliction_aura_effect", + stats = { "6% increased effect of Non-Curse Auras from your Skills" }, + enchant = { + "Added Small Passive Skills grant: 6% increased effect of Non-Curse Auras from your Skills", + }, + }, + ["affliction_curse_effect"] = { + name = "Curse Effect", + icon = "Art/2DArt/SkillIcons/passives/CurseEffectNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryCurse.png", + tag = "affliction_curse_effect", + stats = { "5% increased Effect of your Curses" }, + enchant = { + "Added Small Passive Skills grant: 5% increased Effect of your Curses", + }, + }, + ["affliction_damage_while_you_have_a_herald"] = { + name = "Damage while you have a Herald", + icon = "Art/2DArt/SkillIcons/passives/DmgHeraldSkillsNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltDamageWithHeraldMastery.png", + tag = "affliction_damage_while_you_have_a_herald", + stats = { "10% increased Damage while affected by a Herald" }, + enchant = { + "Added Small Passive Skills grant: 10% increased Damage while affected by a Herald", + }, + }, + ["affliction_minion_damage_while_you_have_a_herald"] = { + name = "Minion Damage while you have a Herald", + icon = "Art/2DArt/SkillIcons/passives/MinionDmgHeraldSkillsNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMinionDamageHeraldMastery.png", + tag = "affliction_minion_damage_while_you_have_a_herald", + stats = { "Minions deal 10% increased Damage while you are affected by a Herald" }, + enchant = { + "Added Small Passive Skills grant: Minions deal 10% increased Damage while you are affected by a Herald", + }, + }, + ["affliction_warcry_buff_effect"] = { + name = "Warcry Buff Effect", + icon = "Art/2DArt/SkillIcons/passives/IncreasedWarcryNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltWarcryMastery.png", + tag = "affliction_warcry_buff_effect", + stats = { "15% increased Warcry Buff Effect" }, + enchant = { + "Added Small Passive Skills grant: 15% increased Warcry Buff Effect", + }, + }, + ["affliction_critical_chance"] = { + name = "Critical Chance", + icon = "Art/2DArt/SkillIcons/passives/IncreaseCritChanceNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupCrit.png", + tag = "affliction_critical_chance", + stats = { "15% increased Critical Strike Chance" }, + enchant = { + "Added Small Passive Skills grant: 15% increased Critical Strike Chance", + }, + }, + ["affliction_minion_life"] = { + name = "Minion Life", + icon = "Art/2DArt/SkillIcons/passives/IncreaseMinionLifeNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupMinions.png", + tag = "affliction_minion_life", + stats = { "Minions have 12% increased maximum Life" }, + enchant = { + "Added Small Passive Skills grant: Minions have 12% increased maximum Life", + }, + }, + ["affliction_area_damage"] = { + name = "Area Damage", + icon = "Art/2DArt/SkillIcons/passives/AreaDmgNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltAreaDamageMastery.png", + tag = "affliction_area_damage", + stats = { "10% increased Area Damage" }, + enchant = { + "Added Small Passive Skills grant: 10% increased Area Damage", + }, + }, + ["affliction_projectile_damage"] = { + name = "Projectile Damage", + icon = "Art/2DArt/SkillIcons/passives/ProjectileDmgNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryProjectiles.png", + tag = "affliction_projectile_damage", + stats = { "10% increased Projectile Damage" }, + enchant = { + "Added Small Passive Skills grant: 10% increased Projectile Damage", + }, + }, + ["affliction_trap_and_mine_damage"] = { + name = "Trap and Mine Damage", + icon = "Art/2DArt/SkillIcons/passives/TrapAndMineDmgNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryTraps.png", + tag = "affliction_trap_and_mine_damage", + stats = { "12% increased Trap Damage", "12% increased Mine Damage" }, + enchant = { + "Added Small Passive Skills grant: 12% increased Trap Damage", + "Added Small Passive Skills grant: 12% increased Mine Damage", + }, + }, + ["affliction_totem_damage"] = { + name = "Totem Damage", + icon = "Art/2DArt/SkillIcons/passives/TotemDmgNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryTotem.png", + tag = "affliction_totem_damage", + stats = { "12% increased Totem Damage" }, + enchant = { + "Added Small Passive Skills grant: 12% increased Totem Damage", + }, + }, + ["affliction_brand_damage"] = { + name = "Brand Damage", + icon = "Art/2DArt/SkillIcons/passives/BrandDmgNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryBrand.png", + tag = "affliction_brand_damage", + stats = { "12% increased Damage with Brand Skills" }, + enchant = { + "Added Small Passive Skills grant: 12% increased Damage with Brand Skills", + }, + }, + ["affliction_channelling_skill_damage"] = { + name = "Channelling Skill Damage", + icon = "Art/2DArt/SkillIcons/passives/DmgWhenChannelSkillsNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryChannelling.png", + tag = "affliction_channelling_skill_damage", + stats = { "Channelling Skills deal 12% increased Damage" }, + enchant = { + "Added Small Passive Skills grant: Channelling Skills deal 12% increased Damage", + }, + }, + ["affliction_flask_duration"] = { + name = "Flask Duration", + icon = "Art/2DArt/SkillIcons/passives/FlaskDurationnode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryFlasks.png", + tag = "affliction_flask_duration", + stats = { "6% increased Flask Effect Duration" }, + enchant = { + "Added Small Passive Skills grant: 6% increased Flask Effect Duration", + }, + }, + ["affliction_life_and_mana_recovery_from_flasks"] = { + name = "Life and Mana recovery from Flasks", + icon = "Art/2DArt/SkillIcons/passives/LifeManaFlasksrecoverynode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryFlasks.png", + tag = "affliction_life_and_mana_recovery_from_flasks", + stats = { "10% increased Life Recovery from Flasks", "10% increased Mana Recovery from Flasks" }, + enchant = { + "Added Small Passive Skills grant: 10% increased Life Recovery from Flasks", + "Added Small Passive Skills grant: 10% increased Mana Recovery from Flasks", + }, }, }, }, - }, - ["Large Cluster Jewel"] = { - size = "Large", - sizeIndex = 2, - minNodes = 8, - maxNodes = 12, - smallIndicies = { 0, 4, 6, 8, 10, 2, 7, 5, 9, 3, 11, 1 }, - notableIndicies = { 6, 4, 8, 10, 2 }, - socketIndicies = { 4, 8, 6 }, - totalIndicies = 12, - skills = { - ["affliction_axe_and_sword_damage"] = { - name = "Axe and Sword Damage", - icon = "Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupSwordAndAxe.png", - tag = "affliction_axe_and_sword_damage", - stats = { "Axe Attacks deal 12% increased Damage with Hits and Ailments", "Sword Attacks deal 12% increased Damage with Hits and Ailments" }, - enchant = { - "Added Small Passive Skills grant: Axe Attacks deal 12% increased Damage with Hits and Ailments", - "Added Small Passive Skills grant: Sword Attacks deal 12% increased Damage with Hits and Ailments", - }, - }, - ["affliction_mace_and_staff_damage"] = { - name = "Mace and Staff Damage", - icon = "Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupMaceAndStaff.png", - tag = "affliction_mace_and_staff_damage", - stats = { "Staff Attacks deal 12% increased Damage with Hits and Ailments", "Mace or Sceptre Attacks deal 12% increased Damage with Hits and Ailments" }, - enchant = { - "Added Small Passive Skills grant: Mace or Sceptre Attacks deal 12% increased Damage with Hits and Ailments", - "Added Small Passive Skills grant: Staff Attacks deal 12% increased Damage with Hits and Ailments", - }, - }, - ["affliction_dagger_and_claw_damage"] = { - name = "Dagger and Claw Damage", - icon = "Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltDaggerClawDamageMastery.png", - tag = "affliction_dagger_and_claw_damage", - stats = { "Claw Attacks deal 12% increased Damage with Hits and Ailments", "Dagger Attacks deal 12% increased Damage with Hits and Ailments" }, - enchant = { - "Added Small Passive Skills grant: Dagger Attacks deal 12% increased Damage with Hits and Ailments", - "Added Small Passive Skills grant: Claw Attacks deal 12% increased Damage with Hits and Ailments", - }, - }, - ["affliction_bow_damage"] = { - name = "Bow Damage", - icon = "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupBow.png", - tag = "affliction_bow_damage", - stats = { "12% increased Damage with Bows" }, - enchant = { - "Added Small Passive Skills grant: 12% increased Damage with Bows", - }, - }, - ["affliction_wand_damage"] = { - name = "Wand Damage", - icon = "Art/2DArt/SkillIcons/passives/NodeWandDamage.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupWand.png", - tag = "affliction_wand_damage", - stats = { "Wand Attacks deal 12% increased Damage with Hits and Ailments" }, - enchant = { - "Added Small Passive Skills grant: Wand Attacks deal 12% increased Damage with Hits and Ailments", - }, - }, - ["affliction_damage_with_two_handed_melee_weapons"] = { - name = "Damage with Two Handed Melee Weapons", - icon = "Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupTwoHands.png", - tag = "affliction_damage_with_two_handed_melee_weapons", - stats = { "12% increased Damage with Two Handed Weapons" }, - enchant = { - "Added Small Passive Skills grant: 12% increased Damage with Two Handed Weapons", - }, - }, - ["affliction_attack_damage_while_dual_wielding_"] = { - name = "Attack Damage while Dual Wielding", - icon = "Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupDualWield.png", - tag = "affliction_attack_damage_while_dual_wielding_", - stats = { "12% increased Attack Damage while Dual Wielding" }, - enchant = { - "Added Small Passive Skills grant: 12% increased Attack Damage while Dual Wielding", - }, - }, - ["affliction_attack_damage_while_holding_a_shield"] = { - name = "Attack Damage while holding a Shield", - icon = "Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupShield.png", - tag = "affliction_attack_damage_while_holding_a_shield", - stats = { "12% increased Attack Damage while holding a Shield" }, - enchant = { - "Added Small Passive Skills grant: 12% increased Attack Damage while holding a Shield", - }, - }, - ["affliction_attack_damage_"] = { - name = "Attack Damage", - icon = "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.png", - tag = "affliction_attack_damage_", - stats = { "10% increased Attack Damage" }, - enchant = { - "Added Small Passive Skills grant: 10% increased Attack Damage", - }, - }, - ["affliction_spell_damage"] = { - name = "Spell Damage", - icon = "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupCast.png", - tag = "affliction_spell_damage", - stats = { "10% increased Spell Damage" }, - enchant = { - "Added Small Passive Skills grant: 10% increased Spell Damage", - }, - }, - ["affliction_elemental_damage"] = { - name = "Elemental Damage", - icon = "Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryElementalDamage.png", - tag = "affliction_elemental_damage", - stats = { "10% increased Elemental Damage" }, - enchant = { - "Added Small Passive Skills grant: 10% increased Elemental Damage", - }, - }, - ["affliction_physical_damage"] = { - name = "Physical Damage", - icon = "Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryPhysicalDamage.png", - tag = "affliction_physical_damage", - stats = { "12% increased Physical Damage" }, - enchant = { - "Added Small Passive Skills grant: 12% increased Physical Damage", - }, - }, - ["affliction_fire_damage"] = { - name = "Fire Damage", - icon = "Art/2DArt/SkillIcons/passives/FireDamagenode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupFire.png", - tag = "affliction_fire_damage", - stats = { "12% increased Fire Damage" }, - enchant = { - "Added Small Passive Skills grant: 12% increased Fire Damage", - }, - }, - ["affliction_lightning_damage"] = { - name = "Lightning Damage", - icon = "Art/2DArt/SkillIcons/passives/LightningDamagenode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupLightning.png", - tag = "affliction_lightning_damage", - stats = { "12% increased Lightning Damage" }, - enchant = { - "Added Small Passive Skills grant: 12% increased Lightning Damage", - }, - }, - ["affliction_cold_damage"] = { - name = "Cold Damage", - icon = "Art/2DArt/SkillIcons/passives/ColdDamagenode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupCold.png", - tag = "affliction_cold_damage", - stats = { "12% increased Cold Damage" }, - enchant = { - "Added Small Passive Skills grant: 12% increased Cold Damage", - }, - }, - ["affliction_chaos_damage"] = { - name = "Chaos Damage", - icon = "Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryChaos.png", - tag = "affliction_chaos_damage", - stats = { "12% increased Chaos Damage" }, - enchant = { - "Added Small Passive Skills grant: 12% increased Chaos Damage", - }, - }, - ["affliction_minion_damage"] = { - name = "Minion Damage", - icon = "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png", - masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupMinions.png", - tag = "affliction_minion_damage", - stats = { "Minions deal 10% increased Damage" }, - enchant = { - "Added Small Passive Skills grant: Minions deal 10% increased Damage", + ["Large Cluster Jewel"] = { + size = "Large", + sizeIndex = 2, + minNodes = 8, + maxNodes = 12, + smallIndicies = { 0, 4, 6, 8, 10, 2, 7, 5, 9, 3, 11, 1 }, + notableIndicies = { 6, 4, 8, 10, 2 }, + socketIndicies = { 4, 8, 6 }, + totalIndicies = 12, + skills = { + ["affliction_axe_and_sword_damage"] = { + name = "Axe and Sword Damage", + icon = "Art/2DArt/SkillIcons/passives/NodeAxeandSwordDamage.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupSwordAndAxe.png", + tag = "affliction_axe_and_sword_damage", + stats = { "Axe Attacks deal 12% increased Damage with Hits and Ailments", "Sword Attacks deal 12% increased Damage with Hits and Ailments" }, + enchant = { + "Added Small Passive Skills grant: Axe Attacks deal 12% increased Damage with Hits and Ailments", + "Added Small Passive Skills grant: Sword Attacks deal 12% increased Damage with Hits and Ailments", + }, + }, + ["affliction_mace_and_staff_damage"] = { + name = "Mace and Staff Damage", + icon = "Art/2DArt/SkillIcons/passives/NodeMaceandStaffDamage.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupMaceAndStaff.png", + tag = "affliction_mace_and_staff_damage", + stats = { "Staff Attacks deal 12% increased Damage with Hits and Ailments", "Mace or Sceptre Attacks deal 12% increased Damage with Hits and Ailments" }, + enchant = { + "Added Small Passive Skills grant: Mace or Sceptre Attacks deal 12% increased Damage with Hits and Ailments", + "Added Small Passive Skills grant: Staff Attacks deal 12% increased Damage with Hits and Ailments", + }, + }, + ["affliction_dagger_and_claw_damage"] = { + name = "Dagger and Claw Damage", + icon = "Art/2DArt/SkillIcons/passives/NodeDaggerandClawDamage.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltDaggerClawDamageMastery.png", + tag = "affliction_dagger_and_claw_damage", + stats = { "Claw Attacks deal 12% increased Damage with Hits and Ailments", "Dagger Attacks deal 12% increased Damage with Hits and Ailments" }, + enchant = { + "Added Small Passive Skills grant: Dagger Attacks deal 12% increased Damage with Hits and Ailments", + "Added Small Passive Skills grant: Claw Attacks deal 12% increased Damage with Hits and Ailments", + }, + }, + ["affliction_bow_damage"] = { + name = "Bow Damage", + icon = "Art/2DArt/SkillIcons/passives/NodeBowDamage.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupBow.png", + tag = "affliction_bow_damage", + stats = { "12% increased Damage with Bows" }, + enchant = { + "Added Small Passive Skills grant: 12% increased Damage with Bows", + }, + }, + ["affliction_wand_damage"] = { + name = "Wand Damage", + icon = "Art/2DArt/SkillIcons/passives/NodeWandDamage.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupWand.png", + tag = "affliction_wand_damage", + stats = { "Wand Attacks deal 12% increased Damage with Hits and Ailments" }, + enchant = { + "Added Small Passive Skills grant: Wand Attacks deal 12% increased Damage with Hits and Ailments", + }, + }, + ["affliction_damage_with_two_handed_melee_weapons"] = { + name = "Damage with Two Handed Melee Weapons", + icon = "Art/2DArt/SkillIcons/passives/NodeTwoHandedMeleeDamage.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupTwoHands.png", + tag = "affliction_damage_with_two_handed_melee_weapons", + stats = { "12% increased Damage with Two Handed Weapons" }, + enchant = { + "Added Small Passive Skills grant: 12% increased Damage with Two Handed Weapons", + }, + }, + ["affliction_attack_damage_while_dual_wielding_"] = { + name = "Attack Damage while Dual Wielding", + icon = "Art/2DArt/SkillIcons/passives/NodeDualWieldingDamage.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupDualWield.png", + tag = "affliction_attack_damage_while_dual_wielding_", + stats = { "12% increased Attack Damage while Dual Wielding" }, + enchant = { + "Added Small Passive Skills grant: 12% increased Attack Damage while Dual Wielding", + }, + }, + ["affliction_attack_damage_while_holding_a_shield"] = { + name = "Attack Damage while holding a Shield", + icon = "Art/2DArt/SkillIcons/passives/NodeHoldingShieldDamage.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupShield.png", + tag = "affliction_attack_damage_while_holding_a_shield", + stats = { "12% increased Attack Damage while holding a Shield" }, + enchant = { + "Added Small Passive Skills grant: 12% increased Attack Damage while holding a Shield", + }, + }, + ["affliction_attack_damage_"] = { + name = "Attack Damage", + icon = "Art/2DArt/SkillIcons/passives/IncreasedAttackDamageNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltAttackDamageMastery.png", + tag = "affliction_attack_damage_", + stats = { "10% increased Attack Damage" }, + enchant = { + "Added Small Passive Skills grant: 10% increased Attack Damage", + }, + }, + ["affliction_spell_damage"] = { + name = "Spell Damage", + icon = "Art/2DArt/SkillIcons/passives/IncreasedSpellDamageNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupCast.png", + tag = "affliction_spell_damage", + stats = { "10% increased Spell Damage" }, + enchant = { + "Added Small Passive Skills grant: 10% increased Spell Damage", + }, + }, + ["affliction_elemental_damage"] = { + name = "Elemental Damage", + icon = "Art/2DArt/SkillIcons/passives/ElementalDamagenode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryElementalDamage.png", + tag = "affliction_elemental_damage", + stats = { "10% increased Elemental Damage" }, + enchant = { + "Added Small Passive Skills grant: 10% increased Elemental Damage", + }, + }, + ["affliction_physical_damage"] = { + name = "Physical Damage", + icon = "Art/2DArt/SkillIcons/passives/PhysicalDamagenode2.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryPhysicalDamage.png", + tag = "affliction_physical_damage", + stats = { "12% increased Physical Damage" }, + enchant = { + "Added Small Passive Skills grant: 12% increased Physical Damage", + }, + }, + ["affliction_fire_damage"] = { + name = "Fire Damage", + icon = "Art/2DArt/SkillIcons/passives/FireDamagenode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupFire.png", + tag = "affliction_fire_damage", + stats = { "12% increased Fire Damage" }, + enchant = { + "Added Small Passive Skills grant: 12% increased Fire Damage", + }, + }, + ["affliction_lightning_damage"] = { + name = "Lightning Damage", + icon = "Art/2DArt/SkillIcons/passives/LightningDamagenode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupLightning.png", + tag = "affliction_lightning_damage", + stats = { "12% increased Lightning Damage" }, + enchant = { + "Added Small Passive Skills grant: 12% increased Lightning Damage", + }, + }, + ["affliction_cold_damage"] = { + name = "Cold Damage", + icon = "Art/2DArt/SkillIcons/passives/ColdDamagenode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupCold.png", + tag = "affliction_cold_damage", + stats = { "12% increased Cold Damage" }, + enchant = { + "Added Small Passive Skills grant: 12% increased Cold Damage", + }, + }, + ["affliction_chaos_damage"] = { + name = "Chaos Damage", + icon = "Art/2DArt/SkillIcons/passives/ChaosDamagenode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryChaos.png", + tag = "affliction_chaos_damage", + stats = { "12% increased Chaos Damage" }, + enchant = { + "Added Small Passive Skills grant: 12% increased Chaos Damage", + }, + }, + ["affliction_minion_damage"] = { + name = "Minion Damage", + icon = "Art/2DArt/SkillIcons/passives/IncreasedMinionDamageNode.png", + masteryIcon = "Art/2DArt/SkillIcons/passives/AltMasteryGroupMinions.png", + tag = "affliction_minion_damage", + stats = { "Minions deal 10% increased Damage" }, + enchant = { + "Added Small Passive Skills grant: Minions deal 10% increased Damage", + }, }, }, }, }, + notableSortOrder = { + ["Prodigious Defence"] = 11214, + ["Advance Guard"] = 11215, + ["Gladiatorial Combat"] = 11216, + ["Strike Leader"] = 11217, + ["Powerful Ward"] = 11218, + ["Enduring Ward"] = 11219, + ["Gladiator's Fortitude"] = 11220, + ["Precise Retaliation"] = 11221, + ["Veteran Defender"] = 11222, + ["Iron Breaker"] = 11223, + ["Deep Cuts"] = 11224, + ["Master the Fundamentals"] = 11225, + ["Force Multiplier"] = 11226, + ["Furious Assault"] = 11227, + ["Vicious Skewering"] = 11228, + ["Grim Oath"] = 11229, + ["Battle-Hardened"] = 11230, + ["Replenishing Presence"] = 11231, + ["Master of Command"] = 11232, + ["First Among Equals"] = 11233, + ["Purposeful Harbinger"] = 11234, + ["Precise Commander"] = 11235, + ["Pure Commander"] = 11236, + ["Stalwart Commander"] = 11237, + ["Vengeful Commander"] = 11238, + ["Skullbreaker"] = 11239, + ["Pressure Points"] = 11240, + ["Overwhelming Malice"] = 11241, + ["Magnifier"] = 11242, + ["Savage Response"] = 11243, + ["Eye of the Storm"] = 11244, + ["Basics of Pain"] = 11245, + ["Quick Getaway"] = 11246, + ["Assert Dominance"] = 11247, + ["Vast Power"] = 11248, + ["Powerful Assault"] = 11249, + ["Intensity"] = 11250, + ["Titanic Swings"] = 11251, + ["Towering Threat"] = 11252, + ["Ancestral Echo"] = 11253, + ["Ancestral Reach"] = 11254, + ["Ancestral Might"] = 11255, + ["Ancestral Preservation"] = 11256, + ["Snaring Spirits"] = 11257, + ["Sleepless Sentries"] = 11258, + ["Ancestral Guidance"] = 11259, + ["Ancestral Inspiration"] = 11260, + ["Vital Focus"] = 11261, + ["Rapid Infusion"] = 11262, + ["Unwavering Focus"] = 11263, + ["Enduring Focus"] = 11264, + ["Precise Focus"] = 11265, + ["Stoic Focus"] = 11266, + ["Hex Breaker"] = 11267, + ["Arcane Adept"] = 11268, + ["Distilled Perfection"] = 11269, + ["Spiked Concoction"] = 11270, + ["Fasting"] = 11271, + ["Mender's Wellspring"] = 11272, + ["Special Reserve"] = 11273, + ["Numbing Elixir"] = 11274, + ["Mob Mentality"] = 11275, + ["Cry Wolf"] = 11276, + ["Haunting Shout"] = 11277, + ["Lead By Example"] = 11278, + ["Provocateur"] = 11279, + ["Warning Call"] = 11280, + ["Rattling Bellow"] = 11281, + ["Bloodscent"] = 11282, + ["Run Through"] = 11283, + ["Wound Aggravation"] = 11284, + ["Overlord"] = 11285, + ["Expansive Might"] = 11286, + ["Weight Advantage"] = 11287, + ["Wind-up"] = 11288, + ["Fan of Blades"] = 11289, + ["Disease Vector"] = 11290, + ["Arcing Shot"] = 11291, + ["Tempered Arrowheads"] = 11292, + ["Broadside"] = 11293, + ["Explosive Force"] = 11294, + ["Opportunistic Fusilade"] = 11295, + ["Storm's Hand"] = 11296, + ["Battlefield Dominator"] = 11297, + ["Martial Mastery"] = 11298, + ["Surefooted Striker"] = 11299, + ["Graceful Execution"] = 11300, + ["Brutal Infamy"] = 11301, + ["Fearsome Warrior"] = 11302, + ["Combat Rhythm"] = 11303, + ["Hit and Run"] = 11304, + ["Insatiable Killer"] = 11305, + ["Mage Bane"] = 11306, + ["Martial Momentum"] = 11307, + ["Deadly Repartee"] = 11308, + ["Quick and Deadly"] = 11309, + ["Smite the Weak"] = 11310, + ["Heavy Hitter"] = 11311, + ["Martial Prowess"] = 11312, + ["Calamitous"] = 11313, + ["Devastator"] = 11314, + ["Fuel the Fight"] = 11315, + ["Drive the Destruction"] = 11316, + ["Feed the Fury"] = 11317, + ["Seal Mender"] = 11318, + ["Conjured Wall"] = 11319, + ["Arcane Heroism"] = 11320, + ["Practiced Caster"] = 11321, + ["Burden Projection"] = 11322, + ["Thaumophage"] = 11323, + ["Essence Rush"] = 11324, + ["Sap Psyche"] = 11325, + ["Sadist"] = 11326, + ["Corrosive Elements"] = 11327, + ["Doryani's Lesson"] = 11328, + ["Disorienting Display"] = 11329, + ["Prismatic Heart"] = 11330, + ["Widespread Destruction"] = 11331, + ["Master of Fire"] = 11332, + ["Smoking Remains"] = 11333, + ["Cremator"] = 11334, + ["Snowstorm"] = 11335, + ["Storm Drinker"] = 11336, + ["Paralysis"] = 11337, + ["Supercharge"] = 11338, + ["Blanketed Snow"] = 11339, + ["Cold to the Core"] = 11340, + ["Cold-Blooded Killer"] = 11341, + ["Touch of Cruelty"] = 11342, + ["Unwaveringly Evil"] = 11343, + ["Unspeakable Gifts"] = 11344, + ["Dark Ideation"] = 11345, + ["Unholy Grace"] = 11346, + ["Wicked Pall"] = 11347, + ["Renewal"] = 11348, + ["Raze and Pillage"] = 11349, + ["Rotten Claws"] = 11350, + ["Call to the Slaughter"] = 11351, + ["Skeletal Atrophy"] = 11640, + ["Hulking Corpses"] = 11352, + ["Vicious Bite"] = 11353, + ["Primordial Bond"] = 11354, + ["Blowback"] = 11355, + ["Fan the Flames"] = 11356, + ["Cooked Alive"] = 11357, + ["Burning Bright"] = 11358, + ["Wrapped in Flame"] = 11359, + ["Vivid Hues"] = 11360, + ["Rend"] = 11361, + ["Disorienting Wounds"] = 11362, + ["Compound Injury"] = 11363, + ["Septic Spells"] = 11364, + ["Low Tolerance"] = 11365, + ["Steady Torment"] = 11366, + ["Eternal Suffering"] = 11367, + ["Eldritch Inspiration"] = 11368, + ["Wasting Affliction"] = 11369, + ["Haemorrhage"] = 11370, + ["Flow of Life"] = 11371, + ["Exposure Therapy"] = 11372, + ["Brush with Death"] = 11373, + ["Vile Reinvigoration"] = 11374, + ["Circling Oblivion"] = 11375, + ["Brewed for Potency"] = 11376, + ["Astonishing Affliction"] = 11377, + ["Cold Conduction"] = 11378, + ["Inspired Oppression"] = 11379, + ["Chilling Presence"] = 11380, + ["Deep Chill"] = 11381, + ["Blast-Freeze"] = 11382, + ["Thunderstruck"] = 11383, + ["Stormrider"] = 11384, + ["Overshock"] = 11385, + ["Evil Eye"] = 11386, + ["Whispers of Death"] = 11387, + ["Forbidden Words"] = 11388, + ["Dark Discourse"] = 11389, + ["Victim Maker"] = 11390, + ["Master of Fear"] = 11391, + ["Wish for Death"] = 11392, + ["Heraldry"] = 11393, + ["Endbringer"] = 11394, + ["Cult-Leader"] = 11395, + ["Empowered Envoy"] = 11396, + ["Dark Messenger"] = 11397, + ["Agent of Destruction"] = 11398, + ["Lasting Impression"] = 11399, + ["Self-Fulfilling Prophecy"] = 11400, + ["Invigorating Portents"] = 11401, + ["Pure Agony"] = 11402, + ["Disciples"] = 11403, + ["Dread March"] = 11404, + ["Blessed Rebirth"] = 11405, + ["Life from Death"] = 11406, + ["Feasting Fiends"] = 11407, + ["Bodyguards"] = 11408, + ["Follow-Through"] = 11409, + ["Streamlined"] = 11410, + ["Shrieking Bolts"] = 11411, + ["Eye to Eye"] = 11412, + ["Repeater"] = 11413, + ["Aerodynamics"] = 11414, + ["Chip Away"] = 11415, + ["Seeker Runes"] = 11416, + ["Remarkable"] = 11417, + ["Brand Loyalty"] = 11418, + ["Holy Conquest"] = 11419, + ["Grand Design"] = 11420, + ["Set and Forget"] = 11421, + ["Expert Sabotage"] = 11422, + ["Guerilla Tactics"] = 11423, + ["Expendability"] = 11424, + ["Arcane Pyrotechnics"] = 11425, + ["Surprise Sabotage"] = 11426, + ["Careful Handling"] = 11427, + ["Peak Vigour"] = 11428, + ["Fettle"] = 11429, + ["Feast of Flesh"] = 11430, + ["Sublime Sensation"] = 11431, + ["Surging Vitality"] = 11432, + ["Peace Amidst Chaos"] = 11433, + ["Adrenaline"] = 11434, + ["Wall of Muscle"] = 11435, + ["Mindfulness"] = 11436, + ["Liquid Inspiration"] = 11437, + ["Openness"] = 11438, + ["Daring Ideas"] = 11439, + ["Clarity of Purpose"] = 11440, + ["Scintillating Idea"] = 11441, + ["Holistic Health"] = 11442, + ["Genius"] = 11443, + ["Improvisor"] = 11444, + ["Stubborn Student"] = 11445, + ["Savour the Moment"] = 11446, + ["Energy From Naught"] = 11447, + ["Will Shaper"] = 11448, + ["Spring Back"] = 11449, + ["Conservation of Energy"] = 11450, + ["Heart of Iron"] = 11451, + ["Prismatic Carapace"] = 11452, + ["Militarism"] = 11453, + ["Second Skin"] = 11454, + ["Dragon Hunter"] = 11455, + ["Enduring Composure"] = 11456, + ["Prismatic Dance"] = 11457, + ["Natural Vigour"] = 11458, + ["Untouchable"] = 11459, + ["Shifting Shadow"] = 11460, + ["Readiness"] = 11461, + ["Confident Combatant"] = 11462, + ["Flexible Sentry"] = 11463, + ["Vicious Guard"] = 11464, + ["Mystical Ward"] = 11465, + ["Rote Reinforcement"] = 11466, + ["Mage Hunter"] = 11467, + ["Riot Queller"] = 11468, + ["One with the Shield"] = 11469, + ["Aerialist"] = 11470, + ["Elegant Form"] = 11471, + ["Darting Movements"] = 11472, + ["No Witnesses"] = 11473, + ["Molten One's Mark"] = 11474, + ["Fire Attunement"] = 11475, + ["Pure Might"] = 11476, + ["Blacksmith"] = 11477, + ["Non-Flammable"] = 11478, + ["Winter Prowler"] = 11479, + ["Hibernator"] = 11480, + ["Pure Guile"] = 11481, + ["Alchemist"] = 11482, + ["Antifreeze"] = 11483, + ["Wizardry"] = 11484, + ["Capacitor"] = 11485, + ["Pure Aptitude"] = 11486, + ["Sage"] = 11487, + ["Insulated"] = 11488, + ["Born of Chaos"] = 11489, + ["Antivenom"] = 11490, + ["Rot-Resistant"] = 11491, + ["Blessed"] = 11492, + ["Student of Decay"] = 11493, + }, } \ No newline at end of file diff --git a/Data/3_0/Gems.lua b/Data/3_0/Gems.lua index f9a2fe94f..53bd452ac 100644 --- a/Data/3_0/Gems.lua +++ b/Data/3_0/Gems.lua @@ -2401,8 +2401,9 @@ return { spell = true, projectile = true, physical = true, + duration = true, }, - tagString = "Spell, Projectile, Physical", + tagString = "Spell, Projectile, Physical, Duration", reqStr = 0, reqDex = 60, reqInt = 40, @@ -3039,8 +3040,9 @@ return { active_skill = true, spell = true, minion = true, + physical = true, }, - tagString = "Spell, Minion", + tagString = "Spell, Minion, Physical", reqStr = 60, reqDex = 0, reqInt = 40, @@ -3176,8 +3178,9 @@ return { duration = true, minion = true, spell = true, + physical = true, }, - tagString = "Duration, Minion, Spell", + tagString = "Duration, Minion, Spell, Physical", reqStr = 0, reqDex = 60, reqInt = 40, @@ -4285,8 +4288,9 @@ return { spell = true, area = true, physical = true, + duration = true, }, - tagString = "Spell, AoE, Physical", + tagString = "Spell, AoE, Physical, Duration", reqStr = 0, reqDex = 100, reqInt = 0, @@ -5455,6 +5459,7 @@ return { duration = true, aura = true, physical = true, + banner = true, }, tagString = "AoE, Spell, Duration, Aura, Physical", reqStr = 100, @@ -5473,6 +5478,7 @@ return { duration = true, aura = true, physical = true, + banner = true, }, tagString = "AoE, Spell, Duration, Aura, Physical", reqStr = 100, @@ -6384,7 +6390,7 @@ return { defaultLevel = 5, }, ["Metadata/Items/Gems/SupportGemWeaponElementalDamagePlus"] = { - name = "Awakened Elemental Damage With Attacks", + name = "Awakened Elemental Damage with Attacks", grantedEffectId = "SupportWeaponElementalDamagePlus", tags = { attack = true, @@ -6736,7 +6742,7 @@ return { defaultLevel = 5, }, ["Metadata/Items/Gems/SupportGemIncreasedAreaOfEffectPlus"] = { - name = "Awakened Increased Area Of Effect", + name = "Awakened Increased Area of Effect", grantedEffectId = "SupportIncreasedAreaOfEffectPlus", tags = { intelligence = true, diff --git a/Data/3_0/Minions.lua b/Data/3_0/Minions.lua index 41929e32a..f75712696 100644 --- a/Data/3_0/Minions.lua +++ b/Data/3_0/Minions.lua @@ -174,6 +174,7 @@ minions["SummonedRagingSpirit"] = { mod("PhysicalDamageConvertToFire", "BASE", 50), -- MonsterSummonedElementalFire [base_physical_damage_%_to_convert_to_fire = 50] mod("PhysicalMin", "BASE", 4, ModFlag.Attack), -- RagingSpiritAddedPhys [attack_minimum_added_physical_damage = 4] [attack_maximum_added_physical_damage = 5] mod("PhysicalMax", "BASE", 5, ModFlag.Attack), -- RagingSpiritAddedPhys [attack_minimum_added_physical_damage = 4] [attack_maximum_added_physical_damage = 5] + -- CannotGainAfflictedMods [cannot_have_affliction_mods = 1] mod("Speed", "MORE", 40, ModFlag.Attack), -- MonsterSummonedSkullFastAttack1 [active_skill_attack_speed_+%_final = 40] }, } @@ -228,7 +229,7 @@ minions["RaisedSkeleton"] = { coldResist = 40, lightningResist = 40, chaosResist = 20, - damage = 4.05, + damage = 2.45, damageSpread = 0.4, attackTime = 0.8, attackRange = 8, diff --git a/Data/3_0/ModCache.lua b/Data/3_0/ModCache.lua index 3e0a63c66..8fd24d18f 100644 --- a/Data/3_0/ModCache.lua +++ b/Data/3_0/ModCache.lua @@ -1 +1 @@ -local c=...c["10% reduced Critical Strike Chance per Blitz Charge"]={{[1]={[1]={type="Multiplier",var="BlitzCharge"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=-10}},nil}c["Gain an Endurance Charge when a Power Charge expires or is consumed"]={nil,"Gain an Endurance Charge when a Power Charge expires or is consumed "}c["20% more Damage against Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=262144,name="Damage",type="MORE",value=20}},nil}c["30% increased Damage with Hits against Rare monsters When you Kill a Rare monster, you gain its mods for 20 seconds"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}}," against Rare monsters When you Kill a Rare monster, you gain its mods for 20 seconds "}c["5% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["10% chance to gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 10 seconds on Kill "}c["Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing"]={nil,"Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing "}c["20% increased Damage with Ailments"]={{[1]={flags=2048,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Unaffected by Enfeeble while affected by Grace 8% chance to Dodge Spells while affected by Haste"]={nil,"Unaffected by Enfeeble while affected by Grace 8% chance to Dodge Spells while affected by Haste "}c["Gain 50% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=50}},nil}c["3% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=3}},nil}c["Claw Attacks deal 20% increased Damage with Hits and Ailments"]={{[1]={flags=262144,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["2% reduced Damage taken per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-2}}," per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating 10% increased Movement Speed "}c["Non-critical strikes deal 25% Damage"]={{[1]={[1]={neg=true,type="Condition",var="CriticalStrike"},flags=4,keywordFlags=0,name="Damage",type="MORE",value=-75}},nil}c["30% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=30}},nil}c["Gain a Power Charge for each Enemy you hit with a Critical Strike"]={nil,"Gain a Power Charge for each Enemy you hit with a Critical Strike "}c["Socketed Gems are Supported by level 1 Ice Bite"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportFrenzyChargeOnSlayingFrozenEnemy"}}},nil}c["2% increased Minion Attack and Cast Speed per Skeleton you own Minions Regenerate 2.5% Life per Second"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}}}," Minion per you own Minions Regenerate 2.5% Life per Second "}c["+8 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=8}},nil}c["Reflects 1 to 1000 Physical Damage to Attackers on Block 10% of Damage Reflected Gained as Life"]={nil,"Reflects 1 to 1000 Physical Damage to Attackers on Block 10% of Damage Reflected Gained as Life "}c["Leech Energy Shield instead of Life"]={{[1]={flags=0,keywordFlags=0,name="GhostReaver",type="FLAG",value=true}},nil}c["8% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=8}},nil}c["24% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["Attack Projectiles always inflict Bleeding and Maim, and Knock Back Enemies Projectiles cannot Pierce, Fork or Chain"]={nil,"Attack Projectiles always inflict Bleeding and Maim, and Knock Back Enemies Projectiles cannot Pierce, Fork or Chain "}c["+25% to Critical Strike Multiplier if you dealt a Critical Strike with a Herald Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}}," if you dealt a Critical Strike with a Herald Skill Recently "}c["10% chance to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy Gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy Gain Onslaught for 10 seconds on Kill "}c["5% chance to double Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=5}}," to double "}c["33% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=33}},nil}c["+28% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=28}},nil}c["5% increased Skeleton Movement Speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}}}},nil}c["Can be modified while Corrupted Can have up to 5 Implicit Modifiers while Item has this Modifier"]={nil,"Can be modified while Corrupted Can have up to 5 Implicit Modifiers while Item has this Modifier "}c["20% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Chill Effect and Freeze duration on you is based on 65% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 65% of Energy Shield "}c["20% chance to Maim on Hit"]={{}," to Maim on Hit "}c["6% increased Attack and Cast Speed per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds 10% chance to Dodge Spell Hits if you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=2,keywordFlags=0,name="Speed",type="INC",value=6}}," per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds 10% chance to Dodge Hits "}c["20% increased Damage while you have a Summoned Golem 30% increased Effect of Buffs granted by your Golems Golems have 15% increased Maximum Life +1 to maximum number of Golems"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," while you have a Summoned 30% increased Effect of Buffs granted by your Golems Golems have 15% increased Maximum Life +1 to maximum number of Golems "}c["10% chance to gain an Endurance Charge when you Block Attack Skills deal 20% increased Damage with Ailments while Dual Wielding 10% chance to gain a Frenzy Charge when you Block"]={{[1]={[1]={type="Condition",var="DualWielding"},[2]={skillName="Frenzy",type="SkillName"},flags=2048,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain an Endurance Charge when you Block Attack Skills deal 20% increased 10% chance to gain aCharge when you Block "}c["+5% to maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=5}},nil}c["25% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=6.25}},nil}c["20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ShadeForm"}}},nil}c["20% more Damage with Hits and Ailments against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=786432,name="Damage",type="MORE",value=20}},nil}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons "}c["+15% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=15}},nil}c["200 Energy Shield Regenerated per Second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=200}},nil}c["Minions deal 15% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}}},nil}c["Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed"]={nil,"Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed "}c["25% increased Lightning Damage with Hits against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="LightningDamage",type="INC",value=25}},nil}c["Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius"]={nil,"Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius "}c["30% increased Mana Regeneration Rate if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil}c["+3% chance to Evade Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=3}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["15% increased Accuracy Rating with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["5% increased Movement Speed while you have Infusion"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}}," while you have Infusion "}c["Enemies you Kill have a 10% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"]={nil,"Enemies you Kill have a 10% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage "}c["+173 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=173}},nil}c["Adds 9 to 18 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=9},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=18}},nil}c["With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike cannot choose Cold"]={nil,"With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike cannot choose Cold "}c["+40 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=40},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=40}},nil}c["Adds 35 to 105 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=35},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=105}},nil}c["Lose Souls gained from Soul Eater on Flask Use"]={nil,"Lose Souls gained from Soul Eater on Flask Use "}c["Cannot be Ignited while on Low Life"]={nil,"Cannot be Ignited while on Low Life "}c["+15% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20% Minions have 20% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=2}}," of Life and Energy Shield per Minion, up to 20% Minions have 20% more Maximum Life "}c["15% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["40% of Physical Damage Converted to Cold Damage while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=40}},nil}c["8% increased Minion Duration"]={{[1]={[1]={skillType=21,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=8}},nil}c["13% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=13}},nil}c["25% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=25}},nil}c["With at least 40 Strength in Radius, 25% of Glacial"]={nil,"With at least 40 Strength in Radius, 25% of Glacial "}c["Gain Arcane Surge when you Summon a Totem"]={nil,"Gain Arcane Surge when you Summon a Totem "}c["Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=1}},nil}c["10% chance to gain Unholy Might for 10 seconds on Kill 5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Unholy Might for 10 seconds on Kill 5% chance to gain Onslaught for 3 seconds on Kill "}c["Totems are Immune to Fire Damage Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage"]={nil,"Totems are Immune to Fire Damage Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage "}c["8% increased Attack Speed with Maces or Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Your Critical Strikes have a 5% chance to deal Double Damage"]={nil,"Your Critical Strikes have a 5% chance to deal Double Damage "}c["10% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}},nil}c["Aspect of the Cat Reserves no Mana"]={{[1]={[1]={skillId="CatAspect",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Gain a Power or Frenzy Charge each second while Channelling"]={nil,"Gain a Power or Frenzy Charge each second while Channelling "}c["+3% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=3}},nil}c["10% increased Physical Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["2 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=2}},nil}c["40% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}},nil}c["Increases and Reductions to Light Radius also apply to Area of Effect at 50% of their value"]={{[1]={flags=0,keywordFlags=0,name="LightRadiusAppliesToAreaOfEffect",type="FLAG",value=true}},nil}c["With at least 40 Strength in Radius, Glacial Hammer deals"]={nil,"With at least 40 Strength in Radius, Glacial Hammer deals "}c["60% increased Melee Damage when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=256,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit "}c["10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-10}},nil}c["Minions explode when reduced to Low Life, dealing 33% of their maximum Life as Fire Damage to surrounding Enemies"]={{[1]={flags=0,keywordFlags=0,name="ExtraMinionSkill",type="LIST",value={skillId="MinionInstability"}}},nil}c["Knockback direction is reversed"]={nil,"Knockback direction is reversed "}c["+3% to maximum Block Chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=3}},nil}c["Your Critical Strikes have Culling Strike"]={nil,"Your Critical Strikes have Culling Strike "}c["13% increased Physical Damage with Ranged Weapons"]={{[1]={flags=67108868,keywordFlags=0,name="PhysicalDamage",type="INC",value=13}},nil}c["+10 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=10}},nil}c["You Regenerate 0.5% of Mana per second per Totem"]={nil,"You Regenerate 0.5% of Mana per second per Totem "}c["14% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["Unaffected by Temporal Chains while affected by Haste Adds 70 to 104 Cold Damage while affected by Hatred"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=70},[2]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=104}},"Unaffected bywhile affected by Haste while affected by Hatred "}c["25% increased Arctic Armour Buff Effect"]={{[1]={[1]={skillName="Arctic Armour",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}},nil}c["30% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["10% increased Attack Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed "}c["Gain Soul Eater during Flask Effect Lose Souls gained from Soul Eater on Flask Use"]={nil,"Gain Soul Eater during Flask Effect Lose Souls gained from Soul Eater on Flask Use "}c["18% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["Adds 110 to 150 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=110},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=150}},nil}c["8% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["25% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=25}},nil}c["20% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=20}},nil}c["20% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-20}},nil}c["35% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["30% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=30}},nil}c["Adds 151 to 203 Fire Damage to Hits with this Weapon against Blinded Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=458752,name="FireMin",type="BASE",value=151},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=458752,name="FireMax",type="BASE",value=203}},nil}c["Cannot inflict Shock"]={{[1]={flags=0,keywordFlags=0,name="CannotShock",type="FLAG",value=true}},nil}c["30% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil}c["26% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=26}},nil}c["+28 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=28}},nil}c["Warcries count as having 10 additional nearby Enemies 30% increased Warcry Buff Effect"]={nil,"Warcries count as having 10 additional nearby Enemies 30% increased Warcry Buff Effect "}c["Adds 9 to 13 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=9},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=13}},nil}c["When you create a Banner, it gains 40% of the Stages of your placed Banner You and Allies affected by your placed Banners Regenerate 0.1% of\nmaximum Life per second for each Stage"]={nil,"When you create a Banner, it gains 40% of the Stages of your placed Banner You and Allies affected by your placed Banners Regenerate 0.1% of\nmaximum Life per second for each Stage "}c["40% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=40}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10%"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% "}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life "}c["15% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["30% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["40% reduced Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-40}},nil}c["Left ring slot: +100 to maximum Energy Shield"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},nil}c["15% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["Mines cannot be Damaged for 5 seconds after being thrown"]={nil,"Mines cannot be Damaged for 5 seconds after being thrown "}c["63% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=63}},nil}c["Cold-only Splash Damage to surrounding targets With at least 40 Strength in Radius, 25% of Glacial"]={nil,"Cold-only Splash Damage to surrounding targets With at least 40 Strength in Radius, 25% of Glacial "}c["5% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=5}},nil}c["+30% to Critical Strike Multiplier against Enemies that are affected by Elemental Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"}},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Gain 5% of Fire Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageGainAsChaos",type="BASE",value=5}},nil}c["0.5% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.5}},nil}c["+180 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=180}},nil}c["Inherent effects from having Rage are Tripled"]={{[1]={flags=0,keywordFlags=0,name="Multiplier:RageEffect",type="BASE",value=2}},nil}c["12% increased Attack and Cast Speed per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=12}}," per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds "}c["60% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["60% increased Critical Strike Chance while you have at least 200 Intelligence"]={{[1]={[1]={stat="Int",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["33% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=262144,name="Damage",type="INC",value=33}},nil}c["The Effect of Chill on you is reversed"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffectIsReversed",type="FLAG",value=true}},nil}c["10% chance to gain Onslaught for 4 seconds on Kill 25% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="BASE",value=10}}," to gain Onslaught for 4 seconds on Kill 25% increased "}c["Auras from your Skills grant 3% increased Attack and Cast Speed to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=3}}}},nil}c["5% reduced Enemy Stun Threshold with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-5}},nil}c["Impales you inflict last 1 additional Hit"]={nil,"Impales you inflict last 1 additional Hit "}c["10% increased Physical Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["20% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=20}},nil}c["Triggers level 20 Death Walk when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="DeathWalk"}}},nil}c["+50% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}},nil}c["+10% to Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="DotMultiplier",type="BASE",value=10}},nil}c["Cannot be used with Chaos Inoculation"]={nil,"Cannot be used with Chaos Inoculation "}c["Cannot be Chilled while you have Onslaught"]={nil,"Cannot be Chilled while you have Onslaught "}c["Every 8 seconds, gain Avatar of Fire for 4 seconds"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds "}c["Creates Consecrated Ground on Use"]={{},nil}c["Iron Reflexes while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Iron Reflexes"}},nil}c["15% chance to Impale Enemies on Hit with Attacks"]={{}," to Impale Enemies on Hit "}c["10% chance to gain Onslaught for 4 seconds on Kill"]={{}," to gain Onslaught for 4 seconds on Kill "}c["When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has You and nearby Allies have 12% increased Movement Speed"]={nil,"When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has You and nearby Allies have 12% increased Movement Speed "}c["30% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["5% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=5}},nil}c["32% increased Damage if you've used a Travel Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=32}}," if you've used a Travel Skill Recently "}c["Grants Level 20 Bone Armour Skill"]={nil,nil}c["25% reduced Mana Cost of Skills that place Mines or throw Traps"]={{[1]={flags=0,keywordFlags=12288,name="ManaCost",type="INC",value=-25}},nil}c["You take 30% reduced Extra Damage from Critical Strikes +40 to maximum Life"]={nil,"You take 30% reduced Extra Damage from Critical Strikes +40 to maximum Life "}c["+15% to Critical Strike Multiplier with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritMultiplier",type="BASE",value=15}},nil}c["Flasks gain 3 Charges every 3 seconds 20% chance for Flasks you use to not consume Charges"]={nil,"Flasks gain 3 Charges every 3 seconds 20% chance for Flasks you use to not consume Charges "}c["15% reduced Mana Cost of Minion Skills"]={{[1]={[1]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}},nil}c["Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies +150 to Evasion Rating and Energy Shield"]={nil,"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies +150 to Evasion Rating and Energy Shield "}c["You gain Onslaught for 5 second per Endurance Charge when Hit 100% increased Onslaught Effect"]={nil,"You gain Onslaught for 5 second per Endurance Charge when Hit 100% increased Onslaught Effect "}c["225% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=225}},nil}c["12% increased Global Attack Speed per Green Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=1,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["Take 200 Physical Damage when you use a Movement Skill"]={nil,"200 Physical Damage when you use a Movement Skill "}c["Gain 10% of Physical Damage as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances "}c["40% more Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=40}},nil}c["Nearby Allies have 30% increased Item Rarity Nearby Allies' spells have Culling Strike"]={{}," Item Rarity Nearby Allies' s have Culling Strike "}c["25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=25}}," to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full You and nearby Allies have 8% increased Movement Speed "}c["+24 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}c["Adds 7 to 18 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=18}},nil}c["You and Allies affected by your placed Banners Regenerate 0.1% of"]={nil,"You and Allies affected by your placed Banners Regenerate 0.1% of "}c["You have Consecrated Ground around you while stationary"]={nil,"You have Consecrated Ground around you while stationary "}c["Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second"]={nil,"Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second "}c["Every second, Consume a nearby Corpse to Recover 5% of Life and Mana"]={nil,"Every second, Consume a nearby Corpse to Recover 5% of Life and Mana "}c["50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=50},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=50},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=50}},nil}c["Attacks with Melee Weapons deal 14% increased Damage with Ailments"]={{[1]={flags=33556480,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["100% of Lightning Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTakenAsCold",type="BASE",value=100}},nil}c["Grants level 21 Despair Curse Aura during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ExtraCurse",type="LIST",value={level=21,skillId="Despair"}}},nil}c["+140 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=140}},nil}c["Cannot Evade enemy Attacks"]={{[1]={flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}},nil}c["25% of Elemental Damage taken as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTakenAsChaos",type="BASE",value=25}},nil}c["Trigger Socketed Curse Spells when you cast a Curse Skill"]={nil,"Trigger Socketed Curse Spells when you cast a Curse Skill "}c["Take no Extra Damage from Critical Strikes"]={nil,"no Extra Damage from Critical Strikes "}c["Adds 237 to 272 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=237},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=272}},nil}c["You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={nil,"You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["10% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=10}},nil}c["+20 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=20}},nil}c["200% of Life Leech applies to enemies as Chaos Damage 15% increased Movement Speed while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeAsChaos",type="BASE",value=200}}," Leech applies to enemies 15% increased Movement Speed "}c["Purity of Elements Reserves no Mana"]={{[1]={[1]={skillId="Purity",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["5% reduced Area Damage taken from Hits +2 to Melee Weapon and Unarmed Attack range 10% increased Area of Effect if you have Stunned an Enemy Recently"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits +2 to Melee Weapon and Unarmed Attack range 10% increased Area of Effect if you have Stunned an Enemy Recently "}c["30% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}},nil}c["40% increased Damage with Hits against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["50% increased Critical Strike Chance while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["Bow Knockback at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=131072,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=2}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of Golems"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of Golems "}c["1% increased Fishing Line Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=1}}," Fishing Line "}c["Unwavering Stance"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Unwavering Stance"}},nil}c["25% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground "}c["50% increased Life Recovery Rate if you've taken Fire"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=50}}," if you've taken Fire "}c["2% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=2}},nil}c["50% chance to gain Elusive on Critical Strike 15% increased Attack and Cast Speed while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 15% increased while Elusive "}c["10% increased Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Skills supported by Unleash have +1 to maximum number of Seals"]={nil,"Skills supported by Unleash have +1 to maximum number of Seals "}c["You and Allies affected by Auras from your Skills have +20%"]={{}," "}c["Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Power Charge on Kill"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Power Charge on Kill "}c["-2 Physical Damage taken from Attacks 40% of Melee Physical Damage taken reflected to Attacker"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-2}}," from Attacks 40% of Physical Damage taken reflected to Attacker "}c["30% Chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}},nil}c["You and Allies affected by your placed Banners Regenerate 0.1% of maximum Life per second for each Stage"]={nil,"You and Allies affected by your placed Banners Regenerate 0.1% of maximum Life per second for each Stage "}c["20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Summoned 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time "}c["Enemies Hindered by you take 10% increased Chaos Damage"]={nil,"Enemies Hindered by you take 10% increased Chaos Damage "}c["Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges"]={nil,"Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges "}c["+28% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=28}},nil}c["Spell Skills have 10% increased Area of Effect"]={{[1]={flags=2,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["25% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=25}},nil}c["Unaffected by Chilled Ground while affected by Purity of Ice Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Chilled Ground while affected by Purity of Ice Unaffected by Frostbite while affected by Purity of Ice "}c["Life Regeneration has no effect."]={nil,"Life Regeneration has no effect. "}c["20% chance to Recover 10% of Maximum Mana when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," to Recover 10% of when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana "}c["Projectiles Pierce you +160 Dexterity Requirement"]={nil,"Projectiles Pierce you +160 Dexterity Requirement "}c["6% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["18% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["Flasks gain 3 Charges every 3 seconds Damage Penetrates 6% of Enemy Elemental Resistances 15% chance for your Flasks to not consume Charges"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},"Flasks gain 3 Charges every 3 seconds 15% chance for your Flasks to not consume Charges "}c["6% increased Attack and Cast Speed per Ghost Shroud"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=6}}," per Ghost Shroud "}c["Life Regeneration has no effect"]={{[1]={flags=0,keywordFlags=0,name="NoLifeRegen",type="FLAG",value=true}},nil}c["50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage"]={{[1]={flags=0,keywordFlags=262144,name="FlaskEffect",type="MORE",value=50}}," of Herald Buffs on you 100% more Damage from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage "}c["5% increased Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=5}},nil}c["+25 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=25}},nil}c["their Maximum Life as Physical Damage"]={nil,"their Maximum Life as Physical Damage "}c["+9% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=9}},nil}c["15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},[2]={stat="PowerCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=15}}," to gain a Power Charge if you or your s kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}c["22% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=22}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["+10 to Maximum Challenger Charges"]={{[1]={flags=0,keywordFlags=0,name="ChallengerChargesMax",type="BASE",value=10}},nil}c["You lose 5% of Energy Shield per second"]={nil,"You lose 5% of Energy Shield per second "}c["Minions Leech 0.6% of Damage as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.6}}}},nil}c["18% Increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=18}},nil}c["Cannot Block Attacks"]={{[1]={flags=0,keywordFlags=0,name="CannotBlockAttacks",type="FLAG",value=true}},nil}c["8% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Minions Regenerate 2% Life per Second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}}}},nil}c["With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks "}c["80% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=80}},nil}c["Take 200 Physical Damage when you use a Movement Skill You have no Armour or Energy Shield"]={nil,"200 Physical Damage when you use a Movement Skill You have no Armour or Energy Shield "}c["10% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["5% chance to gain an Endurance Charge on Kill"]={{}," to gain an Endurance Charge on Kill "}c["4% increased Skeleton Movement Speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}}}},nil}c["Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage"]={nil,"Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage "}c["6% increased Attack Speed with Maces"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["95% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=95}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["+36 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=36}},nil}c["15% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["+20 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["+60% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=60}},nil}c["10% of Physical Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=10}},nil}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned "}c["Golems have 20% increased Attack and Cast Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}}},nil}c["Your Critical Strike Chance is Lucky while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="CritChanceLucky",type="FLAG",value=true}},nil}c["Adds 12 to 22 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=22}},nil}c["All Sockets are White"]={nil,"All Sockets are White "}c["Bow Attacks have 10% chance to cause Bleeding"]={{[1]={flags=131072,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil}c["+3% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=3}},nil}c["2% increased Melee Physical Damage per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=2}},nil}c["20% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=20}},nil}c["20% chance to Avoid Projectiles while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to Avoid "}c["2% increased Experience gain 3% increased Intelligence for each Unique Item Equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,keywordFlags=0,name="Int",type="INC",value=2}}," Experience gain 3% increased "}c["Flasks gain 3 Charges every 3 seconds 20% chance for your Flasks to not consume Charges"]={nil,"Flasks gain 3 Charges every 3 seconds 20% chance for your Flasks to not consume Charges "}c["Gain 300% of Weapon Physical Damage as Extra Damage of an Element"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamage",type="BASE",value=300}}," as Extra Damage of an Element "}c["0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.2}},nil}c["+10% to Damage over Time Multiplier for Poison"]={{[1]={flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=10}},nil}c["Your Critical Strikes do not deal extra Damage"]={{[1]={flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil}c["Chill Enemies for 1 second on Hit with this Weapon when in Off Hand"]={nil,"Chill Enemies for 1 second on Hit with this Weapon when in Off Hand "}c["Skills supported by Intensify have +1 to maximum Intensity"]={nil,"Skills supported by Intensify have +1 to maximum Intensity "}c["Adds 8 to 13 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=13}},nil}c["Arrows gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets"]={nil,"Arrows gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets "}c["Adds 10 to 120 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=10},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=120}},nil}c["Vaal Skills used during effect do not apply Soul Gain Prevention"]={nil,"Vaal Skills used during effect do not apply Soul Gain Prevention "}c["3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% Minions have 20% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=3}}," of Life and Energy Shield per Minion, up to 30% Minions have 20% more Maximum Life "}c["Weapons you Animate create an additional copy 25% chance to Trigger level 20 Animate Weapon on Kill"]={nil,"Weapons you Animate create an additional copy 25% chance to Trigger level 20 Animate Weapon on Kill "}c["Removes all but one Life on use"]={nil,"Removes all but one Life on use "}c["13% increased Quantity of Items found with a Magic Item equipped"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="MagicItem"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=13}},nil}c["30% chance to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=30}}," to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second +1 to "}c["40% increased Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["+100 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=100}},nil}c["Unattached Brands gain 20% increased Brand Attachment Range per second"]={nil,"Unattached Brands gain 20% increased Brand Attachment Range per second "}c["50% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=50}},nil}c["30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked Enemies "}c["+10 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=10}},nil}c["16% increased Physical Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["You can only Socket Corrupted Gems in this item Acrobatics"]={nil,"You can only Socket Corrupted Gems in this item Acrobatics "}c["Ignites you inflict deal Damage 8% faster"]={nil,"Ignites you inflict deal Damage 8% faster "}c["Critical Strikes do not inherently apply non-Damaging Ailments"]={nil,"Critical Strikes do not inherently apply non-Damaging Ailments "}c["30% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil}c["15% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-15}},nil}c["Gain a Spirit Charge every second You lose all Spirit Charges when taking a Savage Hit"]={nil,"Gain a Spirit Charge every second You lose all Spirit Charges when taking a Savage Hit "}c["Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell Immune to Elemental Ailments while you have Arcane Surge"]={nil,"Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell Immune to Elemental Ailments while you have Arcane Surge "}c["+13 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=13}},nil}c["If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour You and nearby Allies deal 6 to 12 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},"If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["20% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["12% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["+113% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=113}},nil}c["5% reduced Damage taken from Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-5}},nil}c["Modifiers to number of Projectiles instead apply to the number of targets Projectiles Split towards"]={nil,"Modifiers to number of Projectiles instead apply to the number of targets Projectiles Split towards "}c["16% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Adds 65 to 76 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=65},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=76}},nil}c["80% increased Attack Damage if your other Ring is a Shaper Item"]={{[1]={[1]={type="Condition",var="ShaperItemInRing {OtherSlotNum}"},flags=1,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["Mana Flasks gain 1 Charge every 3 seconds"]={nil,"Mana Flasks gain 1 Charge every 3 seconds "}c["Gain a Void Charge every 0.5 seconds"]={nil,"Gain a Void Charge every 0.5 seconds "}c["Phasing"]={{[1]={flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["20% increased Damage per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," per Summoned 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems "}c["Bow Skills have +10% to Damage over Time Multiplier"]={nil,"Bow Skills have +10% to Damage over Time Multiplier "}c["10% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=10}},nil}c["4% reduced Mana Cost per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-4}},nil}c["33% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=33}},nil}c["40% chance to Chill Attackers for 4 seconds on Block 40% chance to Shock Attackers for 4 seconds on Block"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=40}}," to Chill Attackers for 4 seconds on Block 40% chance Attackers for 4 seconds on Block "}c["+15% to Fire Damage over Time Multiplier while Burning Regenerate 1.50% of Life per second while Burning"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=15}}," while Burning Regenerate 1.50% of Life per second while Burning "}c["1% additional Physical Damage Reduction per Summoned Sentinel of Purity You lose Virulence 30% slower"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Summoned Sentinel of Purity You lose Virulence 30% slower "}c["0.2% of Damage Leeched as Life against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=0.2}},nil}c["80% increased Onslaught Effect"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=80}},nil}c["17% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=17}},nil}c["You take 10% of your maximum Life as Chaos Damage on use"]={nil,"You take 10% of your maximum Life as Chaos Damage on use "}c["10% chance to Steal Power, Frenzy, and Endurance Charges on Hit 30% reduced Endurance, Frenzy and Power Charge Duration"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="PowerChargesDuration",type="BASE",value=10}}," to Steal Power, Frenzy, and Endurance Charges on Hit 30% reduced Endurance,and "}c["You lose all Spirit Charges when taking a Savage Hit Recover 3% of Life when you lose a Spirit Charge"]={nil,"You lose all Spirit Charges when taking a Savage Hit Recover 3% of Life when you lose a Spirit Charge "}c["+48 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=48}}," gained when you Block "}c["Grants level 22 Blight Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="Blight"}}},nil}c["35% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=35}},nil}c["20% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=20}},nil}c["80% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["21% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=21}},nil}c["74% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=74}},nil}c["+16% to Critical Strike Multiplier with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=16}},nil}c["You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket"]={{[1]={[1]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=56}}},[2]={[1]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=88}}}},nil}c["Gain +3 Mana when you hit a Taunted Enemy"]={nil,"Gain +3 Mana when you hit a Taunted Enemy "}c["+30 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=30}},nil}c["35% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=35}},nil}c["50% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=50}},nil}c["6% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=6}},nil}c["88% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=88}},nil}c["Deals 450 Chaos Damage per second to nearby Enemies"]={nil,"Deals 450 Chaos Damage per second to nearby Enemies "}c["Gain 5% of Lightning Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageGainAsChaos",type="BASE",value=5}},nil}c["Adds 38 to 50 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=50}},nil}c["+1 to Level of Aura Gems in this item"]={{}," Level of Aura Gems in this item "}c["10% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-10}},nil}c["Warcry Skills' Cooldown Time is 2 seconds"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="OVERRIDE",value=2}},nil}c["Consumes Socketed Support Gems when they reach Maximum Level Can Consume 4 Support Gems"]={nil,"Consumes Socketed Support Gems when they reach Maximum Level Can Consume 4 Support Gems "}c["10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy You cannot have non-Animated Minions"]={{}," to Trigger Level 18 Animate Guardian's when Animated Weapon Kills an Enemy You cannot have non-Animated Minions "}c["340% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=340}},nil}c["+15% to Damage over Time Multiplier for Poison from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=15}},nil}c["Critical Strikes have Culling Strike"]={nil,"Critical Strikes have Culling Strike "}c["12% increased Physical Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["15% chance to gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain a Power Charge if you or your s kill an Enemy "}c["Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded "}c["50% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=50}},nil}c["+70 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=70}},nil}c["and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage"]={nil,"and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage "}c["Immune to Shock while affected by Purity of Lightning"]={nil,"Immune to Shock while affected by Purity of Lightning "}c["Adds 1 to 4 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=4}},nil}c["5% increased Experience gain 20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=5}}," Experience gain 20% increased "}c["90% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=90}},nil}c["+13 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=13}},nil}c["10% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["Regenerate 35 Mana per second if all Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="NonCorruptedItem"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=35}},nil}c["20% Chance for Energy Shield Recharge to Start when you Block"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}}," for Recharge to Start when you Block "}c["Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances"]={nil,"Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances "}c["30% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}},nil}c["Unaffected by Shocked Ground while affected by Purity of Lightning"]={nil,"Unaffected by Shocked Ground while affected by Purity of Lightning "}c["Culling Strike Life Leech effects are not removed at Full Life"]={nil,"Culling Strike Life Leech effects are not removed at Full Life "}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline "}c["+150 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=150}},nil}c["+1 to maximum number of Summoned Totems"]={{[1]={flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["Minions Recover 2% of their Maximum Life when they Block"]={nil,"Recover 2% of their Maximum Life when they Block "}c["Adds 6 to 12 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=12}},nil}c["Adds 13 to 23 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=23}},nil}c["Herald of Ash has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Herald of Ash",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["5% chance to gain 100% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=5}},nil}c["2% increased Critical Strike Chance for Spells per 100 Maximum Life"]={{[1]={[1]={div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=2}},nil}c["Discipline Reserves no Mana"]={{[1]={[1]={skillId="Discipline",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Enemies Maimed by you take 10% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Maimed"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=10}}}},nil}c["Shocks from your Hits always increase Damage taken by at least 15%"]={nil,"Shocks from your Hits always increase Damage taken by at least 15% "}c["+65 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=65}},nil}c["25% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=25}},nil}c["20% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=20}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit "}c["You and nearby Allies have 50% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}}}},nil}c["4% reduced Enemy Stun Threshold with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-4}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier 10% increased Effect of Chill"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier 10% increased Effect of Chill "}c["Gain 5% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=5}},nil}c["Increases and Reductions to Spell Damage also apply to Attacks"]={{[1]={flags=0,keywordFlags=0,name="SpellDamageAppliesToAttacks",type="FLAG",value=true}},nil}c["3% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=3}},nil}c["+37% to Chaos Resistance while affected by Herald of Agony"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAgony"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=37}},nil}c["+20 Energy Shield gained on Kill +1 to Level of Socketed Elemental Gems"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}}," gained on Kill +1 to Level of Socketed Elemental Gems "}c["+60 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=60}},nil}c["You can Cast an additional Brand Brand Skills have 20% increased Duration 10% increased Brand Activation frequency"]={nil,"You can Cast an additional Brand Brand Skills have 20% increased Duration 10% increased Brand Activation frequency "}c["6% increased Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=6}},nil}c["Enemies Taunted by you deal 10% less Damage with Hits and"]={nil,"Enemies Taunted by you deal 10% less Damage with Hits and "}c["25% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=25}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect "}c["10% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=301989893,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies 50% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies 50% increased Quantity of Items Dropped by Slain Normal Enemies "}c["10% chance to Freeze Enemies which are Chilled"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="EnemyFreezeChance",type="BASE",value=10}},nil}c["Trigger level 1 Create Lesser Shrine when you Kill an Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TriggeredSummonLesserShrine"}}},nil}c["Commanded leadership over 18000 warriors under Kaom Passives in radius are Conquered by the Karui"]={nil,"Commanded leadership over 18000 warriors under Kaom Passives in radius are Conquered by the Karui "}c["Adds 2 to 3 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=2},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=3}},nil}c["10% increased Accuracy Rating with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["Life Flasks gain 1 Charge every 3 seconds"]={nil,"Life Flasks gain 1 Charge every 3 seconds "}c["63% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=63}},nil}c["Herald Skills have 25% increased Area of Effect Herald Skills deal 20% increased Damage"]={nil,"Herald Skills have 25% increased Area of Effect Herald Skills deal 20% increased Damage "}c["Herald of Purity has 40% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=40}},nil}c["Attacks always inflict Bleeding while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["75% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=75}},nil}c["30% increased Damage over Time while affected by a Herald Herald Skills deal 50% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=30}}," while affected by a Herald Herald Skills deal 50% increased Damage over Time "}c["16% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["6% chance to Avoid Lightning Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=6}}," to Avoid from Hits "}c["Action Speed cannot be modified to below base value Movement Speed cannot be modified to below base value"]={nil,"Action Speed cannot be modified to below base value Movement Speed cannot be modified to below base value "}c["10% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=10}},nil}c["+29% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=29}},nil}c["+28 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=28}},nil}c["You and nearby Allies deal 6 to 12 added Physical Damage for"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6}}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}}}}," for "}c["+10% to Damage over Time Multiplier for Bleeding you inflict on Poisoned Enemies +10% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies"]={{[1]={flags=0,keywordFlags=2097152,name="DotMultiplier",type="BASE",value=10}}," you inflict on Poisoned Enemies +10% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies "}c["+25 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=25}},nil}c["Enemies Taunted by you take 5% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}}},nil}c["Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Speed"]={nil,"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Speed "}c["+600 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=600}},nil}c["Knocks Back Enemies if you get a Critical Strike with a Staff"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=2097152,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["25% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil}c["30% increased Totem Damage if you haven't Summoned a Totem in the past 2 seconds"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=30}}," if you haven't Summoned a Totem in the past 2 seconds "}c["Adds 25 to 50 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=50}},nil}c["+220 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=220}},nil}c["1% of Attack Damage Leeched as Life against Chilled enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Light Radius is based on Energy Shield instead of Life"]={nil,"Light Radius is based on Energy Shield instead of Life "}c["15% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}},nil}c["Damage Penetrates 6% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=6}},nil}c["+40 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=40}},nil}c["20% of Fire Damage taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsCold",type="BASE",value=20}},nil}c["50% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=50}},nil}c["Your Raised Spectres also gain Arcane Surge when you do"]={nil,"Your Raised Spectres also gain Arcane Surge when you do "}c["If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 of its mods for 20 seconds"]={nil,"If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 of its mods for 20 seconds "}c["+1% to maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=1}},nil}c["3% increased Cast Speed while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed Gain 5 Rage when you use a Warcry"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed Gain 5 Rage when you use a Warcry "}c["Cast a Socketed Cold Spell on Melee Critical Strike"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,name="SupportUniqueCosprisMaliceColdSpellsCastOnMeleeCriticalStrike"}}},nil}c["25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000% Shaper Item"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=25}}," for each 200 total Mana you have Spent Recently, up to 2000% Shaper Item "}c["Focus has 25% increased Cooldown Recovery Speed"]={nil,"Focus has 25% increased Cooldown Recovery Speed "}c["+1% to Critical Strike Chance of Herald Skills"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}},nil}c["Damage with Weapons Penetrates 4% Elemental Resistance"]={{[1]={flags=8192,keywordFlags=0,name="ElementalPenetration",type="BASE",value=4}},nil}c["2% increased Attack Damage per 75 Armour or Evasion Rating on Shield +1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield"]={{[1]={[1]={div=10,stat="EnergyShield",type="PerStat"},flags=1,keywordFlags=0,name="Damage",type="INC",value=2}}," per 75 Armour or Evasion Rating on Shield +1% to Critical Strike Multiplier on Shield "}c["Energy Shield protects Mana instead of Life"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldProtectsMana",type="FLAG",value=true}},nil}c["Adds 5 to 11 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=11}},nil}c["0.3% of Physical Attack Damage Leeched as Life per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.3}},nil}c["Adds 6 to 14 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=14}},nil}c["Anger has 60% increased Aura Effect"]={{[1]={[1]={skillName="Anger",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["Grants Level 20 Aspect of the Spider Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SpiderAspect"}}},nil}c["Attacks with One Handed Melee Weapons deal 20% increased Damage with Ailments"]={{[1]={flags=167774208,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Adds 140 to 210 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=140},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=210}},nil}c["10% increased Effect of Tailwind on you for each Skill you've used Recently, up to 100%"]={{[1]={[1]={limit=100,limitTotal=true,type="Multiplier",var="SkillUsedRecently"},flags=0,keywordFlags=0,name="TailwindEffectOnSelf",type="INC",value=10}},nil}c["Ignited Enemies Burn 50% slower"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnSlower",type="INC",value=50}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["Poisons on you expire 50% slower"]={nil,"Poisons on you expire 50% slower "}c["83% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=83}},nil}c["Minions Regenerate 1% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}}}},nil}c["Moving while Bleeding doesn't cause you to take extra Damage Gain +30 Life when you Hit a Bleeding Enemy"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage Gain +30 Life when you Hit a Bleeding Enemy "}c["+50 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=50}},nil}c["10% more Damage while you have at least one nearby Ally"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyAlly"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}},nil}c["20% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=20}},nil}c["Enemies killed explode dealing 10% of their Life as Fire Damage Recover 5% of Maximum Life on Kill"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage Recover 5% of Maximum Life on Kill "}c["20% reduced Reflected Physical Damage taken Enemies have -5% to Total Physical Damage Reduction against your Hits 4% chance to deal Double Damage +20 to Strength 20% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected Enemies have -5% to Total Physical Damage Reduction against your Hits 4% chance to deal Double Damage +20 to Strength 20% increased Physical Damage "}c["do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["+4% Chance to Block Attack Damage while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["Adds 188 to 563 Lightning Damage to Unarmed Attacks"]={{[1]={flags=16777220,keywordFlags=0,name="LightningMin",type="BASE",value=188},[2]={flags=16777220,keywordFlags=0,name="LightningMax",type="BASE",value=563}},nil}c["3 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=3}},nil}c["+14% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=14}},nil}c["20% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["Adds 400 to 600 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=400},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=600}},nil}c["+1 to Maximum Life per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil}c["+16 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=16}},nil}c["Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies Enemies Maimed by you take 10% increased Physical Damage"]={nil,"Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies Enemies Maimed by you take 10% increased Physical Damage "}c["Gain Soul Eater for 10 seconds when you use a Vaal Skill"]={nil,"Gain Soul Eater for 10 seconds when you use a Vaal Skill "}c["Adds 74 to 121 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=74},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=121}},nil}c["No Damage Multiplier for Ailments from Critical Strikes"]={nil,"No Damage Multiplier for Ailments from Critical Strikes "}c["12% increased Movement Speed while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}},nil}c["Gems Socketed in Blue Sockets gain 25% increased Experience"]={nil,"Gems Socketed in Blue Sockets gain 25% increased Experience "}c["25% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil}c["18% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=18}},nil}c["20% chance to gain a Power Charge on Hit 6% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="BASE",value=20}}," to gain a Power Charge on Hit 6% increased "}c["Gain +2% to Critical Strike Chance for 2 seconds when you Spend a total of 800 Mana"]={nil,"Gain +2% to Critical Strike Chance for 2 seconds when you Spend a total of 800 Mana "}c["+3% to all maximum Resistances while you have no Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=3},[2]={[1]={stat="EnduranceCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=3}},nil}c["+200 to Accuracy Rating with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["30 Energy Shield gained for each Enemy Hit while affected by Discipline 2.5% of Maximum Energy Shield Regenerated per Second while affected by Discipline"]={{}," "}c["15% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["+1 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1}},nil}c["60% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["Lose 0.1% of maximum Life per second per Rage while you are not losing Rage Effects granted for having Rage are Tripled"]={nil,"Lose 0.1% of maximum Life per second per Rage while you are not losing Rage Effects granted for having Rage are Tripled "}c["Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["6% increased Burning Damage for each Enemy you have Shocked Recently Adds 3 to 70 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=134479872,name="FireDamage",type="INC",value=6}}," for each Enemy you have Shocked Recently Adds 3 to 70 Lightning Damage to Hits "}c["400 Cold Damage taken per second per Frenzy Charge while moving"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="ColdDegen",type="BASE",value=400}},nil}c["Cannot gain Mana during effect Vaal Skills deal 100% increased Damage during effect"]={nil,"Cannot gain Mana during effect Vaal Skills deal 100% increased Damage during effect "}c["Nearby Allies' Action Speed cannot be modified to below base value"]={nil,"Nearby Allies' Action Speed cannot be modified to below base value "}c["60% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=60}},nil}c["80% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=80}}," applied to s "}c["15% chance to create Chilled Ground when Hit with an Attack"]={{}," to create Chilled Ground when Hit with an Attack "}c["Passives in radius are Conquered by the Vaal"]={nil,"Passives in radius are Conquered by the Vaal "}c["45% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=45}},nil}c["75% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=75}},nil}c["+8% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=8}},nil}c["40% increased Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=40}},nil}c["2% increased Attack Damage per 75 Armour or Evasion Rating on Shield"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=2}}," per 75 Armour or Evasion Rating on Shield "}c["25% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=25}},nil}c["60% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=60}},nil}c["+10 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=10}},nil}c["Mace or Sceptre Attacks deal 8% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["+500 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=500}},nil}c["30% chance to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges"]={{}," to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges "}c["6% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["+120 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=120}},nil}c["+30% Chaos Resistance against Damage Over Time"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=30}}," against Damage Over Time "}c["5% chance to grant a Frenzy Charge to nearby Allies on Hit"]={{}," to grant aCharge to nearby Allies on Hit "}c["16% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["All Sockets are White Socketed Gems have Elemental Equilibrium"]={nil,"All Sockets are White Socketed Gems have Elemental Equilibrium "}c["Every 10 seconds, gain 100% of Physical Damage as Extra Fire Damage for 4 seconds"]={nil,"Every 10 seconds, gain 100% of Physical Damage as Extra Fire Damage for 4 seconds "}c["+3 to Level of all Lightning Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="lightning",[3]="active_skill"},value=3}}},nil}c["30% increased Attack Damage during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=1,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["40% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=40}},nil}c["20% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=20}},nil}c["-50% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=-50}},nil}c["+25% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25}},nil}c["Bleeding Enemies you Kill Explode, dealing 5% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of "}c["50% reduced Extra Damage taken from Critical Strikes while Ignited"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-50}}," Extra "}c["50% increased Damage on Burning Ground"]={{[1]={[1]={type="Condition",var="OnBurningGround"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["5 Maximum Void Charges Gain a Void Charge every 0.5 seconds"]={nil,"5 Maximum Void Charges Gain a Void Charge every 0.5 seconds "}c["Enemies Taunted by you take 20% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=20}}}},nil}c["Cannot be Stunned while you have Ghost Shrouds"]={nil,"Cannot be Stunned while you have Ghost Shrouds "}c["400 Lightning Damage taken per second per Power Charge if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},[2]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="LightningDegen",type="BASE",value=400}},nil}c["Vaal Skills have 25% reduced Soul Cost during effect"]={{}," Soul Cost "}c["Damage Penetrates 15% Cold Resistance while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=15}},nil}c["Chaos Resistance is doubled"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="MORE",value=100}},nil}c["30% increased Evasion Rating during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil}c["2% of Chaos Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=2}},nil}c["8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage from Critical Strikes while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-8}}," while Elusive 25% increased Elusive Effect You take no Extra Damage while Elusive "}c["40% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=40}},nil}c["Adds 5 to 10 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=10}},nil}c["4% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=4}},nil}c["Adds 7 to 15 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=7},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=15}},nil}c["Anger has 30% increased Aura Effect"]={{[1]={[1]={skillName="Anger",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["25% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit "}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently 15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage Cannot be Stunned if you haven't been Hit Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={neg=true,type="Condition",var="BeenHitRecently"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="LifeRecoveryRate",type="BASE",value=15},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={neg=true,type="Condition",var="BeenHitRecently"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="ManaRecoveryRate",type="BASE",value=15},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={neg=true,type="Condition",var="BeenHitRecently"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="EnergyShieldRecoveryRate",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage Cannot be Stunned "}c["20% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=20}},nil}c["Minions have 90% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=90}}}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["5% increased Fire Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=5}},nil}c["30% of Damage you Reflect to enemies is gained as Life"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=30}}," you Reflect to enemies is gained as Life "}c["25% reduced effect of Offerings You can have an Offering of each type"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-25}}," of Offerings You can have an Offering of each type "}c["10% chance to Blind Enemies on Hit"]={{}," to Blind Enemies on Hit "}c["You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={nil,"You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["10% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit 10% chance to double Stun Duration"]={{[1]={flags=256,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=10}}," to gain an Endurance Charge when you Stun an Enemy with a Hit 10% chance to double "}c["130% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=130}},nil}c["35% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=35}},nil}c["You are Immune to Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=100}},nil}c["6% increased Accuracy Rating with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["Socketed Red Gems get 10% Physical Damage as Extra Fire Damage"]={{[1]={[1]={keyword="strength",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=10}}}},nil}c["Adds 17 to 29 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=29}},nil}c["43% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=43}},nil}c["Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy "}c["Damage Penetrates 10% Lightning Resistance during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=10}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["their Maximum Life as Physical Damage 25% more Damage with Bleeding"]={nil,"their Maximum Life as Physical Damage 25% more Damage with Bleeding "}c["4% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}},nil}c["5% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["Cannot be Knocked Back +150 to maximum Life"]={nil,"Cannot be Knocked Back +150 to maximum Life "}c["30% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=30}},nil}c["Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SpiritBurst"}}},nil}c["50% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to"]={nil,"You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to "}c["Has no Sockets"]={{[1]={flags=0,keywordFlags=0,name="NoSockets",type="FLAG",value=true}},nil}c["40% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=40}},nil}c["Left ring slot: 80% reduced Reflected Elemental Damage taken Right ring slot: 30% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-80}}," Reflected Right ring slot: 30% reduced Reflected Physical Damage taken "}c["30% increased Attack Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,keywordFlags=0,name="Speed",type="INC",value=30}},nil}c["80% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=80}},nil}c["24% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=24}},nil}c["14% increased Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["10% Chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil}c["20% chance to gain a Spirit Charge on Kill"]={{}," to gain a Spirit Charge on Kill "}c["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},[3]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=20}},nil}c["5% reduced Enemy Stun Threshold with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-5}},nil}c["50% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-50}},nil}c["20% reduced Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-20}},nil}c["You gain Divinity for 10 seconds on reaching maximum Divine Charges"]={{[1]={[1]={type="Condition",var="Divinity"},flags=0,keywordFlags=0,name="ElementalDamage",type="MORE",value=50},[2]={[1]={type="Condition",var="Divinity"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="MORE",value=-20}},nil}c["14% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["100% increased Warcry Duration"]={{[1]={flags=0,keywordFlags=4,name="Duration",type="INC",value=100}},nil}c["0.8% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.8}},nil}c["50% reduced Mana Cost of Raise Spectre"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-50}},nil}c["3% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-3}},nil}c["13% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=13}},nil}c["Gain 8% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=8}},nil}c["You can have an additional Brand Attached to an Enemy"]={nil,"You can have an additional Brand Attached to an Enemy "}c["8% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["23% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=23}},nil}c["24% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["If you've Warcried Recently, you and nearby allies"]={nil,"If you've Warcried Recently, you and nearby allies "}c["55% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=55}},nil}c["6% increased Attack Speed while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["Adds 135 to 360 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=135},[2]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=360}},nil}c["20% increased Mine Detonation Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MineDetonationAreaOfEffect",type="INC",value=20}},nil}c["+400 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=400}},nil}c["28% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=28}},nil}c["Left ring slot: Projectiles from Spells Fork"]={nil,"Projectiles from Spells Fork "}c["Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second"]={nil,"Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second "}c["63% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=63}},nil}c["Grants level 20 Summon Bestial Rhoa Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonBeastialRhoa"}}},nil}c["4% increased Attack Speed with Maces"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["10% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10}},nil}c["Adds 92 to 154 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=92},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=154}},nil}c["Ghost Reaver"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Ghost Reaver"}},nil}c["You gain 4% increased Area of Effect for each Mine 20% increased Mine Throwing Speed if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=4}},"% increased for each 20% increased Mine Throwing Speed "}c["18% increased Damage with Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=18}},nil}c["+60 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=60}},nil}c["Adds 78 to 114 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=78},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=114}},nil}c["+24% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=24}},nil}c["Adds 6 to 9 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=6},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=9}},nil}c["20% chance to Impale Enemies on Hit with Attacks Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=65536,name="Armour",type="BASE",value=20}}," to Impale Enemies on Hit Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy "}c["50% chance to cause Bleeding with Melee Critical Strikes with this Weapon"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="{Hand}Attack"},flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["+5% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=5}}," Non-Ailment "}c["and nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},"and nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["Enemies Chilled by your Hits are Shocked"]={nil,"Enemies Chilled by your Hits are Shocked "}c["Gain 1 Rage on Critical Hit with attacks, no more than once every 0.5 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true},[2]={[1]={type="Condition",var="CanGainRage"},flags=0,keywordFlags=0,name="Dummy",type="DUMMY",value=1}},nil}c["Gain Arcane Surge when your Mine is Detonated targeting an Enemy Gain Arcane Surge when your Trap is Triggered by an Enemy"]={nil,"Gain Arcane Surge when your Mine is Detonated targeting an Enemy Gain Arcane Surge when your Trap is Triggered by an Enemy "}c["+305 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=305}},nil}c["5% chance to double Stun Duration 14% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="EnemyStunDuration",type="BASE",value=5}}," to double 14% increased Damage "}c["+650 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=650}},nil}c["100% increased Shock Duration on You Shocks you cause are reflected back to you"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=100}}," on You Shocks you cause are reflected back to you "}c["+333 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=333}},nil}c["+1% to maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=1}},nil}c["Your Fire Damage can Poison"]={{[1]={flags=0,keywordFlags=0,name="FireCanPoison",type="FLAG",value=true}},nil}c["10% increased Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Gain a Frenzy Charge on Hit while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding "}c["10% increased Fire Damage taken"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=10}},nil}c["Minions have 10% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-10}}}},nil}c["45% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=45}},nil}c["You gain Onslaught for 4 seconds on Kill while affected by Haste"]={nil,"You gain Onslaught for 4 seconds on Kill while affected by Haste "}c["+1% to Critical Strike Chance while affected by Aspect of the Cat"]={{[1]={[1]={type="Condition",varList={[1]="AffectedByCat'sStealth",[2]="AffectedByCat'sAgility"}},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}},nil}c["60% increased Chaos Damage while affected by Herald of Agony"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAgony"},flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=60}},nil}c["120% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=120}},nil}c["Adds 1 to 59 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=59}},nil}c["20% increased Critical Strike Chance with Cold Skills"]={{[1]={flags=0,keywordFlags=32,name="CritChance",type="INC",value=20}},nil}c["30% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=30}},nil}c["+12% to Critical Strike Multiplier with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=47}}},[2]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=61}}}},nil}c["60% increased Physical Damage while affected by Herald of Purity"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofPurity"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=60}},nil}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence "}c["+23% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=23}},nil}c["7% increased Elemental Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=7}},nil}c["10% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=10}},nil}c["25% increased Critical Strike Chance with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["23% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=23}},nil}c["+15 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=15}},nil}c["12% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Herald of Purity has 100% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil}c["45% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=45}},nil}c["Immunity to Ignite during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}},nil}c["10% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["Herald Skills deal 50% increased Damage over Time"]={nil,"Herald Skills deal 50% increased Damage over Time "}c["14% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["Gain 2 Grasping Vines each second while stationary 2% chance to deal Double Damage per Grasping Vine 1% less Damage taken per Grasping Vine"]={nil,"Gain 2 Grasping Vines each second while stationary 2% chance to deal Double Damage per Grasping Vine 1% less Damage taken per Grasping Vine "}c["Gain a Power Charge on non-Critical Strike Lose all Power Charges on Critical Strike"]={nil,"Gain a Power Charge on non-Critical Strike Lose all Power Charges on Critical Strike "}c[" Life per second for each Stage Banner Skills Reserve no Mana"]={nil," Life per second for each Stage Banner Skills Reserve no Mana "}c["Non-instant Mana recovery from Flasks is also recovered as Life 60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life 60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently "}c["12% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=12}},nil}c["20% chance to gain a Frenzy Charge when Hit while Channelling"]={{}," to gain aCharge when Hit "}c["10% chance to gain Onslaught for 10 seconds on Kill Recover 1% of Maximum Life on Kill"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=10}}," to gain Onslaught for 10 seconds on Kill Recover 1% of on Kill "}c["+150 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=150}},nil}c["+125% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=125}},nil}c["20% chance to gain a Frenzy Charge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy +1 to Maximum Frenzy Charges"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=20}}," to gain aCharge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy +1 to "}c["Golems have 45% less Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-45}}}},nil}c["55% increased Critical Strike Chance while you have at least 200 Intelligence"]={{[1]={[1]={stat="Int",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=55}},nil}c["+2 to Level of Socketed Support Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="support",value=2}}},nil}c["24% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Animated Guardian deals 5% increased Damage per Animated Weapon"]={nil,"Animated Guardian deals 5% increased Damage per Animated Weapon "}c["+250 to Armour while affected by a Guard Skill Buff 10% chance when Hit for double Armour effect"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=250}}," while affected by a Guard Skill Buff 10% chance when Hit for double Armour effect "}c["10% chance to gain a Power Charge on Critical Strike 20% chance to gain a Power Charge on non-Critical Strike"]={{}," to gain a Power Charge 20% chance to gain a Power Charge on non-Critical Strike "}c["Warcries cost no Mana"]={{[1]={flags=0,keywordFlags=4,name="ManaCost",type="MORE",value=-100}},nil}c["25% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-25}},nil}c["Your Bleeding does not deal extra Damage while the Enemy is moving"]={{[1]={flags=0,keywordFlags=0,name="Condition:NoExtraBleedDamageToMovingEnemy",type="FLAG",value=true}},nil}c["Adds 15 to 26 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=26}},nil}c["13% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=13}},nil}c["You and Allies affected by your Aura Skills have +20% to all Elemental Resistances"]={nil,"You and Allies affected by your Aura Skills have +20% to all Elemental Resistances "}c["With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area With at least 40 Intelligence in Radius, Cold Snap Cooldown can be bypassed by Power Charges instead of Frenzy Charges"]={nil,"With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area With at least 40 Intelligence in Radius, Cold Snap Cooldown can be bypassed by Power Charges instead of Frenzy Charges "}c["30% increased Minion Duration"]={{[1]={[1]={skillType=21,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil}c["70% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=70}},nil}c["65% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=65}},nil}c["70% increased Critical Strike Chance when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=70}},nil}c["6% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=6}},nil}c["16% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=16}},nil}c["30% increased Maximum total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxEnergyShieldLeechRate",type="INC",value=30}},nil}c["50% increased Aspect of the Spider Debuff Duration"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil}c["55% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=55}},nil}c["With at least 40 Dexterity in Radius, Burning Arrow can inflict an additional Ignite on an Enemy"]={nil,"With at least 40 Dexterity in Radius, Burning Arrow can inflict an additional Ignite on an Enemy "}c["45% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=45}},nil}c["Reflects 10 Cold Damage to Melee Attackers Your Cold Damage can Ignite"]={nil,"Reflects 10 Cold Damage to Melee Attackers Your Cold Damage can Ignite "}c["43% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=43}},nil}c["Nearby Allies have Culling Strike"]={nil,"Culling Strike "}c["10% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["15% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=15}},nil}c["+25 Energy Shield gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=25}}," gained on Kill "}c["0.4% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.4}},nil}c["Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits"]={nil,"Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits "}c["+4% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=4}},nil}c["+110 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=110}},nil}c["You cannot be Shocked while at maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=100}},nil}c["10% chance to gain Unholy Might on block for 3 seconds"]={{}," to gain Unholy Might on block for 3 seconds "}c["1% of Attack Damage Leeched as Life on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour"]={nil,"Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour "}c["80% increased Evasion Rating while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=80}},nil}c["Kill Enemies that have 20% or lower Life when Hit by your Skills"]={nil,"Kill Enemies that have 20% or lower Life when Hit by your Skills "}c["20% increased Attack Damage during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["15% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-15}},nil}c["Recover 75% of your maximum Life on use Recover 100% of your maximum Life on use"]={nil,"Recover 75% of your maximum Life on use Recover 100% of your maximum Life on use "}c["Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time"]={nil,"Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time "}c["10% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=10}},nil}c["+1 to Melee Strike Range with Claws"]={{[1]={flags=262148,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=262148,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["+72% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=72}},nil}c["With 1000 or more Strength 2% of Damage dealt by your Zombies is Leeched to you as Life"]={nil,"With 1000 or more Strength 2% of Damage dealt by your Zombies is Leeched to you as Life "}c["Adds 5 to 8 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=5},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=8}},nil}c["Minions have 8% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}}}},nil}c["60% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["10% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["You gain a Power Charge on use"]={nil,"You gain a Power Charge on use "}c["30% increased Damage if you have Consumed a corpse Recently"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike cannot choose Lightning"]={nil,"With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike cannot choose Lightning "}c["15% increased Area of Effect if you've Stunned an Enemy with a Two Handed Melee Weapon Recently"]={{[1]={flags=256,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}}," if you've Stunned an Enemy with a Two Handed Weapon Recently "}c["+190 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=190}},nil}c["+2% to maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=2}},nil}c["+300 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=300}},nil}c["Your Cold Damage can Poison"]={{[1]={flags=0,keywordFlags=0,name="ColdCanPoison",type="FLAG",value=true}},nil}c["+1% to Critical Strike Multiplier per 1% Block Chance"]={{[1]={[1]={div=1,stat="BlockChance",type="PerStat"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=1}},nil}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius."]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. "}c["125% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=125}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["6% increased Fire Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=6}},nil}c["20% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=20}},nil}c["110% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=110}},nil}c["30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes"]={{}," Attack, Cast and Movements Speed while you do not have Iron Reflexes "}c["80% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=80}},nil}c["You cannot be Shocked for 1 second after being Shocked You cannot be Shocked for 3 seconds after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked You cannot be Shocked for 3 seconds after being Shocked "}c["Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem"]={nil,"Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem "}c["Minions gain 18% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=18}}}},nil}c["Adds 19 to 29 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=19},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=29}},nil}c["70% increased Minion Damage if you have Hit Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=70}}}},nil}c["230% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=230}},nil}c["With at least 40 Dexterity in Radius, Barrage fires an additional 2 projectiles simultaneously on the first and final attacks With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks"]={nil,"With at least 40 Dexterity in Radius, Barrage fires an additional 2 projectiles simultaneously on the first and final attacks With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks "}c["Channelling Skills have 3% increased Attack Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["5% increased Experience gain 3% increased Experience gain"]={{}," Experience gain 3% increased Experience gain "}c["5% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}c["Vaal Skills used during effect do not apply Soul Gain Prevention Gains no Charges During effect of any Soul Ripper Flask"]={nil,"Vaal Skills used during effect do not apply Soul Gain Prevention Gains no Charges During effect of any Soul Ripper Flask "}c["Trigger Socketed Spells when you Focus 140% increased Duration of Ailments you inflict while Focussed"]={nil,"Trigger Socketed Spells when you Focus 140% increased Duration of Ailments you inflict while Focussed "}c["5% chance to grant Onslaught to nearby Enemies on Kill 5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill 5% chance to gain Unholy Might for 3 seconds on Kill "}c["2% increased Minion Attack Speed per 50 Dexterity"]={{[1]={[1]={div=50,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=2}}}},nil}c["+45 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=45}},nil}c["Passives in radius are Conquered by the Vaal Historic"]={nil,"Passives in radius are Conquered by the Vaal Historic "}c["21% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=21}},nil}c["Ancestor Totems have 100% increased Activation range"]={nil,"Ancestor Totems have 100% increased Activation range "}c["Recover 3% of Mana when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Mana when you Kill an Enemy during Flask Effect "}c["10% of Physical Damage taken as Cold Damage while affected by Purity of Ice"]={{[1]={[1]={type="Condition",var="AffectedByPurityofIce"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=10}},nil}c["24% increased Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["+225% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=225}},nil}c["You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour 20% reduced Effect of Curses on you"]={nil,"You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour 20% reduced Effect of Curses on you "}c["Recover 5% of Maximum Life on Kill Enemies you hit are destroyed on Kill"]={nil,"Recover 5% of Maximum Life on Kill Enemies you hit are destroyed on Kill "}c["12% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["8% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-8}},nil}c["25% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=25}},nil}c["5% increased Projectile Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=5}},nil}c["50% chance to Cause Poison on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=50}},nil}c["15% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-15}},nil}c["35% chance to avoid being Stunned for each Herald Skill affecting you"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=35}}," for each Herald Skill affecting you "}c["Your Golems are aggressive Primordial"]={nil,"Your Golems are aggressive Primordial "}c["Attacks have 10% chance to Maim on Hit"]={{}," to Maim on Hit "}c["+1% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["15% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["56% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=56}},nil}c["80% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["+10 Life Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["Unaffected by Enfeeble while affected by Grace"]={nil,"Unaffected by Enfeeble while affected by Grace "}c["Gain 5% of Cold Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageGainAsChaos",type="BASE",value=5}},nil}c["3% increased Damage per Crab Barrier"]={{[1]={[1]={type="Multiplier",var="CrabBarrier"},flags=0,keywordFlags=0,name="Damage",type="INC",value=3}},nil}c["+200 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=200}},nil}c["+15 Energy Shield gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=15}}," gained on Kill "}c["50% less Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="MORE",value=-50}},nil}c["Enemies Killed with Wand Hits have a 10% chance to Explode, dealing a quarter of their Life as Chaos Damage Gain 10% of Wand Physical Damage as Extra Chaos Damage"]={nil,"Enemies Killed with Wand Hits have a 10% chance to Explode, dealing a quarter of their Life as Chaos Damage Gain 10% of Wand Physical Damage as Extra Chaos Damage "}c["-25 Physical Damage taken from Projectile Attacks +5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-25}}," from Projectile Attacks +5% Chance to Block "}c["Minions Poison Enemies on Hit"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}}}},nil}c["Grants level 20 Summon Bestial Snake Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonBeastialSnake"}}},nil}c["24% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["10% chance to double Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=10}}," to double "}c["10% increased Damage taken from Ghosts"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}," from Ghosts "}c["Curse Skills have 5% reduced Mana Reservation"]={{[1]={[1]={skillType=32,type="SkillType"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-5}},nil}c["30% reduced Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=-30}},nil}c["25% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=25}},nil}c["With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield Corrupted"]={nil,"With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield Corrupted "}c["6% increased Accuracy Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["+6% Chance to Block Spell Damage while at Maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil}c["100% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=100}},nil}c["2% increased Minion Movement Speed per 50 Dexterity"]={{[1]={[1]={div=50,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}}}},nil}c["100% increased Vaal Skill Critical Strike Chance"]={{[1]={flags=0,keywordFlags=256,name="CritChance",type="INC",value=100}},nil}c["+5% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["10% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=10}},nil}c["Adds 250 to 280 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=250},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=280}},nil}c["10% increased Movement Speed while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["+185 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=185}},nil}c["20% increased Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["+200 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["50% increased Mana Regeneration while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=50}},nil}c["8% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["You and nearby Allies deal 30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}}},nil}c["+23 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=23},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=23}},nil}c["25% increased Critical Strike Chance with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["-35 Chaos Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="BASE",value=-35}},nil}c["25% increased Cold Damage if you have used a Fire Skill Recently"]={{[1]={[1]={type="Condition",var="UsedFireSkillRecently"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=25}},nil}c["100% of Physical Damage from Hits with this Weapon is Converted to a random Element"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=100}}," from Hits is Converted to a random Element "}c["During Flask Effect, Damage Penetrates 20% Resistance of each Element for which your"]={{},", Damage Resistance of each Element for which your "}c["20% increased Fire Damage taken"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=20}},nil}c["30% increased Fire Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="FireDamage",type="INC",value=30}},nil}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=100}}," to Taunt on Hit 6% reduced "}c["25% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["500% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=500}},nil}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies"]={{}," to Maim on Hit "}c["24% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=24}},nil}c["Grants Level 20 Aspect of the Avian Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="BirdAspect"}}},nil}c["You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned"]={nil,"You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned "}c["125% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=125}},nil}c["Nearby Enemies have 50% increased Fire and Cold Resistances"]={nil,"Nearby Enemies have 50% increased Fire and Cold Resistances "}c["220% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=220}},nil}c["8% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["Gain 50 Life when you Stun an Enemy 20% less Minimum Physical Attack Damage"]={nil,"Gain 50 Life when you Stun an Enemy 20% less Minimum Physical Attack Damage "}c["12% increased Lightning Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=12}},nil}c["Golems have 22% increased Maximum Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=22}}}},nil}c["Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being thrown"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being thrown "}c["10% increased Impale Effect 10% chance to Impale Enemies on Hit with Axes or Swords 15% increased Physical Damage with Axes or Swords"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=4,keywordFlags=0,name="FlaskEffect",type="INC",value=10}}," Impale 10% chance to Impale Enemies on Hit 15% increased Physical Damage with Axes or Swords "}c["10% chance to gain an Endurance Charge when you are Hit 30% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=10}}," to gain an Endurance Charge when you are Hit 30% increased "}c["20% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=20}},nil}c["6% increased Elemental Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=6}},nil}c["Passives in radius are Conquered by the Karui"]={nil,"Passives in radius are Conquered by the Karui "}c["Non-Banner Aura Skills reserve no Mana"]={nil,"Non-Banner Aura Skills reserve no Mana "}c["Removes Burning on use"]={nil,"Removes Burning on use "}c["10% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["Attack skills can have 1 additional Totem Summoned at a time"]={{[1]={flags=0,keywordFlags=65536,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["+12% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=12}},nil}c["6 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=6}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit Nearby Enemies are Blinded"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit Nearby Enemies are Blinded "}c["13% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-13}},nil}c["15% increased Elemental Damage if you've Chilled an Enemy Recently"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=15}}," if you've Chilled an Enemy Recently "}c["0.4% of Energy Shield Regenerated per Second for"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=0.4}}," for "}c["0.9% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.9}},nil}c["Socketed Gems are Supported by level 6 Blind"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=6,skillId="SupportBlind"}}},nil}c["20% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=20}},nil}c["+14 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=14}},nil}c["Gain 300% of Weapon Physical Damage as Extra Damage of an Element 20% increased Area of Effect for Attacks"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamage",type="BASE",value=300}}," as Extra Damage of an Element 20% increased Area of Effect for Attacks "}c["Grants level 5 Frostbite Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=5,skillId="Frostbite"}}},nil}c["+43% to Chaos Resistance while affected by Herald of Agony"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAgony"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=43}},nil}c["35% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=35}},nil}c["16% increased Elemental Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="ElementalDamage",type="INC",value=16}},nil}c["45% reduced Mana Cost of Raise Spectre"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-45}},nil}c["Has 1 Abyssal Socket"]={{[1]={flags=0,keywordFlags=0,name="AbyssalSocketCount",type="BASE",value=1}},nil}c["1% chance to Dodge Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=1}},nil}c["+15% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}},nil}c["20% increased Damage with Hits and Ailments against Enemies affected by Ailments"]={{[1]={flags=0,keywordFlags=786432,name="Damage",type="INC",value=20}}," against Enemies affected by Ailments "}c["+1000 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=1000}},nil}c["18% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=18}},nil}c["Socketed Gems are supported by level 2 Chance to Flee"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=2,skillId="SupportChanceToFlee"}}},nil}c["30% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=30}},nil}c["40% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["20% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-20}},nil}c["10% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["20% increased Maximum total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxEnergyShieldLeechRate",type="INC",value=20}},nil}c["65% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=65}},nil}c["10% reduced Frenzy Charge Duration per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-10}},nil}c["Minions Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second"]={nil,"Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second "}c["+250 to Armour while affected by a Guard Skill Buff"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=250}}," while affected by a Guard Skill Buff "}c["300% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=300}},nil}c["50% less Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="MORE",value=-50}},nil}c["+15% to Critical Strike Multiplier with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["100 Energy Shield Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=100}},nil}c["Minions have 10% chance to gain Onslaught for 4 seconds on Kill"]={{}," to gain Onslaught for 4 seconds on Kill "}c["25% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=25}}," when on Low Mana "}c["Gain Unholy Might for 3 seconds on Rampage Rampage"]={nil,"Gain Unholy Might for 3 seconds on Rampage Rampage "}c["+20 Energy Shield gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}}," gained on Kill "}c["Your Energy Shield starts at zero You cannot Recharge Energy Shield"]={nil,"Your Energy Shield starts at zero You cannot Recharge Energy Shield "}c["55% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=55}},nil}c["Modifiers to Critical Strike Multiplier also apply to Damage over Time Multiplier for Ailments from Critical Strikes at 50% of their value"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplierAppliesToDegen",type="BASE",value=50}},nil}c["8% increased Accuracy Rating with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["25% chance to Scorch Enemies"]={{}," to Scorch Enemies "}c["You can only deal Damage with this Weapon and Ignite"]={nil,"You can only deal Damage with this Weapon and Ignite "}c["Curses in this item are reflected back to you You cannot be Chilled for 3 seconds after being Chilled"]={nil,"Curses in this item are reflected back to you You cannot be Chilled for 3 seconds after being Chilled "}c["You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving"]={nil,"You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving "}c["35% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["Flasks do not apply to You"]={{[1]={flags=0,keywordFlags=0,name="FlasksDoNotApplyToPlayer",type="FLAG",value=true}},nil}c["30% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=30}},nil}c["Golems Deal 40% less Damage"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-40}}}},nil}c["5% chance to grant Onslaught to nearby Enemies on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill "}c["Non-Banner, Non-Mine Aura Skills reserve no Mana"]={nil,"Non-Banner, Non-Mine Aura Skills reserve no Mana "}c["12% of Physical Damage taken as Cold Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=12}},nil}c["24% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=24}},nil}c["18% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["70% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=70}},nil}c["10% reduced Reflected Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-10}}," Reflected "}c["20% reduced Reflected Physical Damage taken 4% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected 4% chance to deal Double Damage "}c["+330 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=330}},nil}c["40% increased Critical Strike Chance with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["200% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=200}},nil}c["30% increased Fire Damage if you have used a Cold Skill Recently"]={{[1]={[1]={type="Condition",var="UsedColdSkillRecently"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=30}},nil}c["105% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=105}},nil}c["80% increased Critical Strike Chance with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["Gain 75% increased Elemental Damage for 5 seconds"]={{[1]={[1]={type="Condition",var="PendulumOfDestructionElementalDamage"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=75}},nil}c["15% increased Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=15}},nil}c["+20 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["Modifiers to Claw Critical Strike Chance also apply to Unarmed Attack Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="ClawCritChanceAppliesToUnarmed",type="FLAG",value=true}},nil}c["Socketed Golem Gems grant Onslaught for 10 seconds on Summon"]={nil,"Socketed Golem Gems grant Onslaught for 10 seconds on Summon "}c["Gain Her Embrace for 3 seconds when you Ignite an Enemy"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainHerEmbrace",type="FLAG",value=true}},nil}c["You gain an Endurance Charge on Kill You gain Onslaught for 1 second per Endurance Charge when Hit"]={nil,"You gain an Endurance Charge on Kill You gain Onslaught for 1 second per Endurance Charge when Hit "}c["+0.1% to Critical Strike Chance per Poison affecting Enemy, up to +2.0%"]={{[1]={[1]={actor="enemy",limit=2,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.1}},nil}c["90% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=90}},nil}c["115% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=115}},nil}c["8% increased Maximum Energy Shield for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=8}},nil}c["Minions Regenerate 1% Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}}}},nil}c["40% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=40}},nil}c["+1 to Level of Active Socketed Skill Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="active_skill",value=1}}},nil}c["Adds 23 to 39 Cold Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=23},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=39}},nil}c["+65 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=65}},nil}c["100% increased Burning Damage if you've Ignited an Enemy Recently"]={{[1]={[1]={type="Condition",var="IgnitedEnemyRecently"},flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=100}},nil}c["Minions deal 6% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=6}}}},nil}c["15% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["Adds 25 to 40 Cold Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=25},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=40}},nil}c["10% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=10}},nil}c["+1500 Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1500}},nil}c["10% of Damage taken Gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=10}}," Gained as Mana over 4 seconds when Hit "}c["Reflects 1 to 150 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers "}c["Reflects 1 to 250 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 250 Lightning Damage to Melee Attackers "}c["Recover 100% of your maximum Life on use 15% of maximum Life taken as Chaos Damage per second"]={nil,"Recover 100% of your maximum Life on use 15% of maximum Life taken as Chaos Damage per second "}c["Recover 3% of Life when you Kill an Enemy during Flask Effect Recover 3% of Mana when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Life when you Kill an Enemy during Flask Effect Recover 3% of Mana when you Kill an Enemy during Flask Effect "}c["Guard Skills have 15% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}},nil}c["+20 Mana gained when you Block 40% increased Defences from Equipped Shield +5% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," gained when you Block 40% increased Defences +5% Chance to Block Attack Damage "}c["Adds 1 to 11 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=11}},nil}c["An additional Curse can be applied to you 20% increased Damage per Curse on you"]={nil,"An additional Curse can be applied to you 20% increased Damage per Curse on you "}c["50% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=50}},nil}c["If you've used a Skill Recently, you and nearby Allies have Tailwind"]={{[1]={[1]={type="Condition",var="UsedSkillRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Tailwind",type="FLAG",value=true}}}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second "}c["Left ring slot: Projectiles from Spells Fork Right ring slot: Projectiles from Spells Chain +1 times"]={nil,"Projectiles from Spells Fork Right ring slot: Projectiles from Spells Chain +1 times "}c["28% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=28}},nil}c["Can Allocate Passives from the Marauder's starting point"]={{},nil}c["Regenerate 100 Life per second if no Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="CorruptedItem"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["Socketed Gems are Supported by level 10 Added Cold Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportAddedColdDamage"}}},nil}c["+25% chance to be Ignited"]={{}," to be Ignited "}c["Recover 1% of Maximum Life when you Ignite an Enemy"]={nil,"Recover 1% of Maximum Life when you Ignite an Enemy "}c["Critical Strikes deal 50% increased Lightning Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=50}},nil}c["+1 to maximum number of Sentinels of Purity +5 to Maximum Virulence Minions deal 20% increased Damage while you are affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=1}}," maximum number of Sentinels of Purity +5 to Maximum Virulence Minions deal 20% increased while you are affected by a Herald "}c["Items and Gems have 50% increased Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="GlobalAttributeRequirements",type="INC",value=50}},nil}c["50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy "}c["20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy +1 to Maximum Frenzy Charges"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=20}}," to gain aCharge when you Hit a Rare or Unique Enemy +1 to "}c["0.6% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.6}},nil}c["30% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=30}},nil}c["24% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["15% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=15}},nil}c["Summoned Golems are Immune to Elemental Damage 20% increased Damage per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem"]={nil,"Summoned Golems are Immune to Elemental Damage 20% increased Damage per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem "}c["Raging Spirits have 150% increased Damage"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=150}}}},nil}c["200% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," with arrows that Fork "}c["20% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=20}},nil}c["Your Flasks grant 10% chance to Freeze during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10}},nil}c["90% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=90}},nil}c["30% chance to Cast Socketed Spells when"]={{}," to Cast Socketed s when "}c["30% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil}c["Your Offering Skills also affect you"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"},type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="buffNotPlayer",value=false}}}}},nil}c["Gain an Endurance Charge when you take a Critical Strike"]={nil,"Gain an Endurance Charge when you take a Critical Strike "}c["Adds 65 to 105 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=65},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=105}},nil}c["50% increased Stun Duration on you"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=50}}," on you "}c["5% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-5}},nil}c["30% increased Effect of Buffs granted by your Active Ancestor Totems"]={{[1]={[1]={skillNameList={[1]="Ancestral Warchief",[2]="Ancestral Protector"},type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=30}},nil}c["Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits"]={nil,"Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits "}c["Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken You are Shocked during Flask effect"]={nil,"Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken You are Shocked during Flask effect "}c["Your Energy Shield starts at zero Cannot gain Energy Shield"]={nil,"Your Energy Shield starts at zero Cannot gain Energy Shield "}c["Trigger a Socketed Warcry Skill when you lose Endurance Charges +80 to maximum Life"]={nil,"Trigger a Socketed Warcry Skill when you lose Endurance Charges +80 to maximum Life "}c["20% to Fire Resistance"]={nil,"20% to Fire Resistance "}c["Gain a Frenzy Charge on Hit while Bleeding 15% increased Movement Speed while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding 15% increased Movement Speed while Bleeding "}c["Gain a Blitz Charge on Critical Strike +20 to Maximum Blitz Charges"]={nil,"Gain a Blitz Charge on Critical Strike +20 to Maximum Blitz Charges "}c["+3% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["100% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=100}},nil}c["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}c["50% increased Critical Strike Chance with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritChance",type="INC",value=50}},nil}c["Transfiguration of Body"]={{[1]={flags=0,keywordFlags=0,name="TransfigurationOfBody",type="FLAG",value=true}},nil}c["15% increased Cooldown Recovery Speed of Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="CooldownRecovery",type="INC",value=15}},nil}c["You can Cast an additional Brand 20% increased Damage with Brand Skills"]={nil,"You can Cast an additional Brand 20% increased Damage with Brand Skills "}c["+45% to Critical Strike Multiplier against Enemies that are affected by Elemental Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"}},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}},nil}c["Gain Onslaught for 2 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 2 second per Frenzy Charge on use "}c["Summoned Raging Spirits have 90% increased maximum Life"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=90}}}},nil}c["You gain 8% increased Area of Effect for each Mine"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=8}},"% increased for each "}c["+28 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=28},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=28}},nil}c["10% chance to gain Onslaught for 10 Seconds when you Hit a Rare"]={{}," to gain Onslaught for 10 Seconds when you Hit a Rare "}c["You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour"]={nil,"You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour "}c["10% chance to Dodge Attacks while affected by Grace"]={{[1]={[1]={type="Condition",var="AffectedByGrace"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=10}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["18% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HavePhysicalGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[2]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveLightningGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[3]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveColdGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[4]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveFireGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[5]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveChaosGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}}},nil}c["88% increased Fire Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="FireDamage",type="INC",value=88}},nil}c["6% increased Accuracy Rating with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["You cannot have non-Golem Minions"]={nil,"You cannot have non-Golem Minions "}c["Elemental Hit deals 15% increased Damage"]={{[1]={[1]={skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Socketed Gems have Blood Magic"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="SkillBloodMagic",type="FLAG",value=true}},nil}c["Gain 18 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"]={{[1]={[1]={actor="enemy",threshold=1,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=0,name="EnergyShieldOnHit",type="BASE",value=18}},nil}c["225% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=225}},nil}c["30% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=30}},nil}c["5% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["35% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["220% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=220}},nil}c["Adds 1 to 70 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=70}},nil}c["8% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=8}},nil}c["17% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=17}},nil}c["3% additional Chance to Block while you have at least 5 Crab Barriers"]={{[1]={[1]={stat="CrabBarriers",threshold=5,type="StatThreshold"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["0.6% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.6}},nil}c["+25% chance to be Poisoned"]={{}," to be Poisoned "}c["2% increased Attack Critical Strike Chance per 200 Accuracy Rating"]={{[1]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=1,keywordFlags=0,name="CritChance",type="INC",value=2}},nil}c["Projectiles deal 10% more Damage for each remaining Chain"]={{[1]={[1]={stat="ChainRemaining",type="PerStat"},flags=1024,keywordFlags=0,name="Damage",type="MORE",value=10}},nil}c["Adds 98 to 140 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=140}},nil}c["14% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["You have Crimson Dance if you have dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Crimson Dance"}},nil}c["Minions have 5% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}}}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect "}c["Vaal Skills deal 100% increased Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=256,name="Damage",type="INC",value=100}},nil}c["12% increased Attack Speed with Daggers"]={{[1]={flags=524293,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["5% increased Attack Speed with One Handed Weapons"]={{[1]={flags=134217733,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["24% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 15%"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 15% "}c["Your Energy Shield starts at zero"]={nil,"Your Energy Shield starts at zero "}c["Attacks have Blood Magic"]={{[1]={flags=1,keywordFlags=0,name="SkillBloodMagic",type="FLAG",value=true}},nil}c["10% chance to gain an Endurance, Frenzy or Power Charge when any of your Traps is Triggered by an Enemy"]={{}," to gain an Endurance,or Power Charge when any of your s is Triggered by an Enemy "}c["50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},[2]={stat="PowerCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=50}}," to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}c["20% increased Damage with Hits against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=20}},nil}c["+18% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}},nil}c["Attacks with this Weapon Maim on hit"]={nil,"Maim on hit "}c["100% increased Melee Physical Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=256,keywordFlags=262144,name="PhysicalDamage",type="INC",value=100}},nil}c["45% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=45}},nil}c["Life Leeched per Second is doubled. Maximum total Recovery per second from Life Leech is doubled."]={nil,"Life Leeched per Second is doubled. Maximum total Recovery per second from Life Leech is doubled. "}c["+200 to Accuracy Rating with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["25% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["Enemies Taunted by you deal 10% less Damage with Hits and Ailments against other targets"]={nil,"Enemies Taunted by you deal 10% less Damage with Hits and Ailments against other targets "}c["50% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["20% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=20}},nil}c["12% increased Minion Damage per Spectre you own Regenerate 0.6% of Life per second for each Raised Zombie"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}}," Minion per you own Regenerate 0.6% of Life per second for each Raised Zombie "}c["Adds 10 to 14 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=14}},nil}c["Minions have 60% chance to Poison Enemies on Hit"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=60}}}},nil}c["18% increased Physical Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["90% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=90}},nil}c["40% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=40}},nil}c["Adds 15 to 33 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=33}},nil}c["Knockback direction is reversed Socketed Gems are Supported by level 10 Knockback"]={nil,"Knockback direction is reversed Socketed Gems are Supported by level 10 Knockback "}c["50% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=50}},nil}c["Adds 20 to 50 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=50}},nil}c["Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground"]={nil,"Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground "}c["18% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=18}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}}," per Summoned +1 to maximum number of Golems "}c["+10% to Global Critical Strike Multiplier per Green Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["+2 to Maximum Life per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=2}},nil}c["Unaffected by Conductivity while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning "}c["13% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=13}},nil}c["20% chance to gain a Endurance Charge on Kill 4% of Life Regenerated per second"]={{}," "}c["20% chance for your Flasks to not consume Charges"]={{}," for your Flasks to not consume Charges "}c["20% reduced Reflected Physical Damage taken 4% chance to deal Double Damage +20 to Strength 20% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected 4% chance to deal Double Damage +20 to Strength 20% increased Physical Damage "}c["15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=7.5}},nil}c["Gain 50 Life when you Stun an Enemy"]={nil,"Gain 50 Life when you Stun an Enemy "}c["40% reduced Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=-40}},nil}c["15% increased Movement Speed while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["+2% to maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=2}},nil}c["+2% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["Share Endurance, Frenzy and Power Charges with nearby party members"]={nil,"Share Endurance, Frenzy and Power Charges with nearby party members "}c["+200 to Accuracy Rating with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["Arrows that Pierce cause Bleeding"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=1025,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["Adds 51 to 59 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=51},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=59}},nil}c["+360 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=360}},nil}c["20% reduced Reflected Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-20}}," Reflected "}c["Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=327680,name="PhysicalMin",type="BASE",value=10},[2]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=327680,name="PhysicalMax",type="BASE",value=15}},nil}c["and nearby Allies have +1000 to Armour"]={nil,"and nearby Allies have +1000 to Armour "}c["24% increased Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["You have Crimson Dance while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Crimson Dance"}},nil}c["Manifested Dancing Dervish also manifests a copy of Dancing Dervish"]={nil,"Manifested Dancing Dervish also manifests a copy of Dancing Dervish "}c["10% increased Damage for each type of Abyssal Jewel affecting you"]={{[1]={[1]={type="Multiplier",var="AbyssJewelType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["300% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=300}},nil}c["10% chance to gain a Frenzy Charge when you Block Attack Damage"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=1,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain aCharge when you Block "}c["10% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["Adds 14 to 22 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=22}},nil}c["8% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Bleeding you inflict is Reflected to you"]={nil,"Bleeding you inflict is Reflected to you "}c["Removes 20% of your maximum Energy Shield on use You take 10% of your maximum Life as Chaos Damage on use"]={nil,"Removes 20% of your maximum Energy Shield on use You take 10% of your maximum Life as Chaos Damage on use "}c["Minions created Recently cannot be Damaged"]={nil,"created Recently cannot be Damaged "}c["60% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=60}},nil}c["30% reduced Spell Damage taken from Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=-30}},nil}c["Reserves 30% of Life"]={{[1]={flags=0,keywordFlags=0,name="ExtraLifeReserved",type="BASE",value=30}},nil}c["30% increased Damage against Rare monsters"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," against Rare monsters "}c["28% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=28}},nil}c["20% chance to Avoid Elemental Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=20},[2]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=20},[3]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=20},[4]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=20}},nil}c["6% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=6}},nil}c["Permanently Intimidate Enemies on Block"]={nil,"Permanently Intimidate Enemies on Block "}c["Lose all Endurance Charges when Rampage ends"]={nil,"Lose all Endurance Charges when Rampage ends "}c["Uses both hand slots Adds 6 to 66 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=66}},"Uses both hand slots "}c["Adds 118 to 255 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=118},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=255}},nil}c["8% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-8}},nil}c["+23 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=23}},nil}c["16% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=16}},nil}c["30% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=30}},nil}c["+30% to Critical Strike Multiplier with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["0.5% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=0.5}},nil}c["Recover 3% of Life when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Life when you Kill an Enemy during Flask Effect "}c["Every 5 seconds, 20% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, 20% of Maximum Life Regenerated over one second "}c["Every 5 seconds, 30% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, 30% of Maximum Life Regenerated over one second "}c["50% less Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="MORE",value=-50}},nil}c["Reflects 1 to 220 Lightning Damage to Attackers on Block"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block "}c["30% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=30}},nil}c["Nearby Enemies have -10% to all Resistances"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-10}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-10}}}},nil}c["50% increased Flask Charges gained while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=50}},nil}c["Adds 15 to 40 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=40}},nil}c["Minions deal 13% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=13}}}},nil}c["10% chance to gain a Power Charge on Non-Critical Strike with a Claw or Dagger"]={{}," to gain a Power Charge on Non-Critical Strike with a Claw or Dagger "}c["4% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["15% increased Minion Duration"]={{[1]={[1]={skillType=21,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}c["For each nearby corpse, you and nearby Allies Regenerate 0.2% of Energy Shield per second, up to 2.0% per second"]={{[1]={[1]={limit=2,limitTotal=true,type="Multiplier",var="NearbyCorpse"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=0.2}}}},nil}c["25% increased Attack Speed if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["10% chance to gain a Power Charge when you Shock a Chilled Enemy 25% increased Cold Damage with Hits against Shocked Enemies 25% increased Lightning Damage with Hits against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},[2]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdDamage",type="BASE",value=10}}," to gain a Power Charge when you Shock a Chilled Enemy 25% increased 25% increased Lightning Damage with Hits "}c["5% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=5}},nil}c["20% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=20}},nil}c["With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."]={nil,"With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy. "}c["22% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=22}},nil}c["Grants Level 30 Smite Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="Smite"}}},nil}c["6% increased Attack Damage for each Map Item Modifier affecting the Area 3% increased Attack Speed for each Map Item Modifier affecting the Area"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=6}}," for each Map Item Modifier affecting the 3% increased Attack Speed for each Map Item Modifier affecting the Area "}c["63% increased Duration of Poisons you inflict during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=63}},nil}c["+2% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["25% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=25}},nil}c["You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner"]={nil,"You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner "}c["Nearby Enemies have 10% reduced Stun and Block Recovery Nearby Enemies have an additional 2% chance to receive a Critical Strike"]={nil,"Nearby Enemies have 10% reduced Stun and Block Recovery Nearby Enemies have an additional 2% chance to receive a Critical Strike "}c["30% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}},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["You gain 8% increased Damage for each Trap 20% Chance for Traps to Trigger an additional time"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="BASE",value=8}},"% increased for each 20% Chance for Traps to Trigger an additional time "}c["Attack Skills deal 18% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=18}},nil}c["20% increased Damage with Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=20}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["30% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["15% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=15}},nil}c["+150% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=150}},nil}c["+212 Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=212}},nil}c["4% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-4}},nil}c["With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova 15% reduced Spark Duration"]={nil,"With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova 15% reduced Spark Duration "}c["80% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["Projectile Damage increased by 50% of Arrow Pierce Chance"]={nil,"Projectile Damage increased by 50% of Arrow Pierce Chance "}c["20% chance to gain an Endurance Charge when Hit while Channelling"]={{}," to gain an Endurance Charge when Hit "}c["Gain a Power Charge after Spending a total of 200 Mana"]={nil,"Gain a Power Charge after Spending a total of 200 Mana "}c["50% increased Stun Duration on you 4% increased Melee Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=256,keywordFlags=0,name="EnemyStunDuration",type="INC",value=50}}," on you 4% increased Damage "}c["30% chance to Cast a Socketed Lightning Spell on Hit"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,name="SupportUniqueMjolnerLightningSpellsCastOnHit"}}},nil}c["50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"]={{}," Rarity of Items Dropped by Enemies killed with a Critical Strike "}c["+7 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=7}},nil}c["their Maximum Life as Physical Damage 25% reduced Bleed duration"]={nil,"their Maximum Life as Physical Damage 25% reduced Bleed duration "}c["+150 to Accuracy Rating with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Accuracy",type="BASE",value=150}},nil}c["+100% to Cold Resistance when Socketed with a Green Gem"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=100}}," when Socketed with a Green Gem "}c["10% chance to Impale Enemies on Hit with Attacks"]={{}," to Impale Enemies on Hit "}c["2% of Life Regenerated per Second if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Adds 190 to 320 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=190},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=320}},nil}c["20% of Overkill Damage is Leeched as Life Cannot be Stunned while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill Cannot be Stunned "}c["+3% to maximum Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=3}}," maximum "}c["Projectiles Pierce while Phasing Projectiles Pierce 5 additional Targets while you have Phasing"]={nil,"Projectiles Pierce while Phasing Projectiles Pierce 5 additional Targets while you have Phasing "}c["30% increased Elemental Damage with Weapons while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["10% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=10}},nil}c["Your Aura Skills are Disabled"]={nil,"Your Aura Skills are Disabled "}c["100% increased Evasion Rating while you have Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil}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["15% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Carved to glorify 10000 new faithful converted by High Templar Venarius Passives in radius are Conquered by the Templars"]={nil,"Carved to glorify 10000 new faithful converted by High Templar Venarius Passives in radius are Conquered by the Templars "}c["You can inflict an additional Ignite on an Enemy"]={nil,"You can inflict an additional Ignite on an Enemy "}c["12% increased Cast Speed with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["25% increased Elusive Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=25}}," Elusive "}c["Immune to Burning Ground, Shocked Ground and Chilled Ground"]={nil,"Immune to Burning Ground, Shocked Ground and Chilled Ground "}c["Fortify Buffs you create instead grant 30% more Evasion Rating"]={nil,"Fortify Buffs you create instead grant 30% more Evasion Rating "}c["2% additional Chance to Block Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["Clarity Reserves no Mana"]={{[1]={[1]={skillId="Clarity",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["25% increased Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Can have up to 2 additional Remote Mines placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveMineLimit",type="BASE",value=2}},nil}c["140% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=140}},nil}c["10% Chance to Cause Monster to Flee on Block 1% of Damage Leeched as Life against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=262144,name="Damage",type="BASE",value=10}}," to Cause Monster to Flee on Block 1% of Leeched as Life "}c["Regenerate 1% of Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["10% increased Cast Speed while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["6% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["Spell Skills deal no Damage Your Spells are disabled"]={nil,"no Damage Your Spells are disabled "}c["Regenerate 2% of Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=2}},nil}c["+10% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=10}},nil}c["Temporal Chains has 30% reduced Effect on You"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-30}},nil}c["175% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=175}},nil}c["Recover 250 Life when you Block"]={nil,"Recover 250 Life when you Block "}c["400% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=400}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["Determination Reserves no Mana"]={{[1]={[1]={skillId="Determination",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["5% increased Impale Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=5}}," Impale "}c["Socketed Gems have 25% reduced Elemental Equilibrium effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-25}}}}," Elemental Equilibrium "}c["nearby Enemies when Hit"]={nil,"nearby Enemies when Hit "}c["12% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["240% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=240}},nil}c["Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity"]={{[1]={[1]={div=25,stat="Dex",type="PerStat"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={[1]={div=25,stat="Dex",type="PerStat"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=3}},nil}c["+10% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=10}},nil}c["Cannot be Frozen or Chilled if you've used a Fire Skill Recently"]={nil,"Cannot be Frozen or Chilled if you've used a Fire Skill Recently "}c["Hits ignore Enemy Monster Fire Resistance while you are Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="IgnoreFireResistance",type="FLAG",value=true}},nil}c["+300 Armour per active Totem"]={{[1]={flags=0,keywordFlags=16384,name="Armour",type="BASE",value=300}}," per active "}c["Adds 110 to 165 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=110},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=165}},nil}c["7 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=7}},nil}c["15% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["40% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=40}},nil}c["1% increased Area of Effect per 50 Unreserved Maximum Mana, up to 100%"]={{[1]={[1]={div=50,limit=100,limitTotal=true,stat="ManaUnreserved",type="PerStat"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=1}},nil}c["15% increased Effect of Impales inflicted by Hits that also inflict Bleeding"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=15}}," of Impales inflicted by Hits that also inflict Bleeding "}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=25}}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced "}c["23% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=23}},nil}c["Golems regenerate 2% of their Maximum Life per second"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}}}},nil}c["18% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["Shared Suffering"]={nil,"Shared Suffering "}c["3% chance to Dodge Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=3}},nil}c["Deal no Non-Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="DealNoChaos",type="FLAG",value=true}},nil}c["Cast Socketed Minion Spells on Kill with this Weapon"]={nil,"Cast Socketed Minion Spells on Kill with this Weapon "}c["8% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=8}},nil}c["30% reduced Flask Charges gained while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=-30}},nil}c["5% increased Attack and Cast Speed while Leeching Energy Shield"]={{[1]={[1]={type="Condition",var="LeechingEnergyShield"},flags=0,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["13% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=13}},nil}c["1% of Fire Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=1}},nil}c["+10 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=10}},nil}c["55% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=55}},nil}c["100% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=100}},nil}c["1% increased Movement Speed per Summoned Totem"]={{[1]={[1]={stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}},nil}c["30% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["15% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Axe or Sword Attacks deal 15% increased Damage with Ailments"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=2048,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["14% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=14}},nil}c["25% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["10% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=10}},nil}c["+60% to Critical Strike Multiplier for Spells if you haven't Killed Recently"]={{[1]={[1]={neg=true,type="Condition",var="KilledRecently"},flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=60}},nil}c["You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage Banner Skills Reserve no Mana"]={nil,"You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage Banner Skills Reserve no Mana "}c["40% increased Attack Damage against Maimed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Maimed"},flags=1,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["1% of Energy Shield regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["8% increased Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["18% reduced Spark Duration"]={{[1]={[1]={skillName="Spark",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-18}},nil}c["Energy Shield Recharge is not interrupted by Damage if"]={nil,"Energy Shield Recharge is not interrupted by Damage if "}c["40% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=40}},nil}c["50% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=50}},nil}c["10% chance to Impale Enemies on Hit with Axes or Swords"]={{}," to Impale Enemies on Hit "}c["23% increased Damage for each Magic Item Equipped"]={{[1]={[1]={type="Multiplier",var="MagicItem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=23}},nil}c["15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"]={{}," to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons "}c["1% additional Physical Damage Reduction per Minion, up to 10% 2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20% Minions have 20% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Minion, up to 10% 2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20% Minions have 20% more Maximum Life "}c["25% reduced Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-25}},nil}c["5% chance to grant Unholy Might to nearby Enemies on Kill"]={{}," to grant Unholy Might to nearby Enemies on Kill "}c["Minions Regenerate of 1.5% Life per second"]={nil,"Regenerate of 1.5% Life per second "}c["6% increased Accuracy Rating with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["10% reduced Chance to Block Attacks and Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=-10},[2]={flags=0,keywordFlags=0,name="SpellBlockChance",type="INC",value=-10}},nil}c["10% increased Damage per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}," per Summoned "}c["+1 to Maximum Frenzy Charge"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1}},nil}c["Spell Skills have +10% to Damage over Time Multiplier for Poison"]={{[1]={flags=2,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=10}},nil}c["Damage Penetrates 10% Cold Resistance against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdPenetration",type="BASE",value=10}},nil}c["When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge "}c["0.8% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.8}},nil}c["135% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=135}},nil}c["Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits 15% chance to Impale Enemies on Hit with Attacks"]={nil,"Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits 15% chance to Impale Enemies on Hit with Attacks "}c["10% chance of Arrows Piercing"]={{}," of Arrows Piercing "}c["Socketed Gems are Supported by level 1 Spell Echo"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportMulticast"}}},nil}c["Adds 3 to 6 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=3},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=6}},nil}c["50% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["10% chance for Energy Shield Recharge to start when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}}," for Recharge to start when you use a Skill "}c["16% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=16}},nil}c["20% increased Effect of Chill you inflict with Critical Strikes 20% increased Effect of Shock you inflict with Critical Strikes 40% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20}}," you inflict with Critical Strikes 20% increased Effect of Shock you inflict with Critical Strikes 40% increased Critical Strike Chance "}c["-5% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=-5}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["12% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=12}},nil}c["+30% to Critical Strike Multiplier with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritMultiplier",type="BASE",value=30}},nil}c["1% Life Regenerated per Second for each of your Mines Detonated Recently, up to 20%"]={{[1]={[1]={limit=20,limitTotal=true,type="Multiplier",var="MineDetonatedRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["16% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["Mortal Conviction"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Mortal Conviction"}},nil}c["20% increased Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=20}},nil}c["your maximum number of Crab Barriers"]={nil,"your maximum number of Crab Barriers "}c["+1% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=1}},nil}c["Adds 1 to 18 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=18}},nil}c["30% reduced Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=-30}},nil}c["25% increased Melee Critical Strike Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["For each nearby corpse, you and nearby Allies Regenerate 5 Mana per second, up to 50 per second"]={{[1]={[1]={limit=50,limitTotal=true,type="Multiplier",var="NearbyCorpse"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=5}}}},nil}c["+8 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,keywordFlags=0,name="LifeOnHit",type="BASE",value=8}},nil}c["Socketed Golem Skills have 25% chance to Taunt on Hit Socketed Gems are Supported by level 17 Increased Minion Damage"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="BASE",value=25}}}}," to Taunt on Hit Socketed Gems are Supported by level 17 Increased Minion "}c["16% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["35% chance to avoid being Stunned for each Herald Skill affecting you Mana Reservation of Herald Skills is always 45%"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=35}}," for each Herald Skill affecting you Mana Reservation is always 45% "}c["Adds 38 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["Adds 12 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["Adds 13 to 30 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=30}},nil}c["15% of Damage Taken from Hits is Leeched as Life during Flask Effect 30% increased Rarity of Items found during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="DamageTakenLifeLeech",type="BASE",value=15}}," from Hits 30% increased Rarity of Items found "}c["5% increased Evasion Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=5}},nil}c["40% reduced Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=-40}},nil}c["-40 Physical Damage taken when hit by Animals"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenWhenHit",type="BASE",value=-40}}," by Animals "}c["You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground"]={nil,"You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground "}c["Enemies affected by your Spider's Webs deal 10% reduced Damage"]={nil,"Enemies affected by your Spider's Webs deal 10% reduced Damage "}c["70% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=70}},nil}c["+20 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=20}},nil}c["25% chance to gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance Gain a Challenger Charge when you Kill an Enemy while in Sand Stance +10 to Maximum Challenger Charges"]={{[1]={flags=0,keywordFlags=0,name="ChallengerChargesMax",type="BASE",value=25}}," to gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance Gain a Challenger Charge when you Kill an Enemy while in Sand Stance +10 to "}c["18% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=18}},nil}c["Arrows Pierce all Targets"]={{[1]={flags=1,keywordFlags=0,name="PierceAllTargets",type="FLAG",value=true}},nil}c["Herald Skills have 25% increased Area of Effect"]={nil,"Herald Skills have 25% increased Area of Effect "}c["130% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=130}},nil}c["Adds 20 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["Adds 45 to 90 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=90}},nil}c["15% increased Movement Speed while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["10% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["5% reduced Area Damage taken from Hits +2 to Melee Strike Range"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits +2 to Melee Strike Range "}c["You are Immune to Silence"]={nil,"You are Immune to Silence "}c["30% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=30}},nil}c["Socketed Gems are Supported by level 1 Increased Area of Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportIncreasedAreaOfEffect"}}},nil}c["Gain 10% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=10}},nil}c["Cannot gain Energy Shield"]={nil,"Cannot gain Energy Shield "}c["10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web"]={{}," to gain a Power Charge on hitting an Enemy affected by a Spider's Web "}c["22% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=22}},nil}c["+200 to Accuracy Rating with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["22% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=22}},nil}c["Life Leech effects are not removed at Full Life 50% increased Attack Damage while Leeching 6% reduced Damage taken while Leeching"]={nil,"Life Leech effects are not removed at Full Life 50% increased Attack Damage while Leeching 6% reduced Damage taken while Leeching "}c["0.8% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.8}},nil}c["50% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=50}},nil}c["275% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=275}},nil}c["15% increased Movement Speed while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Culling Strike Hits can't be Evaded"]={nil,"Culling Strike Hits can't be Evaded "}c["6% reduced Damage taken while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-6}},nil}c["+1000 to Spectre maximum Life"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=1000}}}},nil}c["Attacks with Axes or Swords grant 1 Rage on Hit, no more than once every second"]={nil,"Attacks with Axes or Swords grant 1 Rage on Hit, no more than once every second "}c["Cold Skills have a 25% chance to apply Cold Exposure on Hit"]={nil,"a 25% chance to apply Cold Exposure on Hit "}c["1% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=1}},nil}c["20% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["4% reduced Enemy Stun Threshold with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-4}},nil}c["25% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-25}},nil}c["0.4% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.4}},nil}c["60% increased Critical Strike Chance with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["12% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Attacks with this Weapon deal 80-120 added Chaos Damage against"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=80},[2]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=120}}," against "}c["Regenerate 3.00% of Energy Shield per second while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=3}},nil}c["When you create a Banner, it gains 20% of the Stages of your placed Banner"]={nil,"When you create a Banner, it gains 20% of the Stages of your placed Banner "}c["25% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["+30 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=30}},nil}c["15% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=15}},nil}c["20% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["With at least 40 Strength in Radius, Ground Slam has a 35% increased angle"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 35% increased angle "}c["Attack Skills deal 26% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=26}},nil}c["Trigger Level 15 Feast of Flesh every 5 seconds"]={nil,nil}c["Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="BleedChance",type="BASE",value=25}},nil}c["Sword Attacks deal 24% increased Damage with Hits and Ailments"]={{[1]={flags=4194304,keywordFlags=786432,name="Damage",type="INC",value=24}},nil}c["+1% Chance to Block Attack Damage per Summoned Skeleton"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}}}}," per Summoned "}c["7% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-7}},nil}c["5% increased Effect of Flasks on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=5}},nil}c["15% of Physical Attack Damage Added as Fire Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=15}},nil}c["90% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=90}},nil}c["20% increased Effect of Auras on you"]={{[1]={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=20}},nil}c["You can apply an additional Curse"]={{[1]={flags=0,keywordFlags=0,name="EnemyCurseLimit",type="BASE",value=1}},nil}c["120% increased Critical Strike Chance during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=120}},nil}c["2% increased Chaos Damage per 100 maximum Mana, up to a maximum of 80%"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=2}}," per 100 maximum Mana, up to a maximum of 80% "}c["10% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["+15% to Critical Strike Multiplier with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Grace has 60% increased Aura Effect"]={{[1]={[1]={skillName="Grace",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["22% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=22}},nil}c["+8 Mana gained when you Block +4% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=8}}," gained when you Block +4% Chance to Block Attack Damage "}c["0.5% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["Recover 2% of Energy Shield on Kill"]={nil,"Recover 2% of Energy Shield on Kill "}c["Adds 10 to 16 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=16}},nil}c["20% chance to Curse non-Cursed Enemies with a random Curse on Hit"]={{}," to Curse non-Cursed Enemies with a random Curse on Hit "}c["Fortify Buffs you create instead grant 30% more Evasion Rating 25% increased Attack and Cast Speed while you have Fortify"]={nil,"Fortify Buffs you create instead grant 30% more Evasion Rating 25% increased Attack and Cast Speed while you have Fortify "}c["During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped"]={nil,"During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped "}c["35% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["25% chance to Blind with Hits against Bleeding Enemies"]={{}," to Blind "}c["Precision has 50% less Mana Reservation"]={{[1]={[1]={skillName="Precision",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=-50}},nil}c["15% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["20% chance to Impale Enemies on Hit with Attacks"]={{}," to Impale Enemies on Hit "}c["-1 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=-1}},nil}c["Maximum total Recovery per second from Life Leech is doubled."]={nil,"Maximum total Recovery per second from Life Leech is doubled. "}c["10% more Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}},nil}c["Adds 87 to 127 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=87},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=127}},nil}c["60% increased Damage if you've Frozen an Enemy Recently"]={{[1]={[1]={type="Condition",var="FrozenEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["6% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed"]={nil,"Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed "}c["30 Life gained for each Enemy Hit while affected by Vitality 30% increased Life Recovery Rate while affected by Vitality"]={nil,"30 Life gained for each Enemy Hit while affected by Vitality 30% increased Life Recovery Rate while affected by Vitality "}c["Recharges 1 Charge when you consume an Ignited Corpse"]={nil,"Recharges 1 Charge when you consume an Ignited Corpse "}c["Fire Spells have 15% of Physical Damage Converted to Fire Damage"]={{[1]={flags=2,keywordFlags=16,name="PhysicalDamageConvertToFire",type="BASE",value=15}},nil}c["50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled"]={{[1]={flags=0,keywordFlags=262144,name="FlaskEffect",type="MORE",value=50}}," of Herald Buffs on you 100% more Damage from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled "}c["Damage with Weapons Penetrates 8% Fire Resistance"]={{[1]={flags=8192,keywordFlags=0,name="FirePenetration",type="BASE",value=8}},nil}c["+7 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,keywordFlags=0,name="LifeOnHit",type="BASE",value=7}},nil}c["Gems Socketed in Green Sockets have +10% to Quality Gems Socketed in Blue Sockets gain 25% increased Experience"]={nil,"Gems Socketed in Green Sockets have +10% to Quality Gems Socketed in Blue Sockets gain 25% increased Experience "}c["25% reduced Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-25}},nil}c["Adds 41 to 107 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=41},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=107}},nil}c["Damage from an Enemy Hit Recently Unaffected by Ignite"]={nil,"Damage from an Enemy Hit Recently Unaffected by Ignite "}c["You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration"]={nil,"You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration "}c["10% chance to gain an Endurance Charge on Melee Critical Strike 30% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain an Endurance Charge on Critical Strike 30% increased with Ailments from Attack Skills "}c["Raised Zombies have 100% increased maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=100}}}},nil}c["25% chance to Trigger a Socketed Spell when you Attack with a Bow Trigger a Socketed Spell when you Attack with a Bow"]={{}," to Trigger a Socketed when you Attack with a Bow Trigger a Socketed Spell when you Attack with a Bow "}c["240% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=240}},nil}c["20% of Overkill Damage is Leeched as Life You are Immune to Bleeding while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill You are Immune to Bleeding "}c["50% increased Critical Strike Chance for Attacks"]={{[1]={flags=1,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["75% chance to cause Enemies to Flee on use 100% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="BASE",value=75}}," to cause Enemies to Flee on use 100% increased "}c["Cold Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=32,name="PoisonChance",type="BASE",value=20}},nil}c["+200 Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="BASE",value=200}},nil}c["80% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=80}},nil}c["2 additional Projectiles if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["Has 6 Sockets"]={{[1]={flags=0,keywordFlags=0,name="SocketCount",type="BASE",value=6}},nil}c["Bleeding you inflict deals Damage 5% faster"]={{[1]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=5}},nil}c["Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently"]={{[1]={[1]={type="Multiplier",var="ShockedEnemyKilledRecently"},flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={[1]={type="Multiplier",var="ShockedEnemyKilledRecently"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=10}},nil}c["Chaos Damage does not bypass Energy Shield -10 Chaos Damage taken"]={nil,"Chaos Damage does not bypass Energy Shield -10 Chaos Damage taken "}c["+0.4% to Critical Strike Chance per Poison affecting Enemy, up to +2.0%"]={{[1]={[1]={actor="enemy",limit=2,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.4}},nil}c["9% increased Skeleton Attack Speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=9}}}},nil}c["2 Mana Regenerated per Second per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=2}},nil}c["30 Life Gained on Igniting an Enemy"]={nil,"30 Life Gained on Igniting an Enemy "}c["10% of Damage taken Gained as Mana over 4 seconds when Hit Cannot Leech Mana"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=10}}," Gained as Mana over 4 seconds when Hit Cannot Leech Mana "}c["Totems gain +20% to all Elemental Resistances Totems have 15% additional Physical Damage Reduction +100 Armour per Summoned Totem"]={nil,"Totems gain +20% to all Elemental Resistances Totems have 15% additional Physical Damage Reduction +100 Armour per Summoned Totem "}c["15% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=15}},nil}c["20% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["+10% to Critical Strike Multiplier with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritMultiplier",type="BASE",value=10}},nil}c["100% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=100}},nil}c["With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"]={nil,"With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds "}c["0.8% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.8}},nil}c["13% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=13}},nil}c["No Life Recovery Applies during Flask effect 100% increased Amount Recovered"]={nil,"No Life Recovery Applies during Flask effect 100% increased Amount Recovered "}c["Critical Strikes with Daggers have a 40% chance to Poison the Enemy"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=524288,keywordFlags=0,name="PoisonChance",type="BASE",value=40}},nil}c["6 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=6}},nil}c["21% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=21}},nil}c["50% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=50}},nil}c["10% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["200% increased Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=200}},nil}c["Recharges 1 Charge when you consume an Ignited Corpse Enemies Ignited by you during Flask Effect take 10% increased Damage"]={nil,"Recharges 1 Charge when you consume an Ignited Corpse Enemies Ignited by you during Flask Effect take 10% increased Damage "}c["Curse Skills have 20% increased Cast Speed"]={{[1]={[1]={skillType=32,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["165% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=165}},nil}c["Rampage"]={nil,"Rampage "}c["Ignites all nearby Enemies on Killing an Ignited Enemy"]={nil,"Ignites all nearby Enemies on Killing an Ignited Enemy "}c["12% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["20% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["60% increased Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=60}},nil}c["Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy"]={nil,"Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy "}c["Minions created Recently have 10% increased Attack and Cast Speed"]={nil,"created Recently have 10% increased Attack and Cast Speed "}c["Adds 30 to 53 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=53}},nil}c["4% chance to deal Double Damage if you've Warcried in the past 8 seconds"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=4}}," if you've Warcried in the past 8 seconds "}c["Totems Reflect 15% of their maximum Life as Fire Damage to"]={nil,"Totems Reflect 15% of their maximum Life as Fire Damage to "}c["30% increased Quantity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=30}},nil}c["Adds 4 to 8 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=8}},nil}c["Socketed Gems fire 4 additional Projectiles"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=4}}}},nil}c["Adds 28 to 40 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=40}},nil}c["8% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}},nil}c["30% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["You can Cast an additional Brand Brand Skills have 20% increased Duration"]={nil,"You can Cast an additional Brand Brand Skills have 20% increased Duration "}c["1% increased Chaos Damage per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=1}},nil}c["10% increased Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=10}},nil}c["20% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Nearby Enemies have Fire Exposure"]={nil,"Nearby Enemies have Fire Exposure "}c["Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets "}c["24% increased Physical Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["50% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=50}},nil}c["+257 Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=257}},nil}c["0.8% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.8}},nil}c["+190 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=190}},nil}c["Cannot be Stunned while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["Attacks with this Weapon deal double Damage to Chilled Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="Damage",type="MORE",value=100}},nil}c["also grant an equal chance to gain a Frenzy Charge on Kill"]={nil,"also grant an equal chance to gain a Frenzy Charge on Kill "}c["25% increased Attack Speed if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["40% increased Damage with Hits against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["Intelligence provides no bonus to Maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="NoIntBonusToMana",type="FLAG",value=true}},nil}c["Regenerate 8% of Mana over 2 seconds when you Consume a corpse"]={nil,"Regenerate 8% of Mana over 2 seconds when you Consume a corpse "}c["20% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-20}},nil}c["50% more Effect of Herald Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="MORE",value=50}}," of Herald Buffs on you "}c["20% increased Damage per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," per Summoned "}c["Lightning Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=64,name="PoisonChance",type="BASE",value=20}},nil}c["20% reduced Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=-20}},nil}c["30% increased Damage against Rare monsters 30% increased Damage with Hits against Rare monsters"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}}," against Rare monsters 30% increased Damage against Rare monsters "}c["Totems have 10% additional Physical Damage Reduction Totems gain +40% to Chaos Resistance"]={nil,"Totems have 10% additional Physical Damage Reduction Totems gain +40% to Chaos Resistance "}c["Enemies you Impale have -5% to Total Physical Damage Reduction against Impale Hits 5% increased Impale Effect"]={nil,"Enemies you Impale have -5% to Total Physical Damage Reduction against Impale Hits 5% increased Impale Effect "}c["You and nearby Allies have +20% to Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}}}},nil}c["Causes Bleeding on Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["You take 40% reduced Extra Damage from Critical Strikes while affected by Determination"]={nil,"You take 40% reduced Extra Damage from Critical Strikes while affected by Determination "}c["+4% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=4}},nil}c["Chill Effect and Freeze duration on you is based on 65% of Energy Shield Chill Effect and Freeze duration on you is based on 100% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 65% of Energy Shield Chill Effect and Freeze duration on you is based on 100% of Energy Shield "}c["3% increased Experience gain 20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=3}}," Experience gain 20% increased "}c["1.8% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.8}},nil}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["75% increased Weapon Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="CritChance",type="INC",value=75}},nil}c["Adds 1 to 2 Cold Damage to Attacks per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=1},[2]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=2}},nil}c["Minions have 15% chance to Blind Enemies on hit Socketed Minion Gems are Supported by Level 16 Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=15}}}}," to Blind Enemies on hit Socketed Minion Gems are Supported by Level 16 Leech "}c["Socketed Gems are Supported by level 1 Blood Magic"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportBloodMagic"}}},nil}c["+340 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=340}},nil}c["You have Resolute Technique while you do not have Elemental Overload"]={nil,"You have Resolute Technique while you do not have Elemental Overload "}c[" Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner You and nearby Allies have 12% increased Movement Speed"]={nil," Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner You and nearby Allies have 12% increased Movement Speed "}c["+30 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=30}},nil}c["Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Frostbite while affected by Purity of Ice "}c["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10%"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% "}c["150% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=150}},nil}c["Life Flasks gain 1 Charge every 3 seconds Remove Bleeding when you use a Life Flask"]={nil,"Life Flasks gain 1 Charge every 3 seconds Remove Bleeding when you use a Life Flask "}c["100% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=100}},nil}c["Bleeding Enemies you Kill Explode, dealing 5% of their Maximum Life as Physical Damage"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of their Maximum Life as Physical Damage "}c["Socketed Gems are Supported by level 5 Elemental Proliferation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=5,skillId="SupportElementalProliferation"}}},nil}c["75% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=75}},nil}c["Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect 20% chance to Freeze, Shock and Ignite during any Flask Effect"]={nil,"Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect 20% chance to Freeze, Shock and Ignite during any Flask Effect "}c["You have Onslaught while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=3,type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=3},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=3,type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=5}},nil}c["15% increased Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["While there is at least one nearby Ally, you and nearby Allies deal 10% more Damage"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyAlly"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}}}},nil}c["33% increased Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=33}},nil}c["Regenerate 0.5% of Mana per second for each Totem Skills that would Summon a Totem Summon two Totems instead"]={{[1]={flags=0,keywordFlags=16384,name="ManaRegenPercent",type="BASE",value=0.5}}," for each Skills that would Summon a Totem Summon two Totems instead "}c["You and Allies affected by your Aura Skills deal 20% increased Damage 10% more Damage while you have at least one nearby Ally"]={nil,"You and Allies affected by your Aura Skills deal 20% increased Damage 10% more Damage while you have at least one nearby Ally "}c["10% increased Elemental Damage per Sextant affecting the area"]={{[1]={[1]={type="Multiplier",var="Sextant"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil}c["20% increased Life and Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=20}}," and Mana Recovery from Flasks "}c["+375 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=375}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["50% reduced Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=-50}},nil}c["40% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=40}},nil}c["With at least 40 Intelligence in Radius, Raised Zombies' Slam"]={nil,"With at least 40 Intelligence in Radius, Raised Zombies' Slam "}c["Lose all Power Charges on Critical Strike"]={nil,"Lose all Power Charges on Critical Strike "}c["45% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=45}},nil}c["Minions gain 20% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=20}}}},nil}c["Immune to Elemental Ailments while on Consecrated Ground"]={nil,"Immune to Elemental Ailments while on Consecrated Ground "}c["190% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=190}},nil}c["Rampage Triggers Level 15 Manifest Dancing Dervish on Rampage"]={nil,"Rampage Triggers Level 15 Manifest Dancing Dervish on Rampage "}c["333% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=333}},nil}c["Adds 34 to 45 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=34},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=45}},nil}c["Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead"]={nil,"Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead "}c["+20% to Critical Strike Multiplier with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=5}},nil}c["Adds 335 to 900 Lightning Damage to Unarmed Attacks"]={{[1]={flags=16777220,keywordFlags=0,name="LightningMin",type="BASE",value=335},[2]={flags=16777220,keywordFlags=0,name="LightningMax",type="BASE",value=900}},nil}c["+15% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Lightning Damage from Enemies Hitting you is Lucky Nearby Allies' Damage with Hits is Lucky"]={nil,"Lightning Damage from Enemies Hitting you is Lucky Nearby Allies' Damage with Hits is Lucky "}c["Adds 42 to 335 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=42},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=335}},nil}c["10% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=10}},nil}c["+1 Life gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1}},nil}c["Adds 70 to 105 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=105}},nil}c["20% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["20% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=20}},nil}c["Your Chaos Damage Poisons Enemies"]={{[1]={flags=0,keywordFlags=0,name="ChaosPoisonChance",type="BASE",value=100}},nil}c["12% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["+48 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=48}},nil}c["Moving while Bleeding doesn't cause you to take extra Damage"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage "}c["During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest"]={{[1]={[1]={stat="LightningResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold",upper=true},[2]={stat="LightningResistTotal",thresholdStat="FireResistTotal",type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="LightningDamageTaken",type="INC",value=-10},[2]={[1]={stat="ColdResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold",upper=true},[2]={stat="ColdResistTotal",thresholdStat="FireResistTotal",type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=-10},[3]={[1]={stat="FireResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold",upper=true},[2]={stat="FireResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=-10}},nil}c["Life Leeched per Second is doubled."]={nil,"Life Leeched per Second is doubled. "}c["Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability"]={nil,"Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability "}c["100% increased Fire Damage if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=100}},nil}c["10% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=10}},nil}c["2% chance to Dodge Attack and Spell Hits per 500 Maximum Mana, up to 20%"]={{[1]={[1]={div=500,limit=20,limitTotal=true,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=2},[2]={[1]={div=500,limit=20,limitTotal=true,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=2}},nil}c["20% increased Attack Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["6% Chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=6}},nil}c["12% increased Attack Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["12% increased Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["150% increased Global Evasion Rating when on Low Life"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=150}},nil}c["All Attack Damage Chills when you Stun"]={nil,"All Attack Damage Chills when you Stun "}c["You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration 12% increased Brand Activation frequency"]={nil,"You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration 12% increased Brand Activation frequency "}c["Minions have 20% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=20}}}},nil}c["2% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["Gain 1 Rage on Hit with Attacks, no more than once every 0.3 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true},[2]={[1]={type="Condition",var="CanGainRage"},flags=0,keywordFlags=0,name="Dummy",type="DUMMY",value=1}},nil}c["6% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=6}},nil}c["30% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=30}},nil}c["30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy"]={{}," to gain Phasing for 4 seconds when your is triggered by an Enemy "}c["When you Kill a Rare monster, you gain its mods for 20 seconds"]={nil,"When you Kill a Rare monster, you gain its mods for 20 seconds "}c["Unaffected by Ignite"]={nil,"Unaffected by Ignite "}c["10% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["You gain an Endurance Charge on Kill"]={nil,"You gain an Endurance Charge on Kill "}c["+16% to Critical Strike Multiplier with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=16}},nil}c["10% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["75% increased Duration of Poisons you inflict during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=75}},nil}c["30% more Bow Damage at Close Range while you have iron Reflexes 30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=131076,keywordFlags=0,name="Damage",type="MORE",value=30}}," while you have iron Reflexes 30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes "}c["8% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=8}},nil}c["Gain 20% of Physical Damage as Extra Chaos Damage against"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=20}}," against "}c["+50% to Chaos Resistance while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=50}},nil}c["60% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=60}},nil}c["Nearby Allies have 4% increased Cast Speed per 100 Intelligence you have"]={{[1]={[1]={div=100,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=4},onlyAllies=true}}},nil}c["20% increased Damage per Curse on you"]={{[1]={[1]={type="Multiplier",var="CurseOnSelf"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Hits that Stun Enemies have Culling Strike 30% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={nil,"Hits that Stun Enemies have Culling Strike 30% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre "}c["Nearby Allies have 3% increased Cast Speed per 100 Intelligence you have"]={{[1]={[1]={div=100,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=3},onlyAllies=true}}},nil}c["Attack Skills deal 24% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["Damage Penetrates 10% Elemental Resistances against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ElementalPenetration",type="BASE",value=10}},nil}c["If you Consumed a Corpse Recently, you and nearby Allies regenerate 5% of Life per second"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}}}},nil}c["65% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=65}},nil}c["Creates a Smoke Cloud on Rampage"]={nil,"Creates a Smoke Cloud on Rampage "}c["Minions Regenerate 1.5% Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}}}},nil}c["Recover 100 Life when your Trap is triggered by an Enemy"]={nil,"Recover 100 Life when your Trap is triggered by an Enemy "}c["5% Additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["20% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["10% chance to gain Elusive on Kill Damage from your Critical Strikes cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain Elusive on Kill from your Critical Strikes cannot be Reflected "}c["5% reduced Area Damage taken from Hits 10% increased Area of Effect if you have Stunned an Enemy Recently Melee Skills have 10% increased Area of Effect"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits 10% increased Area of Effect if you have Stunned an Enemy Recently Melee Skills have 10% increased Area of Effect "}c["50% chance to double Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=50}}," to double "}c["0.4% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.4}},nil}c["You have Phasing if Energy Shield Recharge has started Recently"]={nil,"You have Phasing if Energy Shield Recharge has started Recently "}c["18% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=18}},nil}c["10% increased Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["13% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=13}},nil}c["Adds 110 to 158 Physical Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMin",type="BASE",value=110},[2]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMax",type="BASE",value=158}},nil}c["8% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=8}},nil}c["10% chance to gain an Endurance Charge when you are Hit Enemies have -5% to Total Physical Damage Reduction against your Hits 30% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=10}}," to gain an Endurance Charge when you are Hit Enemies have -5% to Total against your Hits 30% increased Armour "}c["Nearby Enemies are Blinded 140% increased Critical Strike Chance against Blinded Enemies"]={nil,"Nearby Enemies are Blinded 140% increased Critical Strike Chance against Blinded Enemies "}c["+240 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=240}},nil}c["Projectiles Pierce all nearby Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceAllTargets",type="FLAG",value=true}},nil}c["50% of Physical Damage Converted to Fire while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," Converted to Fire while you have Avatar of Fire "}c["80% increased Damage against Hindered Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Hindered"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=80}},nil}c["+30% to Critical Strike Multiplier with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["You have Phasing if Energy Shield Recharge has started Recently 6% chance to Dodge Attacks while Phasing"]={nil,"You have Phasing if Energy Shield Recharge has started Recently 6% chance to Dodge Attacks while Phasing "}c["to you and Allies"]={nil,"to you and Allies "}c["3% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=3},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=3}},nil}c["12% increased Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Passives in radius are Conquered by the Karui Historic"]={nil,"Passives in radius are Conquered by the Karui Historic "}c["Adds 5 to 15 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=15}},nil}c["Adds 7 to 25 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=7},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=25}},nil}c["Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance Arrows gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets"]={nil,"Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance Arrows gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets "}c["+6 to Maximum Life per Elder Item Equipped"]={{[1]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="Life",type="BASE",value=6}},nil}c["16% increased Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["20% increased Area Damage while wielding a Two Handed Melee Weapon 15% increased Area of Effect while wielding a Two Handed Melee Weapon"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=20}}," while wielding a Two Handed Melee Weapon 15% increased Area of Effect while wielding a Two Handed Melee Weapon "}c["24% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=24}},nil}c["Hits with this Weapon deal 45% increased Damage to Frozen Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Frozen"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=45}},nil}c["each Stage the Banner has"]={nil,"each Stage the Banner has "}c["20% increased Weapon Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["Maximum total Recovery per second from Energy Shield Leech is doubled"]={{[1]={flags=0,keywordFlags=0,name="MaxEnergyShieldLeechRate",type="MORE",value=100}},nil}c["5% chance to gain Onslaught for 3 seconds on Kill 10% chance to gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 3 seconds on Kill 10% chance to gain Onslaught for 10 seconds on Kill "}c["100% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil}c["90% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=90}},nil}c["8% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=8}},nil}c["+5 to Maximum Virulence Minions deal 20% increased Damage while you are affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=5}}," Maximum Virulence Minions deal 20% increased while you are affected by a Herald "}c["110% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=110}},nil}c["120% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=120}},nil}c["Immune to Shock"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=100}},nil}c["+30% to Critical Strike Multiplier against Burning Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},flags=0,keywordFlags=262144,name="CritMultiplier",type="BASE",value=30}},nil}c["30% increased Movement Speed for 9 seconds on Throwing a Trap 15% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="MovementSpeed",type="INC",value=30}}," for 9 seconds on Throwing a 15% increased Movement Speed for 9 seconds on Throwing a Trap "}c["+10 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["Applies level 15 Punishment on Blocking a Melee Attack"]={nil,"Applies level 15 Punishment on Blocking a Melee Attack "}c["25% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-25}},nil}c["0.2% of Elemental Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageLifeLeech",type="BASE",value=0.2}},nil}c["Gain Arcane Surge after Channelling for 1 second"]={nil,"Gain Arcane Surge after Channelling for 1 second "}c["10% reduced Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-10}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline "}c["+58 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=58}},nil}c["+20% to Critical Strike Multiplier with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["60% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=60}},nil}c["11% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=11}},nil}c["90% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=90}},nil}c["Accuracy Rating is Doubled"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="MORE",value=100}},nil}c["Regenerate 100 Life per second while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["Grants Level 20 Summon Petrification Statue Skill"]={nil,nil}c["14% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["Trigger a Socketed Spell when you Attack"]={nil,"Trigger a Socketed Spell when you Attack "}c["12% of Physical Damage taken as Lightning Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=12}},nil}c["3% increased Global Critical Strike Chance per Level"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=3}},nil}c["Elemental Ailments caused by your Skills spread to other nearby Enemies"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies "}c["30% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=30}},nil}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["Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes "}c["10% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=10}},nil}c["-1 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=-1}},nil}c["50% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground "}c["+12 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=12}},nil}c["10% increased Onslaught Effect"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=10}},nil}c["80% increased Critical Strike Chance when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["-75% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=-75}},nil}c["2% increased Physical Damage over time per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=16777216,name="PhysicalDamage",type="INC",value=2}},nil}c["Skills used by Traps have 15% increased Area of Effect"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=15}},nil}c["Perfect Agony"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Perfect Agony"}},nil}c["20% chance to Curse non-Cursed Enemies with a random Curse on Hit 5% chance to create Shocked Ground when Hit"]={{}," to Curse non-Cursed Enemies with a random Curse on Hit 5% chance to create Shocked Ground when Hit "}c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move "}c["Your Skills deal you 400% of Mana Cost as Physical Damage"]={nil,"Your Skills deal you 400% of Mana Cost as Physical Damage "}c["+10% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=10}},nil}c["+5% to Chance to Evade while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=5}},nil}c["+100 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},nil}c["+4% to Chaos Resistance per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=4}},nil}c["Gain a Challenger Charge when you Kill an Enemy while in Sand Stance +10 to Maximum Challenger Charges"]={nil,"Gain a Challenger Charge when you Kill an Enemy while in Sand Stance +10 to Maximum Challenger Charges "}c["20% increased Stun Duration with Staves on Enemies"]={{[1]={flags=2097156,keywordFlags=0,name="EnemyStunDuration",type="INC",value=20}},nil}c["You take 450 Chaos Damage per second for 3 seconds on Kill"]={nil,"You take 450 Chaos Damage per second for 3 seconds on Kill "}c["You are Shocked during Flask effect You are Shocked during Flask effect, causing 50% increased Damage taken"]={nil,"You are Shocked during Flask effect You are Shocked during Flask effect, causing 50% increased Damage taken "}c["Trigger a Socketed Warcry Skill when you lose Endurance Charges"]={nil,"Trigger a Socketed Warcry Skill when you lose Endurance Charges "}c["+100 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=100},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=100}},nil}c["Unaffected by Chilled Ground while affected by Purity of Ice"]={nil,"Unaffected by Chilled Ground while affected by Purity of Ice "}c["Minions' Hits can only Kill Ignited Enemies"]={nil,"Minions' Hits can only Kill Ignited Enemies "}c["12% increased Physical Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["10% chance to Blind with Hits against Bleeding Enemies"]={{}," to Blind "}c["Immune to Freeze and Chill while Ignited"]={nil,"Immune to Freeze and Chill while Ignited "}c["100% of Physical Damage from Hits with this Weapon is Converted to a random Element Hits with this Weapon always inflict Elemental Ailments"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=100}}," from Hits is Converted to a random Element Hits always inflict Elemental Ailments "}c["16% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil}c["Enemies near your Totems take 16% increased Physical and Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=16}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=16}}}},nil}c["16% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=16}},nil}c["+6% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=6}},nil}c["Adds 18 to 35 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=35}},nil}c["Adds 35 to 65 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=65}},nil}c["Adds 16 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["12% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=12}},nil}c["Adds 34 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=34},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["+5 to Maximum number of Crab Barriers"]={{[1]={flags=0,keywordFlags=0,name="CrabBarriersMax",type="BASE",value=5}},nil}c["Adds 120 to 165 Physical Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMin",type="BASE",value=120},[2]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMax",type="BASE",value=165}},nil}c["150% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=150}},nil}c["Gains no Charges during Effect of any Overflowing Chalice Flask 100% increased Charges gained by Other Flasks during Flask Effect"]={nil,"Gains no Charges during Effect of any Overflowing Chalice Flask 100% increased Charges gained by Other Flasks during Flask Effect "}c["10% more Damage taken if you haven't Consumed a Corpse Recently"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=10}}," if you haven't Consumed a Corpse Recently "}c["+370 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=370}},nil}c["Adds 22 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["Adds 30 to 95 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=95}},nil}c["You are Immune to Bleeding while Leeching"]={nil,"You are Immune to Bleeding while Leeching "}c["Enemies Frozen by you take 20% increased Damage"]={nil,"Enemies Frozen by you take 20% increased Damage "}c["12% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Adds 4 to 14 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=14}},nil}c["18% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=18}},nil}c["24% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["+80 to Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=80}},nil}c["Raised Zombies' Slam Attack has 100% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillId="ZombieSlam",type="SkillId"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=100}}}},nil}c["With at least 40 Intelligence in Radius, can summon up to 3 Skeleton Mages with Summon Skeletons With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons"]={nil,"With at least 40 Intelligence in Radius, can summon up to 3 Skeleton Mages with Summon Skeletons With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons "}c["8% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["10% increased Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30%"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=3}}," per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% "}c["+7 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=7}},nil}c["25% increased Elemental Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["+173 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=173}},nil}c["50% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=50}},nil}c["+1% to maximum Lightning Resistance while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=1}},nil}c["+22% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=22}},nil}c["12% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=12}},nil}c["50% increased Mine Arming Speed"]={{}," Arming Speed "}c["18% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-18}},nil}c["50% chance to Maim Enemies on Critical Strike with Attacks"]={{}," to Maim Enemies "}c["100% more Critical Strike Chance against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="CritChance",type="MORE",value=100}},nil}c["250% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=250}},nil}c["On Killing a Poisoned Enemy, nearby Enemies are Poisoned"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned "}c["2% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}},nil}c["Remove a random Elemental Ailment when you use a Mana Flask"]={nil,"Remove a random Elemental Ailment when you use a Mana Flask "}c["8% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["+2 to Maximum Life per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=2}},nil}c["+3% to all Elemental Resistances per Minion, up to 30%"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=3}}," per Minion, up to 30% "}c["-40 Physical Damage taken from Attacks 40% increased Armour while not Ignited, Frozen or Shocked"]={{[1]={[1]={neg=true,type="Condition",varList={[1]="Ignited",[2]="Frozen",[3]="Shocked"}},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-40}}," from Attacks 40% increased Armour "}c["10% Increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["+20% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=20}},nil}c["Nearby Enemies are Intimidated"]={nil,"Nearby Enemies are Intimidated "}c["50% chance on Block to create Desecrated Ground 100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground 100% chance on Block to create Desecrated Ground "}c["10% increased Damage Taken while Energy Shield is Full"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}," while Energy Shield is Full "}c["Herald Skills deal 20% increased Damage"]={nil,"Herald Skills deal 20% increased Damage "}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["30% increased Attack Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Determination has 60% increased Aura Effect"]={{[1]={[1]={skillName="Determination",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["60% increased Damage while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["You gain Phasing for 10 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 10 seconds on using a Vaal Skill "}c["Gain 5% of Physical Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=5}},nil}c["Kills grant an additional Vaal Soul if you have Rampaged Recently Rampage"]={nil,"Kills grant an additional Vaal Soul if you have Rampaged Recently Rampage "}c["20% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=20}},nil}c["3% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["5% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-5}},nil}c["Can't use Chest armour"]={nil,"Can't use Chest armour "}c["6% increased Wand Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=8388612,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["Adds 100 to 200 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=200}},nil}c["40% increased Critical Strike Chance with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["55% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=55}},nil}c["1% increased Elemental Damage per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=1}},nil}c["Gain a Frenzy Charge on Critical Strike"]={nil,"Gain a Frenzy Charge on Critical Strike "}c["150 Life Regenerated per second if you have at least 1500 Maximum Energy Shield"]={{[1]={[1]={stat="EnergyShield",threshold=1500,type="StatThreshold"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=150}},nil}c["Attack Skills deal 12% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["+425 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=425}},nil}c["75% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=75}},nil}c["70% increased Damage with Channelling Skills"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["+100% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=100}},nil}c["+225% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=225}},nil}c["18% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=18}},nil}c["10% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=10}},nil}c["10% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["Minions deal 7 to 13 additional Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=7}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=13}}}},nil}c["+2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="OnConsecratedGround"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=2}},nil}c["20% to Fire Resistance +40% to Cold Resistance"]={nil,"20% to Fire Resistance +40% to Cold Resistance "}c["30% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil}c["30% increased Physical Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["14% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["15% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["120% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=120}},nil}c["40% reduced Effect of Shock on you"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=-40}}," on you "}c["2% reduced Damage taken per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-2}}," per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating "}c["If you've Cast a Spell Recently, you and nearby Allies have +10% Chance to Block Spell Damage"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}}}},nil}c["Create Consecrated Ground when you Shatter an Enemy"]={nil,"Create Consecrated Ground when you Shatter an Enemy "}c["16% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["8% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["+1 to maximum number of Spectres"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=1}},nil}c["1% increased Bleed Duration per 12 Intelligence"]={{[1]={[1]={div=12,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=1}},nil}c["+135 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=135}},nil}c["Purity of Ice Reserves no Mana"]={{[1]={[1]={skillId="ColdResistAura",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Chance to Block Spell Damage is Unlucky +120 to Strength"]={nil,"Chance to Block Spell Damage is Unlucky +120 to Strength "}c["+3000 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=3000}},nil}c["+250 to Armour while affected by a Guard Skill Buff 10% chance when Hit for double Armour effect Regenerate 0.5% of Life per second while affected by a Guard Skill Buff"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=250}}," while affected by a Guard Skill Buff 10% chance when Hit for double Armour effect Regenerate 0.5% of Life per second while affected by a Guard Skill Buff "}c["Enemies Taunted by you cannot Evade Attacks"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}}}},nil}c["14% increased Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["20% chance to Trigger Level 1 Raise Spiders on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TriggeredSummonSpider"}}},nil}c["+2 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=2}},nil}c["15% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-15}},nil}c["40% increased Damage while Leeching Energy Shield"]={{[1]={[1]={type="Condition",var="LeechingEnergyShield"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Recover 0.5% of Life per Poison affecting Enemies you Kill"]={nil,"Recover 0.5% of Life per Poison affecting Enemies you Kill "}c["200% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=200}},nil}c["3% reduced Damage taken per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed "}c["20% increased Golem Damage per Summoned Golem 35% chance to Avoid Elemental Ailments per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," per Summoned Golem 35% chance to Avoid Elemental Ailments per Summoned Golem "}c["Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="PhysicalMin",type="BASE",value=100},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="PhysicalMax",type="BASE",value=200}},nil}c["Cannot take Reflected Physical Damage 20% more Damage against Unique Enemies"]={nil,"Cannot take Reflected Physical Damage 20% more Damage against Unique Enemies "}c["Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage."]={nil,"Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage. "}c["60% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-60}},nil}c["55% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=55}},nil}c["Offering Skills have 50% reduced Duration"]={nil,"Offering Skills have 50% reduced Duration "}c["4% increased Attack Speed with Bows"]={{[1]={flags=131077,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["300% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=300}},nil}c["15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=15}}," to Recover 10% of when you use a Skill "}c["Grants maximum Energy Shield equal to 15% of your Reserved Mana to you and nearby Allies"]={{[1]={flags=0,keywordFlags=0,name="GrantReservedManaAsAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=0.15}}}},nil}c["40% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil}c["9 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=9}},nil}c["75% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=75}},nil}c["0.5% of Elemental Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageLifeLeech",type="BASE",value=0.5}},nil}c["+30% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=30}},nil}c["2% chance to gain a Power, Frenzy or Endurance Charge on Kill"]={{}," to gain a Power,or Endurance Charge on Kill "}c["30% increased Elemental Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["4 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=4}},nil}c["Triggers Level 20 Lightning Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="LightningAegis"}}},nil}c["23% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=23}},nil}c["You can inflict an additional Ignite on an Enemy Your Critical Strikes do not deal extra Damage"]={nil,"You can inflict an additional Ignite on an Enemy Your Critical Strikes do not deal extra Damage "}c["All bonuses from an Equipped Shield apply to your Minions instead of you"]={{},nil}c["do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline"]={nil,"do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline "}c["30% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["28% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=28}},nil}c["4% chance to Dodge Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=4}},nil}c["5% chance to Gain Unholy Might for 4 seconds on Melee Kill"]={{}," to Gain Unholy Might for 4 seconds on Kill "}c["10% increased Area of Effect while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["5% reduced Area Damage taken from Hits +2 to Melee Strike Range 10% increased Area of Effect if you have Stunned an Enemy Recently"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits +2 to Melee Strike Range 10% increased Area of Effect if you have Stunned an Enemy Recently "}c["25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=25}}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second +1 to "}c["35% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=35}},nil}c["Recover 2% of Life on Kill Recover 2% of Energy Shield on Kill"]={nil,"Recover 2% of Life on Kill Recover 2% of Energy Shield on Kill "}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed "}c["10% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=10}},nil}c["Chaos Damage does not bypass Energy Shield during effect Removes all but one Life on use"]={nil,"Chaos Damage does not bypass Energy Shield during effect Removes all but one Life on use "}c["+15 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=15}},nil}c["You can only have one Non-Banner Aura with no Duration on you from your Skills"]={nil,"You can only have one Non-Banner Aura with no Duration on you from your Skills "}c["Can't use other Rings +12% to all Elemental Resistances"]={nil,"Can't use other Rings +12% to all Elemental Resistances "}c["Skills used by Mines have 10% increased Area of Effect if you Detonated a Mine Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=8192,name="AreaOfEffect",type="INC",value=10}},nil}c["2% chance to Avoid Elemental Damage when Hit per Frenzy Charge 0.5% of Attack Damage Leeched as Life per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=2}}," to Avoid when Hit 0.5% of Attack Damage Leeched as Life "}c["0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block"]={{[1]={[1]={stat="ShieldBlockChance",threshold=30,type="StatThreshold"},flags=2,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.5}},nil}c["+40 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=40}},nil}c["12% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=12}},nil}c["With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 4% increased Damage each time it Hits. With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits."]={nil,"With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 4% increased Damage each time it Hits. With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits. "}c["10% increased Cooldown Recovery Speed of Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="CooldownRecovery",type="INC",value=10}},nil}c["10% chance to double Stun Duration Lightning Skills have 10% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=10}}," to double Lightning Skills have 10% reduced Enemy Stun Threshold "}c["1% of Damage Leeched as Life against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Your Raised Zombies count as Corpses"]={nil,"Your Raised Zombies count as Corpses "}c["+2 Accuracy Rating per 2 Intelligence"]={{[1]={[1]={div=2,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=2}},nil}c["Adds 74 to 121 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=74},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=121}},nil}c["+300 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=300}},nil}c["10% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=10}},nil}c["You gain Onslaught for 2 seconds on Killing Taunted Enemies You gain Onslaught for 4 seconds on using a Warcry"]={nil,"You gain Onslaught for 2 seconds on Killing Taunted Enemies You gain Onslaught for 4 seconds on using a Warcry "}c["20% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["Gain 100% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=100}}," Bow as Extra Damage of an Element "}c["30% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-5}},nil}c["6% increased Maximum Life for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="Life",type="INC",value=6}},nil}c["Melee Attacks cause Bleeding"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["Minions gain Unholy Might for 10 seconds on Kill Minions gain 20% of Elemental Damage as Extra Chaos Damage"]={nil,"gain Unholy Might for 10 seconds on Kill Minions gain 20% of Elemental Damage as Extra Chaos Damage "}c["Mines have 10% increased Detonation Speed"]={nil,"Mines have 10% increased Detonation Speed "}c["Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets Skills fire an additional Projectile"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets Skills fire an additional Projectile "}c["60% reduced Mana Cost of Totem Skills that cast an Aura"]={{[1]={flags=0,keywordFlags=16384,name="ManaCost",type="INC",value=-60}}," Skills that cast an Aura "}c["Adds 280 to 355 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=280},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=355}},nil}c["50% chance to gain an additional Vaal Soul per Enemy Shattered"]={{}," to gain an additional Soul per Enemy Shattered "}c["Mines can be Detonated an additional time"]={nil,"Mines can be Detonated an additional time "}c["30% chance to Avoid being Shocked"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=30}},nil}c["Nearby Allies gain 2% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2},onlyAllies=true}}},nil}c["You count as Dual Wielding while you are Unencumbered 60% more Attack Speed while you are Unencumbered"]={nil,"You count as Dual Wielding while you are Unencumbered 60% more Attack Speed while you are Unencumbered "}c["35% increased Damage with Wands if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=8388612,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["+150 to Accuracy Rating with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Accuracy",type="BASE",value=150}},nil}c["Gems can be Socketed in this Item ignoring Socket Colour"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour "}c["80% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite"]={nil,"Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite "}c["25% increased Critical Strike Chance with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritChance",type="INC",value=25}},nil}c["15% chance to Impale Enemies on Hit with Attacks Impales you inflict last 1 additional Hit"]={{}," to Impale Enemies on Hit Impales you inflict last 1 additional Hit "}c["50% increased Critical Strike Chance with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["24% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=24}},nil}c["30% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=30}},nil}c["8% reduced Damage taken while Elusive 25% increased Elusive Effect"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-8}}," while Elusive 25% increased Elusive Effect "}c["Herald of Ice has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Herald of Ice",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["30% increased Cold Damage if you have used a Fire Skill Recently"]={{[1]={[1]={type="Condition",var="UsedFireSkillRecently"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=30}},nil}c["Can Summon up to 3 additional Golems at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=3}},nil}c["20% chance to double Stun Duration 30% increased Damage with Ailments from Attack Skills"]={{[1]={flags=2048,keywordFlags=65536,name="EnemyStunDuration",type="BASE",value=20}}," to double 30% increased Damage "}c["10% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Conduit"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Conduit"}},nil}c["+2 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=2}},nil}c["20% increased Attack and Cast Speed while Elusive"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}," while Elusive "}c["Gain 24% of Physical Damage as Extra Damage of a random Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=24}}," as Extra Damage of a random Element "}c["6% increased Accuracy Rating with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["With at least one nearby corpse, nearby Enemies deal 10% reduced Damage"]={nil,"With at least one nearby corpse, nearby Enemies deal 10% reduced Damage "}c["20% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=20}},nil}c["Attacks have 15% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil}c["Trigger a Socketed Spell when you Attack with a Bow 15% increased Attack Speed"]={nil,"Trigger a Socketed Spell when you Attack with a Bow 15% increased Attack Speed "}c["10% additional Chance to Block while Dual Wielding Claws"]={{[1]={[1]={type="Condition",var="DualWieldingClaws"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["+85 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=85}},nil}c["10% chance to gain an Endurance Charge when you Block 10% chance to gain a Frenzy Charge when you Block"]={{}," to gain an Endurance Charge when you Block 10% chance to gain aCharge when you Block "}c["+4% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=4}},nil}c["+20% to Critical Strike Multiplier against Burning Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},flags=0,keywordFlags=262144,name="CritMultiplier",type="BASE",value=20}},nil}c["30% increased Damage if you Summoned a Golem in the past 8 seconds"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," if you Summoned a in the past 8 seconds "}c["Enemies you Shock have 20% reduced Movement Speed Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=20}},"Enemies you Shock have 20% reduced Damage "}c["Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances"]={nil,"Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances "}c["Cursed Enemies you or your Minions Kill have a 25% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"]={nil,"Cursed Enemies you or your Minions Kill have a 25% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage "}c["3% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=3}},nil}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently 60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,keywordFlags=0,name="ManaCost",type="INC",value=60}}," for each 200 total Mana you have Spent Recently 60% increased Damage for each 200 total Mana you have Spent Recently "}c["60% increased Damage with Channelling Skills"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["Adds 190 to 220 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=190},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=220}},nil}c["+8% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=8}},nil}c["Every 5 seconds, 20% of Maximum Life Regenerated over one second You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Every 5 seconds, 20% of Maximum Life Regenerated over one second You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["10% chance to Blind Enemies on Hit with Attacks"]={{}," to Blind Enemies on Hit "}c["10% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["8% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["+25 Energy Shield gained on Kill Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=25}}," gained on Kill Grants Malachai's Endurance,and Power for 6 seconds each, in sequence "}c["6% increased Attack Damage for each Map Item Modifier affecting the Area"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=6}}," for each Map Item Modifier affecting the "}c["+30% to Critical Strike Multiplier with Axes"]={{[1]={flags=65540,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Curse Enemies with Flammability on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="Flammability"}}},nil}c["Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Raised Zombies"]={nil,"Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Raised Zombies "}c["50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground "}c["175% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=175}},nil}c["Gain 24% of Physical Damage as Extra Damage of a random Element Projectiles Pierce 6 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=24}}," as Extra Damage of a random Element Projectiles Pierce 6 additional Targets "}c["10% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=10}},nil}c["Can't use Chest armour 15% Chance to Block"]={nil,"Can't use Chest armour 15% Chance to Block "}c["Adds 18 to 26 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=26}},nil}c["10% increased Attack Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed "}c["90% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=90}},nil}c["+1 to Melee Weapon and Unarmed Attack range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["25% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=25}},nil}c["+5 to Level of Socketed Aura Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="aura",value=5}}},nil}c["Grants 1 Passive Skill Point"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=1}},nil}c["+20 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=20}},nil}c["20% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["2% increased Attack and Cast Speed per Summoned Raging Spirit"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}," per Summoned Raging Spirit "}c["15% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=15}},nil}c["Nova Spells have 20% less Area of Effect Nova Spells Cast at the targeted location instead of around you"]={nil,"Nova Spells have 20% less Area of Effect Nova Spells Cast at the targeted location instead of around you "}c["Attack Skills deal 50% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=50}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["You have Phasing while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["Creates a Smoke Cloud on Use"]={{},nil}c["10% increased Effect of Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="BuffEffectOnSelf",type="INC",value=10}},nil}c["Frostblink has 50% increased Duration"]={{[1]={[1]={skillName="Frostblink",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil}c["8% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-8}},nil}c["35% chance to gain an Endurance Charge when you use a Fire skill 5% increased Physical Damage per Endurance Charge 5% increased Fire Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},[2]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=35}}," to gain an Endurance Charge when you use a Fire skill 5% increased 5% increased Fire Damage "}c["50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike 50% increased Damage while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}}," Rarity of Items Dropped by Enemies killed with a Critical Strike 50% increased "}c["+1 to Level of all Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="active_skill"},value=1}}},nil}c["20% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20}},nil}c["6% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second"]={nil,"With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second "}c["Enemies you inflict Bleeding on grant 100% increased Flask Charges"]={nil,"Enemies you inflict Bleeding on grant 100% increased Flask Charges "}c["12% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil}c["20% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["20% reduced Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-20}},nil}c["10% chance to gain 1 Rage when you Hit a Rare or Unique Enemy"]={{}," to gain 1 Rage when you Hit a Rare or Unique Enemy "}c["3% reduced Damage taken per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["10% chance to gain Arcane Surge when you Kill an Enemy"]={{}," to gain Arcane Surge when you Kill an Enemy "}c["1.2% of Damage Leeched as Life on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1.2}},nil}c["15% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["8% chance to Block while affected by Determination"]={{[1]={[1]={type="Condition",var="AffectedByDetermination"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["100% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=100}},nil}c["Gain Fortify for 6 seconds on Melee Hit with a Mace, Sceptre or Staff"]={nil,"Gain Fortify for 6 seconds on Melee Hit with a Mace, Sceptre or Staff "}c["Recover 50 Energy Shield when your Trap is triggered by an Enemy"]={nil,"Recover 50 Energy Shield when your Trap is triggered by an Enemy "}c["Damage from your Critical Strikes cannot be Reflected 25% more Damage while there is at most one Rare or Unique Enemy nearby"]={nil,"Damage from your Critical Strikes cannot be Reflected 25% more Damage while there is at most one Rare or Unique Enemy nearby "}c["Cannot be Frozen, Chilled or Ignited with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing "}c["12% increased Physical Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["+48 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=48}},nil}c["80% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=80}},nil}c["Brand Skills deal 30% increased Damage to Enemies they're Attached to"]={{[1]={[1]={skillType=76,type="SkillType"},[2]={type="Condition",var="BrandAttachedToEnemy"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill "}c["Gain Armour equal to your Reserved Mana"]={{[1]={[1]={div=1,stat="ManaReserved",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["80% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=80}},nil}c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by 5 or more Poisons"]={{}," to gain aCharge on Killing an Enemy affected by 5 or more Poisons "}c["Blight has 30% increased Hinder Duration"]={{[1]={[1]={skillName="Blight",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}}," Hinder "}c["+125 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=125}},nil}c["50% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=50}},nil}c["180% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=180}},nil}c["5% additional Chance to Block while you have at least 10 Crab Barriers"]={{[1]={[1]={stat="CrabBarriers",threshold=10,type="StatThreshold"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["Minions have +2% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}}}},nil}c["22% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=22}},nil}c["Curse Enemies with Socketed Curse Gem on Hit"]={nil,nil}c["40% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}},nil}c["50% More Bow Damage at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=131076,keywordFlags=0,name="Damage",type="MORE",value=50}},nil}c["Cannot inflict Freeze or Chill"]={{[1]={flags=0,keywordFlags=0,name="CannotFreeze",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="CannotChill",type="FLAG",value=true}},nil}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius "}c["+4 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=4}},nil}c["Chaos Skills have 10% chance to Hinder Enemies on Hit, with 30% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=128,name="MovementSpeed",type="BASE",value=10}}," to Hinder Enemies on Hit, with 30% reduced "}c["45% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=45}},nil}c["15% increased Quantity of Items found with a Magic Item equipped"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="MagicItem"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},nil}c["20% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time "}c["14% increased Physical Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["You can only have one Herald"]={nil,"You can only have one Herald "}c["+36 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=36}},nil}c["With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike cannot choose Lightning With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike deal 50% less Lightning Damage"]={nil,"With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike cannot choose Lightning With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike deal 50% less Lightning Damage "}c["+17 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=17}},nil}c["100% increased Skeleton Movement Speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=100}}}},nil}c["Socketed Gems are Supported by level 30 Iron Will"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportIronWill"}}},nil}c["Gain 10% of Lightning Damage as Extra Cold Damage against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="LightningDamageGainAsCold",type="BASE",value=10}},nil}c["15% reduced Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=-15}},nil}c["Hatred Reserves no Mana"]={{[1]={[1]={skillId="Hatred",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Adds 228 to 280 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=228},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=280}},nil}c["+200 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=200}},nil}c["Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range"]={nil,"Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range "}c["8% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["You and nearby allies gain 15% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}}},nil}c["Attack Skills deal 8% increased Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["10% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["10% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["Nearby allies Recover 2% of your maximum Life when you Die"]={nil,"Nearby allies Recover 2% of your maximum Life when you Die "}c["30% chance to Blind Enemies on Critical Strike"]={{}," to Blind Enemies "}c["10% reduced Enemy Stun Threshold with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["Damage Penetrates 6% of Enemy Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},nil}c["5% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["18% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=18}},nil}c["You and your Totems Regenerate 1% of Life per second per Totem"]={nil,"You and your Totems Regenerate 1% of Life per second per Totem "}c["60% increased Fire Damage while affected by Herald of Ash"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAsh"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=60}},nil}c["Using Warcries is Instant"]={nil,"Using Warcries is Instant "}c["Cold Skills have a 25% chance to apply Cold Exposure on Hit Fire Skills have a 25% chance to apply Fire Exposure on Hit Lightning Skills have a 25% chance to apply Lightning Exposure on Hit"]={nil,"a 25% chance to apply Cold Exposure on Hit Fire Skills have a 25% chance to apply Fire Exposure on Hit Lightning Skills have a 25% chance to apply Lightning Exposure on Hit "}c["20% reduced Effect of Curses on You"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-20}},nil}c["+25% to Critical Strike Multiplier with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["Adds 10 to 21 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=21}},nil}c["30% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=30}},nil}c["Curse Enemies with level 10 Temporal Chains on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,noSupports=true,skillId="TemporalChains"}}},nil}c["100 Life Regenerated per second if you have at least 1000 Maximum Energy Shield"]={{[1]={[1]={stat="EnergyShield",threshold=1000,type="StatThreshold"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["Adds 90 to 180 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=90},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=180}},nil}c["Nearby Enemies are Blinded"]={nil,"Nearby Enemies are Blinded "}c["30% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=30}},nil}c["+120 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=120}},nil}c["Adds 13 to 21 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=21}},nil}c["Unaffected by Chilled Ground"]={nil,"Unaffected by Chilled Ground "}c["-1 Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=-1}},nil}c["+6% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=6}},nil}c["30% increased Damage with Hits against Rare monsters"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}}," against Rare monsters "}c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary"]={nil,"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary "}c["+2 to Level of all Chaos Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="chaos skill",value=2}}},nil}c["24% increased Physical Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["305% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=305}},nil}c["25% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=25}},nil}c["Gain +3 Mana when you hit a Taunted Enemy Gain 2 Power Charges on Using a Warcry"]={nil,"Gain +3 Mana when you hit a Taunted Enemy Gain 2 Power Charges on Using a Warcry "}c["Your Minions use your Flasks when summoned Minions have 25% reduced Flask Charges used"]={nil,"Your Minions use your Flasks when summoned Minions have 25% reduced Flask Charges used "}c["25% reduced Chaos Damage Taken Over Time"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTakenOverTime",type="INC",value=-25}},nil}c["Shock Enemies as though dealing 300% more Damage"]={nil,"Shock Enemies as though dealing 300% more Damage "}c["Attack Skills have +1 to maximum number of Summoned Ballista Totems"]={{[1]={flags=0,keywordFlags=65536,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["You gain 8% increased Damage for each Trap"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="BASE",value=8}},"% increased for each "}c["15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy"]={{}," to gain aCharge when your is triggered by an Enemy "}c["+6% to All Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=6}},nil}c["40% chance to Avoid being Shocked"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=40}},nil}c["1% of Damage Leeched as Life against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Attacks with Melee Weapons deal 4% increased Damage with Ailments"]={{[1]={flags=33556480,keywordFlags=0,name="Damage",type="INC",value=4}},nil}c["12% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["Manifested Dancing Dervish dies when Rampage ends"]={{},nil}c["You gain Onslaught for 2 seconds on Kill You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 2 seconds on Kill You gain Onslaught for 4 seconds on Kill "}c["10% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["Triggers Level 20 Blinding Aura when Equipped"]={nil,nil}c["Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="NonShaperItem"},flags=0,keywordFlags=0,name="IgnoreChaosResistance",type="FLAG",value=true}},nil}c["Has 1 Socket"]={{[1]={flags=0,keywordFlags=0,name="SocketCount",type="BASE",value=1}},nil}c["Applies level 15 Temporal Chains on Blocking a Projectile Attack Applies level 15 Elemental Weakness on Blocking a Spell"]={nil,"Applies level 15 Temporal Chains on Blocking a Projectile Attack Applies level 15 Elemental Weakness on Blocking a Spell "}c["Regenerate 15 Mana per second if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=15}},nil}c["22% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=22}},nil}c["You gain Onslaught for 3 seconds on Culling Strike"]={nil,"You gain Onslaught for 3 seconds on Culling Strike "}c["+120 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=120}},nil}c["Mace or Sceptre Attacks deal 18% increased Damage with Hits and Ailments"]={{[1]={flags=1048576,keywordFlags=786432,name="Damage",type="INC",value=18}},nil}c["10% increased Accuracy Rating with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["+500 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=500}},nil}c["10% chance to gain an Endurance Charge on Melee Critical Strike"]={{}," to gain an Endurance Charge on Critical Strike "}c["20% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Channelling Skills have 6% increased Attack Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["+3 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=3}},nil}c["25% increased Weapon Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["25% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=25}},nil}c["40% of Physical Damage Converted to Lightning Damage while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=40}},nil}c["250% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=250}},nil}c["22% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=22}},nil}c["10% additional Block chance while not Cursed"]={{[1]={[1]={neg=true,type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["30% Chance to cause Bleeding Enemies to Flee on hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}}," Enemies to Flee on hit "}c["20% increased Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["24% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["25% chance to Intimidate nearby Enemies for 4 seconds on Melee Kill"]={{}," to Intimidate nearby Enemies for 4 seconds on Kill "}c["5% chance to Avoid Lightning Damage when Hit"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=5}}," to Avoid when Hit "}c["+1% Chance to Block Attack Damage per 50 Strength"]={{[1]={[1]={div=50,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["+2% Critical Strike Chance while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=2}},nil}c["+6% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=6}},nil}c["Minions have +10% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}}},nil}c["+88 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=88}},nil}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of non-Damaging Ailments on Enemies"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of non-Damaging Ailments on Enemies "}c["+10% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=10}}," Non-Ailment "}c["Nearby Enemies deal 8% less Elemental Damage"]={nil,"Nearby Enemies deal 8% less Elemental Damage "}c["20% increased Onslaught duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Onslaught "}c["Spectres have 100% increased Damage"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=100}}}},nil}c["Raised Zombies have +5000 to maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=5000}}}},nil}c["Gain 4% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped"]={{[1]={[1]={type="Multiplier",var="ShaperItem"},flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=4}},nil}c["10% chance to Freeze, Shock and Ignite while affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}}," while affected by a Herald "}c["Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"]={nil,"Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence "}c["Immune to Ignite while affected by Purity of Fire 10% of Physical Damage taken as Fire Damage while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire 10% of Physical Damage taken as Fire Damage while affected by Purity of Fire "}c["Socketed Golem Skills have 25% chance to Taunt on Hit"]={{}," to Taunt on Hit "}c["Shocks nearby Enemies during Flask effect Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"]={nil,"Shocks nearby Enemies during Flask effect Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken "}c["Nearby Enemies take 10% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=10}}}},nil}c["8% increased Physical Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Totems have 15% additional Physical Damage Reduction +100 Armour per Summoned Totem"]={nil,"Totems have 15% additional Physical Damage Reduction +100 Armour per Summoned Totem "}c["Cannot be Ignited"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}},nil}c["5% reduced Cold Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=-5}},nil}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge 40% chance "}c["27% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=27}},nil}c["30% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=30}},nil}c["18% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=18}},nil}c["65% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=65}},nil}c["10% chance to Curse Enemies with Enfeeble on Hit 25% chance to Curse un-cursed Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit 25% chance to Curse un-cursed Enemies with Enfeeble on Hit "}c["Life Leech is applied to Energy Shield instead while on Full Life"]={nil,"Life Leech is applied to Energy Shield instead while on Full Life "}c["11% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=11}},nil}c["Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have 30% increased Item Rarity"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have 30% increased Item Rarity "}c["Brand Skills have 10% increased Duration"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=10}},nil}c["Damage Penetrates 5% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil}c["50% increased Attack Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["90% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=90}},nil}c["20% increased Attack Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Adds 28 to 45 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=28},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=45}},nil}c["100% increased Fire Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="FireDamage",type="INC",value=100}},nil}c["20% increased Critical Strike Chance with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["8% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=8}},nil}c["Triggers level 7 Abberath's Fury when equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=7,skillId="RepeatingShockwave"}}},nil}c["30% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["30% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=30}},nil}c["20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill"]={{[1]={flags=0,keywordFlags=256,name="PhysicalDamageReduction",type="BASE",value=20}}," while affected by a Non- Guard Skill "}c["+23 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=23}},nil}c["Gain 10% of Physical Damage as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges "}c["Adds 10 to 20 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=10},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=20}},nil}c["5% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=5}},nil}c["+231 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=231}},nil}c["Golems Deal 45% less Damage"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-45}}}},nil}c["10% chance to gain a Frenzy, Power or Endurance Charge on Kill"]={{}," to gain a Frenzy, Power or Endurance Charge on Kill "}c["20% increased Attack Speed if you've Attacked Recently"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Adds 160 to 240 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=160},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=240}},nil}c["30% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=30}},nil}c["25% increased Area of Effect while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil}c["+20% to all Elemental Resistances while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}},nil}c["+10% to all Elemental Resistances and maximum Elemental Resistances while affected by a Non-Vaal Guard Skill 20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill"]={{[1]={flags=0,keywordFlags=256,name="ElementalResist",type="BASE",value=10}}," and maximum Elemental Resistances while affected by a Non- Guard Skill 20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill "}c["Adds 48 to 83 Cold Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=48},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=83}},nil}c["10% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=10}},nil}c["Adds 23 to 31 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=31}},nil}c["25% increased Light Radius during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightRadius",type="INC",value=25}},nil}c["200% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=200}},nil}c["25% of Wand Physical Damage converted to Lightning Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=25}},nil}c["+2 to Melee Weapon Range per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2}},nil}c["Lightning Spells have 10% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=2,keywordFlags=64,name="PhysicalDamageConvertToLightning",type="BASE",value=10}},nil}c["15% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["+18% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=18}},nil}c["50% reduced Freeze Duration on You 1% of Life Regenerated per Second"]={{}," "}c["33% chance to Blind nearby Enemies when gaining Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing "}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["25% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=25}},nil}c["Cold Spells have 10% of Physical Damage Converted to Cold Damage"]={{[1]={flags=2,keywordFlags=32,name="PhysicalDamageConvertToCold",type="BASE",value=10}},nil}c["5% increased Movement Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}c["+400 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=400}},nil}c["5% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=5}},nil}c["1% increased Damage per 8 Strength when in Main Hand"]={{[1]={[1]={div=8,stat="Str",type="PerStat"},[2]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["19% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=19}},nil}c["Curse Skills have 15% increased Cast Speed"]={{[1]={[1]={skillType=32,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["Enemies Poisoned by you cannot Regenerate Life +10% to Damage over Time Multiplier for Poison while wielding a Claw or Dagger"]={nil,"Enemies Poisoned by you cannot Regenerate Life +10% to Damage over Time Multiplier for Poison while wielding a Claw or Dagger "}c["Minions Recover 20% of Maximum Life on Killing a Poisoned Enemy"]={nil,"Recover 20% of Maximum Life on Killing a Poisoned Enemy "}c["100% reduced Vulnerability Mana Reservation"]={{[1]={[1]={skillName="Vulnerability",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["200% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}},nil}c["Adds 375 to 550 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=375},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=550}},nil}c["+3 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=3}},nil}c["+5 Life gained for each Ignited Enemy hit by your Attacks"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=5}}," gained for each Ignited Enemy hit by your Attacks "}c["Cannot Evade Enemy Attacks"]={{[1]={flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}},nil}c["10% chance to Dodge Spells while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["15% increased Attack and Cast Speed while Elusive"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=15}}," while Elusive "}c["+10% to Non-Ailment Chaos Damage over Time Multiplier 24% increased Damage Over Time with Bow Skills"]={{[1]={flags=0,keywordFlags=512,name="ChaosDotMultiplier",type="BASE",value=10}}," Non-Ailment 24% increased Damage Over Time "}c["Fractured item League: Synthesis"]={nil,"Fractured item League: Synthesis "}c["14% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=14}},nil}c["50% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},nil}c["50% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=50}},nil}c["With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."]={nil,"With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy. "}c["Projectiles have 100% increased Critical Strike Chance against Targets they Pierce"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=1024,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["Grants Level 20 Summon Doedre's Effigy Skill"]={nil,nil}c["15% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=15}},nil}c["+23% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=23}},nil}c["+95 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=95}},nil}c["6% increased Attack Speed with Bows"]={{[1]={flags=131077,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["+5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}},nil}c["Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=4}},nil}c["3% increased Attack Speed with Maces or Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["10% increased Damage taken from Skeletons"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}}," from s "}c["Attacks with Two Handed Melee Weapons deal 25% increased Damage with Hits and Ailments"]={{[1]={flags=301989888,keywordFlags=786432,name="Damage",type="INC",value=25}},nil}c["50% increased Rarity of Items Dropped by Slain Shocked enemies 30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies 30% increased Rarity of Items Dropped by Slain Shocked Enemies "}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence "}c["Enemies cannot Leech Mana from You Socketed Gems have 50% reduced Mana Cost"]={nil,"Enemies cannot Leech Mana from You Socketed Gems have 50% reduced Mana Cost "}c["12% increased Melee Physical Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["1% of Attack Damage leeched as Life against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Cannot be Stunned by Attacks if your other Ring is an Elder Item"]={nil,"Cannot be Stunned by Attacks if your other Ring is an Elder Item "}c["+10% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies"]={{[1]={flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=10}}," you inflict on Bleeding Enemies "}c["10% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=10}},nil}c["Gain a Spirit Charge every second"]={nil,"Gain a Spirit Charge every second "}c["Attacks with this Weapon have 115% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=115}},nil}c["2% increased Minion Attack and Cast Speed per Skeleton you own"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}}}," Minion per you own "}c["Elemental Hit deals 13% increased Damage"]={{[1]={[1]={skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=13}},nil}c["Herald Skills deal 40% increased Damage"]={nil,"Herald Skills deal 40% increased Damage "}c["6% chance to Dodge Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=6}},nil}c["60% increased Damage with Hits and Ailments against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=60}},nil}c["100% increased Totem Duration"]={{[1]={flags=0,keywordFlags=0,name="TotemDuration",type="INC",value=100}},nil}c["Bow Skills have +10% to Damage over Time Multiplier Bow Skills have 20% increased Skill Effect Duration"]={nil,"Bow Skills have +10% to Damage over Time Multiplier Bow Skills have 20% increased Skill Effect Duration "}c["Cannot Leech Life from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="CannotLeechLife",type="FLAG",value=true}},nil}c["Critical Strikes inflict Scorch, Brittle and Sapped"]={nil,"Critical Strikes inflict Scorch, Brittle and Sapped "}c["50% reduced Effect of Curses on You"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-50}},nil}c["8% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["15% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["40% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=40}},nil}c["20% increased Onslaught Effect"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=20}},nil}c["20% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=20}},nil}c["Golems have 45% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=45}}}},nil}c["20% increased Golem Damage per Summoned Golem 35% chance to Avoid Elemental Ailments per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," per Summoned Golem 35% chance to Avoid Elemental Ailments per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems "}c["5% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}},nil}c["Gain a Frenzy Charge if an Attack Ignites an Enemy"]={nil,"Gain a Frenzy Charge if an Attack Ignites an Enemy "}c["8% increased Accuracy Rating with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["40% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=40}},nil}c["+30 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=30}},nil}c["Poisonous Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["Cannot Leech when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="CannotLeechLife",type="FLAG",value=true},[2]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="CannotLeechMana",type="FLAG",value=true}},nil}c["Skills used during Flask effect grant 800% of Mana Cost as Life Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"]={nil,"Skills used during Flask effect grant 800% of Mana Cost as Life Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds "}c["Recover 25% of maximum Life when you gain Adrenaline"]={nil,"Recover 25% of maximum Life when you gain Adrenaline "}c["8% increased Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"]={nil,"Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy "}c["5% increased Stun Duration on Enemies per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=5}},nil}c["1% of Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegenPercent",type="BASE",value=1}},nil}c["Purity of Lightning has 30% increased Aura Effect"]={{[1]={[1]={skillName="Purity of Lightning",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["Culling Strike You gain Onslaught for 3 seconds on Culling Strike"]={nil,"Culling Strike You gain Onslaught for 3 seconds on Culling Strike "}c["+0.3% Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.3}},nil}c["30% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=30}},nil}c["+300 Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=300}},nil}c["10% chance to Blind with Hits against Bleeding Enemies Enemies Maimed by you take 10% increased Physical Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalDamage",type="BASE",value=10}}," to Blind Enemies Maimed by you take 10% increased "}c["Cannot gain Power Charges"]={nil,"Cannot gain Power Charges "}c["+3% to Chance to Evade while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=3}},nil}c["10% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=10}},nil}c["Trigger Level 20 Fog of War when your Trap is triggered 30% increased Fire Damage against Blinded Enemies"]={nil,"Trigger Level 20 Fog of War when your Trap is triggered 30% increased Fire Damage against Blinded Enemies "}c["Mace or Sceptre Attacks deal 10% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["70% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=70}},nil}c["Applies level 15 Temporal Chains on Blocking a Projectile Attack"]={nil,"Applies level 15 Temporal Chains on Blocking a Projectile Attack "}c["Your Curses can apply to Hexproof Enemies"]={{[1]={flags=0,keywordFlags=0,name="CursesIgnoreHexproof",type="FLAG",value=true}},nil}c["Adds 13 to 26 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=13},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=26}},nil}c["Enemies cannot Leech Mana from You"]={nil,"Enemies cannot Leech Mana from You "}c["100% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=100}},nil}c["+3 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=3}},nil}c["2.5% of Maximum Energy Shield Regenerated per Second while affected by Discipline"]={{[1]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=2.5}},nil}c["Gain 1 Rage when you Kill an Enemy"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true},[2]={[1]={type="Condition",var="CanGainRage"},flags=0,keywordFlags=0,name="Dummy",type="DUMMY",value=1}},nil}c["Adds 70 to 104 Cold Damage while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=70},[2]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=104}},nil}c["Nearby Enemies have -20% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-20}}}},nil}c["Grants Summon Harbinger of Time Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfTime"}}},nil}c["12% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["10% chance to gain a Power Charge when you Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain a Power Charge when you Block "}c["Minions gain Unholy Might for 10 seconds on Kill"]={nil,"gain Unholy Might for 10 seconds on Kill "}c["175% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=175}},nil}c["Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit "}c["Removes 20% of your maximum Energy Shield on use"]={nil,"Removes 20% of your maximum Energy Shield on use "}c["+475 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=475}},nil}c["4% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}},nil}c["100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="MORE",value=100}}," from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled "}c["28% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=28}},nil}c["8% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-8}},nil}c["-40 Chaos Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="BASE",value=-40}},nil}c["Consumes Socketed Support Gems when they reach Maximum Level"]={nil,"Consumes Socketed Support Gems when they reach Maximum Level "}c["Adds 13 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=196608,name="PhysicalMin",type="BASE",value=13},[2]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=196608,name="PhysicalMax",type="BASE",value=16}},nil}c["Create Consecrated Ground when you Shatter an Enemy 40% increased Effect of Chilled Ground"]={nil,"Create Consecrated Ground when you Shatter an Enemy 40% increased Effect of Chilled Ground "}c["Adds 25 to 36 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=36}},nil}c["450% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=450}},nil}c["Area Skills have 10% chance to Knock Enemies Back on Hit"]={nil,"Area Skills have 10% chance to Knock Enemies Back on Hit "}c["210% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=210}},nil}c["If you've Impaled an Enemy Recently, you"]={nil,"If you've Impaled an Enemy Recently, you "}c["20% reduced Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-20}},nil}c["60% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=60}},nil}c["+210 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=210}},nil}c["Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage"]={nil,"Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage "}c["Attacks with One Handed Weapons deal 20% increased Damage with Ailments"]={{[1]={flags=134219776,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Extra gore Can't use Chest armour"]={nil,"Extra gore Can't use Chest armour "}c["24% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=24}},nil}c["Regenerate 8 Life over 1 second for each Spell you Cast"]={nil,"Regenerate 8 Life over 1 second for each Spell you Cast "}c["2% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["12% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=12}},nil}c["Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3"]={nil,"Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 "}c["150% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=150}},nil}c["+100 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=100}},nil}c["12% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=12},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=12}},nil}c["Minions have 5% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=5}}}},nil}c["Recover 25% of Life and Mana when you use a Warcry"]={nil,"Recover 25% of Life and Mana when you use a Warcry "}c["+25 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=25}},nil}c["You can only have one Non-Banner Aura with no Duration on you from your Skills Non-Banner, Non-Mine Aura Skills reserve no Mana"]={nil,"You can only have one Non-Banner Aura with no Duration on you from your Skills Non-Banner, Non-Mine Aura Skills reserve no Mana "}c["40% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=40}},nil}c["100% reduced Conductivity Mana Reservation"]={{[1]={[1]={skillName="Conductivity",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["+50 to Total Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=50}},nil}c["15% chance to create Chilled Ground when you Freeze an Enemy Create Consecrated Ground when you Shatter an Enemy"]={{}," to create Chilled Ground when you Freeze an Enemy Create Consecrated Ground when you Shatter an Enemy "}c["8% increased Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["13% increased Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=13}},nil}c["Cannot Ignite, Chill, Freeze or Shock Critical Strikes inflict Scorch, Brittle and Sapped"]={nil,"Cannot Ignite, Chill, Freeze or Shock Critical Strikes inflict Scorch, Brittle and Sapped "}c["270% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=270}},nil}c["4% increased Attack Speed with Claws"]={{[1]={flags=262149,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["4% additional Physical Damage Reduction while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}},nil}c["18% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=18}},nil}c["120% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=120}}," while you have Avatar of Fire "}c["Flasks apply to your Zombies and Spectres"]={{[1]={[1]={skillNameList={[1]="Raise Zombie",[2]="Raise Spectre"},type="SkillName"},flags=0,keywordFlags=0,name="FlasksApplyToMinion",type="FLAG",value=true}},nil}c["With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks "}c["40% increased Cold Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ColdDamage",type="INC",value=40}},nil}c["Golems have 15% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}}}},nil}c["400% increased Energy Shield Recharge Rate during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=400}},nil}c["+12% to Damage over Time Multiplier for Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="DotMultiplier",type="BASE",value=12}},nil}c["Damage Penetrates 20% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=20}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you "}c["Enemies you kill are Shocked Shocks you inflict spread to other Enemies within a Radius of 15"]={nil,"Enemies you kill are Shocked Shocks you inflict spread to other Enemies within a Radius of 15 "}c["+50 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=50}},nil}c["Socketed Gems fire an additional Projectile"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}}}},nil}c["Adds 35 to 130 Lightning Damage to Attacks during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=35},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=130}},nil}c["20% increased Damage per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["+6% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil}c["Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={nil,"Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["20% chance to Trigger Level 20 Tentacle Whip on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TentacleSmash"}}},nil}c["35% chance to Avoid Elemental Ailments per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=35},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=35},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=35}}," per Summoned 25% increased Effect of Buffs granted by your Golems per Summoned Golem "}c["12% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=12}},nil}c["60% more Attack Speed while you are Unencumbered 14 to 20 Added Attack Physical Damage per 10 Dexterity while you are Unencumbered"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=60}}," while you are Unencumbered 14 to 20 Added Attack Physical Damage while you are Unencumbered "}c["Socketed Golem Skills have 5% Life Regenerated per second"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}}}},nil}c["Warcries Knock Enemies Back in an Area"]={nil,"Warcries Knock Enemies Back in an Area "}c["15% increased Attack Speed with Wands"]={{[1]={flags=8388613,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["25% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil}c["Right ring slot: 40% reduced Reflected Physical Damage taken Right ring slot: 80% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-40}}," Reflected Right ring slot: 80% reduced Reflected Physical Damage taken "}c["15% increased Effect of Non-Curse Auras from your Skills on Enemies"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=15}},nil}c["40% of Melee Physical Damage taken reflected to Attacker"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="BASE",value=40}}," taken reflected to Attacker "}c["Adds 15 to 30 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=15},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=30}},nil}c["+2 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=2}},nil}c["28% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=28}},nil}c["50% chance to Cast a Socketed Lightning Spell on Hit"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,name="SupportUniqueMjolnerLightningSpellsCastOnHit"}}},nil}c["+5 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=5}},nil}c["1% increased Attack Damage per 300 of the lowest of Armour and Evasion Rating"]={{[1]={[1]={div=300,stat="LowestOfArmourAndEvasion",type="PerStat"},flags=1,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["+3 to Level of all Fire Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="fire",[3]="active_skill"},value=3}}},nil}c["40% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=40}},nil}c["+7% to All Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=7}},nil}c["Left ring slot: 40% reduced Reflected Elemental Damage taken Left ring slot: 80% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-40}}," Reflected Left ring slot: 80% reduced Reflected Elemental Damage taken "}c["300% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=300}},nil}c["15% increased Movement Speed while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["165% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=165}},nil}c["220% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=220}},nil}c["20% increased Critical Strike Chance with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritChance",type="INC",value=20}},nil}c["Regenerate 1.50% of Life per second while Burning"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}}," while Burning "}c["45% increased Projectile Attack Damage while you have at least 200 Dexterity"]={{[1]={[1]={stat="Dex",threshold=200,type="StatThreshold"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=45}},nil}c["+470 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=470}},nil}c["50% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}},nil}c["1% of Energy Shield Regenerated per second for each Enemy you or your Minions have Killed Recently, up to 10%"]={{[1]={[1]={limit=10,limitTotal=true,type="Multiplier",varList={[1]="EnemyKilledRecently",[2]="EnemyKilledByMinionsRecently"}},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["+1 to maximum Energy Shield per 6 Evasion Rating on Body Armour"]={{[1]={[1]={div=6,stat="EvasionOnBody Armour",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil}c["100% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=100}},nil}c["and your Totems to each gain an Endurance Charge"]={nil,"and your Totems to each gain an Endurance Charge "}c["Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell"]={nil,"Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell "}c["10% chance to Blind Enemies on Critical Strike"]={{}," to Blind Enemies "}c["4% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=4}},nil}c["25% chance to gain a Power Charge on Critical Strike 6% reduced Mana Reserved"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="ManaReserved",type="BASE",value=25}}," to gain a Power Charge 6% reduced "}c["+30% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["+8% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=8}},nil}c["20% increased Bleeding Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=20}},nil}c["10% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit"]={{}," to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit "}c["+100 Mana Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=100}},nil}c["Applies level 15 Elemental Weakness on Blocking a Spell"]={nil,"Applies level 15 Elemental Weakness on Blocking a Spell "}c["99% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=99}},nil}c["36% increased Cast Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=16,keywordFlags=0,name="Speed",type="INC",value=36}},nil}c["20% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=20}},nil}c["12% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time "}c["+35% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=35}},nil}c["Cannot Leech Life"]={{[1]={flags=0,keywordFlags=0,name="CannotLeechLife",type="FLAG",value=true}},nil}c["Minions have 7% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=7}}}},nil}c["22% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=22}},nil}c["40% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=40}},nil}c["12% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=12}},nil}c["+100% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=100}},nil}c["100% increased Damage with Poison if you have at least 300 Dexterity"]={{[1]={[1]={stat="Dex",threshold=300,type="StatThreshold"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=100}},nil}c["20% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=20}},nil}c["16% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=16}},nil}c["Shocks from your Hits always increase Damage taken by at least 10%"]={nil,"Shocks from your Hits always increase Damage taken by at least 10% "}c["20% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HavePhysicalGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[2]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveLightningGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[3]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveColdGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[4]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveFireGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[5]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveChaosGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}},nil}c["+7% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=7}},nil}c["Socketed Gems are Supported by Level 10 Lesser Poison"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportLesserPoison"}}},nil}c["10% reduced Character Size"]={{}," Character Size "}c["+20% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=20}}," Non-Ailment "}c["10% increased Effect of Flasks on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}},nil}c["+16% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=16}},nil}c["-5% to all Resistances for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-5},[2]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-5}},nil}c["12 Mana Regenerated per Second while you have Avian's Flight"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sFlight"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=12}},nil}c["2% of Attack Damage Leeched as Life against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=2}},nil}c["Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit"]={nil,"Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit "}c["30% increased Damage with Maces, Sceptres or Staves"]={{[1]={[1]={modFlags=3145728,type="ModFlagOr"},flags=4,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["6% increased Burning Damage for each Enemy you have Shocked Recently"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=6}}," for each Enemy you have Shocked Recently "}c["25% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=25}},nil}c["20% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20}},nil}c["Socketed Gems are Supported by level 1 Controlled Destruction"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportControlledDestruction"}}},nil}c["15% increased Area of Effect if you have Stunned an Enemy Recently 18% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="AreaOfEffect",type="INC",value=15}}," if you have Stunned an Enemy Recently 18% increased Damage "}c["30% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["70% increased Damage with Hits and Ailments against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=70}},nil}c["10% chance of Arrows Piercing Arrows Pierce an additional Target"]={{}," of Arrows Piercing Arrows Pierce an additional Target "}c["260% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=260}},nil}c["10% increased Accuracy Rating with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["Socketed Gems are Supported by level 15 Increased Minion Life"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportMinionLife"}}},nil}c["0.5% of Attack Damage Leeched as Life against Maimed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Maimed"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=0.5}},nil}c["50% increased Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=50}},nil}c["50% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=50}},nil}c["40% reduced Effect of Curses on You"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-40}},nil}c["5% chance to Dodge Attack Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5}},nil}c["Projectiles Pierce 2 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=2}},nil}c["20% chance to Poison on Hit with Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="PoisonChance",type="BASE",value=20}}," with Damage "}c["15% increased Movement Speed while affected by Grace"]={{[1]={[1]={type="Condition",var="AffectedByGrace"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Detonating Mines is Instant"]={nil,"Detonating Mines is Instant "}c["20% increased Cooldown Recovery Speed of Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="CooldownRecovery",type="INC",value=20}},nil}c["+100 to Maximum Life per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,keywordFlags=0,name="Life",type="BASE",value=100}},nil}c["10% chance to Freeze, Shock and Ignite while affected by a Herald 25% increased Elemental Damage while affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}}," while affected by a Herald 25% increased Elemental Damage while affected by a Herald "}c["+25% chance to be Ignited 125 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Life",type="BASE",value=25}}," to be Ignited 125 Regenerated per second "}c["Deals 50 Chaos Damage per second to nearby Enemies"]={nil,"Deals 50 Chaos Damage per second to nearby Enemies "}c["+325 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=325}},nil}c["15% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["+140 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=140}},nil}c["When you Kill an Enemy, for each Curse on that Enemy, gain 8% of Non-Chaos Damage as extra Chaos Damage for 4 seconds"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=8}},nil}c["13% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=13}},nil}c["Adds 25 to 50 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=25},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=50}},nil}c["You can't deal Damage with Skills yourself"]={nil,"You can't deal Damage with Skills yourself "}c["100% reduced Arctic Armour Mana Reservation"]={{[1]={[1]={skillName="Arctic Armour",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["60% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["60% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=60}},nil}c["Your Physical Damage can Shock"]={{[1]={flags=0,keywordFlags=0,name="PhysicalCanShock",type="FLAG",value=true}},nil}c["You have Fortify"]={{[1]={flags=0,keywordFlags=0,name="Condition:Fortify",type="FLAG",value=true}},nil}c["30% reduced Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=-30}},nil}c["Socketed Gems are Supported by Level 20 Vile Toxins"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportDebilitate"}}},nil}c["10% chance to gain a Power Charge when you Shock a Chilled Enemy 25% increased Cold Damage with Hits against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="ColdDamage",type="BASE",value=10}}," to gain a Power Charge when you Shock a Chilled Enemy 25% increased "}c["30% chance to gain an Endurance Charge when you are Hit"]={{}," to gain an Endurance Charge when you are Hit "}c["150% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=150}},nil}c["Adds 35 to 70 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=70}},nil}c["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled "}c["30% reduced Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-30}},nil}c["12 to 14 Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=12},[2]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=14}},nil}c["50% increased Life Recovery Rate if you've taken Fire Damage from an Enemy Hit Recently"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=50}}," if you've taken Fire Damage from an Enemy Hit Recently "}c["8% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=8}},nil}c["0.2% of Fire Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=0.2}},nil}c["40% chance to Avoid being Ignited"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=40}},nil}c["+8% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=8}},nil}c["5% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}c["25% increased Critical Strike Chance with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["+2000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=2000}}," while you do not have Avatar of Fire "}c["Spectres do not travel between Areas"]={nil,"Spectres do not travel between Areas "}c["10% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["12% increased Elemental Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["8% chance to Avoid being Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=8}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Raised Zombies"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Raised Zombies "}c["+100 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=100}},nil}c["16% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=16}},nil}c["Gain 20% of Physical Damage as Extra Chaos Damage against Poisoned Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=0,keywordFlags=262144,name="PhysicalDamageGainAsChaos",type="BASE",value=20}},nil}c["Grants Level 25 Purity of Fire Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="FireResistAura"}}},nil}c["You can only have one Permanent Non-Banner Aura on you from your Skills"]={nil,"You can only have one Permanent Non-Banner Aura on you from your Skills "}c["Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing"]={nil,"Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing "}c["350% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=350}},nil}c["10% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["10% increased Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=10}},nil}c["110% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=110}},nil}c["5% chance to double Stun Duration 14% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="EnemyStunDuration",type="BASE",value=5}}," to double 14% increased Damage "}c["You lose all Spirit Charges when taking a Savage Hit"]={nil,"You lose all Spirit Charges when taking a Savage Hit "}c["+200 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=200}},nil}c["3% increased Character Size 6% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=3}}," Character Size 6% increased "}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds "}c["40% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil}c["Non-Critical Strikes Penetrate 10% of Enemy Elemental Resistances"]={{[1]={[1]={neg=true,type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=10}},nil}c["+18% to Damage over Time Multiplier for Ailments from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=2048,keywordFlags=0,name="DotMultiplier",type="BASE",value=18}},nil}c["15% increased Physical Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["1% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["Lose all Power Charges on reaching Maximum Power Charges Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges Gain a Frenzy Charge on reaching Maximum Power Charges "}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of Non-Damaging Ailments"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of Non-Damaging Ailments "}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 10% increased Attack Speed If you've Warcried Recently, you and nearby allies deal 30% increased Damage"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 10% increased Attack Speed If you've Warcried Recently, you and nearby allies deal 30% increased Damage "}c["12% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["-30% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-30}},nil}c["15% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=15}},nil}c["Deals 50 Chaos Damage per second to nearby Enemies 20% increased Projectile Damage"]={nil,"Deals 50 Chaos Damage per second to nearby Enemies 20% increased Projectile Damage "}c["-4% to all Resistances for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-4},[2]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-4}},nil}c["Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={nil,"Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield "}c["Increases and Reductions to Minion Attack Speed also affect you"]={{[1]={flags=0,keywordFlags=0,name="MinionAttackSpeedAppliesToPlayer",type="FLAG",value=true}},nil}c["Adds 22 to 37 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=37}},nil}c["25% reduced effect of Offerings"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-25}}," of Offerings "}c["50% reduced Experience gain 0.4% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=-50}}," Experience gain 0.4% of Leeched as Mana "}c["Grants Level 10 Frostblink Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="IceDash"}}},nil}c["You and Allies affected by Auras from your Skills deal 30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="AffectedByAuraMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}}},nil}c["+40 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}},nil}c["20% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Gain a Power Charge after spending a total of 200 Mana"]={nil,"Gain a Power Charge after spending a total of 200 Mana "}c["10% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=10}},nil}c["100% increased Ignite Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=100}}," on You "}c["20% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["10% reduced Mana Reservation of Herald Skills"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-10}},nil}c["+24% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=24}},nil}c["15% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["80% reduced Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=-80}},nil}c["Discipline has 60% increased Aura Effect"]={{[1]={[1]={skillName="Discipline",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["10% increased Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Minions have +5% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}}}},nil}c["250% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=250}},nil}c["Trigger Level 20 Icicle Burst when you Kill a Frozen Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TriggeredIcicleNova"}}},nil}c["5 Maximum Void Charges"]={nil,"5 Maximum Void Charges "}c["During Flask Effect, Damage Penetrates 15% Resistance of each Element for which your"]={{},", Damage Resistance of each Element for which your "}c["170% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=170}},nil}c["10% increased Brand Activation frequency"]={{[1]={flags=0,keywordFlags=0,name="BrandActivationFrequency",type="INC",value=10}},nil}c["Leech applies instantly on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantManaLeech",type="FLAG",value=true}},nil}c["to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground"]={nil,"to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground "}c["Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy"]={nil,"Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy "}c["Passives granting Cold Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Frenzy Charge on Kill"]={nil,"Passives granting Cold Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Frenzy Charge on Kill "}c["20% chance to gain a Power Charge on Kill 20% chance to gain a Endurance Charge on Kill"]={{}," to gain a Power Charge on Kill 20% chance to gain a Endurance Charge on Kill "}c["Gems Socketed in Green Sockets have +10% to Quality"]={nil,"Gems Socketed in Green Sockets have +10% to Quality "}c["25% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Damage from an Enemy Hit Recently"]={nil,"Damage from an Enemy Hit Recently "}c["Cannot Ignite, Chill, Freeze or Shock"]={nil,"Cannot Ignite, Chill, Freeze or Shock "}c["+50% Global Critical Strike Multiplier while you have no Frenzy Charges"]={{[1]={[1]={type="Global"},[2]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}},nil}c["10% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+20 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=20}},nil}c["Totems gain +10% to all Elemental Resistances"]={nil,"Totems gain +10% to all Elemental Resistances "}c["45% increased Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=45}},nil}c["15% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil}c["+125 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=125}},nil}c["Herald of Purity has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["Grace Reserves no Mana"]={{[1]={[1]={skillId="Grace",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["35% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=35}},nil}c["30% chance to Blind Enemies on Critical Strike Causes Bleeding on Melee Critical Strike"]={{}," to Blind Enemies Causes Bleeding on Critical Strike "}c["Enemies near corpses you Spawned Recently are Chilled and Shocked Corpses you Spawn have 50% increased Maximum Life"]={nil,"Enemies near corpses you Spawned Recently are Chilled and Shocked Corpses you Spawn have 50% increased Maximum Life "}c["20% chance for Poisons inflicted with this Weapon to deal 300% more Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=1048576,name="Damage",type="BASE",value=20}}," s inflicted to deal 300% more "}c["Life Leech effects are not removed at Full Life 50% increased Attack Damage while Leeching"]={nil,"Life Leech effects are not removed at Full Life 50% increased Attack Damage while Leeching "}c["Adds 12 to 15 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=12},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=15}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life "}c["10% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["30% Chance to gain Unholy Might on Block for 3 seconds You gain Unholy Might for 10 seconds on Block"]={{}," to gain Unholy Might on Block for 3 seconds You gain Unholy Might for 10 seconds on Block "}c["+1 to Level of all Fire Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="fire",[3]="active_skill"},value=1}}},nil}c["18% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=18}},nil}c["12% increased Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["+5 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=5}},nil}c["With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy."]={nil,"With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. "}c["20% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=20}},nil}c["280% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=280}},nil}c["50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills"]={{[1]={flags=0,keywordFlags=262144,name="FlaskEffect",type="MORE",value=50}}," of Herald Buffs on you 100% more Damage from Herald Skills 50% more Damage Over Time with Herald Skills "}c["Adds 50 to 100 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=50},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=100}},nil}c["10% chance to gain an Endurance Charge on Melee Critical Strike +2 to Melee Strike Range with Staves"]={{[1]={flags=256,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=10},[2]={flags=256,keywordFlags=0,name="UnarmedRange",type="BASE",value=10}}," to gain an Endurance Charge on Critical Strike +2 to with Staves "}c["Axe Attacks deal 16% increased Damage with Ailments"]={{[1]={flags=67584,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["8% increased Cast Speed while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=16,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["60% chance to Avoid Blind 5% reduced Damage taken from Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=60}}," to Avoid Blind 5% reduced "}c["+10 Life Gained on Killing Ignited Enemies 25% reduced Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}}," ing Ignited Enemies 25% reduced Ignite Duration "}c["30% increased Bleeding Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=30}},nil}c["+460 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=460}},nil}c["Adds 23 to 83 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=83}},nil}c["Adds 14 to 23 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=23}},nil}c["Debuffs on you expire 20% faster"]={nil,"Debuffs on you expire 20% faster "}c["+15% chance to Avoid Elemental Damage from Hits while Phasing You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=15}}," to Avoid from Hits You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently "}c["Enemies Killed with Attack Hits have a 15% chance to Explode, dealing a tenth of their Life as Physical Damage"]={nil,"Enemies Killed with Attack Hits have a 15% chance to Explode, dealing a tenth of their Life as Physical Damage "}c["Your Offerings have 25% reduced Effect on you"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"},type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="BuffEffectOnPlayer",type="INC",value=-25}}}},nil}c["Nearby Enemies have 15% less Accuracy Rating while you have Phasing"]={nil,"Nearby Enemies have 15% less Accuracy Rating while you have Phasing "}c["Adds 24 to 36 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=36}},nil}c["Each Mine applies 2% increased Damage taken to Enemies near it, up to 10%"]={nil,"Each Mine applies 2% increased Damage taken to Enemies near it, up to 10% "}c["Adds 19 to 43 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=19},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=43}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["Adds 40 to 73 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=73}},nil}c["50% increased Convocation Cooldown Recovery Speed"]={{[1]={[1]={skillName="Convocation",type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=50}},nil}c["Minions have 25% chance to gain Unholy Might for 4 seconds on Kill Minions gain 10% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=25}}}}," to gain Unholy Might for 4 seconds on Kill Minions gain 10% of as Extra Maximum Energy Shield "}c["30% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=30}},nil}c["50% increased Melee Critical Strike Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["10% reduced Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-10}},nil}c["10% increased Attack Speed with Swords"]={{[1]={flags=4194309,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Cannot be Knocked Back"]={nil,"Cannot be Knocked Back "}c["Socketed Gems are Supported by Level 15 Added Chaos Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportAddedChaosDamage"}}},nil}c["20% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=20}},nil}c["Spectres have 900% increased Critical Strike Chance"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=900}}}},nil}c["80% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=80}},nil}c["15% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=15}},nil}c["-5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-5}},nil}c["30% chance to Avoid being Frozen"]={{[1]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=30}},nil}c["You and nearby allies have 20% increased Attack, Cast and Movement Speed if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}},[2]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}}},nil}c["3% of Attack Damage leeched as Life against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=3}},nil}c["1% increased Maximum Mana per Abyss Jewel affecting you"]={{[1]={[1]={type="Multiplier",var="AbyssJewel"},flags=0,keywordFlags=0,name="Mana",type="INC",value=1}},nil}c["+9% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=9}},nil}c["20% increased Totem Duration"]={{[1]={flags=0,keywordFlags=0,name="TotemDuration",type="INC",value=20}},nil}c["Lose 0.1% of maximum Life per second per Rage while you are not losing Rage"]={nil,"Lose 0.1% of maximum Life per second per Rage while you are not losing Rage "}c["100 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["40% increased Rarity of Items Dropped by Frozen Enemies"]={{}," Rarity of Items Dropped by Frozen Enemies "}c["Cold Skills have a 25% chance to apply Cold Exposure on Hit Fire Skills have a 25% chance to apply Fire Exposure on Hit"]={nil,"a 25% chance to apply Cold Exposure on Hit Fire Skills have a 25% chance to apply Fire Exposure on Hit "}c["1% of Damage Leeched as Energy Shield against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="DamageEnergyShieldLeech",type="BASE",value=1}},nil}c["Counts as all One Handed Melee Weapon Types"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="countsAsAll1H",value=true}}},nil}c["15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=15}}," to gain a Power Charge if you or your s kill an Enemy 5% reduced "}c["30% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=30}},nil}c["10% additional Chance to receive a Critical Strike"]={{}," to receive a Critical Strike "}c["Adds 240 to 325 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=240},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=325}},nil}c["8 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=8}},nil}c["16% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=16}},nil}c["80% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="INC",value=80}},nil}c["35% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=35}},nil}c["160% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=160}},nil}c["240% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=240}},nil}c["+6% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil}c["30% reduced Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=-30}},nil}c["Cannot inflict Ignite"]={{[1]={flags=0,keywordFlags=0,name="CannotIgnite",type="FLAG",value=true}},nil}c["16% increased Accuracy Rating with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil}c["Adds 25 to 35 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=35}},nil}c["Gain a Challenger Charge when you Kill an Enemy while in Sand Stance"]={nil,"Gain a Challenger Charge when you Kill an Enemy while in Sand Stance "}c["20% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=20}},nil}c["+15% to Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}},nil}c["Attacks with this Weapon deal 100 to 200 added Fire Damage to Bleeding Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="FireMin",type="BASE",value=100},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="FireMax",type="BASE",value=200}},nil}c["You and Allies affected by your Aura Skills deal 20% increased Damage 10% more Damage while you have at least one nearby Ally Herald of Purity has 40% increased Buff Effect Summoned Sentinels of Purity have 50% increased Area of Effect"]={nil,"You and Allies affected by your Aura Skills deal 20% increased Damage 10% more Damage while you have at least one nearby Ally Herald of Purity has 40% increased Buff Effect Summoned Sentinels of Purity have 50% increased Area of Effect "}c["0.5% of Maximum Life Regenerated per second while affected by a Guard Skill Buff"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}}," while affected by a Guard Skill Buff "}c["+2 to Melee Weapon and Unarmed Attack range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}c["25% chance to Taunt on Hit"]={{}," to Taunt on Hit "}c["30% increased Zombie Resistances 25% increased Zombie Size"]={{}," Resistances 25% increased Zombie Size "}c["Every 5 seconds, remove Curses and Elemental Ailments from you Every 5 seconds, Regenerate 30% of Life over one second"]={nil,"Every 5 seconds, remove Curses and Elemental Ailments from you Every 5 seconds, Regenerate 30% of Life over one second "}c["3% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil}c["40% increased Global Evasion Rating when on Full Life"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil}c["18% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=18}},nil}c["17 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=17}},nil}c["5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Onslaught for 3 seconds on Kill "}c["+15 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=15}},nil}c["+2 to Melee Strike Range with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={flags=2097156,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}c["25% increased Damage for each Magic Item Equipped"]={{[1]={[1]={type="Multiplier",var="MagicItem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["40% increased Damage if you've taken no Damage from Hits Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["10% chance to create a Smoke Cloud when Hit 25% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit 25% chance to create a Smoke Cloud when Hit "}c["30% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=30}},nil}c["You and nearby Allies deal 4 to 8 added Physical Damage for each Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4}}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}}}}," for each Impale on Enemy "}c["+600 Armour if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=600}},nil}c["Lose 7% of maximum Mana per Second"]={{[1]={[1]={stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="ManaDegen",type="BASE",value=0.07}},nil}c["+170 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=170}},nil}c["Raging Spirits' Hits always Ignite"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=100}}}},nil}c["15% increased Critical Strike Chance with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["70% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["8% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=8}},nil}c["3% increased Attack Speed with Swords"]={{[1]={flags=4194309,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Minions have +325 to Armour"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=325}}}},nil}c["15% chance to deal Double Damage if you've Warcried in the past 8 seconds"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=15}}," if you've Warcried in the past 8 seconds "}c["10% increased Attack Speed if you've Hit with your Main Hand Weapon Recently 10% increased Movement Speed if you've Hit with your Off Hand Weapon Recently"]={{[1]={flags=8193,keywordFlags=0,name="Speed",type="INC",value=10}}," if you've Hit with your Main Hand Recently 10% increased Movement Speed if you've Hit with your Off Hand Weapon Recently "}c["Recover 5% of Maximum Energy Shield on Kill"]={nil,"Recover 5% of Maximum Energy Shield on Kill "}c["15% increased Attack Speed with Movement Skills"]={{[1]={flags=1,keywordFlags=8,name="Speed",type="INC",value=15}},nil}c["Nearby Allies' Damage with Hits is Lucky"]={nil,"Nearby Allies' Damage with Hits is Lucky "}c["25% chance to create a Smoke Cloud when Hit 40% increased Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="Damage",type="BASE",value=25}}," to create a Smoke Cloud when Hit 40% increased "}c["Minions gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}}}},nil}c["Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit"]={nil,"Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit "}c["20% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Transfiguration of Soul"]={{[1]={flags=0,keywordFlags=0,name="TransfigurationOfSoul",type="FLAG",value=true}},nil}c["150% increased Rarity of Items Dropped by Slain Magic Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies "}c["+2 to Level of all Fire Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="fire",[3]="active_skill"},value=2}}},nil}c["14% increased Elemental Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="ElementalDamage",type="INC",value=14}},nil}c["With at least 40 Intelligence in Radius, Cold Snap has a 50% chance to grant a Power Charge on Kill With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area"]={nil,"With at least 40 Intelligence in Radius, Cold Snap has a 50% chance to grant a Power Charge on Kill With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area "}c["do not have Adrenaline Recover 25% of Life when you gain Adrenaline"]={nil,"do not have Adrenaline Recover 25% of Life when you gain Adrenaline "}c["30% increased Elemental Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Shocks from your Hits always increase Damage taken by at least 20% "}c["Adds 173 to 213 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=173},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=213}},nil}c["170% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=170}},nil}c["40% reduced Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-40}},nil}c["18% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=18}},nil}c["30% increased Critical Strike Chance against Enemies on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=30}},nil}c["+20 to Maximum Blitz Charges"]={{[1]={flags=0,keywordFlags=0,name="BlitzChargesMax",type="BASE",value=20}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of Life when you gain Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of Life when you gain Adrenaline "}c["135% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=135}},nil}c["190% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=190}},nil}c["235% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=235}},nil}c["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},[3]={type="Condition",var="HaveBestialMinion"},[4]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to Maim on Hit from Attacks have 20% chance to Poison on Hit "}c["Gain a Flask Charge when you deal a Critical Strike"]={nil,"Gain a Flask Charge when you deal a Critical Strike "}c["Returning Projectiles Pierce all Targets"]={nil,"Returning Projectiles Pierce all Targets "}c["+1 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=1}},nil}c["+85 to Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=85}},nil}c["Attack Skills deal 14% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["Attack Skills deal 15% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["30% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}c["Attack Skills deal 10% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["113% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=113}},nil}c["Attack Skills deal 12% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["Summoned Sentinels use Crusade Slam"]={nil,"Summoned Sentinels use Crusade Slam "}c["Every 5 seconds, Regenerate 30% of Life over one second"]={nil,"Every 5 seconds, Regenerate 30% of Life over one second "}c["Hits with this Weapon always inflict Elemental Ailments"]={nil,"Hits with this Weapon always inflict Elemental Ailments "}c["15 Mana Regenerated per second if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=15}},nil}c["Trigger a Socketed Spell when you Use a Skill"]={nil,"Trigger a Socketed Spell when you Use a Skill "}c["16% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=0,keywordFlags=786944,name="Damage",type="INC",value=50}},nil}c["30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes"]={{}," Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes "}c["20% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["50% chance to be inflicted with Bleeding when Hit by an Attack Gore Footprints"]={{}," to be inflicted when Hit by an Attack Gore Footprints "}c["Regenerate 0.5% of Life per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["15% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=15}},nil}c["+175 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=175}},nil}c["+16% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=16}},nil}c["25% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="PhysicalDamage",type="MORE",value=25}},nil}c["Purity of Fire Reserves no Mana"]={{[1]={[1]={skillId="FireResistAura",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["You can only have one Herald 50% more Effect of Herald Buffs on you"]={nil,"You can only have one Herald 50% more Effect of Herald Buffs on you "}c["50% chance to gain a Flask Charge when you deal a Critical Strike 30% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="BASE",value=50}}," to gain a Flask Charge when you deal a Critical Strike 30% increased "}c["20% increased Damage with Two Handed Weapons"]={{[1]={flags=268435460,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["20% increased Armour while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil}c["Minions have 100% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=100}}}},nil}c["Chaos Skills have 10% chance to Hinder Enemies on Hit, with 30% reduced Movement Speed Enemies Hindered by you take 10% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=128,name="MovementSpeed",type="BASE",value=10}}," to Hinder Enemies on Hit, with 30% reduced Enemies Hindered by you take 10% increased Chaos Damage "}c["+80 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=80}},nil}c["15% increased Physical Damage with Axes or Swords"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=4,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["30% increased Melee Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["20% increased Critical Strike Chance with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["50% less Maximum total Recovery per Second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxEnergyShieldLeechRate",type="MORE",value=-50}},nil}c["12% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=12}},nil}c["You cannot be Hindered"]={nil,"You cannot be Hindered "}c["Gain Soul Eater during Flask Effect"]={nil,"Gain Soul Eater during Flask Effect "}c["Recover 20% of your Maximum Life on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage "}c["15% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=15}},nil}c["30% increased Damage over Time while affected by a Herald"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=30}}," while affected by a Herald "}c["20% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=20}},nil}c["10% reduced Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=-10}},nil}c["Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage 25% more Damage with Bleeding"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage 25% more Damage with Bleeding "}c["20% increased Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["150% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=150}},nil}c["Adds 10 to 14 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=14}},nil}c["Adds 22 to 44 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=44}},nil}c[" Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner"]={nil," Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner "}c["+0.75% to Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.75}},nil}c["12% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["22% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=22}},nil}c["Denoted service of 8000 dekhara in the akhara of Deshret Passives in radius are Conquered by the Maraketh"]={nil,"Denoted service of 8000 dekhara in the akhara of Deshret Passives in radius are Conquered by the Maraketh "}c["+30 to Maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=30}},nil}c["50% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=50}},nil}c["40% increased Effect of Chilled Ground"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=40}}," ed Ground "}c["Adds 16 to 24 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil}c["40% increased Chaos Skill Effect Duration"]={{[1]={flags=0,keywordFlags=128,name="Duration",type="INC",value=40}},nil}c["+15% to Cold and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}},nil}c["40% more chance to Evade Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="ProjectileEvadeChance",type="MORE",value=40}},nil}c["25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=25}}," to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full "}c["+90 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=90}},nil}c["5% chance to gain a Frenzy Charge on Kill 5% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=5}}," to gain aCharge on Kill 5% increased "}c["200% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," while you have Avatar of Fire "}c["Modifiers to Critical Strike Multiplier also apply to Damage Multiplier for Ailments from Critical Strikes at 30% of their value"]={nil,"Modifiers to Critical Strike Multiplier also apply to Damage Multiplier for Ailments from Critical Strikes at 30% of their value "}c["60% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["+25 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=25}},nil}c["35% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=35}},nil}c["Your Lightning Damage can Poison"]={{[1]={flags=0,keywordFlags=0,name="LightningCanPoison",type="FLAG",value=true}},nil}c["Cannot gain Mana during effect"]={nil,"Cannot gain Mana during effect "}c["60% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=60}},nil}c["30% increased Stun Duration with Bows on Enemies"]={{[1]={flags=131076,keywordFlags=0,name="EnemyStunDuration",type="INC",value=30}},nil}c["6% chance to Avoid Fire Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=6}}," to Avoid from Hits "}c["220% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=220}},nil}c["25% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=25}},nil}c["+25% to Critical Strike Multiplier with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["Adds 18 to 56 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=18},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=56}},nil}c["-1 Physical Damage taken from Hits per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-1}}," from Hits "}c["Ailments never count as being from Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="AilmentsAreNeverFromCrit",type="FLAG",value=true}},nil}c["Minions created Recently have 30% increased Movement Speed"]={nil,"created Recently have 30% increased Movement Speed "}c["8% chance to gain a Power Charge when you Stun with Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=8}}," to gain a Power Charge when you Stun with "}c["Reflects 44 Physical Damage to Attackers on Block"]={nil,"Reflects 44 Physical Damage to Attackers on Block "}c["No Block Chance"]={{[1]={flags=0,keywordFlags=0,name="ArmourData",type="LIST",value={key="BlockChance",value=0}}},nil}c["Sockets cannot be modified +1 to Level of Socketed Gems"]={nil,"Sockets cannot be modified +1 to Level of Socketed Gems "}c["+1 to Level of Socketed Strength Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="strength",value=1}}},nil}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently 25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=60}}," for each 200 total Mana you have Spent Recently 25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000% "}c["12% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=12}},nil}c["+450 to Accuracy against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="Accuracy",type="BASE",value=450}},nil}c["Removes 1% of maximum Life on Kill"]={nil,"Removes 1% of maximum Life on Kill "}c["3% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=3}},nil}c["15% increased Accuracy Rating with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["5% increased Attack and Cast Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["15% chance to create Chilled Ground when you Freeze an Enemy"]={{}," to create Chilled Ground when you Freeze an Enemy "}c["260% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=260}},nil}c["180% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=180}},nil}c["150% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=150}},nil}c["Cannot Be Slowed to Below Base Speed"]={{[1]={flags=0,keywordFlags=0,name="ActionSpeedCannotBeBelowBase",type="FLAG",value=true}},nil}c["Enemies you Attack Reflect 100 Physical Damage to you"]={nil,"Enemies you Attack Reflect 100 Physical Damage to you "}c["5% chance to Avoid Cold Damage when Hit"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="BASE",value=5}}," to Avoid when Hit "}c["125% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=125}},nil}c["180% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=180}},nil}c["Melee Critical Strikes cause Bleeding"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["Enemies Cannot Leech Mana From You 10% of Damage taken Gained as Mana over 4 seconds when Hit"]={nil,"Enemies Cannot Leech Mana From You 10% of Damage taken Gained as Mana over 4 seconds when Hit "}c["245% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=245}},nil}c["Projectile Attack Skills have 50% increased Critical Strike Chance"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["Minions have 10% chance to Knock Enemies Back on Hit with Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=65536,name="EnemyKnockbackChance",type="BASE",value=10}}}},nil}c["+45% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie "}c["Herald Skills deal 40% increased Damage 20% increased Effect of Herald Buffs on you"]={nil,"Herald Skills deal 40% increased Damage 20% increased Effect of Herald Buffs on you "}c["Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=20}},nil}c["90% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=90}},nil}c["20% increased Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=20}},nil}c["18% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["6% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=6}},nil}c["Adds 103 to 245 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=103},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=245}},nil}c["+100 Life Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=100}},nil}c["100% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=100}},nil}c["500% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=500}},nil}c["+3 to Level of all Cold Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="cold",[3]="active_skill"},value=3}}},nil}c["Gain 200 Armour per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=200},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["+24 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=24}}," gained when you Block "}c["+450 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=450}},nil}c["6% increased Spell Damage per 5% Block Chance"]={{[1]={[1]={div=5,stat="BlockChance",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["13% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=13}},nil}c["380% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=380}},nil}c["1% reduced Elemental Damage taken when Hit per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ElementalDamageTakenWhenHit",type="INC",value=-1}},nil}c["-60% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-60}},nil}c["90% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=90}},nil}c["Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,noSupports=true,skillId="PoachersMark"}}},nil}c["Enemies near Corpses affected by your Curses are Blinded"]={nil,"Enemies near Corpses affected by your Curses are Blinded "}c["5% increased Cast Speed with Cold Skills"]={{[1]={flags=16,keywordFlags=32,name="Speed",type="INC",value=5}},nil}c["+12 to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=12}},nil}c["6% increased Attack Speed with Maces or Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["+1 to Level of all Raise Zombie Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="raise zombie",value=1}}},nil}c["8% increased Accuracy Rating with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["30% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-30}},nil}c["3% increased Attack Speed with Bows"]={{[1]={flags=131077,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Adds 65 to 155 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=65},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=155}},nil}c["While at Maximum Frenzy Charges, Attacks Poison Enemies"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=1,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["Nearby Enemies have -20% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-20}}}},nil}c["100% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["Mace or Sceptre Attacks deal 8% increased Damage with Hits and Ailments"]={{[1]={flags=1048576,keywordFlags=786432,name="Damage",type="INC",value=8}},nil}c["5% increased Mana Recovery Rate during Effect of any Mana Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=5}}," of any Mana Flask "}c["15% increased Character Size Spell Skills deal no Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=15}}," Character Size Skills deal no "}c["Adds 1 to 2 Physical Damage to Attacks per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=2}},nil}c["Cannot be Stunned while Leeching You are Unaffected by Bleeding while Leeching"]={nil,"Cannot be Stunned while Leeching You are Unaffected by Bleeding while Leeching "}c["40% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=40}},nil}c["50% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=50}},nil}c["Trigger Level 20 Elemental Warding when you Hit an Enemy while Cursed"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="OnHitWhileCursedTriggeredCurseNova"}}},nil}c["+1 to Maximum Spirit Charges per Abyss Jewel affecting you"]={{}," Maximum Spirit Charges "}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite "}c["You and nearby Allies have +30% to Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=30}}}},nil}c["20% increased Arrow Speed"]={{[1]={flags=131072,keywordFlags=0,name="ProjectileSpeed",type="INC",value=20}},nil}c["You can't deal Damage with Skills yourself +1 to maximum number of Summoned Totems"]={nil,"You can't deal Damage with Skills yourself +1 to maximum number of Summoned Totems "}c["Adds 100 to 158 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=158}},nil}c["Adds 270 to 315 Cold Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=270},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=315}},nil}c["140% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=140}},nil}c["8% reduced Damage taken while Elusive"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-8}}," while Elusive "}c["Trigger level 10 Void Gaze when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="VoidGaze"}}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["33% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=33}},nil}c["Extra Gore 10% chance to cause Bleeding on Hit"]={nil,"Extra Gore 10% chance to cause Bleeding on Hit "}c["Minions created Recently have 10% increased Attack and Cast Speed Minions created Recently have 30% increased Movement Speed"]={nil,"created Recently have 10% increased Attack and Cast Speed Minions created Recently have 30% increased Movement Speed "}c["15% increased Dexterity if Strength is higher than Intelligence"]={{[1]={[1]={type="Condition",var="StrHigherThanInt"},flags=0,keywordFlags=0,name="Dex",type="INC",value=15}},nil}c["Gain +30 Life when you Hit a Bleeding Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="LifeOnHit",type="BASE",value=30}},nil}c["+1 to Minimum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMin",type="BASE",value=1}},nil}c["500% increased Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=500},[2]={flags=0,keywordFlags=0,name="DexRequirement",type="INC",value=500},[3]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=500}},nil}c["Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits 15% chance to Impale Enemies on Hit with Attacks 5% increased Impale Effect +20 to Strength"]={nil,"Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits 15% chance to Impale Enemies on Hit with Attacks 5% increased Impale Effect +20 to Strength "}c["10% increased Damage per Freeze, Shock and Ignite on Enemy"]={{[1]={[1]={type="Multiplier",var="FreezeShockIgniteOnEnemy"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=10}},nil}c["5% chance to gain an Endurance Charge on Kill while holding a Shield"]={{}," to gain an Endurance Charge on Kill "}c["160% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=160}},nil}c["8% chance to deal Double Damage if you've dealt a Critical Strike with a Two Handed Melee Weapon Recently"]={{[1]={flags=256,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=8}}," if you've dealt a Critical Strike with a Two Handed Weapon Recently "}c["20% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=20}},nil}c["13% increased Quantity of Items found when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=13}},nil}c["Life Leech is applied to Energy Shield instead while on Full Life Gain 6% of Maximum Life as Extra Maximum Energy Shield"]={nil,"Life Leech is applied to Energy Shield instead while on Full Life Gain 6% of Maximum Life as Extra Maximum Energy Shield "}c["Socketed Gems have 10% chance to cause Enemies to Flee on Hit"]={{}," to cause Enemies to Flee on Hit "}c["+1 to maximum number of Zombies per 300 Strength"]={{[1]={[1]={div=300,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil}c["12% chance to Knock Enemies Back on hit"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=12}},nil}c["Cannot be Frozen if Dexterity is higher than Intelligence"]={{[1]={[1]={type="Condition",var="DexHigherThanInt"},flags=0,keywordFlags=0,name="AvoidFreeze",type="BASE",value=100}},nil}c["+160 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=160}},nil}c["Can Allocate Passives from the Ranger's starting point"]={{},nil}c["30% increased Cast Speed if you've Attacked Recently"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=30}},nil}c["15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy 30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy"]={{}," to gain aCharge when your is triggered by an Enemy 30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy "}c["+290 to Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="BASE",value=290}},nil}c["5% increased Experience gain"]={{}," Experience gain "}c["20% chance to Block Spells if you've Blocked an Attack Recently"]={{[1]={[1]={type="Condition",var="BlockedAttackRecently"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil}c["10% chance to gain an Endurance Charge when you Block Attack Skills deal 20% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain an Endurance Charge when you Block Attack Skills deal 20% increased "}c["+1 to Maximum Spirit Charges per Abyss Jewel affecting you Gain a Spirit Charge every second"]={{}," Maximum Spirit Charges Gain a Spirit Charge every second "}c["20% chance to Freeze, Shock and Ignite during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=20},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=20},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=20}},nil}c["Adds 29 to 45 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=29},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=45}},nil}c["20% chance to gain a Power Charge on Non-Critical Strike +1 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=20}}," to gain a Power Charge on Non-Critical Strike +1 to "}c["Take 30 Chaos Damage per Second during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=30}},nil}c["Grants maximum Energy Shield equal to 15% of your Reserved Mana to"]={nil,"Grants maximum Energy Shield equal to 15% of your Reserved Mana to "}c["-2 to Total Mana Cost of Skills for each Corrupted Item Equipped"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-2}},nil}c["30% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=30}},nil}c["Projectiles Pierce 3 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=3}},nil}c["+8 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=8}},nil}c["+2 to Level of Socketed Movement Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="movement",value=2}}},nil}c["You are Shocked during Flask effect, causing 50% increased Damage taken"]={nil,"You are Shocked during Flask effect, causing 50% increased Damage taken "}c["30% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["24% increased Elemental Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="ElementalDamage",type="INC",value=24}},nil}c["+29% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=29}},nil}c["9% Increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=9}},nil}c["Take 100 Fire Damage when you Ignite an Enemy"]={nil,"100 Fire Damage when you Ignite an Enemy "}c["30% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["30% increased Damage if you Summoned a Golem in the past 8 seconds Golems Summoned in the past 8 seconds deal 45% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," if you Summoned a in the past 8 seconds Golems Summoned in the past 8 seconds deal 45% increased Damage "}c["Adds 21 to 38 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=21},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=38}},nil}c["140% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=140}},nil}c["1% reduced Mana Reserved per 250 total attributes"]={{[1]={[1]={div=250,statList={[1]="Str",[2]="Dex",[3]="Int"},type="PerStat"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-1}},nil}c["235% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=235}},nil}c["8% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["135% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=135}},nil}c["Damage Penetrates 10% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=10}},nil}c["20% increased Critical Strike Chance with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["15% chance to gain a Power Charge when your Trap is triggered by an Enemy 15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"]={{}," to gain a Power Charge when your is triggered by an Enemy 15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy "}c["15% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["+7 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=7}},nil}c["10% chance to Impale Enemies on Hit with Axes or Swords 15% increased Physical Damage with Axes or Swords"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=4,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," to Impale Enemies on Hit 15% increased with Axes or Swords "}c["13% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=13}},nil}c["20% chance to Recover 10% of Mana when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," to Recover 10% of when you use a Skill "}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={type="Condition",var="OffHandAttack"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill 10% more while at maximum Frenzy Charges "}c["8% reduced Area Damage taken from Hits +30% to Critical Strike Multiplier against Burning Enemies 80% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},[2]={actor="enemy",type="ActorCondition",var="Shocked"},flags=512,keywordFlags=262144,name="DamageTaken",type="INC",value=-8}}," from Hits +30% to Critical Strike Multiplier 80% increased Critical Strike Chance "}c["110% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=110}},nil}c["20% increased Attack and Cast Speed while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["10% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield"]={{[1]={[1]={div=10,stat="EnergyShield",type="PerStat"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=1}}," on Shield "}c["+350 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=350}},nil}c["+160 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=160}},nil}c["1% increased Rarity of Items found per 15 Rampage Kills"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=1}}," per 15 Rampage Kills "}c["14% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["30% increased Armour while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil}c["You cannot be Shocked for 3 seconds after being Shocked You grant 6 Frenzy Charges to allies on Death"]={nil,"You cannot be Shocked for 3 seconds after being Shocked You grant 6 Frenzy Charges to allies on Death "}c["Recover 100% of your maximum Life on use"]={nil,"Recover 100% of your maximum Life on use "}c["35% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=35}},nil}c["12% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["+30% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=30}},nil}c["15% increased Area of Effect for Skills used by Totems"]={{[1]={flags=0,keywordFlags=16384,name="AreaOfEffect",type="INC",value=15}},nil}c["Allies' Aura Buffs do not affect you"]={{[1]={flags=0,keywordFlags=0,name="AlliesAurasCannotAffectSelf",type="FLAG",value=true}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 20% increased Attack Speed"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 20% increased Attack Speed "}c["20% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit 10% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20}}," to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit 10% increased "}c["Adds 10 to 20 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=10},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=20}},nil}c["20% more Damage while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=20}}," while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby "}c["Adds 15 to 25 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=15},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=25}},nil}c["18% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["8% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=8}},nil}c["Unaffected by Temporal Chains"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="MORE",value=-100}},nil}c["45% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=45}},nil}c["Bathed in the blood of 8000 sacrificed in the name of Doryani"]={nil,"Bathed in the blood of 8000 sacrificed in the name of Doryani "}c["3% increased Character Size 6% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=3}}," Character Size 6% increased "}c["25% increased Knockback Distance"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",type="INC",value=25}},nil}c["25% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=25}},nil}c["10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["40% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["30% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=30}},nil}c["14% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=14}},nil}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned "}c["Adds 19 to 29 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=19},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=29}},nil}c["20% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["10% chance to gain a Power Charge on Kill 5% increased Projectile Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ProjectileSpeed",type="BASE",value=10}}," to gain a Power Charge on Kill 5% increased "}c["15% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage from Critical Strikes while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="INC",value=15}}," while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage while Elusive "}c["30% more Spell Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=2,keywordFlags=0,name="Damage",type="MORE",value=30}},nil}c["32% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=32}},nil}c["+1 to Level of Socketed Dexterity Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="dexterity",value=1}}},nil}c["Left ring slot: Projectiles from Spells cannot Chain"]={{[1]={[1]={num=1,type="SlotNumber"},flags=1026,keywordFlags=0,name="CannotChain",type="FLAG",value=true}},nil}c["Damage Penetrates 5% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=5}},nil}c["16% increased Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["Adds 8 to 16 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=8},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=16}},nil}c["15% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},nil}c["70% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["25% more Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="MORE",value=25}},nil}c["+800 Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=800}},nil}c["Gain 15 Mana per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["8% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=8}},nil}c["Gain 30 Mana per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["25% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=25}},nil}c[" Life per second for each Stage"]={nil," Life per second for each Stage "}c["+1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}},nil}c["+145 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=145}},nil}c["+210 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=210}},nil}c["35% increased Projectile Damage with Hits against Nearby Enemies"]={{[1]={flags=1024,keywordFlags=262144,name="Damage",type="INC",value=35}}," against Nearby Enemies "}c["60% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=60}},nil}c["Insufficient Mana doesn't prevent your Melee Attacks Your Physical Damage can Chill"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks Your Physical Damage can Chill "}c["10% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=10}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own "}c["15% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=15}},nil}c["20% more Damage taken if a Non-Vaal Guard Buff was lost Recently"]={{[1]={flags=0,keywordFlags=256,name="DamageTaken",type="MORE",value=20}}," if a Non- Guard Buff was lost Recently "}c["+1 to Melee Strike Range with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=524292,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy You take no Extra Damage from Critical Strikes while there is only one nearby Enemy"]={nil,"Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy You take no Extra Damage from Critical Strikes while there is only one nearby Enemy "}c["30% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=30}},nil}c["+4% Chance to Block Spell Damage while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=4}},nil}c["Adds 36 to 50 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=36},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=50}},nil}c["18% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=18}},nil}c["Mine Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=8192,name="ElementalPenetration",type="BASE",value=10}},nil}c["40% increased Critical Strike Chance with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["+5 to Maximum Virulence"]={{}," Maximum Virulence "}c["Recover 5% of Life when a Spirit Charge expires or is consumed"]={nil,"Recover 5% of Life when a Spirit Charge expires or is consumed "}c["10% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["Eldritch Battery"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Eldritch Battery"}},nil}c["10% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["40% less Minimum Physical Attack Damage 20% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-40}}," Minimum 20% more Maximum Physical Attack Damage "}c["225% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=225}},nil}c["160% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=160}},nil}c["600% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=600}},nil}c["263% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=263}},nil}c["280% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=280}},nil}c["Recover 3% of Maximum Mana on Kill 10% increased Scorching Ray beam length"]={nil,"Recover 3% of Maximum Mana on Kill 10% increased Scorching Ray beam length "}c["100% increased Critical Strike Chance against Enemies on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=100}},nil}c["145% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=145}},nil}c["10% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["Projectiles Pierce while Phasing"]={nil,"Projectiles Pierce while Phasing "}c["8% increased Physical Damage for each time you've Blocked in the past 10 seconds 80% increased Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyInPast10Sec"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}}," for each time you've Blocked in the past 10 seconds 80% increased Physical Damage "}c["10% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil}c["25% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil}c["+35 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=35}},nil}c["Adds 20 to 30 Physical Damage to Attacks if you've"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=30}}," if you've "}c["+6 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=6}},nil}c["25% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["400% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=400}},nil}c["12% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=12}},nil}c["80% less Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="MORE",value=-80}},nil}c["equal to 25% of Sacrificed Mana for 4 seconds"]={nil,"equal to 25% of Sacrificed Mana for 4 seconds "}c["Gain a Divine Charge on Hit"]={nil,"Gain a Divine Charge on Hit "}c["Adds 1 to 3 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=3}},nil}c["30% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil}c["+5% to Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=5}},nil}c["160% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=160}},nil}c["10% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=10}},nil}c["30% increased Melee Critical Strike Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["Grants Level 20 Aspect of the Crab Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="CrabAspect"}}},nil}c["20% less Damage taken if you have not been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-20}},nil}c["4% increased Attack Speed with Maces and Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["+250 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=250}},nil}c["+5% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil}c["20% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit"]={{}," to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit "}c["20% increased Effect of Auras on your Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=20}}}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 5% increased Damage per Frenzy Charge 5% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Multiplier",var="PowerCharge"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 5% increased 5% increased Damage "}c["Maximum Life becomes 1, Immune to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosInoculation",type="FLAG",value=true}},nil}c["30 Energy Shield gained for each Enemy Hit while affected by Discipline"]={nil,"30 Energy Shield gained for each Enemy Hit while affected by Discipline "}c["125 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=125}},nil}c["80% increased Critical Strike Chance against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=80}},nil}c["Socketed Gems are Supported by level 30 Generosity"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportGenerosity"}}},nil}c["10% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=10}},nil}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks You and nearby Allies have 8% increased Movement Speed "}c["Crimson Dance"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Crimson Dance"}},nil}c["+50 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=50}},nil}c["Adds 1 to 30 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=30}},nil}c["Socketed Gems are Supported by Level 18 Ice Bite"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportFrenzyChargeOnSlayingFrozenEnemy"}}},nil}c["Gain a Power Charge when you use a Vaal Skill"]={nil,"Gain a Power Charge when you use a Vaal Skill "}c["10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds"]={{}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds "}c["15% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil}c["30% more Bow Damage at Close Range while you have iron Reflexes"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=131076,keywordFlags=0,name="Damage",type="MORE",value=30}}," while you have iron Reflexes "}c["10% increased Attack Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["8% increased Attack and Cast Speed during Effect of any Mana Flask 10% increased Mana Recovery Rate during Effect of any Mana Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Speed",type="INC",value=8}}," of any Mana Flask 10% increased Mana Recovery Rate of any Mana Flask "}c["20% increased Damage per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," per Summoned 25% increased Effect of Buffs granted by your Golems per Summoned Golem "}c["15% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=15}},nil}c["Found Magic Items drop Identified"]={nil,"Found Magic Items drop Identified "}c["Recover 5% of Life when a Spirit Charge expires or is consumed 20% chance to gain a Spirit Charge on Kill"]={nil,"Recover 5% of Life when a Spirit Charge expires or is consumed 20% chance to gain a Spirit Charge on Kill "}c["20% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},nil}c["Purity of Ice has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Purity of Ice",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["+10% to Damage over Time Multiplier for Bleeding you inflict on Poisoned Enemies"]={{[1]={flags=0,keywordFlags=2097152,name="DotMultiplier",type="BASE",value=10}}," you inflict on Poisoned Enemies "}c["8% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["+2 to Level of Socketed Elemental Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="elemental",value=2}}},nil}c["Ignites you inflict deal Damage 8% faster 24% increased Fire Damage with Attack Skills"]={nil,"Ignites you inflict deal Damage 8% faster 24% increased Fire Damage with Attack Skills "}c["50% reduced Mana Reservation of Banner Skills 15% increased Effect of Non-Curse Auras from your Skills on Enemies"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-50}}," of Banner Skills 15% increased Effect of Non-Curse Auras from your Skills "}c["8% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["15% increased Attack and Movement Speed while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="Speed",type="INC",value=15},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Nearby Enemies cannot deal Critical Strikes"]={nil,"Nearby Enemies cannot deal Critical Strikes "}c["Grants level 10 Gluttony of Elements Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="VaalAuraElementalDamageHealing"}}},nil}c["10% Chance to Cast level 18 Summon Spectral Wolf on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=18,skillId="SummonRigwaldsPack"}}},nil}c["Minions have a 20% chance to Impale on Hit with Attacks"]={nil,"a 20% chance to Impale on Hit with Attacks "}c["Curse Enemies with level 10 Flammability on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,noSupports=true,skillId="Flammability"}}},nil}c["1% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["Has an additional Implicit Mod +30 to all Attributes"]={nil,"Has an additional Implicit Mod +30 to all Attributes "}c["2% increased Minion Duration per Zombie you own 12% increased Minion Damage per Spectre you own"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillType=21,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=2}}}}," per you own 12% increased Minion Damage per Spectre you own "}c["Regenerate 2% of Life per second if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Creates a Smoke Cloud on Rampage Gain Unholy Might for 3 seconds on Rampage"]={nil,"Creates a Smoke Cloud on Rampage Gain Unholy Might for 3 seconds on Rampage "}c["+30% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=30}},nil}c["+110 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=110}},nil}c["Adds 60 to 90 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=90}},nil}c["30% chance to Avoid being Chilled during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=30}},nil}c["20% reduced Reflected Physical Damage taken Enemies have -5% to Total Physical Damage Reduction against your Hits 4% chance to deal Double Damage +20 to Strength"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected Enemies have -5% to Total Physical Damage Reduction against your Hits 4% chance to deal Double Damage +20 to Strength "}c["25% chance to Avoid interruption from Stuns while Casting +20 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=25}}," to Avoid interruption from Stuns while Casting +20 to "}c["Passives granting Cold Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Cold Resistance or all Elemental Resistances in Radius "}c["Trigger Level 20 Bone Nova when you Kill a Bleeding Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TriggeredBoneNova"}}},nil}c["Trigger Level 15 Feast of Flesh every 5 seconds 220% increased Energy Shield"]={nil,"Trigger Level 15 Feast of Flesh every 5 seconds 220% increased Energy Shield "}c["Removes 1% of maximum Energy Shield on Kill Corrupted"]={nil,"Removes 1% of maximum Energy Shield on Kill Corrupted "}c["Shocks you inflict spread to other Enemies within a Radius of 15"]={nil,"Shocks you inflict spread to other Enemies within a Radius of 15 "}c["100% increased Global Armour when you have no Energy Shield 30% Chance to gain Unholy Might on Block for 3 seconds"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Armour",type="INC",value=100}}," when you have no Energy Shield 30% Chance to gain Unholy Might on Block for 3 seconds "}c["4% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=4}},nil}c["5% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=5}},nil}c["+25 Mana gained on Killing a Frozen Enemy"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=25}}," ing a Frozen Enemy "}c["4% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=4}},nil}c["Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds"]={nil,"Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds "}c["Adds 55 to 80 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=55},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=80}},nil}c["+2% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["215% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=215}},nil}c["30% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=30}},nil}c["275% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=275}},nil}c["Adds 27 to 38 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=27},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=38}},nil}c["12% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["7% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=7}},nil}c["+24 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=24}},nil}c["10% chance to Avoid being Stunned while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=10}},nil}c["+150 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=150}},nil}c["+5 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=5}},nil}c["8% increased Accuracy Rating with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["+1 to Melee range with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1}},nil}c["20% increased Damage with Hits and Ailments per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["+25% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["7% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=7}},nil}c["1% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["40% of Physical Damage Converted to Fire Damage while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=40}},nil}c["120 Energy Shield Regenerated per second while a Rare or Unique Enemy is Nearby"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=120}},nil}c["10% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["25% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["20% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["12% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["115% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=115}},nil}c["100% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=100}},nil}c["10% reduced Physical Damage taken over time"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenOverTime",type="INC",value=-10}},nil}c["Socketed Gems are Supported by level 1 Mana Leech"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportManaLeech"}}},nil}c["45% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=45}},nil}c["Adds 3 to 9 Lightning Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=3},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=9}},nil}c["+150 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=150}},nil}c["+1 to Melee Strike Range with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=4194308,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["10% increased Attack Speed if you have at least 600 Strength"]={{[1]={[1]={stat="Str",threshold=600,type="StatThreshold"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}}}},nil}c["25% chance that if you would gain Power Charges, you instead gain up to"]={{}," that if you would gain Power Charges, you instead gain up to "}c["10% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil}c["Attacks with this Weapon deal 80-120 added Chaos Damage against Enemies affected by at least 5 Poisons"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",threshold=5,type="MultiplierThreshold",var="PoisonStack"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=80},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",threshold=5,type="MultiplierThreshold",var="PoisonStack"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=120}},nil}c["+10% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=10}},nil}c["Enemies Chilled by you take 40% increased Burning Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireDamageTakenOverTime",type="INC",value=40}}}},nil}c["Minions Regenerate 0.5% Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}}}},nil}c["6% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=6}},nil}c["+14% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=14}},nil}c["38% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=38}},nil}c["to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds "}c["+28% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=28}},nil}c["Raised Zombies have +500 to maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=500}}}},nil}c["88% increased Damage with Poison if you have at least 300 Dexterity"]={{[1]={[1]={stat="Dex",threshold=300,type="StatThreshold"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=88}},nil}c["Summoned Holy Relics have 23% reduced Cooldown Recovery Speed"]={{[1]={[1]={skillName="Summon Holy Relic",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=-23}}}},nil}c["15% chance to Impale Enemies on Hit with Attacks 5% increased Impale Effect +20 to Strength"]={{[1]={flags=0,keywordFlags=65536,name="FlaskEffect",type="BASE",value=15}}," to Impale Enemies on Hit 5% increased Impale +20 to Strength "}c["20% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=20}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 15 Socketed Gems are Supported by level 20 Ignite Proliferation"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 15 Socketed Gems are Supported by level 20 Ignite Proliferation "}c["Creates Consecrated Ground on Critical Strike 50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"]={nil,"Creates Consecrated Ground on Critical Strike 50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike "}c["10% increased maximum Life if no Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="CorruptedItem"},flags=0,keywordFlags=0,name="Life",type="INC",value=10}},nil}c["+40 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=40}},nil}c["16% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=16}},nil}c["175% increased Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=175}},nil}c["20% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["16% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=16}},nil}c["15% of maximum Life taken as Chaos Damage per second"]={{[1]={[1]={div=1,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=0.15}},nil}c["10% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=10}},nil}c["Cannot be Shocked"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=100}},nil}c["+3 to Level of Socketed Lightning Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="lightning",value=3}}},nil}c["10% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit"]={{}," to gain an Endurance Charge when you Stun an Enemy with a Hit "}c["Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets "}c["10% reduced Enemy Stun Threshold with Bows"]={{[1]={flags=131076,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["You have Far Shot while you do not have Iron Reflexes"]={nil,"You have Far Shot while you do not have Iron Reflexes "}c["+30% to Critical Strike Multiplier if you've been Channelling for at least 1 second"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}}," if you've been Channelling for at least 1 second "}c["Adds 18 to 32 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=18},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=32}},nil}c["+21 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=21}},nil}c["12% increased Brand Activation frequency"]={{[1]={flags=0,keywordFlags=0,name="BrandActivationFrequency",type="INC",value=12}},nil}c["25% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=25}},nil}c["14% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=14}},nil}c["Adds 1 to 30 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=30}},nil}c["Haste Reserves no Mana"]={{[1]={[1]={skillId="Haste",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["20% chance to gain a Power Charge when you Block +6% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," to gain a Power Charge when you Block +6% Chance "}c["Your Critical Strike Multiplier is 300%"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="OVERRIDE",value=300}},nil}c["With at least 40 Dexterity in Radius, Barrage fires an additional 2 projectiles simultaneously on the first and final attacks"]={nil,"With at least 40 Dexterity in Radius, Barrage fires an additional 2 projectiles simultaneously on the first and final attacks "}c["15% more Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="MORE",value=15}},nil}c["40% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Nearby Allies have 15% increased Attack, Cast and Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=15},onlyAllies=true}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15},onlyAllies=true}}},nil}c["25% increased Attack and Cast Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["25% chance to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="AvianTornado"}}},nil}c["40% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=40}},nil}c["The increase to Physical Damage from Strength applies to Projectile Attacks as well as Melee Attacks"]={{[1]={flags=0,keywordFlags=0,name="IronGrip",type="FLAG",value=true}},nil}c["8% reduced Area Damage taken from Hits +30% to Critical Strike Multiplier against Burning Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},flags=512,keywordFlags=262144,name="DamageTaken",type="INC",value=-8}}," from Hits +30% to Critical Strike Multiplier "}c["+160 Dexterity Requirement"]={{[1]={flags=0,keywordFlags=0,name="DexRequirement",type="BASE",value=160}},nil}c["Your Hits can't be Evaded by Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil}c["5% increased Effect of Fortify on you"]={{[1]={flags=0,keywordFlags=0,name="FortifyEffectOnSelf",type="INC",value=5}},nil}c["16% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=16}},nil}c["20% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=20}},nil}c["Gain Onslaught for 10 seconds on Kill"]={nil,"Gain Onslaught for 10 seconds on Kill "}c["Adds Knockback to Melee Attacks during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["28% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=28}},nil}c["Minions have 10% increased Area of Effect if you have used a Minion Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="UsedMinionSkillRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["30% reduced Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-30},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=-30}},nil}c["+27% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=27}},nil}c["Minions have 35% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=35}}}},nil}c["Channelling Skills have -3 to Total Mana Cost"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-3}},nil}c["You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled"]={nil,"You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled "}c["50% chance to inflict Bleeding on Critical Strike with Attacks"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=65536,name="BleedChance",type="BASE",value=50}},nil}c["20% increased Flask Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=20}},nil}c["+3% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=3}},nil}c["Channelling Skills have 10% increased Attack Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["205% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=205}},nil}c["3% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["16% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=16}},nil}c["40% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil}c["16% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["0.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.6}},nil}c["+20% to Non-Ailment Chaos Damage over Time Multiplier Every second, inflict Withered on nearby Enemies for 15 seconds Nearby Hindered Enemies deal 15% reduced Damage over Time"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=20}}," Non-Ailment Every second, inflict Withered on nearby Enemies for 15 seconds Nearby Hindered Enemies deal 15% reduced Damage over Time "}c["Energy Shield Recharge is not interrupted by Damage if Recharge began Recently"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge began Recently "}c["+48 Life gained when you Block +20 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=48}}," gained when you Block +20 Mana gained when you Block "}c["Summoned Skeletons' hits can't be Evaded +2 to Maximum number of Skeletons"]={nil,"Summoned Skeletons' hits can't be Evaded +2 to Maximum number of Skeletons "}c["Trigger Level 20 Arcane Wake after Spending a total of 200 Mana"]={nil,nil}c["Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={nil,"Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield "}c["125% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=125}},nil}c["+8% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=8}},nil}c["If you've Warcried Recently, you and nearby allies have 10% increased Attack Speed"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil}c["+15 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=15}},nil}c["+32 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=32}},nil}c["20% increased Effect of Chill you inflict with Critical Strikes 20% increased Effect of Shock you inflict with Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20}}," you inflict with Critical Strikes 20% increased Effect of Shock you inflict with Critical Strikes "}c["40% increased Damage with Hits and Ailments against Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=40}},nil}c["50% increased Stun Duration against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="EnemyStunDuration",type="INC",value=50}},nil}c["Can Consume 4 Support Gems Has not Consumed any Gems"]={nil,"Can Consume 4 Support Gems Has not Consumed any Gems "}c["20% increased Physical Damage with Axes or Swords"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=4,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Immune to Freeze while affected by Purity of Ice 10% of Physical Damage taken as Cold Damage while affected by Purity of Ice"]={nil,"Immune to Freeze while affected by Purity of Ice 10% of Physical Damage taken as Cold Damage while affected by Purity of Ice "}c["300% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=300}},nil}c["15% increased Quantity of Items Dropped by Slain Frozen Enemies 50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Quantity of Items Dropped by Slain Frozen Enemies 50% increased Rarity of Items Dropped by Slain Shocked enemies "}c["62% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=62}},nil}c["+100% to Fire Resistance when Socketed with a Red Gem +100% to Cold Resistance when Socketed with a Green Gem"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=100}}," when Socketed with a Red Gem +100% to Cold Resistance when Socketed with a Green Gem "}c["20% increased Effect of Herald Buffs on you 10% reduced Mana Reservation of Herald Skills"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=20}}," of Herald Buffs on you 10% reduced Mana Reservation "}c["Spend Energy Shield before Mana for Skill Costs"]={{},nil}c["100% increased Physical Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="PhysicalDamage",type="INC",value=100}},nil}c["20% chance to Block Attacks if you've Blocked a Spell Recently"]={{[1]={[1]={type="Condition",var="BlockedSpellRecently"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["60% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=60}},nil}c["40% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=40}},nil}c["3% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=3},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=3}},nil}c["20% increased Melee Critical Strike Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["75% increased Effect of Shrine Buffs on you 50% increased Duration of Shrine Effects on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=75}}," of Shrine Buffs on you 50% increased Duration of Shrine Effects on you "}c["3% increased Attack Speed with Maces and Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge"]={nil,"and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge "}c["16% increased Projectile Attack Damage"]={{[1]={flags=1025,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["Enemies you Impale have -5% to Total Physical Damage Reduction against Impale Hits"]={nil,"Enemies you Impale have -5% to Total Physical Damage Reduction against Impale Hits "}c["+25% to all Elemental Resistances while you have at least 200 Strength"]={{[1]={[1]={stat="Str",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}},nil}c["+15% chance to Avoid Elemental Damage from Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=15}}," to Avoid from Hits "}c["Nearby Allies gain 40% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=40},onlyAllies=true}}},nil}c["25% chance to Blind Enemies on Hit"]={{}," to Blind Enemies on Hit "}c["10% increased Effect of Auras on your Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=10}}}},nil}c["4% additional Physical Damage Reduction if you've Warcried in the past 8 seconds"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}}," if you've Warcried in the past 8 seconds "}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating "}c["+15% to Critical Strike Multiplier with Claws or Daggers"]={{[1]={[1]={modFlags=786432,type="ModFlagOr"},flags=4,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Regenerate 0.6% of Life per second for each Raised Zombie 30% increased Mana Regeneration Rate per Raised Spectre"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.6}}}}," for each 30% increased per Raised Spectre "}c["Adds 98 to 140 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=140}},nil}c["+38% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=38}},nil}c["Radius: 18 Chills from your Hits always reduce Action Speed by at least 10%"]={nil,"Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% "}c["20% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage from Critical Strikes while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}," while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage while Elusive "}c["Gain a Divine Charge on Hit You gain Divinity for 10 seconds on reaching maximum Divine Charges"]={nil,"Gain a Divine Charge on Hit You gain Divinity for 10 seconds on reaching maximum Divine Charges "}c["+16% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=16}},nil}c["10% increased Stun Duration on Enemies per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=10}},nil}c["+25% Chaos Resistance when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=25}},nil}c["Adds 6 to 14 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=14}},nil}c["Skills that would Summon a Totem Summon two Totems instead"]={nil,"Skills that would Summon a Totem Summon two Totems instead "}c["20% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["Spells cast by Totems deal 25% increased Damage"]={nil,"Spells cast by Totems deal 25% increased Damage "}c["+45 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=45}},nil}c["Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Blinded Enemies "}c["30% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=30}},nil}c["+60% to Cold Resistance while affected by Herald of Ice"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofIce"},flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=60}},nil}c["80% increased Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyInPast10Sec"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=80}},nil}c["Cannot be Stunned while you have Ghost Shrouds 10% chance to Dodge Spell Hits if you have Energy Shield"]={nil,"Cannot be Stunned while you have Ghost Shrouds 10% chance to Dodge Spell Hits if you have Energy Shield "}c["Minions Regenerate 2.5% Life per Second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2.5}}}},nil}c["3% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Attack Skills fire an additional Projectile while wielding a Claw or Dagger 20% increased Projectile Attack Damage with Claws or Daggers"]={nil,"Attack Skills fire an additional Projectile while wielding a Claw or Dagger 20% increased Projectile Attack Damage with Claws or Daggers "}c["Enemies Chilled by your Hits are Shocked Enemies Shocked by your Hits are Chilled"]={nil,"Enemies Chilled by your Hits are Shocked Enemies Shocked by your Hits are Chilled "}c["Enemies Shocked by your Hits are Chilled"]={nil,"Enemies Shocked by your Hits are Chilled "}c["Adds 28 to 40 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=40}},nil}c["Socketed Gems are Supported by Level 20 Greater Volley"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportGreaterVolley"}}},nil}c["30% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=30},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=30},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=30}},nil}c["Raise Zombie does not require a Corpse"]={nil,"does not require a Corpse "}c["Movement Speed cannot be modified to below base value"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeedCannotBeBelowBase",type="FLAG",value=true}},nil}c["30% more chance to Evade Projectile Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="ProjectileEvadeChance",type="MORE",value=30}},nil}c["10% chance to Steal Power, Frenzy, and Endurance Charges on Hit"]={{}," to Steal Power, Frenzy, and Endurance Charges on Hit "}c["Blight has 30% increased Hinder Duration You cannot be Hindered"]={{[1]={[1]={skillName="Blight",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}}," Hinder You cannot be Hindered "}c["Moving while Bleeding doesn't cause you to take extra Damage 15% increased Movement Speed while Bleeding"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage 15% increased Movement Speed while Bleeding "}c["10% reduced Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-10}},nil}c["Immune to Burning Ground, Shocked Ground and Chilled Ground Regenerate 100 Life per second while moving"]={nil,"Immune to Burning Ground, Shocked Ground and Chilled Ground Regenerate 100 Life per second while moving "}c["+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped"]={{[1]={[1]={threshold=3,type="MultiplierThreshold",var="PrimordialItem"},flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=1}},nil}c["Raised Zombies deal 100% more Physical Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="MORE",value=100}}}},nil}c["Adds 35 to 65 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=35},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=65}},nil}c["6% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=6}},nil}c["With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike cannot choose Fire"]={nil,"With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike cannot choose Fire "}c["60% of Lightning Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToChaos",type="BASE",value=60}},nil}c["5% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=5}},nil}c["Adds 60 to 80 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=60},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=80}},nil}c["10% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge when you Hit a Rare or Unique Enemy "}c["4% increased Attack Speed with Swords"]={{[1]={flags=4194309,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["15% reduced Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=-15}},nil}c["Shocks nearby Enemies during Flask effect"]={nil,"Shocks nearby Enemies during Flask effect "}c["10% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=10}},nil}c["5% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=5}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand"]={{}," to gain aCharge on Kill "}c["20% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=20}},nil}c["20% of Physical Damage Converted to Lightning during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=20}},nil}c["10% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled"]={nil,"from Herald Skills deal 25% more Damage Your Aura Skills are Disabled "}c["30% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}c["+4% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=4}},nil}c["Attack Skills deal 8% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["You have no Life Regeneration"]={{[1]={flags=0,keywordFlags=0,name="NoLifeRegen",type="FLAG",value=true}},nil}c["Damage from your Critical Strikes cannot be Reflected"]={nil,"Damage from your Critical Strikes cannot be Reflected "}c["16% increased Critical Strike Chance with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritChance",type="INC",value=16}},nil}c["175% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=175}},nil}c["You are Shocked for 4 seconds on reaching Maximum Power Charges"]={nil,"You are Shocked for 4 seconds on reaching Maximum Power Charges "}c["138% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=138}},nil}c["+25 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=25}},nil}c["1% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}},nil}c["Nearby Enemies have 10% reduced Stun and Block Recovery"]={nil,"Nearby Enemies have 10% reduced Stun and Block Recovery "}c["40% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=40}},nil}c["20% chance to gain an Endurance Charge when you Block Extra gore"]={{}," to gain an Endurance Charge when you Block Extra gore "}c["+10% to Physical Damage over Time Multiplier while wielding an Axe or Sword"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=0,keywordFlags=0,name="PhysicalDotMultiplier",type="BASE",value=10}}," or Sword "}c["12% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["You have Zealot's Oath if you haven't been hit recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Zealot's Oath"}},nil}c["4% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Bow Skills have 20% increased Skill Effect Duration 10% increased Duration of Ailments inflicted while wielding a Bow"]={nil,"Bow Skills have 20% increased Skill Effect Duration 10% increased Duration of Ailments inflicted while wielding a Bow "}c["Dagger Attacks deal 8% increased Damage with Hits and Ailments"]={{[1]={flags=524288,keywordFlags=786432,name="Damage",type="INC",value=8}},nil}c["+900 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=900}},nil}c["Nearby enemies have -30% to Critical Strike Multiplier"]={nil,"Nearby enemies have -30% to Critical Strike Multiplier "}c["100% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=100}},nil}c["+1 to Maximum Energy Shield per 5 Armour on Equipped Shield"]={{[1]={[1]={div=5,stat="ArmourOnWeapon 2",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil}c["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth 150% increased Evasion Rating"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth 150% increased Evasion Rating "}c["Aspect of the Spider can inflict Spider's Web on Enemies an additional time"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Multiplier:SpiderWebApplyStackMax",type="BASE",value=1}}}},nil}c["+240 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=240}},nil}c["Cannot take Reflected Elemental Damage"]={nil,"Cannot take Reflected Elemental Damage "}c["100% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["200% increased Armour against Projectiles +25% additional Block Chance against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}}," against Projectiles +25% additional Block Chance against Projectiles "}c["+250 to Armour while affected by a Guard Skill Buff 10% chance when Hit for double Armour effect 0.5% of Maximum Life Regenerated per second while affected by a Guard Skill Buff"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=250}}," while affected by a Guard Skill Buff 10% chance when Hit for double Armour effect 0.5% of Maximum Life Regenerated per second while affected by a Guard Skill Buff "}c["Gain an Endurance Charge every second if you've been Hit Recently"]={nil,"Gain an Endurance Charge every second if you've been Hit Recently "}c["You have Consecrated Ground around you while stationary Regenerate 15 Mana per Second while on Consecrated Ground"]={nil,"You have Consecrated Ground around you while stationary Regenerate 15 Mana per Second while on Consecrated Ground "}c["Bow Skills have +10% to Damage over Time Multiplier Bow Skills have 20% increased Skill Effect Duration 10% increased Duration of Ailments inflicted while wielding a Bow"]={nil,"Bow Skills have +10% to Damage over Time Multiplier Bow Skills have 20% increased Skill Effect Duration 10% increased Duration of Ailments inflicted while wielding a Bow "}c["+13% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=13}},nil}c["5% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}},nil}c["15% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil}c["Cannot gain Energy Shield 50 Life Regenerated per second if you have at least 500 Maximum Energy Shield"]={nil,"Cannot gain Energy Shield 50 Life Regenerated per second if you have at least 500 Maximum Energy Shield "}c["Ignore all Movement Penalties from Armour"]={{[1]={flags=0,keywordFlags=0,name="Condition:IgnoreMovementPenalties",type="FLAG",value=true}},nil}c["Golems have 40% less Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-40}}}},nil}c["20% increased Critical Strike Chance with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["With at least 40 Dexterity in Radius, Ice Shot has 50% chance of Projectiles Piercing"]={nil,"With at least 40 Dexterity in Radius, Ice Shot has 50% chance of Projectiles Piercing "}c["75% chance to cause Enemies to Flee on use"]={{}," to cause Enemies to Flee on use "}c["Unaffected by Burning Ground while affected by Purity of Fire"]={nil,"Unaffected by Burning Ground while affected by Purity of Fire "}c["24% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=24}},nil}c["+75 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=75}},nil}c["20% increased Accuracy Rating with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["60% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["330% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=330}},nil}c["212% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=212}},nil}c["+14% to Critical Strike Multiplier with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritMultiplier",type="BASE",value=14}},nil}c["60% increased Critical Strike Chance with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["115% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=115}},nil}c["12% increased maximum Life if no Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="CorruptedItem"},flags=0,keywordFlags=0,name="Life",type="INC",value=12}},nil}c["275% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=275}},nil}c["+20 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=20}},nil}c["24% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=24}},nil}c["15% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=15}},nil}c["9% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=9}},nil}c["24% increased Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["90 Energy Shield Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=90}},nil}c["10% chance to gain a Power Charge when you Block +6% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}," to gain a Power Charge when you Block +6% Chance "}c["Cannot Block"]={{[1]={flags=0,keywordFlags=0,name="CannotBlockAttacks",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="CannotBlockSpells",type="FLAG",value=true}},nil}c["50% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["You are Shocked during Flask effect, causing 50% increased Damage taken 30% of Lightning Damage Leeched as Life during Flask effect"]={nil,"You are Shocked during Flask effect, causing 50% increased Damage taken 30% of Lightning Damage Leeched as Life during Flask effect "}c["10% chance to gain a Frenzy, Power or Endurance Charge on Kill Conduit"]={{}," to gain a Frenzy, Power or Endurance Charge on Kill Conduit "}c["12% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["5% chance to Avoid Fire Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=5}}," to Avoid from Hits "}c["40% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=40}},nil}c["50% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=50}},nil}c["You have Culling Strike against Cursed Enemies Curse Skills have 20% increased Skill Effect Duration"]={nil,"You have Culling Strike against Cursed Enemies Curse Skills have 20% increased Skill Effect Duration "}c["10% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge "}c["+20% to Damage over Time Multiplier for Ignite from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=4194304,name="DotMultiplier",type="BASE",value=20}},nil}c["20% increased Attack Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["150% increased Rarity of Items Dropped by Slain Magic Enemies 100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies 100% increased Quantity of Items Dropped by Slain Normal Enemies "}c["Adds 35 to 90 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=35},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=90}},nil}c["Your Physical Damage can Chill"]={{[1]={flags=0,keywordFlags=0,name="PhysicalCanChill",type="FLAG",value=true}},nil}c["Herald of Agony has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["Socketed Gems have 10% chance to cause Enemies to Flee on Hit Trigger Level 1 Abyssal Cry on Hit"]={{}," to cause Enemies to Flee on Hit Trigger Level 1on Hit "}c["30% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=30}},nil}c["your maximum number of Power Charges"]={nil,"your maximum number of Power Charges "}c["10% increased total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldLeechRate",type="INC",value=10}},nil}c["20% chance to Recover 10% of Maximum Mana when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," to Recover 10% of when you use a Skill "}c["-10% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-10}},nil}c["50% increased Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=50}},nil}c["you Spend at least 100 Mana to Use a Skill"]={nil,"you Spend at least 100 Mana to Use a Skill "}c["2% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["0.7% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.7}},nil}c["20% increased Cast Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=16,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage"]={nil,"You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage "}c["111% increased Duration of Ailments you inflict while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=111},[2]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=111},[3]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=111},[4]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=111},[5]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=111},[6]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=111}},nil}c["10% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["10% chance to Curse Enemies with a random Curse on Hit"]={{}," to Curse Enemies with a random Curse on Hit "}c["+24 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}c["Adds 98 to 178 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=178}},nil}c["35% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=35}},nil}c["+12 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=12}},nil}c["+33 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=33}},nil}c["60% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=60}},nil}c["Every second, Consume a nearby Corpse to Recover 5% of Life and Mana 10% more Damage taken if you haven't Consumed a Corpse Recently"]={nil,"Every second, Consume a nearby Corpse to Recover 5% of Life and Mana 10% more Damage taken if you haven't Consumed a Corpse Recently "}c["20% increased Mine Throwing Speed if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=20}},nil}c["Unaffected by Elemental Weakness while affected by Purity of Elements Immune to Ignite while affected by Purity of Fire"]={nil,"Unaffected by Elemental Weakness while affected by Purity of Elements Immune to Ignite while affected by Purity of Fire "}c["+12% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=12}},nil}c["Warcry Skills have 40% increased Area of Effect"]={nil,"Warcry Skills have 40% increased Area of Effect "}c["+96 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=96}},nil}c["50% increased Life Recovery Rate if you've taken Fire Damage from an Enemy Hit Recently Unaffected by Ignite"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=50}}," if you've taken Fire Damage from an Enemy Hit Recently Unaffected by Ignite "}c["Your Chaos Damage can Shock"]={{[1]={flags=0,keywordFlags=0,name="ChaosCanShock",type="FLAG",value=true}},nil}c["120% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=120}},nil}c["20% less Lightning Damage taken"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTaken",type="MORE",value=-20}},nil}c["1% chance to deal Double Damage per 4 Rage"]={{[1]={[1]={div=4,type="Multiplier",var="Rage"},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=1}},nil}c["200% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=200}},nil}c["30% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}c["You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed"]={nil,"You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed "}c["+6 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=6}},nil}c["Adds 75 to 358 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=358}},nil}c["14% increased Projectile Attack Damage"]={{[1]={flags=1025,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["While stationary, gain 10% increased Area of Effect every second, up to a maximum of 50%"]={nil,"While stationary, gain 10% increased Area of Effect every second, up to a maximum of 50% "}c["10% chance when Hit for double Armour effect Regenerate 0.5% of Life per second while affected by a Guard Skill Buff"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=10}}," when Hit for double effect Regenerate 0.5% of Life per second while affected by a Guard Skill Buff "}c["15% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}c["Regenerate 0.2% of Life per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}},nil}c["Nearby Hindered Enemies deal 15% reduced Damage over Time"]={nil,"Nearby Hindered Enemies deal 15% reduced Damage over Time "}c["15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity -5 to Total Mana Cost of Skills while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=15}}," to Recover 10% of when you use a Skill -5 to Total Mana Cost of Skills while affected by Clarity "}c["+25% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=25}},nil}c["8% increased Impale Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}}," Impale "}c["+175 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=175}},nil}c["+40% to Critical Strike Multiplier if Dexterity is higher than Intelligence"]={{[1]={[1]={type="Condition",var="DexHigherThanInt"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil}c["Fire Skills have a 25% chance to apply Fire Exposure on Hit Lightning Skills have a 25% chance to apply Lightning Exposure on Hit"]={nil,"a 25% chance to apply Fire Exposure on Hit Lightning Skills have a 25% chance to apply Lightning Exposure on Hit "}c["You gain Unholy Might for 10 seconds on Block"]={nil,"You gain Unholy Might for 10 seconds on Block "}c["2% increased Attack Speed with Staves"]={{[1]={flags=2097157,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["+5% chance to Evade Attacks"]={{[1]={flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=5}},nil}c["100% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=100}},nil}c["30% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="PhysicalDamage",type="MORE",value=30}},nil}c["For each Element you've been hit by Damage of Recently, 8% reduced Damage taken of that Element"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=-8},[2]={[1]={type="Condition",var="HitByColdDamageRecently"},flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=-8},[3]={[1]={type="Condition",var="HitByLightningDamageRecently"},flags=0,keywordFlags=0,name="LightningDamageTaken",type="INC",value=-8}},nil}c["You have Phasing if you have Blocked Recently"]={nil,"You have Phasing if you have Blocked Recently "}c["Regenerate 200 Energy Shield per Second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=200}},nil}c["10% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["30% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}},nil}c["With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike cannot choose Cold With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike deal 50% less Cold Damage"]={nil,"With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike cannot choose Cold With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike deal 50% less Cold Damage "}c["Adds 18 to 27 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=27}},nil}c["8% increased Attack Speed with Wands"]={{[1]={flags=8388613,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Socketed Gems are Supported by level 15 Increased Area of Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportIncreasedAreaOfEffect"}}},nil}c["2% of Life Regenerated per second if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Passives granting Fire Resistance or all Elemental Resistances in Radius also grant an equal chance to gain an Endurance Charge on Kill"]={nil,"Passives granting Fire Resistance or all Elemental Resistances in Radius also grant an equal chance to gain an Endurance Charge on Kill "}c["320% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=320}},nil}c["Trigger Commandment of Inferno on Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="EnchantmentOfInfernoOnKill4"}}},nil}c["10% reduced Enemy Stun Threshold with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of each Element"]={{[1]={flags=131072,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=110},[2]={flags=131072,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=110},[3]={flags=131072,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=110}},nil}c["10% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=10}},nil}c["Nearby Enemies are Hindered, with 25% reduced Movement Speed"]={nil,"Nearby Enemies are Hindered, with 25% reduced Movement Speed "}c["20% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=20}},nil}c["You and nearby Allies have +15% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}}}},nil}c["20% chance to Recover 10% of Maximum Mana when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," to Recover 10% of when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana "}c["Has 2 Sockets"]={{[1]={flags=0,keywordFlags=0,name="SocketCount",type="BASE",value=2}},nil}c["Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["5% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["Celestial Footprints Shaper Item"]={nil,"Celestial Footprints Shaper Item "}c["Weapons you Animate create an additional copy"]={nil,"Weapons you Animate create an additional copy "}c["+5% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil}c["+1 to Level of Socketed Melee Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="melee",value=1}}},nil}c["20% chance to gain a Power Charge when you Block"]={{}," to gain a Power Charge when you Block "}c["12% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Minions have +5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}}}},nil}c["8% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["1% less Damage taken per Grasping Vine"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-1}}," per Grasping Vine "}c["6% increased Accuracy Rating with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["Minions deal 9 to 15 additional Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=9}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=15}}}},nil}c["Projectiles gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets"]={{[1]={[1]={ramp={[1]={[1]=35,[2]=0},[2]={[1]=70,[2]=1}},type="DistanceRamp"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["0.5% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["100% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=100}},nil}c["20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge when you Hit a Rare or Unique Enemy "}c["Nearby Allies deal 30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=30},onlyAllies=true}}},nil}c["+3 to Level of Socketed Warcry Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="warcry",value=3}}},nil}c["50% increased Effect of Socketed Jewels"]={{[1]={flags=0,keywordFlags=0,name="SocketedJewelEffect",type="INC",value=50}},nil}c["You have no Armour or Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="MORE",value=-100},[2]={flags=0,keywordFlags=0,name="EnergyShield",type="MORE",value=-100}},nil}c["100% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=100}},nil}c["20% increased Spell Damage while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["10% increased Physical Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["15% chance to gain a Flask Charge when you deal a Critical Strike 50% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike 50% chance to gain a Flask Charge when you deal a Critical Strike "}c["-1 Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=-1}},nil}c["Raised Zombies have 5% chance to Taunt Enemies on Hit"]={{}," to Taunt Enemies on Hit "}c["27% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=27}},nil}c["14% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=14}},nil}c["Curse Enemies with Temporal Chains on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="TemporalChains"}}},nil}c["Raise Zombie does not require a Corpse Your Raised Zombies count as Corpses"]={nil,"does not require a Corpse Your Raised Zombies count as Corpses "}c["10% increased Effect of Arcane Surge on you per 200 Mana spent Recently, up to 50% 10% chance to gain Arcane Surge when you Kill an Enemy"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}}," of Arcane Surge on you per 200 Mana spent Recently, up to 50% 10% chance to gain Arcane Surge when you Kill an Enemy "}c["15% more Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=15}},nil}c["Cold-only Splash Damage to surrounding targets"]={nil,"Cold-only Splash Damage to surrounding targets "}c["Minions Leech 5% of Damage as Life against Poisoned Enemies"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=0,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=5}}}},nil}c["+1% to Chaos Resistance per Poison on you"]={{[1]={[1]={type="Multiplier",var="PoisonStack"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=1}},nil}c["10% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=10}},nil}c["2% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}},nil}c["155% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=155}},nil}c["30% increased Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["20% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["Channelling Skills deal 12% increased Attack Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Triggers Level 20 Fire Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="FireAegis"}}},nil}c["+1 to maximum number of Golems"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=1}},nil}c["50% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil}c["20% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["2% chance to Avoid Elemental Damage when Hit per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=2}}," to Avoid when Hit "}c["Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks "}c["40% reduced Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-40}},nil}c["5% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["30% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil}c["20% reduced Chill Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=-20}}," on You "}c["120% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=120}},nil}c["Attack Projectiles Return to you from final Target Returning Projectiles Pierce all Targets"]={nil,"Attack Projectiles Return to you from final Target Returning Projectiles Pierce all Targets "}c["+30% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Adds 2 to 3 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=2},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=3}},nil}c["-5% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=-5},[2]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=-5}},nil}c["1% increased Lightning Damage per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=1}},nil}c["30% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["+12% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=12}},nil}c["+12% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=12}},nil}c["25% chance to Scorch Enemies Cannot inflict Ignite"]={{}," to Scorch Enemies Cannot inflict Ignite "}c["+25% to Critical Strike Multiplier with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["+2 to Maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=2}},nil}c["30% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["10% increased Brand Attachment range"]={{}," Brand Attachment range "}c["Socketed Gems are supported by level 25 Melee Splash"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=25,skillId="SupportMeleeSplash"}}},nil}c["Adds 32 to 42 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=32},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=42}},nil}c["3% increased Attack Speed for each Map Item Modifier affecting the Area"]={{[1]={flags=513,keywordFlags=0,name="Speed",type="INC",value=3}}," for each Map Item Modifier affecting the "}c["Gems can be Socketed in this Item ignoring Socket Colour Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour Gems Socketed in Red Sockets have +1 to Level "}c["You cannot Recharge Energy Shield"]={nil,"You cannot Recharge Energy Shield "}c["10% increased Critical Strike Chance with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}c["25% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=25}},nil}c["190% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=190}},nil}c["+4% chance to Evade Attack Hits if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=4}},nil}c["Minions have 12% increased Attack and Cast Speed if you or your Minions have Killed Recently"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=12}}}}," if you or your Minions have Killed Recently "}c["Gain Chilling, Shocking and Igniting Conflux for 2 seconds"]={{},nil}c["Reflects 100 to 150 Physical Damage to Melee Attackers"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers "}c["Curse Enemies with level 5 Vulnerability on Block"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=5,noSupports=true,skillId="Vulnerability"}}},nil}c["You cannot be Frozen for 3 seconds after being Frozen"]={nil,"You cannot be Frozen for 3 seconds after being Frozen "}c["Minions have +10% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}}}},nil}c["Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="EnduranceChargeOnMeleeStun"}}},nil}c["310% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=310}},nil}c["40% chance to Poison on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=40}},nil}c["230% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=230}},nil}c["15% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=15}}}},nil}c["10% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["5% chance to Impale Enemies on Hit with Attacks"]={{}," to Impale Enemies on Hit "}c["Your Cold Damage can Ignite"]={{[1]={flags=0,keywordFlags=0,name="ColdCanIgnite",type="FLAG",value=true}},nil}c["+15% to Critical Strike Multiplier with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Effects granted for having Rage are Doubled Cannot be Stunned while you have at least 25 Rage"]={nil,"Effects granted for having Rage are Doubled Cannot be Stunned while you have at least 25 Rage "}c["25% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=25}},nil}c["Golems have +1000 to Armour"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}}},nil}c["With at least 40 Strength in Radius, Cleave grants Fortify on Hit"]={nil,"With at least 40 Strength in Radius, Cleave grants Fortify on Hit "}c["175% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=175}},nil}c["4% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=4}},nil}c["10% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil}c["30% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=30}},nil}c["8% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=8}},nil}c["+10% to Damage over Time Multiplier for Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="DotMultiplier",type="BASE",value=10}},nil}c["Trigger Level 5 Rain of Arrows when you Attack with a Bow"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=5,skillId="RainOfArrows"}}},nil}c["10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["10% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=10}},nil}c["Spectres have 100% increased maximum Life"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=100}}}},nil}c["2% additional Chance to receive a Critical Strike"]={{}," to receive a Critical Strike "}c["50% chance to avoid Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=50}},nil}c["15% reduced Spark Duration"]={{[1]={[1]={skillName="Spark",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-15}},nil}c["Left ring slot: 100% increased Mana Regeneration Rate"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=100}},nil}c["40% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=40}},nil}c["50% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=50}},nil}c["5% chance to Dodge Attack and Spell Hits while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5},[2]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=5}},nil}c["Gain 5 Souls for Vaal Skills on Rampage Kills grant an additional Vaal Soul if you have Rampaged Recently"]={nil,"Gain 5 Souls for Vaal Skills on Rampage Kills grant an additional Vaal Soul if you have Rampaged Recently "}c["5% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=5}},nil}c["-10% to maximum Block Chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=-10}},nil}c["+3% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=3}}," Non-Ailment "}c["Channelling Skills have 3% increased Attack and Cast Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["20% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Hits with this Weapon deal 45% increased Damage to Shocked Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Shocked"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=45}},nil}c["50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills"]={{[1]={flags=0,keywordFlags=262144,name="FlaskEffect",type="MORE",value=50}}," of Herald Buffs on you 100% more Damage from Herald Skills "}c["Regenerate 1% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["12% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=12}},nil}c["Recover 5% of Maximum Life on Kill"]={nil,"Recover 5% of Maximum Life on Kill "}c["Nearby Allies' spells have Culling Strike Nearby Allies have Culling Strike"]={nil,"Nearby Allies' spells have Culling Strike Nearby Allies have Culling Strike "}c["Socketed Curse Skills ignore Curse Limit +40 to Intelligence"]={nil,"Socketed Curse Skills ignore Curse Limit +40 to Intelligence "}c["25% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=25}},nil}c["25% reduced Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-25}},nil}c["+30 Life gained on Killing Ignited Enemies"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=30}}," ing Ignited Enemies "}c["Recover 75% of your maximum Life on use"]={nil,"Recover 75% of your maximum Life on use "}c["8% increased Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["Channelling Skills deal 8% increased Attack Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["50% increased Duration of Shrine Effects on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}}," of Shrine Effects on you "}c["-1 to maximum number of Summoned Totems."]={{[1]={flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=-1}},nil}c["0.4% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.4}},nil}c["Grants level 15 Envy Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="Envy"}}},nil}c["Minions Recover 2% of their Life when they Block"]={nil,"Recover 2% of their Life when they Block "}c["Minions have 20% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=20}}}},nil}c["+3% to Damage over Time Multiplier for Poison"]={{[1]={flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=3}},nil}c["Socketed Gems deal 63 to 94 additional Fire Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=63}}},[2]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=94}}}},nil}c["Enemies Chilled by you take 100% increased Burning Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireDamageTakenOverTime",type="INC",value=100}}}},nil}c["Adds 1 to 230 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=230}},nil}c["Adds 10 to 167 Lightning Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=10},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=167}},nil}c["1% additional Physical Damage Reduction per Minion, up to 10%"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Minion, up to 10% "}c["Regenerate 40 Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=40}},nil}c["Summoned Raging Spirits have 100% increased maximum Life"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=100}}}},nil}c["+38 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=38}},nil}c["You gain Onslaught for 1 second per Endurance Charge when Hit You gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 1 second per Endurance Charge when Hit You gain Onslaught for 2 second per Endurance Charge when Hit "}c["Unaffected by Vulnerability while affected by Determination"]={nil,"Unaffected by Vulnerability while affected by Determination "}c["You cannot have non-Golem Minions 25% reduced Golem Size"]={nil,"You cannot have non-Golem Minions 25% reduced Golem Size "}c["100% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=100}},nil}c["20% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["20% increased Raised Zombie Size Raised Zombies have 5% chance to Taunt Enemies on Hit"]={{}," Size Raised Zombies have 5% chance to Taunt Enemies on Hit "}c["14% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["5% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=5},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=5}},nil}c["10% increased Stun Duration with Two Handed Melee Weapons on Enemies"]={{[1]={flags=301989892,keywordFlags=0,name="EnemyStunDuration",type="INC",value=10}},nil}c["Enemies can have 1 additional Curse"]={{[1]={flags=0,keywordFlags=0,name="EnemyCurseLimit",type="BASE",value=1}},nil}c["31% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=31}},nil}c["+23% to all Elemental Resistances while you have at least 200 Strength"]={{[1]={[1]={stat="Str",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=23}},nil}c["20% more Damage with Ignite"]={{[1]={flags=0,keywordFlags=4194304,name="Damage",type="MORE",value=20}},nil}c["Adds 10 to 12 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},nil}c["Adds 22 to 32 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=32}},nil}c["Adds 14 to 22 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=22}},nil}c["20% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=20}},nil}c["40% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=40}},nil}c["15% increased Armour while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Armour",type="INC",value=15}},nil}c["+16% to Critical Strike Multiplier with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=16}},nil}c["15% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=15}},nil}c["+125 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=125}},nil}c["20% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil}c["1% increased Attack Damage per 450 Evasion Rating"]={{[1]={[1]={div=450,stat="Evasion",type="PerStat"},flags=1,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["10% reduced Trap Duration"]={{[1]={flags=0,keywordFlags=0,name="TrapDuration",type="INC",value=-10}},nil}c["Enemies you Attack Reflect 100 Physical Damage to you +2 to Weapon range"]={nil,"Enemies you Attack Reflect 100 Physical Damage to you +2 to Weapon range "}c["3% reduced Damage taken per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["3 Life regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=3}},nil}c["+20% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["You and nearby allies have 20% increased Attack, Cast and Movement"]={{}," Attack, Cast and Movement "}c["100% increased Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=100}},nil}c["10% chance to double Stun Duration 24% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="EnemyStunDuration",type="BASE",value=10}}," to double 24% increased Damage "}c["10% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["30% chance to gain a Power Charge when you Stun Gain Unholy Might for 4 seconds on Critical Strike"]={{}," to gain a Power Charge when you Stun Gain Unholy Might for 4 seconds "}c["20% increased Area Damage while wielding a Two Handed Melee Weapon"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=20}}," while wielding a Two Handed Melee Weapon "}c["Removes all mana. Spend Life instead of Mana for Skills"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="MORE",value=-100},[2]={flags=0,keywordFlags=0,name="BloodMagic",type="FLAG",value=true}},nil}c["300% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=300}},nil}c["10% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}},nil}c["220% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=220}},nil}c["+4% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["245% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=245}},nil}c["Nearby Enemies are Chilled"]={nil,"Nearby Enemies are Chilled "}c["Movement Skills cost no Mana"]={{[1]={flags=0,keywordFlags=8,name="ManaCost",type="MORE",value=-100}},nil}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance 20% increased Elemental Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8192,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-10}}," Reflected Damage Penetrates 5% Elemental Resistance 20% increased Elemental Damage "}c["and nearby Allies have +1000 to Armour You and nearby Allies deal 6 to 12 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},"and nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["Adds 1 to 120 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=120}},nil}c["5% chance to Blind Enemies on Hit with Attacks"]={{}," to Blind Enemies on Hit "}c["Cannot Block Spells"]={{[1]={flags=0,keywordFlags=0,name="CannotBlockSpells",type="FLAG",value=true}},nil}c["Grants Level 15 Envy Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="Envy"}}},nil}c["+14 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=14}},nil}c["25% increased Critical Strike Chance with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["6% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["6% increased Attack and Cast Speed per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=6}}," per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds "}c["Cannot be Shocked while Chilled"]={nil,"Cannot be Shocked while Chilled "}c["22% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=22}},nil}c["2% chance to Dodge Attacks per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=2}},nil}c["Adds 1 to 4 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=4}},nil}c["+2 to Level of Socketed Bow Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="bow",value=2}}},nil}c["20% chance to gain an Endurance Charge when you Block +4% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," to gain an Endurance Charge when you Block +4% Chance "}c["Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill"]={nil,"Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill "}c["4% additional Physical Damage Reduction if you've Warcried in the past 8 seconds 4% chance to deal Double Damage if you've Warcried in the past 8 seconds"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}}," if you've Warcried in the past 8 seconds 4% chance to deal Double Damage if you've Warcried in the past 8 seconds "}c["20% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=20}},nil}c["Your Damaging Hits always Stun Enemies that are on Full Life"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life "}c["25% chance to Trigger level 20 Animate Weapon on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="AnimateWeapon"}}},nil}c["Trigger a Socketed Bow Skill when you Attack with a Bow"]={nil,"Trigger a Socketed Bow Skill when you Attack with a Bow "}c["80% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=80}},nil}c["20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block "}c["8% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=8}},nil}c["0.4% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.4}},nil}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks "}c["6% increased Attack Speed with Swords"]={{[1]={flags=4194309,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["30% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=30}},nil}c["Increases and Reductions to Light Radius also apply to Accuracy"]={{[1]={flags=0,keywordFlags=0,name="LightRadiusAppliesToAccuracy",type="FLAG",value=true}},nil}c["20% increased Attack and Movement Speed with Her Blessing"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}," with Her Blessing "}c["+75% to Critical Strike Multiplier during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=75}},nil}c["12% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=12}},nil}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground "}c["3% increased Experience gain 2% increased Experience gain"]={{}," Experience gain 2% increased Experience gain "}c["Attack Skills deal 6% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=6}},nil}c["Minions Regenerate of 1% Life per second"]={nil,"Regenerate of 1% Life per second "}c["Attack Skills deal 8% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["With at least one nearby corpse, you and nearby Allies deal 10% more Damage"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyCorpse"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}}}},nil}c["25% increased Effect of Buffs granted by Socketed Golem Skills"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}}}},nil}c["You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["5% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=5}},nil}c["1% increased Cold Damage per 25 Intelligence"]={{[1]={[1]={div=25,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=1}},nil}c["20% chance to Avoid being Stunned while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=20}},nil}c["Celestial Footprints"]={nil,"Celestial Footprints "}c["10% of Physical Damage taken as Fire Damage while affected by Purity of Fire"]={{[1]={[1]={type="Condition",var="AffectedByPurityofFire"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=10}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam "}c["Adds 235 to 290 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=235},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=290}},nil}c["25% increased Brand Activation Frequency if you haven't used a Brand Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="BrandActivationFrequency",type="INC",value=25}}," if you haven't used a Brand Skill Recently "}c["75% increased Attack Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="CritChance",type="INC",value=75}},nil}c["-6 to Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-6}},nil}c["+25% to Damage over Time Multiplier for Poison"]={{[1]={flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=25}},nil}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["12% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=12}},nil}c["+10 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["12% increased Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["12% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil}c["80% increased Critical Strike Chance for Attacks"]={{[1]={flags=1,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["-100 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=-100}},nil}c["20% increased Accuracy Rating with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["Nearby Allies have 30% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30},onlyAllies=true}}},nil}c["10% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["+6% Chance to Block Spell Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil}c["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier "}c["100% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground "}c["1% additional Physical Damage Reduction per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30%"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30% "}c["Attack Skills deal 30% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["6% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["30% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=30}},nil}c["Trigger level 10 Consecrate when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="TriggeredConsecrate"}}},nil}c["10% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10}},nil}c["Summoned Skeletons have 10% chance to Wither Enemies for 2 seconds on Hit"]={nil,"Summoned Skeletons have 10% chance to Wither Enemies for 2 seconds on Hit "}c["15% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=15}},nil}c["+20% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=20}},nil}c["20% chance to Maim on Hit 20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}}," to Maim on Hit 20% chance "}c["+12% to Damage over Time Multiplier for Ailments from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=2048,keywordFlags=0,name="DotMultiplier",type="BASE",value=12}},nil}c["50% chance to gain a Power Charge on Killing a Frozen Enemy Adds 10 to 20 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="ColdDamage",type="BASE",value=50}}," to gain a Power Charge on Killing a Frozen Enemy Adds 10 to 20 to s "}c["+4% Chance to Block Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=4}},nil}c["+14 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=14}},nil}c["Cannot be Stunned by Attacks if your other Ring is an Elder Item 20% chance to Trigger Level 20 Tentacle Whip on Kill"]={nil,"Cannot be Stunned by Attacks if your other Ring is an Elder Item 20% chance to Trigger Level 20 Tentacle Whip on Kill "}c["Enemies affected by your Spider's Webs have -10% to All Resistances"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={threshold=1,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-10}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={threshold=1,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-10}}}},nil}c["You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead"]={nil,"You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead "}c["+15% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=15}},nil}c["6% increased Area of Effect per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=6}},nil}c["+40% to Critical Strike Multiplier against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="CritMultiplier",type="BASE",value=40}},nil}c["Minions have 15% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=15}}}},nil}c["1% additional Physical Damage Reduction per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% Minions have 20% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% Minions have 20% more Maximum Life "}c["4% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=4}},nil}c["+5% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["50% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-50}},nil}c["Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"]={nil,"Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth "}c["20% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil}c["30% chance to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently"]={{}," to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second "}c["Grants Level 20 Aspect of the Cat Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="CatAspect"}}},nil}c["22% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=22}},nil}c["Single-target Melee attacks deal Splash Damage to surrounding targets 20% increased Area of Effect"]={nil,"Single-target Melee attacks deal Splash Damage to surrounding targets 20% increased Area of Effect "}c["Adds 1 to 65 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=65}},nil}c["+60% to Lightning Resistance while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=60}},nil}c["Gain a Power Charge on non-Critical Strike"]={nil,"Gain a Power Charge on non-Critical Strike "}c["Minions have 5% additional chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5}}}},nil}c["Minions have 4% additional chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=4}}}},nil}c["12% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=12}},nil}c["Gain 10% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=10}},nil}c["30% chance to Poison on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=30}},nil}c["113% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=113}},nil}c["+12% to Critical Strike Multiplier with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["25% increased Effect of Buffs granted by your Golems for each Summoned Golem"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}}," for each Summoned "}c["450% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=450}},nil}c["Curses in this item are reflected back to you"]={nil,"Curses in this item are reflected back to you "}c["155% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=155}},nil}c["20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil}c["5% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=5}},nil}c["10.0 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=10}},nil}c["6% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-6}},nil}c["Regenerate 0.3% of Mana per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegenPercent",type="BASE",value=0.3}},nil}c["25% more chance to Evade Projectile Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="ProjectileEvadeChance",type="MORE",value=25}},nil}c["-20 Fire Damage taken when Hit"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenWhenHit",type="BASE",value=-20}},nil}c["2% increased Intelligence for each Unique Item Equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,keywordFlags=0,name="Int",type="INC",value=2}},nil}c["40% increased Effect of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10%"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=40}}," of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10% "}c["Golems have 38% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=38}}}},nil}c["20% increased Damage while you have a Summoned Golem 30% increased Effect of Buffs granted by your Golems Golems have 15% increased Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," while you have a Summoned 30% increased Effect of Buffs granted by your Golems Golems have 15% increased Maximum Life "}c["16% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=16}},nil}c["25% chance to Curse un-cursed Enemies with Enfeeble on Hit"]={{}," to Curse un-cursed Enemies withon Hit "}c["Fire Skills have a 25% chance to apply Fire Exposure on Hit"]={nil,"a 25% chance to apply Fire Exposure on Hit "}c["Axe Attacks deal 30% increased Damage with Hits and Ailments"]={{[1]={flags=65536,keywordFlags=786432,name="Damage",type="INC",value=30}},nil}c["50% reduced Experience gain"]={{}," Experience gain "}c["+40% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=40}},nil}c["20% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned "}c["26% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=26}},nil}c["Unaffected by Frostbite while affected by Purity of Ice Immune to Shock while affected by Purity of Lightning"]={nil,"Unaffected by Frostbite while affected by Purity of Ice Immune to Shock while affected by Purity of Lightning "}c["4% increased Brand Activation frequency"]={{[1]={flags=0,keywordFlags=0,name="BrandActivationFrequency",type="INC",value=4}},nil}c["Gain Immunity to Physical Damage for 1.5 seconds on Rampage Rampage"]={nil,"Gain Immunity to Physical Damage for 1.5 seconds on Rampage Rampage "}c["Gains no Charges During effect of any Soul Ripper Flask"]={nil,"Gains no Charges During effect of any Soul Ripper Flask "}c["10% increased Effect of your Curses if you've spent 200 total Mana Recently"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}}," if you've spent 200 total Mana Recently "}c["+24 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24}},nil}c["Projectiles Pierce 5 additional Targets while you have Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=5}},nil}c["+250 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=250}},nil}c["5% increased Impale Effect +20 to Strength"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=5}}," Impale +20 to Strength "}c["+0 seconds to Avian's Might Duration"]={{[1]={[1]={skillName="Aspect of the Avian",type="SkillName"},flags=0,keywordFlags=0,name="PrimaryDuration",type="BASE",value=0}},nil}c["+35 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=35}},nil}c["30% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["10% increased Attack and Cast Speed while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["18% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=18}},nil}c["80% increased Critical Strike Chance if you haven’t Blocked Recently"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}}," if you haven’t Blocked Recently "}c["Nearby Allies' Action Speed cannot be modified to below base value Nearby Enemies cannot deal Critical Strikes"]={nil,"Nearby Allies' Action Speed cannot be modified to below base value Nearby Enemies cannot deal Critical Strikes "}c["+8 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=8},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=8}},nil}c["-5 to Total Mana Cost of Skills while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-5}},nil}c["15% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=15}},nil}c["30% increased total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldLeechRate",type="INC",value=30}},nil}c["15% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=15}},nil}c["4% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["20% reduced Reflected Physical Damage taken 4% chance to deal Double Damage +20 to Strength"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected 4% chance to deal Double Damage +20 to Strength "}c["+10% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=10}},nil}c["0.5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.5}},nil}c["+5% chance to Evade Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=5}},nil}c["+10 to maximum Divine Charges Gain a Divine Charge on Hit"]={{}," maximum Divine Charges Gain a Divine Charge on Hit "}c["25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain an Endurance Charge on Kill 10% more 10% reduced Physical Damage taken while at maximum Endurance Charges "}c["8% reduced Elemental Damage taken while at Maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-8}},nil}c["Vaal Skills have 25% reduced Soul Cost during effect Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=256,name="Duration",type="INC",value=-25}}," Soul Cost s used have 40% reduced Soul Gain Prevention "}c["Arrows that Pierce have 50% chance to cause Bleeding"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=1025,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["100% more Critical Strike Chance against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="CritChance",type="MORE",value=100}},nil}c["15% increased Critical Strike Chance with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["+18 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=18}},nil}c["30% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=30},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=30},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=30}},nil}c["+2 to Level of Socketed Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="all",value=2}}},nil}c["40% reduced Freeze Duration on you"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=-40}}," on you "}c["10% increased Projectile Attack Damage"]={{[1]={flags=1025,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["60% increased Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=60}},nil}c["14% increased Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["Attack Skills deal 24% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["Attack Skills deal 25% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["+12% to Critical Strike Multiplier with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["Attack Skills deal 20% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["20% increased Damage for each Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Summoned "}c["Culling Strike Gain 1 Rage on Critical Hit with attacks, no more than once every 0.5 seconds"]={nil,"Culling Strike Gain 1 Rage on Critical Hit with attacks, no more than once every 0.5 seconds "}c["Purity of Elements has 30% increased Aura Effect"]={{[1]={[1]={skillName="Purity of Elements",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["50% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=50}},nil}c["15% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=15}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["+30% to Critical Strike Multiplier with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Zealot's Oath during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ZealotsOath",type="FLAG",value=true}},nil}c["175% increased Critical Strike Chance for Spells if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=175}},nil}c["+160 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=160}},nil}c["+15% to Critical Strike Multiplier with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["+5% Chance to Block Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil}c["33% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=33}},nil}c["50% chance to Avoid being Frozen"]={{[1]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=50}},nil}c["Socketed Curse Skills ignore Curse Limit"]={nil,"Socketed Curse Skills ignore Curse Limit "}c["20% increased Damage with Hits and Ailments per Freeze, Shock and Ignite on Enemy"]={{[1]={[1]={type="Multiplier",var="FreezeShockIgniteOnEnemy"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["Attack Skills deal 8% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["Can have up to 1 additional Totem summoned at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["+8% Chance to Block Projectile Attack Damage +4% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}}," Projectile Attack Damage +4% Chance to Block Attack Damage "}c["+1000 Armour while you do not have Avatar of Fire +2000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}," while you do not have Avatar of Fire +2000 Armour while you do not have Avatar of Fire "}c["+25% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["Grants Level 25 Purity of Lightning Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="LightningResistAura"}}},nil}c["15% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-15}},nil}c["30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy Recover 100 Life when your Trap is triggered by an Enemy"]={{[1]={flags=0,keywordFlags=4096,name="Life",type="BASE",value=30}}," to gain Phasing for 4 seconds when your is triggered by an Enemy Recover 100 when your Trap is triggered by an Enemy "}c["30% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=30}},nil}c["Adds 1 to 6 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=6}},nil}c["Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies"]={nil,"Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies "}c["20% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["30% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}}}},nil}c["100% reduced Despair Mana Reservation"]={{[1]={[1]={skillName="Despair",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["120% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=120}},nil}c["20% increased Damage with Hits and Ailments against Enemies affected by Ailments 20% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=786432,name="Damage",type="INC",value=20}}," against Enemies affected by Ailments 20% increased Effect of Non-Damaging Ailments "}c["25% increased Elemental Damage with Attack Skills per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=25}},nil}c["12% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["10% chance to gain Elusive on Kill"]={{}," to gain Elusive on Kill "}c["200 Mana spent Recently, up to 50% 10% chance to gain Arcane Surge when you Kill an Enemy"]={nil,"200 Mana spent Recently, up to 50% 10% chance to gain Arcane Surge when you Kill an Enemy "}c["With at least 40 Strength in Radius, Ground Slam has a 50% increased angle With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 50% increased angle With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy "}c["With 40 Intelligence in Radius, Glacial Cascade has an additional Burst"]={nil,"With 40 Intelligence in Radius, Glacial Cascade has an additional Burst "}c["+68 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=68}},nil}c["With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"]={nil,"With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds "}c["Enemies you Curse are Unnerved"]={nil,"Enemies you Curse are Unnerved "}c["Can Consume 4 Support Gems"]={nil,"Can Consume 4 Support Gems "}c["Transfiguration of Mind"]={{[1]={flags=0,keywordFlags=0,name="TransfigurationOfMind",type="FLAG",value=true}},nil}c["28% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=28}},nil}c["15% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=15}},nil}c["Nearby Allies have 5% increased Defences per 100 Strength you have"]={{[1]={[1]={div=100,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Defences",type="INC",value=5},onlyAllies=true}}},nil}c["10% chance to gain a Power Charge when you Shock a Chilled Enemy"]={{}," to gain a Power Charge when you Shock a Chilled Enemy "}c["28% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=28}},nil}c["5% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["Axe Attacks deal 20% increased Damage with Hits and Ailments"]={{[1]={flags=65536,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["+50% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=50}},nil}c["Every 5 seconds, Regenerate 20% of Life over one second You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other While there are at least five nearby Allies, you and nearby Allies have Onslaught"]={nil,"Every 5 seconds, Regenerate 20% of Life over one second You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other While there are at least five nearby Allies, you and nearby Allies have Onslaught "}c["Summon 2 additional Skeleton Warriors with Summon Skeleton"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton "}c["40% increased Effect of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of Golems"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=40}}," of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of s "}c["+55 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=55}},nil}c["10% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=10}},nil}c["Herald of Agony has 100% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil}c["50% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=50}},nil}c["18% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=18}},nil}c["30% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=30},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=30},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=30}},nil}c["You lose 5% of Energy Shield per second Life Leech is applied to Energy Shield instead while on Full Life"]={nil,"You lose 5% of Energy Shield per second Life Leech is applied to Energy Shield instead while on Full Life "}c["+1 to Melee range with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1}},nil}c["Adds 53 to 60 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=60}},nil}c["You have Onslaught while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["+2 to Level of all Cold Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="cold",[3]="active_skill"},value=2}}},nil}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned "}c["Trigger Level 10 Shock Ground when Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="TriggeredShockedGround"}}},nil}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently Regenerate 2% of Life per second if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},[2]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=100}}," to Taunt on Hit 6% reduced Regenerate 2% of Life per second "}c["140% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=140}},nil}c["5% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit "}c["0.5% of Lightning Damage Leeched as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageEnergyShieldLeech",type="BASE",value=0.5}},nil}c["15% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["6% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=6}},nil}c["50% increased Shock Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=50}}," on You "}c["25% reduced Bleed duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=-25}},nil}c["Chill and Freeze duration on you is based on 65% of Energy Shield"]={nil,"Chill and Freeze duration on you is based on 65% of Energy Shield "}c["40% increased Spell Damage while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["25% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=25}},nil}c["90% increased Rarity of Items found with a Normal Item equipped"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NormalItem"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=90}},nil}c["+60% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=60}},nil}c["Shock Reflection"]={nil,"Shock Reflection "}c["Wrath Reserves no Mana"]={{[1]={[1]={skillId="Wrath",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["+15 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=15}},nil}c["Gain a Frenzy Charge on reaching Maximum Power Charges 15% increased Cold Damage per Frenzy Charge"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges 15% increased Cold Damage per Frenzy Charge "}c["Socketed Gems fire Projectiles in a Nova"]={nil,"Socketed Gems fire Projectiles in a Nova "}c["35% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting "}c["Regenerate 2% of Life per second if a Minion has Died Recently Minions Recover 4% of Life on Minion Death"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}}," if a Minion has Died Recently Minions Recover 4% of on Minion Death "}c["Trigger Level 20 Fog of War when your Trap is triggered"]={nil,"Trigger Level 20 Fog of War when your Trap is triggered "}c["Mace or Sceptre Attacks deal 30% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["+2% to Damage over Time Multiplier for Poison"]={{[1]={flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=2}},nil}c["100% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=100}},nil}c["10% chance to gain Unholy Might for 10 seconds on Kill"]={{}," to gain Unholy Might for 10 seconds on Kill "}c["+28 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=28}},nil}c["+6% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=6}},nil}c["14% increased Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["+30 Energy Shield gained on Killing a Shocked Enemy"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=30}}," gained on Killing a Shocked Enemy "}c["5% increased Projectile Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1024,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["40% more Elemental Damage if you've dealt a Crit in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="ElementalDamage",type="MORE",value=40}},nil}c["20% chance to Poison on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PoisonChance",type="BASE",value=20}},nil}c["Unaffected by Vulnerability while affected by Determination 8% chance to Block Spells while affected by Discipline"]={nil,"Unaffected by Vulnerability while affected by Determination 8% chance to Block Spells while affected by Discipline "}c["35% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=35}},nil}c["20% increased Radius of Auras"]={{[1]={flags=0,keywordFlags=1,name="AreaOfEffect",type="INC",value=20}},nil}c["7% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=7}},nil}c["10% reduced Mana Cost of Skills while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-10}},nil}c["10% increased Movement Speed while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["20% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=20}},nil}c["40% increased Effect of Herald Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=40}}," of Herald Buffs on you "}c["Grants Level 25 Scorching Ray Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="FireBeam"}}},nil}c["Skills Chain an additional time while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil}c["+100 Armour per Summoned Totem"]={{[1]={[1]={stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=100}},nil}c["Enemies near Corpses affected by your Curses are Blinded Enemies killed near Corpses affected by your Curses explode, dealing 3% of their Life as Physical Damage"]={nil,"Enemies near Corpses affected by your Curses are Blinded Enemies killed near Corpses affected by your Curses explode, dealing 3% of their Life as Physical Damage "}c["Minions have 8% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=8}}}},nil}c["+5% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=5}},nil}c["+8% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=8}},nil}c["+110 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=110}},nil}c["Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy"]={nil,"Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy "}c["8% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=8},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=8},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=8}},nil}c["10% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="INC",value=10}},nil}c["15% increased Area of Effect if you have Stunned an Enemy Recently"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}}," if you have Stunned an Enemy Recently "}c["25% chance to Curse Enemies with level 10 Vulnerability on Hit Attacks Cause Bleeding when Hitting Cursed Enemies"]={{}," to Curse Enemies with level 10on Hit Attacks Cause Bleeding "}c["Single-target Melee attacks deal Splash Damage to surrounding targets"]={nil,"Single-target Melee attacks deal Splash Damage to surrounding targets "}c["+2 seconds to Cat's Stealth Duration"]={{[1]={[1]={skillName="Aspect of the Cat",type="SkillName"},flags=0,keywordFlags=0,name="PrimaryDuration",type="BASE",value=2}},nil}c["Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently"]={nil,"Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently "}c["Your Maximum Resistances are 80%"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="OVERRIDE",value=80},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="OVERRIDE",value=80},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="OVERRIDE",value=80},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="OVERRIDE",value=80}},nil}c["16% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=16}},nil}c["295% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=295}},nil}c["You cannot be Ignited for 3 seconds after being Ignited"]={nil,"You cannot be Ignited for 3 seconds after being Ignited "}c["Unaffected by Temporal Chains while affected by Haste"]={nil,"Unaffected by Temporal Chains while affected by Haste "}c["Half of your Strength is added to your Minions"]={{[1]={flags=0,keywordFlags=0,name="HalfStrengthAddedToMinions",type="FLAG",value=true}},nil}c["+25% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}},nil}c["+55 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=55}},nil}c["+55% to Cold Resistance while affected by Herald of Ice"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofIce"},flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=55}},nil}c["20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonVoidSphere"}}},nil}c["30% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["Gems Socketed in Red Sockets have +1 to Level Gems Socketed in Green Sockets have +10% to Quality"]={nil,"Gems Socketed in Red Sockets have +1 to Level Gems Socketed in Green Sockets have +10% to Quality "}c["40% increased Energy Shield Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=40}},nil}c["+5 to Evasion Rating per 1 Maximum Energy Shield on Helmet"]={{[1]={[1]={div=1,stat="EnergyShieldOnHelmet",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=5}},nil}c["25% Chance to Ignite when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=25}},nil}c["12% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-12}},nil}c["50% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=50}},nil}c["14% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=14}},nil}c["3% increased Intelligence for each Unique Item Equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,keywordFlags=0,name="Int",type="INC",value=3}},nil}c["65% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=65}},nil}c["Zombies deal 100% increased Physical Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}}}},nil}c["Consecrated Ground you create applies 10% increased Damage taken to Enemies"]={nil,"Consecrated Ground you create applies 10% increased Damage taken to Enemies "}c["Axe Attacks deal 10% increased Damage with Hits and Ailments"]={{[1]={flags=65536,keywordFlags=786432,name="Damage",type="INC",value=10}},nil}c["Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage "}c["Mercury Footprints"]={nil,"Mercury Footprints "}c["40% more Elemental Damage if you've Crit in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="ElementalDamage",type="MORE",value=40}},nil}c["+65 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=65}},nil}c["Regenerate 2 Mana per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=2}},nil}c["20% increased Taunt Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Taunt "}c["5% increased Brand Activation frequency"]={{[1]={flags=0,keywordFlags=0,name="BrandActivationFrequency",type="INC",value=5}},nil}c["4% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=4}},nil}c["7% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=7}},nil}c["60% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=60}},nil}c["Gain Shocking Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=100},[2]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="PhysicalCanShock",type="FLAG",value=true},[3]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="ColdCanShock",type="FLAG",value=true},[4]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="FireCanShock",type="FLAG",value=true},[5]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="ChaosCanShock",type="FLAG",value=true}},nil}c["30% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=30}},nil}c["10% increased Damage per Summoned Golem 40% increased Effect of Buffs granted by your Golems Golems have 25% increased Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}," per Summoned 40% increased Effect of Buffs granted by your Golems Golems have 25% increased Maximum Life "}c["Can have 1 additional Siege Ballista Totem per 200 Dexterity"]={{[1]={[1]={skillName="Siege Ballista",type="SkillName"},[2]={div=200,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["+1 to Level of all Cold Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="cold",[3]="active_skill"},value=1}}},nil}c["50% chance to gain a Power Charge when you Summon a Totem"]={{}," to gain a Power Charge when you Summon a "}c["+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["Adds 12 to 16 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=16}},nil}c["Cannot lose Crab Barriers if you have lost Crab Barriers Recently"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently "}c["+320 to Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="BASE",value=320}},nil}c["12% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Triggers Level 20 Blinding Aura when Equipped Adds 22 to 44 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=44}},"Triggers Level 20 Blinding Aura when Equipped "}c["Summoned Golems are Immune to Elemental Damage 20% increased Damage per Summoned Golem"]={nil,"Summoned Golems are Immune to Elemental Damage 20% increased Damage per Summoned Golem "}c["14% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["Every 5 seconds, Regenerate 20% of Life over one second"]={nil,"Every 5 seconds, Regenerate 20% of Life over one second "}c["0.5% of Attack Damage Leeched as Mana against Poisoned Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=1,keywordFlags=262144,name="DamageManaLeech",type="BASE",value=0.5}},nil}c["+32% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=32}},nil}c["Adds 10 to 38 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=38}},nil}c["50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="MORE",value=50}}," with Herald Skills Minions from Herald Skills deal 25% more Damage "}c["Reflects 240 to 300 Physical Damage to Attackers on Block"]={nil,"Reflects 240 to 300 Physical Damage to Attackers on Block "}c["Adds 15 to 28 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=28}},nil}c["5% reduced Area Damage taken from Hits +2 to Melee Strike Range 10% increased Area of Effect if you have Stunned an Enemy Recently Melee Skills have 10% increased Area of Effect"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits +2 to Melee Strike Range 10% increased Area of Effect if you have Stunned an Enemy Recently Melee Skills have 10% increased Area of Effect "}c["Deal no Non-Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="DealNoLightning",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="DealNoCold",type="FLAG",value=true},[4]={flags=0,keywordFlags=0,name="DealNoChaos",type="FLAG",value=true}},nil}c["100% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["2% increased Minion Duration per Zombie you own"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillType=21,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=2}}}}," per you own "}c["18% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=18}},nil}c["50% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=50}},nil}c["50% reduced Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Damage",type="INC",value=-50}},nil}c["6% increased Accuracy Rating with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["+78 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=78}},nil}c["50% chance to be inflicted with Bleeding when Hit by an Attack"]={{}," to be inflicted when Hit by an Attack "}c["Trigger Socketed Spells when you Focus"]={nil,"Trigger Socketed Spells when you Focus "}c["Cannot be Blinded"]={nil,"Cannot be Blinded "}c["Gain 20% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}},nil}c["15% chance of Projectiles Piercing"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=15}}," of Piercing "}c["You are cursed with Level 10 Vulnerability"]={{[1]={flags=0,keywordFlags=0,name="ExtraCurse",type="LIST",value={applyToPlayer=true,level=10,skillId="Vulnerability"}}},nil}c["30% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=30}},nil}c["50 Life Regenerated per second if you have at least 500 Maximum Energy Shield"]={{[1]={[1]={stat="EnergyShield",threshold=500,type="StatThreshold"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=50}},nil}c["Curse Skills have 80% increased Skill Effect Duration"]={{[1]={[1]={skillType=32,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=80}},nil}c["Nearby Enemies grant 25% increased Flask Charges 2% additional Chance to receive a Critical Strike"]={nil,"Nearby Enemies grant 25% increased Flask Charges 2% additional Chance to receive a Critical Strike "}c["+15% to Critical Strike Multiplier with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["+100 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=100}},nil}c["Regenerate 1% of Energy Shield per second for each"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}}," for each "}c["Strike Skills target 1 additional nearby Enemy"]={nil,"Strike Skills target 1 additional nearby Enemy "}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit "}c["420% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=420}},nil}c["100% increased Effect of Auras from Mines"]={{[1]={flags=0,keywordFlags=8192,name="AuraEffect",type="INC",value=100}},nil}c["25% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["+20% to Damage over Time Multiplier for Ailments from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=2048,keywordFlags=0,name="DotMultiplier",type="BASE",value=20}},nil}c["Gain a Frenzy Charge on every 50th Rampage Kill"]={nil,"Gain a Frenzy Charge on every 50th Rampage Kill "}c["You gain Phasing for 3 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 3 seconds on using a Vaal Skill "}c["+110 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=110}},nil}c["+13% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=13}},nil}c["Socketed Gems are Supported by level 15 Pierce"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportPierce"}}},nil}c["40% chance to Avoid being Frozen"]={{[1]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=40}},nil}c["Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"Effects of Consecrated Ground you create Linger for 4 seconds "}c["+1 to maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=1}},nil}c["+40 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=40}},nil}c["If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}}}},nil}c["4% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=4}},nil}c["20% chance to gain Fortify on Melee Stun"]={{}," to gain Fortify on Stun "}c["+90 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=90}},nil}c["1.5% of Damage leeched as Life while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1.5}},nil}c["25% chance to avoid Fire Damage when Hit You always Ignite while Burning"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=25}}," to avoid when Hit You always Ignite while Burning "}c["12% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["28% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=28}},nil}c["Enemies Become Chilled as they Unfreeze"]={nil,"Enemies Become Chilled as they Unfreeze "}c["Cannot be Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["Socketed Gems have 40% reduced Elemental Equilibrium effect Socketed Gems have 25% reduced Elemental Equilibrium effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-40}}}}," Elemental Equilibrium Socketed Gems have 25% reduced Elemental Equilibrium effect "}c["Unaffected by Poison 20% of Damage taken gained a Life over 4 seconds when Hit"]={nil,"Unaffected by Poison 20% of Damage taken gained a Life over 4 seconds when Hit "}c["You gain an Endurance Charge on use"]={nil,"You gain an Endurance Charge on use "}c["285% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=285}},nil}c["100% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil}c["23% increased Elemental Damage with Attack Skills per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=23}},nil}c["8% increased Accuracy Rating with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["20% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}}}},nil}c["25% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=25}},nil}c["163% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=163}},nil}c["7% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=7}},nil}c["Attacks with Two Handed Melee Weapons deal 20% increased Damage with Hits and Ailments"]={{[1]={flags=301989888,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["Raging Spirits have 140% increased Damage"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=140}}}},nil}c["Gain Flask Charges when you deal a Critical Strike"]={nil,"Gain Flask Charges when you deal a Critical Strike "}c["Gain 10% of Physical Damage as Extra Chaos Damage while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=10}},nil}c["Sentinels of Purity deal 100% increased Damage"]={{[1]={[1]={skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=100}}}},nil}c["120% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=120}},nil}c["8% increased Accuracy Rating with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["14% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=14}},nil}c["10% chance to gain a Power Charge when you Block"]={{}," to gain a Power Charge when you Block "}c["Minions have 10% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}}},nil}c["Remove an Ailment when you use a Flask if all Equipped Items are Elder Items Elder Item"]={nil,"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items Elder Item "}c["20% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=20}},nil}c["Mace or Sceptre Attacks deal 14% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["Adds 115 to 260 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=115},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=260}},nil}c["8% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["3% increased Experience gain"]={{}," Experience gain "}c["+14% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=14}},nil}c["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy"]={{}," to gain aCharge on Killing a Frozen Enemy "}c["0.6% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.6}},nil}c["maximum Life per second for each Stage"]={nil,"maximum Life per second for each Stage "}c["10% increased Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["30% increased Zombie Resistances"]={{}," Resistances "}c["Adds 59 to 102 Fire Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=59},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=102}},nil}c["Traps and Mines have a 25% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=12288,name="PoisonChance",type="BASE",value=25}},nil}c["+1% Chance to Block Attack Damage while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["25% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["20% increased Critical Strike Chance with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["+1 to Level of Socketed Minion Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="minion",value=1}}},nil}c["8% increased Attack Speed with Swords"]={{[1]={flags=4194309,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["+35% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=35}},nil}c["Left ring slot: 80% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-80}}," Reflected "}c["20% increased Physical Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Left ring slot: 40% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-40}}," Reflected "}c["Left ring slot: 30% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-30}}," Reflected "}c["+23% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=23}},nil}c["15% additional Physical Damage Reduction while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=15}},nil}c["60% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=60}},nil}c["25% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting "}c["20% reduced Reflected Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected "}c["Channelling Skills deal 8% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["Reflects 200 to 250 Physical Damage to Attackers on Block"]={nil,"Reflects 200 to 250 Physical Damage to Attackers on Block "}c["Your Minions use your Flasks when summoned"]={nil,"Your Minions use your Flasks when summoned "}c["Socketed Gems are Supported by level 16 Increased Minion Speed"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=16,skillId="SupportMinionSpeed"}}},nil}c["Pain Attunement"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Pain Attunement"}},nil}c["+35 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=35}},nil}c["Spectres have 1000% increased Critical Strike Chance"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=1000}}}},nil}c["40% chance to Avoid being Stunned while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=40}},nil}c["10% chance to gain an Endurance Charge when you Block 20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block 20% chance to gain an Endurance Charge when you Block "}c["With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage"]={nil,"With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage "}c["Cannot be Stunned while Leeching You are Immune to Bleeding while Leeching"]={nil,"Cannot be Stunned while Leeching You are Immune to Bleeding while Leeching "}c["Adds 5 to 10 Fire Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="FireMin",type="BASE",value=5},[2]={flags=131076,keywordFlags=0,name="FireMax",type="BASE",value=10}},nil}c["While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level"]={{[1]={[1]={stat="Life",type="PerStat"},[2]={type="Multiplier",var="Level"},[3]={type="Condition",var="HerEmbrace"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=0.005},[2]={[1]={stat="EnergyShield",type="PerStat"},[2]={type="Multiplier",var="Level"},[3]={type="Condition",var="HerEmbrace"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=0.005}},nil}c["+2 seconds to Avian's Flight Duration"]={{[1]={[1]={skillName="Aspect of the Avian",type="SkillName"},flags=0,keywordFlags=0,name="SecondaryDuration",type="BASE",value=2}},nil}c["25% increased Effect of Herald Buffs on you 25% reduced Mana Reservation of Herald Skills"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=25}}," of Herald Buffs on you 25% reduced Mana Reservation "}c["Enemies take 10% increased Damage for each of your Brands Attached to them"]={nil,"Enemies take 10% increased Damage for each of your Brands Attached to them "}c["16% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=16}},nil}c["Enemies take 5% increased Damage for each of your Brands Attached to them"]={nil,"Enemies take 5% increased Damage for each of your Brands Attached to them "}c["Reflects 1 to 250 Lightning Damage to Melee Attackers Chaos Damage does not bypass Energy Shield"]={nil,"Reflects 1 to 250 Lightning Damage to Melee Attackers Chaos Damage does not bypass Energy Shield "}c["18% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=18}},nil}c["23% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="PhysicalDamage",type="MORE",value=23}},nil}c["With at least 40 Strength in Radius, 20% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer"]={nil,"With at least 40 Strength in Radius, 20% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer "}c["Recover 50 Life when you Block 50% increased Defences from Equipped Shield"]={nil,"Recover 50 Life when you Block 50% increased Defences from Equipped Shield "}c["+100 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=100}},nil}c["+50 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=50}},nil}c["You take 30% reduced Extra Damage from Critical Strikes"]={nil,"You take 30% reduced Extra Damage from Critical Strikes "}c["Adds 2 to 4 Fire Damage to Attacks per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=2},[2]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=4}},nil}c["Arrows that Pierce have +50% to Critical Strike Multiplier"]={nil,"Arrows that Pierce have +50% to Critical Strike Multiplier "}c["Cannot be Stunned by Spells if your other Ring is a Shaper Item"]={nil,"Cannot be Stunned by Spells if your other Ring is a Shaper Item "}c["10% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-10}},nil}c["60% increased Lightning Damage while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=60}},nil}c["Regenerate 2% of Life per second while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["13% reduced Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=-13}},nil}c["Grants level 15 Vengeance Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="Vengeance"}}},nil}c["Enemies near corpses you Spawned Recently are Chilled and Shocked"]={nil,"Enemies near corpses you Spawned Recently are Chilled and Shocked "}c["Melee Skills have 10% increased Area of Effect"]={{[1]={[1]={skillType=24,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["150% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=150}},nil}c["2% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=2}},nil}c["10% chance to Blind with Hits against Bleeding Enemies 15% more Damage with Bleeding"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="Damage",type="BASE",value=10}}," to Blind 15% more with Bleeding "}c["+10% to Critical Strike Multiplier with Fire Skills"]={{[1]={flags=0,keywordFlags=16,name="CritMultiplier",type="BASE",value=10}},nil}c["+8% to Damage over Time Multiplier for Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="DotMultiplier",type="BASE",value=8}},nil}c["With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons"]={nil,"With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons "}c["Adds 60 to 110 Chaos Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=60},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=110}},nil}c["20% increased Critical Strike Chance with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["100% reduced Frostbite Mana Reservation"]={{[1]={[1]={skillName="Frostbite",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["Adds 22 to 32 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=32}},nil}c["+1 to maximum number of Summoned Holy Relics"]={{[1]={flags=0,keywordFlags=0,name="ActiveHolyRelicLimit",type="BASE",value=1}},nil}c["Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage "}c["100% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=100}},nil}c["50% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=50}},nil}c["25% increased Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=25}},nil}c["2% of Attack Damage Leeched as Life and Mana if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=1,keywordFlags=0,name="DamageLeech",type="BASE",value=2}},nil}c["Grants Armour equal to 160% of your Reserved Life to you and nearby Allies"]={{[1]={flags=0,keywordFlags=0,name="GrantReservedLifeAsAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1.6}}}},nil}c["40% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil}c["75% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=75}},nil}c["Recover 250 Life when you Block +6% Chance to Block"]={nil,"Recover 250 Life when you Block +6% Chance to Block "}c["6% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["4% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-4}},nil}c["20% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=20}},nil}c["Gain 18% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=18}},nil}c["25% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=25}},nil}c["40% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["-40% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-40}},nil}c["5% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=5}},nil}c["-1 to maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=-1}},nil}c["25% reduced Golem Size"]={{}," Size "}c["2% of Fire Damage Leeched as Life while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=2}},nil}c["5% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=5}},nil}c["You Cannot Be Shocked While Frozen You Cannot Be Shocked While Chilled"]={nil,"You Cannot Be Shocked While Frozen You Cannot Be Shocked While Chilled "}c["40% increased Damage against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["6% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["Radius: 18"]={nil,"Radius: 18 "}c["Ignites you inflict with Attacks deal Damage 35% faster"]={{[1]={flags=1,keywordFlags=0,name="IgniteBurnFaster",type="INC",value=35}},nil}c["Enemies you Shock have 30% reduced Cast Speed"]={nil,"Enemies you Shock have 30% reduced Cast Speed "}c["Gain 75 Armour per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["10% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["40% reduced Freeze Duration on you 15% additional Physical Damage Reduction while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=-40}}," on you 15% additional Physical Damage Reduction "}c["10% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=10}},nil}c["Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={stat="PowerCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil}c["16% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Wrath has 30% increased Aura Effect"]={{[1]={[1]={skillName="Wrath",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["+10 to maximum Divine Charges"]={{}," maximum Divine Charges "}c["24% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["100% increased Critical Strike Chance against Enemies that are affected"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}}," against Enemies that are affected "}c["30 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=30}},nil}c["Deal no Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical",type="FLAG",value=true}},nil}c["Non-Unique Flasks applied to you have 10% increased Effect"]={nil,"Non-Unique Flasks applied to you have 10% increased Effect "}c["8% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["6% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["20% chance to gain Fortify on Melee Stun You have Onslaught while you have Fortify"]={{}," to gain Fortify on Stun You have Onslaught "}c["+2 to Level of all Minion Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="minion",[2]="active_skill"},value=2}}},nil}c["20% increased Warcry Duration"]={{[1]={flags=0,keywordFlags=4,name="Duration",type="INC",value=20}},nil}c["35% reduced Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-35}},nil}c["100% increased Shock Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=100}}," on You "}c["Adds 10 to 36 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=36}},nil}c["You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=16}}},[2]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=144}}}},nil}c["Gain Onslaught for 1 second per Frenzy Charge on use Gain Onslaught for 2 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use Gain Onslaught for 2 second per Frenzy Charge on use "}c["Adds 14 to 26 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=14},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=26}},nil}c["+24 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24}},nil}c["8% chance to Knock Enemies Back on Hit with Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=8}}," with Damage "}c["Vitality Reserves no Mana"]={{[1]={[1]={skillId="Vitality",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Purity of Lightning Reserves no Mana"]={{[1]={[1]={skillId="LightningResistAura",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Minions deal 12% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}},nil}c["25% increased Critical Strike Chance with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["Cannot be Stunned while you have at least 25 Rage"]={{[1]={[1]={threshold=25,type="MultiplierThreshold",var="Rage"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["+20 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["+16 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=16}},nil}c["20% increased Damage while you have a Summoned Golem 30% increased Effect of Buffs granted by your Golems"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," while you have a Summoned 30% increased Effect of Buffs granted by your Golems "}c["Lightning Damage from Enemies Hitting you is Lucky"]={nil,"Lightning Damage from Enemies Hitting you is Lucky "}c["+45 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=45},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=45}},nil}c["138% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=138}},nil}c["Passives in radius are Conquered by the Templars"]={nil,"Passives in radius are Conquered by the Templars "}c["15% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["reducing Movement Speed by 40%"]={nil,"reducing Movement Speed by 40% "}c["Summoned Raging Spirits take 20% of their Maximum Life per second as Chaos Damage"]={nil,"Summoned Raging Spirits take 20% of their Maximum Life per second as Chaos Damage "}c["15% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil}c["60% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=60}},nil}c["10% increased Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Vaal Skills deal 80% increased Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=256,name="Damage",type="INC",value=80}},nil}c["12% increased Attack and Cast Speed per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Spell Hits if you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=2,keywordFlags=0,name="Speed",type="INC",value=12}}," per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Hits "}c["20% increased Vaal Skill Effect Duration"]={{[1]={flags=0,keywordFlags=256,name="Duration",type="INC",value=20}},nil}c["5% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=5}},nil}c["Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"]={nil,"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies "}c["30% chance to gain a Frenzy Charge on Kill Gore Footprints"]={{}," to gain aCharge on Kill Gore Footprints "}c["+38 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=38}},nil}c["10% reduced Flask Charges used from Mana Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-10}}," from Mana Flasks "}c["14% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently 15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="LifeRecoveryRate",type="BASE",value=15},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="ManaRecoveryRate",type="BASE",value=15},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="EnergyShieldRecoveryRate",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage "}c["Adds 3 to 8 Fire Spell Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=3},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=8}},nil}c["With at least 40 Intelligence in Radius, Cold Snap has a 25% chance to grant a Power Charge on Kill With at least 40 Intelligence in Radius, Cold Snap has a 50% chance to grant a Power Charge on Kill"]={nil,"With at least 40 Intelligence in Radius, Cold Snap has a 25% chance to grant a Power Charge on Kill With at least 40 Intelligence in Radius, Cold Snap has a 50% chance to grant a Power Charge on Kill "}c["Damage Penetrates 10% of Enemy Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=10}},nil}c["Adds 3 to 7 Fire Spell Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=3},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=7}},nil}c["Triggers Level 20 Reflection when Equipped 50% increased Physical Damage"]={nil,"Triggers Level 20 Reflection when Equipped 50% increased Physical Damage "}c["25% increased Zombie Size Enemies killed by Zombies explode dealing 20% of their Maximum Life as Fire Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=25}}}}," Size Enemies killed by Zombies explode dealing 20% of their as Fire Damage "}c["25% chance to inflict Cold Exposure on Hit 25% chance to inflict Fire Exposure on Hit"]={{}," to inflict Cold Exposure on Hit 25% chance to inflict Fire Exposure on Hit "}c["You cannot have non-Animated Minions"]={nil,"You cannot have non-Animated Minions "}c["+25% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=25}},nil}c["40% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=40}}," Maximum "}c["5% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=5}},nil}c["+3% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances"]={nil,"Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances "}c["Your Golems are aggressive"]={nil,"Your Golems are aggressive "}c["6% reduced Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-6}},nil}c["Mind Over Matter"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Mind Over Matter"}},nil}c["185% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=185}},nil}c["20% increased Projectile Attack Damage with Claws or Daggers"]={{[1]={[1]={modFlags=786432,type="ModFlagOr"},flags=1029,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["+8 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=8}},nil}c["12% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["30% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=30}},nil}c["45% increased Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=45}},nil}c["200% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=2,keywordFlags=0,name="Damage",type="INC",value=200}},nil}c["+1% to maximum Cold Resistance while affected by Herald of Ice"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofIce"},flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=1}},nil}c["100% increased Ignite Duration on You 10% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=100}}," on You 10% increased Movement Speed "}c["10% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=10}}}},nil}c["With at least 40 Dexterity in Radius, Shrapnel Shot's"]={nil,"With at least 40 Dexterity in Radius, Shrapnel Shot's "}c["Minions deal 14% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=14}}}},nil}c["+10% to all Elemental Resistances and maximum Elemental Resistances while affected by a Non-Vaal Guard Skill 20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill 20% more Damage taken if a Non-Vaal Guard Buff was lost Recently"]={{[1]={flags=0,keywordFlags=256,name="ElementalResist",type="BASE",value=10}}," and maximum Elemental Resistances while affected by a Non- Guard Skill 20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill 20% more Damage taken if a Non-Vaal Guard Buff was lost Recently "}c["6% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["Recover 3% of Life when you lose a Spirit Charge"]={nil,"Recover 3% of Life when you lose a Spirit Charge "}c["206% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=206}},nil}c["2% increased Area of Effect per 25 Rampage Kills Gain a Frenzy Charge on every 50th Rampage Kill"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=2}}," per 25 Rampage Kills Gain aCharge on every 50th Rampage Kill "}c["40% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-40}},nil}c["Summoned Skeletons have Avatar of Fire"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Avatar of Fire"}}}},nil}c["+2 to Melee Strike Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}c["You cannot be Ignited while you have a Flame Golem Summoned"]={nil,"You cannot be Ignited while you have a Flame Golem Summoned "}c["8% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=8}},nil}c["+19 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=19}},nil}c["Non-instant Mana recovery from Flasks is also recovered as Life"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life "}c["Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you"]={nil,"Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you "}c["30% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=30}},nil}c["24% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=24}},nil}c["-50% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-50}},nil}c["20% chance to gain a Power Charge on non-Critical Strike"]={{}," to gain a Power Charge on non-Critical Strike "}c["8% increased Mana Regeneration Rate per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=8}},nil}c["+10% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=10}},nil}c["50% increased Evasion if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil}c["9% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=9}},nil}c["10% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=10}},nil}c["8% additional Chance to Block while Dual Wielding Claws"]={{[1]={[1]={type="Condition",var="DualWieldingClaws"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["2% increased Attack and Cast Speed per Summoned Raging Spirit 2% increased Minion Duration per Zombie you own"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}}}," per Summoned Raging Spirit 2% increased Minion Duration per you own "}c["2% increased Experience gain"]={{}," Experience gain "}c["Adds 20 to 30 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=20},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=30}},nil}c["Sacrifice 4% of your Life when you Use or Trigger a Spell Skill 2% increased Critical Strike Chance for Spells per 100 Maximum Life"]={nil,"Sacrifice 4% of your Life when you Use or Trigger a Spell Skill 2% increased Critical Strike Chance for Spells per 100 Maximum Life "}c["100% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=100}}}},nil}c["Adds 21 to 33 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=21},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=33}},nil}c["24% increased Physical Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Adds 22 to 35 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=22},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=35}},nil}c["Ailments against other targets"]={nil,"Ailments against other targets "}c["50% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=50}},nil}c["1.6% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.6}},nil}c["Far Shot"]={{[1]={flags=0,keywordFlags=0,name="FarShot",type="FLAG",value=true}},nil}c["35% increased Armour while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="Armour",type="INC",value=35}},nil}c["12% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=12}},nil}c["35% increased Energy Shield Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=35}},nil}c["Enemies killed near Corpses affected by your Curses explode, dealing 3% of their Life as Physical Damage"]={nil,"Enemies killed near Corpses affected by your Curses explode, dealing 3% of their Life as Physical Damage "}c["+18 to Quality +15% to Fire and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=18}}," Quality +15% to "}c["+20% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=20}},nil}c["8% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["50% increased Damage with Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="Damage",type="INC",value=50}},nil}c["15% increased Physical Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["+6% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil}c["15% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting "}c["Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently"]={nil,"Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently "}c["Adds 10 to 15 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=15}},nil}c["Every 14 seconds:"]={{},nil}c["6% increased Damage per Frenzy Charge with Hits against Enemies on Low Life"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=6}},nil}c["Your Raised Spectres also gain Arcane Surge when you do 50% increased Critical Strike Chance for Spells per Raised Spectre"]={nil,"Your Raised Spectres also gain Arcane Surge when you do 50% increased Critical Strike Chance for Spells per Raised Spectre "}c["Chaos Damage is taken from Mana before Life"]={nil,"Chaos Damage is taken from Mana before Life "}c["1% of Life Regenerated per second per 500 Maximum Energy Shield"]={{[1]={[1]={div=500,stat="EnergyShield",type="PerStat"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["65% reduced Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=-65}},nil}c["Cannot be Frozen"]={{[1]={flags=0,keywordFlags=0,name="AvoidFreeze",type="BASE",value=100}},nil}c["+1 to Level of Socketed Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="all",value=1}}},nil}c["12% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["20% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritChance",type="INC",value=20}},nil}c["Has not Consumed any Gems"]={nil,"Has not Consumed any Gems "}c["Mines Hinder Enemies near them for 2 seconds when they Land,"]={nil,"Mines Hinder Enemies near them for 2 seconds when they Land, "}c["25% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=25},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=25},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=25}},nil}c["15% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=15}},nil}c["Lose 0.1% of maximum Life per second per Rage while you are not losing Rage Effects granted for having Rage are Tripled Cannot be Stunned while you have at least 25 Rage"]={nil,"Lose 0.1% of maximum Life per second per Rage while you are not losing Rage Effects granted for having Rage are Tripled Cannot be Stunned while you have at least 25 Rage "}c["+40% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=40}},nil}c["50% increased Maximum total Recovery per second from Life Leech if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=50}},nil}c["+18 to All Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=18},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=18}},nil}c["100% More Bow Damage at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=131076,keywordFlags=0,name="Damage",type="MORE",value=100}},nil}c["20% increased Critical Strike Chance with Axes"]={{[1]={flags=65540,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["40% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil}c["12% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Recover 3% of Maximum Mana when you Shock an Enemy"]={nil,"Recover 3% of Maximum Mana when you Shock an Enemy "}c["Maximum total Recovery per second from Life Leech is doubled"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="MORE",value=100}},nil}c["20% chance to Avoid being Stunned while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=20}},nil}c["50% increased Critical Strike Chance for Spells per Raised Spectre Adds 12 to 16 Fire Damage"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}}," per Raised Spectre Adds 12 to 16 Fire Damage "}c["Adds 1 to 4 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=4}},nil}c["Adds 4 to 7 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=7}},nil}c["+70 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=70}},nil}c["If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour"]={nil,"If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour "}c["Socketed Gems are Supported by level 12 Fortify"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=12,skillId="SupportFortify"}}},nil}c["50% increased Herald of Thunder Buff Effect"]={{[1]={[1]={skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=50}},nil}c["+40 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}},nil}c["Skills fire an additional Projectile"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}c["Recover Full Life at the end of the Flask effect"]={nil,"Recover Full Life at the end of the Flask effect "}c["+8% to Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=8}},nil}c["Reflects 10 Cold Damage to Melee Attackers Reflects 50 Cold Damage to Melee Attackers"]={nil,"Reflects 10 Cold Damage to Melee Attackers Reflects 50 Cold Damage to Melee Attackers "}c["+110 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=110}},nil}c["+70 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=70}},nil}c["Totems Fire 2 additional Projectiles"]={{[1]={flags=0,keywordFlags=16384,name="ProjectileCount",type="BASE",value=2}},nil}c["+35% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=35}},nil}c["+40% to Critical Strike Multiplier against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="CritMultiplier",type="BASE",value=40}},nil}c["10% increased Damage taken from Skeletons 10% increased Damage taken from Ghosts"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}}," from s 10% increased Damage taken from Ghosts "}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of non-Damaging Ailments on Enemies Shocks from your Hits always increase Damage taken by at least 15%"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of non-Damaging Ailments on Enemies Shocks from your Hits always increase Damage taken by at least 15% "}c["Socketed Gems are Supported by Level 30 Cold to Fire"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportColdToFire"}}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently 15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage Cannot be Stunned if you haven't been Hit Recently 15 Mana Regenerated per second if you've used a Movement Skill Recently"]={{}," "}c["+20% to Critical Strike Multiplier with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["5% increased Area of Effect per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["Gain Life from Leech instantly from Hits with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true}},nil}c["60% increased Aspect of the Spider Area of Effect"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=60}},nil}c["25% reduced Trap Duration"]={{[1]={flags=0,keywordFlags=0,name="TrapDuration",type="INC",value=-25}},nil}c["Socketed Trap Skills create a Smoke Cloud when triggered"]={nil,"Socketed Trap Skills create a Smoke Cloud when triggered "}c["20% chance to gain a Spirit Charge on Kill +1 to Maximum Spirit Charges per Abyss Jewel affecting you"]={{}," to gain a Spirit Charge on Kill +1 to Maximum Spirit Charges "}c["15% of Physical Attack Damage Added as Lightning Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=15}},nil}c["30% reduced Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=-30}},nil}c["Socketed Golem Skills have 20% increased Attack and Cast Speed"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}}},nil}c["When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has You and nearby Allies have 12% increased Movement Speed"]={nil,"When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has You and nearby Allies have 12% increased Movement Speed "}c["+5000 to Armour while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=5000}},nil}c["Enemies you hit with Elemental Damage temporarily get +25% Resistance to those Elements and -50% Resistance to other Elements"]={{[1]={flags=0,keywordFlags=0,name="ElementalEquilibrium",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="HitByFireDamage"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25}}},[3]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={neg=true,type="Condition",var="HitByFireDamage"},[2]={type="Condition",varList={[1]="HitByColdDamage",[2]="HitByLightningDamage"}},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-50}}},[4]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="HitByColdDamage"},flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}}},[5]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={neg=true,type="Condition",var="HitByColdDamage"},[2]={type="Condition",varList={[1]="HitByFireDamage",[2]="HitByLightningDamage"}},flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-50}}},[6]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="HitByLightningDamage"},flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=25}}},[7]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={neg=true,type="Condition",var="HitByLightningDamage"},[2]={type="Condition",varList={[1]="HitByFireDamage",[2]="HitByColdDamage"}},flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-50}}}},nil}c["+46 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=46}},nil}c["Trigger a Socketed Lightning Spell on Hit"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,name="SupportUniqueMjolnerLightningSpellsCastOnHit"}}},nil}c["20% chance to attack with Level 16 Molten Burst on Melee Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=16,skillId="TriggeredMoltenStrike"}}},nil}c["100% increased Damage while there is only one nearby Enemy"]={{[1]={[1]={type="Condition",var="OnlyOneNearbyEnemy"},flags=0,keywordFlags=0,name="Damage",type="INC",value=100}},nil}c["+1 to maximum number of Sentinels of Purity"]={{}," maximum number of Sentinels of Purity "}c["0% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=0}},nil}c["18% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=18}},nil}c["15% increased Movement Speed if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Attacks have an additional Projectile when in Off Hand"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}c["45% reduced Effect of Chill on You"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-45}},nil}c["Adds 115 to 265 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=115},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=265}},nil}c["2% increased Attack Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["Regenerate 0.5% of Mana per second for each Summoned Totem"]={{[1]={[1]={stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=0,name="ManaRegenPercent",type="BASE",value=0.5}},nil}c["Gain Accuracy Rating equal to your Strength"]={{[1]={[1]={stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=1}},nil}c["Implicit Modifier magnitudes are tripled Corrupted"]={nil,"Implicit Modifier magnitudes are tripled Corrupted "}c["Kills grant an additional Vaal Soul if you have Rampaged Recently"]={nil,"Kills grant an additional Vaal Soul if you have Rampaged Recently "}c["5% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-5}},nil}c["If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned"]={nil,"If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned "}c["50% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["25% increased Brand Activation Frequency if you haven't used a Brand Skill Recently 20% increased Brand Attachment range"]={{[1]={flags=0,keywordFlags=0,name="BrandActivationFrequency",type="INC",value=25}}," if you haven't used a Brand Skill Recently 20% increased Brand Attachment range "}c["+60% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=60}},nil}c["25% increased Physical Damage with Weapons per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["Skills used by Mines have 10% increased Area of Effect"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="INC",value=10}},nil}c["You cannot be Chilled for 3 seconds after being Chilled"]={nil,"You cannot be Chilled for 3 seconds after being Chilled "}c["6% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=6}},nil}c["20% increased Critical Strike Chance for each Mine Detonated Recently, up to 100%"]={{[1]={[1]={limit=100,limitTotal=true,type="Multiplier",var="MineDetonatedRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["30% of Lightning Damage Leeched as Mana during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageManaLeech",type="BASE",value=30}},nil}c["10% increased Effect of Arcane Surge on you per"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}}," of Arcane Surge on you per "}c["Mines have 20% increased Detonation Speed Each Mine applies 2% increased Damage taken to Enemies near it, up to 10%"]={nil,"Mines have 20% increased Detonation Speed Each Mine applies 2% increased Damage taken to Enemies near it, up to 10% "}c["Adds 23 to 40 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=23},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=40}},nil}c["15% increased Attack Speed while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=1,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["10% chance for Energy Shield Recharge to start when you use a Skill Eldritch Battery"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}}," for Recharge to start when you use a Skill Eldritch Battery "}c["20 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=20}},nil}c["16% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=16}},nil}c["+50% to Critical Strike Multiplier if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}},nil}c["12% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=12}},nil}c["You gain 100 Evasion Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=100}},nil}c["50% chance to Maim Enemies on Critical Strike with Attacks +45% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=65536,name="CritMultiplier",type="BASE",value=50}}," to Maim Enemies +45% "}c["10% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+25% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=25}},nil}c["Flasks applied to you have 10% increased Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}},nil}c["Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 10% increased Movement Speed for 20 seconds when you Kill an Enemy"]={nil,"Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 10% increased Movement Speed for 20 seconds when you Kill an Enemy "}c["Melee Critical Strikes have 25% chance to Poison the Enemy"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=25}},nil}c["50% increased Effect of Infusion"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=50}}," of Infusion "}c["Adds 4 to 7 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=7}},nil}c["10% increased Impale Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}}," Impale "}c["25% more Damage while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=25}}," while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby "}c["30% increased Warcry Duration"]={{[1]={flags=0,keywordFlags=4,name="Duration",type="INC",value=30}},nil}c["Inflict non-Damaging Ailments as though dealing 200% more Damage"]={nil,"Inflict non-Damaging Ailments as though dealing 200% more Damage "}c["Reflects 20 Chaos Damage to Melee Attackers Reflects 30 Chaos Damage to Melee Attackers"]={nil,"Reflects 20 Chaos Damage to Melee Attackers Reflects 30 Chaos Damage to Melee Attackers "}c["50% more Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="MORE",value=50}},nil}c["50% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies "}c["10% chance when Hit for double Armour effect"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=10}}," when Hit for double effect "}c["+25 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=25}},nil}c["If you've Warcried Recently, you and nearby allies deal 30% increased Damage"]={nil,"If you've Warcried Recently, you and nearby allies deal 30% increased Damage "}c["Totems have 10% additional Physical Damage Reduction"]={nil,"Totems have 10% additional Physical Damage Reduction "}c["70% reduced Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=-70}},nil}c["Minions from Herald Skills deal 25% more Damage"]={nil,"from Herald Skills deal 25% more Damage "}c["With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 4% increased Damage each time it Hits."]={nil,"With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 4% increased Damage each time it Hits. "}c["When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating"]={nil,"lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating "}c["15% increased Critical Strike Chance with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["25% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-25}},nil}c["3% increased Character Size"]={{}," Character Size "}c["0.8% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.8}},nil}c["30% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=30}},nil}c["You only lose 7 Crab Barriers when you take Physical Damage from a Hit"]={nil,"You only lose 7 Crab Barriers when you take Physical Damage from a Hit "}c["18% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=18}},nil}c["Socketed Gems are Supported by Level 16 Cluster Trap"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=16,skillId="Unknown"}}},nil}c["+50% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=50}},nil}c["30% increased Spell Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Leech applies instantly during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="InstantManaLeech",type="FLAG",value=true}},nil}c["12% increased Physical Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["+120 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=120}},nil}c["Cannot be Stunned when on Low Life"]={nil,"Cannot be Stunned when on Low Life "}c["20% increased Projectile Attack Damage"]={{[1]={flags=1025,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["14% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=14}},nil}c["Gain Unholy Might for 4 seconds on Critical Strike"]={nil,"Gain Unholy Might for 4 seconds on Critical Strike "}c["12% increased Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="INC",value=12}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["15% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=15}},nil}c["+170 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=170}},nil}c["+60 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=60}},nil}c["50% less Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=-50}},nil}c["+3 to Level of all Chaos Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="chaos",[3]="active_skill"},value=3}}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit "}c["30% increased Rarity of Items found during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}},nil}c["6% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=6}},nil}c["Reflects 90 Physical Damage to Melee Attackers"]={{},nil}c["Reflects 81 Physical Damage to Melee Attackers"]={{},nil}c["Gain Rampage while at Maximum Endurances Charges Lose all Endurance Charges when Rampage ends"]={nil,"Gain Rampage while at Maximum Endurances Charges Lose all Endurance Charges when Rampage ends "}c["23% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=23}},nil}c["18% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}},nil}c["+10 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10}},nil}c["30% of Lightning Damage is taken from Mana before Life when Hit Recover 3% of Maximum Mana when you Shock an Enemy"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=30}}," is taken from Mana before Life when Hit Recover 3% of Maximum Mana when you Shock an Enemy "}c["+23% Chaos Resistance when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=23}},nil}c["68% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=68}},nil}c["+100 to Maximum Energy Shield per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},nil}c["12% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}},nil}c["+4% to Damage over Time Multiplier for Ailments per Elder Item Equipped"]={{[1]={[1]={type="Multiplier",var="ElderItem"},flags=2048,keywordFlags=0,name="DotMultiplier",type="BASE",value=4}},nil}c["10% additional Block Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["10% increased Cast Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["25% chance to Curse Enemies with level 10 Vulnerability on Hit"]={{}," to Curse Enemies with level 10on Hit "}c["-40 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-40}}," from Attacks "}c["Enemies take 5% increased Damage for each type of Ailment you have inflicted on them"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[3]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[4]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[5]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[6]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}}},nil}c["You can Cast an additional Brand Brand Skills have 20% increased Duration 10% increased Brand Activation frequency 20% increased Brand Attachment range"]={nil,"You can Cast an additional Brand Brand Skills have 20% increased Duration 10% increased Brand Activation frequency 20% increased Brand Attachment range "}c["8% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["30% increased Effect of Arcane Surge on you 10% chance to gain Arcane Surge when you Hit a Unique enemy"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=30}}," of Arcane Surge on you 10% chance to gain Arcane Surge when you Hit a Unique enemy "}c["+30 to maximum Energy Shield per 100 Reserved Life"]={{[1]={[1]={div=100,stat="LifeReserved",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=30}},nil}c["25% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=25}},nil}c["24% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=24}},nil}c["5% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Energy Shield Recharge is not interrupted by Damage if Recharge"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge "}c["16% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=16}},nil}c["Reflects 23 Physical Damage to Melee Attackers"]={{},nil}c["18% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=18}},nil}c["Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability"]={nil,"Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability "}c["8% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=8}},nil}c["15% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=15}},nil}c["39% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=39}},nil}c["+10% to Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=10}},nil}c["50 Energy Shield Regenerated per Second per Poison on you, up to 250 per second"]={{[1]={[1]={limit=250,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=50}},nil}c["Minions have +10% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=10}}}},nil}c["6% increased Accuracy Rating with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["10% chance to Cause Monsters to Flee Melee Attacks cause Bleeding"]={{}," to Cause Monsters to Flee Attacks cause Bleeding "}c["+11% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=11}},nil}c["10% chance when Hit for double Armour effect 0.5% of Maximum Life Regenerated per second while affected by a Guard Skill Buff"]={{}," while affected by a Guard Skill Buff "}c["Enemies you Curse are Intimidated Enemies you Curse are Unnerved"]={nil,"Enemies you Curse are Intimidated Enemies you Curse are Unnerved "}c["Unaffected by Burning Ground"]={nil,"Unaffected by Burning Ground "}c["1% of Energy Shield Regenerated per second for each"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}}," for each "}c["Grants Level 20 Bone Armour Skill 1% additional Physical Damage Reduction per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30%"]={nil,nil}c["Gain 25% of Physical Damage as Extra Lightning Damage while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=25}},nil}c["+16% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=16}},nil}c["10% increased Experience Gain of Corrupted Gems Corrupted"]={{}," Experience Gain of Corrupted Gems Corrupted "}c["16% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=16}},nil}c["10% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+45 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=45}},nil}c["Grants Summon Harbinger of Brutality Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfBrutality"}}},nil}c["+1 Mana per 4 Strength"]={{[1]={[1]={div=4,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}},nil}c["Socketed Lightning Spells deal 100% increased Spell Damage if Triggered"]={{},nil}c["+10 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10}},nil}c["100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="MORE",value=100}}," from Herald Skills 50% more Damage Over Time with Herald Skills "}c["20% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=20}},nil}c["+16% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=16}},nil}c["10% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=10}},nil}c["Nearby Allies have +7% to Critical Strike Multiplier per 100 Dexterity you have"]={{[1]={[1]={div=100,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=7},onlyAllies=true}}},nil}c["Nearby Allies have +8% to Critical Strike Multiplier per 100 Dexterity you have"]={{[1]={[1]={div=100,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=8},onlyAllies=true}}},nil}c["+60 Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=60}},nil}c["+10% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritMultiplier",type="BASE",value=10}},nil}c["9% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=9}},nil}c["Enemies Ignited by you have -10% to Fire Resistance"]={nil,"Enemies Ignited by you have -10% to Fire Resistance "}c["20% less Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="MORE",value=-20}},nil}c["You cannot Recharge Energy Shield You cannot Regenerate Energy Shield"]={nil,"You cannot Recharge Energy Shield You cannot Regenerate Energy Shield "}c["60% increased Main Hand Attack Damage while wielding two different Weapon Types"]={{[1]={flags=8193,keywordFlags=0,name="Damage",type="INC",value=60}}," Main Hand while wielding two different Types "}c["Minions deal 35% increased Damage while you are affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=35}}}}," while you are affected by a Herald "}c["20% of Maximum Life Converted to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeConvertToEnergyShield",type="BASE",value=20}},nil}c["110% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=110}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 10% increased Movement Speed for 20 seconds when you Kill an Enemy"]={nil,"Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 10% increased Movement Speed for 20 seconds when you Kill an Enemy "}c["+2 to maximum number of Spectres"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=2}},nil}c["Every second, inflict Withered on nearby Enemies for 15 seconds Nearby Hindered Enemies deal 15% reduced Damage over Time"]={nil,"Every second, inflict Withered on nearby Enemies for 15 seconds Nearby Hindered Enemies deal 15% reduced Damage over Time "}c["25% increased Elemental Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["Hits that Stun Enemies have Culling Strike"]={nil,"Hits that Stun Enemies have Culling Strike "}c["60% increased Cold Damage while affected by Herald of Ice"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofIce"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=60}},nil}c["30% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil}c["65% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=65}},nil}c["Recover 2% of Life on Kill Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill"]={nil,"Recover 2% of Life on Kill Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill "}c["10% chance to Poison on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PoisonChance",type="BASE",value=10}},nil}c["0.4% of Fire Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=0.4}},nil}c["Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit"]={nil,"Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit "}c["2% increased Area of Effect per 25 Rampage Kills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=2}}," per 25 Rampage Kills "}c["Adds 1 to 17 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=17}},nil}c["Adds 1 to 13 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=13}},nil}c["8% increased Attack Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["10% of Damage Reflected Gained as Life"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=10}}," Reflected Gained as Life "}c["100% increased Rarity of Items found with a Normal Item equipped"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NormalItem"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=100}},nil}c["Socketed Gems are supported by level 20 Cast on Death"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportCastOnDeath"}}},nil}c["50% of Physical Damage Converted to Fire while you have Avatar of Fire +1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," Converted to Fire while you have Avatar of Fire +1000 Armour while you do not have Avatar of Fire "}c["Adds 6 to 9 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=9}},nil}c["Minions Intimidate Enemies for 4 seconds on Hit"]={nil,"Intimidate Enemies for 4 seconds on Hit "}c["+125 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=125}},nil}c["+35% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=35}},nil}c["+10 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=10}},nil}c["You and Allies affected by your Aura Skills deal 20% increased Damage 10% more Damage while you have at least one nearby Ally Herald of Purity has 40% increased Buff Effect"]={nil,"You and Allies affected by your Aura Skills deal 20% increased Damage 10% more Damage while you have at least one nearby Ally Herald of Purity has 40% increased Buff Effect "}c["100% increased Aspect of the Avian Buff Effect"]={{[1]={[1]={skillName="Aspect of the Avian",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil}c["20% reduced Mana Cost of Skills during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-20}},nil}c["+120 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=120}},nil}c["15% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-15}},nil}c["10% chance to gain Arcane Surge when you Hit a Unique enemy"]={{}," to gain Arcane Surge when you Hit a Unique enemy "}c["+10% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["Your Fire Damage can Shock but not Ignite"]={{[1]={flags=0,keywordFlags=0,name="FireCanShock",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="FireCannotIgnite",type="FLAG",value=true}},nil}c["80% increased Critical Strike Chance if you haven’t Blocked Recently +40% to Critical Strike Multiplier if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}}," if you haven’t Blocked Recently +40% to Critical Strike Multiplier "}c["Mace or Sceptre Attacks deal 28% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=28}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Herald Buffs on you"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Herald Buffs on you "}c["10% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-10}},nil}c["10% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=10}},nil}c["0.4% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=0.4}},nil}c["20% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="INC",value=20}},nil}c["Spells Cast by Totems have 6% increased Cast Speed"]={{[1]={flags=16,keywordFlags=16384,name="Speed",type="INC",value=6}},nil}c["16% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["15% increased Character Size"]={{}," Character Size "}c["50% increased Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=50}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge"]={{}," to gain an Endurance Charge when you gain a Power Charge "}c["You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=64}}},[2]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=96}}}},nil}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased "}c["Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded +2 to Maximum number of Skeletons"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded +2 to Maximum number of Skeletons "}c["5% chance to grant Unholy Might to nearby Enemies on Kill 5% chance to grant Onslaught to nearby Enemies on Kill"]={{}," to grant Unholy Might to nearby Enemies on Kill 5% chance to grant Onslaught to nearby Enemies on Kill "}c["17% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=17}},nil}c["15% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=15},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=15}},nil}c["Socketed Gems are Supported by level 15 Pulverise"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportPulverise"}}},nil}c["Socketed Gems are supported by level 1 Multistrike"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportMultistrike"}}},nil}c["1.5% of Total Physical Damage prevented from Hits in the past 10 seconds is Regenerated as Life per second"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=1.5}}," Total prevented from Hits in the past 10 seconds is Regenerated as Life per second "}c["3% increased Attack Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Your Elemental Damage can Shock"]={{[1]={flags=0,keywordFlags=0,name="ColdCanShock",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="FireCanShock",type="FLAG",value=true}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Zombies"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Zombies "}c["36% increased Attack Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,keywordFlags=0,name="Speed",type="INC",value=36}},nil}c["Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=5}},nil}c["10% reduced Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=-10}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you "}c["Auras from your Skills grant 3% increased Attack and Cast"]={{}," Attack and Cast "}c["30% chance to Avoid being Frozen during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=30}},nil}c["7% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=7}},nil}c["Adds 9 to 15 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=9},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=15}},nil}c["20% of Lightning Damage Leeched as Mana during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageManaLeech",type="BASE",value=20}},nil}c["+2 Mana per 4 Strength"]={{[1]={[1]={div=4,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=2}},nil}c["20% increased Critical Strike Chance with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["66% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=66}},nil}c["Poisons you inflict on non-Poisoned Enemies deal 300% increased Damage"]={nil,"Poisons you inflict on non-Poisoned Enemies deal 300% increased Damage "}c["23% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=23}},nil}c["+3 to Level of all Physical Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="physical",[3]="active_skill"},value=3}}},nil}c["+4% Chance to Block Attack Damage while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["8% increased Attack Speed with Maces"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning"]={{[1]={[1]={type="Condition",var="AffectedByPurityofLightning"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=10}},nil}c["Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time"]={nil,"Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time "}c["Regenerate 0.5% of Life per second while affected by a Guard Skill Buff"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}}," while affected by a Guard Skill Buff "}c["+1 to Melee Strike Range with Axes"]={{[1]={flags=65540,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=65540,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["Adds 2 to 6 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=6}},nil}c["8% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary Regenerate 15 Mana per Second while on Consecrated Ground"]={nil,"Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary Regenerate 15 Mana per Second while on Consecrated Ground "}c["Consecrated Ground created during Effect applies 10% increased Damage taken to Enemies"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil}c["Your Critical Strikes Knock Back Shocked Enemies 30% increased Critical Strike Chance"]={nil,"Your Critical Strikes Knock Back Shocked Enemies 30% increased Critical Strike Chance "}c["3% chance to Dodge Spell Hits"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=3}},nil}c["Energy Shield Recharge is not interrupted by Damage if Recharge began Recently 50% less Energy Shield Regeneration Rate"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge began Recently 50% less Energy Shield Regeneration Rate "}c["Deal no Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoLightning",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="DealNoCold",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="DealNoFire",type="FLAG",value=true}},nil}c["Nearby Allies' spells have Culling Strike"]={nil,"Nearby Allies' spells have Culling Strike "}c["Increases and Reductions to Light Radius also apply to Damage"]={{[1]={flags=0,keywordFlags=0,name="LightRadiusAppliesToDamage",type="FLAG",value=true}},nil}c["Adds 6 to 10 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}c["40% reduced Ignite Duration on you 50% reduced Extra Damage taken from Critical Strikes while Ignited"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-40}}," on you 50% reduced Extra Damage taken "}c["Melee Attacks Poison on Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["Adds 2 to 3 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=2},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=3}},nil}c["Adds 6 to 12 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},nil}c["20% increased Duration of Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=20},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=20},[5]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=20},[6]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=20}},nil}c["160% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=160}},nil}c["Minions have +29% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=29}}}},nil}c["+45 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=45}},nil}c["Effects granted for having Rage are Tripled"]={nil,"Effects granted for having Rage are Tripled "}c["0.9% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.9}},nil}c["+5% to Damage over Time Multiplier for Poison"]={{[1]={flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=5}},nil}c["+5% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=5}},nil}c["5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["18% increased Projectile Attack Damage"]={{[1]={flags=1025,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["Your Shocks can increase Damage taken by up to a maximum of 60%"]={nil,"Your Shocks can increase Damage taken by up to a maximum of 60% "}c["Adds 10 to 14 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=14}},nil}c["+90 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=90}},nil}c["You lose Virulence 30% slower Minions deal 20% increased Damage while you are affected by a Herald"]={nil,"You lose Virulence 30% slower Minions deal 20% increased Damage while you are affected by a Herald "}c["You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges"]={nil,"You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges "}c["Adds 19 to 34 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=19},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=34}},nil}c["Your Spells have Culling Strike"]={nil,"Your Spells have Culling Strike "}c["+1000 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=1000}},nil}c["You can inflict Bleeding on an Enemy up to 8 times"]={nil,"You can inflict Bleeding on an Enemy up to 8 times "}c["25% of Block Chance applied to Spells +7% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=25}}," applied to s +7% chance to Block Spell Damage "}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit 10% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge 40% chance 10% increased Movement Speed "}c["10% increased Maximum total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=10}},nil}c["250% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=250}},nil}c["Adds 4 to 8 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=8}},nil}c["25% increased Damage while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["+10% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=10}},nil}c["20% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-20}},nil}c["Reflects 15 Fire Damage to Melee Attackers 20% of Physical Damage taken as Fire Damage"]={nil,"Reflects 15 Fire Damage to Melee Attackers 20% of Physical Damage taken as Fire Damage "}c["15% increased Damage with One Handed Weapons"]={{[1]={flags=134217732,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["10% increased Area of Effect if you have Stunned an Enemy Recently"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," if you have Stunned an Enemy Recently "}c["25% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=25}},nil}c["+78 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=78}},nil}c["+15 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=15}},nil}c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by 5 or more Poisons 15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"]={{}," to gain aCharge on Killing an Enemy affected by 5 or more Poisons 15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons "}c["Critical Strike Chance is increased by Uncapped Lightning Resistance"]={{[1]={[1]={div=1,stat="LightningResistTotal",type="PerStat"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=1}},nil}c["Enemies killed explode dealing 10% of their Life as Fire Damage"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage "}c["4% increased Attack Speed with Staves"]={{[1]={flags=2097157,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Enemies take 5% increased Damage for each of your Brands Attached to them 20% increased Brand Attachment range"]={nil,"Enemies take 5% increased Damage for each of your Brands Attached to them 20% increased Brand Attachment range "}c["100% reduced Flammability Mana Reservation"]={{[1]={[1]={skillName="Flammability",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["30% less Animate Weapon Duration"]={{[1]={[1]={skillName="Animate Weapon",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="MORE",value=-30}},nil}c["12% increased Cast Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["+8% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=8}},nil}c["Modifiers to Claw Damage also apply to Unarmed Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="ClawDamageAppliesToUnarmed",type="FLAG",value=true}},nil}c["+200 to Accuracy Rating with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["Flasks gain 3 Charges every 3 seconds Damage Penetrates 6% of Enemy Elemental Resistances 15% chance for Flasks you use to not consume Charges"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},"Flasks gain 3 Charges every 3 seconds 15% chance for Flasks you use to not consume Charges "}c["+55% to Lightning Resistance while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=55}},nil}c["4% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["With at least 40 Strength in Radius, Glacial Hammer deals Cold-only Splash Damage to surrounding targets"]={nil,"With at least 40 Strength in Radius, Glacial Hammer deals Cold-only Splash Damage to surrounding targets "}c["8% increased Attack Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Minions have 10% chance to deal Double Damage while they are on Full Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=10}}}}," while they are on Full Life "}c["8% increased Attack and Cast Speed while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["14% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=14}},nil}c["225% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=225}},nil}c["+2% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["You and nearby Allies deal 6 to 12 added Physical Damage for each Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6}}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}}}}," for each Impale on Enemy "}c["25% chance to gain a Siphoning Charge when you use a Skill"]={{}," to gain a Siphoning Charge when you use a Skill "}c["+13% to Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=13}},nil}c["45% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=45}},nil}c["Socketed Gems are Supported by level 1 Hypothermia"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportDamageAgainstChilled"}}},nil}c["When you kill a Poisoned Enemy during any Flask Effect, nearby Enemies are Poisoned"]={nil,"When you kill a Poisoned Enemy during any Flask Effect, nearby Enemies are Poisoned "}c["+1 to maximum number of Sentinels of Purity +5 to Maximum Virulence"]={{}," maximum number of Sentinels of Purity +5 to Maximum Virulence "}c["60% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-60}},nil}c["15% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=15}},nil}c["1% of Life Regenerated per Second per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["Lose 25 Life for each Enemy hit by your Attacks"]={nil,"Lose 25 Life for each Enemy hit by your Attacks "}c["You are Immune to Silence Frostblink has 50% increased Duration"]={nil,"You are Immune to Silence Frostblink has 50% increased Duration "}c["10 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=10}},nil}c["5% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=5}},nil}c["25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain an Endurance Charge on Kill "}c["Attack Skills deal 25% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["+2 to Melee Strike Range while Holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}c["150% increased Critical Strike Chance for Spells if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=150}},nil}c["10% chance to Curse Enemies with a random Curse on Hit 20% chance to Curse non-Cursed Enemies with a random Curse on Hit"]={{}," to Curse Enemies with a random Curse on Hit 20% chance to Curse non-Cursed Enemies with a random Curse on Hit "}c["Gain Chilling Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="PhysicalCanChill",type="FLAG",value=true},[2]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="LightningCanChill",type="FLAG",value=true},[3]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="FireCanChill",type="FLAG",value=true},[4]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="ChaosCanChill",type="FLAG",value=true}},nil}c["Hatred has 30% increased Aura Effect"]={{[1]={[1]={skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["20% increased Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=20}},nil}c["1% additional Physical Damage Reduction from Hits per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=0,name="PhysicalDamageReductionWhenHit",type="BASE",value=1}},nil}c["With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks "}c["20% increased Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["30% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}},nil}c["You cannot be Shocked while you have a Lightning Golem Summoned"]={nil,"You cannot be Shocked while you have a Lightning Golem Summoned "}c["+25 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=25}},nil}c["15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons 10% increased Damage with Poison per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=1048576,name="Damage",type="BASE",value=15}}," to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons 10% increased "}c["Speed per second"]={nil,"Speed per second "}c["10% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=10}},nil}c["+17% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=17}},nil}c["30% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["1.5% of Energy Shield Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1.5}},nil}c["25% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["5% reduced Area Damage taken from Hits"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits "}c["35% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["Skills used by Mines deal 30% increased Area Damage if you Detonated a Mine Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=512,keywordFlags=8192,name="Damage",type="INC",value=30}},nil}c["Adds 13 to 47 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=47}},nil}c["Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below base value"]={nil,"Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below base value "}c["100% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=100}},nil}c["80% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["Adds 10 to 90 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=90}},nil}c["Onslaught"]={{[1]={flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["+43% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=43}},nil}c["You can Cast an additional Brand 20% increased Damage with Brand Skills 10% increased Brand Attachment range"]={nil,"You can Cast an additional Brand 20% increased Damage with Brand Skills 10% increased Brand Attachment range "}c["You gain Onslaught for 5 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 5 second per Endurance Charge when Hit "}c["10% reduced Damage taken from Damage Over Time"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenOverTime",type="INC",value=-10}},nil}c["15% increased Area of Effect while wielding a Two Handed Melee Weapon"]={{[1]={flags=256,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}}," while wielding a Two Handed Weapon "}c["150% increased Rarity of Items Dropped by Slain Magic Enemies 150% increased Rarity of Items Dropped by Slain Magic Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies 150% increased Rarity of Items Dropped by Slain Magic Enemies "}c["150% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=150}},nil}c["-8 to Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-8}},nil}c["+435 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=435}},nil}c["4% additional Physical Damage Reduction while affected by Herald of Purity"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofPurity"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}},nil}c["8% increased Physical Damage for each time you've Blocked in the past 10 seconds"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}}," for each time you've Blocked in the past 10 seconds "}c["+1 to maximum Energy Shield per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil}c["25% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=25}},nil}c["-10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=-10}},nil}c["5% additional Physical Damage Reduction while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=5}},nil}c["Remove Bleeding when you use a Life Flask"]={nil,"Remove Bleeding when you use a Life Flask "}c["+500 to Accuracy against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="Accuracy",type="BASE",value=500}},nil}c["13% reduced Mana Cost of Minion Skills"]={{[1]={[1]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-13}},nil}c["Passives in radius are Conquered by the Eternal Empire Historic"]={nil,"Passives in radius are Conquered by the Eternal Empire Historic "}c["Adds 1 to 32 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=32}},nil}c["Socketed Gems are Supported by level 17 Increased Minion Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=17,skillId="SupportMinionDamage"}}},nil}c["Recover 5% of Maximum Life on Kill Recover 5% of Maximum Energy Shield on Kill"]={nil,"Recover 5% of Maximum Life on Kill Recover 5% of Maximum Energy Shield on Kill "}c["21% increased maximum Life, Mana and Global Energy Shield Transfiguration of Soul"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Life",type="INC",value=21}}," , Mana and Energy Shield Transfiguration of Soul "}c["50% reduced Mana Cost of Skills while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-50}},nil}c["+45% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=45}},nil}c["3% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Adds 3 to 7 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=3},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=7}},nil}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=60}}," for each 200 total Mana you have Spent Recently "}c["Adds 13 to 19 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=19}},nil}c["40% chance to Shock Attackers for 4 seconds on Block"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=40}}," Attackers for 4 seconds on Block "}c["+1 to Melee range with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1}},nil}c["Nearby Enemies are Hindered, with 25% reduced Movement Speed 80% increased Damage against Hindered Enemies"]={nil,"Nearby Enemies are Hindered, with 25% reduced Movement Speed 80% increased Damage against Hindered Enemies "}c["30% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="MovementSpeed",type="INC",value=30}}," for 9 seconds on Throwing a "}c["+20% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=20}},nil}c["+18% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=18}},nil}c["Ignited Enemies Burn 50% faster"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnFaster",type="INC",value=50}},nil}c["Gain Arcane Surge when your Trap is Triggered by an Enemy"]={nil,"Gain Arcane Surge when your Trap is Triggered by an Enemy "}c["15% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=15}},nil}c["40% chance to Chill Attackers for 4 seconds on Block"]={{}," to Chill Attackers for 4 seconds on Block "}c["10% chance to gain an Endurance Charge when you are Hit Enemies have -5% to Total Physical Damage Reduction against your Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=10}}," to gain an Endurance Charge when you are Hit Enemies have -5% to Total against your Hits "}c["Traps and Mines deal 5 to 15 additional Physical Damage"]={{[1]={flags=0,keywordFlags=12288,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=12288,name="PhysicalMax",type="BASE",value=15}},nil}c["Adds 11 to 29 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=11},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=29}},nil}c["3% increased Area of Effect per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=3}},nil}c["8% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil}c["Adds 350 to 500 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=350},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=500}},nil}c["36% increased Movement Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=36}},nil}c["800% more Unarmed Physical Damage"]={{[1]={flags=16777220,keywordFlags=0,name="PhysicalDamage",type="MORE",value=800}},nil}c["+5% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=5}},nil}c["You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner You and nearby Allies have 12% increased Movement Speed"]={nil,"You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner You and nearby Allies have 12% increased Movement Speed "}c["60% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=60}},nil}c["Your Critical Strikes have a 5% chance to deal Double Damage 40% increased Critical Strike Chance"]={nil,"Your Critical Strikes have a 5% chance to deal Double Damage 40% increased Critical Strike Chance "}c["Minions Leech 0.4% of Damage as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.4}}}},nil}c["190% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=190}},nil}c["25% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["25% increased Fortify duration"]={{[1]={flags=0,keywordFlags=0,name="FortifyDuration",type="INC",value=25}},nil}c["15% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=15}},nil}c["60% increased Critical Strike Chance with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="CritChance",type="INC",value=60}},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}c["8% additional chance to Block when in Off Hand"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["25% increased Damage with Hits and Ailments against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=25}},nil}c["0% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=0}},nil}c["10% additional Physical Damage Reduction while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=10}},nil}c["Gain +10 Life when you Taunt an Enemy"]={nil,"Gain +10 Life when you Taunt an Enemy "}c["You gain Onslaught for 4 seconds on Kill while affected by Haste You have Phasing while affected by Haste"]={nil,"You gain Onslaught for 4 seconds on Kill while affected by Haste You have Phasing while affected by Haste "}c["135% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=135}},nil}c["25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=25}}," for each 200 total Mana you have Spent Recently, up to 2000% "}c["Consecrated Ground created by this Flask has Tripled Radius"]={nil,"Consecrated Ground created by this Flask has Tripled Radius "}c["+25% to Fire Resistance while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25}},nil}c["100 Life Regenerated per Second while you have Avian's Flight"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sFlight"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["+30 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=30}},nil}c["20% chance to Impale Enemies on Hit with Attacks Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour You and nearby Allies deal 6 to 12 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=65536,name="Armour",type="BASE",value=20}}," to Impale Enemies on Hit Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to You and nearby Allies deal 6 to 12 added Physical Damage for\neach Impale on Enemy "}c["6% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=6}},nil}c["70% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["Rampage 2% increased Area of Effect per 25 Rampage Kills"]={nil,"Rampage 2% increased Area of Effect per 25 Rampage Kills "}c["25% more chance to Evade Melee Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="MeleeEvadeChance",type="MORE",value=25}},nil}c["Attacks with Melee Weapons deal 12% increased Damage with Ailments"]={{[1]={flags=33556480,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["14% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance 20% increased Elemental Damage during any Flask Effect 20% increased Elemental Damage with Attack Skills"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8192,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-10}}," Reflected Damage Penetrates 5% Elemental Resistance 20% increased Elemental Damage 20% increased Elemental Damage with Attack Skills "}c["Spreads Tar when you take a Critical Strike"]={nil,"Spreads Tar when you take a Critical Strike "}c["10 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=10}},nil}c["Adds 400 to 600 Physical Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="PhysicalMin",type="BASE",value=400},[2]={flags=0,keywordFlags=131072,name="PhysicalMax",type="BASE",value=600}},nil}c["100% increased Physical Damage while you have Resolute Technique Elder Item"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}}," while you have Resolute Technique Elder Item "}c["Hatred has 60% increased Aura Effect"]={{[1]={[1]={skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["+2 seconds to Avian's Might Duration"]={{[1]={[1]={skillName="Aspect of the Avian",type="SkillName"},flags=0,keywordFlags=0,name="PrimaryDuration",type="BASE",value=2}},nil}c["+24 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24}},nil}c["100% increased Claw Physical Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil}c["8% increased Spell Damage per 5% Block Chance"]={{[1]={[1]={div=5,stat="BlockChance",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["10% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-10}},nil}c["40% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["+20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}},nil}c["Bleeding you inflict deals Damage 15% faster"]={{[1]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=15}},nil}c["50% increased Spell Damage while no Mana is Reserved"]={{[1]={[1]={stat="ManaReserved",threshold=0,type="StatThreshold",upper=true},flags=2,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells"]={nil,"With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells "}c["12% increased Attack Speed with Bows"]={{[1]={flags=131077,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["0.6% of Attack Damage Leeched as Life against Chilled enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=0.6}},nil}c["+61% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=61}},nil}c["15% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=15}},nil}c["8% of maximum Life taken as Chaos Damage per second"]={{[1]={[1]={div=1,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=0.08}},nil}c["Regenerate 0.6% of Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=0.6}},nil}c["Regenerate 1.5% of Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1.5}},nil}c["24% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["1% of Damage dealt by your Totems is Leeched to you as Life"]={{[1]={flags=0,keywordFlags=16384,name="DamageLifeLeechToPlayer",type="BASE",value=1}},nil}c["25% chance to inflict Brittle Cannot inflict Freeze or Chill"]={{}," to inflict Brittle Cannot inflict Freeze or Chill "}c["Arrow can inflict an additional Ignite on an Enemy"]={nil,"Arrow can inflict an additional Ignite on an Enemy "}c["Axe Attacks deal 8% increased Damage with Hits and Ailments"]={{[1]={flags=65536,keywordFlags=786432,name="Damage",type="INC",value=8}},nil}c["Enemies you hit are destroyed on Kill"]={nil,"Enemies you hit are destroyed on Kill "}c["You have Fortify during Effect of any Life Flask"]={nil,"You have Fortify during Effect of any Life Flask "}c["Poison you inflict with Critical Strikes deals 30% more Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=1048576,name="Damage",type="MORE",value=30}},nil}c["Replenishes Energy Shield by 4% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block "}c["20% increased Attack Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["15% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}c["You gain 4% increased Area of Effect for each Mine 20% increased Mine Throwing Speed if you Detonated Mines Recently 40% increased Damage if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},[2]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=4}},"% increased for each 20% increased Mine Throwing Speed 40% increased Damage "}c["8% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["8% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=8}},nil}c["260% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=260}},nil}c["15% increased Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["10% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=10}},nil}c["Adds 12 to 30 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=12},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=30}},nil}c["When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage"]={nil,"When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage "}c["+55% to Fire Resistance while affected by Herald of Ash"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAsh"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=55}},nil}c["Shocked Enemies you Kill Explode, dealing 10% of Shocked Enemies you Kill Explode, dealing 5% of"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of Shocked Enemies you Kill Explode, dealing 5% of "}c["No Life Recovery Applies during Flask effect"]={nil,"No Life Recovery Applies during Flask effect "}c["Adds 10 to 23 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=23}},nil}c["10% chance to gain an Endurance Charge on Melee Critical Strike 30% increased Damage with Ailments from Attack Skills while wielding a Staff +1 to Melee range with Staves"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain an Endurance Charge on Critical Strike 30% increased with Ailments from Attack Skills +1 to Melee range with Staves "}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=60}}," for each 200 total Mana you have Spent Recently "}c["165% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=165}},nil}c["5% reduced Area Damage taken from Hits 10% increased Area of Effect if you have Stunned an Enemy Recently"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits 10% increased Area of Effect if you have Stunned an Enemy Recently "}c["33% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=33}},nil}c["6% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=6}},nil}c["+150 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=150}},nil}c["20% less Minimum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-20}}," Minimum "}c["20% increased Maximum total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=20}},nil}c["20% increased Mine Duration"]={{[1]={flags=0,keywordFlags=0,name="MineDuration",type="INC",value=20}},nil}c["Gains no Charges during Effect of any Overflowing Chalice Flask"]={nil,"Gains no Charges during Effect of any Overflowing Chalice Flask "}c["12% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil}c["75% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=75}}," of Shrine Buffs on you "}c["50% increased Damage with Bleeding you inflict on Maimed Enemies"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=50}}," you inflict on Maimed Enemies "}c["Nearby Enemies have 18% increased Effect of Curses on them"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=18}}}},nil}c["16% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil}c["40% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=40}},nil}c["+12% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=12}},nil}c["0.5% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.5}},nil}c["15% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=15}},nil}c["Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second"]={{[1]={[1]={limit=10,limitTotal=true,type="Multiplier",var="MineDetonatedRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["14% increased Melee Physical Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["13% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=13}},nil}c["You gain 4% increased Area of Effect for each Mine 20% increased Mine Throwing Speed if you Detonated Mines Recently 40% increased Damage if you Detonated Mines Recently Mines have 20% increased Detonation Speed"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},[2]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=4}},"% increased for each 20% increased Mine Throwing Speed 40% increased Damage Mines have 20% increased Detonation Speed "}c["+18 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=18}},nil}c["20% reduced Chill Duration on You 50% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=-20}}," on You 50% chance to Avoid being Chilled "}c["Adds 64 to 96 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=64},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=96}},nil}c["Grants Level 20 Summon Petrification Statue Skill 250% increased Energy Shield"]={nil,nil}c["15% increased Movement Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["180% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=180}},nil}c["5% reduced Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-5}},nil}c["4% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}},nil}c["12% increased Elemental Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["Regenerate 1.5% of Life per second while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}},nil}c["500% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=500}},nil}c["Attacks used by Totems have 5% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=5}},nil}c["125% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=125}},nil}c["Timeless Jewel"]={nil,"Timeless Jewel "}c["Your spells have 100% chance to Shock against Frozen enemies"]={nil,"Your spells have 100% chance to Shock against Frozen enemies "}c["40% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=40}},nil}c["100% increased Charges gained by Other Flasks during Flask Effect"]={{}," Charges gained by Other Flasks "}c["3% increased Attack Speed with Wands"]={{[1]={flags=8388613,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["74% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=74}},nil}c["Adds 23 to 35 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=35}},nil}c["Cannot be Stunned if you have at least 10 Crab Barriers"]={{[1]={[1]={stat="CrabBarriers",threshold=10,type="StatThreshold"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["0.6% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.6}},nil}c["Your Lightning Damage can Ignite"]={{[1]={flags=0,keywordFlags=0,name="LightningCanIgnite",type="FLAG",value=true}},nil}c["Recover 50 Life when you Block 50% increased Defences from Equipped Shield +5% Chance to Block Attack Damage while holding a Shield"]={nil,"Recover 50 Life when you Block 50% increased Defences from Equipped Shield +5% Chance to Block Attack Damage while holding a Shield "}c["+500 to Armour per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=500}},nil}c["50% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-50}},nil}c["19% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=19}},nil}c["+20 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}},nil}c["Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second Regenerate 1% of Life per Second for each Trap Triggered Recently, up to 10% per second"]={nil,"Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second Regenerate 1% of Life per Second for each Trap Triggered Recently, up to 10% per second "}c["25% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["60% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=60}}," applied to s "}c["Minions have 80% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=80}}}},nil}c["20% increased Movement Speed while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["+13% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=13}},nil}c["25% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["25% increased Attack Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["Your Aura Buffs do not affect allies"]={{[1]={flags=0,keywordFlags=0,name="SelfAurasCannotAffectAllies",type="FLAG",value=true}},nil}c["Adds 388 to 584 Physical Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="PhysicalMin",type="BASE",value=388},[2]={flags=0,keywordFlags=131072,name="PhysicalMax",type="BASE",value=584}},nil}c["Recover 5% of Maximum Energy Shield on Kill -4% to all Resistances for each Equipped Corrupted Item"]={nil,"Recover 5% of Maximum Energy Shield on Kill -4% to all Resistances for each Equipped Corrupted Item "}c["25% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=25}},nil}c["8% increased Effect of non-Damaging Ailments per Elder Item Equipped"]={{[1]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=8},[2]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=8},[3]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=8}},nil}c["Warcries count as having 10 additional nearby Enemies"]={nil,"Warcries count as having 10 additional nearby Enemies "}c["30% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["You gain Onslaught for 2 seconds on Killing Taunted Enemies"]={nil,"You gain Onslaught for 2 seconds on Killing Taunted Enemies "}c["20% increased Mine Laying Speed if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=20}},nil}c["Critical Strikes deal no Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=-100}},nil}c["14% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["15% increased Damage taken while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=15}},nil}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently 2% of Life Regenerated per second if you've Taunted an Enemy Recently"]={{}," "}c["+30% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=30}},nil}c["+10% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=10}},nil}c["Gain Her Blessing for 3 seconds when you Ignite an Enemy"]={nil,"Gain Her Blessing for 3 seconds when you Ignite an Enemy "}c["+52% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=52}},nil}c["25% more Damage with Hits and Ailments against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=786432,name="Damage",type="MORE",value=25}},nil}c["20% increased Damage with Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="Damage",type="INC",value=20}},nil}c["10% chance to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy"]={{}," to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy "}c["Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 2% of Armour when you Block "}c["6% increased Accuracy Rating with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["Adds 330 to 480 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=330},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=480}},nil}c["15% more Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="MORE",value=15}},nil}c["Enemies you Kill have a 20% chance to Explode, dealing a quarter"]={nil,"Enemies you Kill have a 20% chance to Explode, dealing a quarter "}c["+15% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil}c["30% slower start of Energy Shield Recharge during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=-30}},nil}c["22% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=22}},nil}c["20% reduced Mana Cost of Skills when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-20}},nil}c["+5 to Armour per 5 Evasion Rating on Equipped Shield"]={{[1]={[1]={div=5,stat="EvasionOnWeapon 2",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=5}},nil}c["130% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=130}},nil}c["250% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=250}},nil}c["+50 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=50}},nil}c["15% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=15},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=15}},nil}c["100% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=100}},nil}c["Adds 14 to 28 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=14},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=28}},nil}c["15% chance for Flasks you use to not consume Charges"]={{}," for Flasks you use to not consume Charges "}c["Strike Skills also target the previous location they were Used"]={nil,"Strike Skills also target the previous location they were Used "}c["+231 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=231}},nil}c["Adds 19-29 Chaos Damage to Attacks while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=19},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=29}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={type="Condition",var="OffHandAttack"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill 10% more while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges "}c["Adds 11 to 23 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=11},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=23}},nil}c["Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength"]={{[1]={flags=0,keywordFlags=0,name="StrDmgBonusRatioOverride",type="BASE",value=0.3}},nil}c["10% reduced Enemy Stun Threshold with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["Adds 110 to 170 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=110},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=170}},nil}c["175% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=175}},nil}c["Adds 100 to 370 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=370}},nil}c["Shock Enemies as though dealing 300% more Damage Your Shocks can increase Damage taken by up to a maximum of 100%"]={nil,"Shock Enemies as though dealing 300% more Damage Your Shocks can increase Damage taken by up to a maximum of 100% "}c["2% chance to deal Double Damage per Grasping Vine"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=2}}," per Grasping Vine "}c["4% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=4}},nil}c["12% increased Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Skills which throw Traps have Blood Magic"]={{[1]={[1]={skillType=37,type="SkillType"},flags=0,keywordFlags=0,name="BloodMagic",type="FLAG",value=true}},nil}c["Uses both hand slots 300% increased Physical Damage"]={nil,"Uses both hand slots 300% increased Physical Damage "}c["140% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=140}},nil}c["+40% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=40}},nil}c["+10 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["Adds 1 to 50 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=50}},nil}c["+23% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=23}},nil}c["14% increased Damage while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=0,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["+35 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=35}},nil}c["+45% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=45}},nil}c["25% chance to gain an Endurance Charge when you Stun an Enemy 10% increased Stun Duration on Enemies per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=25}}," to gain an Endurance Charge when you Stun an Enemy 10% increased "}c["+2 to Level of all Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="active_skill"},value=2}}},nil}c["2% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=2}},nil}c["+25 to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}},nil}c["Minions have +15% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}}}},nil}c["+20% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["+100 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=100}},nil}c["129% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=129}},nil}c["57% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=57}},nil}c["+25% to Critical Strike Multiplier with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["+31 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=31}},nil}c["Socketed Gems are Supported by level 8 Trap"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=8,skillId="SupportTrap"}}},nil}c["+38 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=38}},nil}c["15% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=15}}," while Elusive 8% reduced Damage taken while Elusive "}c["Adds 24 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["+111 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=111}},nil}c["Adds 23 to 31 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=31}},nil}c["Adds 15 to 28 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=28}},nil}c["172% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=172}},nil}c["+2 to Level of Socketed Minion Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="minion",value=2}}},nil}c["24% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["30% increased Mana Regeneration Rate per Raised Spectre"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}}}}," per "}c["Cannot take Reflected Elemental Damage 40% increased Effect of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10%"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10% "}c["-4 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-4}}," from Attacks "}c["40% increased Evasion Rating while you have Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil}c["Regenerate 1.4% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.4}},nil}c["0% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=0}},nil}c["4% chance to Dodge Spell Hits"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=4}},nil}c["+69 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=69}},nil}c["+10% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=10}},nil}c["+12% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=12}},nil}c["+63 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=63}},nil}c["100% of Cold Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsFire",type="BASE",value=100}},nil}c["Armour received from Body Armour is doubled"]={{[1]={flags=0,keywordFlags=0,name="Unbreakable",type="FLAG",value=true}},nil}c["33% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=33}},nil}c["Gore Footprints"]={nil,"Gore Footprints "}c["Attacks with Two Handed Weapons deal 25% increased Damage with Hits and Ailments"]={{[1]={flags=268435456,keywordFlags=786432,name="Damage",type="INC",value=25}},nil}c["1% increased Cold Damage per 25 Strength"]={{[1]={[1]={div=25,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=1}},nil}c["+17 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=17}},nil}c["18% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["+23 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=23}},nil}c["Minions deal 18% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}}},nil}c["74% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=74}},nil}c["74% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=74}},nil}c["+44 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=44}},nil}c["74% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=74}},nil}c["+48 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=48}},nil}c["30% increased Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=30}},nil}c["Adds Knockback during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["+48 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=48}},nil}c["Projectile Damage increased by 50% of Arrow Pierce Chance Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce"]={nil,"Projectile Damage increased by 50% of Arrow Pierce Chance Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce "}c["Dagger Attacks deal 20% increased Damage with Ailments"]={{[1]={flags=526336,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Gain Arcane Surge when you deal a Critical Strike"]={nil,"Gain Arcane Surge when you deal a Critical Strike "}c["+300 Armour per active Totem Blood Magic"]={{[1]={flags=0,keywordFlags=16384,name="Armour",type="BASE",value=300}}," per active Blood Magic "}c["+38 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=38}},nil}c["+2 to Level of Socketed Lightning Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="lightning",value=2}}},nil}c["2% chance to Dodge Spell Hits"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=2}},nil}c["Reflects 70 Physical Damage to Melee Attackers"]={{},nil}c["+1 to Maximum number of Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil}c["550% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=550}},nil}c["40% increased Duration of Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=40},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=40},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=40},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=40},[5]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=40},[6]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=40}},nil}c["600% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=600}},nil}c["You can only Socket Corrupted Gems in this item"]={nil,"You can only Socket Corrupted Gems in this item "}c["23% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=23}},nil}c["25% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a "}c["50% increased Melee Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=256,keywordFlags=262144,name="Damage",type="INC",value=50}},nil}c["Ignite a nearby Enemy on Killing an Ignited Enemy Ignites all nearby Enemies on Killing an Ignited Enemy"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy Ignites all nearby Enemies on Killing an Ignited Enemy "}c["20% increased Poison Duration if you have at least 150 Intelligence"]={{[1]={[1]={stat="Int",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=20}},nil}c["475% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=475}},nil}c["15% increased Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=15}},nil}c["20% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}," while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect "}c["You and your Totems Regenerate 1% of Life per second for each Summoned Totem"]={{[1]={[1]={stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1},[2]={flags=0,keywordFlags=16384,name="LifeRegenPercent",type="BASE",value=1}},nil}c["15% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a "}c["-18 Physical Damage taken from Attacks 15% chance to gain a Power Charge on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="PhysicalDamageTaken",type="BASE",value=-18}}," from Attacks 15% chance to gain a Power Charge on Throwing a "}c["-18 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-18}}," from Attacks "}c["Immune to Freeze, Chill, Curses and Stuns during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidFreeze",type="BASE",value=100},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidChill",type="BASE",value=100},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidCurse",type="BASE",value=100},[4]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["28% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=28}},nil}c["Grants level 25 Bear Trap Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="BearTrap"}}},nil}c["Reflects 260 Physical Damage to Melee Attackers"]={{},nil}c["You always Ignite while Burning"]={{[1]={[1]={type="Condition",var="Burning"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=100}},nil}c["8% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-8}},nil}c["10% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=10}},nil}c["0.2% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.2}},nil}c["20% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=20}},nil}c["25% chance to avoid Fire Damage when Hit"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=25}}," to avoid when Hit "}c["10% chance to grant a Power Charge to nearby Allies on Kill 5% chance to grant a Frenzy Charge to nearby Allies on Hit"]={{}," to grant a Power Charge to nearby Allies on Kill 5% chance to grant aCharge to nearby Allies on Hit "}c["30% increased Trap Trigger Radius"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=30}}," Trigger "}c["or Unique Enemy Gain Onslaught for 10 seconds on Kill"]={nil,"or Unique Enemy Gain Onslaught for 10 seconds on Kill "}c["You Cannot Be Shocked While Chilled"]={nil,"You Cannot Be Shocked While Chilled "}c["10% increased Radius of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["+1 to maximum number of Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil}c["You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills"]={nil,"You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills "}c["12% increased Attack Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["70% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=70}},nil}c["200 Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},[2]={type="Condition",var="SkillCritRecently"},flags=0,keywordFlags=0,name="LightningDegen",type="BASE",value=200}},nil}c["+50 Mana gained when you Block +5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=50}}," gained when you Block +5% Chance to Block "}c["Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second Regenerate 1% of Life per Second for each Trap Triggered Recently, up to 10% per second 20% reduced Mana Cost of Skills that throw Traps 20% reduced Mana Reservation of Skills that throw Mines"]={nil,"Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second Regenerate 1% of Life per Second for each Trap Triggered Recently, up to 10% per second 20% reduced Mana Cost of Skills that throw Traps 20% reduced Mana Reservation of Skills that throw Mines "}c["+50 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=50}}," gained when you Block "}c["12% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Unaffected by Desecrated Ground"]={nil,"Unaffected by Desecrated Ground "}c["Gain Unholy Might during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}},nil}c["Maximum total Recovery per second from Life Leech is doubled. Life Regeneration has no effect."]={nil,"Maximum total Recovery per second from Life Leech is doubled. Life Regeneration has no effect. "}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently 2% of Life Regenerated per second if you've Taunted an Enemy Recently Enemies Taunted by you deal 10% less Damage with Hits and\nAilments against other targets"]={{}," Enemies Taunted by you deal 10% less and\nAilments against other targets "}c["3% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil}c["Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets "}c["Trigger Level 12 Lightning Bolt when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=12,skillId="LightningSpell"}}},nil}c["1% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["Adds 2 to 59 Lightning Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=2},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=59}},nil}c["50% reduced Freeze Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=-50}}," on You "}c["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite "}c["20 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=20}},nil}c["Denoted service of 8000 dekhara in the akhara of Deshret"]={nil,"Denoted service of 8000 dekhara in the akhara of Deshret "}c["Adds 5 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["Unaffected by Elemental Weakness while affected by Purity of Elements"]={nil,"Unaffected by Elemental Weakness while affected by Purity of Elements "}c["+1 to Melee range with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1}},nil}c["5% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5}},nil}c["80% of Block Chance applied to Spells +24% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=80}}," applied to s +24% chance to Block Spell Damage "}c["120% of Block Chance applied to Spells 80% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=120}}," applied to s 80% of Block Chance applied to Spells "}c["120% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=120}}," applied to s "}c["Shocked Enemies you Kill Explode, dealing 5% of"]={nil,"Shocked Enemies you Kill Explode, dealing 5% of "}c["18 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=18}},nil}c["Sword Attacks deal 15% increased Damage with Ailments"]={{[1]={flags=4196352,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["+5% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=5}},nil}c["+8% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=8}},nil}c["Socketed Gems have 25% reduced Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-25}}}},nil}c["+1 to Level of Aura Gems in this item +2 to Level of Socketed Aura Gems"]={{}," Level of Aura Gems in this item +2 to Level of Socketed Aura Gems "}c["225% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=225}},nil}c["11% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=11}},nil}c["Gain 8% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=8}},nil}c["30% Chance to gain Unholy Might on Block for 3 seconds"]={{}," to gain Unholy Might on Block for 3 seconds "}c["100% increased Global Armour when you have no Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Armour",type="INC",value=100}}," when you have no Energy Shield "}c["30% increased Damage when you have no Energy Shield 100% increased Global Armour when you have no Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," when you have no Energy Shield 100% increased Armour when you have no Energy Shield "}c["30% increased Damage when you have no Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," when you have no Energy Shield "}c["15% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["50% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["350% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=350}},nil}c["Totems gain +16% to all Elemental Resistances Brand Skills have 10% increased Duration"]={nil,"Totems gain +16% to all Elemental Resistances Brand Skills have 10% increased Duration "}c["30% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=30}},nil}c["+20% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=20}},nil}c["+8 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=8}},nil}c["100% increased Duration of Curses on you +5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=100}}," of Curses on you +5% Chance to Block "}c["20% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=20}},nil}c["100% increased Duration of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=100}}," of Curses on you "}c["Adds 43 to 113 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=43},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=113}},nil}c["Triggers Level 20 Cold Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ColdAegis"}}},nil}c["Adds 4 to 8 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=8}},nil}c["+30% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=30}},nil}c["30% increased Mine Duration"]={{[1]={flags=0,keywordFlags=0,name="MineDuration",type="INC",value=30}},nil}c["+36% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=36}},nil}c["Adds 41 to 123 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=41},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=123}},nil}c["You gain 500 Evasion Rating when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=500}},nil}c["Socketed Gems Reserve No Mana"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=-100}},nil}c["Adds 13 to 31 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=31}},nil}c["20% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=20},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=20}},nil}c["120% of Block Chance applied to Spells when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=120}}," applied to s "}c["+1 to Level of Socketed Spell Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="spell",value=1}}},nil}c["Applies level 15 Punishment on Blocking a Melee Attack Applies level 15 Temporal Chains on Blocking a Projectile Attack"]={nil,"Applies level 15 Punishment on Blocking a Melee Attack Applies level 15 Temporal Chains on Blocking a Projectile Attack "}c["+33% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=33}},nil}c["40% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToCold",type="BASE",value=40}},nil}c["Critical Strikes ignore Enemy Monster Elemental Resistances"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="IgnoreElementalResistances",type="FLAG",value=true}},nil}c["+16% to Critical Strike Multiplier with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritMultiplier",type="BASE",value=16}},nil}c["20% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-20}},nil}c["2% increased Spell Damage per 100 Maximum Life"]={{[1]={[1]={div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=2}},nil}c["Attacks with this Weapon Penetrate 5% Elemental Resistances"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil}c["10% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["+18% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=18}},nil}c["60% of Block Chance applied to Spells +18% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=60}}," applied to s +18% chance to Block Spell Damage "}c["Spreads Tar when you Block If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"]={nil,"Spreads Tar when you Block If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second "}c["+12% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=12}},nil}c["+2 to Melee range with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2}},nil}c["Spreads Tar when you Block"]={nil,"Spreads Tar when you Block "}c["+3 to Level of Socketed Minion Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="minion",value=3}}},nil}c["13% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=13}},nil}c["120% increased Vaal Skill Critical Strike Chance"]={{[1]={flags=0,keywordFlags=256,name="CritChance",type="INC",value=120}},nil}c["+50% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=50}},nil}c["10% increased Effect of Auras on You"]={{[1]={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=10}},nil}c["When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage equal to 25% of Sacrificed Mana for 4 seconds"]={nil,"When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage equal to 25% of Sacrificed Mana for 4 seconds "}c["Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges "}c["20% chance to gain a Power Charge on Hit"]={{}," to gain a Power Charge on Hit "}c["+2 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=2}},nil}c["18% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=18}},nil}c["Adds 37 to 57 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=37},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=57}},nil}c["15% chance to Impale Enemies on Hit with Attacks 5% increased Impale Effect"]={{[1]={flags=0,keywordFlags=65536,name="FlaskEffect",type="BASE",value=15}}," to Impale Enemies on Hit 5% increased Impale "}c["+8% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["538% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=538}},nil}c["30% increased Attack Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["120% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=120}},nil}c["Auras from your Skills grant +1% Physical Damage Reduction to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}}},nil}c["+25% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently"]={{[1]={[1]={type="Condition",var="NonCritRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["Adds 39 to 60 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=39},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=60}},nil}c["+60 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=60}},nil}c["30% increased Fire Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="FireDamage",type="INC",value=30}},nil}c["25% increased Evasion Rating during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=25}},nil}c["Adds 3 to 47 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=47}},nil}c["Triggers Level 20 Reflection when Equipped"]={nil,nil}c["You lose all Endurance Charges at maximum Endurance Charges Cannot Block"]={nil,"You lose all Endurance Charges at maximum Endurance Charges Cannot Block "}c["50% reduced Maximum Recovery per Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechInstance",type="INC",value=-50}},nil}c["Reflect Shocks applied to you to all Nearby Enemies"]={nil,"Reflect Shocks applied to you to all Nearby Enemies "}c["Right ring slot: 3% of Energy Shield Regenerated per second"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=3}},nil}c["Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana Reflect Shocks applied to you to all Nearby Enemies"]={nil,"Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana Reflect Shocks applied to you to all Nearby Enemies "}c["+2 maximum Energy Shield per 5 Strength"]={{[1]={[1]={div=5,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=2}},nil}c["Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana"]={nil,"Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana "}c["8% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["+38% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=38}},nil}c["Gain 2 Power Charges on Using a Warcry"]={nil,"Gain 2 Power Charges on Using a Warcry "}c["5% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["1% increased Area of Effect of Area Skills per 20 Intelligence"]={{[1]={[1]={div=20,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=1}},nil}c["Spectres have 75% increased maximum Life"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=75}}}},nil}c["Adds 52 to 79 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=52},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=79}},nil}c["Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell 20% increased Spell Damage while you have Arcane Surge"]={nil,"Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell 20% increased Spell Damage while you have Arcane Surge "}c["40% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil}c["Lose all Divine Charges when you gain Divinity"]={nil,"Lose all Divine Charges when you gain Divinity "}c["20% increased Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=20}},nil}c["Projectile Attack Hits deal up to 50% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther"]={nil,"Projectile Attack Hits deal up to 50% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther "}c["Adds 1 to 24 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=24}},nil}c["Adds 12 to 16 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=16}},nil}c["50% increased Critical Strike Chance for Spells per Raised Spectre"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}}," per Raised Spectre "}c["Gain 25% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=25}},nil}c["Gain Arcane Surge when you deal a Critical Strike Your Raised Spectres also gain Arcane Surge when you do"]={nil,"Gain Arcane Surge when you deal a Critical Strike Your Raised Spectres also gain Arcane Surge when you do "}c["70% increased Damage with Hits and Ailments against Hindered Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Hindered"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=70}},nil}c["20% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=20}},nil}c["25% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=25}},nil}c["You take Chaos Damage instead of Physical Damage from Bleeding +25% chance to be Poisoned"]={nil,"You take Chaos Damage instead of Physical Damage from Bleeding +25% chance to be Poisoned "}c["Attacks with this Weapon have 108% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=108}},nil}c["30% less Damage with Hits"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="MORE",value=-30}},nil}c["50% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=50}},nil}c["18% increased Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["Adds 21 to 34 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=21},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=34}},nil}c["+3% to all maximum Resistances while Poisoned"]={{[1]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=3},[2]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=3}},nil}c["8% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=8}},nil}c["Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second Regenerate 1% of Life per Second for each Trap Triggered Recently, up to 10% per second 20% reduced Mana Cost of Skills that throw Traps"]={nil,"Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second Regenerate 1% of Life per Second for each Trap Triggered Recently, up to 10% per second 20% reduced Mana Cost of Skills that throw Traps "}c["Reflects 1 to 1000 Physical Damage to Attackers on Block"]={nil,"Reflects 1 to 1000 Physical Damage to Attackers on Block "}c["90% Increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=90}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently 15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage Cannot be Stunned if you haven't been Hit Recently Regenerate 15 Mana per second if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={neg=true,type="Condition",var="BeenHitRecently"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="LifeRecoveryRate",type="BASE",value=15},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={neg=true,type="Condition",var="BeenHitRecently"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="ManaRecoveryRate",type="BASE",value=15},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={neg=true,type="Condition",var="BeenHitRecently"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="EnergyShieldRecoveryRate",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage Cannot be Stunned Regenerate 15 Mana per second if you've used a Movement Skill Recently "}c["25% Increased Warcry Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=25}},nil}c["100% increased Physical Damage while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil}c["You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 4 seconds on Kill "}c["You gain Onslaught for 4 seconds on using a Warcry 25% Increased Warcry Effect"]={nil,"You gain Onslaught for 4 seconds on using a Warcry 25% Increased Warcry Effect "}c["You gain Onslaught for 4 seconds on using a Warcry"]={nil,"You gain Onslaught for 4 seconds on using a Warcry "}c["+50% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=50}},nil}c["100% Increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil}c["+15% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=15}},nil}c["50% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently"]={nil,"You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently "}c["Gain 13% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=13}},nil}c["-10% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-10}},nil}c["30% chance to gain an additional Vaal Soul on Kill Corrupted"]={{}," to gain an additional Soul on Kill Corrupted "}c["35% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=35}},nil}c["+33% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=33}},nil}c["Gain 15% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=15}},nil}c["10% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil}c["Adds 10 to 18 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=18}},nil}c["12% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=12}},nil}c["Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={nil,"Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["Chance to Block Spell Damage is Unlucky"]={nil,"Chance to Block Spell Damage is Unlucky "}c["Adds 12 to 20 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=20}},nil}c["120% of Block Chance applied to Spells when on Low Life +36% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},[2]={type="Condition",var="LowLife"},flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=120}}," applied to s +36% chance to Block Spell Damage "}c["1% of Damage Leeched as Life against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=1}},nil}c["60% increased Rarity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=60}},nil}c["0.2% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.2}},nil}c["90% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=90}},nil}c["10% Chance to Cause Monster to Flee on Block"]={{}," to Cause Monster to Flee on Block "}c["+45 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=45}},nil}c["Traps and Mines deal 4 to 13 additional Physical Damage"]={{[1]={flags=0,keywordFlags=12288,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=12288,name="PhysicalMax",type="BASE",value=13}},nil}c["10% chance to gain Unholy Might for 4 seconds on Critical Strike"]={{}," to gain Unholy Might for 4 seconds "}c["100% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=100}},nil}c["12% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=12}},nil}c["Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of "}c["20% chance to gain a Frenzy Charge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy "}c["Unaffected by Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="MORE",value=-100}},nil}c["Curse Reflection Unaffected by Curses"]={nil,"Curse Reflection Unaffected by Curses "}c["15% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="MovementSpeed",type="INC",value=15}}," for 9 seconds on Throwing a "}c["Curse Reflection"]={nil,"Curse Reflection "}c["20% additional Spell Block chance while Cursed"]={{[1]={[1]={type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil}c["Socketed Gems are Supported by level 20 Ignite Proliferation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportIgniteProliferation"}}},nil}c["Minions have 30% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=30}}}},nil}c["50% reduced Duration of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}}," of Curses on you "}c["+30 to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=30}},nil}c["+60 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=60}},nil}c["11% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=11}},nil}c["0.5% of Damage dealt by your Totems is Leeched to you as Life"]={{[1]={flags=0,keywordFlags=16384,name="DamageLifeLeechToPlayer",type="BASE",value=0.5}},nil}c["+4% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=4}},nil}c["8% additional Physical Damage Reduction while affected by Determination"]={{[1]={[1]={type="Condition",var="AffectedByDetermination"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=8}},nil}c["1% of Damage Leeched as Life for Skills used by Totems"]={{[1]={flags=0,keywordFlags=16384,name="DamageLifeLeech",type="BASE",value=1}},nil}c["0.5% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={nil,"lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield "}c["You lose all Endurance Charges when Hit You gain an Endurance Charge on Kill"]={nil,"You lose all Endurance Charges when Hit You gain an Endurance Charge on Kill "}c["200% increased Armour against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}}," against Projectiles "}c["100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="MORE",value=100}}," from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage "}c["0.5% of Spell Damage Leeched as Life while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=2,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.5}},nil}c["-80 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-80}}," from Projectile Attacks "}c["80% reduced Trap Duration"]={{[1]={flags=0,keywordFlags=0,name="TrapDuration",type="INC",value=-80}},nil}c["-10 Physical Damage taken from Projectile Attacks -80 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-10}}," from Projectile Attacks -80 Physical Damage taken from Projectile Attacks "}c["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled 10% increased Effect of Chill"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled 10% increased Effect of Chill "}c["50% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=50}},nil}c["58% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=58}},nil}c["43% increased Damage with Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="Damage",type="INC",value=43}},nil}c["Right ring slot: You cannot Regenerate Mana Right ring slot: 4% of Energy Shield Regenerated per second"]={nil,"You cannot Regenerate Mana Right ring slot: 4% of Energy Shield Regenerated per second "}c["+1 to Level of Socketed Warcry Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="warcry",value=1}}},nil}c["5% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=5}},nil}c["+90 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=90}},nil}c["100% increased Critical Strike Chance against Enemies that are affected by no Elemental Ailments"]={{[1]={[1]={actor="enemy",neg=true,type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"}},[2]={type="Condition",var="Effective"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=100}},nil}c["Projectiles Pierce 5 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=5}},nil}c["Triggers Level 20 Elemental Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ElementalAegis"}}},nil}c["+4% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["Removes 1% of maximum Energy Shield on Kill"]={nil,"Removes 1% of maximum Energy Shield on Kill "}c["+5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["-25 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-25}}," from Projectile Attacks "}c["10% chance to gain Elusive on Kill 25% increased Elusive Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="BASE",value=10}}," to gain Elusive on Kill 25% increased Elusive "}c["Adds 14 to 33 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=14},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=33}},nil}c["10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit "}c["+1.8% to Critical Strike Chance while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1.8}},nil}c["5% chance to Curse Enemies with Enfeeble on Hit 10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit 10% chance to Curse Enemies with Enfeeble on Hit "}c["Adds 15 to 35 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=15},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=35}},nil}c["Adds 10 to 25 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=25}},nil}c["+73 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=73}},nil}c["+2 to Melee Strike Range with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={flags=1048580,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}c["+120 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=120}},nil}c["+1500 Armour if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1500}},nil}c["170% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=170}},nil}c["Grants level 30 Reckoning Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="Reckoning"}}},nil}c["Minions deal 20% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}},nil}c["+1000 Armour if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}},nil}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds "}c["Minions have +40% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=40}}}},nil}c["8% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["-5% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-5}},nil}c["+60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently"]={{[1]={[1]={type="Condition",var="NonCritRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=60}},nil}c["28% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=28}},nil}c["Adds 8 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["3% increased Cast Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Hits with this Weapon deal 60% increased Damage to Shocked Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Shocked"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=60}},nil}c["40% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-40}},nil}c["+8 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=8}}," gained when you Block "}c["to surrounding targets"]={nil,"to surrounding targets "}c["+23 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=23}},nil}c["also grant an equal chance to gain a Power Charge on Kill"]={nil,"also grant an equal chance to gain a Power Charge on Kill "}c["Minions deal 25% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=25}}}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},[2]={stat="PowerCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=25}}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}c["During Flask Effect, Damage Penetrates 15% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={stat="LightningResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},[2]={stat="LightningResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=15},[2]={[1]={stat="ColdResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="ColdResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=15},[3]={[1]={stat="FireResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="FireResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},nil}c["Minions Regenerate 1.5% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}}}},nil}c["35% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=35}},nil}c["+40 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}}," gained when you Block "}c["Sword Attacks deal 10% increased Damage with Ailments"]={{[1]={flags=4196352,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["20% increased total Recovery per second from Mana Leech"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=20}},nil}c["Minions Recover 1% of their Maximum Life when they Block"]={nil,"Recover 1% of their Maximum Life when they Block "}c["0.2% of Attack Damage Leeched as Mana per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.2}},nil}c["Mace, Sceptre or Staff Attacks deal 30% increased Damage with Hits and Ailments"]={{[1]={[1]={modFlags=3145728,type="ModFlagOr"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=30}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline "}c["+55% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=55}}," Non-Ailment "}c["1% additional Physical Damage Reduction per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30%"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% "}c["0.4% of Physical Attack Damage Leeched as Mana per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.4}},nil}c["Vaal Skills deal 40% more Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=256,name="Damage",type="MORE",value=40}},nil}c["23% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=23}},nil}c["35% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"]={nil,"Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration "}c["+38 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=38}},nil}c["Immune to Freeze while affected by Purity of Ice"]={nil,"Immune to Freeze while affected by Purity of Ice "}c["25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges"]={{}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges "}c["10% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=10}},nil}c["33% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,keywordFlags=0,name="Damage",type="INC",value=33}},nil}c["Adds 4 to 8 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},nil}c["Adds 2 to 3 Physical Damage to Attacks per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=2},[2]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=3}},nil}c["+15 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=15}},nil}c["Adds 7 to 12 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},nil}c["Can Allocate Passives from the Duelist's starting point"]={{},nil}c["Mace or Sceptre Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=1048576,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["85% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=85}},nil}c["20% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["2 additional Projectiles if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["Right ring slot: You cannot Regenerate Mana"]={nil,"You cannot Regenerate Mana "}c["Take 5 Physical Damage when hit by Attacks"]={nil,"5 Physical Damage when hit by Attacks "}c["74% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=74}},nil}c["Adds 3 to 72 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=72}},nil}c["+1 to Maximum Life per 2 Intelligence"]={{[1]={[1]={div=2,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil}c["Adds 1 to 80 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=80}},nil}c["40% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil}c["Cannot be Frozen, Chilled or Ignited with Her Blessing 20% increased Attack and Movement Speed with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing 20% increased Attack and Movement Speed with Her Blessing "}c["80% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=80}},nil}c["10% chance to Trigger Level 8 Summon Raging Spirit on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=8,skillId="SummonRagingSpirit"}}},nil}c["-20% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-20}},nil}c["10% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=10}},nil}c["Adds 6 to 66 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=66}},nil}c["Enemies you Curse are Hindered, with 15% reduced Movement Speed"]={nil,"Enemies you Curse are Hindered, with 15% reduced Movement Speed "}c["Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy "}c["+4% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["24% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["18% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=18}},nil}c["+33 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=33}},nil}c["215% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=215}},nil}c["Adds 45 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=140}},nil}c["Ancestral Bond"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Ancestral Bond"}},nil}c["Gain 15% of Elemental Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=15}},nil}c["Adds 9 to 14 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=9},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=14}},nil}c["25% chance to Poison on Hit during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=25}},nil}c["+11% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=11}},nil}c["Adds 175 to 300 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=175},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=300}},nil}c["Adds 1 to 3 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=3}},nil}c["100% more Damage with Hits from Herald Skills"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="MORE",value=100}}," from Herald Skills "}c["Adds 1 to 200 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=200}},nil}c["Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances"]={nil,"Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances "}c["+31 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=31}},nil}c["15% chance to gain a Power Charge when your Trap is triggered by an Enemy"]={{}," to gain a Power Charge when your is triggered by an Enemy "}c["25 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=25}},nil}c["15% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Removes 1% of maximum Life on Kill Removes 1% of maximum Energy Shield on Kill"]={nil,"Removes 1% of maximum Life on Kill Removes 1% of maximum Energy Shield on Kill "}c["Uses both hand slots 90% increased Critical Strike Chance"]={nil,"Uses both hand slots 90% increased Critical Strike Chance "}c["2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20%"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=2}}," of Life and Energy Shield per Minion, up to 20% "}c["Axe Attacks deal 25% increased Damage with Ailments"]={{[1]={flags=67584,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["20% increased Critical Strike Chance for each Mine Detonated"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=20}}," for each Detonated "}c["+30% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritMultiplier",type="BASE",value=30}},nil}c["20% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil}c["40% increased Rarity of Items Dropped by Frozen Enemies 40% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=40}}," Rarity of Items Dropped by Frozen Enemies 40% increased "}c["1% increased Elemental Damage per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=1}},nil}c["Effects granted for having Rage are Tripled Cannot be Stunned while you have at least 25 Rage"]={nil,"Effects granted for having Rage are Tripled Cannot be Stunned while you have at least 25 Rage "}c["+1 to Maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=1}},nil}c["Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to enemies is gained as Life"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to enemies is gained as Life "}c["+15% to Weapon Critical Strike Multiplier while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Trigger Level 20 Arcane Wake after Spending a total of 200 Mana +300 to Accuracy Rating"]={nil,"Trigger Level 20 Arcane Wake after Spending a total of 200 Mana +300 to Accuracy Rating "}c["+1% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}}," for each time you've Blocked in the past 10 seconds "}c["30% chance to Avoid being Ignited"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=30}},nil}c["0.2% of Cold Damage Leeched as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageEnergyShieldLeech",type="BASE",value=0.2}},nil}c["16% Chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=16}},nil}c["+175 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=175}},nil}c["110% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=110}},nil}c["20% increased Effect of Chill you inflict with Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20}}," you inflict with Critical Strikes "}c["Adds 17 to 37 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=37}},nil}c["Projectiles gain Damage as they travel farther, dealing up to 40% increased Damage with Hits to targets"]={{[1]={[1]={ramp={[1]={[1]=35,[2]=0},[2]={[1]=70,[2]=1}},type="DistanceRamp"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["+30 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=30}},nil}c["100% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=100}},nil}c["10% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=10}},nil}c["Adds 190 to 220 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=190},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=220}},nil}c["+14% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=14}},nil}c["30% chance to Cast Socketed Spells when you Spend at least 100 Mana to Use a Skill"]={{[1]={flags=2,keywordFlags=0,name="Mana",type="BASE",value=30}}," to Cast Socketed s when you Spend at least 100 to Use a Skill "}c["With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy "}c["Adds 1 to 13 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=13}},nil}c["Insufficient Mana doesn't prevent your Melee Attacks"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks "}c["+15% to Critical Strike Multiplier against Taunted Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Taunted"},flags=0,keywordFlags=262144,name="CritMultiplier",type="BASE",value=15}},nil}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground "}c["20% chance to gain a Power Charge when you Block +6% Chance to Block Spell Damage while at Maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}}," to gain a Power Charge when you Block +6% Chance "}c["+90 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=90},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=90},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=90}},nil}c["Determination has 30% increased Aura Effect"]={{[1]={[1]={skillName="Determination",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["Grace has 30% increased Aura Effect"]={{[1]={[1]={skillName="Grace",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["Attacks with this Weapon Penetrate 30% Elemental Resistances"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=30}},nil}c["22% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=22}},nil}c["Totems Hinder Enemies near them when Summoned, with 25% reduced Movement Speed"]={nil,"Totems Hinder Enemies near them when Summoned, with 25% reduced Movement Speed "}c["350% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=350}},nil}c["Adds 10-20 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=20}},nil}c["Channelling Skills deal 20% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks You and nearby Allies have 8% increased Movement Speed"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks You and nearby Allies have 8% increased Movement Speed "}c["Socketed Gems are Supported by Level 18 Innervate"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportOnslaughtOnSlayingShockedEnemy"}}},nil}c["Mine Damage Penetrates 5% Elemental Resistances"]={{[1]={flags=0,keywordFlags=8192,name="ElementalPenetration",type="BASE",value=5}},nil}c["Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="MaximumEnduranceChargesIsMaximumFrenzyCharges",type="FLAG",value=true}},nil}c["Non-Unique Flasks applied to you have 10% increased Effect 5% increased Attack and Cast Speed during any Flask Effect"]={nil,"Non-Unique Flasks applied to you have 10% increased Effect 5% increased Attack and Cast Speed during any Flask Effect "}c["+8% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=8}},nil}c["50% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=50}},nil}c["With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 30 seconds on Kill"]={nil,"With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 30 seconds on Kill "}c["With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield"]={nil,"With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield "}c["Minions have 20% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}}},nil}c["Gain a Blitz Charge on Critical Strike"]={nil,"Gain a Blitz Charge on Critical Strike "}c["Projectiles gain Damage as they travel farther, dealing up"]={nil,"Projectiles gain Damage as they travel farther, dealing up "}c["20% of Block Chance applied to Spells +6% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," applied to s +6% chance to Block Spell Damage "}c["Recover 3% of Life when you lose a Spirit Charge Recover 3% of Energy Shield when you lose a Spirit Charge"]={nil,"Recover 3% of Life when you lose a Spirit Charge Recover 3% of Energy Shield when you lose a Spirit Charge "}c["Mace or Sceptre Attacks deal 10% increased Damage with Hits and Ailments"]={{[1]={flags=1048576,keywordFlags=786432,name="Damage",type="INC",value=10}},nil}c["8% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=8}},nil}c["25% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=25}},nil}c["60% increased Critical Strike Chance with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["Damage Penetrates 8% of Enemy Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=8}},nil}c["10% chance to Dodge Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=10}},nil}c["Socketed Gems are Supported by level 1 Reduced Mana"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="Unknown"}}},nil}c["20% increased Elemental Damage if you've Ignited an Enemy Recently"]={{[1]={[1]={type="Condition",var="IgnitedEnemyRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil}c["Can have up to 2 additional Traps placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTrapLimit",type="BASE",value=2}},nil}c["Socketed Gems have 50% reduced Mana Cost"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-50}}}},nil}c["Ignited Enemies you hit are destroyed on Kill"]={nil,"Ignited Enemies you hit are destroyed on Kill "}c["+30% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["You can only have one Non-Banner Aura on you from your Skills Non-Banner Aura Skills reserve no Mana"]={nil,"You can only have one Non-Banner Aura on you from your Skills Non-Banner Aura Skills reserve no Mana "}c["Lightning Skills have 10% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=64,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["140% increased Duration of Ailments you inflict while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=140},[2]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=140},[3]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=140},[4]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=140},[5]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=140},[6]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=140}},nil}c["+18 to Quality"]={{}," Quality "}c["15% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=15}},nil}c["Minions deal 70% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=70}}}},nil}c["Minions have 50% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}}}},nil}c["Golems have 25% increased Maximum Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=25}}}},nil}c["250% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=250}},nil}c["3% additional Physical Damage Reduction during Effect of any Life or Mana Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=3}}," of any Life or Mana Flask "}c["40% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=40}},nil}c["With at least 40 Strength in Radius, Ground Slam has a 35% chance to grant an Endurance Charge when you Stun an Enemy"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 35% chance to grant an Endurance Charge when you Stun an Enemy "}c["10% increased Damage per Summoned Golem 40% increased Effect of Buffs granted by your Golems"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}," per Summoned 40% increased Effect of Buffs granted by your Golems "}c["15% chance to gain a Power Charge on Throwing a Trap 25% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a 25% chance to gain a Power Charge on Throwing a Trap "}c["135% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=135}},nil}c["25% increased Fire Damage if you have used a Cold Skill Recently"]={{[1]={[1]={type="Condition",var="UsedColdSkillRecently"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=25}},nil}c["20% increased Stun Duration with Two Handed Melee Weapons on Enemies"]={{[1]={flags=301989892,keywordFlags=0,name="EnemyStunDuration",type="INC",value=20}},nil}c["20% increased Effect of Herald Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=20}}," of Herald Buffs on you "}c["2% increased Attack and Cast Speed for each corpse Consumed Recently"]={{[1]={[1]={type="Multiplier",var="CorpseConsumedRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["Curse Skills have 50% increased Skill Effect Duration"]={{[1]={[1]={skillType=32,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil}c["-30% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-30}},nil}c["Enemies you Curse take 5% increased Damage 5% chance to Dodge Attack Hits from Cursed Enemies"]={nil,"Enemies you Curse take 5% increased Damage 5% chance to Dodge Attack Hits from Cursed Enemies "}c["25% increased Damage for each Herald affecting you"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=25}}," for each Herald affecting you "}c["3% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=3}},nil}c["Channelling Skills have 6% increased Attack and Cast Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["Minions deal 20% increased Damage while you are affected by a Herald Minions have 10% increased Movement Speed for each Herald affecting you"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}}," while you are affected by a Herald Minions have 10% increased Movement Speed for each Herald affecting you "}c["Adds 105 to 253 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=105},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=253}},nil}c["30% of Lightning Damage is taken from Mana before Life when Hit"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=30}}," is taken from Mana before Life when Hit "}c["24% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=24}},nil}c["Enemies you Kill that are affected by Elemental Ailments grant 100% increased Flask Charges"]={nil,"Enemies you Kill that are affected by Elemental Ailments grant 100% increased Flask Charges "}c["Spell Skills have 5% increased Area of Effect"]={{[1]={flags=2,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["0.3% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.3}},nil}c["70% increased Spell Damage if your other Ring is an Elder Item"]={{[1]={[1]={type="Condition",var="ElderItemInRing {OtherSlotNum}"},flags=2,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["15% reduced Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=-15}},nil}c["+2 to Level of Socketed Vaal Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="vaal",value=2}}},nil}c["Chaos Skills have 50% increased Area of Effect"]={{[1]={flags=0,keywordFlags=128,name="AreaOfEffect",type="INC",value=50}},nil}c["30% Chance to Dodge Spell Hits"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=30}},nil}c["29% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=29}},nil}c["Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second for each Summoned Totem"]={nil,"Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second for each Summoned Totem "}c["Every 5 seconds, Regenerate 10% of Life over one second"]={nil,"Every 5 seconds, Regenerate 10% of Life over one second "}c["10% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block "}c["Adds 16 to 53 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=16},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=53}},nil}c["Socketed Gems are supported by level 20 Blind"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportBlind"}}},nil}c["You take no Extra Damage from Critical Strikes while Elusive"]={nil,"You take no Extra Damage from Critical Strikes while Elusive "}c["+300 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=300}},nil}c["270% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=270}},nil}c["+6% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil}c["2% of Life Regenerated per second with at least 400 Strength"]={{[1]={[1]={stat="Str",threshold=400,type="StatThreshold"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Minions have 25% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=25}}}},nil}c["Adds 157 to 210 Fire Damage to Hits with this Weapon against Blinded Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=458752,name="FireMin",type="BASE",value=157},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=458752,name="FireMax",type="BASE",value=210}},nil}c["If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second"]={nil,"If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second "}c["50% increased Elemental Ailment Duration on You You are Immune to Bleeding"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}}," Elemental Ailment on You You are Immune to Bleeding "}c["12% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}},nil}c["Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={div=1,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=0.3}}}},nil}c["31% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=31}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 12"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12 "}c["+10% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=10}},nil}c["Recover 50% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use "}c["Can have up to 1 additional Remote Mine placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveMineLimit",type="BASE",value=1}},nil}c["Summoned Skeletons have 10% chance to Wither Enemies for 2 seconds on Hit Summoned Skeletons have 30% of Physical Damage Converted to Chaos Damage"]={nil,"Summoned Skeletons have 10% chance to Wither Enemies for 2 seconds on Hit Summoned Skeletons have 30% of Physical Damage Converted to Chaos Damage "}c["22% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=22}},nil}c["Sword Attacks deal 20% increased Damage with Hits and Ailments"]={{[1]={flags=4194304,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["-2 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-2}}," from Attacks "}c["Deal up to 15% more Melee Damage to Enemies, based on proximity"]={nil,"Deal up to 15% more Melee Damage to Enemies, based on proximity "}c["16% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["6% reduced Damage taken if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-6}},nil}c["Attacks with One Handed Weapons deal 30% increased Damage with Ailments"]={{[1]={flags=134219776,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["You gain Onslaught for 5 seconds on using a Vaal Skill"]={nil,"You gain Onslaught for 5 seconds on using a Vaal Skill "}c["You gain a Power Charge on use You gain a Frenzy Charge on use"]={nil,"You gain a Power Charge on use You gain a Frenzy Charge on use "}c["120% increased Critical Strike Chance while you have Avatar of Fire 200% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=120}}," while you have Avatar of Fire 200% increased Critical Strike Chance while you have Avatar of Fire "}c["10% increased Attack Speed if you've Hit with your Main Hand Weapon Recently"]={{[1]={flags=8193,keywordFlags=0,name="Speed",type="INC",value=10}}," if you've Hit with your Main Hand Recently "}c["Enemies have -15% to Total Physical Damage Reduction against your Hits"]={{[1]={flags=0,keywordFlags=0,name="EnemyPhysicalDamageReduction",type="BASE",value=-15}},nil}c["Gain Rampage while at Maximum Endurances Charges"]={nil,"Gain Rampage while at Maximum Endurances Charges "}c["13% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=13}},nil}c["Gain 5% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=5}},nil}c["18% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["Mace or Sceptre Attacks deal 14% increased Damage with Hits and Ailments"]={{[1]={flags=1048576,keywordFlags=786432,name="Damage",type="INC",value=14}},nil}c["+25% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}},nil}c["8% increased Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["+20 Life gained on Kill per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=20}},nil}c["5% chance to Avoid Fire Damage when Hit"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=5}}," to Avoid when Hit "}c["20% less Minimum Physical Attack Damage 40% less Minimum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-20}}," Minimum 40% less Minimum Physical Attack Damage "}c["If you've Attacked Recently, you and nearby Allies have +10% Chance to Block Attack Damage"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}}},nil}c["26% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=26}},nil}c["Enemies inflict Elemental Ailments on you instead of nearby Allies"]={nil,"Enemies inflict Elemental Ailments on you instead of nearby Allies "}c["15% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=15}}," while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect "}c["Adds 1 to 20 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=20}},nil}c["20% reduced Mana Cost of Skills that throw Traps"]={{[1]={flags=0,keywordFlags=4096,name="ManaCost",type="INC",value=-20}},nil}c["Adds 6 to 13 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=13}},nil}c["Adds 20 to 30 Chaos Damage to Spells and Attacks while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=196608,name="ChaosMin",type="BASE",value=20},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=196608,name="ChaosMax",type="BASE",value=30}},nil}c["Attacks with Two Handed Melee Weapons deal 30% increased Damage with Ailments"]={{[1]={flags=301991936,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["25% increased Elemental Damage while affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}}," while affected by a Herald "}c["+1 to Melee range with Claws"]={{[1]={flags=262148,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1}},nil}c["10% increased Skeleton Attack Speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil}c["45% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=45}},nil}c["+8% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=8}},nil}c["+20% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=20}},nil}c["With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova"]={nil,"With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova "}c["Adds 145 to 200 Cold Damage to Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="ColdMin",type="BASE",value=145},[2]={flags=131076,keywordFlags=0,name="ColdMax",type="BASE",value=200}},nil}c["Minions have 25% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-25}}}},nil}c["Shocks you cause are reflected back to you"]={nil,"Shocks you cause are reflected back to you "}c["Grants level 12 Summon Stone Golem"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=12,skillId="SummonRockGolem"}}},nil}c["Grants level 20 Death Aura Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ChaosDegenAuraUnique"}}},nil}c["16% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Attacks with Two Handed Melee Weapons deal 24% increased Damage with Ailments"]={{[1]={flags=301991936,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["50% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=50}},nil}c["+2% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=2}},nil}c["Gain 18% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=18}},nil}c["Axe Attacks deal 15% increased Damage with Ailments"]={{[1]={flags=67584,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Regenerate 1% of Energy Shield per second if you’ve Cursed an Enemy Recently"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}}," if you’ve Cursed an Enemy Recently "}c["Auras from your Skills grant 0.2% of Life Regenerated per second to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}}}},nil}c["+10% to Critical Strike Multiplier with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["Attacks with Two Handed Melee Weapons deal 10% increased Damage with Ailments"]={{[1]={flags=301991936,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Your Spells are disabled"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true}},nil}c["33% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=33}},nil}c["2% chance to deal Double Damage per Grasping Vine 1% less Damage taken per Grasping Vine"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=2}}," per Grasping Vine 1% less Damage taken per Grasping Vine "}c["+55 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=55}},nil}c["43% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=43}},nil}c["Cannot Leech"]={nil,"Cannot Leech "}c["Socketed Gems are Supported by Level 18 Faster Casting"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportFasterCast"}}},nil}c["+5% to Damage over Time Multiplier for Ignite from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=4194304,name="DotMultiplier",type="BASE",value=5}},nil}c["5% increased Damage taken"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}},nil}c["+5% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["15% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=15}},nil}c["Hits that Stun Enemies have Culling Strike 22% increased Damage with Ailments from Attack Skills while wielding a Mace"]={nil,"Hits that Stun Enemies have Culling Strike 22% increased Damage with Ailments from Attack Skills while wielding a Mace "}c["20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill 20% more Damage taken if a Non-Vaal Guard Buff was lost Recently"]={{[1]={flags=0,keywordFlags=256,name="PhysicalDamageReduction",type="BASE",value=20}}," while affected by a Non- Guard Skill 20% more Damage taken if a Non-Vaal Guard Buff was lost Recently "}c["15% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Adds 125 to 265 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=125},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=265}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit "}c["Bleeding Enemies you Kill Explode, dealing 10% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of "}c["+15 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=15}},nil}c["Claw Attacks deal 25% increased Damage with Hits and Ailments"]={{[1]={flags=262144,keywordFlags=786432,name="Damage",type="INC",value=25}},nil}c["4% increased Attack Speed with Maces or Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["+2 to Level of Socketed Fire Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="fire",value=2}}},nil}c["30% chance to Avoid being Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=30}},nil}c["26% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=26}},nil}c["40% less Weapon Damage"]={{[1]={flags=8192,keywordFlags=0,name="Damage",type="MORE",value=-40}},nil}c["15 Mana Regenerated per Second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=15}},nil}c["4% increased Attack Speed with Daggers"]={{[1]={flags=524293,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Grants maximum Energy Shield equal to 10% of your Reserved Mana to you and nearby Allies"]={{[1]={flags=0,keywordFlags=0,name="GrantReservedManaAsAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=0.1}}}},nil}c["+10 Mana Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=10}},nil}c["Projectiles deal 15% increased Damage for each remaining Chain"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=15}}," for each remaining Chain "}c["Regenerate 1% of Energy Shield per second if you’ve Killed an Enemy Recently"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}}," if you’ve Killed an Enemy Recently "}c["+135 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=135}},nil}c["Enemies you Curse are Hindered, with 15% reduced Movement Speed Regenerate 1% of Energy Shield per second if you’ve Killed an Enemy Recently"]={nil,"Enemies you Curse are Hindered, with 15% reduced Movement Speed Regenerate 1% of Energy Shield per second if you’ve Killed an Enemy Recently "}c["2% increased Cast Speed per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=16,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["Socketed Gems are Supported by level 20 Increased Area of Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportIncreasedAreaOfEffect"}}},nil}c["Reflects 15 Fire Damage to Melee Attackers"]={nil,"Reflects 15 Fire Damage to Melee Attackers "}c["Attacks with One Handed Melee Weapons deal 10% increased Damage with Ailments"]={{[1]={flags=167774208,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["25% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-25}},nil}c["50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies "}c["Right ring slot: Projectiles from Spells cannot Fork Projectiles from Spells cannot Pierce"]={nil,"Projectiles from Spells cannot Fork Projectiles from Spells cannot Pierce "}c["4% increased Cast Speed with Fire Skills"]={{[1]={flags=16,keywordFlags=16,name="Speed",type="INC",value=4}},nil}c["Minions have 8% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=8}}}},nil}c["Summoned Raging Spirits deal 80% increased Damage"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=80}}}},nil}c["Regenerate 0.4% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.4}},nil}c["4% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=4}},nil}c["25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain an Endurance Charge on Kill 10% more "}c["Damage from your Critical Strikes cannot be Reflected 20% more Damage while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby"]={nil,"Damage from your Critical Strikes cannot be Reflected 20% more Damage while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby "}c["Enemies killed by Zombies explode dealing 20% of their Maximum Life as Fire Damage"]={nil,"Enemies killed by Zombies explode dealing 20% of their Maximum Life as Fire Damage "}c["12% increased Physical Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing"]={nil,"Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing "}c["60% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=60}},nil}c["+6% Chance to Block Attack Damage while at Maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil}c["Claw Attacks deal 8% increased Damage with Hits and Ailments"]={{[1]={flags=262144,keywordFlags=786432,name="Damage",type="INC",value=8}},nil}c["8% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=8}},nil}c["25% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["30% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=30}},nil}c["Adds 65 to 120 Chaos Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=65},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=120}},nil}c["Attack Projectiles always inflict Bleeding and Maim, and Knock Back Enemies"]={nil,"Attack Projectiles always inflict Bleeding and Maim, and Knock Back Enemies "}c["12% increased Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Every 10 seconds, gain 100% of Physical Damage"]={nil,"Every 10 seconds, gain 100% of Physical Damage "}c["20% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["-20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-20}},nil}c["20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}},nil}c["Attacks with One Handed Melee Weapons deal 12% increased Damage with Ailments"]={{[1]={flags=167774208,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["+50 Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=50}},nil}c["2 additional Projectiles during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["10% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=10},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=10}},nil}c["25% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=25}},nil}c["as Extra Fire Damage for 4 seconds"]={nil,"as Extra Fire Damage for 4 seconds "}c["10% increased Duration of Ailments inflicted while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=10},[2]={[1]={type="Condition",var="UsingBow"},flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=10},[3]={[1]={type="Condition",var="UsingBow"},flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=10},[4]={[1]={type="Condition",var="UsingBow"},flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=10},[5]={[1]={type="Condition",var="UsingBow"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=10},[6]={[1]={type="Condition",var="UsingBow"},flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=10}}," inflicted "}c["Attack Skills deal 20% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["Adds 12 to 22 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=22}},nil}c["10% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=10}},nil}c["10% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=10}},nil}c["When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has"]={nil,"When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has "}c["5% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=5}},nil}c["+20% to Non-Ailment Chaos Damage over Time Multiplier Every second, inflict Withered on nearby Enemies for 15 seconds"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=20}}," Non-Ailment Every second, inflict Withered on nearby Enemies for 15 seconds "}c["15% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=15}},nil}c["Adds 285 to 330 Cold Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=285},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=330}},nil}c["20% reduced Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=-20}},nil}c["each Impale on Enemy"]={nil,"each Impale on Enemy "}c["+5 Mana Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=5}},nil}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity "}c["20% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=20}},nil}c["Adds 15 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["30% increased Mana Regeneration if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil}c["+20% chance to be Shocked"]={{}," to be Shocked "}c["Sword Attacks deal 20% increased Damage with Ailments"]={{[1]={flags=4196352,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["18% increased Lightning Damage per 1% Lightning Resistance above 75%"]={{[1]={[1]={div=1,stat="LightningResistOver75",type="PerStat"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=18}},nil}c["0.2% of Fire Damage Leeched as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="FireDamageEnergyShieldLeech",type="BASE",value=0.2}},nil}c["Enemies Taunted by you take 6% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=6}}}},nil}c["You cannot Regenerate Energy Shield"]={nil,"You cannot Regenerate Energy Shield "}c["24% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["Dagger Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=524288,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["Stun Threshold is based on Energy Shield instead of Life"]={nil,"Stun Threshold is based on Energy Shield instead of Life "}c["and nearby Allies cannot be Stunned"]={nil,"and nearby Allies cannot be Stunned "}c["Banner Skills Reserve no Mana"]={{[1]={[1]={skillNameList={[1]="Dread Banner",[2]="War Banner"},type="SkillName"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Adds 270 to 315 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=270},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=315}},nil}c["Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being Placed"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being Placed "}c["15% increased Damage against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=15}},nil}c["+24% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=24}},nil}c["20% increased Effect of Shock you inflict with Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20}}," you inflict with Critical Strikes "}c["Attack Skills deal 16% increased Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["Claw Attacks deal 10% increased Damage with Hits and Ailments"]={{[1]={flags=262144,keywordFlags=786432,name="Damage",type="INC",value=10}},nil}c["Axe Attacks deal 25% increased Damage with Hits and Ailments"]={{[1]={flags=65536,keywordFlags=786432,name="Damage",type="INC",value=25}},nil}c["Axe Attacks deal 12% increased Damage with Ailments"]={{[1]={flags=67584,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["1% increased Attack Speed per 25 Dexterity"]={{[1]={[1]={div=25,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil}c["+10% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["6% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil}c["25% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge "}c["6% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=6}},nil}c["+25 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=25},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=25}},nil}c["25% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=25}},nil}c["+13 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=13}},nil}c["+30 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=30}},nil}c["Right ring slot: 80% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-80}}," Reflected "}c["Claw Attacks deal 20% increased Damage with Ailments"]={{[1]={flags=264192,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["15% increased Accuracy Rating with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["You cannot Regenerate Energy Shield You lose 5% of Energy Shield per second"]={nil,"You cannot Regenerate Energy Shield You lose 5% of Energy Shield per second "}c["Triggers Level 15 Manifest Dancing Dervish on Rampage"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="UniqueAnimateWeapon"}}},nil}c["+10% to Damage over Time Multiplier for Poison while wielding a Claw or Dagger"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=10}}," or Dagger "}c["130% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=130}},nil}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}c["+15% to Attack Critical Strike Multiplier while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}}," Attack "}c["25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}}," for each Summoned Can Summon up to 1 additional Golem at a time "}c["Items and Gems have 25% reduced Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="GlobalAttributeRequirements",type="INC",value=-25}},nil}c["20% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-20}},nil}c["40% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=40}},nil}c["40% increased Effect of Heralds on you"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=40}},nil}c["15% increased Damage with Hits and Ailments per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=15}},nil}c["Sword Attacks deal 10% increased Damage with Hits and Ailments"]={{[1]={flags=4194304,keywordFlags=786432,name="Damage",type="INC",value=10}},nil}c["40% increased Physical Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil}c["Attack Skills deal 10% increased Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["125% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=125}},nil}c["+14 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=14}},nil}c["10% Chance to summon a Spectral Wolf on Kill"]={{}," to summon a Spectral Wolf on Kill "}c["Sword Attacks deal 30% increased Damage with Ailments"]={{[1]={flags=4196352,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Can be modified while Corrupted"]={nil,"Can be modified while Corrupted "}c["Brand Recall has 30% increased Cooldown Recovery Speed"]={{[1]={[1]={skillName="Brand Recall",type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=30}},nil}c["Focus has 25% increased Cooldown Recovery Speed 70% increased Damage with Hits and Ailments against Chilled Enemies"]={nil,"Focus has 25% increased Cooldown Recovery Speed 70% increased Damage with Hits and Ailments against Chilled Enemies "}c["50% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=50}},nil}c["Non-critical strikes deal 40% Damage"]={{[1]={[1]={neg=true,type="Condition",var="CriticalStrike"},flags=4,keywordFlags=0,name="Damage",type="MORE",value=-60}},nil}c["Minions have 8% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=8}}}},nil}c["Right ring slot: +100 to maximum Mana"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=100}},nil}c["50% more Damage Over Time with Herald Skills"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="MORE",value=50}}," with Herald Skills "}c["Gain 20% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=20}},nil}c["Golems have 12% increased Maximum Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=12}}}},nil}c["9% increased Skeleton Cast speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=9}}}},nil}c["80% increased Spell Damage if your other Ring is an Elder Item"]={{[1]={[1]={type="Condition",var="ElderItemInRing {OtherSlotNum}"},flags=2,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["+30% to Critical Strike Multiplier with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Gain 4% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=4}},nil}c["With at least 40 Strength in Radius, Cleave grants Fortify on Hit With at least 40 Strength in Radius, Cleave has +1 to Radius per Nearby Enemy, up to +10"]={nil,"With at least 40 Strength in Radius, Cleave grants Fortify on Hit With at least 40 Strength in Radius, Cleave has +1 to Radius per Nearby Enemy, up to +10 "}c["8% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=167772165,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Culling Strike against Burning Enemies"]={nil,"Culling Strike against Burning Enemies "}c["+28% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=28}},nil}c["+20 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," gained when you Block "}c["Staff Attacks deal 30% increased Damage with Hits and Ailments"]={{[1]={flags=2097152,keywordFlags=786432,name="Damage",type="INC",value=30}},nil}c["20% of Overkill Damage is Leeched as Life Cannot be Stunned while Leeching You are Unaffected by Bleeding while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},[2]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill Cannot be Stunned You are Unaffected by Bleeding "}c["Recharge began Recently 50% less Energy Shield Regeneration Rate 50% less Maximum total Recovery per Second from Energy Shield Leech"]={nil,"Recharge began Recently 50% less Energy Shield Regeneration Rate 50% less Maximum total Recovery per Second from Energy Shield Leech "}c["50% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil}c["During Flask Effect, Damage Penetrates 20% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={stat="LightningResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},[2]={stat="LightningResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=20},[2]={[1]={stat="ColdResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="ColdResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=20},[3]={[1]={stat="FireResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="FireResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=20}},nil}c["1000% more Unarmed Physical Damage"]={{[1]={flags=16777220,keywordFlags=0,name="PhysicalDamage",type="MORE",value=1000}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["15% increased Physical Damage with Ranged Weapons"]={{[1]={flags=67108868,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Dagger Attacks deal 20% increased Damage with Hits and Ailments"]={{[1]={flags=524288,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["+2 to Weapon range"]={{[1]={flags=0,keywordFlags=0,name="WeaponRange",type="BASE",value=2}},nil}c["50% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=50}},nil}c["20% chance for Flasks you use to not consume Charges"]={{}," for Flasks you use to not consume Charges "}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded "}c["-30% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-30}},nil}c["Dagger Attacks deal 24% increased Damage with Hits and Ailments"]={{[1]={flags=524288,keywordFlags=786432,name="Damage",type="INC",value=24}},nil}c["16% increased Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["150% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=150}},nil}c["2% reduced Damage taken per Ghost Shroud"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-2}}," per Ghost Shroud "}c["Adds 68 to 102 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=68},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=102}},nil}c["Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits"]={nil,"Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits "}c["Each Totem applies 1% increased Damage taken to Enemies near it"]={nil,"Each Totem applies 1% increased Damage taken to Enemies near it "}c["+28% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=28}},nil}c["Carved to glorify 10000 new faithful converted by High Templar Venarius"]={nil,"Carved to glorify 10000 new faithful converted by High Templar Venarius "}c["Herald of Thunder has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["30% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="INC",value=30}},nil}c["10% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=10}},nil}c["24% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=24}},nil}c["Every 16 seconds you gain Elemental Overload for 8 seconds You have Resolute Technique while you do not have Elemental Overload"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds You have Resolute Technique while you do not have Elemental Overload "}c["+15% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["20% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil}c["-1 Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=-1}},nil}c["Enemies have -5% to Total Physical Damage Reduction against your Hits"]={{[1]={flags=0,keywordFlags=0,name="EnemyPhysicalDamageReduction",type="BASE",value=-5}},nil}c["Recover 3% of Maximum Life on Kill"]={nil,"Recover 3% of Maximum Life on Kill "}c["80% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=80}},nil}c["Enemies have -12% to Total Physical Damage Reduction against your Hits"]={{[1]={flags=0,keywordFlags=0,name="EnemyPhysicalDamageReduction",type="BASE",value=-12}},nil}c["8% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["+8% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=8}},nil}c["10% increased Melee Physical Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["14% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["Regenerate 2% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["15% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="INC",value=15}},nil}c["4% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=4}},nil}c["Modifiers to Critical Strike Multiplier also apply to Damage Multiplier for Ailments from Critical Strikes at 30% of their value 30% less Damage with Hits"]={nil,"Modifiers to Critical Strike Multiplier also apply to Damage Multiplier for Ailments from Critical Strikes at 30% of their value 30% less Damage with Hits "}c["1% increased Mana Regeneration Rate per 1% Chance to Block Spell Damage"]={{[1]={[1]={div=1,stat="SpellBlockChance",type="PerStat"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=1}},nil}c["Mines Hinder Enemies near them for 2 seconds when they Land, reducing Movement Speed by 40%"]={nil,"Mines Hinder Enemies near them for 2 seconds when they Land, reducing Movement Speed by 40% "}c["Adds 15 to 30 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=15},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=30}},nil}c["90% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=90}},nil}c["Trigger Level 20 Lightning Bolt when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="LightningSpell"}}},nil}c["Regenerate 1.8% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.8}},nil}c["Minions have 14% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=14}}}},nil}c["You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={nil,"You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit "}c["5% chance to Dodge Attack Hits while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["Adds 113 to 338 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=113},[2]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=338}},nil}c["1% of Damage Leeched as Mana against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="DamageManaLeech",type="BASE",value=1}},nil}c["25% more Damage while there is at most one Rare or Unique Enemy nearby"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=25}}," while there is at most one Rare or Unique Enemy nearby "}c["Totems are Immune to Fire Damage Enemies near your Totems deal 8% less Damage"]={nil,"Totems are Immune to Fire Damage Enemies near your Totems deal 8% less Damage "}c["+8% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=8}}," Non-Ailment "}c["Cannot be Stunned by Hits you Block Your Counterattacks deal Double Damage"]={nil,"Cannot be Stunned by Hits you Block Your Counterattacks deal Double Damage "}c["+35% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=35}},nil}c["Arrows Pierce all Targets after Forking"]={nil,"Arrows Pierce all Targets after Forking "}c["+45% to Critical Strike Multiplier against Enemies that are affected"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}}," against Enemies that are affected "}c["15% reduced Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil}c["Summoned Golems are Immune to Elemental Damage 20% increased Damage per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems"]={nil,"Summoned Golems are Immune to Elemental Damage 20% increased Damage per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems "}c["Minions deal 30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}}},nil}c["1% increased Projectile Attack Damage per 200 Accuracy Rating"]={{[1]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["+20 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=20}},nil}c["Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy "}c["40% reduced Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-40}}," on you "}c["10% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=10}},nil}c["3% reduced Damage taken per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed "}c["Manifested Dancing Dervish disables both weapon slots"]={{},nil}c["You gain 8% increased Area of Effect for each Mine 20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=8}},"% increased for each 20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed "}c["10% increased Movement Speed while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["Damage from your Critical Strikes cannot be Reflected 20% more Damage while there is at most one Rare or Unique Enemy nearby"]={nil,"Damage from your Critical Strikes cannot be Reflected 20% more Damage while there is at most one Rare or Unique Enemy nearby "}c["Gain 70% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=70}},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["70% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["Mines cannot be Damaged for 5 seconds after being Placed"]={nil,"Mines cannot be Damaged for 5 seconds after being Placed "}c["60% increased Critical Strike Chance with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["Minions Explode when reduced to Low Life, dealing 33% of their Life as Fire Damage to surrounding Enemies"]={nil,"Explode when reduced to Low Life, dealing 33% of their Life as Fire Damage to surrounding Enemies "}c["20% chance to gain an Endurance Charge when you Block +6% Chance to Block Attack Damage while at Maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," to gain an Endurance Charge when you Block +6% Chance "}c["Adds 123 to 180 Cold Damage to Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="ColdMin",type="BASE",value=123},[2]={flags=131076,keywordFlags=0,name="ColdMax",type="BASE",value=180}},nil}c["Socketed Gems are Supported by level 30 Greater Spell Echo"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="Unknown"}}},nil}c["25% chance to gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance Gain a Challenger Charge when you Kill an Enemy while in Sand Stance"]={{}," to gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance Gain a Challenger Charge when you Kill an Enemy while in Sand Stance "}c["+15 Energy Shield gained on Kill 75% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=15}}," gained on Kill 75% increased Effect of Shrine Buffs on you "}c["2% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-2}},nil}c["+1 to Level of Socketed Elemental Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="elemental",value=1}}},nil}c["Adds 250 to 350 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=250},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=350}},nil}c["Remove a Curse when you use a Mana Flask"]={nil,"Remove a Curse when you use a Mana Flask "}c["Socketed Gems are Supported by Level 25 Blessing"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=25,skillId="SupportAuraDuration"}}},nil}c["Immune to Curses while Channelling"]={nil,"Immune to Curses while Channelling "}c["0.4% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.4}},nil}c["8% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["Adds 10 to 23 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=23}},nil}c["Attack Projectiles Return to you from final Target"]={nil,"Attack Projectiles Return to you from final Target "}c["Gain 1% of Physical Damage as Extra Fire Damage per 1 Rage"]={{[1]={[1]={div=1,type="Multiplier",var="Rage"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=1}},nil}c["3% increased Attack Speed with Claws"]={{[1]={flags=262149,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["80% increased Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=80}},nil}c["79% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=79}},nil}c["Damage from your Critical Strikes cannot be Reflected 25% more Damage while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby"]={nil,"Damage from your Critical Strikes cannot be Reflected 25% more Damage while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby "}c["+5 Life gained for each Ignited Enemy hit by your Attacks 30 Life Gained on Igniting an Enemy"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=5}}," gained for each Ignited Enemy hit by your Attacks 30 Life Gained on Igniting an Enemy "}c["+50 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=50}},nil}c["Every 16 seconds you gain iron Reflexes for 8 seconds"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds "}c["Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 20% increased Movement Speed for 20 seconds when you Kill an Enemy"]={nil,"Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 20% increased Movement Speed for 20 seconds when you Kill an Enemy "}c["5% reduced Elemental Damage taken while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-5}},nil}c["Lose 0.1% of Life per second per Rage while you are not losing Rage"]={{[1]={[1]={stat="Life",type="PerStat"},[2]={limit=50,type="Multiplier",var="Rage"},flags=0,keywordFlags=0,name="LifeDegen",type="BASE",value=0.001}},nil}c["10% increased Accuracy Rating with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["40% increased Critical Strike Chance with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["Minions Recover 4% of Life on Minion Death"]={nil,"Recover 4% of Life on Minion Death "}c["Nearby allies gain 18% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=18},onlyAllies=true}}},nil}c["8% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned "}c["18% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=18}},nil}c["Adds 19 to 29 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=19},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=29}},nil}c["Minions deal 40% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}}}},nil}c["Flasks applied to you have 8% increased Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}},nil}c["14% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=14}},nil}c["45% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=45}},nil}c["maximum Life per second for each Stage You and nearby Allies have 12% increased Movement Speed"]={nil,"maximum Life per second for each Stage You and nearby Allies have 12% increased Movement Speed "}c["20% chance to Dodge Spell Hits if you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=20}},nil}c["Socketed Gems are Supported by level 10 Cold to Fire"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportColdToFire"}}},nil}c["14% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=14}},nil}c["3% more Damage for each Endurance Charge lost recently, up to 15% +1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=3}}," for each Endurance Charge lost recently, up to 15% +1 to Maximum Endurance Charges "}c["15% reduced Mana Cost of Channelling Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}}," Channelling Skills "}c["+2 to Melee range with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2}},nil}c["18% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["10% chance to gain an Endurance Charge on Melee Critical Strike 30% increased Damage with Ailments from Attack Skills while wielding a Staff +2 to Melee range with Staves"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain an Endurance Charge on Critical Strike 30% increased with Ailments from Attack Skills +2 to Melee range with Staves "}c["70% increased Aspect of the Spider Area of Effect"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=70}},nil}c["95% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=95}},nil}c["Enemies Taunted by your Warcries are Intimidated Enemies Taunted by your Warcries are Unnerved"]={nil,"Enemies Taunted by your Warcries are Intimidated Enemies Taunted by your Warcries are Unnerved "}c["4% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["Minions have 15% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=15}}}},nil}c["Spells Cast by Totems have 5% increased Cast Speed"]={{[1]={flags=16,keywordFlags=16384,name="Speed",type="INC",value=5}},nil}c["83% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=83}},nil}c["8% increased Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=8}},nil}c["Adds 15 to 140 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=15},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=140}},nil}c["Regenerate 1.6% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.6}},nil}c["+90 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=90}},nil}c["1% increased Damage per 1% Chance to Block Attack Damage"]={{[1]={[1]={div=1,stat="BlockChance",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["18% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}},nil}c["8% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Effects granted for having Rage are Doubled"]={nil,"Effects granted for having Rage are Doubled "}c["Every second, inflict Withered on nearby Enemies for 15 seconds"]={nil,"Every second, inflict Withered on nearby Enemies for 15 seconds "}c["+20 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20}},nil}c["+3% to Damage over Time Multiplier for Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="DotMultiplier",type="BASE",value=3}},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["+8% to Critical Strike Multiplier for each Mine Detonated Recently, up to 40%"]={{[1]={[1]={limit=40,limitTotal=true,type="Multiplier",var="MineDetonatedRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=8}},nil}c["Regenerate 8% of Energy Shield over 2 seconds when you Consume a corpse Regenerate 8% of Mana over 2 seconds when you Consume a corpse"]={nil,"Regenerate 8% of Energy Shield over 2 seconds when you Consume a corpse Regenerate 8% of Mana over 2 seconds when you Consume a corpse "}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies "}c["30% increased Mana Regeneration Rate if you have Frozen an Enemy Recently"]={{[1]={[1]={type="Condition",var="FrozenEnemyRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil}c["You take no Extra Damage from Critical Strikes while there is only one nearby Enemy"]={nil,"You take no Extra Damage from Critical Strikes while there is only one nearby Enemy "}c["Enemies you Curse take 5% increased Damage"]={nil,"Enemies you Curse take 5% increased Damage "}c["Nearby Allies Unnerve Enemies for 4 seconds on Hit"]={nil,"Nearby Allies Unnerve Enemies for 4 seconds on Hit "}c["10% increased Area of Effect if you have Stunned an Enemy Recently Melee Skills have 10% increased Area of Effect"]={{[1]={flags=256,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," if you have Stunned an Enemy Recently Skills have 10% increased Area of Effect "}c["Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"]={{[1]={[1]={actor="enemy",threshold=1,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=0,name="EnergyShieldOnHit",type="BASE",value=20}},nil}c["Minions have 15% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=15}}}},nil}c["+12% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=12}},nil}c["50% chance to gain Elusive on Critical Strike 20% increased Attack and Cast Speed while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 20% increased while Elusive "}c["Inflicts a random level 20 Curse on you when your Totems die"]={nil,"Inflicts a random level 20 Curse on you when your Totems die "}c["42% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=42}},nil}c["35% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="PhysicalDamage",type="MORE",value=35}},nil}c["Totems have 50% of your Armour"]={nil,"Totems have 50% of your Armour "}c["Attack Skills deal 16% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["3% reduced Damage taken per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 "}c["Adds 30 to 41 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=41}},nil}c["15% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=15}},nil}c["25% increased Cold Damage with Hits against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="ColdDamage",type="INC",value=25}},nil}c["5% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["40% increased Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["25% increased Elusive Effect You take no Extra Damage from Critical Strikes while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=25}}," Elusive You take no Extra Damage while Elusive "}c["0.2% of Lightning Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageLifeLeech",type="BASE",value=0.2}},nil}c["26% increased Attack Damage with Main Hand"]={{[1]={[1]={type="Condition",var="MainHandAttack"},flags=1,keywordFlags=0,name="Damage",type="INC",value=26}},nil}c["12% reduced Mana Reservation of Skills that throw Mines"]={{[1]={flags=0,keywordFlags=8192,name="ManaReserved",type="INC",value=-12}},nil}c["Adds 1 to 80 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=80}},nil}c["Minions have 10% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=10}}}},nil}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of Non-Damaging Ailments Shocks from your Hits always increase Damage taken by at least 15%"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of Non-Damaging Ailments Shocks from your Hits always increase Damage taken by at least 15% "}c["40% increased Damage if you have consumed a corpse Recently"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["50% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=50}},nil}c["Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={nil,"Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield "}c["Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of Golems"]={nil,"Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of Golems "}c["Adds 30 to 50 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=30},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=50}},nil}c["You can have an Offering of each type"]={nil,"You can have an Offering of each type "}c["50% increased Critical Strike Chance with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["Adds 19 to 35 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=19},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=35}},nil}c["Minions have +10% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=10}}}},nil}c["210% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=210}},nil}c["+10 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=10}},nil}c["+13% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=13}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["Purity of Lightning has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Purity of Lightning",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["35% reduced Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=-35}},nil}c["+30 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=30}},nil}c["Grants Summon Harbinger of Focus Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfFocus"}}},nil}c["15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen Enemies "}c["Channelling Skills deal 30% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground"]={nil,"to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground "}c["Minions deal 8% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=8}}}},nil}c["50% increased Effect of Infusion 5% increased Movement Speed while you have Infusion"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=50}}," of Infusion 5% increased Movement Speed while you have Infusion "}c["Right ring slot: Projectiles from Spells Chain +1 times"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1026,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil}c["+23 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=23}},nil}c["Enemies Taunted by your Warcries are Unnerved"]={nil,"Enemies Taunted by your Warcries are Unnerved "}c["50% increased Projectile Attack Damage while you have at least 200 Dexterity"]={{[1]={[1]={stat="Dex",threshold=200,type="StatThreshold"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["15% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=15}},nil}c["8% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil}c["Trigger Socketed Curse Spells when you cast a Curse Skill +90 to maximum Energy Shield"]={nil,"Trigger Socketed Curse Spells when you cast a Curse Skill +90 to maximum Energy Shield "}c["25% increased Effect of Heralds on you"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}},nil}c["Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Spell Hits if you have Energy Shield"]={nil,"Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Spell Hits if you have Energy Shield "}c["+350 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=350}},nil}c["50% chance to gain Elusive on Critical Strike 15% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 15% increased while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect "}c["25% chance that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges"]={{}," that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges "}c["88% increased Physical Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="PhysicalDamage",type="INC",value=88}},nil}c["Right ring slot: 30% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-30}}," Reflected "}c["You and nearby allies have 10% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}}}},nil}c["Nearby Allies have 30% increased Item Rarity"]={{}," Item Rarity "}c["14% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["Cover Enemies in Ash when they Hit you Avatar of Fire"]={nil,"Cover Enemies in Ash when they Hit you Avatar of Fire "}c["10% increased Effect of Arcane Surge on you per 200 Mana spent Recently, up to 50%"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}}," of Arcane Surge on you per 200 Mana spent Recently, up to 50% "}c["20% increased Quantity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=20}},nil}c["50% increased Damage if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["25% reduced Golem Size Golems Deal 45% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=-25}}," Size Golems Deal 45% less "}c["120% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=120}},nil}c["Minions have 10% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil}c["20% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=20}},nil}c["10% more Damage if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}},nil}c["Strength provides no bonus to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="NoStrBonusToLife",type="FLAG",value=true}},nil}c["16% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Adds 56 to 84 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=56},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=84}},nil}c["Every 8 seconds, gain Avatar of Fire for 4 seconds 120% increased Critical Strike Chance while you have Avatar of Fire"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds 120% increased Critical Strike Chance while you have Avatar of Fire "}c["135% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=135}},nil}c["Minions gain Unholy Might for 5 seconds on Kill"]={nil,"gain Unholy Might for 5 seconds on Kill "}c["+20% to Critical Strike Multiplier with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamage",type="MORE",value=10}},nil}c["5% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-5}},nil}c["Grants Level 20 Bone Armour Skill 1% additional Physical Damage Reduction per Minion, up to 10% 2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20% Minions have 20% more Maximum Life"]={nil,nil}c["8% increased Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["5% chance to gain an Endurance Charge on Kill 5% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=5}}," to gain an Endurance Charge on Kill 5% increased "}c["Cannot lose Crab Barriers if you have lost Crab Barriers Recently 3% additional Chance to Block while you have at least 5 Crab Barriers"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently 3% additional Chance to Block while you have at least 5 Crab Barriers "}c["50% increased Melee Critical Strike Chance if you've Warcried Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=256,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["20% increased Golem Damage for each Golem you have Summoned"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Golem you have Summoned "}c["3% reduced Attack and Cast Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Speed",type="INC",value=-3}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["6% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil}c["+8% Chance to Block Projectile Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}}," Projectile Attack Damage "}c["30% increased Life Recovery Rate while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=30}},nil}c["+25% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=25}},nil}c["You can only have one Non-Banner Aura on you from your Skills"]={nil,"You can only have one Non-Banner Aura on you from your Skills "}c["+220 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=220}},nil}c["Attack Skills deal 20% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["12% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["20% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["Adds 4 to 10 Fire Attack Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=4},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=10}},nil}c["10% increased Effect of Arcane Surge on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}}," of Arcane Surge on you "}c["3% of Damage taken gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=3}}," gained as Mana over 4 seconds when Hit "}c["30% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Regenerate 0.8% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.8}},nil}c["Recover 1% of Life on Kill Recover 1% of Energy Shield on Kill"]={nil,"Recover 1% of Life on Kill Recover 1% of Energy Shield on Kill "}c["0.6% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.6}},nil}c["-40% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-40}},nil}c["20% increased Effect of Shock you inflict with Critical Strikes 40% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20}}," you inflict with Critical Strikes 40% increased Critical Strike Chance "}c["Minions have +8% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=8}}}},nil}c["10% chance to grant a Power Charge to nearby Allies on Kill"]={{}," to grant a Power Charge to nearby Allies on Kill "}c["16% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["+1 to Minimum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMin",type="BASE",value=1}},nil}c["Gain Arcane Surge when you Summon a Totem Spells cast by Totems deal 25% increased Damage"]={nil,"Gain Arcane Surge when you Summon a Totem Spells cast by Totems deal 25% increased Damage "}c["180% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=180}},nil}c["+3000 to Armour during Soul Gain Prevention"]={{[1]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=3000}},nil}c["+25% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}},nil}c["6% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["10% increased Attack and Cast Speed if you've summoned a Totem Recently"]={{[1]={[1]={type="Condition",var="SummonedTotemRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Socketed Gems have Elemental Equilibrium Socketed Gems have 40% reduced Elemental Equilibrium effect"]={nil,"Elemental Equilibrium Socketed Gems have 40% reduced Elemental Equilibrium effect "}c["Adds 251 to 277 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=251},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=277}},nil}c["10% chance to gain a Frenzy Charge on Kill 10% chance to gain a Power Charge on Kill"]={{}," to gain aCharge on Kill 10% chance to gain a Power Charge on Kill "}c["You gain 4% increased Area of Effect for each Mine"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=4}},"% increased for each "}c["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws"]={{}," to Steal Power, Frenzy, and Endurance Charges on Hit "}c["10% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=10}},nil}c["Summon Raging Spirit has 25% increased Duration"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=25}},nil}c["40% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=40}},nil}c["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth "}c["75% reduced Maximum number of Summoned Raging Spirits"]={{[1]={flags=0,keywordFlags=0,name="ActiveRagingSpiritLimit",type="INC",value=-75}},nil}c["Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Zombies"]={nil,"Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Zombies "}c["Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect "}c["20% less chance to Evade Melee Attacks"]={{[1]={flags=0,keywordFlags=0,name="MeleeEvadeChance",type="MORE",value=-20}},nil}c["+12% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["15% increased Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["6% increased Movement Speed if you've Hit an Enemy Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=6}},nil}c["Immune to Ignite and Shock"]={nil,"Immune to Ignite and Shock "}c["Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Flammability while affected by Purity of Fire "}c["12% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["Unaffected by Flammability while affected by Purity of Fire Immune to Freeze while affected by Purity of Ice"]={nil,"Unaffected by Flammability while affected by Purity of Fire Immune to Freeze while affected by Purity of Ice "}c["4% increased Melee Attack Speed"]={{[1]={flags=257,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies "}c["20% chance to Avoid Physical Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=20}}," to Avoid from Hits "}c["Adds 475 to 600 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=475},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=600}},nil}c["Minions have 12% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=12}}}},nil}c["Flasks applied to you have 5% increased Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=5}},nil}c["Gain 20% increased Movement Speed for 20 seconds when you Kill an Enemy"]={nil,"Gain 20% increased Movement Speed for 20 seconds when you Kill an Enemy "}c["+2% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["0.5% of Life Regenerated per Second per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["15% increased Onslaught Effect"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=15}},nil}c["50% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=50}},nil}c["40% increased Critical Strike Chance with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills"]={nil,"You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills "}c["You can Cast an additional Brand 12% increased Cast Speed with Brand Skills"]={nil,"You can Cast an additional Brand 12% increased Cast Speed with Brand Skills "}c["Passives in radius are Conquered by the Templars Historic"]={nil,"Passives in radius are Conquered by the Templars Historic "}c["Socketed Gems are Supported by level 20 Concentrated Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportConcentratedEffect"}}},nil}c["10% increased Movement Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["Grants maximum Energy Shield equal to 10% of your Reserved Mana to"]={nil,"Grants maximum Energy Shield equal to 10% of your Reserved Mana to "}c["30% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["Hits that Stun Enemies have Culling Strike 30% increased Damage with Ailments from Attack Skills while wielding a Mace"]={nil,"Hits that Stun Enemies have Culling Strike 30% increased Damage with Ailments from Attack Skills while wielding a Mace "}c["If you've Attacked Recently, you"]={nil,"If you've Attacked Recently, you "}c["Cannot Leech Mana"]={{[1]={flags=0,keywordFlags=0,name="CannotLeechMana",type="FLAG",value=true}},nil}c["+150% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=150}},nil}c["10% chance to gain a Frenzy Charge when you Block"]={{}," to gain aCharge when you Block "}c["Axe Attacks deal 26% increased Damage with Ailments"]={{[1]={flags=67584,keywordFlags=0,name="Damage",type="INC",value=26}},nil}c["Adds 33 to 47 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=33},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=47}},nil}c["25% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=25}},nil}c["40% reduced Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=-40}},nil}c["You lose all Endurance Charges at maximum Endurance Charges"]={nil,"You lose all Endurance Charges at maximum Endurance Charges "}c["Adds 53 to 76 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=76}},nil}c["Socketed Gems are Supported by level 10 Cast When Stunned"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportCastOnStunned"}}},nil}c["Socketed Gems are Supported by level 10 Added Chaos Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportAddedChaosDamage"}}},nil}c["Cannot Leech Cannot Leech Life"]={nil,"Cannot Leech Cannot Leech Life "}c["+1 to Level of Socketed Aura Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="aura",value=1}}},nil}c["28% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=28}},nil}c["15% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=15}},nil}c["Can Allocate Passives from the Shadow's starting point"]={{},nil}c["Has no Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="NoAttributeRequirements",type="FLAG",value=true}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed "}c["+20% to Critical Strike Multiplier with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["5% increased Cast Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=16,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Adds 25 to 90 Lightning Damage to Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=25},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=90}},nil}c["15% increased Accuracy Rating with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["Dagger Attacks deal 10% increased Damage with Hits and Ailments"]={{[1]={flags=524288,keywordFlags=786432,name="Damage",type="INC",value=10}},nil}c["+160% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=160}},nil}c["Nearby Allies Intimidate Enemies for 4 seconds on Hit Nearby Allies Unnerve Enemies for 4 seconds on Hit"]={nil,"Nearby Allies Intimidate Enemies for 4 seconds on Hit Nearby Allies Unnerve Enemies for 4 seconds on Hit "}c["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy Elder Item"]={nil,"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy Elder Item "}c["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy "}c["6% increased Physical Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["+15% to Fire and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}},nil}c["Immune to Elemental Ailments while you have Arcane Surge"]={nil,"Immune to Elemental Ailments while you have Arcane Surge "}c["10% chance to gain a Frenzy Charge when you Block Attack Damage 10% chance to gain a Power Charge when you Block Spell Damage"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=3,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain aCharge when you Block 10% chance to gain a Power Charge when you Block Damage "}c["Golems Summoned in the past 8 seconds deal 45% increased Damage Golems have 22% increased Maximum Life"]={nil,"Golems Summoned in the past 8 seconds deal 45% increased Damage Golems have 22% increased Maximum Life "}c["+90 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=90}},nil}c["12% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=12}},nil}c["Adds 24 to 36 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=36}},nil}c["Nearby Enemies grant 25% increased Flask Charges"]={nil,"Nearby Enemies grant 25% increased Flask Charges "}c["10% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["10% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+1% to all maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=1}},nil}c["Gain 7% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=7}},nil}c["Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillId="ZombieSlam",type="SkillId"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=100}}}},nil}c["6% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=6}},nil}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons "}c["+40 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=40}},nil}c["325% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=325}},nil}c["Right ring slot: 4% of Energy Shield Regenerated per second"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=4}},nil}c["+30% to Critical Strike Multiplier with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["+48% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=48}},nil}c["Animated Minions' Melee Attacks deal Splash Damage to surrounding targets Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets "}c["30% increased Effect of Arcane Surge on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=30}}," of Arcane Surge on you "}c["You and Allies affected by your placed Banners Regenerate 0.1% of maximum Life per second for each Stage You and nearby Allies have 12% increased Movement Speed"]={nil,"You and Allies affected by your placed Banners Regenerate 0.1% of maximum Life per second for each Stage You and nearby Allies have 12% increased Movement Speed "}c["8% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["60% increased Main Hand Attack Damage while wielding two different Weapon Types 30% increased Off Hand Attack Speed while wielding two different Weapon Types"]={{[1]={flags=8193,keywordFlags=0,name="Damage",type="INC",value=60}}," Main Hand while wielding two different Types 30% increased Off Hand Attack Speed while wielding two different Weapon Types "}c["2% of Life Regenerated per second if you've taken Fire Damage from a Hit Recently"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["+1 Melee Weapon and Unarmed Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["When you create a Banner, it gains 40% of the Stages of your placed Banner You and Allies affected by your placed Banners Regenerate 0.1% of\nmaximum Life per second for each Stage You and nearby Allies have 12% increased Movement Speed"]={nil,"When you create a Banner, it gains 40% of the Stages of your placed Banner You and Allies affected by your placed Banners Regenerate 0.1% of\nmaximum Life per second for each Stage You and nearby Allies have 12% increased Movement Speed "}c["25% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=25}},nil}c["10% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=10}},nil}c["10% increased Effect of Fortify on you while Stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="FortifyEffectOnSelf",type="INC",value=10}},nil}c["Socketed Gems have 20% reduced Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-20}}}},nil}c["Increases and Reductions to Minion Damage also affect you"]={{[1]={flags=0,keywordFlags=0,name="MinionDamageAppliesToPlayer",type="FLAG",value=true}},nil}c["+3% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["100% increased Cold Damage while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=100}},nil}c["Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem"]={nil,"Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem "}c["Adds 19-43 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=19},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=43}},nil}c["Damage Penetrates 15% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},nil}c["No Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil}c["12 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=12}},nil}c["Gain Igniting Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=100},[2]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="PhysicalCanIgnite",type="FLAG",value=true},[3]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="LightningCanIgnite",type="FLAG",value=true},[4]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="ColdCanIgnite",type="FLAG",value=true},[5]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="ChaosCanIgnite",type="FLAG",value=true}},nil}c["Implicit Modifier magnitudes are doubled"]={nil,"Implicit Modifier magnitudes are doubled "}c["Melee Skills have 5% increased Area of Effect"]={{[1]={[1]={skillType=24,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["You gain a Frenzy Charge on use You gain an Endurance Charge on use"]={nil,"You gain a Frenzy Charge on use You gain an Endurance Charge on use "}c["5% chance to gain an Endurance Charge on Kill while holding a Shield +4% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}}," to gain an Endurance Charge on Kill +4% Chance "}c["20% chance to Maim Enemies on Critical Strike with Attacks"]={{}," to Maim Enemies "}c["12% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil}c["Minions deal 48 to 72 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=48}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=72}}}},nil}c["Chaos Damage can Ignite, Chill and Shock"]={{[1]={flags=0,keywordFlags=0,name="ChaosCanIgnite",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ChaosCanChill",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="ChaosCanShock",type="FLAG",value=true}},nil}c["Critical Strikes do not always Freeze"]={{[1]={flags=0,keywordFlags=0,name="CritsDontAlwaysFreeze",type="FLAG",value=true}},nil}c["+500 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=500}},nil}c["Damage Penetrates 6% Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=6}},nil}c["24% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=24}},nil}c["25% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy"]={nil,"Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy "}c["-80 Physical Damage taken from Projectile Attacks 200% increased Armour against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-80}}," from Projectile Attacks 200% increased Armour against Projectiles "}c["Agony Crawler deals 100% increased Damage"]={{[1]={[1]={skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=100}}}},nil}c["10% increased Fortify duration"]={{[1]={flags=0,keywordFlags=0,name="FortifyDuration",type="INC",value=10}},nil}c["4% increased Attack Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain a Power Charge if you Knock an Enemy Back with "}c["Items and Gems have 10% reduced Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="GlobalAttributeRequirements",type="INC",value=-10}},nil}c["+50 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=50}},nil}c["35% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["8% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=8}},nil}c["35% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=35}},nil}c["Adds 190 to 220 Cold Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=190},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=220}},nil}c["Wand Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=8388608,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["30% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=30}},nil}c["50% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["10% chance to gain an Endurance Charge when you are Hit"]={{}," to gain an Endurance Charge when you are Hit "}c["25% chance to Trigger a Socketed Spell when you Attack with a Bow"]={{}," to Trigger a Socketed when you Attack with a Bow "}c["12% increased Accuracy Rating with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["18% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=18}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["+20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield"]={{[1]={[1]={div=5,stat="EnergyShieldOnWeapon 2",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=20}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies 100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies 100% increased Quantity of Items Dropped by Slain Normal Enemies "}c["You gain 8% increased Area of Effect for each Mine 20% chance when Placing Mines to Place an additional Mine"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=8}},"% increased for each 20% chance when Placing Mines to Place an additional Mine "}c["5% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=5}},nil}c["25% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=25}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies "}c["16% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=16}},nil}c["+2 to Level of all Lightning Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="lightning",[3]="active_skill"},value=2}}},nil}c["6% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["15% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=15}},nil}c["Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Lose all Frenzy, Endurance, and Power Charges when you Move "}c["+18 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=18},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=18}},nil}c["30% increased Critical Strike Chance with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["+4% to maximum Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=4}},nil}c["Adds 1 to 100 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=100}},nil}c["20% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=20}},nil}c["20% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil}c["8% increased Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["Adds 300 to 380 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=300},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=380}},nil}c["Enemies you Curse are Intimidated"]={nil,"Enemies you Curse are Intimidated "}c["Adds 35 to 55 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=55}},nil}c["135% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=135}},nil}c["Bleeding you inflict deals Damage 10% faster"]={{[1]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=10}},nil}c["50% Chance to avoid being Stunned during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=50}},nil}c["Adds 10 to 20 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=20}},nil}c["5% reduced Area Damage taken from Hits +2 to Melee Weapon and Unarmed Attack range 10% increased Area of Effect if you have Stunned an Enemy Recently Melee Skills have 10% increased Area of Effect"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits +2 to Melee Weapon and Unarmed Attack range 10% increased Area of Effect if you have Stunned an Enemy Recently Melee Skills have 10% increased Area of Effect "}c["5% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=5}},nil}c["320% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=320}},nil}c["You take 10% of your maximum Life as Chaos Damage on use You gain a Power Charge on use"]={nil,"You take 10% of your maximum Life as Chaos Damage on use You gain a Power Charge on use "}c["40% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=40}},nil}c["+80 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=80}},nil}c["Passives in radius are Conquered by the Eternal Empire"]={nil,"Passives in radius are Conquered by the Eternal Empire "}c["50% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs"]={{[1]={[1]={actor="enemy",threshold=3,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=50}},nil}c["Recover 2% of Mana when you Kill a Cursed Enemy"]={nil,"Recover 2% of Mana when you Kill a Cursed Enemy "}c["50% of Physical, Cold and Lightning Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="LightningDamageConvertToFire",type="BASE",value=50},[3]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=50}},nil}c["Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows Adds 40 to 100 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=40},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=100}},"Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows "}c["Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows"]={nil,"Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows "}c["140 Life Regenerated per Second while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=140}},nil}c["+25 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=25}},nil}c["5% increased Cast Speed with Fire Skills"]={{[1]={flags=16,keywordFlags=16,name="Speed",type="INC",value=5}},nil}c["25% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=25}},nil}c["Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"]={nil,"Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned "}c["+250 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=250}},nil}c["+20 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20}},nil}c["25% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=25}},nil}c["With at least 40 Strength in Radius, Ground Slam has a 20% increased angle With at least 40 Strength in Radius, Ground Slam has a 35% increased angle"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 20% increased angle With at least 40 Strength in Radius, Ground Slam has a 35% increased angle "}c["16% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=16}},nil}c["+10 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}},nil}c["5% reduced Damage taken from Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-5}},nil}c["Sacrifice 4% of your Life when you Use or Trigger a Spell Skill"]={nil,"Sacrifice 4% of your Life when you Use or Trigger a Spell Skill "}c["15% increased Area of Effect if you have Stunned an Enemy Recently 18% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="AreaOfEffect",type="INC",value=15}}," if you have Stunned an Enemy Recently 18% increased Damage "}c["With 5 Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead"]={{[1]={[1]={threshold=5,type="MultiplierThreshold",var="CorruptedItem"},flags=0,keywordFlags=0,name="LifeLeechBasedOnChaosDamage",type="FLAG",value=true}},nil}c["Adds 22 to 33 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=33}},nil}c["Channelling Skills have 5% increased Attack and Cast Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Adds 22 to 35 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=22},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=35}},nil}c["Grants Level 20 Bone Armour Skill 1% additional Physical Damage Reduction per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30%"]={nil,nil}c["10% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=10}},nil}c["1% increased Area of Effect per Enemy killed recently, up to 50%"]={{[1]={[1]={limit=50,limitTotal=true,type="Multiplier",var="EnemyKilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=1}},nil}c["Adds 14 to 24 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil}c["10% increased Attack Speed with Daggers"]={{[1]={flags=524293,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["23% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-23}},nil}c["Minions have 5% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=5}}}},nil}c["20% increased Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Sword Attacks deal 8% increased Damage with Ailments"]={{[1]={flags=4196352,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["Recover 4% of Mana on Kill"]={nil,"Recover 4% of Mana on Kill "}c["Gain 35% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=35}},nil}c["Projectiles Pierce an additional Target"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=1}},nil}c["4% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=301989893,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["625% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=625}},nil}c["16% increased Quantity of Items found when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=16}},nil}c["15% increased Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["100% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=100}},nil}c["15% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill"]={{}," to gain aCharge and a Power Charge on Kill "}c["+1 to Maximum number of Spectres"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=1}},nil}c["12% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=12}},nil}c["+100% to Fire Resistance when Socketed with a Red Gem"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=100}}," when Socketed with a Red Gem "}c["50% increased Critical Strike Chance with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["40% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=-40}},nil}c["Minions have 4% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=4}}}},nil}c["40% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["24% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=24}},nil}c["Summoned Skeletons Cover Enemies in Ash on Hit"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit "}c["25% reduced Mana Reservation of Herald Skills"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-25}},nil}c["+30% to Critical Strike Multiplier against Enemies that are affected"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}}," against Enemies that are affected "}c["Every 5 seconds, remove Curses and Elemental Ailments from you"]={nil,"Every 5 seconds, remove Curses and Elemental Ailments from you "}c["15% increased Accuracy Rating with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["12% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Passives in radius are Conquered by the Maraketh Historic"]={nil,"Passives in radius are Conquered by the Maraketh Historic "}c["20% increased Movement Speed while under no Flask Effects"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}," while under no Flask Effects "}c["20% increased Damage with Ailments from Attack Skills"]={{[1]={flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["50% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=50}},nil}c["Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 20% increased Movement Speed for 20 seconds when you Kill an Enemy"]={nil,"Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 20% increased Movement Speed for 20 seconds when you Kill an Enemy "}c["Minions deal 20% increased Damage against Ignited Enemies"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=20}}}},nil}c["8% increased Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["25% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=25}},nil}c["20% increased Damage with One Handed Weapons"]={{[1]={flags=134217732,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["+450 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=450}},nil}c["Inner Conviction"]={nil,"Inner Conviction "}c["50% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},nil}c["25% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["8% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-10}}," while there are at least two Rare or Unique Enemies nearby "}c["60% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=60}},nil}c["50% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=50}},nil}c["+1 Maximum Endurance Charge"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}},nil}c["25% increased Effect of Herald Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=25}}," of Herald Buffs on you "}c["You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently You have Phasing if you have Blocked Recently"]={nil,"You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently You have Phasing if you have Blocked Recently "}c["10% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=10}},nil}c["You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range"]={nil,"You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range "}c["Gain a Power Charge after spending a total of 200 Mana 2 Mana Regenerated per Second per Power Charge"]={nil,"Gain a Power Charge after spending a total of 200 Mana 2 Mana Regenerated per Second per Power Charge "}c["28% increased Physical Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="PhysicalDamage",type="INC",value=28}},nil}c["10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies take 10% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=10}}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments Nearby Enemies take 10% increased "}c["+20 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["8% increased Attack Speed with Maces and Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Iron Grip"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Iron Grip"}},nil}c["20% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=20}}," Maximum "}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies +0.1% to Critical Strike Chance per Poison affecting Enemy, up to +2.0%"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},[2]={actor="enemy",limit=2,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=1,keywordFlags=262144,name="CritChance",type="BASE",value=50}}," to Maim on Hit +0.1% to "}c["+15% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}},nil}c["0.4% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.4}},nil}c["3% reduced Damage taken per Ghost Shroud"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud "}c["Chaos Damage does not bypass Energy Shield"]={nil,"Chaos Damage does not bypass Energy Shield "}c["+63% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=63}},nil}c["80% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=80}},nil}c["+40 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=40}},nil}c["35% chance to gain an Endurance Charge when you use a Fire skill"]={{}," to gain an Endurance Charge when you use a Fire skill "}c["Mace or Sceptre Attacks deal 16% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["Recover 4% of Maximum Mana on Kill"]={nil,"Recover 4% of Maximum Mana on Kill "}c["Has 2 Abyssal Sockets"]={{[1]={flags=0,keywordFlags=0,name="AbyssalSocketCount",type="BASE",value=2}},nil}c["15% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Causes Bleeding on Melee Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["60% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=60}},nil}c["Poisons you inflict deal Damage 20% faster"]={{[1]={flags=0,keywordFlags=0,name="PoisonFaster",type="INC",value=20}},nil}c["Gain 25% of Physical Damage as Extra Fire Damage while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=25}},nil}c["Cannot be Stunned by Hits you Block"]={nil,"Cannot be Stunned by Hits you Block "}c["Nearby Enemies take 16% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=16}}}},nil}c["6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-6}}," for 4 seconds after Spending a total of 200 Mana "}c["5% increased Movement Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}c["10% chance to create a Smoke Cloud on Kill"]={{}," to create a Smoke Cloud on Kill "}c["Gain 20% of Wand Physical Damage as Extra Lightning Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=20}},nil}c["40% increased Mine Duration"]={{[1]={flags=0,keywordFlags=0,name="MineDuration",type="INC",value=40}},nil}c["+25% additional Block Chance against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=25}}," against Projectiles "}c["80% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=80}},nil}c["20% increased Blind duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Blind "}c["8% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=8}},nil}c["14% increased Damage with One Handed Weapons"]={{[1]={flags=134217732,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["Lose all Power Charges on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges "}c["Gain 30% of Wand Physical Damage as Extra Lightning Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=30}},nil}c["Minions have 3% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=3}}}},nil}c["Point Blank"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Point Blank"}},nil}c["25% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=110}}," Bow as Extra Damage of an Element "}c["Traps cannot be Damaged for 5 seconds after being Thrown"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown "}c["25% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground "}c["Regenerate 8% of Energy Shield over 2 seconds when you Consume a corpse"]={nil,"Regenerate 8% of Energy Shield over 2 seconds when you Consume a corpse "}c["7% Global chance to Blind Enemies on hit"]={nil,"7% Global chance to Blind Enemies on hit "}c["3% increased Attack Speed with Maces"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["of its mods for 20 seconds"]={nil,"of its mods for 20 seconds "}c["Socketed Trap Skills create a Smoke Cloud when triggered Trigger Level 20 Fog of War when your Trap is triggered"]={nil,"Socketed Trap Skills create a Smoke Cloud when triggered Trigger Level 20 Fog of War when your Trap is triggered "}c["Minions gain Unholy Might for 5 seconds on Kill Minions gain Unholy Might for 10 seconds on Kill"]={nil,"gain Unholy Might for 5 seconds on Kill Minions gain Unholy Might for 10 seconds on Kill "}c["+20 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}},nil}c["35% chance to gain an Endurance Charge when you use a Fire skill 5% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=35}}," to gain an Endurance Charge when you use a Fire skill 5% increased "}c["15% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["4% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=4},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["+8% to Damage over Time Multiplier for Poison"]={{[1]={flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=8}},nil}c["8% increased Elemental Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="ElementalDamage",type="INC",value=8}},nil}c["20% increased Duration of Elemental Status Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=20},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=20}},nil}c["25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="Life",type="BASE",value=25}}," to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full 20% chance to Impale Enemies on Hit "}c["40% increased Critical Strike Chance with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["50% increased Global Evasion Rating when on Low Life"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil}c["5% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=301989893,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["230% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=230}},nil}c["Regenerate 0.5% of Mana per second for each Totem Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem"]={{[1]={[1]={stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=16384,name="ManaRegenPercent",type="BASE",value=0.5}}," for each Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of per second "}c["30% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=30}},nil}c["6% chance to Knock Enemies Back on hit"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=6}},nil}c["45% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=45}},nil}c["Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=10}},nil}c["Minions gain 6% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=6}}}},nil}c["6% increased Attack Speed with Wands"]={{[1]={flags=8388613,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["4% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=4}},nil}c["+1 to Level of Socketed Fire Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="fire",value=1}}},nil}c["140% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=140}},nil}c["Regenerate 0.3% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.3}},nil}c["Recover 2% of Mana on Kill"]={nil,"Recover 2% of Mana on Kill "}c["+15% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritMultiplier",type="BASE",value=15}},nil}c["Blood Magic"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Blood Magic"}},nil}c["Raging Spirits refresh their Duration when they Kill an Ignited Enemy"]={nil,"Raging Spirits refresh their Duration when they Kill an Ignited Enemy "}c["Minions deal 20% increased Damage while you are affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}}," while you are affected by a Herald "}c["+68 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=68}},nil}c["40% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=40}},nil}c["Spectres have a Base Duration of 20 seconds"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="duration",value=6}}},nil}c["Minions cannot be Blinded Minions have 15% chance to Blind Enemies on hit"]={nil,"cannot be Blinded Minions have 15% chance to Blind Enemies on hit "}c["Totems gain +40% to Chaos Resistance"]={nil,"Totems gain +40% to Chaos Resistance "}c["Sacrifice 5% of Life to gain that much Energy Shield when you Cast a Spell"]={nil,"Sacrifice 5% of Life to gain that much Energy Shield when you Cast a Spell "}c["2% reduced Damage taken per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-2}}," per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 "}c["30% increased Mana Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=30}},nil}c["1% of Energy Shield Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["8% increased Evasion Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=8}},nil}c["You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["You can have an Offering of each type Offering Skills have 50% reduced Duration"]={nil,"You can have an Offering of each type Offering Skills have 50% reduced Duration "}c["Cannot be Shocked while Chilled 40% chance to Chill Attackers for 4 seconds on Block"]={nil,"Cannot be Shocked while Chilled 40% chance to Chill Attackers for 4 seconds on Block "}c["With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating"]={{[1]={[1]={type="Condition",var="HaveGhastlyEyeJewelIn{SlotName}"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=1000}}}},nil}c["Implicit Modifier magnitudes are tripled"]={nil,"Implicit Modifier magnitudes are tripled "}c["+4% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["50% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-50}},nil}c["Adds 12 to 24 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil}c["+80 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=80}},nil}c["50% chance to Shock Chilled Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=50}}," Chilled Enemies "}c["Temporal Chains has 100% reduced Mana Reservation"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["Socketed Gems are Supported by level 18 Melee Physical Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportMeleePhysicalDamage"}}},nil}c["Gain 10% of Maximum Life as Extra Armour"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=10}}," as Extra Armour "}c["+180 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=180}},nil}c["6% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=6}},nil}c["6% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=6}},nil}c["0.3% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.3}},nil}c["Grants Summon Harbinger of the Arcane Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfTheArcane"}}},nil}c["Adds 13 to 24 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=13},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=24}},nil}c["13 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=13}},nil}c["8% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["Converts all Evasion Rating to Armour. Dexterity provides no bonus to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="IronReflexes",type="FLAG",value=true}},nil}c["15% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritChance",type="INC",value=15}},nil}c["30% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["Adds 5 to 12 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=12}},nil}c["Attack Skills deal 10% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["Summoned Golems are Immune to Elemental Damage"]={nil,"Summoned Golems are Immune to Elemental Damage "}c["18% increased Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["+25% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=25}},nil}c["Melee Critical Strikes have 25% chance to cause Bleeding"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil}c["Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=10}},nil}c["15% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["1% increased Damage per 15 Dexterity"]={{[1]={[1]={div=15,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["16% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=16}},nil}c["60% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=60}},nil}c["+50 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=50}},nil}c["Unaffected by Shock Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Unaffected by Shock Shocked Enemies you Kill Explode, dealing 10% of "}c["100% chance to Trigger Level 1 Raise Spiders on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TriggeredSummonSpider"}}},nil}c["16% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=16}},nil}c["50% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=50}},nil}c["6% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=6}},nil}c["You and nearby Allies have 12% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}}}},nil}c["80% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=80}},nil}c["225% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=225}},nil}c["You have Vaal Pact if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Vaal Pact"}},nil}c["50% chance to gain Elusive on Critical Strike 20% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 20% increased while Elusive 8% reduced Damage taken while Elusive "}c["20% less Cold Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTaken",type="MORE",value=-20}},nil}c["6% increased Attack Speed with Daggers"]={{[1]={flags=524293,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["+3% to maximum Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=3}},nil}c["+1% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["30% increased Accuracy Rating with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil}c["Enemies Cannot Leech Mana From You"]={nil,"Enemies Cannot Leech Mana From You "}c["45% chance to avoid Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=45}},nil}c["+13% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=13}},nil}c["12% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["Regenerate 15 Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=15}},nil}c["50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="MORE",value=50}}," with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled "}c["+40 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=40}},nil}c["Channelling Skills deal 14% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["1% of Damage is taken from Mana before Life per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=1}},nil}c["15% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=15}},nil}c["Cannot gain Energy Shield 1% of Life Regenerated per second per 500 Maximum Energy Shield"]={nil,"Cannot gain Energy Shield 1% of Life Regenerated per second per 500 Maximum Energy Shield "}c["8% increased Attack and Cast Speed during Effect of any Mana Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Speed",type="INC",value=8}}," of any Mana Flask "}c["Adds 16-25 Physical Damage to Attacks while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=16},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=25}},nil}c["30% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=30}},nil}c["Regenerate 1% of Energy Shield per second for each Enemy you or your Minions have Killed Recently, up to 10% per second"]={{[1]={[1]={limit=10,limitTotal=true,type="Multiplier",varList={[1]="EnemyKilledRecently",[2]="EnemyKilledByMinionsRecently"}},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["40% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["18% increased Vaal Skill Effect Duration"]={{[1]={flags=0,keywordFlags=256,name="Duration",type="INC",value=18}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 10% increased Attack Speed"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 10% increased Attack Speed "}c["40% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["Projectiles Pierce 6 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=6}},nil}c["Armour is increased by Uncapped Fire Resistance"]={{[1]={[1]={div=1,stat="FireResistTotal",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="INC",value=1}},nil}c["+55% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=55}},nil}c["14% increased Damage with Two Handed Weapons"]={{[1]={flags=268435460,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["45% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=45}},nil}c["15% reduced Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-15}},nil}c["You lose Virulence 50% slower Poisons you inflict during any Flask Effect have 40% chance to deal 100% more Damage"]={nil,"You lose Virulence 50% slower Poisons you inflict during any Flask Effect have 40% chance to deal 100% more Damage "}c["Deal no Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoChaos",type="FLAG",value=true}},nil}c["Your Critical Strikes Knock Back Shocked Enemies"]={nil,"Your Critical Strikes Knock Back Shocked Enemies "}c["10% chance to double Stun Duration 28% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="EnemyStunDuration",type="BASE",value=10}}," to double 28% increased Damage "}c["Adds 1 to 325 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=325}},nil}c["+15% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["50% reduced maximum number of Raised Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="INC",value=-50}},nil}c["70% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=70}},nil}c["Adds 3 to 7 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=7}},nil}c["Adds 1 to 75 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=75}},nil}c["Arrows Pierce all Targets after Chaining Arrows Pierce all Targets after Forking"]={nil,"Arrows Pierce all Targets after Chaining Arrows Pierce all Targets after Forking "}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of Golems"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of Golems "}c["+4% to all maximum Elemental Resistances during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=4}},nil}c["20% chance to Impale Enemies on Hit with Attacks Impales you inflict last 2 additional Hits"]={{}," to Impale Enemies on Hit Impales you inflict last 2 additional Hits "}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 5% increased Damage per Frenzy Charge 5% increased Damage per Power Charge Gain a Power or Frenzy Charge each second while Channelling"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Multiplier",var="PowerCharge"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 5% increased 5% increased Damage Gain a Power or Frenzy Charge each second while Channelling "}c["2 additional Arrows"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["Lose 25 Life for each Enemy hit by your Attacks Skills Chain +1 times"]={nil,"Lose 25 Life for each Enemy hit by your Attacks Skills Chain +1 times "}c["20% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["130% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=130}},nil}c["Adds 75 to 220 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=220}},nil}c["Adds 25 to 60 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=60}},nil}c["60% increased Energy Shield from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=60}},nil}c["60% chance to Avoid Blind"]={{}," to Avoid Blind "}c["6% increased Area of Effect while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=6}},nil}c["Socketed Gems are Supported by Level 16 Trap and Mine Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=16,skillId="SupportTrapAndMineDamage"}}},nil}c["16% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Temporal Chains has 50% reduced Effect on You"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-50}},nil}c["+45 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=45}},nil}c["0.2% of Physical Attack Damage Leeched as Mana per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.2}},nil}c["+1 to Maximum number of Raised Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil}c["22% increased Attack Speed while a Rare or Unique Enemy is Nearby"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=1,keywordFlags=0,name="Speed",type="INC",value=22}},nil}c["also grant an equal chance to gain an Endurance Charge on Kill"]={nil,"also grant an equal chance to gain an Endurance Charge on Kill "}c["Gain 30% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=30}},nil}c["If you've Warcried Recently, you and nearby allies have 20% increased Attack Speed"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=20}}}},nil}c["You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={nil,"You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit "}c["10% increased Scorching Ray beam length"]={{},"beam length "}c["700% more Unarmed Physical Damage"]={{[1]={flags=16777220,keywordFlags=0,name="PhysicalDamage",type="MORE",value=700}},nil}c["Adds 170 to 195 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=170},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=195}},nil}c["20% more Damage if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=20}},nil}c["+75 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=75},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=75}},nil}c["50% less Weapon Damage"]={{[1]={flags=8192,keywordFlags=0,name="Damage",type="MORE",value=-50}},nil}c["Cannot be Poisoned"]={nil,"Cannot be Poisoned "}c["15% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=15}},nil}c["20% increased Elemental Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil}c["Spells Cast by Totems have 3% increased Cast Speed"]={{[1]={flags=16,keywordFlags=16384,name="Speed",type="INC",value=3}},nil}c["You take 40% reduced Extra Damage from Critical Strikes while affected by Determination Unaffected by Vulnerability while affected by Determination"]={nil,"You take 40% reduced Extra Damage from Critical Strikes while affected by Determination Unaffected by Vulnerability while affected by Determination "}c["25% chance to inflict Fire Exposure on Hit Nearby Enemies have 50% increased Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}}," to inflict Fire Exposure on Hit Nearby Enemies have 50% increased "}c["24% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Golem Skills have 25% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=25}},nil}c["Adds 12 to 32 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=32}},nil}c["Raised Zombies deal 90% more Physical Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="MORE",value=90}}}},nil}c["While on Low Life, Enemies are Unlucky when Damaging you"]={nil,"While on Low Life, Enemies are Unlucky when Damaging you "}c["Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"]={nil,"Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy "}c["17% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=17}},nil}c["Projectiles gain 18% of Non-Chaos Damage as extra Chaos Damage per Chain"]={{[1]={[1]={stat="Chain",type="PerStat"},flags=1024,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=18}},nil}c["650% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=650}},nil}c["12% increased Accuracy Rating with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["+375 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=375}},nil}c["Attacks Chain an additional time when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=1,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil}c["+33% to Critical Strike Multiplier if Dexterity is higher than Intelligence"]={{[1]={[1]={type="Condition",var="DexHigherThanInt"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=33}},nil}c["60% more Attack Speed while you are Unencumbered"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="MORE",value=60}}," while you are Unencumbered "}c["Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges "}c["1% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=1}},nil}c["Grants Level 20 Bone Armour Skill 1% additional Physical Damage Reduction per Minion, up to 10% 2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20%"]={nil,nil}c["12% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["3% increased Attack Speed with Axes"]={{[1]={flags=65541,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["30% increased Minion Damage if you've used a Minion Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMinionSkillRecently"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}}},nil}c["Arrows always Pierce"]={{[1]={flags=1,keywordFlags=0,name="PierceAllTargets",type="FLAG",value=true}},nil}c["10% increased Critical Strike Chance with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}c["40% increased Critical Strike Chance with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["Minions have 20% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=20}}}},nil}c["Recover 1% of Life on Kill"]={nil,"Recover 1% of Life on Kill "}c["20% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=20}},nil}c["Recover 4% of Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 4% of Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["Adds 40 to 100 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=40},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=100}},nil}c["4% increased Evasion Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=4}},nil}c["0.5% of Attack Damage Leeched as Life per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.5}},nil}c["1% Life Regenerated per Second for each of your Traps Triggered Recently, up to 20%"]={{[1]={[1]={limit=20,limitTotal=true,type="Multiplier",var="TrapTriggeredRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["10% chance to gain Phasing for 4 seconds on Kill"]={{}," to gain Phasing for 4 seconds on Kill "}c["Projectiles cannot Pierce, Fork or Chain"]={nil,"Projectiles cannot Pierce, Fork or Chain "}c["5% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["+50% to all Elemental Resistances during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=50}},nil}c["160% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=160}},nil}c["Culling Strike against Enemies Cursed with Poacher's Mark Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"]={nil,"Culling Strike against Enemies Cursed with Poacher's Mark Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies "}c["25% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["Minions have +8% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=8}}}},nil}c["Freezes you inflict spread to other Enemies within a Radius of 12"]={nil,"Freezes you inflict spread to other Enemies within a Radius of 12 "}c["+30 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=30}},nil}c["10% chance to throw up to 1 additional Trap or Mine"]={{}," to throw up to 1 additional or Mine "}c["50% chance to gain Elusive on Critical Strike 20% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage from Critical Strikes while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 20% increased while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage while Elusive "}c["20% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}," while Elusive 8% reduced Damage taken while Elusive "}c["You Cannot Be Shocked While Frozen"]={nil,"You Cannot Be Shocked While Frozen "}c["Your Skills have no Mana Cost during Flask effect"]={nil,"Your Skills have no Mana Cost during Flask effect "}c["5% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Minions have 28% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=28}}}},nil}c["10% chance to Dodge Spell Hits"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["3% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=301989893,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["50% chance to gain Elusive on Critical Strike"]={{}," to gain Elusive "}c["8% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=8}},nil}c["Auras from your Skills grant 0.2% of Maximum Life Regenerated per second to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}}}},nil}c["40% increased Critical Strike Chance against Taunted Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Taunted"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=40}},nil}c["5% increased Melee Attack Speed"]={{[1]={flags=257,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["+40% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil}c["12% increased Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["16% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=16}},nil}c["Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds"]={nil,"Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds "}c["Poison you inflict with Critical Strikes deals 50% more Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=1048576,name="Damage",type="MORE",value=50}},nil}c["+1 Maximum Power Charge"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=1}},nil}c["24% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=24}},nil}c["28% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=28}},nil}c["25% increased Elemental Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["2 Additional Arrows"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["Damage with Weapons Penetrates 3% Elemental Resistance"]={{[1]={flags=8192,keywordFlags=0,name="ElementalPenetration",type="BASE",value=3}},nil}c["20% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=20}},nil}c["25% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=25}},nil}c["Recover 2% of Maximum Energy Shield on Kill"]={nil,"Recover 2% of Maximum Energy Shield on Kill "}c["Adds 85 to 118 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=85},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=118}},nil}c["Adds 2 to 4 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=4}},nil}c["40% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=40}},nil}c["+13 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=13}},nil}c["+50% to Critical Strike Multiplier for Spells if you haven't Killed Recently"]={{[1]={[1]={neg=true,type="Condition",var="KilledRecently"},flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}},nil}c["10% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+75 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=75}},nil}c["Adds 5 to 11 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=11}},nil}c["50% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=50}},nil}c["12% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped"]={{[1]={[1]={type="Multiplier",varList={[1]="ElderItem",[2]="ShaperItem"}},flags=0,keywordFlags=0,name="SiphoningChargesMax",type="BASE",value=1}},nil}c["10% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil}c["6% chance to Dodge Attacks while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=6}},nil}c["Attacks have 25% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil}c["and nearby Allies Regenerate 200 Life per second"]={nil,"and nearby Allies Regenerate 200 Life per second "}c["14% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["Cannot Be Stunned while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["Socketed Gems are Supported by level 15 Concentrated Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportConcentratedEffect"}}},nil}c["+44 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=44}},nil}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies +0.1% to Critical Strike Chance per Poison affecting Enemy, up to +2.0% 5% increased Poison Duration for each Poison you have inflicted Recently"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},[2]={actor="enemy",limit=2,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=1,keywordFlags=262144,name="CritChance",type="BASE",value=50}}," to Maim on Hit +0.1% to 5% increased Poison Duration for each Poison you have inflicted Recently "}c["Bow Skills have 20% increased Skill Effect Duration"]={nil,"Bow Skills have 20% increased Skill Effect Duration "}c["+400 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=400}},nil}c["3% increased Character Size 6% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=3}}," Character Size 6% increased "}c["Recover 2% of Life on Kill Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 2% of Life on Kill Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["-25% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-25}},nil}c["1% increased Spell Damage per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["Socketed Gems are Supported by level 10 Blastchain Mine"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportRemoteMine"}}},nil}c["Damage Penetrates 1% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=1}},nil}c["Grants level 20 Doryani's Touch Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TouchOfGod"}}},nil}c["Damage Penetrates 4% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=4}},nil}c["Adds 80 to 180 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=80},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=180}},nil}c["Adds 91 to 130 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=91},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=130}},nil}c["Adds 56 to 400 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=56},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=400}},nil}c["Mana Flasks gain 1 Charge every 3 seconds Remove a random Elemental Ailment when you use a Mana Flask"]={nil,"Mana Flasks gain 1 Charge every 3 seconds Remove a random Elemental Ailment when you use a Mana Flask "}c["Adds 84 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=84},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=140}},nil}c["Adds 75 to 110 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=110}},nil}c["Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing"]={nil,"Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing "}c["Adds 40 to 60 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=60}},nil}c["20% of Lightning Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageLifeLeech",type="BASE",value=20}},nil}c["Adds 25 to 50 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=25},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=50}},nil}c["Reflects 50 Cold Damage to Melee Attackers"]={nil,"Reflects 50 Cold Damage to Melee Attackers "}c["20% chance to gain an Endurance Charge when Hit while Channelling 20% chance to gain a Frenzy Charge when Hit while Channelling"]={{}," to gain an Endurance Charge when Hit 20% chance to gain aCharge when Hit "}c["12% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["100% increased Mine Arming Speed"]={{}," Arming Speed "}c["20% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["20% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=20}},nil}c["Minions have 5% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=5}}}},nil}c["You are Unaffected by Bleeding while Leeching"]={nil,"You are Unaffected by Bleeding while Leeching "}c["2% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=2}},nil}c["6% increased Attack Speed with Axes"]={{[1]={flags=65541,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["25% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=25}},nil}c["Socketed Gems are Supported by level 20 Spell Totem"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportSpellTotem"}}},nil}c["Deals 450 Chaos Damage per second to nearby Enemies You take 450 Chaos Damage per second for 10 seconds on Kill"]={nil,"Deals 450 Chaos Damage per second to nearby Enemies You take 450 Chaos Damage per second for 10 seconds on Kill "}c["Poison Cursed Enemies on hit"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["Adds 98 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=140}},nil}c["+25 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=25}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of Life when you gain Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of Life when you gain Adrenaline "}c["Gain 10% of Wand Physical Damage as Extra Fire Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=10}},nil}c["25% chance to gain a Frenzy Charge on Kill 80% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=25}}," to gain aCharge on Kill 80% increased "}c["With at least 40 Intelligence in Radius, Cold Snap has a 50% chance to grant a Power Charge on Kill"]={nil,"With at least 40 Intelligence in Radius, Cold Snap has a 50% chance to grant a Power Charge on Kill "}c["12% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=12}},nil}c["Gems Socketed in Blue Sockets gain 25% increased Experience Has no Attribute Requirements"]={nil,"Gems Socketed in Blue Sockets gain 25% increased Experience Has no Attribute Requirements "}c["Minions have 4% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=4}}}},nil}c["0.2% of Damage Leeched as Life per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.2}},nil}c["Minions have 30% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}}}},nil}c["8% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=8}},nil}c["When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={nil,"lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield "}c["10% chance to Dodge Spell Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently Regenerate 2% of Life per second if you've Taunted an Enemy Recently Enemies Taunted by you deal 10% less Damage with Hits and\nAilments against other targets"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},[2]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=262144,name="DamageTaken",type="BASE",value=100}}," to Taunt on Hit 6% reduced Regenerate 2% of Life per second Enemies Taunted by you deal 10% less Damage and\nAilments against other targets "}c["20% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=20}},nil}c["Channelling Skills deal 15% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Projectile Attack Hits deal up to 30% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther"]={{[1]={flags=0,keywordFlags=0,name="PointBlank",type="FLAG",value=true}},nil}c["Damage Penetrates 15% of Fire Resistance if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},nil}c["Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth"]={nil,"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth "}c["15% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-15}},nil}c["Adds 25 to 35 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=35}},nil}c["20% chance to double Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=20}}," to double "}c["Energy Shield Recharge is not interrupted by Damage if Recharge began Recently 50% less Energy Shield Regeneration Rate 50% less Maximum total Recovery per Second from Energy Shield Leech"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge began Recently 50% less Energy Shield Regeneration Rate 50% less Maximum total Recovery per Second from Energy Shield Leech "}c["+2 to Melee Weapon and Unarmed range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}c["If you've Blocked in the past 10 seconds, you"]={nil,"If you've Blocked in the past 10 seconds, you "}c["21% increased maximum Life, Mana and Global Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Life",type="INC",value=21}}," , Mana and Energy Shield "}c["1% of maximum Mana gained on Kill Removes 1% of maximum Life on Kill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}}," gained on Kill Removes 1% of maximum Life on Kill "}c["15% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["If you've Cast a Spell Recently, you"]={nil,"If you've Cast a Spell Recently, you "}c["You have Phasing while affected by Haste"]={{[1]={[1]={type="Condition",var="AffectedByHaste"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["8% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=8},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=8},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=8}},nil}c["With at least 40 Dexterity in Radius, Dual Strike has a 20% chance"]={nil,"With at least 40 Dexterity in Radius, Dual Strike has a 20% chance "}c["20% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=20}},nil}c["Adds 7 to 10 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit 10% chance to gain Elusive on Kill"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge 40% chance 10% chance to gain Elusive on Kill "}c["20% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["Reflects 10 Cold Damage to Melee Attackers"]={nil,"Reflects 10 Cold Damage to Melee Attackers "}c["Attack Skills deal 10% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["+65 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=65}},nil}c["You gain Onslaught for 4 seconds on Critical Strike"]={nil,"You gain Onslaught for 4 seconds on Critical Strike "}c["30% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=30}},nil}c["40% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["Damage with Weapons Penetrates 8% Cold Resistance"]={{[1]={flags=8192,keywordFlags=0,name="ColdPenetration",type="BASE",value=8}},nil}c["40% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=40}},nil}c["5% chance to Avoid Lightning Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=5}}," to Avoid from Hits "}c["+10% to all Elemental Resistances and maximum Elemental Resistances while affected by a Non-Vaal Guard Skill"]={{[1]={flags=0,keywordFlags=256,name="ElementalResist",type="BASE",value=10}}," and maximum Elemental Resistances while affected by a Non- Guard Skill "}c["Damage Penetrates 15% Fire Resistance while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},nil}c["8% increased Physical Damage for each time you've Blocked in the past 10 seconds 80% increased Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds +1% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyInPast10Sec"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}}," for each time you've Blocked in the past 10 seconds 80% increased Physical Damage +1% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds "}c["15% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=15}},nil}c["8% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["Chaos Damage does not bypass Energy Shield during effect"]={nil,"Chaos Damage does not bypass Energy Shield during effect "}c["33% of Physical Damage Converted to Lightning Damage while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=33}},nil}c["4% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=4}},nil}c["+30 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=30}},nil}c["45% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=45}},nil}c["1% of Damage Leeched as Mana against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="DamageManaLeech",type="BASE",value=1}},nil}c["+50% Chance to Block Attack Damage for 2 seconds every 5 seconds"]={{[1]={[1]={type="Condition",var="BastionOfHopeActive"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=50}},nil}c["Adds 6 to 12 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=6},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=12}},nil}c["4% increased Melee Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=256,keywordFlags=0,name="Damage",type="INC",value=4}},nil}c["50% increased Critical Strike Chance with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["25% chance to gain a Siphoning Charge when you use a Skill Adds 14 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=2,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain a Siphoning Charge when you use a Skill Adds 14 to 16 to Attacks and s "}c["30 Life gained for each Enemy Hit while affected by Vitality"]={nil,"30 Life gained for each Enemy Hit while affected by Vitality "}c["10% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=10}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies 30% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies 30% increased Damage with Hits and Ailments against Blinded Enemies "}c["Gain 10% of Wand Physical Damage as Extra Chaos Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=10}},nil}c["Immune to Shock while affected by Purity of Lightning 10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning"]={nil,"Immune to Shock while affected by Purity of Lightning 10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning "}c["Minions have 12% increased Attack and Cast Speed if you or your Minions have Killed Recently 30% increased Minion Damage if you've used a Minion Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="UsedMinionSkillRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=12}}}}," if you or your Minions have Killed Recently 30% increased Minion Damage "}c["Recover 1% of Maximum Life on Kill"]={nil,"Recover 1% of Maximum Life on Kill "}c["Attacks with Two Handed Melee Weapons deal 25% increased Damage with Ailments"]={{[1]={flags=301991936,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["100% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=100}},nil}c["8% increased Effect of Flasks on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}},nil}c["Gain a Void Charge every 0.5 seconds Elder Item"]={nil,"Gain a Void Charge every 0.5 seconds Elder Item "}c["40% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["Minions deal 50% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=50}}}},nil}c["Staff Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=2097152,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["Minions have 10% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil}c["Summoned Skeletons have 30% of Physical Damage Converted to Chaos Damage"]={nil,"Summoned Skeletons have 30% of Physical Damage Converted to Chaos Damage "}c["Bow Skills have 25% increased Area of Effect"]={nil,"Bow Skills have 25% increased Area of Effect "}c["Recover 3% of Energy Shield when you lose a Spirit Charge"]={nil,"Recover 3% of Energy Shield when you lose a Spirit Charge "}c["1% increased Maximum Life per Abyss Jewel affecting you"]={{[1]={[1]={type="Multiplier",var="AbyssJewel"},flags=0,keywordFlags=0,name="Life",type="INC",value=1}},nil}c["Adds 98 to 121 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=121}},nil}c["12% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=12}},nil}c["15% reduced Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=-15}},nil}c["Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing"]={nil,"Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing "}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit 10% increased Movement Speed if you've Killed Recently Damage from your Critical Strikes cannot be Reflected"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge 40% chance 10% increased Movement Speed Damage from your Critical Strikes cannot be Reflected "}c["When hit, 10% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=10}},nil}c["0.2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.2}},nil}c["20% increased Damage while you have a Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," while you have a Summoned "}c["You and Allies affected by your Aura Skills deal 30% increased Damage You and Allies affected by your Aura Skills have +20% to all Elemental Resistances"]={nil,"You and Allies affected by your Aura Skills deal 30% increased Damage You and Allies affected by your Aura Skills have +20% to all Elemental Resistances "}c["24% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=24}},nil}c["+23 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=23}},nil}c["Poison you inflict is Reflected to you"]={nil,"Poison you inflict is Reflected to you "}c["You take Chaos Damage instead of Physical Damage from Bleeding"]={nil,"You take Chaos Damage instead of Physical Damage from Bleeding "}c["10% chance to gain Unholy Might on block for 3 seconds +5% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}," to gain Unholy Might on block for 3 seconds +5% Chance "}c["15% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["6% chance to Avoid Cold Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="BASE",value=6}}," to Avoid from Hits "}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 20% increased Attack Speed 15% chance to deal Double Damage if you've Warcried in the past 8 seconds"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 20% increased Attack Speed 15% chance to deal Double Damage if you've Warcried in the past 8 seconds "}c["60% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs"]={{[1]={[1]={actor="enemy",threshold=3,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=60}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit "}c["Minions have +5% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=5}}}},nil}c["30% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=30}},nil}c["20% increased Raised Zombie Size"]={{}," Size "}c["Attacks with One Handed Melee Weapons deal 25% increased Damage with Ailments"]={{[1]={flags=167774208,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["140% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=140}},nil}c["Auras from your Skills grant 0.2% of Maximum Life Regenerated per second to"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}}}}," to "}c["8% chance to gain a Power, Frenzy or Endurance Charge on Kill"]={{}," to gain a Power,or Endurance Charge on Kill "}c["10% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed"]={{[1]={flags=2,keywordFlags=0,name="MovementSpeed",type="BASE",value=10}}," to Hinder Enemies on Hit , with 30% reduced "}c["+70 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=70}},nil}c["Socketed Gems are Supported by level 15 Added Chaos Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportAddedChaosDamage"}}},nil}c["Purity of Fire has 30% increased Aura Effect"]={{[1]={[1]={skillName="Purity of Fire",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["Golems have 20% increased Maximum Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=20}}}},nil}c["Golem Skills have 30% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=30}},nil}c["+11 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=11}},nil}c["15% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}c["Gain 75% increased Area of Effect for 5 seconds"]={{[1]={[1]={type="Condition",var="PendulumOfDestructionAreaOfEffect"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=75}},nil}c["-8% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-8}},nil}c["Right ring slot: 40% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-40}}," Reflected "}c["10% increased Area of Effect if you've Killed at least 5 Enemies Recently"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," if you've Killed at least 5 Enemies Recently "}c["+18% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=18}},nil}c["20% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=20}},nil}c["20% increased Golem Damage per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," per Summoned Golem "}c["25% increased Quantity of Items Dropped by Slain Frozen enemies 15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies 15% increased Quantity of Items Dropped by Slain Frozen Enemies "}c["Gain 2 Grasping Vines each second while stationary"]={nil,"Gain 2 Grasping Vines each second while stationary "}c["80% increased Critical Strike Chance during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["Enemies Cannot Leech Life From you"]={nil,"Enemies Cannot Leech Life From you "}c["0.2% of Physical Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.2}},nil}c["Gain 2 Grasping Vines each second while stationary 2% chance to deal Double Damage per Grasping Vine"]={nil,"Gain 2 Grasping Vines each second while stationary 2% chance to deal Double Damage per Grasping Vine "}c["50% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=-50}},nil}c["10% chance to Fortify on Melee hit"]={{}," to Fortify "}c["5% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=5}},nil}c["Adds 115 to 205 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=115},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=205}},nil}c["When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge "}c["Adds 175 to 205 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=175},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=205}},nil}c["With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a Nova With at least 40 Dexterity in Radius, Ethereal Knives fires 10 additional Projectiles"]={nil,"With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a Nova With at least 40 Dexterity in Radius, Ethereal Knives fires 10 additional Projectiles "}c["5% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=5},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["7% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=7}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["35% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=35}},nil}c["3% chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["+7% Base Unarmed Critical Strike Chance"]={{[1]={flags=16777220,keywordFlags=0,name="CritChance",type="BASE",value=7}},nil}c["30% increased Mana Regeneration Rate if you've Hit a Cursed Enemy Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},[2]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="BASE",value=15},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="BASE",value=15},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased "}c["+280 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=280}},nil}c["Minions have +15% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}}},nil}c["40% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit "}c["+18% to Quality"]={{}," Quality "}c["Chills from your Hits always reduce Action Speed by at least 10%"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% "}c["When you Kill an Enemy, for each Curse on that Enemy, gain 8%"]={nil,"When you Kill an Enemy, for each Curse on that Enemy, gain 8% "}c["25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=65536,name="Life",type="BASE",value=25}}," to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full 20% chance to Impale Enemies on Hit You and nearby Allies have 8% increased Movement Speed "}c["Minions have 3% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=3}}}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of an Element Gain 100% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=110}}," Bow as Extra Damage of an Element Gain 100% of Bow Physical Damage as Extra Damage of an Element "}c["140% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=140}},nil}c["Attack Skills deal 12% increased Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["You have Phasing while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["30% increased Damage with Ailments from Attack Skills"]={{[1]={flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["Minions Regenerate 2% Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}}}},nil}c["40% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-40}},nil}c["You gain Onslaught for 2 seconds on Critical Strike You gain Onslaught for 4 seconds on Critical Strike"]={nil,"You gain Onslaught for 2 seconds on Critical Strike You gain Onslaught for 4 seconds on Critical Strike "}c["Adds 80 to 375 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=80},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=375}},nil}c["Axe Attacks deal 14% increased Damage with Ailments"]={{[1]={flags=67584,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["Can Allocate Passives from the Templar's starting point"]={{},nil}c["Adds 450 to 575 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=450},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=575}},nil}c["10% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=10}},nil}c["+40% to Critical Strike Multiplier if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil}c["Axe Attacks deal 20% increased Damage with Ailments"]={{[1]={flags=67584,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Adds 1 to 4 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=4}},nil}c["Poisons you inflict deal Damage 5% faster"]={{[1]={flags=0,keywordFlags=0,name="PoisonFaster",type="INC",value=5}},nil}c["+12% to Critical Strike Multiplier with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["You gain Onslaught for 2 seconds on Critical Strike"]={nil,"You gain Onslaught for 2 seconds on Critical Strike "}c["Hits can't be Evaded"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil}c["Stun Threshold is based on 500% of your Mana instead of Life"]={nil,"Stun Threshold is based on 500% of your Mana instead of Life "}c["+25% chance to be Poisoned +3% to all maximum Resistances while Poisoned"]={{[1]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=25},[2]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=25}}," to be Poisoned +3% to "}c["350% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=350}},nil}c["10% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=10}},nil}c["10% increased Elemental Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil}c["12% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["Commissioned 160000 coins to commemorate Cadiro Passives in radius are Conquered by the Eternal Empire"]={nil,"Commissioned 160000 coins to commemorate Cadiro Passives in radius are Conquered by the Eternal Empire "}c["20% chance to Recover 10% of Mana when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," to Recover 10% of when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana "}c["Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SupportSummonGhostOnKill"}}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["90% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=90}},nil}c["10% chance to gain a Power Charge on Critical Strike 20% chance to gain a Power Charge on Non-Critical Strike +1 to Maximum Power Charges"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=10}}," to gain a Power Charge 20% chance to gain a Power Charge on Non-Critical Strike +1 to "}c["40% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40}},nil}c["18% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=18}},nil}c["70% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=70}},nil}c["+3% chance to Evade Attacks"]={{[1]={flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=3}},nil}c["Totems' Action Speed cannot be modified to below base value"]={nil,"Totems' Action Speed cannot be modified to below base value "}c["Adds 27 to 37 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=27},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=37}},nil}c["Left ring slot: You cannot Recharge or Regenerate Energy Shield"]={nil,"You cannot Recharge or Regenerate Energy Shield "}c["Adds 40 to 70 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=40},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=70}},nil}c["Adds 20 to 30 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=30}},nil}c["Socketed Gems are Supported by level 10 Added Fire Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportAddedFireDamage"}}},nil}c["Grants Level 20 Bone Armour Skill 1% additional Physical Damage Reduction per Minion, up to 10%"]={nil,nil}c["19% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=19}},nil}c["Poisons you inflict during any Flask Effect have 40% chance to deal 100% more Damage"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=1048576,name="Damage",type="MORE",value=40}},nil}c["10% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-10}},nil}c["Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Skills used by Totems have a 20% chance to Taunt on Hit "}c["Totems have 10% additional Physical Damage Reduction Brand Skills have 10% increased Duration"]={nil,"Totems have 10% additional Physical Damage Reduction Brand Skills have 10% increased Duration "}c["8% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=8},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=8},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=8}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour "}c["During Flask Effect, Damage Penetrates 13% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={stat="LightningResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},[2]={stat="LightningResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=13},[2]={[1]={stat="ColdResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="ColdResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=13},[3]={[1]={stat="FireResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="FireResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=13}},nil}c["Bow Attacks have 15% chance to cause Bleeding"]={{[1]={flags=131072,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil}c["Claw Attacks deal 16% increased Damage with Hits and Ailments"]={{[1]={flags=262144,keywordFlags=786432,name="Damage",type="INC",value=16}},nil}c["10% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=10},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=10}},nil}c["10% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit "}c["Adds 85 to 160 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=85},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=160}},nil}c["70% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=70}},nil}c["10% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=10}},nil}c["2% increased Attack Speed with Maces"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["Regenerate 1.5% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}},nil}c["15% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Consecrated Ground you create grants Immunity to Elemental Ailments"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments "}c["Increases and Reductions to Spell Damage also apply to Attacks while wielding a Wand"]={nil,"Increases and Reductions to Spell Damage also apply to Attacks while wielding a Wand "}c["30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["5% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=5}},nil}c["50% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-50}},nil}c["Curse Skills have 15% increased Skill Effect Duration"]={{[1]={[1]={skillType=32,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}c["5% increased Movement Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}c["20% increased Golem Damage per Summoned Golem 35% chance to Avoid Elemental Ailments per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," per Summoned Golem 35% chance to Avoid Elemental Ailments per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem "}c["You lose Virulence 30% slower"]={nil,"You lose Virulence 30% slower "}c["Damage with Weapons Penetrates 8% Lightning Resistance"]={{[1]={flags=8192,keywordFlags=0,name="LightningPenetration",type="BASE",value=8}},nil}c["+6% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=6}},nil}c["100% increased Blink Arrow and Mirror Arrow Cooldown Recovery Speed"]={{[1]={[1]={skillNameList={[1]="Blink Arrow",[2]="Mirror Arrow"},type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=100}},nil}c["20% increased Stun Duration with Bows on Enemies"]={{[1]={flags=131076,keywordFlags=0,name="EnemyStunDuration",type="INC",value=20}},nil}c["50% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=50}},nil}c["Consumes Frenzy Charges on use Gain Onslaught for 1 second per Frenzy Charge on use"]={nil,"Consumes Frenzy Charges on use Gain Onslaught for 1 second per Frenzy Charge on use "}c["With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a Nova"]={nil,"With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a Nova "}c["60% increased Spell Damage while no Mana is Reserved"]={{[1]={[1]={stat="ManaReserved",threshold=0,type="StatThreshold",upper=true},flags=2,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["10% increased Movement Speed if you've Hit with your Off Hand Weapon Recently"]={{[1]={flags=8192,keywordFlags=0,name="MovementSpeed",type="INC",value=10}}," if you've Hit with your Off Hand Recently "}c["Trigger level 20 Storm Cascade when you Attack"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="StormCascadeTriggered"}}},nil}c["15% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=15}},nil}c["Your Counterattacks deal Double Damage"]={nil,"Your Counterattacks deal Double Damage "}c["10% increased Effect of Auras on You for each Herald affecting you"]={{[1]={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=10}}," for each Herald affecting you "}c["+1000 to Armour and Evasion Rating while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="BASE",value=1000}},nil}c["Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["10% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=10}},nil}c["Adds 8 to 36 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=36}},nil}c["+450 to Accuracy Rating while at Maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=450}},nil}c["Base Critical Strike Chance for Attacks with Weapons is 7.5%"]={{[1]={flags=0,keywordFlags=0,name="WeaponBaseCritChance",type="OVERRIDE",value=7.5}},nil}c["6% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["Unaffected by Conductivity while affected by Purity of Lightning Unaffected by Shocked Ground while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning Unaffected by Shocked Ground while affected by Purity of Lightning "}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-10}}," Reflected Damage Penetrates 5% Elemental Resistance "}c["3% increased Attack Speed with Staves"]={{[1]={flags=2097157,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["0.2% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.2}},nil}c["20% chance to gain a Power Charge on Non-Critical Strike"]={{}," to gain a Power Charge on Non-Critical Strike "}c["10% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["70% increased Attack Damage if your other Ring is a Shaper Item"]={{[1]={[1]={type="Condition",var="ShaperItemInRing {OtherSlotNum}"},flags=1,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["Adds 5 to 8 Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},nil}c["Reflects 4 Physical Damage to Melee Attackers"]={{},nil}c["Totems gain +16% to all Elemental Resistances"]={nil,"Totems gain +16% to all Elemental Resistances "}c["15% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["10% Chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee "}c["+45% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=45}},nil}c["70% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=70}},nil}c["Unaffected by Poison"]={nil,"Unaffected by Poison "}c["Purity of Ice has 30% increased Aura Effect"]={{[1]={[1]={skillName="Purity of Ice",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["Moving while Bleeding doesn't cause Minions to take extra Damage"]={nil,"Moving while Bleeding doesn't cause Minions to take extra Damage "}c["3% reduced Damage taken per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 "}c["Adds 29 to 39 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=29},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=39}},nil}c["20% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Adds 90 to 240 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=90},[2]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=240}},nil}c["Adds 32 to 42 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=32},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=42}},nil}c["Cannot be Stunned if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["20% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," applied to s "}c["+2 to maximum number of Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=2}},nil}c["5% increased Poison Duration for each Poison you have inflicted Recently"]={{[1]={[1]={type="Multiplier",var="PoisonAppliedRecently"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=5}},nil}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned "}c["40% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=40}},nil}c["Cannot be Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChill",type="BASE",value=100}},nil}c["Damage penetrates 25% Fire Resistance while affected by Herald of Ash"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAsh"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=25}},nil}c["12% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=12}},nil}c["Reflects 200 to 250 Physical Damage to Attackers on Block Reflects 240 to 300 Physical Damage to Attackers on Block"]={nil,"Reflects 200 to 250 Physical Damage to Attackers on Block Reflects 240 to 300 Physical Damage to Attackers on Block "}c["Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect 80% increased Critical Strike Chance during Flask Effect"]={nil,"Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect 80% increased Critical Strike Chance during Flask Effect "}c["12% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=12}},nil}c["When you place a Banner, you and nearby Allies recover 0.5% of Life for"]={nil,"When you place a Banner, you and nearby Allies recover 0.5% of Life for "}c["Your Elemental Golems are Immune to Elemental Damage"]={nil,"Your Elemental Golems are Immune to Elemental Damage "}c["Minions have +5% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}}}},nil}c["+2% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["+1 to Level of all Lightning Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="lightning",[3]="active_skill"},value=1}}},nil}c["1% additional Physical Damage Reduction per Summoned Sentinel of Purity You lose Virulence 30% slower Minions deal 20% increased Damage while you are affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Summoned Sentinel of Purity You lose Virulence 30% slower Minions deal 20% increased Damage while you are affected by a Herald "}c["30% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil}c["Commanded leadership over 18000 warriors under Kaom"]={nil,"Commanded leadership over 18000 warriors under Kaom "}c["60% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=60}},nil}c["+1000 Evasion Rating while you have Tailwind"]={{[1]={[1]={type="Condition",var="Tailwind"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=1000}},nil}c["Your Chaos Damage has 60% chance to Poison Enemies"]={{[1]={flags=0,keywordFlags=0,name="ChaosPoisonChance",type="BASE",value=60}},nil}c["Commissioned 160000 coins to commemorate Cadiro"]={nil,"Commissioned 160000 coins to commemorate Cadiro "}c["20% increased Attack and Cast Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Timeless Jewel League: Legion"]={nil,"Timeless Jewel League: Legion "}c["20% increased Brand Attachment range"]={{}," Brand Attachment range "}c["23% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=23}},nil}c["100% increased Global Critical Strike Chance if you've Summoned a Totem Recently"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="SummonedTotemRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["Totems are Immune to Fire Damage"]={nil,"Totems are Immune to Fire Damage "}c["20% increased Damage if you've Killed a Cursed Enemy Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Projectiles Fork"]={nil,"Projectiles Fork "}c["Adds 6 to 12 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=12}},nil}c["180% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=180}},nil}c["-10% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=-10},[2]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=-10}},nil}c["18% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=18}},nil}c["Discipline has 30% increased Aura Effect"]={{[1]={[1]={skillName="Discipline",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["+10 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10}},nil}c["+4 Accuracy Rating per 2 Intelligence"]={{[1]={[1]={div=2,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=4}},nil}c["Socketed Gems are Supported by level 10 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportFasterAttack"}}},nil}c["Totems gain +10% to all Elemental Resistances 10% increased Brand Attachment range"]={nil,"Totems gain +10% to all Elemental Resistances 10% increased Brand Attachment range "}c["+2% Chance to Block Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["3% of Life Regenerated per second during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil}c["10% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=10}},nil}c["3% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["20% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Shock nearby Enemies for 4 Seconds when you Focus"]={nil,"Shock nearby Enemies for 4 Seconds when you Focus "}c["10% less Mana Reservation of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=-10}},nil}c["Damage Penetrates 8% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=8}},nil}c["30% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=30}},nil}c["Adds 10 to 38 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=38}},nil}c["You count as Dual Wielding while you are Unencumbered"]={nil,"You count as Dual Wielding while you are Unencumbered "}c["8% increased Accuracy Rating with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["225% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=225}},nil}c["Consecrated Ground created during Effect applies 9% increased Damage taken to Enemies"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=9}}}},nil}c["Attack Skills deal 25% increased Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["Recover 2% of Maximum Life on Kill"]={nil,"Recover 2% of Maximum Life on Kill "}c["50% increased Attack Damage with Main Hand"]={{[1]={[1]={type="Condition",var="MainHandAttack"},flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["12% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},"Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["10% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}},nil}c["17% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=17}},nil}c["Adds 20 to 30 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=20},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=30}},nil}c["-10 Physical Damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-10}}," from Hits "}c["1% increased Damage per 5 of your lowest Attribute"]={{[1]={[1]={div=5,stat="LowestAttribute",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["+10 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}},nil}c["50% increased Mine Arming Speed Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity"]={{}," Arming Speed Skills which Place Mines place up to 1 additional Mine "}c["25% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=25}},nil}c["Gain Immunity to Physical Damage for 1.5 seconds on Rampage"]={nil,"Gain Immunity to Physical Damage for 1.5 seconds on Rampage "}c["You grant 6 Frenzy Charges to allies on Death"]={nil,"You grant 6 Frenzy Charges to allies on Death "}c["25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently"]={{}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second "}c["Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed "}c["Recover 3% of Mana when you Kill an Enemy during Flask Effect Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Mana when you Kill an Enemy during Flask Effect Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect "}c["You cannot be Shocked for 3 seconds after being Shocked"]={nil,"You cannot be Shocked for 3 seconds after being Shocked "}c["220% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=220}},nil}c["+1 second to Summon Skeleton Cooldown"]={{}," second to Summon Cooldown "}c["Attack Skills deal 15% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["25% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=25}},nil}c["You cannot be Frozen for 3 seconds after being Frozen You cannot be Ignited for 3 seconds after being Ignited"]={nil,"You cannot be Frozen for 3 seconds after being Frozen You cannot be Ignited for 3 seconds after being Ignited "}c["Sockets cannot be modified"]={nil,"Sockets cannot be modified "}c["20% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=20}},nil}c["60% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=60}},nil}c["+35% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=35}},nil}c["Recover 100 Life when your Trap is triggered by an Enemy Recover 50 Energy Shield when your Trap is triggered by an Enemy"]={nil,"Recover 100 Life when your Trap is triggered by an Enemy Recover 50 Energy Shield when your Trap is triggered by an Enemy "}c["+1 to maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil}c["Attack Skills deal 30% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["20% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}c["20% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["Staff Attacks deal 15% increased Damage with Hits and Ailments"]={{[1]={flags=2097152,keywordFlags=786432,name="Damage",type="INC",value=15}},nil}c["Lose 15 Life for each Enemy hit by your Spells Lose 25 Life for each Enemy hit by your Attacks"]={nil,"Lose 15 Life for each Enemy hit by your Spells Lose 25 Life for each Enemy hit by your Attacks "}c["Regenerate 1% of Life per Second for each Trap Triggered Recently, up to 10% per second"]={{[1]={[1]={limit=10,limitTotal=true,type="Multiplier",var="TrapTriggeredRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["+2 Life Gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=2}},nil}c["Recharge began Recently"]={nil,"Recharge began Recently "}c["20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Summoned 25% increased Effect of Buffs granted by your Golems for each Summoned Golem "}c["Enemies near your Totems deal 8% less Damage"]={nil,"Enemies near your Totems deal 8% less Damage "}c["Recover 50% of your maximum Life on use Recover 75% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use Recover 75% of your maximum Life on use "}c["15% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["18% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=18}},nil}c["Minions have +4% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}}}},nil}c["Minions Regenerate of 1% Life per second Minions have +10% to all Elemental Resistances"]={nil,"Regenerate of 1% Life per second Minions have +10% to all Elemental Resistances "}c["Damage Penetrates 6% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=6}},nil}c["15% increased Melee Physical Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["3% increased Area of Effect per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=3}},nil}c["If you've Warcried Recently, you and nearby allies have 10% increased Attack, Cast and Movement Speed"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=10}}},[2]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}}}},nil}c["13% increased Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=13}},nil}c["50% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["20% increased Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["1% additional Physical Damage Reduction per Minion, up to 10% 2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20%"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Minion, up to 10% 2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20% "}c["Lightning Damage with Non-Critical Strikes is Lucky"]={nil,"Lightning Damage with Non-Critical Strikes is Lucky "}c["+30 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=30},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=30}},nil}c["+180 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=180}},nil}c["+60% to Fire Resistance while affected by Herald of Ash"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAsh"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=60}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges "}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem"]={{}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a "}c["+13 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=13},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=13}},nil}c["20% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["Trigger Level 20 Glimpse of Eternity when Hit"]={nil,nil}c["4% additional Physical Damage Reduction while affected by a Guard Skill Buff"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}}," while affected by a Guard Skill Buff "}c["15% of Damage Taken from Hits is Leeched as Life during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="DamageTakenLifeLeech",type="BASE",value=15}}," from Hits "}c["+8% to Critical Strike Multiplier for each Mine Detonated"]={{[1]={flags=0,keywordFlags=8192,name="CritMultiplier",type="BASE",value=8}}," for each Detonated "}c["100% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=100}},nil}c["8% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=8}},nil}c["+35% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=35}},nil}c["+84 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=84}},nil}c["1% increased Cold Damage per 25 Dexterity"]={{[1]={[1]={div=25,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=1}},nil}c["Damage penetrates 25% Lightning Resistance while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=25}},nil}c["Attacks have 20% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=20}},nil}c["Lightning Skills have a 25% chance to apply Lightning Exposure on Hit"]={nil,"a 25% chance to apply Lightning Exposure on Hit "}c["Skills Supported by Unleash have 30% increased Seal gain frequency"]={nil,"Skills Supported by Unleash have 30% increased Seal gain frequency "}c["25% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=25}},nil}c["Uses both hand slots"]={nil,"Uses both hand slots "}c["Every 10 seconds, gain 70% of Physical Damage as Extra Fire Damage for 3 seconds"]={nil,"Every 10 seconds, gain 70% of Physical Damage as Extra Fire Damage for 3 seconds "}c["50% chance to Cause Bleeding on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["Socketed Gems are Supported by level 20 Elemental Proliferation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportElementalProliferation"}}},nil}c["25% increased Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Adds 140 to 285 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=140},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=285}},nil}c["to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds "}c["Raised Spectres, Raised Zombies, and Summoned Skeletons have +50% to Critical Strike Multiplier"]={nil,"Raised Spectres, Raised Zombies, and Summoned Skeletons have +50% to Critical Strike Multiplier "}c["10% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["18% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["150% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=150}},nil}c["8% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Gain Onslaught for 1 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use "}c["Totems have 15% additional Physical Damage Reduction"]={nil,"Totems have 15% additional Physical Damage Reduction "}c["15% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil}c["Fractured item"]={nil,"Fractured item "}c["With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires Shard Projectiles when Chaining With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires 75% less Shard Projectiles"]={nil,"With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires Shard Projectiles when Chaining With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires 75% less Shard Projectiles "}c["10% increased Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["4% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=4}},nil}c["You count as on Low Life while you are Cursed with Vulnerability"]={{[1]={[1]={type="Condition",var="AffectedByVulnerability"},flags=0,keywordFlags=0,name="Condition:LowLife",type="FLAG",value=true}},nil}c["Attacks used by Totems have 8% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=8}},nil}c["Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect"]={nil,"Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect "}c["With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike cannot choose Fire With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike deal 50% less Fire Damage"]={nil,"With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike cannot choose Fire With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike deal 50% less Fire Damage "}c["50% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=50}},nil}c["Attacks have 10% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil}c["Fire Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=16,name="PoisonChance",type="BASE",value=20}},nil}c["1% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=1}},nil}c["10% chance that if you would gain a Crab Barrier, you instead gain up to your maximum number of Crab Barriers"]={{[1]={flags=0,keywordFlags=0,name="CrabBarriersMax",type="BASE",value=10}}," that if you would gain a Crab Barrier, you instead gain up to your "}c["Ignites you inflict deal Damage 15% faster"]={nil,"Ignites you inflict deal Damage 15% faster "}c["10% increased Accuracy Rating with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["10% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=10}},nil}c["Summoned Sentinels of Purity have 50% increased Area of Effect"]={nil,"Summoned Sentinels of Purity have 50% increased Area of Effect "}c["2 Enemy Writhing Worms escape the Flask when used 10% reduced Charges used"]={nil,"2 Enemy Writhing Worms escape the Flask when used 10% reduced Charges used "}c["Grants Level 25 Purity of Ice Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="ColdResistAura"}}},nil}c["180% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=180}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy "}c["Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=4},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=7}},nil}c["If you've Consumed a corpse Recently, you and your Minions have 30% increased Area of Effect"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30},[2]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}}}},nil}c["12% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=12}},nil}c["Iron Will"]={{[1]={flags=0,keywordFlags=0,name="IronWill",type="FLAG",value=true}},nil}c["70% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=70}},nil}c["Chaos Skills have 30% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=128,name="Duration",type="INC",value=30}},nil}c["+3% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=3}},nil}c["30% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["2% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["0.2% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=0.2}},nil}c["Cannot be Stunned by Spells if your other Ring is a Shaper Item 20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"]={nil,"Cannot be Stunned by Spells if your other Ring is a Shaper Item 20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill "}c["8% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=8}},nil}c["You cannot be Ignited for 3 seconds after being Ignited You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Ignited for 3 seconds after being Ignited You cannot be Shocked for 1 second after being Shocked "}c["Summoned Skeletons' hits can't be Evaded"]={nil,"Summoned Skeletons' hits can't be Evaded "}c["170% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=170}},nil}c["6% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=6},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=6},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=6}},nil}c["Totems gain +20% to all Elemental Resistances"]={nil,"Totems gain +20% to all Elemental Resistances "}c["18% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=18}},nil}c["10% increased Mana Recovery Rate during Effect of any Mana Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=10}}," of any Mana Flask "}c["30% increased Critical Strike Chance with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["1% increased Melee Physical Damage per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=1}},nil}c["1% of maximum Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}}," gained on Kill "}c["10% chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee "}c["5% increased Spell Damage per 5% Chance to Block Attack Damage"]={{[1]={[1]={div=5,stat="BlockChance",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["+8% to Non-Ailment Chaos Damage over Time Multiplier +8% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=8}}," Non-Ailment +8% to Cold Damage over Time Multiplier "}c["Cannot Knock Enemies Back"]={{[1]={flags=0,keywordFlags=0,name="CannotKnockback",type="FLAG",value=true}},nil}c["Adds 2 to 45 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=2},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=45}},nil}c["250% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=250}},nil}c["25% chance to gain an Endurance Charge when you Stun an Enemy"]={{}," to gain an Endurance Charge when you Stun an Enemy "}c["5% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=5}},nil}c["With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires Shard Projectiles when Chaining"]={nil,"With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires Shard Projectiles when Chaining "}c["Remove an Ailment when you use a Flask if all Equipped Items are Elder Items"]={nil,"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items "}c["+55 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=55}},nil}c["Claw Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=262144,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["12% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["+23% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=23}},nil}c["+90% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=90}},nil}c["Regenerate 2% of Energy Shield per second if you’ve Killed an Enemy Recently"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=2}}," if you’ve Killed an Enemy Recently "}c["Nearby Chilled Enemies deal 10% reduced Damage with Hits"]={nil,"Nearby Chilled Enemies deal 10% reduced Damage with Hits "}c["When you create a Banner, it gains 40% of the Stages of your placed Banner You and nearby Allies have 12% increased Movement Speed"]={nil,"When you create a Banner, it gains 40% of the Stages of your placed Banner You and nearby Allies have 12% increased Movement Speed "}c["Ignites you inflict spread to other Enemies within a Radius of 15"]={nil,"Ignites you inflict spread to other Enemies within a Radius of 15 "}c["Removes Bleeding when you use a Flask"]={nil,"Removes Bleeding when you use a Flask "}c["Adds 9 to 14 Chaos Damage for each Spider's Web on the Enemy"]={{[1]={[1]={actor="enemy",type="Multiplier",var="Spider's WebStack"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=9},[2]={[1]={actor="enemy",type="Multiplier",var="Spider's WebStack"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=14}},nil}c["20% increased Attack Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["+80 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=80}},nil}c["20% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},[2]={type="Condition",var="UsedSkillRecently"},flags=0,keywordFlags=0,name="PhysicalDegen",type="BASE",value=150}},nil}c["do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["8% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=8}},nil}c["90% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=90}},nil}c["50% increased Elemental Ailment Duration on You"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}}," Elemental Ailment on You "}c["25% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=25}},nil}c["25% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["30% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=30}},nil}c["20% of Life Regenerated per Second while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=20}},nil}c["30% increased Totem Duration"]={{[1]={flags=0,keywordFlags=0,name="TotemDuration",type="INC",value=30}},nil}c["+5% to Damage over Time Multiplier for Poison per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=5}},nil}c["165% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=165}},nil}c["22% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=22}},nil}c["25% chance to inflict Brittle"]={{}," to inflict Brittle "}c["Enemies you kill are Shocked"]={nil,"Enemies you kill are Shocked "}c["1.2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1.2}},nil}c["Socketed Gems are Supported by level 18 Added Lightning Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportAddedLightningDamage"}}},nil}c["Gain 100 Life when an Endurance Charge expires or is consumed"]={nil,"Gain 100 Life when an Endurance Charge expires or is consumed "}c["Chill Enemy for 1 second when Hit"]={nil,"Chill Enemy for 1 second when Hit "}c["4% increased Cast Speed with Chaos Skills"]={{[1]={flags=16,keywordFlags=128,name="Speed",type="INC",value=4}},nil}c["150% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=150}},nil}c["50% increased Rarity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=50}},nil}c["+3% to Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=3}},nil}c["25% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=25}},nil}c["Gain 5 Rage when you use a Warcry"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true},[2]={[1]={type="Condition",var="CanGainRage"},flags=0,keywordFlags=0,name="Dummy",type="DUMMY",value=1}},nil}c["Trigger Level 1 Abyssal Cry on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="AbyssalCry"}}},nil}c["Curses on Slain Enemies are transferred to a nearby Enemy"]={nil,"Curses on Slain Enemies are transferred to a nearby Enemy "}c["Recover 2% of Life on Kill"]={nil,"Recover 2% of Life on Kill "}c["20% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["Passives in radius are Conquered by the Maraketh"]={nil,"Passives in radius are Conquered by the Maraketh "}c["15% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=15}},nil}c["+2 to Maximum number of Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=2}},nil}c["+30% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=30}},nil}c["200% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=200}},nil}c["40% increased Mine Detonation Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MineDetonationAreaOfEffect",type="INC",value=40}},nil}c["Spell Skills deal no Damage"]={nil,"no Damage "}c["Adds 14 to 21 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=21}},nil}c["4% chance to deal Double Damage while wielding a Mace, Sceptre or Staff"]={{[1]={[1]={type="Condition",varList={[1]="UsingMace",[2]="UsingStaff"}},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=4}},nil}c["Minions have 25% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=25}}}},nil}c["Minions' Attacks deal 7 to 14 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=7}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=14}}}},nil}c["Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy"]={nil,"Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy "}c["1% of Physical Attack Damage leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1}},nil}c["25% chance to gain an Endurance Charge each second while Channelling"]={{}," to gain an Endurance Charge each second "}c["20% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit 10% chance to gain Elusive on Kill Damage from your Critical Strikes cannot be Reflected"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge 40% chance 10% chance to gain Elusive on Kill Damage from your Critical Strikes cannot be Reflected "}c["14% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=14}},nil}c["45% increased Aspect of the Spider Debuff Duration"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=45}},nil}c["Adds 29 to 39 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=29},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=39}},nil}c["You lose all Endurance Charges when Hit"]={nil,"You lose all Endurance Charges when Hit "}c["+25% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["30% increased Melee Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=256,keywordFlags=262144,name="Damage",type="INC",value=30}},nil}c["3% more Damage per Summoned Totem"]={{[1]={[1]={stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=3}},nil}c["15% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Reflects 5 Physical Damage to Melee Attackers"]={{},nil}c["35% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=35}},nil}c["60 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=60}},nil}c["When you or your Totems Kill a Burning Enemy, 20% chance for you"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you "}c["200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},[2]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=200}},nil}c["Every 16 seconds you gain Elemental Overload for 8 seconds"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds "}c["20% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["Enemies have -10% to Total Physical Damage Reduction against your Hits"]={{[1]={flags=0,keywordFlags=0,name="EnemyPhysicalDamageReduction",type="BASE",value=-10}},nil}c["50% increased Herald of Ice Damage"]={{[1]={[1]={skillName="Herald of Ice",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["Instant Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskInstantRecovery",type="BASE",value=100}},nil}c["Chill nearby Enemies when you Focus, causing 30% reduced Action Speed"]={nil,"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed "}c["22% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=22}},nil}c["Never deal Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="NeverCrit",type="FLAG",value=true}},nil}c["Adds 1 to 40 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=40}},nil}c["Adds 18 to 28 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=28}},nil}c["Socketed Gems are Supported by level 1 Cold Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportColdPenetration"}}},nil}c["30% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating"]={nil,"Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating "}c["Minions deal 60% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=60}}}},nil}c["6% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["grant 100% increased Flask Charges"]={nil,"grant 100% increased Flask Charges "}c["100% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=100}},nil}c["15% reduced Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-15}},nil}c["10% chance to Dodge Spell Hits if you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["20% chance to Avoid Projectiles while Phasing You have Phasing if you've Killed Recently"]={{[1]={[1]={type="Condition",var="Phasing"},[2]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to Avoid You have Phasing "}c["100% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=100}},nil}c["Adds 6 to 13 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=13}},nil}c["You have Onslaught while not on Low Mana"]={{[1]={[1]={neg=true,type="Condition",var="LowMana"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["7% Global chance to Blind Enemies on hit +1 Mana gained on Kill per Level"]={nil,"7% Global chance to Blind Enemies on hit +1 Mana gained on Kill per Level "}c["+1 Mana gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=1}},nil}c["Trigger a Socketed Bow Skill when you Attack with a Bow 12% increased Attack Speed"]={nil,"Trigger a Socketed Bow Skill when you Attack with a Bow 12% increased Attack Speed "}c["You gain Onslaught for 3 seconds on Culling Strike Cannot be Chilled while you have Onslaught"]={nil,"You gain Onslaught for 3 seconds on Culling Strike Cannot be Chilled while you have Onslaught "}c["Adds 53 to 110 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=110}},nil}c["Adds 13 to 28 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=28}},nil}c["+1 Energy Shield gained on Kill per Level +1 to maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},[2]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}}," gained on Kill +1 to maximum Life "}c["Removes Bleeding when you use a Flask Gain a Flask Charge when you deal a Critical Strike"]={nil,"Removes Bleeding when you use a Flask Gain a Flask Charge when you deal a Critical Strike "}c["Socketed Gems are Supported by level 14 Spell Totem"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=14,skillId="SupportSpellTotem"}}},nil}c["30% chance to gain a Power Charge when you Stun"]={{}," to gain a Power Charge when you Stun "}c["1% increased Armour per 16 Strength when in Off Hand"]={{[1]={[1]={div=16,stat="Str",type="PerStat"},[2]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Armour",type="INC",value=1}},nil}c["17% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=17}},nil}c["Summon 2 additional Skeleton Warriors with Summon Skeleton +1 second to Summon Skeleton Cooldown"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton +1 second to Summon Skeleton Cooldown "}c["Gain 20% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=20}},nil}c["Bathed in the blood of 8000 sacrificed in the name of Doryani Passives in radius are Conquered by the Vaal"]={nil,"Bathed in the blood of 8000 sacrificed in the name of Doryani Passives in radius are Conquered by the Vaal "}c["Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies take 10% increased Elemental Damage"]={nil,"Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies take 10% increased Elemental Damage "}c["Adds 60 to 120 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=120}},nil}c["40% increased Energy Shield from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil}c["Minions deal 35% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=35}}}},nil}c["Summoned Skeletons take 23% of their Maximum Life per second as Fire Damage"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={div=1,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=0.23}}}},nil}c["25% increased Zombie Size"]={{}," Size "}c["Enemies killed by Zombies explode dealing 20% of their Maximum Life as Fire Damage Zombies deal 100% increased Physical Damage"]={nil,"Enemies killed by Zombies explode dealing 20% of their Maximum Life as Fire Damage Zombies deal 100% increased Physical Damage "}c["Chill Effect and Freeze duration on you is based on 100% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 100% of Energy Shield "}c["20% increased Lightning Damage per 1% Lightning Resistance above 75%"]={{[1]={[1]={div=1,stat="LightningResistOver75",type="PerStat"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=20}},nil}c["Adds 56 to 78 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=56},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=78}},nil}c["25% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=25}},nil}c["Adds 30 to 58 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=58}},nil}c["16% increased Physical Weapon Damage per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration "}c["80% increased Damage with Hits and Ailments against Hindered Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Hindered"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=80}},nil}c["40% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=40}},nil}c["+45% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}},nil}c["+26% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=26}},nil}c["Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit"]={nil,"Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit "}c["Non-Aura Curses you inflict are not removed from Dying Enemies"]={nil,"Non-Aura Curses you inflict are not removed from Dying Enemies "}c["14% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=14}},nil}c["10% chance to Cause Monsters to Flee Enemies you Shock have 30% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="BASE",value=10}}," to Cause Monsters to Flee Enemies you Shock have 30% reduced "}c["Enemies you Shock have 30% reduced Cast Speed Enemies you Shock have 20% reduced Movement Speed"]={nil,"Enemies you Shock have 30% reduced Cast Speed Enemies you Shock have 20% reduced Movement Speed "}c["Enemies you Shock have 20% reduced Movement Speed"]={nil,"Enemies you Shock have 20% reduced Movement Speed "}c["Adds 90 to 345 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=90},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=345}},nil}c["Minions have 40% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=40}}}},nil}c["1% additional Physical Damage Reduction per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}},nil}c["210% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=210}},nil}c["Adds 30 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["24% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=24}},nil}c["Regenerate 1.2% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.2}},nil}c["Adds 53 to 76 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=76}},nil}c["Totems gain +20% to all Elemental Resistances Totems have 15% additional Physical Damage Reduction"]={nil,"Totems gain +20% to all Elemental Resistances Totems have 15% additional Physical Damage Reduction "}c["Adds 15 to 35 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=35}},nil}c["Adds 36 to 360 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=36},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=360}},nil}c["+20 Mana gained when you Block +24 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," gained when you Block +24 Mana gained when you Block "}c["5% chance to Dodge Attack Hits from Cursed Enemies"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5}}," from Cursed Enemies "}c["10% chance to Blind Enemies on Hit with Attacks 25% more Damage with Bleeding"]={{[1]={flags=0,keywordFlags=65536,name="Damage",type="BASE",value=10}}," to Blind Enemies on Hit 25% more with Bleeding "}c["45% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=45}},nil}c["13% reduced Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=-13}},nil}c["Your Maximum Resistances are 78%"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="OVERRIDE",value=78},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="OVERRIDE",value=78},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="OVERRIDE",value=78},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="OVERRIDE",value=78}},nil}c["+50 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=50}},nil}c["5% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=5}},nil}c["15% chance for your Flasks to not consume Charges"]={{}," for your Flasks to not consume Charges "}c["Adds 14 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=196608,name="PhysicalMin",type="BASE",value=14},[2]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=196608,name="PhysicalMax",type="BASE",value=16}},nil}c["Gain 40% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=40}},nil}c["Passives granting Lightning Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius "}c["You have Culling Strike against Cursed Enemies"]={nil,"You have Culling Strike against Cursed Enemies "}c["Adds 96 to 118 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=96},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=118}},nil}c["Adds 70 to 350 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=350}},nil}c["Recover 50 Life when you Block"]={nil,"Recover 50 Life when you Block "}c["30% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-30}},nil}c["8% increased Attack Speed with Axes"]={{[1]={flags=65541,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Non-Aura Curses you inflict are not removed from Dying Enemies Enemies near Corpses affected by your Curses are Blinded"]={nil,"Non-Aura Curses you inflict are not removed from Dying Enemies Enemies near Corpses affected by your Curses are Blinded "}c["Damage with Weapons Penetrates 5% Elemental Resistance"]={{[1]={flags=8192,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil}c["+20 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["Minions have 10% increased Area of Effect if you used a Minion Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}}}," if you used a Minion Skill Recently "}c["Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 60% increased Damage to Ignited Enemies"]={nil,"Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 60% increased Damage to Ignited Enemies "}c["Skills Chain +1 times"]={{[1]={flags=0,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil}c["+2 to maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=2}},nil}c["Enemies Poisoned by you cannot Regenerate Life"]={nil,"Enemies Poisoned by you cannot Regenerate Life "}c["Dispels Elemental Ailments on Rampage"]={nil,"Dispels Elemental Ailments on Rampage "}c["Adds 5 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["25% increased Accuracy Rating with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Accuracy",type="INC",value=25}},nil}c["2% increased Spell Damage per 100 Maximum Mana, up to 40%"]={{[1]={[1]={div=100,limit=40,limitTotal=true,stat="Mana",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=2}},nil}c["You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked "}c["6% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=6}},nil}c["15% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},nil}c["You and nearby allies have 6% increased Attack, Cast and Movement Speed if you've Warcried Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=6}}},[2]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=6}}}},nil}c["15% increased Elemental Damage if you've Chilled an Enemy Recently 20% increased Elemental Damage if you've Ignited an Enemy Recently"]={{[1]={[1]={type="Condition",var="IgnitedEnemyRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=15}}," if you've Chilled an Enemy Recently 20% increased Elemental Damage "}c["3% increased Attack Speed with Daggers"]={{[1]={flags=524293,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["360% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=360}},nil}c["15% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=15}},nil}c["Minions gain 10% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=10}}}},nil}c["6% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=6}},nil}c["+10% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["20% increased Cold Damage per 1% Cold Resistance above 75%"]={{[1]={[1]={div=1,stat="ColdResistOver75",type="PerStat"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=20}},nil}c["Enemies Cannot Leech Life From You"]={nil,"Enemies Cannot Leech Life From You "}c["30% increased Trap Trigger Radius 60% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=30}}," Trigger 60% increased Trap Trigger Area of Effect "}c["15% increased Damage per Curse on you"]={{[1]={[1]={type="Multiplier",var="CurseOnSelf"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["When you create a Banner, it gains 40% of the Stages of your placed Banner"]={nil,"When you create a Banner, it gains 40% of the Stages of your placed Banner "}c["If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1"]={nil,"If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 "}c["Life Leech effects are not removed at Full Life"]={nil,"Life Leech effects are not removed at Full Life "}c["50% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["5% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=167772165,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Recover 1% of Maximum Life when you Ignite an Enemy 100% increased Melee Physical Damage against Ignited Enemies"]={nil,"Recover 1% of Maximum Life when you Ignite an Enemy 100% increased Melee Physical Damage against Ignited Enemies "}c["35% chance to Avoid Elemental Ailments per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=35},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=35},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=35}}," per Summoned 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems "}c["Projectiles gain 20% of Non-Chaos Damage as extra Chaos Damage per Chain"]={{[1]={[1]={stat="Chain",type="PerStat"},flags=1024,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=20}},nil}c["Attacks Maim on Hit against Bleeding Enemies"]={nil,"Attacks Maim on Hit against Bleeding Enemies "}c["30% increased Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Grants Summon Harbinger of Directions Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfDirections"}}},nil}c["1% increased Attack Speed per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil}c["1% increased Fire Damage per 20 Strength"]={{[1]={[1]={div=20,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=1}},nil}c["40% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=40}},nil}c["You are Shocked during Flask effect"]={nil,"You are Shocked during Flask effect "}c["You have Phasing during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["Action Speed cannot be modified to below base value"]={nil,"Action Speed cannot be modified to below base value "}c["+75% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=75}},nil}c["2% increased Energy Shield per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=2}},nil}c["Regenerate 15 Mana per Second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=15}},nil}c["+24 Mana gained when you Block 20% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=24}}," gained when you Block 20% reduced Movement Speed "}c["+4% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=4}},nil}c["4% chance to Dodge Attack or Spell Hits if you've Hit an Enemy Recently"]={{}," to Dodge Attack or Hits "}c["4% chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["Passives granting Fire Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Fire Resistance or all Elemental Resistances in Radius "}c["When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={nil,"lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["Minions have +0% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=0}}}},nil}c["+9% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=9}},nil}c["Totems cannot be Stunned"]={nil,"Totems cannot be Stunned "}c["Adds 1 to 2 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=2}},nil}c["60% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=60}},nil}c["Adds an additional Arrow"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}c["Trigger Level 20 Glimpse of Eternity when Hit 150% increased Evasion and Energy Shield"]={nil,"Trigger Level 20 Glimpse of Eternity when Hit 150% increased Evasion and Energy Shield "}c["10% increased Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Axe or Sword Attacks deal 20% increased Damage with Ailments"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=2048,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["+24 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}c["1.5% of Fire Damage Leeched as Life while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=1.5}},nil}c["5% increased Movement Speed if you've thrown a Trap or Mine Recently"]={{[1]={flags=0,keywordFlags=4096,name="MovementSpeed",type="INC",value=5}}," if you've thrown a or Mine Recently "}c["8% chance to Block Spells while affected by Discipline"]={{[1]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=8}},nil}c["If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage"]={nil,"If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage "}c["40% faster start of Energy Shield Recharge while affected by Discipline"]={{[1]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=40}},nil}c["Immune to Elemental Ailments during any Flask Effect"]={nil,"Immune to Elemental Ailments during any Flask Effect "}c["20% chance when Placing Mines to Place an additional Mine"]={{}," when Placing s to Place an additional Mine "}c["+150 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=150}},nil}c["Poisons you inflict deal Damage 10% faster"]={{[1]={flags=0,keywordFlags=0,name="PoisonFaster",type="INC",value=10}},nil}c["8% chance to Dodge Spells while affected by Haste"]={{[1]={[1]={type="Condition",var="AffectedByHaste"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=8}},nil}c["of their maximum Life as Chaos Damage."]={nil,"of their maximum Life as Chaos Damage. "}c["Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill"]={nil,"Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill "}c["400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},[2]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=400}},nil}c["5% increased Area of Effect per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["12% of Physical Damage taken as Fire Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=12}},nil}c["5% reduced Damage taken"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-5}},nil}c["8% increased Attack Speed with Staves"]={{[1]={flags=2097157,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["+35% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=35}},nil}c["10% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=10}},nil}c["60% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=60}},nil}c["40% increased Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=40}},nil}c["50% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},nil}c["+24 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}c["Totems Reflect 15% of their maximum Life as Fire Damage to nearby Enemies when Hit"]={nil,"Totems Reflect 15% of their maximum Life as Fire Damage to nearby Enemies when Hit "}c["Unaffected by Shocked Ground while affected by Purity of Lightning 1.5% of Damage leeched as Life while affected by Vitality"]={nil,"Unaffected by Shocked Ground while affected by Purity of Lightning 1.5% of Damage leeched as Life while affected by Vitality "}c["25% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="INC",value=25}},nil}c["1.5% of Lightning Damage is Leeched as Mana while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="LightningDamageManaLeech",type="BASE",value=1.5}},nil}c["Damage Penetrates 15% Lightning Resistance while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=15}},nil}c["26% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=26}},nil}c["Right ring slot: Projectiles from Spells cannot Fork"]={nil,"Projectiles from Spells cannot Fork "}c["Gain a Power Charge when you use a Vaal Skill 10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"]={nil,"Gain a Power Charge when you use a Vaal Skill 10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently "}c["+30% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["50% chance to gain Elusive on Critical Strike 15% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 15% increased while Elusive 8% reduced Damage taken while Elusive "}c["With at least 40 Intelligence in Radius, can summon up to 3 Skeleton Mages with Summon Skeletons"]={nil,"With at least 40 Intelligence in Radius, can summon up to 3 Skeleton Mages with Summon Skeletons "}c["Can have up to 5 Implicit Modifiers while Item has this Modifier"]={nil,"Can have up to 5 Implicit Modifiers while Item has this Modifier "}c["18% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=18}},nil}c["Grants Perfect Agony during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Perfect Agony"}},nil}c["Minions have +9% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=9}}}},nil}c["With at least 40 Dexterity in Radius, Melee Damage"]={nil,"With at least 40 Dexterity in Radius, Melee Damage "}c["You cannot be Chilled for 3 seconds after being Chilled You cannot be Frozen for 3 seconds after being Frozen"]={nil,"You cannot be Chilled for 3 seconds after being Chilled You cannot be Frozen for 3 seconds after being Frozen "}c["With at least 40 Intelligence in Radius, 25% increased Freezing Pulse Damage if"]={nil,"With at least 40 Intelligence in Radius, 25% increased Freezing Pulse Damage if "}c["With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile"]={nil,"With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile "}c["50% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-50}},nil}c["+10% to Non-Ailment Chaos Damage over Time Multiplier 24% increased Damage Over Time with Bow Skills Poisons you inflict deal Damage 10% faster"]={{[1]={flags=0,keywordFlags=512,name="ChaosDotMultiplier",type="BASE",value=10}}," Non-Ailment 24% increased Damage Over Time Poisons you inflict deal Damage 10% faster "}c["15% chance of Projectiles Piercing Projectiles Pierce an additional Target"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=15}}," of Piercing Projectiles Pierce an additional Target "}c["13% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=13}},nil}c["10% increased Effect of your Curses if you've spent 200 total Mana Recently Remove a Curse when you use a Mana Flask"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}}," if you've spent 200 total Mana Recently Remove a Curse when you use a Mana Flask "}c["60% reduced Mana Cost of Totem Skills that cast an Aura Corrupted"]={{[1]={flags=0,keywordFlags=16384,name="ManaCost",type="INC",value=-60}}," Skills that cast an Aura Corrupted "}c["60% chance to Poison on Hit against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=262144,name="PoisonChance",type="BASE",value=60}},nil}c["Lightning Spells have 15% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=2,keywordFlags=64,name="PhysicalDamageConvertToLightning",type="BASE",value=15}},nil}c["+1 to Minimum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMin",type="BASE",value=1}},nil}c["35% chance to Avoid Elemental Ailments per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=35},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=35},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=35}}," per Summoned "}c["With at least 40 Intelligence in Radius, Raised"]={nil,"With at least 40 Intelligence in Radius, Raised "}c["Your Cold Damage can Ignite but not Freeze or Chill"]={{[1]={flags=0,keywordFlags=0,name="ColdCanIgnite",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ColdCannotFreeze",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="ColdCannotChill",type="FLAG",value=true}},nil}c["10% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=10}},nil}c["With at least 40 Strength in Radius, Ground Slam has a 35% increased angle With at least 40 Strength in Radius, Ground Slam has a 50% increased angle"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 35% increased angle With at least 40 Strength in Radius, Ground Slam has a 50% increased angle "}c["With at least 40 Strength in Radius, Ground Slam has a 50% increased angle"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 50% increased angle "}c["With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy With at least 40 Strength in Radius, Ground Slam has a 35% chance to grant an Endurance Charge when you Stun an Enemy"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy With at least 40 Strength in Radius, Ground Slam has a 35% chance to grant an Endurance Charge when you Stun an Enemy "}c["15% chance to gain a Frenzy Charge when you Stun an Enemy"]={{}," to gain aCharge when you Stun an Enemy "}c["4% increased Attack Speed with Wands"]={{[1]={flags=8388613,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["5% chance to gain a Frenzy Charge on Kill while Dual Wielding"]={{}," to gain aCharge on Kill "}c["+200 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=200}},nil}c["+10% to Critical Strike Multiplier per Nearby Enemy, up to +100%"]={{[1]={[1]={limit=100,limitTotal=true,type="Multiplier",var="NearbyEnemy"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits."]={nil,"With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits. "}c["Gain Phasing for 4 seconds on Kill"]={nil,"Gain Phasing for 4 seconds on Kill "}c["Adds 5 to 10 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}c["3% more Damage for each Endurance Charge lost recently, up to 15%"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=3}}," for each Endurance Charge lost recently, up to 15% "}c["With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds."]={nil,"With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. "}c["Sword Attacks deal 25% increased Damage with Ailments"]={{[1]={flags=4196352,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["13% increased Area of Effect while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=13}},nil}c["With at least 40 Intelligence in Radius, Cold Snap has a 25% chance to grant a Power Charge on Kill"]={nil,"With at least 40 Intelligence in Radius, Cold Snap has a 25% chance to grant a Power Charge on Kill "}c["+12% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=12}},nil}c["20% chance to Avoid being Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=20}},nil}c["Adds 80 to 180 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=80},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=180}},nil}c["Mines have 20% increased Detonation Speed"]={nil,"Mines have 20% increased Detonation Speed "}c["When your Traps Trigger, your nearby Traps also Trigger"]={nil,"When your Traps Trigger, your nearby Traps also Trigger "}c["Attacks used by Totems have 7% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=7}},nil}c["Knocks Back Enemies if you get a Critical Strike with a Bow"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=131072,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["13% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=13}},nil}c["10% increased Damage Taken while Energy Shield is Full Corrupted"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}," while Energy Shield is Full Corrupted "}c["+18% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=18}},nil}c["+15% to Critical Strike Multiplier with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["50% chance to gain an additional Vaal Soul per Enemy Shattered Corrupted"]={{}," to gain an additional Soul per Enemy Shattered Corrupted "}c["Can have up to 5 Implicit Modifiers while Item has this Modifier 200% increased Armour and Energy Shield"]={nil,"Can have up to 5 Implicit Modifiers while Item has this Modifier 200% increased Armour and Energy Shield "}c["30% of Lightning Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageLifeLeech",type="BASE",value=30}},nil}c["1% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1}},nil}c["Reflects 50 Cold Damage to Melee Attackers +5% Chance to Block"]={nil,"Reflects 50 Cold Damage to Melee Attackers +5% Chance to Block "}c["An additional Curse can be applied to you"]={nil,"An additional Curse can be applied to you "}c["Creates Consecrated Ground on Critical Strike"]={nil,"Creates Consecrated Ground on Critical Strike "}c["13% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=13}},nil}c["Removed life is regenerated as Energy Shield over 2 seconds"]={nil,"Removed life is regenerated as Energy Shield over 2 seconds "}c["+100 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=100}},nil}c["15% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-15}},nil}c["2% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=2}},nil}c["Skills used by Mines have 6% increased Area of Effect"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="INC",value=6}},nil}c["8% increased effect of Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}},nil}c["Arrow Dancing"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Arrow Dancing"}},nil}c["25% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["Dagger Attacks deal 15% increased Damage with Hits and Ailments"]={{[1]={flags=524288,keywordFlags=786432,name="Damage",type="INC",value=15}},nil}c["20% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["+100% to Lightning Resistance when Socketed with a Blue Gem"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=100}}," when Socketed with a Blue Gem "}c["20% increased Physical Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["3% increased Character Size 5% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=3}}," Character Size 5% increased "}c["50% of Physical Damage from Hits with this Weapon is Converted to a random Element"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," from Hits is Converted to a random Element "}c["and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage"]={nil,"and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage "}c["30% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=30}},nil}c["0% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=0}},nil}c["8% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=8}},nil}c["Adds 11 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=11},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["Life Recovery from Flasks also applies to Energy Shield during Flask Effect"]={nil,"Life Recovery from Flasks also applies to Energy Shield during Flask Effect "}c["+350 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=350}},nil}c["20% of Physical Damage taken as Cold Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=20}},nil}c["+20% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["Curse Enemies with Level 10 Assassin's Mark on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,noSupports=true,skillId="AssassinsMark"}}},nil}c["6% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["Counts as Dual Wielding"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="countsAsDualWielding",value=true}}},nil}c["+17 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=17}},nil}c["50% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=50}},nil}c["50% increased Critical Strike Chance with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["30% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=30}},nil}c["80% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=80}},nil}c["Gain an Endurance Charge when you take a Critical Strike 2% of Life Regenerated per Second while on Low Life"]={nil,"Gain an Endurance Charge when you take a Critical Strike 2% of Life Regenerated per Second while on Low Life "}c["50% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=50}},nil}c["26% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=26}},nil}c["Life Leeched per Second is doubled"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="MORE",value=100}},nil}c["50% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike "}c["5% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=5}},nil}c["50% chance to cause Bleeding on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["100% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=100}},nil}c["20% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}c["5% chance to gain a Power Charge on Kill 5% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=5}}," to gain a Power Charge on Kill 5% increased "}c["+35 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=35}},nil}c["10% increased Accuracy Rating with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["Adds 3 to 30 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=30}},nil}c["Wand Attacks deal 12% increased Damage with Ailments"]={{[1]={flags=8390656,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["+1 maximum Energy Shield per 5 Strength"]={{[1]={[1]={div=5,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil}c["350% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=350}},nil}c["30% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=30}},nil}c["200% increased Critical Strike Chance while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire "}c["+1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}," while you do not have Avatar of Fire "}c["+15 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=15}},nil}c["Adds 145 to 230 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=145},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=230}},nil}c["50% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=50}},nil}c["Attacks Cause Bleeding when Hitting Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["20% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=20}},nil}c["Adds 40 to 60 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=60}},nil}c["+36% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=36}},nil}c["Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments"]={{[1]={flags=301991936,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["+65 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=65}},nil}c["40% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=40}},nil}c["Adds 38 to 58 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=58}},nil}c["Adds 70 to 210 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=210}},nil}c["Adds 1 to 70 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=70}},nil}c["15% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=15}},nil}c["6% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["Minions have 28% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=28}}}},nil}c["Immune to Elemental Ailments while Phasing"]={nil,"Immune to Elemental Ailments while Phasing "}c["+60 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=60}},nil}c["25% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["+10% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil}c["Mace or Sceptre Attacks deal 18% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["23% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=23}},nil}c["30% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}c["+10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["4% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=4}},nil}c["Adds 15 to 33 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=33}},nil}c["Gain 4% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=4}},nil}c["Adds 15 to 25 Fire Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="FireMin",type="BASE",value=15},[2]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="FireMax",type="BASE",value=25}},nil}c["Gain 100% of Bow Physical Damage as Extra Damage of each Element"]={{[1]={flags=131072,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=100},[2]={flags=131072,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=100},[3]={flags=131072,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=100}},nil}c["+17 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=17}},nil}c["15 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=15}},nil}c["Adds 150 to 300 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=150},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=300}},nil}c["Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="ClawAttackSpeedAppliesToUnarmed",type="FLAG",value=true}},nil}c["Minions deal 10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}}},nil}c["Gain 30% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=30}},nil}c["40% chance to Avoid Blind"]={{}," to Avoid Blind "}c["200 Cold Damage taken per second per Frenzy Charge while moving"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="ColdDegen",type="BASE",value=200}},nil}c["Adds 35 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["100% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=100}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill "}c["Skills used by Traps have 20% increased Area of Effect"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=20}},nil}c["Minions have 10% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}}}},nil}c["118% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=118}},nil}c["+190 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=190}},nil}c["Recover 60 Life when you Ignite an Enemy"]={nil,"Recover 60 Life when you Ignite an Enemy "}c["+10 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["24% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["Chill Enemy for 1 second when Hit Blind Chilled Enemies on Hit"]={nil,"Chill Enemy for 1 second when Hit Blind Chilled Enemies on Hit "}c["20% of Overkill Damage is Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill "}c["Adds 9 to 26 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=9},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=26}},nil}c["No Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="PhysicalMin"}},[2]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="PhysicalMax"}},[3]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="PhysicalDPS"}}},nil}c["18% increased Cold Damage per 1% Cold Resistance above 75%"]={{[1]={[1]={div=1,stat="ColdResistOver75",type="PerStat"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=18}},nil}c["You and Allies affected by your Aura Skills deal 20% increased Damage"]={nil,"You and Allies affected by your Aura Skills deal 20% increased Damage "}c["Adds 130 to 195 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=130},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=195}},nil}c["5% increased Attack and Cast Speed while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["100% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=100}},nil}c["130% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=130}},nil}c["Recharge began Recently 50% less Energy Shield Regeneration Rate"]={nil,"Recharge began Recently 50% less Energy Shield Regeneration Rate "}c["Herald of Ice has 100% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Ice",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil}c["50% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=50}},nil}c["Adds 40 to 115 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=115}},nil}c["4 additional Arrows"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=4}},nil}c["20% reduced Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-20}},nil}c["+5 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=5}},nil}c["Cannot be Stunned while Leeching"]={nil,"Cannot be Stunned while Leeching "}c["20% increased Attack Speed with Off Hand"]={{[1]={[1]={type="Condition",var="OffHandAttack"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Adds 20 to 55 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=55}},nil}c["Golems have 100% increased Movement Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=100}}}},nil}c["15% increased Maximum total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=15}},nil}c["3% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=3}},nil}c["100% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}}," with arrows that Fork "}c["100% increased Critical Strike Chance with arrows that Fork 200% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}}," with arrows that Fork 200% increased Critical Strike Chance with arrows that Fork "}c["200% increased Critical Strike Chance with arrows that Fork Arrows that Pierce cause Bleeding"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," with arrows that Fork Arrows that Pierce cause Bleeding "}c["Can Allocate Passives from the Witch's starting point"]={{},nil}c["9% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=9}},nil}c["Adds 1 to 85 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=85}},nil}c["Your Lightning Damage can Freeze but not Shock"]={{[1]={flags=0,keywordFlags=0,name="LightningCanFreeze",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="LightningCannotShock",type="FLAG",value=true}},nil}c["120% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=120}},nil}c["16% increased Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["10% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10}},nil}c["Your Shocks can increase Damage taken by up to a maximum of 100%"]={nil,"Your Shocks can increase Damage taken by up to a maximum of 100% "}c["10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={{}," to gain a Power,or Endurance Charge on Hit "}c["+3% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=3}},nil}c["do not have Adrenaline Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"do not have Adrenaline Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["Adds 1 to 150 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=150}},nil}c["Your Offerings have 50% reduced Effect on you"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"},type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="BuffEffectOnPlayer",type="INC",value=-50}}}},nil}c["Flasks gain 3 Charges every 3 seconds"]={nil,"Flasks gain 3 Charges every 3 seconds "}c["Adds 54 to 81 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=54},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=81}},nil}c["Adds 1 to 135 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=135}},nil}c["15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"]={{}," to gain a Power Charge when your is Detonated targeting an Enemy "}c["+30 Life gained on Killing Ignited Enemies Gain 20% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKillGainAsFire",type="BASE",value=30}}," ing Ignited Enemies Gain 20% of Physical Damage "}c["Gain 20% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=20}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 12 Ignites your Skills cause spread to other Enemies within a Radius of 15"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12 Ignites your Skills cause spread to other Enemies within a Radius of 15 "}c["+15 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=15}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 15"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 15 "}c["Nova Spells have 20% less Area of Effect"]={nil,"Nova Spells have 20% less Area of Effect "}c["Adds 2 to 4 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=4}},nil}c["Recover 3% of Maximum Life on Kill Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Life on Kill Recover 3% of Maximum Mana on Kill "}c["Sword Attacks deal 12% increased Damage with Ailments"]={{[1]={flags=4196352,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["8% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=8}},nil}c["3% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=3}},nil}c["50% increased Shock Duration on You Take no Extra Damage from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=50}}," on You Take no Extra Damage "}c["Damaging Ailments deal damage 10% faster"]={nil,"Damaging Ailments deal damage 10% faster "}c["Cannot be inflicted with Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=100}},nil}c["You take 450 Chaos Damage per second for 10 seconds on Kill"]={nil,"You take 450 Chaos Damage per second for 10 seconds on Kill "}c["Minions deal 1% increased Damage per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=1}}}},nil}c["You take 450 Chaos Damage per second for 10 seconds on Kill You take 450 Chaos Damage per second for 3 seconds on Kill"]={nil,"You take 450 Chaos Damage per second for 10 seconds on Kill You take 450 Chaos Damage per second for 3 seconds on Kill "}c["Anger Reserves no Mana"]={{[1]={[1]={skillId="Anger",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["20% of Overkill Damage is Leeched as Life Cannot be Stunned while Leeching You are Immune to Bleeding while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},[2]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill Cannot be Stunned You are Immune to Bleeding "}c["You can inflict up to 300 Ignites on an Enemy"]={{[1]={flags=0,keywordFlags=0,name="IgniteCanStack",type="FLAG",value=true}},nil}c["Life Regeneration is applied to Energy Shield instead"]={{[1]={flags=0,keywordFlags=0,name="ZealotsOath",type="FLAG",value=true}},nil}c["Gain 5% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped"]={{[1]={[1]={type="Multiplier",var="ShaperItem"},flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=5}},nil}c["Adds 25 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["10% chance to gain Phasing for 4 seconds on Kill 15% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="BASE",value=10}}," to gain Phasing for 4 seconds on Kill 15% increased "}c["You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem"]={nil,"You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem "}c["7% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=7},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=7},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=7}},nil}c["220% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=220}},nil}c["0.2% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}},nil}c["20% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=20}},nil}c["+5 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=5}},nil}c["+20% chance to be Pierced by Projectiles Projectiles Pierce you"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to be Pierced by Projectiles Pierce you "}c["50% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToCold",type="BASE",value=50}},nil}c["100% increased Accuracy Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=100}},nil}c["Grants Level 20 Summon Doedre's Effigy Skill Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"]={nil,nil}c["5% chance to Avoid Cold Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="BASE",value=5}}," to Avoid from Hits "}c["10% increased Impale Effect 10% chance to Impale Enemies on Hit with Axes or Swords"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=4,keywordFlags=0,name="FlaskEffect",type="INC",value=10}}," Impale 10% chance to Impale Enemies on Hit "}c["15% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike "}c["-10 Chaos Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="BASE",value=-10}},nil}c["10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="BloodRage"}}},nil}c["70% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=70}},nil}c["Adds 10 to 15 Chaos Damage for each Spider's Web on the Enemy"]={{[1]={[1]={actor="enemy",type="Multiplier",var="Spider's WebStack"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=10},[2]={[1]={actor="enemy",type="Multiplier",var="Spider's WebStack"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=15}},nil}c["Adds 50 to 125 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=125}},nil}c["10% reduced Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=-10}},nil}c["Gain 10% of Wand Physical Damage as Extra Lightning Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=10}},nil}c["100% increased Damage with Ignites inflicted on Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=4194304,name="Damage",type="INC",value=100}},nil}c["Totems gain +16% to all Elemental Resistances Totems have 10% additional Physical Damage Reduction"]={nil,"Totems gain +16% to all Elemental Resistances Totems have 10% additional Physical Damage Reduction "}c["Minion Instability"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Minion Instability"}},nil}c["+20% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritMultiplier",type="BASE",value=20}},nil}c["1% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Purity of Fire has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Purity of Fire",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["160% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=160}},nil}c["With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage"]={nil,"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage "}c["Adds 260 to 285 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=260},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=285}},nil}c["+1500 to Evasion Rating while on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=1500}},nil}c["Curse Skills have 10% increased Cast Speed"]={{[1]={[1]={skillType=32,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["150% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=150}},nil}c["Iron Reflexes"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Iron Reflexes"}},nil}c["+450 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=450}},nil}c["+1.5% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="OnConsecratedGround"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1.5}},nil}c["20% reduced Reflected Physical Damage taken Enemies have -5% to Total Physical Damage Reduction against your Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected Enemies have -5% to Total Physical Damage Reduction against your Hits "}c["Critical Strikes do not inherently apply non-Damaging Ailments Inflict non-Damaging Ailments as though dealing 200% more Damage"]={nil,"Critical Strikes do not inherently apply non-Damaging Ailments Inflict non-Damaging Ailments as though dealing 200% more Damage "}c["Trap Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=4096,name="ElementalPenetration",type="BASE",value=10}},nil}c["1% increased Movement Speed per 600 Evasion Rating, up to 75%"]={{[1]={[1]={div=600,limit=75,limitTotal=true,stat="Evasion",type="PerStat"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}},nil}c["-50% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-50}},nil}c["10% of Fire Damage taken as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsPhysical",type="BASE",value=10}},nil}c["Adds 188 to 262 Cold Damage to Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="ColdMin",type="BASE",value=188},[2]={flags=131076,keywordFlags=0,name="ColdMax",type="BASE",value=262}},nil}c["5% chance to create Shocked Ground when Hit"]={{}," to create Shocked Ground when Hit "}c["Evasion Rating is increased by Uncapped Cold Resistance"]={{[1]={[1]={div=1,stat="ColdResistTotal",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=1}},nil}c["do not have Adrenaline"]={nil,"do not have Adrenaline "}c["Adds 1 to 300 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=300}},nil}c["Phase Acrobatics"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Phase Acrobatics"}},nil}c["Projectile Attack Skills have 60% increased Critical Strike Chance"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion"]={{}," to Maim on Hit "}c["100% increased Charge Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargeRecovery",type="INC",value=100}},nil}c["Every second, gain a Ghost Shroud, up to a maximum of 3"]={nil,"Every second, gain a Ghost Shroud, up to a maximum of 3 "}c["Channelling Skills deal 25% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["6% increased Attack Speed with Maces and Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["4% increased Attack Speed with Axes"]={{[1]={flags=65541,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Immune to Ignite while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire "}c["+8% Chance to Block Attack Damage if you were Damaged by a Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["Adds 14-23 Physical Damage to Attacks while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=14},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=23}},nil}c["20% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-20}},nil}c["Grants Level 15 Blood Offering Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="BloodOffering"}}},nil}c["10% chance to double Stun Duration 28% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="EnemyStunDuration",type="BASE",value=10}}," to double 28% increased Damage "}c["Socketed Minion Gems are Supported by Level 16 Life Leech"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=16,skillId="SupportLifeLeech"}}},nil}c["When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has"]={nil,"When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has "}c["3% additional chance for Slain monsters to drop Scrolls of Wisdom"]={{}," for Slain monsters to drop Scrolls of Wisdom "}c["Mana Reservation of Herald Skills is always 45%"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=45}}},nil}c["Golems Summoned in the past 8 seconds deal 45% increased Damage"]={nil,"Golems Summoned in the past 8 seconds deal 45% increased Damage "}c["30% reduced Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=-30}},nil}c["With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage to surrounding targets"]={nil,"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage to surrounding targets "}c["Gain 13% of Elemental Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=13}},nil}c["Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems Socketed in Red Sockets have +1 to Level "}c["1% increased Energy Shield per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=1}},nil}c["Socketed Curse Gems are Supported by Level 20 Blasphemy"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportBlasphemy"}}},nil}c["Minions have 8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}}}},nil}c["5% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["20% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=20}},nil}c["Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned Socketed Curse Skills ignore Curse Limit"]={nil,"Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned Socketed Curse Skills ignore Curse Limit "}c["33% reduced Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=-33}},nil}c["Gain 10% of Physical Damage as Extra Damage of a random Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," as Extra Damage of a random Element "}c["28% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=28}},nil}c["1.2% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1.2}},nil}c["20% of Damage taken gained a Life over 4 seconds when Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=20}}," gained a Life over 4 seconds when Hit "}c["+600 Strength and Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="BASE",value=600},[2]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=600}},nil}c["Culling Strike against Burning Enemies Gain a Frenzy Charge if an Attack Ignites an Enemy"]={nil,"Culling Strike against Burning Enemies Gain a Frenzy Charge if an Attack Ignites an Enemy "}c["Regenerate 0.6% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.6}},nil}c["50% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=50}},nil}c["100% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=100}}," when on Low Mana "}c["+30% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=30}},nil}c["30% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=30}},nil}c["30% increased Off Hand Attack Speed while wielding two different Weapon Types"]={{[1]={flags=8193,keywordFlags=0,name="Speed",type="INC",value=30}}," Off Hand while wielding two different Types "}c["Gain 18% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=18}},nil}c["70 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=70}},nil}c["Grants Level 20 Bone Armour Skill 1% additional Physical Damage Reduction per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% Minions have 20% more Maximum Life"]={nil,nil}c["6% increased Physical Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["Elemental Equilibrium"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Elemental Equilibrium"}},nil}c["Elemental Overload"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Elemental Overload"}},nil}c["32% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=32}},nil}c["8% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["25% increased Quantity of Items Dropped by Slain Frozen enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies "}c["Vaal Pact"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Vaal Pact"}},nil}c["Zealot's Oath"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Zealot's Oath"}},nil}c["Adds 46 to 128 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=46},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=128}},nil}c["Recover 0.5% of your maximum Life per Poison affecting Enemies you Kill"]={nil,"Recover 0.5% of your maximum Life per Poison affecting Enemies you Kill "}c["Nearby Allies gain 1% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1},onlyAllies=true}}},nil}c["Non-Curse Aura Skills have 20% increased Duration"]={nil,"Non-Curse Aura Skills have 20% increased Duration "}c["16% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["23% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=23}},nil}c["4% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["10% increased Attack Speed with Claws"]={{[1]={flags=262149,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Adds 2 to 3 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=2},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=3}},nil}c["+6 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=6}},nil}c["10% increased Damage taken"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}},nil}c["Chance to Block Spell Damage is equal to Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChanceIsBlockChance",type="FLAG",value=true}},nil}c["Minions have 20% reduced Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=-20}}}},nil}c["8% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=8}},nil}c["40% increased Armour while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="Armour",type="INC",value=40}},nil}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit "}c["13% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=13}},nil}c["50% of Physical Damage from Hits with this Weapon is Converted to a random Element Hits with this Weapon always inflict Elemental Ailments"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," from Hits is Converted to a random Element Hits always inflict Elemental Ailments "}c["25% reduced Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-25}},nil}c["Adds 1 to 25 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=25}},nil}c["15% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=15}},nil}c["24% increased Damage while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["20% chance to gain a Frenzy Charge on Kill 20% chance to gain a Power Charge on Kill"]={{}," to gain aCharge on Kill 20% chance to gain a Power Charge on Kill "}c["Grants level 20 Summon Bestial Ursa Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonBeastialUrsa"}}},nil}c["Summon Raging Spirit has 30% increased Duration"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil}c["All Attacks with this Weapon are Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="CritChance",value=100}}},nil}c["+45% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=45}},nil}c["40% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=40}},nil}c["50% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=50}},nil}c["100% of Cold Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsLightning",type="BASE",value=100}},nil}c["5% chance to gain Unholy Might for 3 seconds on Kill 10% chance to gain Unholy Might for 10 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill 10% chance to gain Unholy Might for 10 seconds on Kill "}c["Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage"]={nil,"Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage "}c["Enemies Killed with Wand Hits have a 10% chance to Explode, dealing a quarter of their Life as Chaos Damage"]={nil,"Enemies Killed with Wand Hits have a 10% chance to Explode, dealing a quarter of their Life as Chaos Damage "}c["Socketed Gems have 10% increased Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=10}}}},nil}c["You gain Onslaught for 1 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 1 second per Endurance Charge when Hit "}c["You gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit "}c["You gain Onslaught for 2 second per Endurance Charge when Hit You gain Onslaught for 5 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit You gain Onslaught for 5 second per Endurance Charge when Hit "}c["60% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["Gain 35% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=35}},nil}c["Acrobatics"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Acrobatics"}},nil}c["Adds 1 to 25 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=25}},nil}c["+12% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["50% slower start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=-50}},nil}c["+35 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=35}},nil}c["+27% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=27}},nil}c["Share Endurance Charges with nearby party members"]={nil,"Share Endurance Charges with nearby party members "}c["Animated Guardian deals 5% increased Damage per Animated Weapon Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"]={nil,"Animated Guardian deals 5% increased Damage per Animated Weapon Animated Minions' Melee Attacks deal Splash Damage to surrounding targets "}c["10% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=10}},nil}c["Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy 10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={nil,"Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy 10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy "}c["10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={{}," to Trigger Level 18 Animate Guardian's when Animated Weapon Kills an Enemy "}c["Reflects 1 to 150 Lightning Damage to Melee Attackers 20% Chance for Energy Shield Recharge to Start when you Block"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers 20% Chance for Energy Shield Recharge to Start when you Block "}c["+20 Mana gained when you Block 40% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," gained when you Block 40% increased Defences "}c["18% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=18}},nil}c["20% of Physical Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=20}},nil}c["30% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsCold",type="BASE",value=30}},nil}c["Attacks have 5% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=5}},nil}c["-25% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=-25}},nil}c["Raised Zombies have 90% increased maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=90}}}},nil}c["Culling Strike against Enemies Cursed with Poacher's Mark"]={nil,"Culling Strike against Enemies Cursed with Poacher's Mark "}c["140% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=140}},nil}c["8% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=8}},nil}c["+20% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil}c["+2 to Maximum number of Raised Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=2}},nil}c["30% more chance to Evade Melee Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="MeleeEvadeChance",type="MORE",value=30}},nil}c["+12% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=12}},nil}c["10% increased total Recovery per second from Mana Leech"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=10}},nil}c["Enemies are Unlucky when Damaging you while you are on Full Life"]={nil,"Enemies are Unlucky when Damaging you while you are on Full Life "}c["100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground "}c["+15% to Critical Strike Multiplier with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating"]={nil,"Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating "}c["You gain Onslaught for 2 seconds on Kill"]={nil,"You gain Onslaught for 2 seconds on Kill "}c["2 Enemy Writhing Worms escape the Flask when used"]={nil,"2 Enemy Writhing Worms escape the Flask when used "}c["+125 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=125}},nil}c["Gain a Power Charge for each Enemy you hit with a Critical Strike Inner Conviction"]={nil,"Gain a Power Charge for each Enemy you hit with a Critical Strike Inner Conviction "}c["You take 450 Chaos Damage per second for 3 seconds on Kill Gore Footprints"]={nil,"You take 450 Chaos Damage per second for 3 seconds on Kill Gore Footprints "}c["5% chance to Blind Enemies on Hit"]={{}," to Blind Enemies on Hit "}c["125% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=125}},nil}c["Regenerate 0.5% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["Damage penetrates 25% Cold Resistance while affected by Herald of Ice"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofIce"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=25}},nil}c["50% of Block Chance applied to Spells +15% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=50}}," applied to s +15% chance to Block Spell Damage "}c["120% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=120}},nil}c["20% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=20}},nil}c["25% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Minions have 8% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=8}}}},nil}c["20% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["25% chance on Block to create Desecrated Ground 50% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground 50% chance on Block to create Desecrated Ground "}c["100% increased Onslaught Effect"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=100}},nil}c["Gain Arcane Surge when your Mine is Detonated targeting an Enemy"]={nil,"Gain Arcane Surge when your Mine is Detonated targeting an Enemy "}c["Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="CastSpeedAppliesToTrapThrowingSpeed",type="FLAG",value=true}},nil}c["25% reduced Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=-25}},nil}c["Unaffected by Shocked Ground"]={nil,"Unaffected by Shocked Ground "}c["1% of Energy Shield Regenerated per second for each Enemy you or your Minions have Killed Recently, up to 30%"]={{[1]={[1]={limit=30,limitTotal=true,type="Multiplier",varList={[1]="EnemyKilledRecently",[2]="EnemyKilledByMinionsRecently"}},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["25% increased Poison Duration if you have at least 150 Intelligence"]={{[1]={[1]={stat="Int",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=25}},nil}c["Unaffected by Shock"]={nil,"Unaffected by Shock "}c["Gain 20% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=20}},nil}c["Shocked Enemies you Kill Explode, dealing 5% of their Maximum Life as Lightning Damage which cannot Shock"]={nil,"Shocked Enemies you Kill Explode, dealing 5% of their Maximum Life as Lightning Damage which cannot Shock "}c["100% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=100},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=100},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=100}},nil}c["You gain 150 Evasion Rating when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=150}},nil}c["Socketed Gems are Supported by Level 20 Elemental Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportElementalPenetration"}}},nil}c["40% increased Critical Strike Chance with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["Your Critical Strikes do not deal extra Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil}c["13% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=13}},nil}c["30% chance to gain an additional Vaal Soul on Kill"]={{}," to gain an additional Soul on Kill "}c["Socketed Gems are Supported by level 1 Generosity"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportGenerosity"}}},nil}c["10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments while on Consecrated Ground"]={{}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments "}c["Adds 98 to 140 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=140}},nil}c["Adds 3 to 62 Lightning Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=62}},nil}c["12% increased Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Adds 15 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["+22% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=22}},nil}c["Has an additional Implicit Mod"]={nil,"Has an additional Implicit Mod "}c["10% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=10}},nil}c["18% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=18}},nil}c["15% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil}c["4% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=167772165,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["+7% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=7}},nil}c["50% reduced Mana Reservation of Banner Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-50}}," of Banner Skills "}c["420% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=420}},nil}c["With at least 40 Intelligence in Radius, Magma Orb"]={nil,"With at least 40 Intelligence in Radius, Magma Orb "}c["100% chance to Taunt on Hit"]={{}," to Taunt on Hit "}c["70% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=70}},nil}c["Arrows Pierce an additional Target"]={{[1]={flags=1,keywordFlags=0,name="PierceCount",type="BASE",value=1}},nil}c["Minions' Attacks deal 8 to 16 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=8}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=16}}}},nil}c["6% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=6}},nil}c["You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage"]={nil,"You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage "}c["Golems have 18% increased Attack and Cast Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=18}}}},nil}c["Skills used during Flask effect grant 800% of Mana Cost as Life"]={nil,"Skills used during Flask effect grant 800% of Mana Cost as Life "}c["Adds 21 to 33 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=21},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=33}},nil}c["Life Leech from Hits with this Weapon applies instantly"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true}},nil}c["+15% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=15}},nil}c["35% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=35}},nil}c["10% reduced Damage taken from Trap or Mine Hits"]={{[1]={flags=0,keywordFlags=4096,name="DamageTaken",type="INC",value=-10}}," from or Mine Hits "}c["+36% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=36}},nil}c["Adds 10 to 20 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=20}},nil}c["You have Resolute Technique while you do not have Elemental Overload 100% increased Physical Damage while you have Resolute Technique"]={nil,"You have Resolute Technique while you do not have Elemental Overload 100% increased Physical Damage while you have Resolute Technique "}c["Adds 1 to 2 Fire Damage to Attacks per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=1},[2]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=2}},nil}c["Immune to Ignite"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}},nil}c["25% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil}c["10% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit "}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["160% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=160}},nil}c["+14% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=14}},nil}c["Ancestor Totems have 100% increased Activation range 25% increased Area of Effect while you have a Totem"]={nil,"Ancestor Totems have 100% increased Activation range 25% increased Area of Effect while you have a Totem "}c["12% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["+4% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["Adds 16 to 29 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=16},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=29}},nil}c["0.3% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.3}},nil}c["Consecrated Ground created by this Flask has Tripled Radius +2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"]={nil,"Consecrated Ground created by this Flask has Tripled Radius +2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect "}c["6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-6}}," for 4 seconds after Spending a total of 200 Mana "}c["Adds 20 to 40 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=40}},nil}c["+40 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=40}},nil}c["+30 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=30}},nil}c["If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},"If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["+40 Life gained when you Block +48 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}}," gained when you Block +48 Life gained when you Block "}c["2% additional Physical Damage Reduction while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=2}},nil}c["+2000 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=2000}},nil}c["Adds 12 to 24 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=12},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=24}},nil}c["Lose 35 Mana per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaDegen",type="BASE",value=35}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies "}c["Adds 10 to 15 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=15}},nil}c["Adds 12 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["Elemental Resistances are Zero"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="OVERRIDE",value=0},[2]={flags=0,keywordFlags=0,name="ColdResist",type="OVERRIDE",value=0},[3]={flags=0,keywordFlags=0,name="LightningResist",type="OVERRIDE",value=0}},nil}c["Your Shocks can increase Damage taken by up to a maximum of 60% 30% increased Effect of Shock"]={nil,"Your Shocks can increase Damage taken by up to a maximum of 60% 30% increased Effect of Shock "}c["10% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+12 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=12}},nil}c["50% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=50}},nil}c["3% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["-7 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-7}}," from Attacks "}c["Minions have 10% increased Movement Speed for each Herald affecting you"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}}}}," for each Herald affecting you "}c["+1 to maximum Mana per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}},nil}c["With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area"]={nil,"With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area "}c["20% reduced Mana Reservation of Skills that throw Mines"]={{[1]={flags=0,keywordFlags=8192,name="ManaReserved",type="INC",value=-20}},nil}c["Envy Reserves no Mana"]={{[1]={[1]={skillId="Envy",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["+50 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=50}},nil}c["Auras from your Skills grant 0.2% of Life Regenerated per second to"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}}}}," to "}c["25% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=25}},nil}c["36% chance to deal Double Damage while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=36}},nil}c["10% increased Mana Regeneration Rate Per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=10}},nil}c["20% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=20}},nil}c["began Recently"]={nil,"began Recently "}c["50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=50}}," to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced "}c["10% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+80 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=80}},nil}c["Arrows that Pierce have +50% to Critical Strike Multiplier Arrows Pierce all Targets after Chaining"]={nil,"Arrows that Pierce have +50% to Critical Strike Multiplier Arrows Pierce all Targets after Chaining "}c["Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}c["15% increased Elemental Damage if you've Chilled an Enemy Recently 20% increased Elemental Damage if you've Ignited an Enemy Recently 25% increased Elemental Damage if you've Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="IgnitedEnemyRecently"},[2]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=15}}," if you've Chilled an Enemy Recently 20% increased Elemental Damage 25% increased Elemental Damage "}c["Primordial"]={{[1]={flags=0,keywordFlags=0,name="Multiplier:PrimordialItem",type="BASE",value=1}},nil}c["Life Leeched per Second is doubled. Maximum total Recovery per second from Life Leech is doubled. Life Regeneration has no effect."]={nil,"Life Leeched per Second is doubled. Maximum total Recovery per second from Life Leech is doubled. Life Regeneration has no effect. "}c["Wand Attacks deal 15% increased Damage with Hits and Ailments"]={{[1]={flags=8388608,keywordFlags=786432,name="Damage",type="INC",value=15}},nil}c["50% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=50}},nil}c["1.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1.6}},nil}c["Enemies affected by your Spider's Webs deal 10% reduced Damage Enemies affected by your Spider's Webs have -10% to All Resistances"]={nil,"Enemies affected by your Spider's Webs deal 10% reduced Damage Enemies affected by your Spider's Webs have -10% to All Resistances "}c["35% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=35}},nil}c["You and nearby Allies deal 4 to 8 added Physical Damage for"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4}}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}}}}," for "}c["10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"]={{[1]={[1]={type="Condition",var="UsedVaalSkillRecently"},flags=0,keywordFlags=0,name="LifeOnHit",type="BASE",value=10}},nil}c["Take 100 Fire Damage when you Ignite an Enemy 2% of Fire Damage Leeched as Life while Ignited"]={nil,"100 Fire Damage when you Ignite an Enemy 2% of Fire Damage Leeched as Life while Ignited "}c["You gain a Frenzy Charge on use"]={nil,"You gain a Frenzy Charge on use "}c["Spells have an additional Projectile"]={{[1]={flags=2,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}c["32% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=32},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=32},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=32}},nil}c["Dispels Elemental Ailments on Rampage Gain Immunity to Physical Damage for 1.5 seconds on Rampage"]={nil,"Dispels Elemental Ailments on Rampage Gain Immunity to Physical Damage for 1.5 seconds on Rampage "}c["Attacks used by Totems have 4% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=4}},nil}c["40% increased Damage if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Gain Life and Mana from Leech instantly on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantManaLeech",type="FLAG",value=true}},nil}c["+1 Life per 4 Dexterity"]={{[1]={[1]={div=4,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil}c["16% increased Physical Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits 15% chance to Impale Enemies on Hit with Attacks 5% increased Impale Effect"]={nil,"Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits 15% chance to Impale Enemies on Hit with Attacks 5% increased Impale Effect "}c["20% chance to gain a Endurance Charge on Kill"]={{}," to gain a Endurance Charge on Kill "}c["Adds 20 to 35 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=35}},nil}c["5% increased Attack Speed with Wands"]={{[1]={flags=8388613,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["100% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsCold",type="BASE",value=100}},nil}c["100% of Fire Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsLightning",type="BASE",value=100}},nil}c["+100 to Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},nil}c["50% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=50}},nil}c["100% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=100}},nil}c["2% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Removes all but one Life on use Removed life is regenerated as Energy Shield over 2 seconds"]={nil,"Removes all but one Life on use Removed life is regenerated as Energy Shield over 2 seconds "}c["200% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=200}},nil}c["Skills fire 2 additional Projectiles"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["+30% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=30}},nil}c["Lose 15 Life for each Enemy hit by your Spells"]={nil,"Lose 15 Life for each Enemy hit by your Spells "}c["Adds 1 to 40 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=40}},nil}c["Socketed Gems have 30% reduced Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}}}},nil}c["2% increased Evasion Rating per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=2}},nil}c["Your Flasks grant 10% chance to Shock during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10}},nil}c["15% increased Area of Effect while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}c["each Stage the Banner has You and nearby Allies have 12% increased Movement Speed"]={nil,"each Stage the Banner has You and nearby Allies have 12% increased Movement Speed "}c["52% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=52}},nil}c["30% of Physical Damage taken as Cold Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=30}},nil}c["Gain Her Blessing for 3 seconds when you Ignite an Enemy 33% chance to Blind nearby Enemies when gaining Her Blessing"]={nil,"Gain Her Blessing for 3 seconds when you Ignite an Enemy 33% chance to Blind nearby Enemies when gaining Her Blessing "}c["Channelling Skills deal 16% increased Attack Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["+3 to Level of Socketed Golem Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="golem",value=3}}},nil}c["20% chance to Impale Enemies on Hit with Attacks You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=65536,name="MovementSpeed",type="BASE",value=20}}," to Impale Enemies on Hit You and nearby Allies have 8% increased "}c["Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second"]={nil,"Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second "}c["Adds 7 to 15 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=15}},nil}c["Maximum Chance to Block Spell Damage is equal to Maximum Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChanceMaxIsBlockChanceMax",type="FLAG",value=true}},nil}c["Damage Penetrates 20% Cold Resistance against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdPenetration",type="BASE",value=20}},nil}c["50% less Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="MORE",value=-50}},nil}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons "}c["Grants Level 22 Precision Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="AccuracyAndCritsAura"}}},nil}c["Adds 15 to 28 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=15},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=28}},nil}c["Arrows Pierce all Targets after Chaining"]={nil,"Arrows Pierce all Targets after Chaining "}c["Damage Penetrates 10% Fire Resistance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="FirePenetration",type="BASE",value=10}},nil}c["71 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=71}},nil}c["35% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=35}},nil}c["+5 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=5}},nil}c["25% chance to inflict Cold Exposure on Hit"]={{}," to inflict Cold Exposure on Hit "}c["Replenishes Energy Shield by 4% of Armour when you Block Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block Replenishes Energy Shield by 2% of Armour when you Block "}c["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},[3]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}},nil}c["+33 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=33}},nil}c["Socketed Gems are Supported by level 10 Fire Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportFirePenetration"}}},nil}c["30% reduced Chance to Block Attacks and Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="SpellBlockChance",type="INC",value=-30}},nil}c["18% increased Damage with Hits against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=18}},nil}c["7% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=7}},nil}c["8% reduced Area Damage taken from Hits +30% to Critical Strike Multiplier against Burning Enemies 80% increased Critical Strike Chance against Shocked Enemies Damage Penetrates 10% Elemental Resistances against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},[2]={actor="enemy",type="ActorCondition",var="Shocked"},flags=512,keywordFlags=262144,name="DamageTaken",type="INC",value=-8}}," from Hits +30% to Critical Strike Multiplier 80% increased Critical Strike Chance Damage Penetrates 10% Elemental Resistances against Chilled Enemies "}c["10% increased Damage with Poison per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=10}},nil}c["Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect"]={nil,"Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect "}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius "}c["+240% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=240}},nil}c["15% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=15}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second "}c["+6% to Damage over Time Multiplier for Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="DotMultiplier",type="BASE",value=6}},nil}c["+10 Life Gained on Killing Ignited Enemies"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}}," ing Ignited Enemies "}c["6% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-6}},nil}c["Chaos Skills ignore interruption from Stuns"]={nil,"Chaos Skills ignore interruption from Stuns "}c["0.3% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.3}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["Golems have +900 to Armour"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=900}}}},nil}c["Socketed Gems are Supported by level 10 Blind"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportBlind"}}},nil}c["Passives in Radius can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="intuitiveLeap",value=true}}},nil}c["Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance"]={nil,"Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance "}c["25% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritChance",type="INC",value=25}},nil}c["0.2% of Lightning Damage Leeched as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageEnergyShieldLeech",type="BASE",value=0.2}},nil}c["Your Non-Banner Skills that create Permanent Auras on you do not Reserve Mana"]={nil,"Your Non-Banner Skills that create Permanent Auras on you do not Reserve Mana "}c["350 Physical Damage taken on Minion Death"]={nil,"350 Physical Damage taken on Minion Death "}c["100% increased Spell Damage taken when on Low Mana 25% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=100}}," when on Low Mana 25% increased Spell Damage taken when on Low Mana "}c["200 Mana spent Recently, up to 50%"]={nil,"200 Mana spent Recently, up to 50% "}c["With at least 40 Intelligence in Radius, 10% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies"]={nil,"With at least 40 Intelligence in Radius, 10% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies "}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed "}c["Golems have 90% increased Movement Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=90}}}},nil}c["3% increased Attack Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="Damage",type="INC",value=3}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["+3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% Minions have 20% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=3}}," per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% Minions have 20% more Maximum Life "}c["Minions Leech 0.2% of Damage as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.2}}}},nil}c["+20% chance to be Pierced by Projectiles"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to be Pierced by "}c["Adds 3 to 52 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=52}},nil}c["10% chance to Taunt Enemies on Projectile Hit"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=10}}," to Taunt Enemies on Hit "}c["5% increased Area of Effect per Enemy killed recently, up to 50%"]={{[1]={[1]={limit=50,limitTotal=true,type="Multiplier",var="EnemyKilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["10% increased Movement Speed if you have used a Vaal Skill Recently"]={{[1]={[1]={type="Condition",var="UsedVaalSkillRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["+50% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=50}},nil}c["25% of Physical Damage from Hits taken as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsChaos",type="BASE",value=25}},nil}c["90% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=90}},nil}c["+500 to Accuracy Rating while at Maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=500}},nil}c["Adds 2 to 50 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=50}},nil}c["With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks"]={nil,"With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks "}c["+30% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Minions have 15% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}}}},nil}c["Minions have 13% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=13}}}},nil}c["Minions have 13% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=13}}}},nil}c["With at least 40 Intelligence in Radius, Cold Snap Cooldown can be bypassed by Power Charges instead of Frenzy Charges"]={nil,"With at least 40 Intelligence in Radius, Cold Snap Cooldown can be bypassed by Power Charges instead of Frenzy Charges "}c["Adds 1 to 100 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=100}},nil}c["Enemies Ignited by you during Flask Effect take 10% increased Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil}c["Socketed Melee Gems have 15% increased Area of Effect"]={{[1]={[1]={keyword="melee",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}}}},nil}c["+20% to Critical Strike Multiplier with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritMultiplier",type="BASE",value=20}},nil}c["Grants level 20 Illusory Warp Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="MerveilWarp"}}},nil}c["14% increased Brand Attachment range"]={{}," Brand Attachment range "}c["50% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=50}}," applied to s "}c["+700 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=700}},nil}c["4 Life regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=4}},nil}c["Adds 1 to 30 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=30}},nil}c["35% increased Attack Speed with Swords"]={{[1]={flags=4194309,keywordFlags=0,name="Speed",type="INC",value=35}},nil}c["40% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=40}},nil}c["2% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["1% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=1}},nil}c["Summoned Raging Spirits deal 70% increased Damage"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=70}}}},nil}c["Grants level 10 Purity of Elements Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="Purity"}}},nil}c["5% chance to avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=5},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=5}},nil}c["Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill"]={nil,"Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill "}c["12% increased Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Flasks gain 3 Charges every 3 seconds Damage Penetrates 6% of Enemy Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},"Flasks gain 3 Charges every 3 seconds "}c["Critical Strike Chance is increased by Lightning Resistance"]={{[1]={[1]={div=1,stat="LightningResist",type="PerStat"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=1}},nil}c["Minions have 15% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit "}c["Minions have 10% increased Area of Effect if you used a Minion Skill Recently +10 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}}}," if you used a Minion Skill Recently +10 to Intelligence "}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["Gain Unholy Might for 3 seconds on Rampage"]={nil,"Gain Unholy Might for 3 seconds on Rampage "}c["100% increased Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Damage",type="INC",value=100}},nil}c["Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary"]={nil,"Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary "}c["Socketed Curse Gems have 12% reduced Mana Reservation"]={{[1]={[1]={keyword="curse",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-12}}}},nil}c["30% reduced Duration of Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=-30},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=-30},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-30},[5]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=-30},[6]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=-30}},nil}c["Recover 20% of your Maximum Life on Rampage Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage Gain 5 Souls for Vaal Skills on Rampage "}c["Reflects 30 Chaos Damage to Melee Attackers"]={nil,"Reflects 30 Chaos Damage to Melee Attackers "}c["Reflects 20 Chaos Damage to Melee Attackers"]={nil,"Reflects 20 Chaos Damage to Melee Attackers "}c["Adds 250 to 300 Cold Damage to Counterattacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=250},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=300}}," to Counterattacks "}c["Recover 1% of Energy Shield on Kill"]={nil,"Recover 1% of Energy Shield on Kill "}c["40% less Minimum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-40}}," Minimum "}c["20% increased Critical Strike Chance with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["Adds 30 to 45 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=30},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=45}},nil}c["Gain 10% increased Movement Speed for 20 seconds when you Kill an Enemy"]={nil,"Gain 10% increased Movement Speed for 20 seconds when you Kill an Enemy "}c["Adds 30 to 45 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=30},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=45}},nil}c["10% chance to Blind nearby Enemies when you use an Elemental Skill"]={{}," to Blind nearby Enemies when you use an Elemental Skill "}c["25% chance on Block to create Consecrated Ground 50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground 50% chance on Block to create Consecrated Ground "}c["Adds 2 to 70 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=2},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=70}},nil}c["Nearby Enemies have an additional 2% chance to receive a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SelfExtraCritChance",type="BASE",value=2}}}},nil}c["Gain 10% of Wand Physical Damage as Extra Cold Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=10}},nil}c["Adds 4 to 9 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=9}},nil}c["Attack Skills deal 12% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["+26% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=26}},nil}c["Ignite a nearby Enemy on Killing an Ignited Enemy"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy "}c["Ignite a nearby Enemy on Killing an Ignited Enemy Triggers level 7 Abberath's Fury when equipped"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy Triggers level 7 Abberath's Fury when equipped "}c["With at least 40 Strength in Radius, Ground Slam has a 20% increased angle"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 20% increased angle "}c["You can Cast an additional Brand"]={nil,"You can Cast an additional Brand "}c["Burning Hoofprints"]={nil,"Burning Hoofprints "}c["15% Chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=15}},nil}c["4% additional Physical Damage Reduction while affected by a Guard Skill Buff Guard Skills have 15% increased Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}}," while affected by a Guard Skill Buff Guard Skills have 15% increased Cooldown Recovery Speed "}c["Base Critical Strike Chance for Attacks with Weapons is 8%"]={{[1]={flags=0,keywordFlags=0,name="WeaponBaseCritChance",type="OVERRIDE",value=8}},nil}c["30% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["Minions have 25% chance to gain Unholy Might for 4 seconds on Kill"]={{}," to gain Unholy Might for 4 seconds on Kill "}c["3% increased Damage against Enemies on Low Life per Frenzy Charge"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=3}},nil}c["12% increased Elemental Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["6% increased Damage against Enemies on Low Life per Frenzy Charge"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=6}},nil}c["Adds 65 to 120 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=65},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=120}},nil}c["+100 Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="BASE",value=100}},nil}c["6% increased Attack and Cast Speed while Leeching Energy Shield"]={{[1]={[1]={type="Condition",var="LeechingEnergyShield"},flags=0,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["1.4% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.4}},nil}c["20% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-20}},nil}c["25% increased Maximum total Recovery per second from Mana Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxManaLeechRate",type="INC",value=25}},nil}c["17% increased Quantity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=17}},nil}c["20% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=20}},nil}c["Adds 55 to 130 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=55},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=130}},nil}c["Damage with Weapons Penetrates 6% Elemental Resistance"]={{[1]={flags=8192,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},nil}c["Your Hits can only Kill Frozen enemies"]={nil,"Your Hits can only Kill Frozen enemies "}c["+6% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil}c["50% chance to gain Elusive on Critical Strike 20% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 20% increased while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect "}c["Socketed Golem Skills gain 20% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=20}}}},nil}c["70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=70},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=70},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=70}},nil}c["25% increased Elemental Damage if you've Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy Shocks all nearby Enemies on Killing a Shocked Enemy "}c["2% of Energy Shield regenerated per second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=2}},nil}c["+15% to Critical Strike Multiplier with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["20% increased Movement Speed on Shocked Ground"]={{[1]={[1]={type="Condition",var="OnShockedGround"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["2% of Life Regenerated Per Second on Chilled Ground"]={{[1]={[1]={type="Condition",var="OnChilledGround"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["+6% to all maximum Elemental Resistances during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=6}},nil}c["100% increased Rarity of Items found when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=100}},nil}c["Consumes Frenzy Charges on use"]={nil,"Consumes Frenzy Charges on use "}c["50% reduced Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-50}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time "}c["Adds 18 to 28 Chaos Damage to Spells and Attacks while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=196608,name="ChaosMin",type="BASE",value=18},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=196608,name="ChaosMax",type="BASE",value=28}},nil}c["+50% to Chaos Resistance during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=50}},nil}c["70% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["+60 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=60}},nil}c["Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Gain 5 Souls for Vaal Skills on Rampage "}c["Using Warcries is Instant 20% increased Warcry Buff Effect"]={nil,"Using Warcries is Instant 20% increased Warcry Buff Effect "}c["40% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["While there are at least five nearby Allies, you and nearby Allies have Onslaught"]={{[1]={[1]={threshold=5,type="MultiplierThreshold",var="NearbyAlly"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Onslaught",type="FLAG",value=true}}}},nil}c["Adds 2 to 5 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=5}},nil}c["+18 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=18}},nil}c["Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"]={nil,"Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken "}c["50% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=50}},nil}c["40% increased Elemental Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil}c["10% increased Damage while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["20% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["4% reduced Mana Reservation of Skills that throw Mines"]={{[1]={flags=0,keywordFlags=8192,name="ManaReserved",type="INC",value=-4}},nil}c["Projectiles Pierce you"]={nil,"Projectiles Pierce you "}c["+2 to Level of Socketed Aura Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="aura",value=2}}},nil}c["Nearby Enemies have 100% reduced Life Regeneration rate"]={nil,"Nearby Enemies have 100% reduced Life Regeneration rate "}c["Sword Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=4194304,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["Adds 10 to 20 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=20}},nil}c["12% increased Elemental Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["10% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["Lose 40 Mana per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaDegen",type="BASE",value=40}},nil}c["Shock nearby Enemies for 4 Seconds when you Focus +1 to Minimum Frenzy Charges"]={nil,"Shock nearby Enemies for 4 Seconds when you Focus +1 to Minimum Frenzy Charges "}c["8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}},nil}c["10% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=10}},nil}c["20% chance to Impale Enemies on Hit with Attacks Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour"]={{[1]={flags=0,keywordFlags=65536,name="Armour",type="BASE",value=20}}," to Impale Enemies on Hit Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to "}c["20% increased Movement Speed when on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}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["1% increased Attack Speed per 200 Accuracy Rating"]={{[1]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil}c["20% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["Socketed Gems are Supported by Level 16 Trap"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=16,skillId="SupportTrap"}}},nil}c["20% chance to Dodge Attacks while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=20}},nil}c["You have Phasing if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["20% more Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="MORE",value=20}},nil}c["Attacks used by Totems have 10% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=10}},nil}c["40% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=40}},nil}c["+5% to Maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=5}},nil}c["Trap Damage Penetrates 5% Elemental Resistances"]={{[1]={flags=0,keywordFlags=4096,name="ElementalPenetration",type="BASE",value=5}},nil}c["Reflects 44 Physical Damage to Attackers on Block Curse Enemies with level 5 Vulnerability on Block"]={nil,"Reflects 44 Physical Damage to Attackers on Block Curse Enemies with level 5 Vulnerability on Block "}c["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 "}c["Adds 20 to 30 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=30}},nil}c["+55% to Non-Ailment Chaos Damage over Time Multiplier 2% increased Cast Speed per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=55}}," Non-Ailment 2% increased Cast Speed "}c["+45 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=45}},nil}c["35% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=35}},nil}c["Gain 20% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=20}},nil}c["Enemies you Curse have Malediction"]={{[1]={flags=0,keywordFlags=0,name="AffectedByCurseMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil}c["298% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=298}},nil}c["25% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=25}},nil}c["Brand Skills have 20% increased Duration"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}c["50% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["7% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=7}},nil}c["24% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Adds 30 to 40 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=40}},nil}c["Adds 10 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["Minions have 8% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}}}},nil}c["+15 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=15}},nil}c["+1 to Maximum Frenzy Charges and Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=1}},nil}c["Adds 265 to 335 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=265},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=335}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit , you and nearby Allies Regenerate 3.0% of Life per second "}c["Reflects 1 to 220 Lightning Damage to Attackers on Block 22% increased Global Defences"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block 22% increased Global Defences "}c["17% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=17}},nil}c["18% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=18}},nil}c["Adds 185 to 225 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=185},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=225}},nil}c["Trigger a Socketed Spell when you Attack with a Bow"]={nil,"Trigger a Socketed Spell when you Attack with a Bow "}c["25% chance to gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance"]={{}," to gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance "}c["Minions deal 80% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=80}}}},nil}c["10% increased Skeleton Cast speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil}c["12% increased Minion Damage per Spectre you own"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}}," Minion per you own "}c["30% Chance to Dodge Attack Hits. 50% less Armour, 30% less Energy Shield, 30% less Chance to Block Spell and Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="Armour",type="MORE",value=-50},[3]={flags=0,keywordFlags=0,name="EnergyShield",type="MORE",value=-30},[4]={flags=0,keywordFlags=0,name="BlockChance",type="MORE",value=-30},[5]={flags=0,keywordFlags=0,name="SpellBlockChance",type="MORE",value=-30}},nil}c["9% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=9}},nil}c["Unaffected by Burning Ground while affected by Purity of Fire Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Burning Ground while affected by Purity of Fire Unaffected by Flammability while affected by Purity of Fire "}c["20% more Maximum Physical Attack Damage 40% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=20}}," Maximum 40% more Maximum Physical Attack Damage "}c["Every 5 seconds, Regenerate 20% of Life over one second You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Every 5 seconds, Regenerate 20% of Life over one second You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["275% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=275}},nil}c["25% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Your Damaging Hits always Stun Enemies that are on Full Life 20% chance to double Stun Duration"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life 20% chance to double Stun Duration "}c["With at least 40 Dexterity in Radius, Viper Strike has a 10% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit"]={nil,"With at least 40 Dexterity in Radius, Viper Strike has a 10% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit "}c["Adds 150 to 250 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=150},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=250}},nil}c["15% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=15}},nil}c["8% increased Global Defences per White Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="Defences",type="INC",value=8}},nil}c["-10 Physical Damage taken from Hits -1 Physical Damage taken from Hits per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-10}}," from Hits -1 Physical Damage taken from Hits "}c["40% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=40}},nil}c["Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Remove all Ailments and Burning when you gain Adrenaline "}c["Immune to Freeze and Chill while Ignited Damage Penetrates 15% of Fire Resistance if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="Ignited"},[2]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},"Immune and Chill Damage "}c["14% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=14}},nil}c["Gore Footprints 3% increased Damage against Enemies on Low Life per Frenzy Charge"]={nil,"Gore Footprints 3% increased Damage against Enemies on Low Life per Frenzy Charge "}c["10% reduced Damage taken from Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-10}},nil}c["50% chance to gain Elusive on Critical Strike 15% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage from Critical Strikes while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 15% increased while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage while Elusive "}c["100% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=100}},nil}c["38% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=38}},nil}c["+1 to Level of Socketed Cold Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="cold",value=1}}},nil}c["3% more Damage per Totem"]={{[1]={[1]={stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=3}},nil}c["Adds 15 to 25 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=25}},nil}c["5% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=5}},nil}c["Adds 13 to 23 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=23}},nil}c["15% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=15}},nil}c["70% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=70}},nil}c["Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth You have Phasing while you have Cat's Stealth"]={nil,"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth You have Phasing while you have Cat's Stealth "}c["+2 to Level of Socketed Curse Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="curse",value=2}}},nil}c["+20 to All Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["Enemies you inflict Bleeding on grant 100% increased Flask Charges Adds 120 to 165 Physical Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMin",type="BASE",value=120},[2]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMax",type="BASE",value=165}},"Enemies you inflict Bleeding on grant 100% increased Flask Charges "}c["10% chance to double Stun Duration 24% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon 4% chance to deal Double Damage"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="EnemyStunDuration",type="BASE",value=10}}," to double 24% increased Damage 4% chance to deal Double Damage "}c["Minions cannot be Blinded"]={nil,"cannot be Blinded "}c["Minions deal 51 to 78 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=51}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=78}}}},nil}c["Recover 25% of Life when you gain Adrenaline"]={nil,"Recover 25% of Life when you gain Adrenaline "}c["20% increased Spell Damage if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Adds 35 to 60 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=60}},nil}c["You Cannot Be Shocked While Chilled 50% chance to Shock Chilled Enemies"]={nil,"You Cannot Be Shocked While Chilled 50% chance to Shock Chilled Enemies "}c["Adds 6 to 80 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=80}},nil}c["12% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=12},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["25% chance to Blind Enemies on Hit Nearby Enemies are Blinded"]={{}," to Blind Enemies on Hit Nearby Enemies are Blinded "}c["Each Mine applies 2% reduced Damage dealt to Enemies near it, up to 10%"]={nil,"Each Mine applies 2% reduced Damage dealt to Enemies near it, up to 10% "}c["+2 to Level of Socketed Spell Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="spell",value=2}}},nil}c["10% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}c["Grants 2 Passive Skill Points"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=2}},nil}c["+1 to Level of Socketed Support Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="support",value=1}}},nil}c["Grants level 1 Icestorm Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="IcestormUniqueStaff12"}}},nil}c["26% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=26}},nil}c["Raised Zombies have +2000 to maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=2000}}}},nil}c["25% increased Effect of Buffs granted by your Golems per Summoned Golem"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}}," per Summoned "}c["2% additional Chance to receive a Critical Strike Nearby Enemies have 10% reduced Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="BASE",value=2}}," to receive a Critical Strike Nearby Enemies have 10% reduced "}c["2% of Attack Damage Leeched as Life against Taunted Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Taunted"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=2}},nil}c["Nova Spells Cast at the targeted location instead of around you"]={nil,"Nova Spells Cast at the targeted location instead of around you "}c["Adds 1 to 70 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=70}},nil}c["20% reduced Reflected Physical Damage taken Enemies have -5% to Total Physical Damage Reduction against your Hits 4% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected Enemies have -5% to Total Physical Damage Reduction against your Hits 4% chance to deal Double Damage "}c["Adds 1 to 60 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=60}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," for each Summoned Sentinel of Purity "}c["Shocks all nearby Enemies on Killing a Shocked Enemy Ignite a nearby Enemy on Killing an Ignited Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy Ignite a nearby Enemy on Killing an Ignited Enemy "}c["Gain 30% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=30}},nil}c["Channelling Skills deal 10% increased Attack Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Adds 4 to 9 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=9}},nil}c["Hits with this Weapon deal 45% increased Damage to Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=45}},nil}c["5% reduced Enemy Stun Threshold with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-5}},nil}c["75% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=75}},nil}c["20% less Fire Damage taken"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTaken",type="MORE",value=-20}},nil}c["75% reduced Effect of Chill on You"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-75}},nil}c["10% increased Attack Speed with Staves"]={{[1]={flags=2097157,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Adds 1 to 12 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=12}},nil}c["Adds 14 to 28 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=14},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=28}},nil}c["+2 to Level of Socketed Golem Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="golem",value=2}}},nil}c["Adds 23 to 40 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=23},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=40}},nil}c["Adds 60 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=140}},nil}c["15% increased Attack Speed with Claws"]={{[1]={flags=262149,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["25% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=25}}," applied to s "}c["60% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=60}},nil}c["2% more Attack Speed per Blitz Charge"]={{[1]={[1]={type="Multiplier",var="BlitzCharge"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=2}},nil}c["10% chance that if you would gain a Crab Barrier, you instead gain up to"]={{}," that if you would gain a Crab Barrier, you instead gain up to "}c["+1% to maximum Fire Resistance while affected by Herald of Ash"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAsh"},flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=1}},nil}c["When used in the Synthesiser, the new item will have an additional Herald Modifier"]={nil,"When used in the Synthesiser, the new item will have an additional Herald Modifier "}c["Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Mana on Kill "}c["7% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=7}},nil}c["Herald of Ash has 100% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Ash",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil}c["+60% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=60}},nil}c["20% more Damage while there is at most one Rare or Unique Enemy nearby"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=20}}," while there is at most one Rare or Unique Enemy nearby "}c["Adds 20 to 30 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=30}},nil}c["50% increased Effect of Buffs granted by your Active Ancestor Totems"]={{[1]={[1]={skillNameList={[1]="Ancestral Warchief",[2]="Ancestral Protector"},type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=50}},nil}c["100% increased Physical Damage while you have Resolute Technique"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}}," while you have Resolute Technique "}c["Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy Kill Enemies that have 20% or lower Life when Hit by your Skills"]={nil,"Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy Kill Enemies that have 20% or lower Life when Hit by your Skills "}c["Sword Attacks deal 14% increased Damage with Hits and Ailments"]={{[1]={flags=4194304,keywordFlags=786432,name="Damage",type="INC",value=14}},nil}c["Adds 1 to 54 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=54}},nil}c["15% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=15},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=15}},nil}c["+300 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=300}},nil}c["Resolute Technique"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Resolute Technique"}},nil}c["+325 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=325}},nil}c["16% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=16}},nil}c["+35% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=35}},nil}c["8% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=8}},nil}c["Cannot take Reflected Physical Damage"]={nil,"Cannot take Reflected Physical Damage "}c["50% increased Damage while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["5% additional Block Chance while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["10% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-10}},nil}c["1 Life Regenerated per second per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=1}},nil}c["Adds 20 to 30 Physical Damage to Attacks if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=20},[2]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=30}},nil}c["7% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=7}},nil}c["8% increased Accuracy Rating with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["10% increased Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+100% to Cold Resistance when Socketed with a Green Gem +100% to Lightning Resistance when Socketed with a Blue Gem"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=100}}," when Socketed with a Green Gem +100% to Lightning Resistance when Socketed with a Blue Gem "}c["+290 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=290}},nil}c["Socketed Gems have Elemental Equilibrium"]={nil,"Elemental Equilibrium "}c["Socketed Gems have 40% reduced Elemental Equilibrium effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-40}}}}," Elemental Equilibrium "}c["Adds 32 to 48 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=32},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=48}},nil}c["Adds 4 to 12 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=12}},nil}c["10% chance to gain Arcane Surge when you Kill an Enemy Minions have 28% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="BASE",value=10}}," to gain Arcane Surge when you Kill an Enemy Minions have 28% increased "}c["Can have up to 1 additional Trap placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTrapLimit",type="BASE",value=1}},nil}c["You can only have one Permanent Non-Banner Aura on you from your Skills Your Non-Banner Skills that create Permanent Auras on you do not Reserve Mana"]={nil,"You can only have one Permanent Non-Banner Aura on you from your Skills Your Non-Banner Skills that create Permanent Auras on you do not Reserve Mana "}c["40% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-40}},nil}c["8% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-8}},nil}c["20% increased Attack Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Socketed Gems are Supported by level 13 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=13,skillId="SupportFasterAttack"}}},nil}c["30 Life Gained on Igniting an Enemy 15% increased Ignite Duration on Enemies"]={nil,"30 Life Gained on Igniting an Enemy 15% increased Ignite Duration on Enemies "}c["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws 20% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=262148,keywordFlags=0,name="Damage",type="BASE",value=25}}," to Steal Power, Frenzy, and Endurance Charges on Hit 20% increased with Ailments from Attack Skills "}c["15% increased Item Quantity per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},nil}c["30% increased Elemental Damage with Attack Skills while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=30}},nil}c["+1 to Level of all Raise Spectre Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="raise spectre",value=1}}},nil}c["Channelling Skills have 4% increased Attack Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Socketed Gems are Supported by level 12 Lesser Multiple Projectiles"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=12,skillId="SupportLesserMultipleProjectiles"}}},nil}c["30% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}},nil}c["10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web 10% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge on hitting an Enemy affected by a Spider's Web 10% chance "}c["15 Life Regenerated per second for each Uncorrupted Item Equipped"]={{[1]={[1]={type="Multiplier",var="NonCorruptedItem"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=15}},nil}c["Regenerate 2% of Life per second during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["50% chance on Block to create Consecrated Ground 100% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground 100% chance on Block to create Consecrated Ground "}c["Left ring slot: 40 Mana Regenerated per second"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=40}},nil}c["Minions have 4% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}}}},nil}c["Adds 15 to 28 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=15},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=28}},nil}c["+15% to Fire Damage over Time Multiplier while Burning"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=15}}," while Burning "}c["Left ring slot: 30% reduced Reflected Elemental Damage taken Left ring slot: 40% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-30}}," Reflected Left ring slot: 40% reduced Reflected Elemental Damage taken "}c["10% increased Effect of Fortify on you"]={{[1]={flags=0,keywordFlags=0,name="FortifyEffectOnSelf",type="INC",value=10}},nil}c["Right ring slot: 30% reduced Reflected Physical Damage taken Right ring slot: 40% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-30}}," Reflected Right ring slot: 40% reduced Reflected Physical Damage taken "}c["Attacks with Two Handed Melee Weapons deal 14% increased Damage with Ailments"]={{[1]={flags=301991936,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["Adds 225 to 600 Lightning Damage to Unarmed Attacks"]={{[1]={flags=16777220,keywordFlags=0,name="LightningMin",type="BASE",value=225},[2]={flags=16777220,keywordFlags=0,name="LightningMax",type="BASE",value=600}},nil}c["5 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=5}},nil}c["Projectiles from Spells cannot Pierce"]={{[1]={flags=2,keywordFlags=0,name="CannotPierce",type="FLAG",value=true}},nil}c["Adds 3 to 70 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=458752,name="LightningMin",type="BASE",value=3},[2]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=458752,name="LightningMax",type="BASE",value=70}},nil}c["15% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["Adds 2 to 66 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=458752,name="LightningMin",type="BASE",value=2},[2]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=458752,name="LightningMax",type="BASE",value=66}},nil}c["+35% to Melee Critical Strike Multiplier if you've Warcried Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=35}},nil}c["25% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=25}},nil}c["+100% to Lightning Resistance when Socketed with a Blue Gem All Sockets are White"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=100}}," when Socketed with a Blue Gem All Sockets are White "}c["Adds 40 to 60 Cold Damage against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdMin",type="BASE",value=40},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdMax",type="BASE",value=60}},nil}c["Attack Skills deal 24% increased Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["+2 to Level of Socketed Herald Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="herald",value=2}}},nil}c["Can't use other Rings"]={nil,"Can't use other Rings "}c["10% increased Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+250 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=250}},nil}c["Your hits can't be Evaded"]={{[1]={flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil}c["12% increased Attack and Cast Speed per Ghost Shroud"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=12}}," per Ghost Shroud "}c["40% increased Damage against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["Regenerate 0.6% of Life per second for each Raised Zombie"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.6}}}}," for each "}c["Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies "}c["Adds 0 to 3 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=0},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=3}},nil}c["+13% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=13}},nil}c["10% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour You and nearby Allies deal 6 to 12 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},"Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["+15% to Lightning and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}},nil}c["+17 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=17}},nil}c["+5 to Level of Socketed Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="all",value=5}}},nil}c["Adds 15 to 50 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=50}},nil}c["30% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-30}},nil}c["23% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=23}},nil}c["+19% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=19}},nil}c["Ignites you inflict with Attacks deal Damage 20% faster"]={{[1]={flags=1,keywordFlags=0,name="IgniteBurnFaster",type="INC",value=20}},nil}c["50% chance to gain a Power Charge on Killing a Frozen Enemy"]={{}," to gain a Power Charge on Killing a Frozen Enemy "}c["Adds 285 to 330 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=285},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=330}},nil}c["2% more Attack and Movement Speed per Challenger Charge"]={{[1]={[1]={type="Multiplier",var="ChallengerCharge"},flags=0,keywordFlags=0,name="Speed",type="MORE",value=2},[2]={[1]={type="Multiplier",var="ChallengerCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="MORE",value=2}},nil}c["+120 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=120}},nil}c["Your Flasks grant 10% chance to Ignite during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}},nil}c["20% increased Damage against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=20}},nil}c["Adds 15 to 30 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=30}},nil}c["+20% to Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=20}},nil}c["110% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=110}},nil}c["50% reduced Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=-50}},nil}c["5% increased Maximum total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=5}},nil}c["3% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=3}},nil}c["Adds 9 to 17 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=9},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=17}},nil}c["Blind Chilled Enemies on Hit"]={nil,"Blind Chilled Enemies on Hit "}c["With at least 40 Dexterity in Radius, Burning"]={nil,"With at least 40 Dexterity in Radius, Burning "}c["Adds 70 to 165 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=165}},nil}c["0.3% of Physical Attack Damage Leeched as Mana per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.3}},nil}c["3 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=3}},nil}c["Adds 60 to 150 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=150}},nil}c["Mace or Sceptre Attacks deal 12% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["+1 to Level of Socketed Bow Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="bow",value=1}}},nil}c["15% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=15}},nil}c["150% increased Elemental Damage if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=150}},nil}c["You take 20% reduced Extra Damage from Critical Strikes"]={nil,"You take 20% reduced Extra Damage from Critical Strikes "}c["Nearby Allies Intimidate Enemies for 4 seconds on Hit"]={nil,"Nearby Allies Intimidate Enemies for 4 seconds on Hit "}c["50% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=50}},nil}c["130% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=130}},nil}c["10% chance to gain a Power Charge on Critical Strike 20% chance to gain a Power Charge on Non-Critical Strike"]={{}," to gain a Power Charge 20% chance to gain a Power Charge on Non-Critical Strike "}c["Enemies Taunted by your Warcries are Intimidated"]={nil,"Enemies Taunted by your Warcries are Intimidated "}c["10% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["10% increased Experience Gain of Corrupted Gems"]={{}," Experience Gain of Corrupted Gems "}c["Adds 15 to 25 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=25}},nil}c["Adds 40 to 85 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=85}},nil}c["30% increased Damage if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["+38 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=38},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=38}},nil}c["Blind Chilled Enemies on Hit Damage Penetrates 20% Cold Resistance against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdPenetration",type="BASE",value=20}},"Blind Chilled Enemies on Hit "}c["Fire Spells have 10% of Physical Damage Converted to Fire Damage"]={{[1]={flags=2,keywordFlags=16,name="PhysicalDamageConvertToFire",type="BASE",value=10}},nil}c["Axe Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=65536,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["6% increased Damage per Enemy Killed by you or your Totems Recently"]={{[1]={[1]={type="Multiplier",varList={[1]="EnemyKilledRecently",[2]="EnemyKilledByTotemsRecently"}},flags=0,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["50% less Energy Shield Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="MORE",value=-50}},nil}c["28% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-28}},nil}c["+70 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=70}},nil}c["+40% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=40}},nil}c["Vaal Skills deal 35% more Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=256,name="Damage",type="MORE",value=35}},nil}c["Impales you inflict last 2 additional Hits"]={nil,"Impales you inflict last 2 additional Hits "}c["+500 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=500}},nil}c["Adds 60 to 110 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=60},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=110}},nil}c["+30 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=30}},nil}c["50% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=50}},nil}c["You gain an Endurance Charge on use 100% increased Charges used"]={nil,"You gain an Endurance Charge on use 100% increased Charges used "}c["Extra gore"]={nil,"Extra gore "}c["Regenerate 2% of Life per second if a Minion has Died Recently"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}}," if a Minion has Died Recently "}c["5% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=5}},nil}c["Rampage 1% increased Rarity of Items found per 15 Rampage Kills"]={nil,"Rampage 1% increased Rarity of Items found per 15 Rampage Kills "}c["You are Cursed with Level 20 Vulnerability"]={{[1]={flags=0,keywordFlags=0,name="ExtraCurse",type="LIST",value={applyToPlayer=true,level=20,skillId="Vulnerability"}}},nil}c["Cover Enemies in Ash when they Hit you"]={nil,"Cover Enemies in Ash when they Hit you "}c["Cannot be Ignited if Strength is higher than Dexterity"]={{[1]={[1]={type="Condition",var="StrHigherThanDex"},flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}},nil}c["Cannot be Shocked if Intelligence is higher than Strength"]={{[1]={[1]={type="Condition",var="IntHigherThanStr"},flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=100}},nil}c["Adds 18 to 27 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=27}},nil}c["0.2% of Cold Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageLifeLeech",type="BASE",value=0.2}},nil}c["Your Flasks grant 25% reduced Enemy Stun Threshold during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil}c["their Maximum Life as Lightning Damage which cannot Shock"]={nil,"their Maximum Life as Lightning Damage which cannot Shock "}c["Gain 12% of Physical Damage as Extra Chaos Damage while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=12}},nil}c["60% increased Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=60}},nil}c["13% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=13}},nil}c["18% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=18}},nil}c["18% increased Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=18}},nil}c["Adds 74 to 121 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=74},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=121}},nil}c["Minions have 7% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=7}}}},nil}c["33% chance to Blind nearby Enemies when gaining Her Blessing Cannot be Frozen, Chilled or Ignited with Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing Cannot be Frozen, Chilled or Ignited with Her Blessing "}c["+1 Energy Shield gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}}," gained on Kill "}c["25% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["8% reduced Area Damage taken from Hits"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-8}}," from Hits "}c["Socketed Gems are Supported by level 18 Blind"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportBlind"}}},nil}c["Golems have 15% increased Maximum Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=15}}}},nil}c["25% chance to inflict Fire Exposure on Hit"]={{}," to inflict Fire Exposure on Hit "}c["Gain 15% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=15}},nil}c["For each Element you've been hit by Damage of Recently, 40% increased Damage of that Element"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=40},[2]={[1]={type="Condition",var="HitByColdDamageRecently"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40},[3]={[1]={type="Condition",var="HitByLightningDamageRecently"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=40}},nil}c["+8% chance to Evade Attacks while affected by Grace"]={{[1]={[1]={type="Condition",var="AffectedByGrace"},flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=8}},nil}c["15% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=15}},nil}c["75 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=75}},nil}c["40% increased Armour while not Ignited, Frozen or Shocked"]={{[1]={[1]={neg=true,type="Condition",varList={[1]="Ignited",[2]="Frozen",[3]="Shocked"}},flags=0,keywordFlags=0,name="Armour",type="INC",value=40}},nil}c["Curse Skills have 20% increased Skill Effect Duration"]={{[1]={[1]={skillType=32,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}c["+100 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=100}},nil}c["Herald of Thunder has 100% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil}c["30% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=30}},nil}c["-10 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-10}}," from Projectile Attacks "}c["20% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Minions have 10% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=10}}}},nil}c["25% increased Totem Placement range"]={{}," Placement range "}c["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy Skills Chain an additional time while at maximum Frenzy Charges"]={{}," to gain aCharge on Killing a Frozen Enemy Skills Chain an additional time "}c["You count as Dual Wielding while you are Unencumbered 60% more Attack Speed while you are Unencumbered 14 to 20 Added Attack Physical Damage per 10 Dexterity while you are Unencumbered"]={nil,"You count as Dual Wielding while you are Unencumbered 60% more Attack Speed while you are Unencumbered 14 to 20 Added Attack Physical Damage per 10 Dexterity while you are Unencumbered "}c["Minions have 33% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-33}}}},nil}c["Minions have 65% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=65}}}},nil}c["48% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=48}},nil}c["+1 to Melee range with Axes"]={{[1]={flags=65540,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1}},nil}c["Your Critical Strike Chance is Lucky"]={{[1]={flags=0,keywordFlags=0,name="CritChanceLucky",type="FLAG",value=true}},nil}c["+150 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=150}},nil}c["Auras from your Skills grant 2% increased Attack and Cast Speed to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}}},nil}c["50% increased Attack Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["37% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=37}},nil}c["Adds 1 to 34 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=34}},nil}c["1% increased Evasion Rating per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=1}},nil}c["200% of Life Leech applies to enemies as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="LifeAsChaos",type="BASE",value=200}}," Leech applies to enemies "}c["20% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil}c["15% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=15}},nil}c["5% increased Cast Speed with Lightning Skills"]={{[1]={flags=16,keywordFlags=64,name="Speed",type="INC",value=5}},nil}c["Attacks have 25% chance to cause Bleeding when Hitting Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=1,keywordFlags=262144,name="BleedChance",type="BASE",value=25}},nil}c["100% increased Chill Duration on Enemies when in Off Hand"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=100}},nil}c["16% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["+1% Chance to Block Attack Damage per Summoned Skeleton 2% increased Minion Attack and Cast Speed per Skeleton you own"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}}}}," per Summoned 2% increased Minion Attack and Cast Speed per Skeleton you own "}c["You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them"]={nil,"You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them "}c["Gain 6% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=6}},nil}c["Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy "}c["20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed"]={{}," when Placing s to Place an additional Mine 100% increased Mine Arming Speed "}c["Historic"]={nil,"Historic "}c["Wrath has 60% increased Aura Effect"]={{[1]={[1]={skillName="Wrath",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["Knocks Back Enemies in an Area on Flask use"]={nil,"Knocks Back Enemies in an Area on Flask use "}c["12% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["8% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Traps trigger at the end of their Duration"]={nil,"Traps trigger at the end of their Duration "}c["Adds 3 to 6 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=3},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=6}},nil}c["Adds 5 to 10 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=5},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=10}},nil}c["20% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-20}},nil}c["Adds 130 to 190 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=130},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=190}},nil}c["2% of Life Regenerated per second during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["+20% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=20}},nil}c["+33% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=33}},nil}c["140% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=140}},nil}c["25% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["10% increased Accuracy Rating with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["8% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=8}},nil}c["6% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=6}},nil}c["100% of Lightning Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTakenAsFire",type="BASE",value=100}},nil}c["12% increased Accuracy Rating with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["Adds 4 to 8 Fire Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="FireMin",type="BASE",value=4},[2]={flags=131076,keywordFlags=0,name="FireMax",type="BASE",value=8}},nil}c["Socketed Gems are supported by level 5 Blind"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=5,skillId="SupportBlind"}}},nil}c["Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem"]={nil,"Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem "}c["You have Onslaught while on full Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["20% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=20}},nil}c["263% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=263}},nil}c["Adds 30 to 92 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=92}},nil}c["Gain 15% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=15}},nil}c["2% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=2}},nil}c["Adds 27 to 86 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=27},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=86}},nil}c["Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"]={nil,"Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds "}c["Gain 14% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=14}},nil}c["+2 to Level of Socketed Cold Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="cold",value=2}}},nil}c["20% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=20}},nil}c["10% increased Wand Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=8388612,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["You and nearby Party members gain 5 Rage when you Warcry"]={nil,"You and nearby Party members gain 5 Rage when you Warcry "}c["+1 to Level of Socketed Active Skill Gems per 25 Player Levels"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={div=25,type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="active_skill",value=1}}},nil}c["4% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Adds 31 to 100 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=31},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=100}},nil}c["Adds 1 to 45 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=45}},nil}c["14 to 20 Added Attack Physical Damage per 10 Dexterity while you are Unencumbered"]={nil,"14 to 20 Added Attack Physical Damage per 10 Dexterity while you are Unencumbered "}c["50% chance to gain a Power Charge on Killing a Frozen Enemy Adds 15 to 25 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="ColdDamage",type="BASE",value=50}}," to gain a Power Charge on Killing a Frozen Enemy Adds 15 to 25 to s "}c["Culling Strike"]={{},"Culling Strike"}c["Adds 8 to 17 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=17}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["Adds 40 to 60 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=60}},nil}c["3% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=167772165,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["1% additional Physical Damage Reduction per Summoned Sentinel of Purity"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Summoned Sentinel of Purity "}c["35% less Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="MORE",value=-35}},nil}c["+30% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=30}},nil}c["2% increased Attack and Cast Speed for each corpse consumed Recently"]={{[1]={[1]={type="Multiplier",var="CorpseConsumedRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving 50% less Damage with Bleeding"]={nil,"You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving 50% less Damage with Bleeding "}c["+30 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=30}},nil}c["10% chance to Impale Enemies on Hit with Attacks 15% increased Effect of Impales inflicted by Hits that also inflict Bleeding"]={{[1]={flags=0,keywordFlags=65536,name="FlaskEffect",type="BASE",value=10}}," to Impale Enemies on Hit 15% increased of Impales inflicted by Hits that also inflict Bleeding "}c["20% increased Physical Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["4% reduced Enemy Stun Threshold with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-4}},nil}c["+70 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=70}},nil}c["16% increased Physical Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage"]={nil,"If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage "}c["Take 5 Physical Damage when hit by Attacks Pain Attunement"]={nil,"5 Physical Damage when hit by Attacks Pain Attunement "}c["3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30%"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=3}}," of Life and Energy Shield per Minion, up to 30% "}c["Attack Skills fire an additional Projectile while wielding a Claw or Dagger"]={nil,"Attack Skills fire an additional Projectile while wielding a Claw or Dagger "}c["20% increased Accuracy Rating with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["Shocks you cause are reflected back to you 60% increased Damage while Shocked"]={nil,"Shocks you cause are reflected back to you 60% increased Damage while Shocked "}c["You gain Phasing for 3 seconds on using a Vaal Skill You gain Phasing for 10 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 3 seconds on using a Vaal Skill You gain Phasing for 10 seconds on using a Vaal Skill "}c["+1 to Level of Socketed Curse Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="curse",value=1}}},nil}c["Each Summoned Phantasm grants you Phantasmal Might"]={nil,"Each Summoned Phantasm grants you Phantasmal Might "}c["Auras from your Skills grant 2% increased Attack and Cast"]={{}," Attack and Cast "}c["60% increased Critical Strike Chance against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=60}},nil}c["Regenerate 100 Energy Shield per second if all Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="NonCorruptedItem"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=100}},nil}c["40% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=40}},nil}c["Gain 8% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=8}},nil}c["Skeletons deal 40% increased Damage"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}}}},nil}c["Adds 21 to 36 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=21},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=36}},nil}c["Gain 5% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=5}},nil}c["10% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}},nil}c["+15 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=15}},nil}c["+75 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=75}},nil}c["You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other While there are at least five nearby Allies, you and nearby Allies have Onslaught"]={nil,"You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other While there are at least five nearby Allies, you and nearby Allies have Onslaught "}c["15% increased Mine Duration"]={{[1]={flags=0,keywordFlags=0,name="MineDuration",type="INC",value=15}},nil}c["+80 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=80}},nil}c["Minions have +17% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=17}}}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 5% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 5% increased "}c["20% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["25% chance to Sap Enemies"]={{}," to Sap Enemies "}c["25% chance to Sap Enemies Cannot inflict Shock"]={{}," to Sap Enemies Cannot inflict Shock "}c["170% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=170}},nil}c["Grants Summon Harbinger of Storms Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfStorms"}}},nil}c["Enemies Taunted by you take 10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil}c["Socketed Gems are Supported by level 18 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportFasterAttack"}}},nil}c["Socketed Gems are Supported by level 12 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=12,skillId="SupportFasterAttack"}}},nil}c["+8 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=8}},nil}c["Gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}},nil}c["Gain a Power Charge after Spending a total of 200 Mana +1 to Maximum Power Charges"]={nil,"Gain a Power Charge after Spending a total of 200 Mana +1 to Maximum Power Charges "}c["25% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["Extra Gore"]={nil,"Extra Gore "}c["Minions have 10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}}},nil}c["Minions have +350 to Armour"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=350}}}},nil}c["You and Allies affected by your Aura Skills deal 30% increased Damage"]={nil,"You and Allies affected by your Aura Skills deal 30% increased Damage "}c["60% increased Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=60}},nil}c["10% chance to double Stun Duration 4% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=10}}," to double 4% chance to deal Double Damage "}c["+4% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=4}},nil}c["Summoned Holy Relics have 25% reduced Cooldown Recovery Speed"]={{[1]={[1]={skillName="Summon Holy Relic",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=-25}}}},nil}c["+16 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=16},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=16}},nil}c["50% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=50}},nil}c["8% increased Area of Effect while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil}c["or Unique Enemy"]={nil,"or Unique Enemy "}c["20% increased Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Every 5 seconds, remove Curses and Elemental Ailments from you Every 5 seconds, 30% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, remove Curses and Elemental Ailments from you Every 5 seconds, 30% of Maximum Life Regenerated over one second "}c["Ignited Enemies Burn 65% slower"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnSlower",type="INC",value=65}},nil}c["+0 seconds to Avian's Flight Duration"]={{[1]={[1]={skillName="Aspect of the Avian",type="SkillName"},flags=0,keywordFlags=0,name="SecondaryDuration",type="BASE",value=0}},nil}c["+200 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=200}},nil}c["40% increased Lightning Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="LightningDamage",type="INC",value=40}},nil}c["+50 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=50},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=50}},nil}c["Nearby Allies have 6% increased Defences per 100 Strength you have"]={{[1]={[1]={div=100,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Defences",type="INC",value=6},onlyAllies=true}}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline "}c["+100 to Maximum Mana per Green Socket"]={{[1]={[1]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=100}},nil}c["10% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-10}},nil}c["Hits with this Weapon deal 60% increased Damage to Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=60}},nil}c["Grants level 1 Lightning Warp Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="LightningWarp"}}},nil}c["25% increased Area of Effect while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil}c["Enemies you Kill that are affected by Elemental Ailments"]={nil,"Enemies you Kill that are affected by Elemental Ailments "}c["+18% to Quality 16% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="BASE",value=18}}," Quality 16% increased "}c["10% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}},nil}c["For each nearby corpse, you and nearby Allies Regenerate 5 Mana"]={nil,"For each nearby corpse, you and nearby Allies Regenerate 5 Mana "}c["Socketed Curse Gems are Supported by Level 22 Blasphemy"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=22,skillId="SupportBlasphemy"}}},nil}c["Adds 54 to 88 Cold Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=54},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=88}},nil}c["Adds 64 to 107 Fire Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=64},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=107}},nil}c["Adds 14 to 173 Lightning Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=14},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=173}},nil}c["+20% chance to be Shocked 30% of Lightning Damage is taken from Mana before Life when Hit"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=20}}," to be Shocked 30% of is taken from Mana before Life when Hit "}c["100% of Damage Leeched as Life if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=100}},nil}c["10% chance to Knock Enemies Back on hit"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=10}},nil}c["Attack Skills deal 20% increased Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["+18% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=18}},nil}c["8% of Damage taken gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=8}}," gained as Mana over 4 seconds when Hit "}c["Adds 1 to 50 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=50}},nil}c["Adds 1 to 80 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=80}},nil}c["Adds 5 to 12 Fire Attack Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=5},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=12}},nil}c["Life Leech is applied to Energy Shield instead"]={nil,"Life Leech is applied to Energy Shield instead "}c["25% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["18% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=18}},nil}c["Adds 1 to 55 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=55}},nil}c["Minions have 10% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}}},nil}c["135% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=135}},nil}c["You lose Virulence 50% slower"]={nil,"You lose Virulence 50% slower "}c["Adds 2 to 10 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}c["5% reduced Area Damage taken from Hits +2 to Melee Weapon and Unarmed Attack range"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits +2 to Melee Weapon and Unarmed Attack range "}c["13% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=13}},nil}c["Minions have 13% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=13}}}},nil}c["Adds 50 to 150 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=150}},nil}c["Regenerate 0.5% of Mana per second for each Totem"]={{[1]={flags=0,keywordFlags=16384,name="ManaRegenPercent",type="BASE",value=0.5}}," for each "}c["Adds 6 to 22 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=22}},nil}c["Adds 4 to 19 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=19}},nil}c["10% more Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="MORE",value=10}},nil}c["While your Passive Skill Tree connects to a class' Starting location, you gain:"]={{},nil}c["Adds 40 to 70 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=70}},nil}c["Adds 50 to 80 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=80}},nil}c["+1% to Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}},nil}c["20% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=20}},nil}c["Minions deal 20% increased Damage if you've used a Minion Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="UsedMinionSkillRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}},nil}c["8% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=8}},nil}c["+55 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=55}},nil}c["You and Allies affected by Auras from your Skills have +20% to Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="AffectedByAuraMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}}}},nil}c["Adds 1 to 600 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=600}},nil}c["Adds 1 to 650 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=650}},nil}c["Adds 8 to 14 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=14}},nil}c["Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill"]={nil,"Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill "}c["5% reduced Mana Reservation of Skills that throw Mines"]={{[1]={flags=0,keywordFlags=8192,name="ManaReserved",type="INC",value=-5}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["Gain 10% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=10}},nil}c["Gain 30% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=30}},nil}c["Gain 28% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=28}},nil}c["Adds 70 to 80 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=80}},nil}c["Corpses you Spawn have 50% increased Maximum Life"]={nil,"Corpses you Spawn have 50% increased Maximum Life "}c["Adds 28 to 40 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=40}},nil}c["Adds 28 to 40 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=40}},nil}c["Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds"]={nil,"Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds "}c["Mace, Sceptre or Staff Attacks deal 20% increased Damage with Hits and Ailments"]={{[1]={[1]={modFlags=3145728,type="ModFlagOr"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["Adds 1 to 250 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=250}},nil}c["Adds 74 to 121 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=74},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=121}},nil}c["Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Avatar of Fire"}},nil}c["Adds 8 to 19 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=19}},nil}c["+2 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=2}},nil}c["Adds 1 to 65 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=65}},nil}c["9% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=9}},nil}c["Adds 75 to 130 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=130}},nil}c["12% increased Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Attacks have 60% chance to Poison while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=1,keywordFlags=0,name="PoisonChance",type="BASE",value=60}},nil}c["Hits with this Weapon deal 60% increased Damage to Frozen Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Frozen"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=60}},nil}c["+40 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=40}},nil}c["50% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["4% increased Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=4}},nil}c["Adds 1 to 60 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=60}},nil}c["8% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Adds 45 to 100 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=100}},nil}c["Adds 38 to 90 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=90}},nil}c["+2 to Weapon Range"]={{[1]={flags=0,keywordFlags=0,name="WeaponRange",type="BASE",value=2}},nil}c["Adds 60 to 110 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=60},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=110}},nil}c["You have Onslaught while at maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["+50 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=50}},nil}c["50% reduced Duration of Curses on you 10% additional Block chance while not Cursed"]={{[1]={[1]={neg=true,type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}}," of Curses on you 10% additional Block chance "}c["Minions have 10% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=10}}}},nil} \ No newline at end of file +local c=...c["10% reduced Critical Strike Chance per Blitz Charge"]={{[1]={[1]={type="Multiplier",var="BlitzCharge"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=-10}},nil}c["Gain an Endurance Charge when a Power Charge expires or is consumed"]={nil,"Gain an Endurance Charge when a Power Charge expires or is consumed "}c["20% more Damage against Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=262144,name="Damage",type="MORE",value=20}},nil}c["30% increased Damage with Hits against Rare monsters When you Kill a Rare monster, you gain its mods for 20 seconds"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}}," against Rare monsters When you Kill a Rare monster, you gain its mods for 20 seconds "}c["5% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["10% chance to gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 10 seconds on Kill "}c["Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing"]={nil,"Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing "}c["20% increased Damage with Ailments"]={{[1]={flags=2048,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Unaffected by Enfeeble while affected by Grace 8% chance to Dodge Spells while affected by Haste"]={nil,"Unaffected by Enfeeble while affected by Grace 8% chance to Dodge Spells while affected by Haste "}c["Gain 50% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=50}},nil}c["3% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=3}},nil}c["Claw Attacks deal 20% increased Damage with Hits and Ailments"]={{[1]={flags=262144,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["2% reduced Damage taken per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-2}}," per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating 10% increased Movement Speed "}c["Non-critical strikes deal 25% Damage"]={{[1]={[1]={neg=true,type="Condition",var="CriticalStrike"},flags=4,keywordFlags=0,name="Damage",type="MORE",value=-75}},nil}c["30% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=30}},nil}c["Gain a Power Charge for each Enemy you hit with a Critical Strike"]={nil,"Gain a Power Charge for each Enemy you hit with a Critical Strike "}c["Socketed Gems are Supported by level 1 Ice Bite"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportFrenzyChargeOnSlayingFrozenEnemy"}}},nil}c["2% increased Minion Attack and Cast Speed per Skeleton you own Minions Regenerate 2.5% Life per Second"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}}}," Minion per you own Minions Regenerate 2.5% Life per Second "}c["+8 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=8}},nil}c["Reflects 1 to 1000 Physical Damage to Attackers on Block 10% of Damage Reflected Gained as Life"]={nil,"Reflects 1 to 1000 Physical Damage to Attackers on Block 10% of Damage Reflected Gained as Life "}c["Leech Energy Shield instead of Life"]={{[1]={flags=0,keywordFlags=0,name="GhostReaver",type="FLAG",value=true}},nil}c["8% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=8}},nil}c["24% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["Attack Projectiles always inflict Bleeding and Maim, and Knock Back Enemies Projectiles cannot Pierce, Fork or Chain"]={nil,"Attack Projectiles always inflict Bleeding and Maim, and Knock Back Enemies Projectiles cannot Pierce, Fork or Chain "}c["+25% to Critical Strike Multiplier if you dealt a Critical Strike with a Herald Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}}," if you dealt a Critical Strike with a Herald Skill Recently "}c["10% chance to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy Gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy Gain Onslaught for 10 seconds on Kill "}c["5% chance to double Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=5}}," to double "}c["33% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=33}},nil}c["+28% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=28}},nil}c["5% increased Skeleton Movement Speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}}}},nil}c["Can be modified while Corrupted Can have up to 5 Implicit Modifiers while Item has this Modifier"]={nil,"Can be modified while Corrupted Can have up to 5 Implicit Modifiers while Item has this Modifier "}c["20% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Chill Effect and Freeze duration on you is based on 65% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 65% of Energy Shield "}c["20% chance to Maim on Hit"]={{}," to Maim on Hit "}c["6% increased Attack and Cast Speed per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds 10% chance to Dodge Spell Hits if you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=2,keywordFlags=0,name="Speed",type="INC",value=6}}," per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds 10% chance to Dodge Hits "}c["20% increased Damage while you have a Summoned Golem 30% increased Effect of Buffs granted by your Golems Golems have 15% increased Maximum Life +1 to maximum number of Golems"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," while you have a Summoned 30% increased Effect of Buffs granted by your Golems Golems have 15% increased Maximum Life +1 to maximum number of Golems "}c["10% chance to gain an Endurance Charge when you Block Attack Skills deal 20% increased Damage with Ailments while Dual Wielding 10% chance to gain a Frenzy Charge when you Block"]={{[1]={[1]={type="Condition",var="DualWielding"},[2]={skillName="Frenzy",type="SkillName"},flags=2048,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain an Endurance Charge when you Block Attack Skills deal 20% increased 10% chance to gain aCharge when you Block "}c["+5% to maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=5}},nil}c["25% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=6.25}},nil}c["20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ShadeForm"}}},nil}c["20% more Damage with Hits and Ailments against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=786432,name="Damage",type="MORE",value=20}},nil}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons "}c["+15% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=15}},nil}c["200 Energy Shield Regenerated per Second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=200}},nil}c["Minions deal 15% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}}},nil}c["Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed"]={nil,"Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed "}c["25% increased Lightning Damage with Hits against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="LightningDamage",type="INC",value=25}},nil}c["Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius"]={nil,"Reflects 30 Chaos Damage to Melee Attackers 25% reduced Light Radius "}c["30% increased Mana Regeneration Rate if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil}c["+3% chance to Evade Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=3}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["15% increased Accuracy Rating with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["5% increased Movement Speed while you have Infusion"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}}," while you have Infusion "}c["Enemies you Kill have a 10% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"]={nil,"Enemies you Kill have a 10% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage "}c["+173 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=173}},nil}c["Adds 9 to 18 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=9},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=18}},nil}c["With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike cannot choose Cold"]={nil,"With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike cannot choose Cold "}c["+40 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=40},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=40}},nil}c["Adds 35 to 105 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=35},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=105}},nil}c["Lose Souls gained from Soul Eater on Flask Use"]={nil,"Lose Souls gained from Soul Eater on Flask Use "}c["Cannot be Ignited while on Low Life"]={nil,"Cannot be Ignited while on Low Life "}c["+15% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20% Minions have 20% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=2}}," of Life and Energy Shield per Minion, up to 20% Minions have 20% more Maximum Life "}c["15% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["40% of Physical Damage Converted to Cold Damage while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=40}},nil}c["8% increased Minion Duration"]={{[1]={[1]={skillType=21,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=8}},nil}c["13% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=13}},nil}c["25% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=25}},nil}c["With at least 40 Strength in Radius, 25% of Glacial"]={nil,"With at least 40 Strength in Radius, 25% of Glacial "}c["Gain Arcane Surge when you Summon a Totem"]={nil,"Gain Arcane Surge when you Summon a Totem "}c["Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=1}},nil}c["10% chance to gain Unholy Might for 10 seconds on Kill 5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Unholy Might for 10 seconds on Kill 5% chance to gain Onslaught for 3 seconds on Kill "}c["Totems are Immune to Fire Damage Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage"]={nil,"Totems are Immune to Fire Damage Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage "}c["8% increased Attack Speed with Maces or Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Your Critical Strikes have a 5% chance to deal Double Damage"]={nil,"Your Critical Strikes have a 5% chance to deal Double Damage "}c["10% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}},nil}c["Aspect of the Cat Reserves no Mana"]={{[1]={[1]={skillId="CatAspect",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Gain a Power or Frenzy Charge each second while Channelling"]={nil,"Gain a Power or Frenzy Charge each second while Channelling "}c["+3% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=3}},nil}c["10% increased Physical Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["2 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=2}},nil}c["40% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}},nil}c["Increases and Reductions to Light Radius also apply to Area of Effect at 50% of their value"]={{[1]={flags=0,keywordFlags=0,name="LightRadiusAppliesToAreaOfEffect",type="FLAG",value=true}},nil}c["With at least 40 Strength in Radius, Glacial Hammer deals"]={nil,"With at least 40 Strength in Radius, Glacial Hammer deals "}c["60% increased Melee Damage when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=256,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit "}c["10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-10}},nil}c["Minions explode when reduced to Low Life, dealing 33% of their maximum Life as Fire Damage to surrounding Enemies"]={{[1]={flags=0,keywordFlags=0,name="ExtraMinionSkill",type="LIST",value={skillId="MinionInstability"}}},nil}c["Knockback direction is reversed"]={nil,"Knockback direction is reversed "}c["+3% to maximum Block Chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=3}},nil}c["Your Critical Strikes have Culling Strike"]={nil,"Your Critical Strikes have Culling Strike "}c["13% increased Physical Damage with Ranged Weapons"]={{[1]={flags=67108868,keywordFlags=0,name="PhysicalDamage",type="INC",value=13}},nil}c["+10 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=10}},nil}c["You Regenerate 0.5% of Mana per second per Totem"]={nil,"You Regenerate 0.5% of Mana per second per Totem "}c["14% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["Unaffected by Temporal Chains while affected by Haste Adds 70 to 104 Cold Damage while affected by Hatred"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=70},[2]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=104}},"Unaffected bywhile affected by Haste while affected by Hatred "}c["25% increased Arctic Armour Buff Effect"]={{[1]={[1]={skillName="Arctic Armour",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}},nil}c["30% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["10% increased Attack Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed "}c["Gain Soul Eater during Flask Effect Lose Souls gained from Soul Eater on Flask Use"]={nil,"Gain Soul Eater during Flask Effect Lose Souls gained from Soul Eater on Flask Use "}c["18% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["Adds 110 to 150 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=110},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=150}},nil}c["8% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["25% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=25}},nil}c["20% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=20}},nil}c["20% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-20}},nil}c["35% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["30% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=30}},nil}c["Adds 151 to 203 Fire Damage to Hits with this Weapon against Blinded Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=458752,name="FireMin",type="BASE",value=151},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=458752,name="FireMax",type="BASE",value=203}},nil}c["Cannot inflict Shock"]={{[1]={flags=0,keywordFlags=0,name="CannotShock",type="FLAG",value=true}},nil}c["30% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil}c["26% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=26}},nil}c["+28 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=28}},nil}c["Warcries count as having 10 additional nearby Enemies 30% increased Warcry Buff Effect"]={nil,"Warcries count as having 10 additional nearby Enemies 30% increased Warcry Buff Effect "}c["Adds 9 to 13 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=9},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=13}},nil}c["When you create a Banner, it gains 40% of the Stages of your placed Banner You and Allies affected by your placed Banners Regenerate 0.1% of\nmaximum Life per second for each Stage"]={nil,"When you create a Banner, it gains 40% of the Stages of your placed Banner You and Allies affected by your placed Banners Regenerate 0.1% of\nmaximum Life per second for each Stage "}c["40% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=40}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10%"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% "}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life "}c["15% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["30% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["40% reduced Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-40}},nil}c["Left ring slot: +100 to maximum Energy Shield"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},nil}c["15% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["Mines cannot be Damaged for 5 seconds after being thrown"]={nil,"Mines cannot be Damaged for 5 seconds after being thrown "}c["63% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=63}},nil}c["Cold-only Splash Damage to surrounding targets With at least 40 Strength in Radius, 25% of Glacial"]={nil,"Cold-only Splash Damage to surrounding targets With at least 40 Strength in Radius, 25% of Glacial "}c["5% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=5}},nil}c["+30% to Critical Strike Multiplier against Enemies that are affected by Elemental Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"}},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Gain 5% of Fire Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageGainAsChaos",type="BASE",value=5}},nil}c["0.5% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.5}},nil}c["+180 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=180}},nil}c["Inherent effects from having Rage are Tripled"]={{[1]={flags=0,keywordFlags=0,name="Multiplier:RageEffect",type="BASE",value=2}},nil}c["12% increased Attack and Cast Speed per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=12}}," per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds "}c["60% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["60% increased Critical Strike Chance while you have at least 200 Intelligence"]={{[1]={[1]={stat="Int",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["33% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=262144,name="Damage",type="INC",value=33}},nil}c["The Effect of Chill on you is reversed"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffectIsReversed",type="FLAG",value=true}},nil}c["10% chance to gain Onslaught for 4 seconds on Kill 25% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="BASE",value=10}}," to gain Onslaught for 4 seconds on Kill 25% increased "}c["Auras from your Skills grant 3% increased Attack and Cast Speed to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=3}}}},nil}c["5% reduced Enemy Stun Threshold with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-5}},nil}c["Impales you inflict last 1 additional Hit"]={nil,"Impales you inflict last 1 additional Hit "}c["10% increased Physical Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["20% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=20}},nil}c["Triggers level 20 Death Walk when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="DeathWalk"}}},nil}c["+50% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}},nil}c["+10% to Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="DotMultiplier",type="BASE",value=10}},nil}c["Cannot be used with Chaos Inoculation"]={nil,"Cannot be used with Chaos Inoculation "}c["Cannot be Chilled while you have Onslaught"]={nil,"Cannot be Chilled while you have Onslaught "}c["Every 8 seconds, gain Avatar of Fire for 4 seconds"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds "}c["Creates Consecrated Ground on Use"]={{},nil}c["Iron Reflexes while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Iron Reflexes"}},nil}c["15% chance to Impale Enemies on Hit with Attacks"]={{}," to Impale Enemies on Hit "}c["10% chance to gain Onslaught for 4 seconds on Kill"]={{}," to gain Onslaught for 4 seconds on Kill "}c["When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has You and nearby Allies have 12% increased Movement Speed"]={nil,"When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has You and nearby Allies have 12% increased Movement Speed "}c["30% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["5% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=5}},nil}c["32% increased Damage if you've used a Travel Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=32}}," if you've used a Travel Skill Recently "}c["Grants Level 20 Bone Armour Skill"]={nil,nil}c["25% reduced Mana Cost of Skills that place Mines or throw Traps"]={{[1]={flags=0,keywordFlags=12288,name="ManaCost",type="INC",value=-25}},nil}c["You take 30% reduced Extra Damage from Critical Strikes +40 to maximum Life"]={nil,"You take 30% reduced Extra Damage from Critical Strikes +40 to maximum Life "}c["+15% to Critical Strike Multiplier with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritMultiplier",type="BASE",value=15}},nil}c["Flasks gain 3 Charges every 3 seconds 20% chance for Flasks you use to not consume Charges"]={nil,"Flasks gain 3 Charges every 3 seconds 20% chance for Flasks you use to not consume Charges "}c["15% reduced Mana Cost of Minion Skills"]={{[1]={[1]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}},nil}c["Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies +150 to Evasion Rating and Energy Shield"]={nil,"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies +150 to Evasion Rating and Energy Shield "}c["You gain Onslaught for 5 second per Endurance Charge when Hit 100% increased Onslaught Effect"]={nil,"You gain Onslaught for 5 second per Endurance Charge when Hit 100% increased Onslaught Effect "}c["225% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=225}},nil}c["12% increased Global Attack Speed per Green Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=1,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["Take 200 Physical Damage when you use a Movement Skill"]={nil,"200 Physical Damage when you use a Movement Skill "}c["Gain 10% of Physical Damage as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances "}c["40% more Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=40}},nil}c["Nearby Allies have 30% increased Item Rarity Nearby Allies' spells have Culling Strike"]={{}," Item Rarity Nearby Allies' s have Culling Strike "}c["25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=25}}," to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full You and nearby Allies have 8% increased Movement Speed "}c["+24 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}c["Adds 7 to 18 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=18}},nil}c["You and Allies affected by your placed Banners Regenerate 0.1% of"]={nil,"You and Allies affected by your placed Banners Regenerate 0.1% of "}c["You have Consecrated Ground around you while stationary"]={nil,"You have Consecrated Ground around you while stationary "}c["Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second"]={nil,"Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second "}c["Every second, Consume a nearby Corpse to Recover 5% of Life and Mana"]={nil,"Every second, Consume a nearby Corpse to Recover 5% of Life and Mana "}c["50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=50},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=50},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=50}},nil}c["Attacks with Melee Weapons deal 14% increased Damage with Ailments"]={{[1]={flags=33556480,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["100% of Lightning Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTakenAsCold",type="BASE",value=100}},nil}c["Grants level 21 Despair Curse Aura during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ExtraCurse",type="LIST",value={level=21,skillId="Despair"}}},nil}c["+140 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=140}},nil}c["Cannot Evade enemy Attacks"]={{[1]={flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}},nil}c["25% of Elemental Damage taken as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTakenAsChaos",type="BASE",value=25}},nil}c["Trigger Socketed Curse Spells when you cast a Curse Skill"]={nil,"Trigger Socketed Curse Spells when you cast a Curse Skill "}c["Take no Extra Damage from Critical Strikes"]={nil,"no Extra Damage from Critical Strikes "}c["Adds 237 to 272 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=237},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=272}},nil}c["You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={nil,"You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["10% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=10}},nil}c["+20 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=20}},nil}c["200% of Life Leech applies to enemies as Chaos Damage 15% increased Movement Speed while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeAsChaos",type="BASE",value=200}}," Leech applies to enemies 15% increased Movement Speed "}c["Purity of Elements Reserves no Mana"]={{[1]={[1]={skillId="Purity",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["5% reduced Area Damage taken from Hits +2 to Melee Weapon and Unarmed Attack range 10% increased Area of Effect if you have Stunned an Enemy Recently"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits +2 to Melee Weapon and Unarmed Attack range 10% increased Area of Effect if you have Stunned an Enemy Recently "}c["30% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}},nil}c["40% increased Damage with Hits against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["50% increased Critical Strike Chance while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["Bow Knockback at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=131072,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=2}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of Golems"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of Golems "}c["1% increased Fishing Line Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=1}}," Fishing Line "}c["Unwavering Stance"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Unwavering Stance"}},nil}c["25% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground "}c["50% increased Life Recovery Rate if you've taken Fire"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=50}}," if you've taken Fire "}c["2% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=2}},nil}c["50% chance to gain Elusive on Critical Strike 15% increased Attack and Cast Speed while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 15% increased while Elusive "}c["10% increased Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Skills supported by Unleash have +1 to maximum number of Seals"]={nil,"Skills supported by Unleash have +1 to maximum number of Seals "}c["You and Allies affected by Auras from your Skills have +20%"]={{}," "}c["Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Power Charge on Kill"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Power Charge on Kill "}c["-2 Physical Damage taken from Attacks 40% of Melee Physical Damage taken reflected to Attacker"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-2}}," from Attacks 40% of Physical Damage taken reflected to Attacker "}c["30% Chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}},nil}c["You and Allies affected by your placed Banners Regenerate 0.1% of maximum Life per second for each Stage"]={nil,"You and Allies affected by your placed Banners Regenerate 0.1% of maximum Life per second for each Stage "}c["20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Summoned 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time "}c["Enemies Hindered by you take 10% increased Chaos Damage"]={nil,"Enemies Hindered by you take 10% increased Chaos Damage "}c["Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges"]={nil,"Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges "}c["+28% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=28}},nil}c["Spell Skills have 10% increased Area of Effect"]={{[1]={flags=2,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["25% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=25}},nil}c["Unaffected by Chilled Ground while affected by Purity of Ice Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Chilled Ground while affected by Purity of Ice Unaffected by Frostbite while affected by Purity of Ice "}c["Life Regeneration has no effect."]={nil,"Life Regeneration has no effect. "}c["20% chance to Recover 10% of Maximum Mana when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," to Recover 10% of when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana "}c["Projectiles Pierce you +160 Dexterity Requirement"]={nil,"Projectiles Pierce you +160 Dexterity Requirement "}c["6% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["18% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["Flasks gain 3 Charges every 3 seconds Damage Penetrates 6% of Enemy Elemental Resistances 15% chance for your Flasks to not consume Charges"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},"Flasks gain 3 Charges every 3 seconds 15% chance for your Flasks to not consume Charges "}c["6% increased Attack and Cast Speed per Ghost Shroud"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=6}}," per Ghost Shroud "}c["Life Regeneration has no effect"]={{[1]={flags=0,keywordFlags=0,name="NoLifeRegen",type="FLAG",value=true}},nil}c["50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage"]={{[1]={flags=0,keywordFlags=262144,name="FlaskEffect",type="MORE",value=50}}," of Herald Buffs on you 100% more Damage from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage "}c["5% increased Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=5}},nil}c["+25 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=25}},nil}c["their Maximum Life as Physical Damage"]={nil,"their Maximum Life as Physical Damage "}c["+9% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=9}},nil}c["15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},[2]={stat="PowerCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=15}}," to gain a Power Charge if you or your s kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}c["22% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=22}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["+10 to Maximum Challenger Charges"]={{[1]={flags=0,keywordFlags=0,name="ChallengerChargesMax",type="BASE",value=10}},nil}c["You lose 5% of Energy Shield per second"]={nil,"You lose 5% of Energy Shield per second "}c["Minions Leech 0.6% of Damage as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.6}}}},nil}c["18% Increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=18}},nil}c["Cannot Block Attacks"]={{[1]={flags=0,keywordFlags=0,name="CannotBlockAttacks",type="FLAG",value=true}},nil}c["8% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Minions Regenerate 2% Life per Second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}}}},nil}c["With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks "}c["80% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=80}},nil}c["Take 200 Physical Damage when you use a Movement Skill You have no Armour or Energy Shield"]={nil,"200 Physical Damage when you use a Movement Skill You have no Armour or Energy Shield "}c["10% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["5% chance to gain an Endurance Charge on Kill"]={{}," to gain an Endurance Charge on Kill "}c["4% increased Skeleton Movement Speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}}}},nil}c["Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage"]={nil,"Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage "}c["6% increased Attack Speed with Maces"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["95% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=95}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["+36 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=36}},nil}c["15% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["+20 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["+60% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=60}},nil}c["10% of Physical Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=10}},nil}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned "}c["Golems have 20% increased Attack and Cast Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}}},nil}c["Your Critical Strike Chance is Lucky while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="CritChanceLucky",type="FLAG",value=true}},nil}c["Adds 12 to 22 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=22}},nil}c["All Sockets are White"]={nil,"All Sockets are White "}c["Bow Attacks have 10% chance to cause Bleeding"]={{[1]={flags=131072,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil}c["+3% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=3}},nil}c["2% increased Melee Physical Damage per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=2}},nil}c["20% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=20}},nil}c["20% chance to Avoid Projectiles while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to Avoid "}c["2% increased Experience gain 3% increased Intelligence for each Unique Item Equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,keywordFlags=0,name="Int",type="INC",value=2}}," Experience gain 3% increased "}c["Flasks gain 3 Charges every 3 seconds 20% chance for your Flasks to not consume Charges"]={nil,"Flasks gain 3 Charges every 3 seconds 20% chance for your Flasks to not consume Charges "}c["Gain 300% of Weapon Physical Damage as Extra Damage of an Element"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamage",type="BASE",value=300}}," as Extra Damage of an Element "}c["0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.2}},nil}c["+10% to Damage over Time Multiplier for Poison"]={{[1]={flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=10}},nil}c["Your Critical Strikes do not deal extra Damage"]={{[1]={flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil}c["Chill Enemies for 1 second on Hit with this Weapon when in Off Hand"]={nil,"Chill Enemies for 1 second on Hit with this Weapon when in Off Hand "}c["Skills supported by Intensify have +1 to maximum Intensity"]={nil,"Skills supported by Intensify have +1 to maximum Intensity "}c["Adds 8 to 13 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=13}},nil}c["Arrows gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets"]={nil,"Arrows gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets "}c["Adds 10 to 120 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=10},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=120}},nil}c["Vaal Skills used during effect do not apply Soul Gain Prevention"]={nil,"Vaal Skills used during effect do not apply Soul Gain Prevention "}c["3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% Minions have 20% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=3}}," of Life and Energy Shield per Minion, up to 30% Minions have 20% more Maximum Life "}c["Weapons you Animate create an additional copy 25% chance to Trigger level 20 Animate Weapon on Kill"]={nil,"Weapons you Animate create an additional copy 25% chance to Trigger level 20 Animate Weapon on Kill "}c["Removes all but one Life on use"]={nil,"Removes all but one Life on use "}c["13% increased Quantity of Items found with a Magic Item equipped"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="MagicItem"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=13}},nil}c["30% chance to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=30}}," to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second +1 to "}c["40% increased Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["+100 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=100}},nil}c["Unattached Brands gain 20% increased Brand Attachment Range per second"]={nil,"Unattached Brands gain 20% increased Brand Attachment Range per second "}c["50% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=50}},nil}c["30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked Enemies "}c["+10 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=10}},nil}c["16% increased Physical Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["You can only Socket Corrupted Gems in this item Acrobatics"]={nil,"You can only Socket Corrupted Gems in this item Acrobatics "}c["Ignites you inflict deal Damage 8% faster"]={nil,"Ignites you inflict deal Damage 8% faster "}c["Critical Strikes do not inherently apply non-Damaging Ailments"]={nil,"Critical Strikes do not inherently apply non-Damaging Ailments "}c["30% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil}c["15% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-15}},nil}c["Gain a Spirit Charge every second You lose all Spirit Charges when taking a Savage Hit"]={nil,"Gain a Spirit Charge every second You lose all Spirit Charges when taking a Savage Hit "}c["Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell Immune to Elemental Ailments while you have Arcane Surge"]={nil,"Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell Immune to Elemental Ailments while you have Arcane Surge "}c["+13 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=13}},nil}c["If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour You and nearby Allies deal 6 to 12 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},"If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["20% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["12% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["+113% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=113}},nil}c["5% reduced Damage taken from Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-5}},nil}c["Modifiers to number of Projectiles instead apply to the number of targets Projectiles Split towards"]={nil,"Modifiers to number of Projectiles instead apply to the number of targets Projectiles Split towards "}c["16% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Adds 65 to 76 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=65},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=76}},nil}c["80% increased Attack Damage if your other Ring is a Shaper Item"]={{[1]={[1]={type="Condition",var="ShaperItemInRing {OtherSlotNum}"},flags=1,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["Mana Flasks gain 1 Charge every 3 seconds"]={nil,"Mana Flasks gain 1 Charge every 3 seconds "}c["Gain a Void Charge every 0.5 seconds"]={nil,"Gain a Void Charge every 0.5 seconds "}c["Phasing"]={{[1]={flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["20% increased Damage per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," per Summoned 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems "}c["Bow Skills have +10% to Damage over Time Multiplier"]={nil,"Bow Skills have +10% to Damage over Time Multiplier "}c["10% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=10}},nil}c["4% reduced Mana Cost per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-4}},nil}c["33% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=33}},nil}c["40% chance to Chill Attackers for 4 seconds on Block 40% chance to Shock Attackers for 4 seconds on Block"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=40}}," to Chill Attackers for 4 seconds on Block 40% chance Attackers for 4 seconds on Block "}c["+15% to Fire Damage over Time Multiplier while Burning Regenerate 1.50% of Life per second while Burning"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=15}}," while Burning Regenerate 1.50% of Life per second while Burning "}c["1% additional Physical Damage Reduction per Summoned Sentinel of Purity You lose Virulence 30% slower"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Summoned Sentinel of Purity You lose Virulence 30% slower "}c["0.2% of Damage Leeched as Life against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=0.2}},nil}c["80% increased Onslaught Effect"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=80}},nil}c["17% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=17}},nil}c["You take 10% of your maximum Life as Chaos Damage on use"]={nil,"You take 10% of your maximum Life as Chaos Damage on use "}c["10% chance to Steal Power, Frenzy, and Endurance Charges on Hit 30% reduced Endurance, Frenzy and Power Charge Duration"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="PowerChargesDuration",type="BASE",value=10}}," to Steal Power, Frenzy, and Endurance Charges on Hit 30% reduced Endurance,and "}c["You lose all Spirit Charges when taking a Savage Hit Recover 3% of Life when you lose a Spirit Charge"]={nil,"You lose all Spirit Charges when taking a Savage Hit Recover 3% of Life when you lose a Spirit Charge "}c["+48 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=48}}," gained when you Block "}c["Grants level 22 Blight Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="Blight"}}},nil}c["35% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=35}},nil}c["20% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=20}},nil}c["80% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["21% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=21}},nil}c["74% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=74}},nil}c["+16% to Critical Strike Multiplier with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=16}},nil}c["You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket"]={{[1]={[1]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=56}}},[2]={[1]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=88}}}},nil}c["Gain +3 Mana when you hit a Taunted Enemy"]={nil,"Gain +3 Mana when you hit a Taunted Enemy "}c["+30 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=30}},nil}c["35% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=35}},nil}c["50% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=50}},nil}c["6% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=6}},nil}c["88% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=88}},nil}c["Deals 450 Chaos Damage per second to nearby Enemies"]={nil,"Deals 450 Chaos Damage per second to nearby Enemies "}c["Gain 5% of Lightning Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageGainAsChaos",type="BASE",value=5}},nil}c["Adds 38 to 50 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=50}},nil}c["+1 to Level of Aura Gems in this item"]={{}," Level of Aura Gems in this item "}c["10% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-10}},nil}c["Warcry Skills' Cooldown Time is 2 seconds"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="OVERRIDE",value=2}},nil}c["Consumes Socketed Support Gems when they reach Maximum Level Can Consume 4 Support Gems"]={nil,"Consumes Socketed Support Gems when they reach Maximum Level Can Consume 4 Support Gems "}c["10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy You cannot have non-Animated Minions"]={{}," to Trigger Level 18 Animate Guardian's when Animated Weapon Kills an Enemy You cannot have non-Animated Minions "}c["340% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=340}},nil}c["+15% to Damage over Time Multiplier for Poison from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=15}},nil}c["Critical Strikes have Culling Strike"]={nil,"Critical Strikes have Culling Strike "}c["12% increased Physical Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["15% chance to gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain a Power Charge if you or your s kill an Enemy "}c["Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded "}c["50% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=50}},nil}c["+70 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=70}},nil}c["and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage"]={nil,"and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage "}c["Immune to Shock while affected by Purity of Lightning"]={nil,"Immune to Shock while affected by Purity of Lightning "}c["Adds 1 to 4 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=4}},nil}c["5% increased Experience gain 20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=5}}," Experience gain 20% increased "}c["90% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=90}},nil}c["+13 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=13}},nil}c["10% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["Regenerate 35 Mana per second if all Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="NonCorruptedItem"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=35}},nil}c["20% Chance for Energy Shield Recharge to Start when you Block"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}}," for Recharge to Start when you Block "}c["Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances"]={nil,"Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances "}c["30% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}},nil}c["Unaffected by Shocked Ground while affected by Purity of Lightning"]={nil,"Unaffected by Shocked Ground while affected by Purity of Lightning "}c["Culling Strike Life Leech effects are not removed at Full Life"]={nil,"Culling Strike Life Leech effects are not removed at Full Life "}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline "}c["+150 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=150}},nil}c["+1 to maximum number of Summoned Totems"]={{[1]={flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["Minions Recover 2% of their Maximum Life when they Block"]={nil,"Recover 2% of their Maximum Life when they Block "}c["Adds 6 to 12 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=12}},nil}c["Adds 13 to 23 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=23}},nil}c["Herald of Ash has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Herald of Ash",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["5% chance to gain 100% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=5}},nil}c["2% increased Critical Strike Chance for Spells per 100 Maximum Life"]={{[1]={[1]={div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=2}},nil}c["Discipline Reserves no Mana"]={{[1]={[1]={skillId="Discipline",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Enemies Maimed by you take 10% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Maimed"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=10}}}},nil}c["Shocks from your Hits always increase Damage taken by at least 15%"]={nil,"Shocks from your Hits always increase Damage taken by at least 15% "}c["+65 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=65}},nil}c["25% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=25}},nil}c["20% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=20}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit "}c["You and nearby Allies have 50% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}}}},nil}c["4% reduced Enemy Stun Threshold with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-4}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier 10% increased Effect of Chill"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier 10% increased Effect of Chill "}c["Gain 5% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=5}},nil}c["Increases and Reductions to Spell Damage also apply to Attacks"]={{[1]={flags=0,keywordFlags=0,name="SpellDamageAppliesToAttacks",type="FLAG",value=true}},nil}c["3% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=3}},nil}c["+37% to Chaos Resistance while affected by Herald of Agony"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAgony"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=37}},nil}c["+20 Energy Shield gained on Kill +1 to Level of Socketed Elemental Gems"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}}," gained on Kill +1 to Level of Socketed Elemental Gems "}c["+60 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=60}},nil}c["You can Cast an additional Brand Brand Skills have 20% increased Duration 10% increased Brand Activation frequency"]={nil,"You can Cast an additional Brand Brand Skills have 20% increased Duration 10% increased Brand Activation frequency "}c["6% increased Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=6}},nil}c["Enemies Taunted by you deal 10% less Damage with Hits and"]={nil,"Enemies Taunted by you deal 10% less Damage with Hits and "}c["25% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=25}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect "}c["10% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=301989893,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies 50% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies 50% increased Quantity of Items Dropped by Slain Normal Enemies "}c["10% chance to Freeze Enemies which are Chilled"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="EnemyFreezeChance",type="BASE",value=10}},nil}c["Trigger level 1 Create Lesser Shrine when you Kill an Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TriggeredSummonLesserShrine"}}},nil}c["Commanded leadership over 18000 warriors under Kaom Passives in radius are Conquered by the Karui"]={nil,"Commanded leadership over 18000 warriors under Kaom Passives in radius are Conquered by the Karui "}c["Adds 2 to 3 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=2},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=3}},nil}c["10% increased Accuracy Rating with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["Life Flasks gain 1 Charge every 3 seconds"]={nil,"Life Flasks gain 1 Charge every 3 seconds "}c["63% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=63}},nil}c["Herald Skills have 25% increased Area of Effect Herald Skills deal 20% increased Damage"]={nil,"Herald Skills have 25% increased Area of Effect Herald Skills deal 20% increased Damage "}c["Herald of Purity has 40% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=40}},nil}c["Attacks always inflict Bleeding while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["75% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=75}},nil}c["30% increased Damage over Time while affected by a Herald Herald Skills deal 50% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=30}}," while affected by a Herald Herald Skills deal 50% increased Damage over Time "}c["16% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["6% chance to Avoid Lightning Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=6}}," to Avoid from Hits "}c["Action Speed cannot be modified to below base value Movement Speed cannot be modified to below base value"]={nil,"Action Speed cannot be modified to below base value Movement Speed cannot be modified to below base value "}c["10% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=10}},nil}c["+29% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=29}},nil}c["+28 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=28}},nil}c["You and nearby Allies deal 6 to 12 added Physical Damage for"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6}}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}}}}," for "}c["+10% to Damage over Time Multiplier for Bleeding you inflict on Poisoned Enemies +10% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies"]={{[1]={flags=0,keywordFlags=2097152,name="DotMultiplier",type="BASE",value=10}}," you inflict on Poisoned Enemies +10% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies "}c["+25 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=25}},nil}c["Enemies Taunted by you take 5% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}}},nil}c["Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Speed"]={nil,"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Speed "}c["+600 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=600}},nil}c["Knocks Back Enemies if you get a Critical Strike with a Staff"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=2097152,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["25% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil}c["30% increased Totem Damage if you haven't Summoned a Totem in the past 2 seconds"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=30}}," if you haven't Summoned a Totem in the past 2 seconds "}c["Adds 25 to 50 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=50}},nil}c["+220 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=220}},nil}c["1% of Attack Damage Leeched as Life against Chilled enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Light Radius is based on Energy Shield instead of Life"]={nil,"Light Radius is based on Energy Shield instead of Life "}c["15% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}},nil}c["Damage Penetrates 6% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=6}},nil}c["+40 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=40}},nil}c["20% of Fire Damage taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsCold",type="BASE",value=20}},nil}c["50% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=50}},nil}c["Your Raised Spectres also gain Arcane Surge when you do"]={nil,"Your Raised Spectres also gain Arcane Surge when you do "}c["If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 of its mods for 20 seconds"]={nil,"If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 of its mods for 20 seconds "}c["+1% to maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=1}},nil}c["3% increased Cast Speed while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed Gain 5 Rage when you use a Warcry"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed Gain 5 Rage when you use a Warcry "}c["Cast a Socketed Cold Spell on Melee Critical Strike"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,name="SupportUniqueCosprisMaliceColdSpellsCastOnMeleeCriticalStrike"}}},nil}c["25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000% Shaper Item"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=25}}," for each 200 total Mana you have Spent Recently, up to 2000% Shaper Item "}c["Focus has 25% increased Cooldown Recovery Speed"]={nil,"Focus has 25% increased Cooldown Recovery Speed "}c["+1% to Critical Strike Chance of Herald Skills"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}},nil}c["Damage with Weapons Penetrates 4% Elemental Resistance"]={{[1]={flags=8192,keywordFlags=0,name="ElementalPenetration",type="BASE",value=4}},nil}c["2% increased Attack Damage per 75 Armour or Evasion Rating on Shield +1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield"]={{[1]={[1]={div=10,stat="EnergyShield",type="PerStat"},flags=1,keywordFlags=0,name="Damage",type="INC",value=2}}," per 75 Armour or Evasion Rating on Shield +1% to Critical Strike Multiplier on Shield "}c["Energy Shield protects Mana instead of Life"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldProtectsMana",type="FLAG",value=true}},nil}c["Adds 5 to 11 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=11}},nil}c["0.3% of Physical Attack Damage Leeched as Life per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.3}},nil}c["Adds 6 to 14 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=14}},nil}c["Anger has 60% increased Aura Effect"]={{[1]={[1]={skillName="Anger",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["Grants Level 20 Aspect of the Spider Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SpiderAspect"}}},nil}c["Attacks with One Handed Melee Weapons deal 20% increased Damage with Ailments"]={{[1]={flags=167774208,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Adds 140 to 210 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=140},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=210}},nil}c["10% increased Effect of Tailwind on you for each Skill you've used Recently, up to 100%"]={{[1]={[1]={limit=100,limitTotal=true,type="Multiplier",var="SkillUsedRecently"},flags=0,keywordFlags=0,name="TailwindEffectOnSelf",type="INC",value=10}},nil}c["Ignited Enemies Burn 50% slower"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnSlower",type="INC",value=50}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["Poisons on you expire 50% slower"]={nil,"Poisons on you expire 50% slower "}c["83% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=83}},nil}c["Minions Regenerate 1% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}}}},nil}c["Moving while Bleeding doesn't cause you to take extra Damage Gain +30 Life when you Hit a Bleeding Enemy"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage Gain +30 Life when you Hit a Bleeding Enemy "}c["+50 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=50}},nil}c["10% more Damage while you have at least one nearby Ally"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyAlly"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}},nil}c["20% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=20}},nil}c["Enemies killed explode dealing 10% of their Life as Fire Damage Recover 5% of Maximum Life on Kill"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage Recover 5% of Maximum Life on Kill "}c["20% reduced Reflected Physical Damage taken Enemies have -5% to Total Physical Damage Reduction against your Hits 4% chance to deal Double Damage +20 to Strength 20% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected Enemies have -5% to Total Physical Damage Reduction against your Hits 4% chance to deal Double Damage +20 to Strength 20% increased Physical Damage "}c["do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["+4% Chance to Block Attack Damage while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["Adds 188 to 563 Lightning Damage to Unarmed Attacks"]={{[1]={flags=16777220,keywordFlags=0,name="LightningMin",type="BASE",value=188},[2]={flags=16777220,keywordFlags=0,name="LightningMax",type="BASE",value=563}},nil}c["3 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=3}},nil}c["+14% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=14}},nil}c["20% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["Adds 400 to 600 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=400},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=600}},nil}c["+1 to Maximum Life per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil}c["+16 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=16}},nil}c["Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies Enemies Maimed by you take 10% increased Physical Damage"]={nil,"Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies Enemies Maimed by you take 10% increased Physical Damage "}c["Gain Soul Eater for 10 seconds when you use a Vaal Skill"]={nil,"Gain Soul Eater for 10 seconds when you use a Vaal Skill "}c["Adds 74 to 121 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=74},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=121}},nil}c["No Damage Multiplier for Ailments from Critical Strikes"]={nil,"No Damage Multiplier for Ailments from Critical Strikes "}c["12% increased Movement Speed while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}},nil}c["Gems Socketed in Blue Sockets gain 25% increased Experience"]={nil,"Gems Socketed in Blue Sockets gain 25% increased Experience "}c["25% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil}c["18% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=18}},nil}c["20% chance to gain a Power Charge on Hit 6% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="BASE",value=20}}," to gain a Power Charge on Hit 6% increased "}c["Gain +2% to Critical Strike Chance for 2 seconds when you Spend a total of 800 Mana"]={nil,"Gain +2% to Critical Strike Chance for 2 seconds when you Spend a total of 800 Mana "}c["+3% to all maximum Resistances while you have no Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=3},[2]={[1]={stat="EnduranceCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=3}},nil}c["+200 to Accuracy Rating with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["30 Energy Shield gained for each Enemy Hit while affected by Discipline 2.5% of Maximum Energy Shield Regenerated per Second while affected by Discipline"]={{}," "}c["15% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["+1 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1}},nil}c["60% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["Lose 0.1% of maximum Life per second per Rage while you are not losing Rage Effects granted for having Rage are Tripled"]={nil,"Lose 0.1% of maximum Life per second per Rage while you are not losing Rage Effects granted for having Rage are Tripled "}c["Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["6% increased Burning Damage for each Enemy you have Shocked Recently Adds 3 to 70 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=134479872,name="FireDamage",type="INC",value=6}}," for each Enemy you have Shocked Recently Adds 3 to 70 Lightning Damage to Hits "}c["400 Cold Damage taken per second per Frenzy Charge while moving"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="ColdDegen",type="BASE",value=400}},nil}c["Cannot gain Mana during effect Vaal Skills deal 100% increased Damage during effect"]={nil,"Cannot gain Mana during effect Vaal Skills deal 100% increased Damage during effect "}c["Nearby Allies' Action Speed cannot be modified to below base value"]={nil,"Nearby Allies' Action Speed cannot be modified to below base value "}c["60% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=60}},nil}c["80% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=80}}," applied to s "}c["15% chance to create Chilled Ground when Hit with an Attack"]={{}," to create Chilled Ground when Hit with an Attack "}c["Passives in radius are Conquered by the Vaal"]={nil,"Passives in radius are Conquered by the Vaal "}c["45% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=45}},nil}c["75% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=75}},nil}c["+8% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=8}},nil}c["40% increased Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=40}},nil}c["2% increased Attack Damage per 75 Armour or Evasion Rating on Shield"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=2}}," per 75 Armour or Evasion Rating on Shield "}c["25% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=25}},nil}c["60% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=60}},nil}c["+10 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=10}},nil}c["Mace or Sceptre Attacks deal 8% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["+500 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=500}},nil}c["30% chance to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges"]={{}," to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges "}c["6% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["+120 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=120}},nil}c["+30% Chaos Resistance against Damage Over Time"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=30}}," against Damage Over Time "}c["5% chance to grant a Frenzy Charge to nearby Allies on Hit"]={{}," to grant aCharge to nearby Allies on Hit "}c["16% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["All Sockets are White Socketed Gems have Elemental Equilibrium"]={nil,"All Sockets are White Socketed Gems have Elemental Equilibrium "}c["Every 10 seconds, gain 100% of Physical Damage as Extra Fire Damage for 4 seconds"]={nil,"Every 10 seconds, gain 100% of Physical Damage as Extra Fire Damage for 4 seconds "}c["+3 to Level of all Lightning Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="lightning",[3]="active_skill"},value=3}}},nil}c["30% increased Attack Damage during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=1,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["40% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=40}},nil}c["20% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=20}},nil}c["-50% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=-50}},nil}c["+25% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25}},nil}c["Bleeding Enemies you Kill Explode, dealing 5% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of "}c["50% reduced Extra Damage taken from Critical Strikes while Ignited"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-50}}," Extra "}c["50% increased Damage on Burning Ground"]={{[1]={[1]={type="Condition",var="OnBurningGround"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["5 Maximum Void Charges Gain a Void Charge every 0.5 seconds"]={nil,"5 Maximum Void Charges Gain a Void Charge every 0.5 seconds "}c["Enemies Taunted by you take 20% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=20}}}},nil}c["Cannot be Stunned while you have Ghost Shrouds"]={nil,"Cannot be Stunned while you have Ghost Shrouds "}c["400 Lightning Damage taken per second per Power Charge if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},[2]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="LightningDegen",type="BASE",value=400}},nil}c["Vaal Skills have 25% reduced Soul Cost during effect"]={{}," Soul Cost "}c["Damage Penetrates 15% Cold Resistance while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=15}},nil}c["Chaos Resistance is doubled"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="MORE",value=100}},nil}c["30% increased Evasion Rating during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil}c["2% of Chaos Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=2}},nil}c["8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage from Critical Strikes while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-8}}," while Elusive 25% increased Elusive Effect You take no Extra Damage while Elusive "}c["40% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=40}},nil}c["Adds 5 to 10 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=10}},nil}c["4% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=4}},nil}c["Adds 7 to 15 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=7},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=15}},nil}c["Anger has 30% increased Aura Effect"]={{[1]={[1]={skillName="Anger",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["25% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit "}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently 15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage Cannot be Stunned if you haven't been Hit Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={neg=true,type="Condition",var="BeenHitRecently"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="LifeRecoveryRate",type="BASE",value=15},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={neg=true,type="Condition",var="BeenHitRecently"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="ManaRecoveryRate",type="BASE",value=15},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={neg=true,type="Condition",var="BeenHitRecently"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="EnergyShieldRecoveryRate",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage Cannot be Stunned "}c["20% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=20}},nil}c["Minions have 90% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=90}}}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["5% increased Fire Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=5}},nil}c["30% of Damage you Reflect to enemies is gained as Life"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=30}}," you Reflect to enemies is gained as Life "}c["25% reduced effect of Offerings You can have an Offering of each type"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-25}}," of Offerings You can have an Offering of each type "}c["10% chance to Blind Enemies on Hit"]={{}," to Blind Enemies on Hit "}c["You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={nil,"You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["10% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit 10% chance to double Stun Duration"]={{[1]={flags=256,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=10}}," to gain an Endurance Charge when you Stun an Enemy with a Hit 10% chance to double "}c["130% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=130}},nil}c["35% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=35}},nil}c["You are Immune to Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=100}},nil}c["6% increased Accuracy Rating with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["Socketed Red Gems get 10% Physical Damage as Extra Fire Damage"]={{[1]={[1]={keyword="strength",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=10}}}},nil}c["Adds 17 to 29 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=29}},nil}c["43% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=43}},nil}c["Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy "}c["Damage Penetrates 10% Lightning Resistance during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=10}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["their Maximum Life as Physical Damage 25% more Damage with Bleeding"]={nil,"their Maximum Life as Physical Damage 25% more Damage with Bleeding "}c["4% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}},nil}c["5% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["Cannot be Knocked Back +150 to maximum Life"]={nil,"Cannot be Knocked Back +150 to maximum Life "}c["30% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=30}},nil}c["Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SpiritBurst"}}},nil}c["50% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to"]={nil,"You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to "}c["Has no Sockets"]={{[1]={flags=0,keywordFlags=0,name="NoSockets",type="FLAG",value=true}},nil}c["40% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=40}},nil}c["Left ring slot: 80% reduced Reflected Elemental Damage taken Right ring slot: 30% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-80}}," Reflected Right ring slot: 30% reduced Reflected Physical Damage taken "}c["30% increased Attack Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,keywordFlags=0,name="Speed",type="INC",value=30}},nil}c["80% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=80}},nil}c["24% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=24}},nil}c["14% increased Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["10% Chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil}c["20% chance to gain a Spirit Charge on Kill"]={{}," to gain a Spirit Charge on Kill "}c["Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},[3]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=20}},nil}c["5% reduced Enemy Stun Threshold with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-5}},nil}c["50% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-50}},nil}c["20% reduced Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-20}},nil}c["You gain Divinity for 10 seconds on reaching maximum Divine Charges"]={{[1]={[1]={type="Condition",var="Divinity"},flags=0,keywordFlags=0,name="ElementalDamage",type="MORE",value=50},[2]={[1]={type="Condition",var="Divinity"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="MORE",value=-20}},nil}c["14% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["100% increased Warcry Duration"]={{[1]={flags=0,keywordFlags=4,name="Duration",type="INC",value=100}},nil}c["0.8% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.8}},nil}c["50% reduced Mana Cost of Raise Spectre"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-50}},nil}c["3% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-3}},nil}c["13% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=13}},nil}c["Gain 8% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=8}},nil}c["You can have an additional Brand Attached to an Enemy"]={nil,"You can have an additional Brand Attached to an Enemy "}c["8% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["23% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=23}},nil}c["24% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["If you've Warcried Recently, you and nearby allies"]={nil,"If you've Warcried Recently, you and nearby allies "}c["55% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=55}},nil}c["6% increased Attack Speed while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["Adds 135 to 360 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=135},[2]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=360}},nil}c["20% increased Mine Detonation Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MineDetonationAreaOfEffect",type="INC",value=20}},nil}c["+400 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=400}},nil}c["28% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=28}},nil}c["Left ring slot: Projectiles from Spells Fork"]={nil,"Projectiles from Spells Fork "}c["Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second"]={nil,"Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second "}c["63% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=63}},nil}c["Grants level 20 Summon Bestial Rhoa Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonBeastialRhoa"}}},nil}c["4% increased Attack Speed with Maces"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["10% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10}},nil}c["Adds 92 to 154 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=92},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=154}},nil}c["Ghost Reaver"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Ghost Reaver"}},nil}c["You gain 4% increased Area of Effect for each Mine 20% increased Mine Throwing Speed if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=4}},"% increased for each 20% increased Mine Throwing Speed "}c["18% increased Damage with Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=18}},nil}c["+60 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=60}},nil}c["Adds 78 to 114 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=78},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=114}},nil}c["+24% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=24}},nil}c["Adds 6 to 9 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=6},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=9}},nil}c["20% chance to Impale Enemies on Hit with Attacks Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=65536,name="Armour",type="BASE",value=20}}," to Impale Enemies on Hit Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy "}c["50% chance to cause Bleeding with Melee Critical Strikes with this Weapon"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="{Hand}Attack"},flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["+5% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=5}}," Non-Ailment "}c["and nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},"and nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["Enemies Chilled by your Hits are Shocked"]={nil,"Enemies Chilled by your Hits are Shocked "}c["Gain 1 Rage on Critical Hit with attacks, no more than once every 0.5 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true},[2]={[1]={type="Condition",var="CanGainRage"},flags=0,keywordFlags=0,name="Dummy",type="DUMMY",value=1}},nil}c["Gain Arcane Surge when your Mine is Detonated targeting an Enemy Gain Arcane Surge when your Trap is Triggered by an Enemy"]={nil,"Gain Arcane Surge when your Mine is Detonated targeting an Enemy Gain Arcane Surge when your Trap is Triggered by an Enemy "}c["+305 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=305}},nil}c["5% chance to double Stun Duration 14% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="EnemyStunDuration",type="BASE",value=5}}," to double 14% increased Damage "}c["+650 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=650}},nil}c["100% increased Shock Duration on You Shocks you cause are reflected back to you"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=100}}," on You Shocks you cause are reflected back to you "}c["+333 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=333}},nil}c["+1% to maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=1}},nil}c["Your Fire Damage can Poison"]={{[1]={flags=0,keywordFlags=0,name="FireCanPoison",type="FLAG",value=true}},nil}c["10% increased Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Gain a Frenzy Charge on Hit while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding "}c["10% increased Fire Damage taken"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=10}},nil}c["Minions have 10% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-10}}}},nil}c["45% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=45}},nil}c["You gain Onslaught for 4 seconds on Kill while affected by Haste"]={nil,"You gain Onslaught for 4 seconds on Kill while affected by Haste "}c["+1% to Critical Strike Chance while affected by Aspect of the Cat"]={{[1]={[1]={type="Condition",varList={[1]="AffectedByCat'sStealth",[2]="AffectedByCat'sAgility"}},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}},nil}c["60% increased Chaos Damage while affected by Herald of Agony"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAgony"},flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=60}},nil}c["120% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=120}},nil}c["Adds 1 to 59 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=59}},nil}c["20% increased Critical Strike Chance with Cold Skills"]={{[1]={flags=0,keywordFlags=32,name="CritChance",type="INC",value=20}},nil}c["30% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=30}},nil}c["+12% to Critical Strike Multiplier with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=47}}},[2]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=61}}}},nil}c["60% increased Physical Damage while affected by Herald of Purity"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofPurity"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=60}},nil}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence "}c["+23% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=23}},nil}c["7% increased Elemental Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=7}},nil}c["10% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=10}},nil}c["25% increased Critical Strike Chance with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["23% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=23}},nil}c["+15 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=15}},nil}c["12% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Herald of Purity has 100% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil}c["45% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=45}},nil}c["Immunity to Ignite during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}},nil}c["10% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["Herald Skills deal 50% increased Damage over Time"]={nil,"Herald Skills deal 50% increased Damage over Time "}c["14% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["Gain 2 Grasping Vines each second while stationary 2% chance to deal Double Damage per Grasping Vine 1% less Damage taken per Grasping Vine"]={nil,"Gain 2 Grasping Vines each second while stationary 2% chance to deal Double Damage per Grasping Vine 1% less Damage taken per Grasping Vine "}c["Gain a Power Charge on non-Critical Strike Lose all Power Charges on Critical Strike"]={nil,"Gain a Power Charge on non-Critical Strike Lose all Power Charges on Critical Strike "}c[" Life per second for each Stage Banner Skills Reserve no Mana"]={nil," Life per second for each Stage Banner Skills Reserve no Mana "}c["Non-instant Mana recovery from Flasks is also recovered as Life 60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life 60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently "}c["12% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=12}},nil}c["20% chance to gain a Frenzy Charge when Hit while Channelling"]={{}," to gain aCharge when Hit "}c["10% chance to gain Onslaught for 10 seconds on Kill Recover 1% of Maximum Life on Kill"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=10}}," to gain Onslaught for 10 seconds on Kill Recover 1% of on Kill "}c["+150 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=150}},nil}c["+125% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=125}},nil}c["20% chance to gain a Frenzy Charge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy +1 to Maximum Frenzy Charges"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=20}}," to gain aCharge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy +1 to "}c["Golems have 45% less Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-45}}}},nil}c["55% increased Critical Strike Chance while you have at least 200 Intelligence"]={{[1]={[1]={stat="Int",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=55}},nil}c["+2 to Level of Socketed Support Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="support",value=2}}},nil}c["24% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Animated Guardian deals 5% increased Damage per Animated Weapon"]={nil,"Animated Guardian deals 5% increased Damage per Animated Weapon "}c["+250 to Armour while affected by a Guard Skill Buff 10% chance when Hit for double Armour effect"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=250}}," while affected by a Guard Skill Buff 10% chance when Hit for double Armour effect "}c["10% chance to gain a Power Charge on Critical Strike 20% chance to gain a Power Charge on non-Critical Strike"]={{}," to gain a Power Charge 20% chance to gain a Power Charge on non-Critical Strike "}c["Warcries cost no Mana"]={{[1]={flags=0,keywordFlags=4,name="ManaCost",type="MORE",value=-100}},nil}c["25% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-25}},nil}c["Your Bleeding does not deal extra Damage while the Enemy is moving"]={{[1]={flags=0,keywordFlags=0,name="Condition:NoExtraBleedDamageToMovingEnemy",type="FLAG",value=true}},nil}c["Adds 15 to 26 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=26}},nil}c["13% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=13}},nil}c["You and Allies affected by your Aura Skills have +20% to all Elemental Resistances"]={nil,"You and Allies affected by your Aura Skills have +20% to all Elemental Resistances "}c["With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area With at least 40 Intelligence in Radius, Cold Snap Cooldown can be bypassed by Power Charges instead of Frenzy Charges"]={nil,"With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area With at least 40 Intelligence in Radius, Cold Snap Cooldown can be bypassed by Power Charges instead of Frenzy Charges "}c["30% increased Minion Duration"]={{[1]={[1]={skillType=21,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil}c["70% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=70}},nil}c["65% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=65}},nil}c["70% increased Critical Strike Chance when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=70}},nil}c["6% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=6}},nil}c["16% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=16}},nil}c["30% increased Maximum total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxEnergyShieldLeechRate",type="INC",value=30}},nil}c["50% increased Aspect of the Spider Debuff Duration"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil}c["55% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=55}},nil}c["With at least 40 Dexterity in Radius, Burning Arrow can inflict an additional Ignite on an Enemy"]={nil,"With at least 40 Dexterity in Radius, Burning Arrow can inflict an additional Ignite on an Enemy "}c["45% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=45}},nil}c["Reflects 10 Cold Damage to Melee Attackers Your Cold Damage can Ignite"]={nil,"Reflects 10 Cold Damage to Melee Attackers Your Cold Damage can Ignite "}c["43% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=43}},nil}c["Nearby Allies have Culling Strike"]={nil,"Culling Strike "}c["10% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["15% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=15}},nil}c["+25 Energy Shield gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=25}}," gained on Kill "}c["0.4% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.4}},nil}c["Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits"]={nil,"Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits "}c["+4% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=4}},nil}c["+110 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=110}},nil}c["You cannot be Shocked while at maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=100}},nil}c["10% chance to gain Unholy Might on block for 3 seconds"]={{}," to gain Unholy Might on block for 3 seconds "}c["1% of Attack Damage Leeched as Life on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour"]={nil,"Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour "}c["80% increased Evasion Rating while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=80}},nil}c["Kill Enemies that have 20% or lower Life when Hit by your Skills"]={nil,"Kill Enemies that have 20% or lower Life when Hit by your Skills "}c["20% increased Attack Damage during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["15% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-15}},nil}c["Recover 75% of your maximum Life on use Recover 100% of your maximum Life on use"]={nil,"Recover 75% of your maximum Life on use Recover 100% of your maximum Life on use "}c["Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time"]={nil,"Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time "}c["10% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=10}},nil}c["+1 to Melee Strike Range with Claws"]={{[1]={flags=262148,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=262148,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["+72% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=72}},nil}c["With 1000 or more Strength 2% of Damage dealt by your Zombies is Leeched to you as Life"]={nil,"With 1000 or more Strength 2% of Damage dealt by your Zombies is Leeched to you as Life "}c["Adds 5 to 8 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=5},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=8}},nil}c["Minions have 8% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}}}},nil}c["60% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["10% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["You gain a Power Charge on use"]={nil,"You gain a Power Charge on use "}c["30% increased Damage if you have Consumed a corpse Recently"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike cannot choose Lightning"]={nil,"With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike cannot choose Lightning "}c["15% increased Area of Effect if you've Stunned an Enemy with a Two Handed Melee Weapon Recently"]={{[1]={flags=256,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}}," if you've Stunned an Enemy with a Two Handed Weapon Recently "}c["+190 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=190}},nil}c["+2% to maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=2}},nil}c["+300 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=300}},nil}c["Your Cold Damage can Poison"]={{[1]={flags=0,keywordFlags=0,name="ColdCanPoison",type="FLAG",value=true}},nil}c["+1% to Critical Strike Multiplier per 1% Block Chance"]={{[1]={[1]={div=1,stat="BlockChance",type="PerStat"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=1}},nil}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius."]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. "}c["125% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=125}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["6% increased Fire Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=6}},nil}c["20% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=20}},nil}c["110% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=110}},nil}c["30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes"]={{}," Attack, Cast and Movements Speed while you do not have Iron Reflexes "}c["80% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=80}},nil}c["You cannot be Shocked for 1 second after being Shocked You cannot be Shocked for 3 seconds after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked You cannot be Shocked for 3 seconds after being Shocked "}c["Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem"]={nil,"Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem "}c["Minions gain 18% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=18}}}},nil}c["Adds 19 to 29 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=19},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=29}},nil}c["70% increased Minion Damage if you have Hit Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=70}}}},nil}c["230% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=230}},nil}c["With at least 40 Dexterity in Radius, Barrage fires an additional 2 projectiles simultaneously on the first and final attacks With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks"]={nil,"With at least 40 Dexterity in Radius, Barrage fires an additional 2 projectiles simultaneously on the first and final attacks With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks "}c["Channelling Skills have 3% increased Attack Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["5% increased Experience gain 3% increased Experience gain"]={{}," Experience gain 3% increased Experience gain "}c["5% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}c["Vaal Skills used during effect do not apply Soul Gain Prevention Gains no Charges During effect of any Soul Ripper Flask"]={nil,"Vaal Skills used during effect do not apply Soul Gain Prevention Gains no Charges During effect of any Soul Ripper Flask "}c["Trigger Socketed Spells when you Focus 140% increased Duration of Ailments you inflict while Focussed"]={nil,"Trigger Socketed Spells when you Focus 140% increased Duration of Ailments you inflict while Focussed "}c["5% chance to grant Onslaught to nearby Enemies on Kill 5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill 5% chance to gain Unholy Might for 3 seconds on Kill "}c["2% increased Minion Attack Speed per 50 Dexterity"]={{[1]={[1]={div=50,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=2}}}},nil}c["+45 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=45}},nil}c["Passives in radius are Conquered by the Vaal Historic"]={nil,"Passives in radius are Conquered by the Vaal Historic "}c["21% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=21}},nil}c["Ancestor Totems have 100% increased Activation range"]={nil,"Ancestor Totems have 100% increased Activation range "}c["Recover 3% of Mana when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Mana when you Kill an Enemy during Flask Effect "}c["10% of Physical Damage taken as Cold Damage while affected by Purity of Ice"]={{[1]={[1]={type="Condition",var="AffectedByPurityofIce"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=10}},nil}c["24% increased Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["+225% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=225}},nil}c["You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour 20% reduced Effect of Curses on you"]={nil,"You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour 20% reduced Effect of Curses on you "}c["Recover 5% of Maximum Life on Kill Enemies you hit are destroyed on Kill"]={nil,"Recover 5% of Maximum Life on Kill Enemies you hit are destroyed on Kill "}c["12% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["8% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-8}},nil}c["25% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=25}},nil}c["5% increased Projectile Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=5}},nil}c["50% chance to Cause Poison on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=50}},nil}c["15% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-15}},nil}c["35% chance to avoid being Stunned for each Herald Skill affecting you"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=35}}," for each Herald Skill affecting you "}c["Your Golems are aggressive Primordial"]={nil,"Your Golems are aggressive Primordial "}c["Attacks have 10% chance to Maim on Hit"]={{}," to Maim on Hit "}c["+1% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["15% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["56% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=56}},nil}c["80% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["+10 Life Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["Unaffected by Enfeeble while affected by Grace"]={nil,"Unaffected by Enfeeble while affected by Grace "}c["Gain 5% of Cold Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageGainAsChaos",type="BASE",value=5}},nil}c["3% increased Damage per Crab Barrier"]={{[1]={[1]={type="Multiplier",var="CrabBarrier"},flags=0,keywordFlags=0,name="Damage",type="INC",value=3}},nil}c["+200 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=200}},nil}c["+15 Energy Shield gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=15}}," gained on Kill "}c["50% less Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="MORE",value=-50}},nil}c["Enemies Killed with Wand Hits have a 10% chance to Explode, dealing a quarter of their Life as Chaos Damage Gain 10% of Wand Physical Damage as Extra Chaos Damage"]={nil,"Enemies Killed with Wand Hits have a 10% chance to Explode, dealing a quarter of their Life as Chaos Damage Gain 10% of Wand Physical Damage as Extra Chaos Damage "}c["-25 Physical Damage taken from Projectile Attacks +5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-25}}," from Projectile Attacks +5% Chance to Block "}c["Minions Poison Enemies on Hit"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}}}},nil}c["Grants level 20 Summon Bestial Snake Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonBeastialSnake"}}},nil}c["24% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["10% chance to double Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=10}}," to double "}c["10% increased Damage taken from Ghosts"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}," from Ghosts "}c["Curse Skills have 5% reduced Mana Reservation"]={{[1]={[1]={skillType=32,type="SkillType"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-5}},nil}c["30% reduced Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=-30}},nil}c["25% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=25}},nil}c["With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield Corrupted"]={nil,"With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield Corrupted "}c["6% increased Accuracy Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["+6% Chance to Block Spell Damage while at Maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil}c["100% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=100}},nil}c["2% increased Minion Movement Speed per 50 Dexterity"]={{[1]={[1]={div=50,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}}}},nil}c["100% increased Vaal Skill Critical Strike Chance"]={{[1]={flags=0,keywordFlags=256,name="CritChance",type="INC",value=100}},nil}c["+5% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["10% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=10}},nil}c["Adds 250 to 280 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=250},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=280}},nil}c["10% increased Movement Speed while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["+185 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=185}},nil}c["20% increased Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["+200 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["50% increased Mana Regeneration while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=50}},nil}c["8% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["You and nearby Allies deal 30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}}},nil}c["+23 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=23},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=23}},nil}c["25% increased Critical Strike Chance with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["-35 Chaos Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="BASE",value=-35}},nil}c["25% increased Cold Damage if you have used a Fire Skill Recently"]={{[1]={[1]={type="Condition",var="UsedFireSkillRecently"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=25}},nil}c["100% of Physical Damage from Hits with this Weapon is Converted to a random Element"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=100}}," from Hits is Converted to a random Element "}c["During Flask Effect, Damage Penetrates 20% Resistance of each Element for which your"]={{},", Damage Resistance of each Element for which your "}c["20% increased Fire Damage taken"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=20}},nil}c["30% increased Fire Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="FireDamage",type="INC",value=30}},nil}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=100}}," to Taunt on Hit 6% reduced "}c["25% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["500% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=500}},nil}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies"]={{}," to Maim on Hit "}c["24% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=24}},nil}c["Grants Level 20 Aspect of the Avian Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="BirdAspect"}}},nil}c["You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned"]={nil,"You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned "}c["125% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=125}},nil}c["Nearby Enemies have 50% increased Fire and Cold Resistances"]={nil,"Nearby Enemies have 50% increased Fire and Cold Resistances "}c["220% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=220}},nil}c["8% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["Gain 50 Life when you Stun an Enemy 20% less Minimum Physical Attack Damage"]={nil,"Gain 50 Life when you Stun an Enemy 20% less Minimum Physical Attack Damage "}c["12% increased Lightning Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=12}},nil}c["Golems have 22% increased Maximum Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=22}}}},nil}c["Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being thrown"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being thrown "}c["10% increased Impale Effect 10% chance to Impale Enemies on Hit with Axes or Swords 15% increased Physical Damage with Axes or Swords"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=4,keywordFlags=0,name="FlaskEffect",type="INC",value=10}}," Impale 10% chance to Impale Enemies on Hit 15% increased Physical Damage with Axes or Swords "}c["10% chance to gain an Endurance Charge when you are Hit 30% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=10}}," to gain an Endurance Charge when you are Hit 30% increased "}c["20% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=20}},nil}c["6% increased Elemental Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=6}},nil}c["Passives in radius are Conquered by the Karui"]={nil,"Passives in radius are Conquered by the Karui "}c["Non-Banner Aura Skills reserve no Mana"]={nil,"Non-Banner Aura Skills reserve no Mana "}c["Removes Burning on use"]={nil,"Removes Burning on use "}c["10% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["Attack skills can have 1 additional Totem Summoned at a time"]={{[1]={flags=0,keywordFlags=65536,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["+12% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=12}},nil}c["6 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=6}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit Nearby Enemies are Blinded"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit Nearby Enemies are Blinded "}c["13% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-13}},nil}c["15% increased Elemental Damage if you've Chilled an Enemy Recently"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=15}}," if you've Chilled an Enemy Recently "}c["0.4% of Energy Shield Regenerated per Second for"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=0.4}}," for "}c["0.9% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.9}},nil}c["Socketed Gems are Supported by level 6 Blind"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=6,skillId="SupportBlind"}}},nil}c["20% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=20}},nil}c["+14 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=14}},nil}c["Gain 300% of Weapon Physical Damage as Extra Damage of an Element 20% increased Area of Effect for Attacks"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamage",type="BASE",value=300}}," as Extra Damage of an Element 20% increased Area of Effect for Attacks "}c["Grants level 5 Frostbite Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=5,skillId="Frostbite"}}},nil}c["+43% to Chaos Resistance while affected by Herald of Agony"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAgony"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=43}},nil}c["35% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=35}},nil}c["16% increased Elemental Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="ElementalDamage",type="INC",value=16}},nil}c["45% reduced Mana Cost of Raise Spectre"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-45}},nil}c["Has 1 Abyssal Socket"]={{[1]={flags=0,keywordFlags=0,name="AbyssalSocketCount",type="BASE",value=1}},nil}c["1% chance to Dodge Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=1}},nil}c["+15% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}},nil}c["20% increased Damage with Hits and Ailments against Enemies affected by Ailments"]={{[1]={flags=0,keywordFlags=786432,name="Damage",type="INC",value=20}}," against Enemies affected by Ailments "}c["+1000 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=1000}},nil}c["18% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=18}},nil}c["Socketed Gems are supported by level 2 Chance to Flee"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=2,skillId="SupportChanceToFlee"}}},nil}c["30% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=30}},nil}c["40% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["20% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-20}},nil}c["10% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["20% increased Maximum total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxEnergyShieldLeechRate",type="INC",value=20}},nil}c["65% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=65}},nil}c["10% reduced Frenzy Charge Duration per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-10}},nil}c["Minions Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second"]={nil,"Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second "}c["+250 to Armour while affected by a Guard Skill Buff"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=250}}," while affected by a Guard Skill Buff "}c["300% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=300}},nil}c["50% less Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="MORE",value=-50}},nil}c["+15% to Critical Strike Multiplier with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["100 Energy Shield Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=100}},nil}c["Minions have 10% chance to gain Onslaught for 4 seconds on Kill"]={{}," to gain Onslaught for 4 seconds on Kill "}c["25% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=25}}," when on Low Mana "}c["Gain Unholy Might for 3 seconds on Rampage Rampage"]={nil,"Gain Unholy Might for 3 seconds on Rampage Rampage "}c["+20 Energy Shield gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}}," gained on Kill "}c["Your Energy Shield starts at zero You cannot Recharge Energy Shield"]={nil,"Your Energy Shield starts at zero You cannot Recharge Energy Shield "}c["55% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=55}},nil}c["Modifiers to Critical Strike Multiplier also apply to Damage over Time Multiplier for Ailments from Critical Strikes at 50% of their value"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplierAppliesToDegen",type="BASE",value=50}},nil}c["8% increased Accuracy Rating with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["25% chance to Scorch Enemies"]={{}," to Scorch Enemies "}c["You can only deal Damage with this Weapon and Ignite"]={nil,"You can only deal Damage with this Weapon and Ignite "}c["Curses in this item are reflected back to you You cannot be Chilled for 3 seconds after being Chilled"]={nil,"Curses in this item are reflected back to you You cannot be Chilled for 3 seconds after being Chilled "}c["You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving"]={nil,"You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving "}c["35% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["Flasks do not apply to You"]={{[1]={flags=0,keywordFlags=0,name="FlasksDoNotApplyToPlayer",type="FLAG",value=true}},nil}c["30% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=30}},nil}c["Golems Deal 40% less Damage"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-40}}}},nil}c["5% chance to grant Onslaught to nearby Enemies on Kill"]={{}," to grant Onslaught to nearby Enemies on Kill "}c["Non-Banner, Non-Mine Aura Skills reserve no Mana"]={nil,"Non-Banner, Non-Mine Aura Skills reserve no Mana "}c["12% of Physical Damage taken as Cold Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=12}},nil}c["24% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=24}},nil}c["18% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["70% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=70}},nil}c["10% reduced Reflected Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-10}}," Reflected "}c["20% reduced Reflected Physical Damage taken 4% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected 4% chance to deal Double Damage "}c["+330 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=330}},nil}c["40% increased Critical Strike Chance with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["200% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=200}},nil}c["30% increased Fire Damage if you have used a Cold Skill Recently"]={{[1]={[1]={type="Condition",var="UsedColdSkillRecently"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=30}},nil}c["105% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=105}},nil}c["80% increased Critical Strike Chance with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["Gain 75% increased Elemental Damage for 5 seconds"]={{[1]={[1]={type="Condition",var="PendulumOfDestructionElementalDamage"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=75}},nil}c["15% increased Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=15}},nil}c["+20 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["Modifiers to Claw Critical Strike Chance also apply to Unarmed Attack Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="ClawCritChanceAppliesToUnarmed",type="FLAG",value=true}},nil}c["Socketed Golem Gems grant Onslaught for 10 seconds on Summon"]={nil,"Socketed Golem Gems grant Onslaught for 10 seconds on Summon "}c["Gain Her Embrace for 3 seconds when you Ignite an Enemy"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainHerEmbrace",type="FLAG",value=true}},nil}c["You gain an Endurance Charge on Kill You gain Onslaught for 1 second per Endurance Charge when Hit"]={nil,"You gain an Endurance Charge on Kill You gain Onslaught for 1 second per Endurance Charge when Hit "}c["+0.1% to Critical Strike Chance per Poison affecting Enemy, up to +2.0%"]={{[1]={[1]={actor="enemy",limit=2,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.1}},nil}c["90% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=90}},nil}c["115% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=115}},nil}c["8% increased Maximum Energy Shield for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=8}},nil}c["Minions Regenerate 1% Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}}}},nil}c["40% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=40}},nil}c["+1 to Level of Active Socketed Skill Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="active_skill",value=1}}},nil}c["Adds 23 to 39 Cold Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=23},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=39}},nil}c["+65 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=65}},nil}c["100% increased Burning Damage if you've Ignited an Enemy Recently"]={{[1]={[1]={type="Condition",var="IgnitedEnemyRecently"},flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=100}},nil}c["Minions deal 6% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=6}}}},nil}c["15% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["Adds 25 to 40 Cold Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=25},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=40}},nil}c["10% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=10}},nil}c["+1500 Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1500}},nil}c["10% of Damage taken Gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=10}}," Gained as Mana over 4 seconds when Hit "}c["Reflects 1 to 150 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers "}c["Reflects 1 to 250 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 250 Lightning Damage to Melee Attackers "}c["Recover 100% of your maximum Life on use 15% of maximum Life taken as Chaos Damage per second"]={nil,"Recover 100% of your maximum Life on use 15% of maximum Life taken as Chaos Damage per second "}c["Recover 3% of Life when you Kill an Enemy during Flask Effect Recover 3% of Mana when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Life when you Kill an Enemy during Flask Effect Recover 3% of Mana when you Kill an Enemy during Flask Effect "}c["Guard Skills have 15% increased Cooldown Recovery Speed"]={{[1]={[1]={type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}},nil}c["+20 Mana gained when you Block 40% increased Defences from Equipped Shield +5% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," gained when you Block 40% increased Defences +5% Chance to Block Attack Damage "}c["Adds 1 to 11 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=11}},nil}c["An additional Curse can be applied to you 20% increased Damage per Curse on you"]={nil,"An additional Curse can be applied to you 20% increased Damage per Curse on you "}c["50% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=50}},nil}c["If you've used a Skill Recently, you and nearby Allies have Tailwind"]={{[1]={[1]={type="Condition",var="UsedSkillRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Tailwind",type="FLAG",value=true}}}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second "}c["Left ring slot: Projectiles from Spells Fork Right ring slot: Projectiles from Spells Chain +1 times"]={nil,"Projectiles from Spells Fork Right ring slot: Projectiles from Spells Chain +1 times "}c["28% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=28}},nil}c["Can Allocate Passives from the Marauder's starting point"]={{},nil}c["Regenerate 100 Life per second if no Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="CorruptedItem"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["Socketed Gems are Supported by level 10 Added Cold Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportAddedColdDamage"}}},nil}c["+25% chance to be Ignited"]={{}," to be Ignited "}c["Recover 1% of Maximum Life when you Ignite an Enemy"]={nil,"Recover 1% of Maximum Life when you Ignite an Enemy "}c["Critical Strikes deal 50% increased Lightning Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=50}},nil}c["+1 to maximum number of Sentinels of Purity +5 to Maximum Virulence Minions deal 20% increased Damage while you are affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=1}}," maximum number of Sentinels of Purity +5 to Maximum Virulence Minions deal 20% increased while you are affected by a Herald "}c["Items and Gems have 50% increased Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="GlobalAttributeRequirements",type="INC",value=50}},nil}c["50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy "}c["20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy +1 to Maximum Frenzy Charges"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=20}}," to gain aCharge when you Hit a Rare or Unique Enemy +1 to "}c["0.6% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.6}},nil}c["30% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=30}},nil}c["24% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["15% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=15}},nil}c["Summoned Golems are Immune to Elemental Damage 20% increased Damage per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem"]={nil,"Summoned Golems are Immune to Elemental Damage 20% increased Damage per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem "}c["Raging Spirits have 150% increased Damage"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=150}}}},nil}c["200% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," with arrows that Fork "}c["20% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=20}},nil}c["Your Flasks grant 10% chance to Freeze during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10}},nil}c["90% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=90}},nil}c["30% chance to Cast Socketed Spells when"]={{}," to Cast Socketed s when "}c["30% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil}c["Your Offering Skills also affect you"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"},type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="buffNotPlayer",value=false}}}}},nil}c["Gain an Endurance Charge when you take a Critical Strike"]={nil,"Gain an Endurance Charge when you take a Critical Strike "}c["Adds 65 to 105 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=65},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=105}},nil}c["50% increased Stun Duration on you"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=50}}," on you "}c["5% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-5}},nil}c["30% increased Effect of Buffs granted by your Active Ancestor Totems"]={{[1]={[1]={skillNameList={[1]="Ancestral Warchief",[2]="Ancestral Protector"},type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=30}},nil}c["Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits"]={nil,"Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds Nearby Chilled Enemies deal 10% reduced Damage with Hits "}c["Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken You are Shocked during Flask effect"]={nil,"Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken You are Shocked during Flask effect "}c["Your Energy Shield starts at zero Cannot gain Energy Shield"]={nil,"Your Energy Shield starts at zero Cannot gain Energy Shield "}c["Trigger a Socketed Warcry Skill when you lose Endurance Charges +80 to maximum Life"]={nil,"Trigger a Socketed Warcry Skill when you lose Endurance Charges +80 to maximum Life "}c["20% to Fire Resistance"]={nil,"20% to Fire Resistance "}c["Gain a Frenzy Charge on Hit while Bleeding 15% increased Movement Speed while Bleeding"]={nil,"Gain a Frenzy Charge on Hit while Bleeding 15% increased Movement Speed while Bleeding "}c["Gain a Blitz Charge on Critical Strike +20 to Maximum Blitz Charges"]={nil,"Gain a Blitz Charge on Critical Strike +20 to Maximum Blitz Charges "}c["+3% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["100% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=100}},nil}c["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}c["50% increased Critical Strike Chance with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritChance",type="INC",value=50}},nil}c["Transfiguration of Body"]={{[1]={flags=0,keywordFlags=0,name="TransfigurationOfBody",type="FLAG",value=true}},nil}c["15% increased Cooldown Recovery Speed of Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="CooldownRecovery",type="INC",value=15}},nil}c["You can Cast an additional Brand 20% increased Damage with Brand Skills"]={nil,"You can Cast an additional Brand 20% increased Damage with Brand Skills "}c["+45% to Critical Strike Multiplier against Enemies that are affected by Elemental Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"}},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}},nil}c["Gain Onslaught for 2 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 2 second per Frenzy Charge on use "}c["Summoned Raging Spirits have 90% increased maximum Life"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=90}}}},nil}c["You gain 8% increased Area of Effect for each Mine"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=8}},"% increased for each "}c["+28 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=28},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=28}},nil}c["10% chance to gain Onslaught for 10 Seconds when you Hit a Rare"]={{}," to gain Onslaught for 10 Seconds when you Hit a Rare "}c["You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour"]={nil,"You take 20% reduced Extra Damage from Critical Strikes 30% increased Armour "}c["10% chance to Dodge Attacks while affected by Grace"]={{[1]={[1]={type="Condition",var="AffectedByGrace"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=10}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["18% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HavePhysicalGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[2]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveLightningGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[3]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveColdGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[4]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveFireGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}},[5]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveChaosGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}}},nil}c["88% increased Fire Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="FireDamage",type="INC",value=88}},nil}c["6% increased Accuracy Rating with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["You cannot have non-Golem Minions"]={nil,"You cannot have non-Golem Minions "}c["Elemental Hit deals 15% increased Damage"]={{[1]={[1]={skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Socketed Gems have Blood Magic"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="SkillBloodMagic",type="FLAG",value=true}},nil}c["Gain 18 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"]={{[1]={[1]={actor="enemy",threshold=1,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=0,name="EnergyShieldOnHit",type="BASE",value=18}},nil}c["225% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=225}},nil}c["30% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=30}},nil}c["5% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["35% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["220% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=220}},nil}c["Adds 1 to 70 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=70}},nil}c["8% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=8}},nil}c["17% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=17}},nil}c["3% additional Chance to Block while you have at least 5 Crab Barriers"]={{[1]={[1]={stat="CrabBarriers",threshold=5,type="StatThreshold"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["0.6% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.6}},nil}c["+25% chance to be Poisoned"]={{}," to be Poisoned "}c["2% increased Attack Critical Strike Chance per 200 Accuracy Rating"]={{[1]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=1,keywordFlags=0,name="CritChance",type="INC",value=2}},nil}c["Projectiles deal 10% more Damage for each remaining Chain"]={{[1]={[1]={stat="ChainRemaining",type="PerStat"},flags=1024,keywordFlags=0,name="Damage",type="MORE",value=10}},nil}c["Adds 98 to 140 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=140}},nil}c["14% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["You have Crimson Dance if you have dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Crimson Dance"}},nil}c["Minions have 5% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}}}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect "}c["Vaal Skills deal 100% increased Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=256,name="Damage",type="INC",value=100}},nil}c["12% increased Attack Speed with Daggers"]={{[1]={flags=524293,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["5% increased Attack Speed with One Handed Weapons"]={{[1]={flags=134217733,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["24% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 15%"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 15% "}c["Your Energy Shield starts at zero"]={nil,"Your Energy Shield starts at zero "}c["Attacks have Blood Magic"]={{[1]={flags=1,keywordFlags=0,name="SkillBloodMagic",type="FLAG",value=true}},nil}c["10% chance to gain an Endurance, Frenzy or Power Charge when any of your Traps is Triggered by an Enemy"]={{}," to gain an Endurance,or Power Charge when any of your s is Triggered by an Enemy "}c["50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},[2]={stat="PowerCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=50}}," to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}c["20% increased Damage with Hits against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=20}},nil}c["+18% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}},nil}c["Attacks with this Weapon Maim on hit"]={nil,"Maim on hit "}c["100% increased Melee Physical Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=256,keywordFlags=262144,name="PhysicalDamage",type="INC",value=100}},nil}c["45% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=45}},nil}c["Life Leeched per Second is doubled. Maximum total Recovery per second from Life Leech is doubled."]={nil,"Life Leeched per Second is doubled. Maximum total Recovery per second from Life Leech is doubled. "}c["+200 to Accuracy Rating with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["25% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["Enemies Taunted by you deal 10% less Damage with Hits and Ailments against other targets"]={nil,"Enemies Taunted by you deal 10% less Damage with Hits and Ailments against other targets "}c["50% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["20% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=20}},nil}c["12% increased Minion Damage per Spectre you own Regenerate 0.6% of Life per second for each Raised Zombie"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}}," Minion per you own Regenerate 0.6% of Life per second for each Raised Zombie "}c["Adds 10 to 14 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=14}},nil}c["Minions have 60% chance to Poison Enemies on Hit"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=60}}}},nil}c["18% increased Physical Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["90% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=90}},nil}c["40% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=40}},nil}c["Adds 15 to 33 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=33}},nil}c["Knockback direction is reversed Socketed Gems are Supported by level 10 Knockback"]={nil,"Knockback direction is reversed Socketed Gems are Supported by level 10 Knockback "}c["50% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=50}},nil}c["Adds 20 to 50 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=50}},nil}c["Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground"]={nil,"Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground "}c["18% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=18}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}}," per Summoned +1 to maximum number of Golems "}c["+10% to Global Critical Strike Multiplier per Green Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["+2 to Maximum Life per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=2}},nil}c["Unaffected by Conductivity while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning "}c["13% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=13}},nil}c["20% chance to gain a Endurance Charge on Kill 4% of Life Regenerated per second"]={{}," "}c["20% chance for your Flasks to not consume Charges"]={{}," for your Flasks to not consume Charges "}c["20% reduced Reflected Physical Damage taken 4% chance to deal Double Damage +20 to Strength 20% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected 4% chance to deal Double Damage +20 to Strength 20% increased Physical Damage "}c["15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=7.5}},nil}c["Gain 50 Life when you Stun an Enemy"]={nil,"Gain 50 Life when you Stun an Enemy "}c["40% reduced Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=-40}},nil}c["15% increased Movement Speed while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["+2% to maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=2}},nil}c["+2% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["Share Endurance, Frenzy and Power Charges with nearby party members"]={nil,"Share Endurance, Frenzy and Power Charges with nearby party members "}c["+200 to Accuracy Rating with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["Arrows that Pierce cause Bleeding"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=1025,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["Adds 51 to 59 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=51},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=59}},nil}c["+360 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=360}},nil}c["20% reduced Reflected Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-20}}," Reflected "}c["Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=327680,name="PhysicalMin",type="BASE",value=10},[2]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=327680,name="PhysicalMax",type="BASE",value=15}},nil}c["and nearby Allies have +1000 to Armour"]={nil,"and nearby Allies have +1000 to Armour "}c["24% increased Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["You have Crimson Dance while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Crimson Dance"}},nil}c["Manifested Dancing Dervish also manifests a copy of Dancing Dervish"]={nil,"Manifested Dancing Dervish also manifests a copy of Dancing Dervish "}c["10% increased Damage for each type of Abyssal Jewel affecting you"]={{[1]={[1]={type="Multiplier",var="AbyssJewelType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["300% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=300}},nil}c["10% chance to gain a Frenzy Charge when you Block Attack Damage"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=1,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain aCharge when you Block "}c["10% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["Adds 14 to 22 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=22}},nil}c["8% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Bleeding you inflict is Reflected to you"]={nil,"Bleeding you inflict is Reflected to you "}c["Removes 20% of your maximum Energy Shield on use You take 10% of your maximum Life as Chaos Damage on use"]={nil,"Removes 20% of your maximum Energy Shield on use You take 10% of your maximum Life as Chaos Damage on use "}c["Minions created Recently cannot be Damaged"]={nil,"created Recently cannot be Damaged "}c["60% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=60}},nil}c["30% reduced Spell Damage taken from Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=-30}},nil}c["Reserves 30% of Life"]={{[1]={flags=0,keywordFlags=0,name="ExtraLifeReserved",type="BASE",value=30}},nil}c["30% increased Damage against Rare monsters"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," against Rare monsters "}c["28% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=28}},nil}c["20% chance to Avoid Elemental Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=20},[2]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=20},[3]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=20},[4]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=20}},nil}c["6% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=6}},nil}c["Permanently Intimidate Enemies on Block"]={nil,"Permanently Intimidate Enemies on Block "}c["Lose all Endurance Charges when Rampage ends"]={nil,"Lose all Endurance Charges when Rampage ends "}c["Uses both hand slots Adds 6 to 66 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=66}},"Uses both hand slots "}c["Adds 118 to 255 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=118},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=255}},nil}c["8% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-8}},nil}c["+23 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=23}},nil}c["16% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=16}},nil}c["30% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=30}},nil}c["+30% to Critical Strike Multiplier with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["0.5% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=0.5}},nil}c["Recover 3% of Life when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Life when you Kill an Enemy during Flask Effect "}c["Every 5 seconds, 20% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, 20% of Maximum Life Regenerated over one second "}c["Every 5 seconds, 30% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, 30% of Maximum Life Regenerated over one second "}c["50% less Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="MORE",value=-50}},nil}c["Reflects 1 to 220 Lightning Damage to Attackers on Block"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block "}c["30% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=30}},nil}c["Nearby Enemies have -10% to all Resistances"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-10}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-10}}}},nil}c["50% increased Flask Charges gained while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=50}},nil}c["Adds 15 to 40 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=40}},nil}c["Minions deal 13% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=13}}}},nil}c["10% chance to gain a Power Charge on Non-Critical Strike with a Claw or Dagger"]={{}," to gain a Power Charge on Non-Critical Strike with a Claw or Dagger "}c["4% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["15% increased Minion Duration"]={{[1]={[1]={skillType=21,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}c["For each nearby corpse, you and nearby Allies Regenerate 0.2% of Energy Shield per second, up to 2.0% per second"]={{[1]={[1]={limit=2,limitTotal=true,type="Multiplier",var="NearbyCorpse"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=0.2}}}},nil}c["25% increased Attack Speed if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["10% chance to gain a Power Charge when you Shock a Chilled Enemy 25% increased Cold Damage with Hits against Shocked Enemies 25% increased Lightning Damage with Hits against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},[2]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdDamage",type="BASE",value=10}}," to gain a Power Charge when you Shock a Chilled Enemy 25% increased 25% increased Lightning Damage with Hits "}c["5% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=5}},nil}c["20% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=20}},nil}c["With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."]={nil,"With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy. "}c["22% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=22}},nil}c["Grants Level 30 Smite Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="Smite"}}},nil}c["6% increased Attack Damage for each Map Item Modifier affecting the Area 3% increased Attack Speed for each Map Item Modifier affecting the Area"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=6}}," for each Map Item Modifier affecting the 3% increased Attack Speed for each Map Item Modifier affecting the Area "}c["63% increased Duration of Poisons you inflict during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=63}},nil}c["+2% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["25% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=25}},nil}c["You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner"]={nil,"You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner "}c["Nearby Enemies have 10% reduced Stun and Block Recovery Nearby Enemies have an additional 2% chance to receive a Critical Strike"]={nil,"Nearby Enemies have 10% reduced Stun and Block Recovery Nearby Enemies have an additional 2% chance to receive a Critical Strike "}c["30% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}},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["You gain 8% increased Damage for each Trap 20% Chance for Traps to Trigger an additional time"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="BASE",value=8}},"% increased for each 20% Chance for Traps to Trigger an additional time "}c["Attack Skills deal 18% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=18}},nil}c["20% increased Damage with Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=20}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["30% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["15% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=15}},nil}c["+150% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=150}},nil}c["+212 Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=212}},nil}c["4% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-4}},nil}c["With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova 15% reduced Spark Duration"]={nil,"With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova 15% reduced Spark Duration "}c["80% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["Projectile Damage increased by 50% of Arrow Pierce Chance"]={nil,"Projectile Damage increased by 50% of Arrow Pierce Chance "}c["20% chance to gain an Endurance Charge when Hit while Channelling"]={{}," to gain an Endurance Charge when Hit "}c["Gain a Power Charge after Spending a total of 200 Mana"]={nil,"Gain a Power Charge after Spending a total of 200 Mana "}c["50% increased Stun Duration on you 4% increased Melee Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=256,keywordFlags=0,name="EnemyStunDuration",type="INC",value=50}}," on you 4% increased Damage "}c["30% chance to Cast a Socketed Lightning Spell on Hit"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,name="SupportUniqueMjolnerLightningSpellsCastOnHit"}}},nil}c["50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"]={{}," Rarity of Items Dropped by Enemies killed with a Critical Strike "}c["+7 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=7}},nil}c["their Maximum Life as Physical Damage 25% reduced Bleed duration"]={nil,"their Maximum Life as Physical Damage 25% reduced Bleed duration "}c["+150 to Accuracy Rating with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Accuracy",type="BASE",value=150}},nil}c["+100% to Cold Resistance when Socketed with a Green Gem"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=100}}," when Socketed with a Green Gem "}c["10% chance to Impale Enemies on Hit with Attacks"]={{}," to Impale Enemies on Hit "}c["2% of Life Regenerated per Second if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Adds 190 to 320 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=190},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=320}},nil}c["20% of Overkill Damage is Leeched as Life Cannot be Stunned while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill Cannot be Stunned "}c["+3% to maximum Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=3}}," maximum "}c["Projectiles Pierce while Phasing Projectiles Pierce 5 additional Targets while you have Phasing"]={nil,"Projectiles Pierce while Phasing Projectiles Pierce 5 additional Targets while you have Phasing "}c["30% increased Elemental Damage with Weapons while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["10% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=10}},nil}c["Your Aura Skills are Disabled"]={nil,"Your Aura Skills are Disabled "}c["100% increased Evasion Rating while you have Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil}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["15% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Carved to glorify 10000 new faithful converted by High Templar Venarius Passives in radius are Conquered by the Templars"]={nil,"Carved to glorify 10000 new faithful converted by High Templar Venarius Passives in radius are Conquered by the Templars "}c["You can inflict an additional Ignite on an Enemy"]={nil,"You can inflict an additional Ignite on an Enemy "}c["12% increased Cast Speed with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["25% increased Elusive Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=25}}," Elusive "}c["Immune to Burning Ground, Shocked Ground and Chilled Ground"]={nil,"Immune to Burning Ground, Shocked Ground and Chilled Ground "}c["Fortify Buffs you create instead grant 30% more Evasion Rating"]={nil,"Fortify Buffs you create instead grant 30% more Evasion Rating "}c["2% additional Chance to Block Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["Clarity Reserves no Mana"]={{[1]={[1]={skillId="Clarity",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["25% increased Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Can have up to 2 additional Remote Mines placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveMineLimit",type="BASE",value=2}},nil}c["140% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=140}},nil}c["10% Chance to Cause Monster to Flee on Block 1% of Damage Leeched as Life against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=262144,name="Damage",type="BASE",value=10}}," to Cause Monster to Flee on Block 1% of Leeched as Life "}c["Regenerate 1% of Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["10% increased Cast Speed while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["6% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["Spell Skills deal no Damage Your Spells are disabled"]={nil,"no Damage Your Spells are disabled "}c["Regenerate 2% of Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=2}},nil}c["+10% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=10}},nil}c["Temporal Chains has 30% reduced Effect on You"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-30}},nil}c["175% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=175}},nil}c["Recover 250 Life when you Block"]={nil,"Recover 250 Life when you Block "}c["400% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=400}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["Determination Reserves no Mana"]={{[1]={[1]={skillId="Determination",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["5% increased Impale Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=5}}," Impale "}c["Socketed Gems have 25% reduced Elemental Equilibrium effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-25}}}}," Elemental Equilibrium "}c["nearby Enemies when Hit"]={nil,"nearby Enemies when Hit "}c["12% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["240% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=240}},nil}c["Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity"]={{[1]={[1]={div=25,stat="Dex",type="PerStat"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={[1]={div=25,stat="Dex",type="PerStat"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=3}},nil}c["+10% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=10}},nil}c["Cannot be Frozen or Chilled if you've used a Fire Skill Recently"]={nil,"Cannot be Frozen or Chilled if you've used a Fire Skill Recently "}c["Hits ignore Enemy Monster Fire Resistance while you are Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="IgnoreFireResistance",type="FLAG",value=true}},nil}c["+300 Armour per active Totem"]={{[1]={flags=0,keywordFlags=16384,name="Armour",type="BASE",value=300}}," per active "}c["Adds 110 to 165 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=110},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=165}},nil}c["7 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=7}},nil}c["15% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["40% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=40}},nil}c["1% increased Area of Effect per 50 Unreserved Maximum Mana, up to 100%"]={{[1]={[1]={div=50,limit=100,limitTotal=true,stat="ManaUnreserved",type="PerStat"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=1}},nil}c["15% increased Effect of Impales inflicted by Hits that also inflict Bleeding"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=15}}," of Impales inflicted by Hits that also inflict Bleeding "}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=25}}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced "}c["23% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=23}},nil}c["Golems regenerate 2% of their Maximum Life per second"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}}}},nil}c["18% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["Shared Suffering"]={nil,"Shared Suffering "}c["3% chance to Dodge Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=3}},nil}c["Deal no Non-Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="DealNoChaos",type="FLAG",value=true}},nil}c["Cast Socketed Minion Spells on Kill with this Weapon"]={nil,"Cast Socketed Minion Spells on Kill with this Weapon "}c["8% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=8}},nil}c["30% reduced Flask Charges gained while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=-30}},nil}c["5% increased Attack and Cast Speed while Leeching Energy Shield"]={{[1]={[1]={type="Condition",var="LeechingEnergyShield"},flags=0,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["13% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=13}},nil}c["1% of Fire Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=1}},nil}c["+10 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=10}},nil}c["55% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=55}},nil}c["100% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=100}},nil}c["1% increased Movement Speed per Summoned Totem"]={{[1]={[1]={stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}},nil}c["30% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["15% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Axe or Sword Attacks deal 15% increased Damage with Ailments"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=2048,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["14% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=14}},nil}c["25% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["10% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=10}},nil}c["+60% to Critical Strike Multiplier for Spells if you haven't Killed Recently"]={{[1]={[1]={neg=true,type="Condition",var="KilledRecently"},flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=60}},nil}c["You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage Banner Skills Reserve no Mana"]={nil,"You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage Banner Skills Reserve no Mana "}c["40% increased Attack Damage against Maimed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Maimed"},flags=1,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["1% of Energy Shield regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["8% increased Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["18% reduced Spark Duration"]={{[1]={[1]={skillName="Spark",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-18}},nil}c["Energy Shield Recharge is not interrupted by Damage if"]={nil,"Energy Shield Recharge is not interrupted by Damage if "}c["40% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=40}},nil}c["50% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=50}},nil}c["10% chance to Impale Enemies on Hit with Axes or Swords"]={{}," to Impale Enemies on Hit "}c["23% increased Damage for each Magic Item Equipped"]={{[1]={[1]={type="Multiplier",var="MagicItem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=23}},nil}c["15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"]={{}," to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons "}c["1% additional Physical Damage Reduction per Minion, up to 10% 2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20% Minions have 20% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Minion, up to 10% 2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20% Minions have 20% more Maximum Life "}c["25% reduced Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-25}},nil}c["5% chance to grant Unholy Might to nearby Enemies on Kill"]={{}," to grant Unholy Might to nearby Enemies on Kill "}c["Minions Regenerate of 1.5% Life per second"]={nil,"Regenerate of 1.5% Life per second "}c["6% increased Accuracy Rating with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["10% reduced Chance to Block Attacks and Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=-10},[2]={flags=0,keywordFlags=0,name="SpellBlockChance",type="INC",value=-10}},nil}c["10% increased Damage per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}," per Summoned "}c["+1 to Maximum Frenzy Charge"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1}},nil}c["Spell Skills have +10% to Damage over Time Multiplier for Poison"]={{[1]={flags=2,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=10}},nil}c["Damage Penetrates 10% Cold Resistance against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdPenetration",type="BASE",value=10}},nil}c["When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge "}c["0.8% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.8}},nil}c["135% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=135}},nil}c["Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits 15% chance to Impale Enemies on Hit with Attacks"]={nil,"Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits 15% chance to Impale Enemies on Hit with Attacks "}c["10% chance of Arrows Piercing"]={{}," of Arrows Piercing "}c["Socketed Gems are Supported by level 1 Spell Echo"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportMulticast"}}},nil}c["Adds 3 to 6 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=3},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=6}},nil}c["50% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["10% chance for Energy Shield Recharge to start when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}}," for Recharge to start when you use a Skill "}c["16% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=16}},nil}c["20% increased Effect of Chill you inflict with Critical Strikes 20% increased Effect of Shock you inflict with Critical Strikes 40% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20}}," you inflict with Critical Strikes 20% increased Effect of Shock you inflict with Critical Strikes 40% increased Critical Strike Chance "}c["-5% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=-5}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["12% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=12}},nil}c["+30% to Critical Strike Multiplier with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritMultiplier",type="BASE",value=30}},nil}c["1% Life Regenerated per Second for each of your Mines Detonated Recently, up to 20%"]={{[1]={[1]={limit=20,limitTotal=true,type="Multiplier",var="MineDetonatedRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["16% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["Mortal Conviction"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Mortal Conviction"}},nil}c["20% increased Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=20}},nil}c["your maximum number of Crab Barriers"]={nil,"your maximum number of Crab Barriers "}c["+1% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=1}},nil}c["Adds 1 to 18 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=18}},nil}c["30% reduced Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=-30}},nil}c["25% increased Melee Critical Strike Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["For each nearby corpse, you and nearby Allies Regenerate 5 Mana per second, up to 50 per second"]={{[1]={[1]={limit=50,limitTotal=true,type="Multiplier",var="NearbyCorpse"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=5}}}},nil}c["+8 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,keywordFlags=0,name="LifeOnHit",type="BASE",value=8}},nil}c["Socketed Golem Skills have 25% chance to Taunt on Hit Socketed Gems are Supported by level 17 Increased Minion Damage"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="BASE",value=25}}}}," to Taunt on Hit Socketed Gems are Supported by level 17 Increased Minion "}c["16% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["35% chance to avoid being Stunned for each Herald Skill affecting you Mana Reservation of Herald Skills is always 45%"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=35}}," for each Herald Skill affecting you Mana Reservation is always 45% "}c["Adds 38 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["Adds 12 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["Adds 13 to 30 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=30}},nil}c["15% of Damage Taken from Hits is Leeched as Life during Flask Effect 30% increased Rarity of Items found during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="DamageTakenLifeLeech",type="BASE",value=15}}," from Hits 30% increased Rarity of Items found "}c["5% increased Evasion Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=5}},nil}c["40% reduced Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=-40}},nil}c["-40 Physical Damage taken when hit by Animals"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenWhenHit",type="BASE",value=-40}}," by Animals "}c["You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground"]={nil,"You have Consecrated Ground around you while stationary 15 Mana Regenerated per Second while on Consecrated Ground "}c["Enemies affected by your Spider's Webs deal 10% reduced Damage"]={nil,"Enemies affected by your Spider's Webs deal 10% reduced Damage "}c["70% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=70}},nil}c["+20 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=20}},nil}c["25% chance to gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance Gain a Challenger Charge when you Kill an Enemy while in Sand Stance +10 to Maximum Challenger Charges"]={{[1]={flags=0,keywordFlags=0,name="ChallengerChargesMax",type="BASE",value=25}}," to gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance Gain a Challenger Charge when you Kill an Enemy while in Sand Stance +10 to "}c["18% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=18}},nil}c["Arrows Pierce all Targets"]={{[1]={flags=1,keywordFlags=0,name="PierceAllTargets",type="FLAG",value=true}},nil}c["Herald Skills have 25% increased Area of Effect"]={nil,"Herald Skills have 25% increased Area of Effect "}c["130% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=130}},nil}c["Adds 20 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["Adds 45 to 90 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=90}},nil}c["15% increased Movement Speed while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["10% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["5% reduced Area Damage taken from Hits +2 to Melee Strike Range"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits +2 to Melee Strike Range "}c["You are Immune to Silence"]={nil,"You are Immune to Silence "}c["30% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=30}},nil}c["Socketed Gems are Supported by level 1 Increased Area of Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportIncreasedAreaOfEffect"}}},nil}c["Gain 10% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=10}},nil}c["Cannot gain Energy Shield"]={nil,"Cannot gain Energy Shield "}c["10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web"]={{}," to gain a Power Charge on hitting an Enemy affected by a Spider's Web "}c["22% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=22}},nil}c["+200 to Accuracy Rating with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["22% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=22}},nil}c["Life Leech effects are not removed at Full Life 50% increased Attack Damage while Leeching 6% reduced Damage taken while Leeching"]={nil,"Life Leech effects are not removed at Full Life 50% increased Attack Damage while Leeching 6% reduced Damage taken while Leeching "}c["0.8% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.8}},nil}c["50% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=50}},nil}c["275% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=275}},nil}c["15% increased Movement Speed while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Culling Strike Hits can't be Evaded"]={nil,"Culling Strike Hits can't be Evaded "}c["6% reduced Damage taken while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-6}},nil}c["+1000 to Spectre maximum Life"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=1000}}}},nil}c["Attacks with Axes or Swords grant 1 Rage on Hit, no more than once every second"]={nil,"Attacks with Axes or Swords grant 1 Rage on Hit, no more than once every second "}c["Cold Skills have a 25% chance to apply Cold Exposure on Hit"]={nil,"a 25% chance to apply Cold Exposure on Hit "}c["1% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=1}},nil}c["20% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["4% reduced Enemy Stun Threshold with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-4}},nil}c["25% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-25}},nil}c["0.4% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.4}},nil}c["60% increased Critical Strike Chance with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["12% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Attacks with this Weapon deal 80-120 added Chaos Damage against"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=80},[2]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=120}}," against "}c["Regenerate 3.00% of Energy Shield per second while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=3}},nil}c["When you create a Banner, it gains 20% of the Stages of your placed Banner"]={nil,"When you create a Banner, it gains 20% of the Stages of your placed Banner "}c["25% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["+30 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=30}},nil}c["15% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=15}},nil}c["20% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["With at least 40 Strength in Radius, Ground Slam has a 35% increased angle"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 35% increased angle "}c["Attack Skills deal 26% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=26}},nil}c["Trigger Level 15 Feast of Flesh every 5 seconds"]={nil,nil}c["Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="BleedChance",type="BASE",value=25}},nil}c["Sword Attacks deal 24% increased Damage with Hits and Ailments"]={{[1]={flags=4194304,keywordFlags=786432,name="Damage",type="INC",value=24}},nil}c["+1% Chance to Block Attack Damage per Summoned Skeleton"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}}}}," per Summoned "}c["7% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-7}},nil}c["5% increased Effect of Flasks on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=5}},nil}c["15% of Physical Attack Damage Added as Fire Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=15}},nil}c["90% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=90}},nil}c["20% increased Effect of Auras on you"]={{[1]={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=20}},nil}c["You can apply an additional Curse"]={{[1]={flags=0,keywordFlags=0,name="EnemyCurseLimit",type="BASE",value=1}},nil}c["120% increased Critical Strike Chance during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=120}},nil}c["2% increased Chaos Damage per 100 maximum Mana, up to a maximum of 80%"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=2}}," per 100 maximum Mana, up to a maximum of 80% "}c["10% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["+15% to Critical Strike Multiplier with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Grace has 60% increased Aura Effect"]={{[1]={[1]={skillName="Grace",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["22% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=22}},nil}c["+8 Mana gained when you Block +4% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=8}}," gained when you Block +4% Chance to Block Attack Damage "}c["0.5% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["Recover 2% of Energy Shield on Kill"]={nil,"Recover 2% of Energy Shield on Kill "}c["Adds 10 to 16 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=16}},nil}c["20% chance to Curse non-Cursed Enemies with a random Curse on Hit"]={{}," to Curse non-Cursed Enemies with a random Curse on Hit "}c["Fortify Buffs you create instead grant 30% more Evasion Rating 25% increased Attack and Cast Speed while you have Fortify"]={nil,"Fortify Buffs you create instead grant 30% more Evasion Rating 25% increased Attack and Cast Speed while you have Fortify "}c["During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped"]={nil,"During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped "}c["35% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["25% chance to Blind with Hits against Bleeding Enemies"]={{}," to Blind "}c["Precision has 50% less Mana Reservation"]={{[1]={[1]={skillName="Precision",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=-50}},nil}c["15% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["20% chance to Impale Enemies on Hit with Attacks"]={{}," to Impale Enemies on Hit "}c["-1 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=-1}},nil}c["Maximum total Recovery per second from Life Leech is doubled."]={nil,"Maximum total Recovery per second from Life Leech is doubled. "}c["10% more Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}},nil}c["Adds 87 to 127 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=87},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=127}},nil}c["60% increased Damage if you've Frozen an Enemy Recently"]={{[1]={[1]={type="Condition",var="FrozenEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["6% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed"]={nil,"Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed "}c["30 Life gained for each Enemy Hit while affected by Vitality 30% increased Life Recovery Rate while affected by Vitality"]={nil,"30 Life gained for each Enemy Hit while affected by Vitality 30% increased Life Recovery Rate while affected by Vitality "}c["Recharges 1 Charge when you consume an Ignited Corpse"]={nil,"Recharges 1 Charge when you consume an Ignited Corpse "}c["Fire Spells have 15% of Physical Damage Converted to Fire Damage"]={{[1]={flags=2,keywordFlags=16,name="PhysicalDamageConvertToFire",type="BASE",value=15}},nil}c["50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled"]={{[1]={flags=0,keywordFlags=262144,name="FlaskEffect",type="MORE",value=50}}," of Herald Buffs on you 100% more Damage from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled "}c["Damage with Weapons Penetrates 8% Fire Resistance"]={{[1]={flags=8192,keywordFlags=0,name="FirePenetration",type="BASE",value=8}},nil}c["+7 Life gained for each Enemy hit by your Spells"]={{[1]={flags=2,keywordFlags=0,name="LifeOnHit",type="BASE",value=7}},nil}c["Gems Socketed in Green Sockets have +10% to Quality Gems Socketed in Blue Sockets gain 25% increased Experience"]={nil,"Gems Socketed in Green Sockets have +10% to Quality Gems Socketed in Blue Sockets gain 25% increased Experience "}c["25% reduced Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-25}},nil}c["Adds 41 to 107 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=41},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=107}},nil}c["Damage from an Enemy Hit Recently Unaffected by Ignite"]={nil,"Damage from an Enemy Hit Recently Unaffected by Ignite "}c["You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration"]={nil,"You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration "}c["10% chance to gain an Endurance Charge on Melee Critical Strike 30% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain an Endurance Charge on Critical Strike 30% increased with Ailments from Attack Skills "}c["Raised Zombies have 100% increased maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=100}}}},nil}c["25% chance to Trigger a Socketed Spell when you Attack with a Bow Trigger a Socketed Spell when you Attack with a Bow"]={{}," to Trigger a Socketed when you Attack with a Bow Trigger a Socketed Spell when you Attack with a Bow "}c["240% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=240}},nil}c["20% of Overkill Damage is Leeched as Life You are Immune to Bleeding while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill You are Immune to Bleeding "}c["50% increased Critical Strike Chance for Attacks"]={{[1]={flags=1,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["75% chance to cause Enemies to Flee on use 100% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="BASE",value=75}}," to cause Enemies to Flee on use 100% increased "}c["Cold Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=32,name="PoisonChance",type="BASE",value=20}},nil}c["+200 Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="BASE",value=200}},nil}c["80% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=80}},nil}c["2 additional Projectiles if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["Has 6 Sockets"]={{[1]={flags=0,keywordFlags=0,name="SocketCount",type="BASE",value=6}},nil}c["Bleeding you inflict deals Damage 5% faster"]={{[1]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=5}},nil}c["Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently"]={{[1]={[1]={type="Multiplier",var="ShockedEnemyKilledRecently"},flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={[1]={type="Multiplier",var="ShockedEnemyKilledRecently"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=10}},nil}c["Chaos Damage does not bypass Energy Shield -10 Chaos Damage taken"]={nil,"Chaos Damage does not bypass Energy Shield -10 Chaos Damage taken "}c["+0.4% to Critical Strike Chance per Poison affecting Enemy, up to +2.0%"]={{[1]={[1]={actor="enemy",limit=2,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.4}},nil}c["9% increased Skeleton Attack Speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=9}}}},nil}c["2 Mana Regenerated per Second per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=2}},nil}c["30 Life Gained on Igniting an Enemy"]={nil,"30 Life Gained on Igniting an Enemy "}c["10% of Damage taken Gained as Mana over 4 seconds when Hit Cannot Leech Mana"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=10}}," Gained as Mana over 4 seconds when Hit Cannot Leech Mana "}c["Totems gain +20% to all Elemental Resistances Totems have 15% additional Physical Damage Reduction +100 Armour per Summoned Totem"]={nil,"Totems gain +20% to all Elemental Resistances Totems have 15% additional Physical Damage Reduction +100 Armour per Summoned Totem "}c["15% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=15}},nil}c["20% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["+10% to Critical Strike Multiplier with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritMultiplier",type="BASE",value=10}},nil}c["100% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=100}},nil}c["With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"]={nil,"With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds "}c["0.8% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.8}},nil}c["13% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=13}},nil}c["No Life Recovery Applies during Flask effect 100% increased Amount Recovered"]={nil,"No Life Recovery Applies during Flask effect 100% increased Amount Recovered "}c["Critical Strikes with Daggers have a 40% chance to Poison the Enemy"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=524288,keywordFlags=0,name="PoisonChance",type="BASE",value=40}},nil}c["6 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=6}},nil}c["21% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=21}},nil}c["50% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=50}},nil}c["10% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["200% increased Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=200}},nil}c["Recharges 1 Charge when you consume an Ignited Corpse Enemies Ignited by you during Flask Effect take 10% increased Damage"]={nil,"Recharges 1 Charge when you consume an Ignited Corpse Enemies Ignited by you during Flask Effect take 10% increased Damage "}c["Curse Skills have 20% increased Cast Speed"]={{[1]={[1]={skillType=32,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["165% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=165}},nil}c["Rampage"]={nil,"Rampage "}c["Ignites all nearby Enemies on Killing an Ignited Enemy"]={nil,"Ignites all nearby Enemies on Killing an Ignited Enemy "}c["12% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["20% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["60% increased Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=60}},nil}c["Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy"]={nil,"Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy "}c["Minions created Recently have 10% increased Attack and Cast Speed"]={nil,"created Recently have 10% increased Attack and Cast Speed "}c["Adds 30 to 53 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=53}},nil}c["4% chance to deal Double Damage if you've Warcried in the past 8 seconds"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=4}}," if you've Warcried in the past 8 seconds "}c["Totems Reflect 15% of their maximum Life as Fire Damage to"]={nil,"Totems Reflect 15% of their maximum Life as Fire Damage to "}c["30% increased Quantity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=30}},nil}c["Adds 4 to 8 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=8}},nil}c["Socketed Gems fire 4 additional Projectiles"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=4}}}},nil}c["Adds 28 to 40 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=40}},nil}c["8% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}},nil}c["30% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["You can Cast an additional Brand Brand Skills have 20% increased Duration"]={nil,"You can Cast an additional Brand Brand Skills have 20% increased Duration "}c["1% increased Chaos Damage per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=1}},nil}c["10% increased Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=10}},nil}c["20% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Nearby Enemies have Fire Exposure"]={nil,"Nearby Enemies have Fire Exposure "}c["Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets "}c["24% increased Physical Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["50% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=50}},nil}c["+257 Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=257}},nil}c["0.8% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.8}},nil}c["+190 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=190}},nil}c["Cannot be Stunned while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["Attacks with this Weapon deal double Damage to Chilled Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="Damage",type="MORE",value=100}},nil}c["also grant an equal chance to gain a Frenzy Charge on Kill"]={nil,"also grant an equal chance to gain a Frenzy Charge on Kill "}c["25% increased Attack Speed if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["40% increased Damage with Hits against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["Intelligence provides no bonus to Maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="NoIntBonusToMana",type="FLAG",value=true}},nil}c["Regenerate 8% of Mana over 2 seconds when you Consume a corpse"]={nil,"Regenerate 8% of Mana over 2 seconds when you Consume a corpse "}c["20% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-20}},nil}c["50% more Effect of Herald Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="MORE",value=50}}," of Herald Buffs on you "}c["20% increased Damage per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," per Summoned "}c["Lightning Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=64,name="PoisonChance",type="BASE",value=20}},nil}c["20% reduced Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=-20}},nil}c["30% increased Damage against Rare monsters 30% increased Damage with Hits against Rare monsters"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}}," against Rare monsters 30% increased Damage against Rare monsters "}c["Totems have 10% additional Physical Damage Reduction Totems gain +40% to Chaos Resistance"]={nil,"Totems have 10% additional Physical Damage Reduction Totems gain +40% to Chaos Resistance "}c["Enemies you Impale have -5% to Total Physical Damage Reduction against Impale Hits 5% increased Impale Effect"]={nil,"Enemies you Impale have -5% to Total Physical Damage Reduction against Impale Hits 5% increased Impale Effect "}c["You and nearby Allies have +20% to Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}}}},nil}c["Causes Bleeding on Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["You take 40% reduced Extra Damage from Critical Strikes while affected by Determination"]={nil,"You take 40% reduced Extra Damage from Critical Strikes while affected by Determination "}c["+4% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=4}},nil}c["Chill Effect and Freeze duration on you is based on 65% of Energy Shield Chill Effect and Freeze duration on you is based on 100% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 65% of Energy Shield Chill Effect and Freeze duration on you is based on 100% of Energy Shield "}c["3% increased Experience gain 20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=3}}," Experience gain 20% increased "}c["1.8% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.8}},nil}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["75% increased Weapon Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="CritChance",type="INC",value=75}},nil}c["Adds 1 to 2 Cold Damage to Attacks per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=1},[2]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=2}},nil}c["Minions have 15% chance to Blind Enemies on hit Socketed Minion Gems are Supported by Level 16 Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=15}}}}," to Blind Enemies on hit Socketed Minion Gems are Supported by Level 16 Leech "}c["Socketed Gems are Supported by level 1 Blood Magic"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportBloodMagic"}}},nil}c["+340 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=340}},nil}c["You have Resolute Technique while you do not have Elemental Overload"]={nil,"You have Resolute Technique while you do not have Elemental Overload "}c[" Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner You and nearby Allies have 12% increased Movement Speed"]={nil," Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner You and nearby Allies have 12% increased Movement Speed "}c["+30 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=30}},nil}c["Unaffected by Frostbite while affected by Purity of Ice"]={nil,"Unaffected by Frostbite while affected by Purity of Ice "}c["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10%"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% "}c["150% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=150}},nil}c["Life Flasks gain 1 Charge every 3 seconds Remove Bleeding when you use a Life Flask"]={nil,"Life Flasks gain 1 Charge every 3 seconds Remove Bleeding when you use a Life Flask "}c["100% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=100}},nil}c["Bleeding Enemies you Kill Explode, dealing 5% of their Maximum Life as Physical Damage"]={nil,"Bleeding Enemies you Kill Explode, dealing 5% of their Maximum Life as Physical Damage "}c["Socketed Gems are Supported by level 5 Elemental Proliferation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=5,skillId="SupportElementalProliferation"}}},nil}c["75% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=75}},nil}c["Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect 20% chance to Freeze, Shock and Ignite during any Flask Effect"]={nil,"Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect 20% chance to Freeze, Shock and Ignite during any Flask Effect "}c["You have Onslaught while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=3,type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=3},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=3,type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=5}},nil}c["15% increased Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["While there is at least one nearby Ally, you and nearby Allies deal 10% more Damage"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyAlly"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}}}},nil}c["33% increased Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=33}},nil}c["Regenerate 0.5% of Mana per second for each Totem Skills that would Summon a Totem Summon two Totems instead"]={{[1]={flags=0,keywordFlags=16384,name="ManaRegenPercent",type="BASE",value=0.5}}," for each Skills that would Summon a Totem Summon two Totems instead "}c["You and Allies affected by your Aura Skills deal 20% increased Damage 10% more Damage while you have at least one nearby Ally"]={nil,"You and Allies affected by your Aura Skills deal 20% increased Damage 10% more Damage while you have at least one nearby Ally "}c["10% increased Elemental Damage per Sextant affecting the area"]={{[1]={[1]={type="Multiplier",var="Sextant"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil}c["20% increased Life and Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=20}}," and Mana Recovery from Flasks "}c["+375 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=375}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["50% reduced Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=-50}},nil}c["40% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=40}},nil}c["With at least 40 Intelligence in Radius, Raised Zombies' Slam"]={nil,"With at least 40 Intelligence in Radius, Raised Zombies' Slam "}c["Lose all Power Charges on Critical Strike"]={nil,"Lose all Power Charges on Critical Strike "}c["45% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=45}},nil}c["Minions gain 20% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=20}}}},nil}c["Immune to Elemental Ailments while on Consecrated Ground"]={nil,"Immune to Elemental Ailments while on Consecrated Ground "}c["190% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=190}},nil}c["Rampage Triggers Level 15 Manifest Dancing Dervish on Rampage"]={nil,"Rampage Triggers Level 15 Manifest Dancing Dervish on Rampage "}c["333% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=333}},nil}c["Adds 34 to 45 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=34},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=45}},nil}c["Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead"]={nil,"Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead "}c["+20% to Critical Strike Multiplier with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=5}},nil}c["Adds 335 to 900 Lightning Damage to Unarmed Attacks"]={{[1]={flags=16777220,keywordFlags=0,name="LightningMin",type="BASE",value=335},[2]={flags=16777220,keywordFlags=0,name="LightningMax",type="BASE",value=900}},nil}c["+15% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Lightning Damage from Enemies Hitting you is Lucky Nearby Allies' Damage with Hits is Lucky"]={nil,"Lightning Damage from Enemies Hitting you is Lucky Nearby Allies' Damage with Hits is Lucky "}c["Adds 42 to 335 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=42},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=335}},nil}c["10% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=10}},nil}c["+1 Life gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1}},nil}c["Adds 70 to 105 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=105}},nil}c["20% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["20% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=20}},nil}c["Your Chaos Damage Poisons Enemies"]={{[1]={flags=0,keywordFlags=0,name="ChaosPoisonChance",type="BASE",value=100}},nil}c["12% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["+48 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=48}},nil}c["Moving while Bleeding doesn't cause you to take extra Damage"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage "}c["During Flask Effect, 10% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest"]={{[1]={[1]={stat="LightningResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold",upper=true},[2]={stat="LightningResistTotal",thresholdStat="FireResistTotal",type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="LightningDamageTaken",type="INC",value=-10},[2]={[1]={stat="ColdResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold",upper=true},[2]={stat="ColdResistTotal",thresholdStat="FireResistTotal",type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=-10},[3]={[1]={stat="FireResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold",upper=true},[2]={stat="FireResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=-10}},nil}c["Life Leeched per Second is doubled."]={nil,"Life Leeched per Second is doubled. "}c["Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability"]={nil,"Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability "}c["100% increased Fire Damage if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=100}},nil}c["10% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=10}},nil}c["2% chance to Dodge Attack and Spell Hits per 500 Maximum Mana, up to 20%"]={{[1]={[1]={div=500,limit=20,limitTotal=true,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=2},[2]={[1]={div=500,limit=20,limitTotal=true,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=2}},nil}c["20% increased Attack Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["6% Chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=6}},nil}c["12% increased Attack Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["12% increased Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["150% increased Global Evasion Rating when on Low Life"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=150}},nil}c["All Attack Damage Chills when you Stun"]={nil,"All Attack Damage Chills when you Stun "}c["You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration 12% increased Brand Activation frequency"]={nil,"You can Cast an additional Brand Brand Skills deal 30% increased Damage to Enemies they're Attached to Brand Skills have 10% increased Duration 12% increased Brand Activation frequency "}c["Minions have 20% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=20}}}},nil}c["2% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["Gain 1 Rage on Hit with Attacks, no more than once every 0.3 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true},[2]={[1]={type="Condition",var="CanGainRage"},flags=0,keywordFlags=0,name="Dummy",type="DUMMY",value=1}},nil}c["6% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=6}},nil}c["30% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=30}},nil}c["30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy"]={{}," to gain Phasing for 4 seconds when your is triggered by an Enemy "}c["When you Kill a Rare monster, you gain its mods for 20 seconds"]={nil,"When you Kill a Rare monster, you gain its mods for 20 seconds "}c["Unaffected by Ignite"]={nil,"Unaffected by Ignite "}c["10% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["You gain an Endurance Charge on Kill"]={nil,"You gain an Endurance Charge on Kill "}c["+16% to Critical Strike Multiplier with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=16}},nil}c["10% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["75% increased Duration of Poisons you inflict during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=75}},nil}c["30% more Bow Damage at Close Range while you have iron Reflexes 30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=131076,keywordFlags=0,name="Damage",type="MORE",value=30}}," while you have iron Reflexes 30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes "}c["8% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=8}},nil}c["Gain 20% of Physical Damage as Extra Chaos Damage against"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=20}}," against "}c["+50% to Chaos Resistance while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=50}},nil}c["60% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=60}},nil}c["Nearby Allies have 4% increased Cast Speed per 100 Intelligence you have"]={{[1]={[1]={div=100,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=4},onlyAllies=true}}},nil}c["20% increased Damage per Curse on you"]={{[1]={[1]={type="Multiplier",var="CurseOnSelf"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Hits that Stun Enemies have Culling Strike 30% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={nil,"Hits that Stun Enemies have Culling Strike 30% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre "}c["Nearby Allies have 3% increased Cast Speed per 100 Intelligence you have"]={{[1]={[1]={div=100,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=3},onlyAllies=true}}},nil}c["Attack Skills deal 24% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["Damage Penetrates 10% Elemental Resistances against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ElementalPenetration",type="BASE",value=10}},nil}c["If you Consumed a Corpse Recently, you and nearby Allies regenerate 5% of Life per second"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}}}},nil}c["65% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=65}},nil}c["Creates a Smoke Cloud on Rampage"]={nil,"Creates a Smoke Cloud on Rampage "}c["Minions Regenerate 1.5% Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}}}},nil}c["Recover 100 Life when your Trap is triggered by an Enemy"]={nil,"Recover 100 Life when your Trap is triggered by an Enemy "}c["5% Additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["20% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["10% chance to gain Elusive on Kill Damage from your Critical Strikes cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain Elusive on Kill from your Critical Strikes cannot be Reflected "}c["5% reduced Area Damage taken from Hits 10% increased Area of Effect if you have Stunned an Enemy Recently Melee Skills have 10% increased Area of Effect"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits 10% increased Area of Effect if you have Stunned an Enemy Recently Melee Skills have 10% increased Area of Effect "}c["50% chance to double Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=50}}," to double "}c["0.4% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.4}},nil}c["You have Phasing if Energy Shield Recharge has started Recently"]={nil,"You have Phasing if Energy Shield Recharge has started Recently "}c["18% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=18}},nil}c["10% increased Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["13% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=13}},nil}c["Adds 110 to 158 Physical Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMin",type="BASE",value=110},[2]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMax",type="BASE",value=158}},nil}c["8% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=8}},nil}c["10% chance to gain an Endurance Charge when you are Hit Enemies have -5% to Total Physical Damage Reduction against your Hits 30% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=10}}," to gain an Endurance Charge when you are Hit Enemies have -5% to Total against your Hits 30% increased Armour "}c["Nearby Enemies are Blinded 140% increased Critical Strike Chance against Blinded Enemies"]={nil,"Nearby Enemies are Blinded 140% increased Critical Strike Chance against Blinded Enemies "}c["+240 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=240}},nil}c["Projectiles Pierce all nearby Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceAllTargets",type="FLAG",value=true}},nil}c["50% of Physical Damage Converted to Fire while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," Converted to Fire while you have Avatar of Fire "}c["80% increased Damage against Hindered Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Hindered"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=80}},nil}c["+30% to Critical Strike Multiplier with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["You have Phasing if Energy Shield Recharge has started Recently 6% chance to Dodge Attacks while Phasing"]={nil,"You have Phasing if Energy Shield Recharge has started Recently 6% chance to Dodge Attacks while Phasing "}c["to you and Allies"]={nil,"to you and Allies "}c["3% chance to Avoid Elemental Status Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=3},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=3}},nil}c["12% increased Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Passives in radius are Conquered by the Karui Historic"]={nil,"Passives in radius are Conquered by the Karui Historic "}c["Adds 5 to 15 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=15}},nil}c["Adds 7 to 25 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=7},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=25}},nil}c["Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance Arrows gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets"]={nil,"Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance Arrows gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets "}c["+6 to Maximum Life per Elder Item Equipped"]={{[1]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="Life",type="BASE",value=6}},nil}c["16% increased Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["20% increased Area Damage while wielding a Two Handed Melee Weapon 15% increased Area of Effect while wielding a Two Handed Melee Weapon"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=20}}," while wielding a Two Handed Melee Weapon 15% increased Area of Effect while wielding a Two Handed Melee Weapon "}c["24% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=24}},nil}c["Hits with this Weapon deal 45% increased Damage to Frozen Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Frozen"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=45}},nil}c["each Stage the Banner has"]={nil,"each Stage the Banner has "}c["20% increased Weapon Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["Maximum total Recovery per second from Energy Shield Leech is doubled"]={{[1]={flags=0,keywordFlags=0,name="MaxEnergyShieldLeechRate",type="MORE",value=100}},nil}c["5% chance to gain Onslaught for 3 seconds on Kill 10% chance to gain Onslaught for 10 seconds on Kill"]={{}," to gain Onslaught for 3 seconds on Kill 10% chance to gain Onslaught for 10 seconds on Kill "}c["100% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil}c["90% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=90}},nil}c["8% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=8}},nil}c["+5 to Maximum Virulence Minions deal 20% increased Damage while you are affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=5}}," Maximum Virulence Minions deal 20% increased while you are affected by a Herald "}c["110% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=110}},nil}c["120% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=120}},nil}c["Immune to Shock"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=100}},nil}c["+30% to Critical Strike Multiplier against Burning Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},flags=0,keywordFlags=262144,name="CritMultiplier",type="BASE",value=30}},nil}c["30% increased Movement Speed for 9 seconds on Throwing a Trap 15% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="MovementSpeed",type="INC",value=30}}," for 9 seconds on Throwing a 15% increased Movement Speed for 9 seconds on Throwing a Trap "}c["+10 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["Applies level 15 Punishment on Blocking a Melee Attack"]={nil,"Applies level 15 Punishment on Blocking a Melee Attack "}c["25% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-25}},nil}c["0.2% of Elemental Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageLifeLeech",type="BASE",value=0.2}},nil}c["Gain Arcane Surge after Channelling for 1 second"]={nil,"Gain Arcane Surge after Channelling for 1 second "}c["10% reduced Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-10}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline "}c["+58 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=58}},nil}c["+20% to Critical Strike Multiplier with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["60% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=60}},nil}c["11% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=11}},nil}c["90% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=90}},nil}c["Accuracy Rating is Doubled"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="MORE",value=100}},nil}c["Regenerate 100 Life per second while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["Grants Level 20 Summon Petrification Statue Skill"]={nil,nil}c["14% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["Trigger a Socketed Spell when you Attack"]={nil,"Trigger a Socketed Spell when you Attack "}c["12% of Physical Damage taken as Lightning Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=12}},nil}c["3% increased Global Critical Strike Chance per Level"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=3}},nil}c["Elemental Ailments caused by your Skills spread to other nearby Enemies"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies "}c["30% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=30}},nil}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["Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds 30% more Bow Damage at Close Range while you have iron Reflexes "}c["10% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=10}},nil}c["-1 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=-1}},nil}c["50% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground "}c["+12 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=12}},nil}c["10% increased Onslaught Effect"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=10}},nil}c["80% increased Critical Strike Chance when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["-75% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=-75}},nil}c["2% increased Physical Damage over time per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=16777216,name="PhysicalDamage",type="INC",value=2}},nil}c["Skills used by Traps have 15% increased Area of Effect"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=15}},nil}c["Perfect Agony"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Perfect Agony"}},nil}c["20% chance to Curse non-Cursed Enemies with a random Curse on Hit 5% chance to create Shocked Ground when Hit"]={{}," to Curse non-Cursed Enemies with a random Curse on Hit 5% chance to create Shocked Ground when Hit "}c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary Lose all Frenzy, Endurance, and Power Charges when you Move "}c["Your Skills deal you 400% of Mana Cost as Physical Damage"]={nil,"Your Skills deal you 400% of Mana Cost as Physical Damage "}c["+10% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=10}},nil}c["+5% to Chance to Evade while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=5}},nil}c["+100 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},nil}c["+4% to Chaos Resistance per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=4}},nil}c["Gain a Challenger Charge when you Kill an Enemy while in Sand Stance +10 to Maximum Challenger Charges"]={nil,"Gain a Challenger Charge when you Kill an Enemy while in Sand Stance +10 to Maximum Challenger Charges "}c["20% increased Stun Duration with Staves on Enemies"]={{[1]={flags=2097156,keywordFlags=0,name="EnemyStunDuration",type="INC",value=20}},nil}c["You take 450 Chaos Damage per second for 3 seconds on Kill"]={nil,"You take 450 Chaos Damage per second for 3 seconds on Kill "}c["You are Shocked during Flask effect You are Shocked during Flask effect, causing 50% increased Damage taken"]={nil,"You are Shocked during Flask effect You are Shocked during Flask effect, causing 50% increased Damage taken "}c["Trigger a Socketed Warcry Skill when you lose Endurance Charges"]={nil,"Trigger a Socketed Warcry Skill when you lose Endurance Charges "}c["+100 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=100},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=100}},nil}c["Unaffected by Chilled Ground while affected by Purity of Ice"]={nil,"Unaffected by Chilled Ground while affected by Purity of Ice "}c["Minions' Hits can only Kill Ignited Enemies"]={nil,"Minions' Hits can only Kill Ignited Enemies "}c["12% increased Physical Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["10% chance to Blind with Hits against Bleeding Enemies"]={{}," to Blind "}c["Immune to Freeze and Chill while Ignited"]={nil,"Immune to Freeze and Chill while Ignited "}c["100% of Physical Damage from Hits with this Weapon is Converted to a random Element Hits with this Weapon always inflict Elemental Ailments"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=100}}," from Hits is Converted to a random Element Hits always inflict Elemental Ailments "}c["16% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil}c["Enemies near your Totems take 16% increased Physical and Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=16}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=16}}}},nil}c["16% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=16}},nil}c["+6% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=6}},nil}c["Adds 18 to 35 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=35}},nil}c["Adds 35 to 65 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=65}},nil}c["Adds 16 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["12% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=12}},nil}c["Adds 34 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=34},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["+5 to Maximum number of Crab Barriers"]={{[1]={flags=0,keywordFlags=0,name="CrabBarriersMax",type="BASE",value=5}},nil}c["Adds 120 to 165 Physical Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMin",type="BASE",value=120},[2]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMax",type="BASE",value=165}},nil}c["150% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=150}},nil}c["Gains no Charges during Effect of any Overflowing Chalice Flask 100% increased Charges gained by Other Flasks during Flask Effect"]={nil,"Gains no Charges during Effect of any Overflowing Chalice Flask 100% increased Charges gained by Other Flasks during Flask Effect "}c["10% more Damage taken if you haven't Consumed a Corpse Recently"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=10}}," if you haven't Consumed a Corpse Recently "}c["+370 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=370}},nil}c["Adds 22 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["Adds 30 to 95 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=95}},nil}c["You are Immune to Bleeding while Leeching"]={nil,"You are Immune to Bleeding while Leeching "}c["Enemies Frozen by you take 20% increased Damage"]={nil,"Enemies Frozen by you take 20% increased Damage "}c["12% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Adds 4 to 14 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=14}},nil}c["18% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=18}},nil}c["24% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["+80 to Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=80}},nil}c["Raised Zombies' Slam Attack has 100% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillId="ZombieSlam",type="SkillId"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=100}}}},nil}c["With at least 40 Intelligence in Radius, can summon up to 3 Skeleton Mages with Summon Skeletons With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons"]={nil,"With at least 40 Intelligence in Radius, can summon up to 3 Skeleton Mages with Summon Skeletons With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons "}c["8% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["10% increased Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30%"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=3}}," per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% "}c["+7 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=7}},nil}c["25% increased Elemental Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["+173 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=173}},nil}c["50% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=50}},nil}c["+1% to maximum Lightning Resistance while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=1}},nil}c["+22% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=22}},nil}c["12% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=12}},nil}c["50% increased Mine Arming Speed"]={{}," Arming Speed "}c["18% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-18}},nil}c["50% chance to Maim Enemies on Critical Strike with Attacks"]={{}," to Maim Enemies "}c["100% more Critical Strike Chance against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="CritChance",type="MORE",value=100}},nil}c["250% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=250}},nil}c["On Killing a Poisoned Enemy, nearby Enemies are Poisoned"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned "}c["2% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}},nil}c["Remove a random Elemental Ailment when you use a Mana Flask"]={nil,"Remove a random Elemental Ailment when you use a Mana Flask "}c["8% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["+2 to Maximum Life per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=2}},nil}c["+3% to all Elemental Resistances per Minion, up to 30%"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=3}}," per Minion, up to 30% "}c["-40 Physical Damage taken from Attacks 40% increased Armour while not Ignited, Frozen or Shocked"]={{[1]={[1]={neg=true,type="Condition",varList={[1]="Ignited",[2]="Frozen",[3]="Shocked"}},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-40}}," from Attacks 40% increased Armour "}c["10% Increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["+20% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=20}},nil}c["Nearby Enemies are Intimidated"]={nil,"Nearby Enemies are Intimidated "}c["50% chance on Block to create Desecrated Ground 100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground 100% chance on Block to create Desecrated Ground "}c["10% increased Damage Taken while Energy Shield is Full"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}," while Energy Shield is Full "}c["Herald Skills deal 20% increased Damage"]={nil,"Herald Skills deal 20% increased Damage "}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["30% increased Attack Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Determination has 60% increased Aura Effect"]={{[1]={[1]={skillName="Determination",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["60% increased Damage while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["You gain Phasing for 10 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 10 seconds on using a Vaal Skill "}c["Gain 5% of Physical Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=5}},nil}c["Kills grant an additional Vaal Soul if you have Rampaged Recently Rampage"]={nil,"Kills grant an additional Vaal Soul if you have Rampaged Recently Rampage "}c["20% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=20}},nil}c["3% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["5% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-5}},nil}c["Can't use Chest armour"]={nil,"Can't use Chest armour "}c["6% increased Wand Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=8388612,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["Adds 100 to 200 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=200}},nil}c["40% increased Critical Strike Chance with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["55% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=55}},nil}c["1% increased Elemental Damage per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=1}},nil}c["Gain a Frenzy Charge on Critical Strike"]={nil,"Gain a Frenzy Charge on Critical Strike "}c["150 Life Regenerated per second if you have at least 1500 Maximum Energy Shield"]={{[1]={[1]={stat="EnergyShield",threshold=1500,type="StatThreshold"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=150}},nil}c["Attack Skills deal 12% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["+425 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=425}},nil}c["75% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=75}},nil}c["70% increased Damage with Channelling Skills"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["+100% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=100}},nil}c["+225% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=225}},nil}c["18% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=18}},nil}c["10% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=10}},nil}c["10% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["Minions deal 7 to 13 additional Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=7}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=13}}}},nil}c["+2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="OnConsecratedGround"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=2}},nil}c["20% to Fire Resistance +40% to Cold Resistance"]={nil,"20% to Fire Resistance +40% to Cold Resistance "}c["30% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil}c["30% increased Physical Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["14% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["15% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["120% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=120}},nil}c["40% reduced Effect of Shock on you"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=-40}}," on you "}c["2% reduced Damage taken per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-2}}," per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating "}c["If you've Cast a Spell Recently, you and nearby Allies have +10% Chance to Block Spell Damage"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}}}},nil}c["Create Consecrated Ground when you Shatter an Enemy"]={nil,"Create Consecrated Ground when you Shatter an Enemy "}c["16% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["8% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["+1 to maximum number of Spectres"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=1}},nil}c["1% increased Bleed Duration per 12 Intelligence"]={{[1]={[1]={div=12,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=1}},nil}c["+135 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=135}},nil}c["Purity of Ice Reserves no Mana"]={{[1]={[1]={skillId="ColdResistAura",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Chance to Block Spell Damage is Unlucky +120 to Strength"]={nil,"Chance to Block Spell Damage is Unlucky +120 to Strength "}c["+3000 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=3000}},nil}c["+250 to Armour while affected by a Guard Skill Buff 10% chance when Hit for double Armour effect Regenerate 0.5% of Life per second while affected by a Guard Skill Buff"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=250}}," while affected by a Guard Skill Buff 10% chance when Hit for double Armour effect Regenerate 0.5% of Life per second while affected by a Guard Skill Buff "}c["Enemies Taunted by you cannot Evade Attacks"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}}}},nil}c["14% increased Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["20% chance to Trigger Level 1 Raise Spiders on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TriggeredSummonSpider"}}},nil}c["+2 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=2}},nil}c["15% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-15}},nil}c["40% increased Damage while Leeching Energy Shield"]={{[1]={[1]={type="Condition",var="LeechingEnergyShield"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Recover 0.5% of Life per Poison affecting Enemies you Kill"]={nil,"Recover 0.5% of Life per Poison affecting Enemies you Kill "}c["200% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=200}},nil}c["3% reduced Damage taken per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed "}c["20% increased Golem Damage per Summoned Golem 35% chance to Avoid Elemental Ailments per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," per Summoned Golem 35% chance to Avoid Elemental Ailments per Summoned Golem "}c["Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="PhysicalMin",type="BASE",value=100},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="PhysicalMax",type="BASE",value=200}},nil}c["Cannot take Reflected Physical Damage 20% more Damage against Unique Enemies"]={nil,"Cannot take Reflected Physical Damage 20% more Damage against Unique Enemies "}c["Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage."]={nil,"Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage. "}c["60% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-60}},nil}c["55% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=55}},nil}c["Offering Skills have 50% reduced Duration"]={nil,"Offering Skills have 50% reduced Duration "}c["4% increased Attack Speed with Bows"]={{[1]={flags=131077,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["300% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=300}},nil}c["15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=15}}," to Recover 10% of when you use a Skill "}c["Grants maximum Energy Shield equal to 15% of your Reserved Mana to you and nearby Allies"]={{[1]={flags=0,keywordFlags=0,name="GrantReservedManaAsAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=0.15}}}},nil}c["40% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil}c["9 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=9}},nil}c["75% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=75}},nil}c["0.5% of Elemental Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageLifeLeech",type="BASE",value=0.5}},nil}c["+30% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=30}},nil}c["2% chance to gain a Power, Frenzy or Endurance Charge on Kill"]={{}," to gain a Power,or Endurance Charge on Kill "}c["30% increased Elemental Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["4 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=4}},nil}c["Triggers Level 20 Lightning Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="LightningAegis"}}},nil}c["23% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=23}},nil}c["You can inflict an additional Ignite on an Enemy Your Critical Strikes do not deal extra Damage"]={nil,"You can inflict an additional Ignite on an Enemy Your Critical Strikes do not deal extra Damage "}c["All bonuses from an Equipped Shield apply to your Minions instead of you"]={{},nil}c["do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline"]={nil,"do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline "}c["30% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["28% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=28}},nil}c["4% chance to Dodge Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=4}},nil}c["5% chance to Gain Unholy Might for 4 seconds on Melee Kill"]={{}," to Gain Unholy Might for 4 seconds on Kill "}c["10% increased Area of Effect while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["5% reduced Area Damage taken from Hits +2 to Melee Strike Range 10% increased Area of Effect if you have Stunned an Enemy Recently"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits +2 to Melee Strike Range 10% increased Area of Effect if you have Stunned an Enemy Recently "}c["25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently +1 to Maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=25}}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second +1 to "}c["35% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=35}},nil}c["Recover 2% of Life on Kill Recover 2% of Energy Shield on Kill"]={nil,"Recover 2% of Life on Kill Recover 2% of Energy Shield on Kill "}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed "}c["10% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=10}},nil}c["Chaos Damage does not bypass Energy Shield during effect Removes all but one Life on use"]={nil,"Chaos Damage does not bypass Energy Shield during effect Removes all but one Life on use "}c["+15 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=15}},nil}c["You can only have one Non-Banner Aura with no Duration on you from your Skills"]={nil,"You can only have one Non-Banner Aura with no Duration on you from your Skills "}c["Can't use other Rings +12% to all Elemental Resistances"]={nil,"Can't use other Rings +12% to all Elemental Resistances "}c["Skills used by Mines have 10% increased Area of Effect if you Detonated a Mine Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=8192,name="AreaOfEffect",type="INC",value=10}},nil}c["2% chance to Avoid Elemental Damage when Hit per Frenzy Charge 0.5% of Attack Damage Leeched as Life per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=2}}," to Avoid when Hit 0.5% of Attack Damage Leeched as Life "}c["0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block"]={{[1]={[1]={stat="ShieldBlockChance",threshold=30,type="StatThreshold"},flags=2,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.5}},nil}c["+40 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=40}},nil}c["12% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=12}},nil}c["With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 4% increased Damage each time it Hits. With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits."]={nil,"With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 4% increased Damage each time it Hits. With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits. "}c["10% increased Cooldown Recovery Speed of Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="CooldownRecovery",type="INC",value=10}},nil}c["10% chance to double Stun Duration Lightning Skills have 10% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=10}}," to double Lightning Skills have 10% reduced Enemy Stun Threshold "}c["1% of Damage Leeched as Life against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Your Raised Zombies count as Corpses"]={nil,"Your Raised Zombies count as Corpses "}c["+2 Accuracy Rating per 2 Intelligence"]={{[1]={[1]={div=2,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=2}},nil}c["Adds 74 to 121 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=74},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=121}},nil}c["+300 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=300}},nil}c["10% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=10}},nil}c["You gain Onslaught for 2 seconds on Killing Taunted Enemies You gain Onslaught for 4 seconds on using a Warcry"]={nil,"You gain Onslaught for 2 seconds on Killing Taunted Enemies You gain Onslaught for 4 seconds on using a Warcry "}c["20% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["Gain 100% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=100}}," Bow as Extra Damage of an Element "}c["30% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-5}},nil}c["6% increased Maximum Life for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="Life",type="INC",value=6}},nil}c["Melee Attacks cause Bleeding"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["Minions gain Unholy Might for 10 seconds on Kill Minions gain 20% of Elemental Damage as Extra Chaos Damage"]={nil,"gain Unholy Might for 10 seconds on Kill Minions gain 20% of Elemental Damage as Extra Chaos Damage "}c["Mines have 10% increased Detonation Speed"]={nil,"Mines have 10% increased Detonation Speed "}c["Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets Skills fire an additional Projectile"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets Skills fire an additional Projectile "}c["60% reduced Mana Cost of Totem Skills that cast an Aura"]={{[1]={flags=0,keywordFlags=16384,name="ManaCost",type="INC",value=-60}}," Skills that cast an Aura "}c["Adds 280 to 355 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=280},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=355}},nil}c["50% chance to gain an additional Vaal Soul per Enemy Shattered"]={{}," to gain an additional Soul per Enemy Shattered "}c["Mines can be Detonated an additional time"]={nil,"Mines can be Detonated an additional time "}c["30% chance to Avoid being Shocked"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=30}},nil}c["Nearby Allies gain 2% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2},onlyAllies=true}}},nil}c["You count as Dual Wielding while you are Unencumbered 60% more Attack Speed while you are Unencumbered"]={nil,"You count as Dual Wielding while you are Unencumbered 60% more Attack Speed while you are Unencumbered "}c["35% increased Damage with Wands if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=8388612,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["+150 to Accuracy Rating with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Accuracy",type="BASE",value=150}},nil}c["Gems can be Socketed in this Item ignoring Socket Colour"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour "}c["80% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite"]={nil,"Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite "}c["25% increased Critical Strike Chance with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritChance",type="INC",value=25}},nil}c["15% chance to Impale Enemies on Hit with Attacks Impales you inflict last 1 additional Hit"]={{}," to Impale Enemies on Hit Impales you inflict last 1 additional Hit "}c["50% increased Critical Strike Chance with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["24% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=24}},nil}c["30% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=30}},nil}c["8% reduced Damage taken while Elusive 25% increased Elusive Effect"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-8}}," while Elusive 25% increased Elusive Effect "}c["Herald of Ice has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Herald of Ice",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["30% increased Cold Damage if you have used a Fire Skill Recently"]={{[1]={[1]={type="Condition",var="UsedFireSkillRecently"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=30}},nil}c["Can Summon up to 3 additional Golems at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=3}},nil}c["20% chance to double Stun Duration 30% increased Damage with Ailments from Attack Skills"]={{[1]={flags=2048,keywordFlags=65536,name="EnemyStunDuration",type="BASE",value=20}}," to double 30% increased Damage "}c["10% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Conduit"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Conduit"}},nil}c["+2 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=2}},nil}c["20% increased Attack and Cast Speed while Elusive"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}," while Elusive "}c["Gain 24% of Physical Damage as Extra Damage of a random Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=24}}," as Extra Damage of a random Element "}c["6% increased Accuracy Rating with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["With at least one nearby corpse, nearby Enemies deal 10% reduced Damage"]={nil,"With at least one nearby corpse, nearby Enemies deal 10% reduced Damage "}c["20% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=20}},nil}c["Attacks have 15% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil}c["Trigger a Socketed Spell when you Attack with a Bow 15% increased Attack Speed"]={nil,"Trigger a Socketed Spell when you Attack with a Bow 15% increased Attack Speed "}c["10% additional Chance to Block while Dual Wielding Claws"]={{[1]={[1]={type="Condition",var="DualWieldingClaws"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["+85 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=85}},nil}c["10% chance to gain an Endurance Charge when you Block 10% chance to gain a Frenzy Charge when you Block"]={{}," to gain an Endurance Charge when you Block 10% chance to gain aCharge when you Block "}c["+4% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=4}},nil}c["+20% to Critical Strike Multiplier against Burning Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},flags=0,keywordFlags=262144,name="CritMultiplier",type="BASE",value=20}},nil}c["30% increased Damage if you Summoned a Golem in the past 8 seconds"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," if you Summoned a in the past 8 seconds "}c["Enemies you Shock have 20% reduced Movement Speed Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=20}},"Enemies you Shock have 20% reduced Damage "}c["Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances"]={nil,"Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances "}c["Cursed Enemies you or your Minions Kill have a 25% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"]={nil,"Cursed Enemies you or your Minions Kill have a 25% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage "}c["3% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=3}},nil}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently 60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,keywordFlags=0,name="ManaCost",type="INC",value=60}}," for each 200 total Mana you have Spent Recently 60% increased Damage for each 200 total Mana you have Spent Recently "}c["60% increased Damage with Channelling Skills"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["Adds 190 to 220 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=190},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=220}},nil}c["+8% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=8}},nil}c["Every 5 seconds, 20% of Maximum Life Regenerated over one second You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Every 5 seconds, 20% of Maximum Life Regenerated over one second You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["10% chance to Blind Enemies on Hit with Attacks"]={{}," to Blind Enemies on Hit "}c["10% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["8% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["+25 Energy Shield gained on Kill Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=25}}," gained on Kill Grants Malachai's Endurance,and Power for 6 seconds each, in sequence "}c["6% increased Attack Damage for each Map Item Modifier affecting the Area"]={{[1]={flags=513,keywordFlags=0,name="Damage",type="INC",value=6}}," for each Map Item Modifier affecting the "}c["+30% to Critical Strike Multiplier with Axes"]={{[1]={flags=65540,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Curse Enemies with Flammability on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="Flammability"}}},nil}c["Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Raised Zombies"]={nil,"Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Raised Zombies "}c["50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground "}c["175% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=175}},nil}c["Gain 24% of Physical Damage as Extra Damage of a random Element Projectiles Pierce 6 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=24}}," as Extra Damage of a random Element Projectiles Pierce 6 additional Targets "}c["10% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=10}},nil}c["Can't use Chest armour 15% Chance to Block"]={nil,"Can't use Chest armour 15% Chance to Block "}c["Adds 18 to 26 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=26}},nil}c["10% increased Attack Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed "}c["90% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=90}},nil}c["+1 to Melee Weapon and Unarmed Attack range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["25% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=25}},nil}c["+5 to Level of Socketed Aura Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="aura",value=5}}},nil}c["Grants 1 Passive Skill Point"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=1}},nil}c["+20 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=20}},nil}c["20% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["2% increased Attack and Cast Speed per Summoned Raging Spirit"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}," per Summoned Raging Spirit "}c["15% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=15}},nil}c["Nova Spells have 20% less Area of Effect Nova Spells Cast at the targeted location instead of around you"]={nil,"Nova Spells have 20% less Area of Effect Nova Spells Cast at the targeted location instead of around you "}c["Attack Skills deal 50% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=50}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["You have Phasing while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["Creates a Smoke Cloud on Use"]={{},nil}c["10% increased Effect of Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="BuffEffectOnSelf",type="INC",value=10}},nil}c["Frostblink has 50% increased Duration"]={{[1]={[1]={skillName="Frostblink",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil}c["8% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-8}},nil}c["35% chance to gain an Endurance Charge when you use a Fire skill 5% increased Physical Damage per Endurance Charge 5% increased Fire Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},[2]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=35}}," to gain an Endurance Charge when you use a Fire skill 5% increased 5% increased Fire Damage "}c["50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike 50% increased Damage while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}}," Rarity of Items Dropped by Enemies killed with a Critical Strike 50% increased "}c["+1 to Level of all Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="active_skill"},value=1}}},nil}c["20% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20}},nil}c["6% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second"]={nil,"With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second "}c["Enemies you inflict Bleeding on grant 100% increased Flask Charges"]={nil,"Enemies you inflict Bleeding on grant 100% increased Flask Charges "}c["12% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil}c["20% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["20% reduced Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-20}},nil}c["10% chance to gain 1 Rage when you Hit a Rare or Unique Enemy"]={{}," to gain 1 Rage when you Hit a Rare or Unique Enemy "}c["3% reduced Damage taken per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["10% chance to gain Arcane Surge when you Kill an Enemy"]={{}," to gain Arcane Surge when you Kill an Enemy "}c["1.2% of Damage Leeched as Life on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1.2}},nil}c["15% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["8% chance to Block while affected by Determination"]={{[1]={[1]={type="Condition",var="AffectedByDetermination"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["100% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=100}},nil}c["Gain Fortify for 6 seconds on Melee Hit with a Mace, Sceptre or Staff"]={nil,"Gain Fortify for 6 seconds on Melee Hit with a Mace, Sceptre or Staff "}c["Recover 50 Energy Shield when your Trap is triggered by an Enemy"]={nil,"Recover 50 Energy Shield when your Trap is triggered by an Enemy "}c["Damage from your Critical Strikes cannot be Reflected 25% more Damage while there is at most one Rare or Unique Enemy nearby"]={nil,"Damage from your Critical Strikes cannot be Reflected 25% more Damage while there is at most one Rare or Unique Enemy nearby "}c["Cannot be Frozen, Chilled or Ignited with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing "}c["12% increased Physical Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["+48 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=48}},nil}c["80% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=80}},nil}c["Brand Skills deal 30% increased Damage to Enemies they're Attached to"]={{[1]={[1]={skillType=76,type="SkillType"},[2]={type="Condition",var="BrandAttachedToEnemy"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["5% chance to gain Unholy Might for 3 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill "}c["Gain Armour equal to your Reserved Mana"]={{[1]={[1]={div=1,stat="ManaReserved",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["80% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=80}},nil}c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by 5 or more Poisons"]={{}," to gain aCharge on Killing an Enemy affected by 5 or more Poisons "}c["Blight has 30% increased Hinder Duration"]={{[1]={[1]={skillName="Blight",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}}," Hinder "}c["+125 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=125}},nil}c["50% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=50}},nil}c["180% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=180}},nil}c["5% additional Chance to Block while you have at least 10 Crab Barriers"]={{[1]={[1]={stat="CrabBarriers",threshold=10,type="StatThreshold"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["Minions have +2% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}}}},nil}c["22% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=22}},nil}c["Curse Enemies with Socketed Curse Gem on Hit"]={nil,nil}c["40% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}},nil}c["50% More Bow Damage at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=131076,keywordFlags=0,name="Damage",type="MORE",value=50}},nil}c["Cannot inflict Freeze or Chill"]={{[1]={flags=0,keywordFlags=0,name="CannotFreeze",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="CannotChill",type="FLAG",value=true}},nil}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area of Effect Radius as they travel further, up to 50% increased Radius. With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius "}c["+4 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=4}},nil}c["Chaos Skills have 10% chance to Hinder Enemies on Hit, with 30% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=128,name="MovementSpeed",type="BASE",value=10}}," to Hinder Enemies on Hit, with 30% reduced "}c["45% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=45}},nil}c["15% increased Quantity of Items found with a Magic Item equipped"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="MagicItem"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},nil}c["20% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time "}c["14% increased Physical Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["You can only have one Herald"]={nil,"You can only have one Herald "}c["+36 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=36}},nil}c["With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike cannot choose Lightning With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike deal 50% less Lightning Damage"]={nil,"With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike cannot choose Lightning With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike deal 50% less Lightning Damage "}c["+17 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=17}},nil}c["100% increased Skeleton Movement Speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=100}}}},nil}c["Socketed Gems are Supported by level 30 Iron Will"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportIronWill"}}},nil}c["Gain 10% of Lightning Damage as Extra Cold Damage against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="LightningDamageGainAsCold",type="BASE",value=10}},nil}c["15% reduced Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=-15}},nil}c["Hatred Reserves no Mana"]={{[1]={[1]={skillId="Hatred",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Adds 228 to 280 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=228},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=280}},nil}c["+200 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=200}},nil}c["Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range"]={nil,"Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range "}c["8% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["You and nearby allies gain 15% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}}}},nil}c["Attack Skills deal 8% increased Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["10% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["10% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["Nearby allies Recover 2% of your maximum Life when you Die"]={nil,"Nearby allies Recover 2% of your maximum Life when you Die "}c["30% chance to Blind Enemies on Critical Strike"]={{}," to Blind Enemies "}c["10% reduced Enemy Stun Threshold with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["Damage Penetrates 6% of Enemy Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},nil}c["5% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["18% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=18}},nil}c["You and your Totems Regenerate 1% of Life per second per Totem"]={nil,"You and your Totems Regenerate 1% of Life per second per Totem "}c["60% increased Fire Damage while affected by Herald of Ash"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAsh"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=60}},nil}c["Using Warcries is Instant"]={nil,"Using Warcries is Instant "}c["Cold Skills have a 25% chance to apply Cold Exposure on Hit Fire Skills have a 25% chance to apply Fire Exposure on Hit Lightning Skills have a 25% chance to apply Lightning Exposure on Hit"]={nil,"a 25% chance to apply Cold Exposure on Hit Fire Skills have a 25% chance to apply Fire Exposure on Hit Lightning Skills have a 25% chance to apply Lightning Exposure on Hit "}c["20% reduced Effect of Curses on You"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-20}},nil}c["+25% to Critical Strike Multiplier with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["Adds 10 to 21 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=21}},nil}c["30% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=30}},nil}c["Curse Enemies with level 10 Temporal Chains on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,noSupports=true,skillId="TemporalChains"}}},nil}c["100 Life Regenerated per second if you have at least 1000 Maximum Energy Shield"]={{[1]={[1]={stat="EnergyShield",threshold=1000,type="StatThreshold"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["Adds 90 to 180 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=90},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=180}},nil}c["Nearby Enemies are Blinded"]={nil,"Nearby Enemies are Blinded "}c["30% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=30}},nil}c["+120 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=120}},nil}c["Adds 13 to 21 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=21}},nil}c["Unaffected by Chilled Ground"]={nil,"Unaffected by Chilled Ground "}c["-1 Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=-1}},nil}c["+6% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=6}},nil}c["30% increased Damage with Hits against Rare monsters"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="INC",value=30}}," against Rare monsters "}c["Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary"]={nil,"Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary "}c["+2 to Level of all Chaos Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="chaos skill",value=2}}},nil}c["24% increased Physical Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["305% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=305}},nil}c["25% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=25}},nil}c["Gain +3 Mana when you hit a Taunted Enemy Gain 2 Power Charges on Using a Warcry"]={nil,"Gain +3 Mana when you hit a Taunted Enemy Gain 2 Power Charges on Using a Warcry "}c["Your Minions use your Flasks when summoned Minions have 25% reduced Flask Charges used"]={nil,"Your Minions use your Flasks when summoned Minions have 25% reduced Flask Charges used "}c["25% reduced Chaos Damage Taken Over Time"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTakenOverTime",type="INC",value=-25}},nil}c["Shock Enemies as though dealing 300% more Damage"]={nil,"Shock Enemies as though dealing 300% more Damage "}c["Attack Skills have +1 to maximum number of Summoned Ballista Totems"]={{[1]={flags=0,keywordFlags=65536,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["You gain 8% increased Damage for each Trap"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="BASE",value=8}},"% increased for each "}c["15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy"]={{}," to gain aCharge when your is triggered by an Enemy "}c["+6% to All Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=6}},nil}c["40% chance to Avoid being Shocked"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=40}},nil}c["1% of Damage Leeched as Life against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Attacks with Melee Weapons deal 4% increased Damage with Ailments"]={{[1]={flags=33556480,keywordFlags=0,name="Damage",type="INC",value=4}},nil}c["12% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["Manifested Dancing Dervish dies when Rampage ends"]={{},nil}c["You gain Onslaught for 2 seconds on Kill You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 2 seconds on Kill You gain Onslaught for 4 seconds on Kill "}c["10% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["Triggers Level 20 Blinding Aura when Equipped"]={nil,nil}c["Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="NonShaperItem"},flags=0,keywordFlags=0,name="IgnoreChaosResistance",type="FLAG",value=true}},nil}c["Has 1 Socket"]={{[1]={flags=0,keywordFlags=0,name="SocketCount",type="BASE",value=1}},nil}c["Applies level 15 Temporal Chains on Blocking a Projectile Attack Applies level 15 Elemental Weakness on Blocking a Spell"]={nil,"Applies level 15 Temporal Chains on Blocking a Projectile Attack Applies level 15 Elemental Weakness on Blocking a Spell "}c["Regenerate 15 Mana per second if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=15}},nil}c["22% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=22}},nil}c["You gain Onslaught for 3 seconds on Culling Strike"]={nil,"You gain Onslaught for 3 seconds on Culling Strike "}c["+120 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=120}},nil}c["Mace or Sceptre Attacks deal 18% increased Damage with Hits and Ailments"]={{[1]={flags=1048576,keywordFlags=786432,name="Damage",type="INC",value=18}},nil}c["10% increased Accuracy Rating with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["+500 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=500}},nil}c["10% chance to gain an Endurance Charge on Melee Critical Strike"]={{}," to gain an Endurance Charge on Critical Strike "}c["20% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Channelling Skills have 6% increased Attack Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["+3 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=3}},nil}c["25% increased Weapon Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["25% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=25}},nil}c["40% of Physical Damage Converted to Lightning Damage while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=40}},nil}c["250% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=250}},nil}c["22% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=22}},nil}c["10% additional Block chance while not Cursed"]={{[1]={[1]={neg=true,type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["30% Chance to cause Bleeding Enemies to Flee on hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}}," Enemies to Flee on hit "}c["20% increased Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["24% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["25% chance to Intimidate nearby Enemies for 4 seconds on Melee Kill"]={{}," to Intimidate nearby Enemies for 4 seconds on Kill "}c["5% chance to Avoid Lightning Damage when Hit"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=5}}," to Avoid when Hit "}c["+1% Chance to Block Attack Damage per 50 Strength"]={{[1]={[1]={div=50,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["+2% Critical Strike Chance while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=2}},nil}c["+6% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=6}},nil}c["Minions have +10% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}}},nil}c["+88 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=88}},nil}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of non-Damaging Ailments on Enemies"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of non-Damaging Ailments on Enemies "}c["+10% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=10}}," Non-Ailment "}c["Nearby Enemies deal 8% less Elemental Damage"]={nil,"Nearby Enemies deal 8% less Elemental Damage "}c["20% increased Onslaught duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Onslaught "}c["Spectres have 100% increased Damage"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=100}}}},nil}c["Raised Zombies have +5000 to maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=5000}}}},nil}c["Gain 4% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped"]={{[1]={[1]={type="Multiplier",var="ShaperItem"},flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=4}},nil}c["10% chance to Freeze, Shock and Ignite while affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}}," while affected by a Herald "}c["Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"]={nil,"Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence "}c["Immune to Ignite while affected by Purity of Fire 10% of Physical Damage taken as Fire Damage while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire 10% of Physical Damage taken as Fire Damage while affected by Purity of Fire "}c["Socketed Golem Skills have 25% chance to Taunt on Hit"]={{}," to Taunt on Hit "}c["Shocks nearby Enemies during Flask effect Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"]={nil,"Shocks nearby Enemies during Flask effect Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken "}c["Nearby Enemies take 10% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=10}}}},nil}c["8% increased Physical Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Totems have 15% additional Physical Damage Reduction +100 Armour per Summoned Totem"]={nil,"Totems have 15% additional Physical Damage Reduction +100 Armour per Summoned Totem "}c["Cannot be Ignited"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}},nil}c["5% reduced Cold Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=-5}},nil}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge 40% chance "}c["27% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=27}},nil}c["30% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=30}},nil}c["18% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=18}},nil}c["65% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=65}},nil}c["10% chance to Curse Enemies with Enfeeble on Hit 25% chance to Curse un-cursed Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit 25% chance to Curse un-cursed Enemies with Enfeeble on Hit "}c["Life Leech is applied to Energy Shield instead while on Full Life"]={nil,"Life Leech is applied to Energy Shield instead while on Full Life "}c["11% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=11}},nil}c["Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have 30% increased Item Rarity"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have 30% increased Item Rarity "}c["Brand Skills have 10% increased Duration"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=10}},nil}c["Damage Penetrates 5% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil}c["50% increased Attack Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["90% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=90}},nil}c["20% increased Attack Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Adds 28 to 45 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=28},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=45}},nil}c["100% increased Fire Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="FireDamage",type="INC",value=100}},nil}c["20% increased Critical Strike Chance with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["8% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=8}},nil}c["Triggers level 7 Abberath's Fury when equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=7,skillId="RepeatingShockwave"}}},nil}c["30% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["30% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=30}},nil}c["20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill"]={{[1]={flags=0,keywordFlags=256,name="PhysicalDamageReduction",type="BASE",value=20}}," while affected by a Non- Guard Skill "}c["+23 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=23}},nil}c["Gain 10% of Physical Damage as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," as Extra Damage of a random Element Damage Penetrates 10% Elemental Resistances Enemies you Kill that are affected by Elemental Ailments\ngrant 100% increased Flask Charges "}c["Adds 10 to 20 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=10},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=20}},nil}c["5% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=5}},nil}c["+231 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=231}},nil}c["Golems Deal 45% less Damage"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-45}}}},nil}c["10% chance to gain a Frenzy, Power or Endurance Charge on Kill"]={{}," to gain a Frenzy, Power or Endurance Charge on Kill "}c["20% increased Attack Speed if you've Attacked Recently"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Adds 160 to 240 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=160},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=240}},nil}c["30% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=30}},nil}c["25% increased Area of Effect while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil}c["+20% to all Elemental Resistances while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}},nil}c["+10% to all Elemental Resistances and maximum Elemental Resistances while affected by a Non-Vaal Guard Skill 20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill"]={{[1]={flags=0,keywordFlags=256,name="ElementalResist",type="BASE",value=10}}," and maximum Elemental Resistances while affected by a Non- Guard Skill 20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill "}c["Adds 48 to 83 Cold Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=48},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=83}},nil}c["10% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=10}},nil}c["Adds 23 to 31 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=31}},nil}c["25% increased Light Radius during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightRadius",type="INC",value=25}},nil}c["200% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=200}},nil}c["25% of Wand Physical Damage converted to Lightning Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=25}},nil}c["+2 to Melee Weapon Range per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2}},nil}c["Lightning Spells have 10% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=2,keywordFlags=64,name="PhysicalDamageConvertToLightning",type="BASE",value=10}},nil}c["15% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["+18% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=18}},nil}c["50% reduced Freeze Duration on You 1% of Life Regenerated per Second"]={{}," "}c["33% chance to Blind nearby Enemies when gaining Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing "}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["25% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=25}},nil}c["Cold Spells have 10% of Physical Damage Converted to Cold Damage"]={{[1]={flags=2,keywordFlags=32,name="PhysicalDamageConvertToCold",type="BASE",value=10}},nil}c["5% increased Movement Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}c["+400 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=400}},nil}c["5% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=5}},nil}c["1% increased Damage per 8 Strength when in Main Hand"]={{[1]={[1]={div=8,stat="Str",type="PerStat"},[2]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["19% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=19}},nil}c["Curse Skills have 15% increased Cast Speed"]={{[1]={[1]={skillType=32,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["Enemies Poisoned by you cannot Regenerate Life +10% to Damage over Time Multiplier for Poison while wielding a Claw or Dagger"]={nil,"Enemies Poisoned by you cannot Regenerate Life +10% to Damage over Time Multiplier for Poison while wielding a Claw or Dagger "}c["Minions Recover 20% of Maximum Life on Killing a Poisoned Enemy"]={nil,"Recover 20% of Maximum Life on Killing a Poisoned Enemy "}c["100% reduced Vulnerability Mana Reservation"]={{[1]={[1]={skillName="Vulnerability",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["200% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}},nil}c["Adds 375 to 550 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=375},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=550}},nil}c["+3 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=3}},nil}c["+5 Life gained for each Ignited Enemy hit by your Attacks"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=5}}," gained for each Ignited Enemy hit by your Attacks "}c["Cannot Evade Enemy Attacks"]={{[1]={flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}},nil}c["10% chance to Dodge Spells while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["15% increased Attack and Cast Speed while Elusive"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=15}}," while Elusive "}c["+10% to Non-Ailment Chaos Damage over Time Multiplier 24% increased Damage Over Time with Bow Skills"]={{[1]={flags=0,keywordFlags=512,name="ChaosDotMultiplier",type="BASE",value=10}}," Non-Ailment 24% increased Damage Over Time "}c["Fractured item League: Synthesis"]={nil,"Fractured item League: Synthesis "}c["14% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=14}},nil}c["50% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},nil}c["50% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=50}},nil}c["With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy."]={nil,"With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy. "}c["Projectiles have 100% increased Critical Strike Chance against Targets they Pierce"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=1024,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["Grants Level 20 Summon Doedre's Effigy Skill"]={nil,nil}c["15% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=15}},nil}c["+23% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=23}},nil}c["+95 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=95}},nil}c["6% increased Attack Speed with Bows"]={{[1]={flags=131077,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["+5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}},nil}c["Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=4}},nil}c["3% increased Attack Speed with Maces or Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["10% increased Damage taken from Skeletons"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}}," from s "}c["Attacks with Two Handed Melee Weapons deal 25% increased Damage with Hits and Ailments"]={{[1]={flags=301989888,keywordFlags=786432,name="Damage",type="INC",value=25}},nil}c["50% increased Rarity of Items Dropped by Slain Shocked enemies 30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies 30% increased Rarity of Items Dropped by Slain Shocked Enemies "}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity Skills which Place Mines place up to 1 additional Mine if you have at least 500 Intelligence "}c["Enemies cannot Leech Mana from You Socketed Gems have 50% reduced Mana Cost"]={nil,"Enemies cannot Leech Mana from You Socketed Gems have 50% reduced Mana Cost "}c["12% increased Melee Physical Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["1% of Attack Damage leeched as Life against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Cannot be Stunned by Attacks if your other Ring is an Elder Item"]={nil,"Cannot be Stunned by Attacks if your other Ring is an Elder Item "}c["+10% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies"]={{[1]={flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=10}}," you inflict on Bleeding Enemies "}c["10% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=10}},nil}c["Gain a Spirit Charge every second"]={nil,"Gain a Spirit Charge every second "}c["Attacks with this Weapon have 115% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=115}},nil}c["2% increased Minion Attack and Cast Speed per Skeleton you own"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}}}," Minion per you own "}c["Elemental Hit deals 13% increased Damage"]={{[1]={[1]={skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=13}},nil}c["Herald Skills deal 40% increased Damage"]={nil,"Herald Skills deal 40% increased Damage "}c["6% chance to Dodge Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=6}},nil}c["60% increased Damage with Hits and Ailments against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=60}},nil}c["100% increased Totem Duration"]={{[1]={flags=0,keywordFlags=0,name="TotemDuration",type="INC",value=100}},nil}c["Bow Skills have +10% to Damage over Time Multiplier Bow Skills have 20% increased Skill Effect Duration"]={nil,"Bow Skills have +10% to Damage over Time Multiplier Bow Skills have 20% increased Skill Effect Duration "}c["Cannot Leech Life from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="CannotLeechLife",type="FLAG",value=true}},nil}c["Critical Strikes inflict Scorch, Brittle and Sapped"]={nil,"Critical Strikes inflict Scorch, Brittle and Sapped "}c["50% reduced Effect of Curses on You"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-50}},nil}c["8% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["15% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["40% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=40}},nil}c["20% increased Onslaught Effect"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=20}},nil}c["20% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=20}},nil}c["Golems have 45% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=45}}}},nil}c["20% increased Golem Damage per Summoned Golem 35% chance to Avoid Elemental Ailments per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," per Summoned Golem 35% chance to Avoid Elemental Ailments per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems "}c["5% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}},nil}c["Gain a Frenzy Charge if an Attack Ignites an Enemy"]={nil,"Gain a Frenzy Charge if an Attack Ignites an Enemy "}c["8% increased Accuracy Rating with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["40% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=40}},nil}c["+30 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=30}},nil}c["Poisonous Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["Cannot Leech when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="CannotLeechLife",type="FLAG",value=true},[2]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="CannotLeechMana",type="FLAG",value=true}},nil}c["Skills used during Flask effect grant 800% of Mana Cost as Life Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"]={nil,"Skills used during Flask effect grant 800% of Mana Cost as Life Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds "}c["Recover 25% of maximum Life when you gain Adrenaline"]={nil,"Recover 25% of maximum Life when you gain Adrenaline "}c["8% increased Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"]={nil,"Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy "}c["5% increased Stun Duration on Enemies per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=5}},nil}c["1% of Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegenPercent",type="BASE",value=1}},nil}c["Purity of Lightning has 30% increased Aura Effect"]={{[1]={[1]={skillName="Purity of Lightning",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["Culling Strike You gain Onslaught for 3 seconds on Culling Strike"]={nil,"Culling Strike You gain Onslaught for 3 seconds on Culling Strike "}c["+0.3% Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.3}},nil}c["30% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=30}},nil}c["+300 Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=300}},nil}c["10% chance to Blind with Hits against Bleeding Enemies Enemies Maimed by you take 10% increased Physical Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalDamage",type="BASE",value=10}}," to Blind Enemies Maimed by you take 10% increased "}c["Cannot gain Power Charges"]={nil,"Cannot gain Power Charges "}c["+3% to Chance to Evade while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=3}},nil}c["10% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=10}},nil}c["Trigger Level 20 Fog of War when your Trap is triggered 30% increased Fire Damage against Blinded Enemies"]={nil,"Trigger Level 20 Fog of War when your Trap is triggered 30% increased Fire Damage against Blinded Enemies "}c["Mace or Sceptre Attacks deal 10% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["70% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=70}},nil}c["Applies level 15 Temporal Chains on Blocking a Projectile Attack"]={nil,"Applies level 15 Temporal Chains on Blocking a Projectile Attack "}c["Your Curses can apply to Hexproof Enemies"]={{[1]={flags=0,keywordFlags=0,name="CursesIgnoreHexproof",type="FLAG",value=true}},nil}c["Adds 13 to 26 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=13},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=26}},nil}c["Enemies cannot Leech Mana from You"]={nil,"Enemies cannot Leech Mana from You "}c["100% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=100}},nil}c["+3 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=3}},nil}c["2.5% of Maximum Energy Shield Regenerated per Second while affected by Discipline"]={{[1]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=2.5}},nil}c["Gain 1 Rage when you Kill an Enemy"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true},[2]={[1]={type="Condition",var="CanGainRage"},flags=0,keywordFlags=0,name="Dummy",type="DUMMY",value=1}},nil}c["Adds 70 to 104 Cold Damage while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=70},[2]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=104}},nil}c["Nearby Enemies have -20% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-20}}}},nil}c["Grants Summon Harbinger of Time Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfTime"}}},nil}c["12% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["10% chance to gain a Power Charge when you Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain a Power Charge when you Block "}c["Minions gain Unholy Might for 10 seconds on Kill"]={nil,"gain Unholy Might for 10 seconds on Kill "}c["175% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=175}},nil}c["Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit "}c["Removes 20% of your maximum Energy Shield on use"]={nil,"Removes 20% of your maximum Energy Shield on use "}c["+475 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=475}},nil}c["4% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}},nil}c["100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="MORE",value=100}}," from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled "}c["28% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=28}},nil}c["8% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-8}},nil}c["-40 Chaos Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="BASE",value=-40}},nil}c["Consumes Socketed Support Gems when they reach Maximum Level"]={nil,"Consumes Socketed Support Gems when they reach Maximum Level "}c["Adds 13 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=196608,name="PhysicalMin",type="BASE",value=13},[2]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=196608,name="PhysicalMax",type="BASE",value=16}},nil}c["Create Consecrated Ground when you Shatter an Enemy 40% increased Effect of Chilled Ground"]={nil,"Create Consecrated Ground when you Shatter an Enemy 40% increased Effect of Chilled Ground "}c["Adds 25 to 36 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=36}},nil}c["450% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=450}},nil}c["Area Skills have 10% chance to Knock Enemies Back on Hit"]={nil,"Area Skills have 10% chance to Knock Enemies Back on Hit "}c["210% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=210}},nil}c["If you've Impaled an Enemy Recently, you"]={nil,"If you've Impaled an Enemy Recently, you "}c["20% reduced Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-20}},nil}c["60% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=60}},nil}c["+210 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=210}},nil}c["Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage"]={nil,"Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently Cannot take Reflected Physical Damage "}c["Attacks with One Handed Weapons deal 20% increased Damage with Ailments"]={{[1]={flags=134219776,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Extra gore Can't use Chest armour"]={nil,"Extra gore Can't use Chest armour "}c["24% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=24}},nil}c["Regenerate 8 Life over 1 second for each Spell you Cast"]={nil,"Regenerate 8 Life over 1 second for each Spell you Cast "}c["2% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["12% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=12}},nil}c["Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3"]={nil,"Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 "}c["150% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=150}},nil}c["+100 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=100}},nil}c["12% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=12},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=12}},nil}c["Minions have 5% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=5}}}},nil}c["Recover 25% of Life and Mana when you use a Warcry"]={nil,"Recover 25% of Life and Mana when you use a Warcry "}c["+25 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=25}},nil}c["You can only have one Non-Banner Aura with no Duration on you from your Skills Non-Banner, Non-Mine Aura Skills reserve no Mana"]={nil,"You can only have one Non-Banner Aura with no Duration on you from your Skills Non-Banner, Non-Mine Aura Skills reserve no Mana "}c["40% of Cold Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=40}},nil}c["100% reduced Conductivity Mana Reservation"]={{[1]={[1]={skillName="Conductivity",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["+50 to Total Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=50}},nil}c["15% chance to create Chilled Ground when you Freeze an Enemy Create Consecrated Ground when you Shatter an Enemy"]={{}," to create Chilled Ground when you Freeze an Enemy Create Consecrated Ground when you Shatter an Enemy "}c["8% increased Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["13% increased Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=13}},nil}c["Cannot Ignite, Chill, Freeze or Shock Critical Strikes inflict Scorch, Brittle and Sapped"]={nil,"Cannot Ignite, Chill, Freeze or Shock Critical Strikes inflict Scorch, Brittle and Sapped "}c["270% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=270}},nil}c["4% increased Attack Speed with Claws"]={{[1]={flags=262149,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["4% additional Physical Damage Reduction while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}},nil}c["18% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=18}},nil}c["120% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=120}}," while you have Avatar of Fire "}c["Flasks apply to your Zombies and Spectres"]={{[1]={[1]={skillNameList={[1]="Raise Zombie",[2]="Raise Spectre"},type="SkillName"},flags=0,keywordFlags=0,name="FlasksApplyToMinion",type="FLAG",value=true}},nil}c["With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks "}c["40% increased Cold Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ColdDamage",type="INC",value=40}},nil}c["Golems have 15% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}}}},nil}c["400% increased Energy Shield Recharge Rate during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=400}},nil}c["+12% to Damage over Time Multiplier for Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="DotMultiplier",type="BASE",value=12}},nil}c["Damage Penetrates 20% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=20}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you "}c["Enemies you kill are Shocked Shocks you inflict spread to other Enemies within a Radius of 15"]={nil,"Enemies you kill are Shocked Shocks you inflict spread to other Enemies within a Radius of 15 "}c["+50 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=50}},nil}c["Socketed Gems fire an additional Projectile"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}}}},nil}c["Adds 35 to 130 Lightning Damage to Attacks during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=35},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=130}},nil}c["20% increased Damage per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["+6% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil}c["Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={nil,"Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["20% chance to Trigger Level 20 Tentacle Whip on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TentacleSmash"}}},nil}c["35% chance to Avoid Elemental Ailments per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=35},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=35},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=35}}," per Summoned 25% increased Effect of Buffs granted by your Golems per Summoned Golem "}c["12% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=12}},nil}c["60% more Attack Speed while you are Unencumbered 14 to 20 Added Attack Physical Damage per 10 Dexterity while you are Unencumbered"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=60}}," while you are Unencumbered 14 to 20 Added Attack Physical Damage while you are Unencumbered "}c["Socketed Golem Skills have 5% Life Regenerated per second"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}}}},nil}c["Warcries Knock Enemies Back in an Area"]={nil,"Warcries Knock Enemies Back in an Area "}c["15% increased Attack Speed with Wands"]={{[1]={flags=8388613,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["25% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil}c["Right ring slot: 40% reduced Reflected Physical Damage taken Right ring slot: 80% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-40}}," Reflected Right ring slot: 80% reduced Reflected Physical Damage taken "}c["15% increased Effect of Non-Curse Auras from your Skills on Enemies"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=15}},nil}c["40% of Melee Physical Damage taken reflected to Attacker"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="BASE",value=40}}," taken reflected to Attacker "}c["Adds 15 to 30 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=15},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=30}},nil}c["+2 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=2}},nil}c["28% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=28}},nil}c["50% chance to Cast a Socketed Lightning Spell on Hit"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,name="SupportUniqueMjolnerLightningSpellsCastOnHit"}}},nil}c["+5 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=5}},nil}c["1% increased Attack Damage per 300 of the lowest of Armour and Evasion Rating"]={{[1]={[1]={div=300,stat="LowestOfArmourAndEvasion",type="PerStat"},flags=1,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["+3 to Level of all Fire Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="fire",[3]="active_skill"},value=3}}},nil}c["40% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=40}},nil}c["+7% to All Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=7}},nil}c["Left ring slot: 40% reduced Reflected Elemental Damage taken Left ring slot: 80% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-40}}," Reflected Left ring slot: 80% reduced Reflected Elemental Damage taken "}c["300% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=300}},nil}c["15% increased Movement Speed while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["165% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=165}},nil}c["220% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=220}},nil}c["20% increased Critical Strike Chance with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritChance",type="INC",value=20}},nil}c["Regenerate 1.50% of Life per second while Burning"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}}," while Burning "}c["45% increased Projectile Attack Damage while you have at least 200 Dexterity"]={{[1]={[1]={stat="Dex",threshold=200,type="StatThreshold"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=45}},nil}c["+470 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=470}},nil}c["50% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}},nil}c["1% of Energy Shield Regenerated per second for each Enemy you or your Minions have Killed Recently, up to 10%"]={{[1]={[1]={limit=10,limitTotal=true,type="Multiplier",varList={[1]="EnemyKilledRecently",[2]="EnemyKilledByMinionsRecently"}},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["+1 to maximum Energy Shield per 6 Evasion Rating on Body Armour"]={{[1]={[1]={div=6,stat="EvasionOnBody Armour",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil}c["100% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=100}},nil}c["and your Totems to each gain an Endurance Charge"]={nil,"and your Totems to each gain an Endurance Charge "}c["Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell"]={nil,"Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell "}c["10% chance to Blind Enemies on Critical Strike"]={{}," to Blind Enemies "}c["4% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=4}},nil}c["25% chance to gain a Power Charge on Critical Strike 6% reduced Mana Reserved"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="ManaReserved",type="BASE",value=25}}," to gain a Power Charge 6% reduced "}c["+30% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["+8% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=8}},nil}c["20% increased Bleeding Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=20}},nil}c["10% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit"]={{}," to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit "}c["+100 Mana Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=100}},nil}c["Applies level 15 Elemental Weakness on Blocking a Spell"]={nil,"Applies level 15 Elemental Weakness on Blocking a Spell "}c["99% of Sword Physical Damage Added as Fire Damage"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=99}},nil}c["36% increased Cast Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=16,keywordFlags=0,name="Speed",type="INC",value=36}},nil}c["20% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=20}},nil}c["12% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time "}c["+35% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=35}},nil}c["Cannot Leech Life"]={{[1]={flags=0,keywordFlags=0,name="CannotLeechLife",type="FLAG",value=true}},nil}c["Minions have 7% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=7}}}},nil}c["22% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=22}},nil}c["40% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=40}},nil}c["12% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=12}},nil}c["+100% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=100}},nil}c["100% increased Damage with Poison if you have at least 300 Dexterity"]={{[1]={[1]={stat="Dex",threshold=300,type="StatThreshold"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=100}},nil}c["20% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=20}},nil}c["16% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=16}},nil}c["Shocks from your Hits always increase Damage taken by at least 10%"]={nil,"Shocks from your Hits always increase Damage taken by at least 10% "}c["20% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HavePhysicalGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[2]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveLightningGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[3]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveColdGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[4]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveFireGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}},[5]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveChaosGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}},nil}c["+7% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=7}},nil}c["Socketed Gems are Supported by Level 10 Lesser Poison"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportLesserPoison"}}},nil}c["10% reduced Character Size"]={{}," Character Size "}c["+20% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=20}}," Non-Ailment "}c["10% increased Effect of Flasks on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}},nil}c["+16% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=16}},nil}c["-5% to all Resistances for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-5},[2]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-5}},nil}c["12 Mana Regenerated per Second while you have Avian's Flight"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sFlight"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=12}},nil}c["2% of Attack Damage Leeched as Life against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=2}},nil}c["Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit"]={nil,"Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit "}c["30% increased Damage with Maces, Sceptres or Staves"]={{[1]={[1]={modFlags=3145728,type="ModFlagOr"},flags=4,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["6% increased Burning Damage for each Enemy you have Shocked Recently"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=6}}," for each Enemy you have Shocked Recently "}c["25% increased Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=25}},nil}c["20% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20}},nil}c["Socketed Gems are Supported by level 1 Controlled Destruction"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportControlledDestruction"}}},nil}c["15% increased Area of Effect if you have Stunned an Enemy Recently 18% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="AreaOfEffect",type="INC",value=15}}," if you have Stunned an Enemy Recently 18% increased Damage "}c["30% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["70% increased Damage with Hits and Ailments against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=70}},nil}c["10% chance of Arrows Piercing Arrows Pierce an additional Target"]={{}," of Arrows Piercing Arrows Pierce an additional Target "}c["260% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=260}},nil}c["10% increased Accuracy Rating with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["Socketed Gems are Supported by level 15 Increased Minion Life"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportMinionLife"}}},nil}c["0.5% of Attack Damage Leeched as Life against Maimed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Maimed"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=0.5}},nil}c["50% increased Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=50}},nil}c["50% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=50}},nil}c["40% reduced Effect of Curses on You"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-40}},nil}c["5% chance to Dodge Attack Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5}},nil}c["Projectiles Pierce 2 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=2}},nil}c["20% chance to Poison on Hit with Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="PoisonChance",type="BASE",value=20}}," with Damage "}c["15% increased Movement Speed while affected by Grace"]={{[1]={[1]={type="Condition",var="AffectedByGrace"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Detonating Mines is Instant"]={nil,"Detonating Mines is Instant "}c["20% increased Cooldown Recovery Speed of Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="CooldownRecovery",type="INC",value=20}},nil}c["+100 to Maximum Life per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,keywordFlags=0,name="Life",type="BASE",value=100}},nil}c["10% chance to Freeze, Shock and Ignite while affected by a Herald 25% increased Elemental Damage while affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}}," while affected by a Herald 25% increased Elemental Damage while affected by a Herald "}c["+25% chance to be Ignited 125 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Life",type="BASE",value=25}}," to be Ignited 125 Regenerated per second "}c["Deals 50 Chaos Damage per second to nearby Enemies"]={nil,"Deals 50 Chaos Damage per second to nearby Enemies "}c["+325 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=325}},nil}c["15% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["+140 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=140}},nil}c["When you Kill an Enemy, for each Curse on that Enemy, gain 8% of Non-Chaos Damage as extra Chaos Damage for 4 seconds"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=8}},nil}c["13% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=13}},nil}c["Adds 25 to 50 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=25},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=50}},nil}c["You can't deal Damage with Skills yourself"]={nil,"You can't deal Damage with Skills yourself "}c["100% reduced Arctic Armour Mana Reservation"]={{[1]={[1]={skillName="Arctic Armour",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["60% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["60% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=60}},nil}c["Your Physical Damage can Shock"]={{[1]={flags=0,keywordFlags=0,name="PhysicalCanShock",type="FLAG",value=true}},nil}c["You have Fortify"]={{[1]={flags=0,keywordFlags=0,name="Condition:Fortify",type="FLAG",value=true}},nil}c["30% reduced Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=-30}},nil}c["Socketed Gems are Supported by Level 20 Vile Toxins"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportDebilitate"}}},nil}c["10% chance to gain a Power Charge when you Shock a Chilled Enemy 25% increased Cold Damage with Hits against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="ColdDamage",type="BASE",value=10}}," to gain a Power Charge when you Shock a Chilled Enemy 25% increased "}c["30% chance to gain an Endurance Charge when you are Hit"]={{}," to gain an Endurance Charge when you are Hit "}c["150% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=150}},nil}c["Adds 35 to 70 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=70}},nil}c["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled "}c["30% reduced Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-30}},nil}c["12 to 14 Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=12},[2]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=14}},nil}c["50% increased Life Recovery Rate if you've taken Fire Damage from an Enemy Hit Recently"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=50}}," if you've taken Fire Damage from an Enemy Hit Recently "}c["8% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=8}},nil}c["0.2% of Fire Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=0.2}},nil}c["40% chance to Avoid being Ignited"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=40}},nil}c["+8% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=8}},nil}c["5% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}c["25% increased Critical Strike Chance with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["+2000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=2000}}," while you do not have Avatar of Fire "}c["Spectres do not travel between Areas"]={nil,"Spectres do not travel between Areas "}c["10% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["12% increased Elemental Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["8% chance to Avoid being Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=8}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Raised Zombies"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Raised Zombies "}c["+100 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=100}},nil}c["16% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=16}},nil}c["Gain 20% of Physical Damage as Extra Chaos Damage against Poisoned Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=0,keywordFlags=262144,name="PhysicalDamageGainAsChaos",type="BASE",value=20}},nil}c["Grants Level 25 Purity of Fire Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="FireResistAura"}}},nil}c["You can only have one Permanent Non-Banner Aura on you from your Skills"]={nil,"You can only have one Permanent Non-Banner Aura on you from your Skills "}c["Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing"]={nil,"Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing "}c["350% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=350}},nil}c["10% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["10% increased Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=10}},nil}c["110% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=110}},nil}c["5% chance to double Stun Duration 14% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="EnemyStunDuration",type="BASE",value=5}}," to double 14% increased Damage "}c["You lose all Spirit Charges when taking a Savage Hit"]={nil,"You lose all Spirit Charges when taking a Savage Hit "}c["+200 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=200}},nil}c["3% increased Character Size 6% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=3}}," Character Size 6% increased "}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds "}c["40% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil}c["Non-Critical Strikes Penetrate 10% of Enemy Elemental Resistances"]={{[1]={[1]={neg=true,type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=10}},nil}c["+18% to Damage over Time Multiplier for Ailments from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=2048,keywordFlags=0,name="DotMultiplier",type="BASE",value=18}},nil}c["15% increased Physical Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["1% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["Lose all Power Charges on reaching Maximum Power Charges Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges Gain a Frenzy Charge on reaching Maximum Power Charges "}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of Non-Damaging Ailments"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of Non-Damaging Ailments "}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 10% increased Attack Speed If you've Warcried Recently, you and nearby allies deal 30% increased Damage"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 10% increased Attack Speed If you've Warcried Recently, you and nearby allies deal 30% increased Damage "}c["12% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["-30% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-30}},nil}c["15% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=15}},nil}c["Deals 50 Chaos Damage per second to nearby Enemies 20% increased Projectile Damage"]={nil,"Deals 50 Chaos Damage per second to nearby Enemies 20% increased Projectile Damage "}c["-4% to all Resistances for each Equipped Corrupted Item"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-4},[2]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-4}},nil}c["Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={nil,"Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield "}c["Increases and Reductions to Minion Attack Speed also affect you"]={{[1]={flags=0,keywordFlags=0,name="MinionAttackSpeedAppliesToPlayer",type="FLAG",value=true}},nil}c["Adds 22 to 37 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=37}},nil}c["25% reduced effect of Offerings"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-25}}," of Offerings "}c["50% reduced Experience gain 0.4% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=-50}}," Experience gain 0.4% of Leeched as Mana "}c["Grants Level 10 Frostblink Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="IceDash"}}},nil}c["You and Allies affected by Auras from your Skills deal 30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="AffectedByAuraMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}}},nil}c["+40 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}},nil}c["20% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Gain a Power Charge after spending a total of 200 Mana"]={nil,"Gain a Power Charge after spending a total of 200 Mana "}c["10% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=10}},nil}c["100% increased Ignite Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=100}}," on You "}c["20% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["10% reduced Mana Reservation of Herald Skills"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-10}},nil}c["+24% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=24}},nil}c["15% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["80% reduced Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=-80}},nil}c["Discipline has 60% increased Aura Effect"]={{[1]={[1]={skillName="Discipline",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["10% increased Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Minions have +5% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}}}},nil}c["250% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=250}},nil}c["Trigger Level 20 Icicle Burst when you Kill a Frozen Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TriggeredIcicleNova"}}},nil}c["5 Maximum Void Charges"]={nil,"5 Maximum Void Charges "}c["During Flask Effect, Damage Penetrates 15% Resistance of each Element for which your"]={{},", Damage Resistance of each Element for which your "}c["170% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=170}},nil}c["10% increased Brand Activation frequency"]={{[1]={flags=0,keywordFlags=0,name="BrandActivationFrequency",type="INC",value=10}},nil}c["Leech applies instantly on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantManaLeech",type="FLAG",value=true}},nil}c["to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground"]={nil,"to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground "}c["Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy"]={nil,"Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy "}c["Passives granting Cold Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Frenzy Charge on Kill"]={nil,"Passives granting Cold Resistance or all Elemental Resistances in Radius also grant an equal chance to gain a Frenzy Charge on Kill "}c["20% chance to gain a Power Charge on Kill 20% chance to gain a Endurance Charge on Kill"]={{}," to gain a Power Charge on Kill 20% chance to gain a Endurance Charge on Kill "}c["Gems Socketed in Green Sockets have +10% to Quality"]={nil,"Gems Socketed in Green Sockets have +10% to Quality "}c["25% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Damage from an Enemy Hit Recently"]={nil,"Damage from an Enemy Hit Recently "}c["Cannot Ignite, Chill, Freeze or Shock"]={nil,"Cannot Ignite, Chill, Freeze or Shock "}c["+50% Global Critical Strike Multiplier while you have no Frenzy Charges"]={{[1]={[1]={type="Global"},[2]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}},nil}c["10% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+20 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=20}},nil}c["Totems gain +10% to all Elemental Resistances"]={nil,"Totems gain +10% to all Elemental Resistances "}c["45% increased Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=45}},nil}c["15% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil}c["+125 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=125}},nil}c["Herald of Purity has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["Grace Reserves no Mana"]={{[1]={[1]={skillId="Grace",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["35% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=35}},nil}c["30% chance to Blind Enemies on Critical Strike Causes Bleeding on Melee Critical Strike"]={{}," to Blind Enemies Causes Bleeding on Critical Strike "}c["Enemies near corpses you Spawned Recently are Chilled and Shocked Corpses you Spawn have 50% increased Maximum Life"]={nil,"Enemies near corpses you Spawned Recently are Chilled and Shocked Corpses you Spawn have 50% increased Maximum Life "}c["20% chance for Poisons inflicted with this Weapon to deal 300% more Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=1048576,name="Damage",type="BASE",value=20}}," s inflicted to deal 300% more "}c["Life Leech effects are not removed at Full Life 50% increased Attack Damage while Leeching"]={nil,"Life Leech effects are not removed at Full Life 50% increased Attack Damage while Leeching "}c["Adds 12 to 15 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=12},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=15}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life "}c["10% chance to gain a Power Charge on Kill"]={{}," to gain a Power Charge on Kill "}c["30% Chance to gain Unholy Might on Block for 3 seconds You gain Unholy Might for 10 seconds on Block"]={{}," to gain Unholy Might on Block for 3 seconds You gain Unholy Might for 10 seconds on Block "}c["+1 to Level of all Fire Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="fire",[3]="active_skill"},value=1}}},nil}c["18% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=18}},nil}c["12% increased Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["+5 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=5}},nil}c["With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy."]={nil,"With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. "}c["20% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=20}},nil}c["280% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=280}},nil}c["50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills"]={{[1]={flags=0,keywordFlags=262144,name="FlaskEffect",type="MORE",value=50}}," of Herald Buffs on you 100% more Damage from Herald Skills 50% more Damage Over Time with Herald Skills "}c["Adds 50 to 100 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=50},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=100}},nil}c["10% chance to gain an Endurance Charge on Melee Critical Strike +2 to Melee Strike Range with Staves"]={{[1]={flags=256,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=10},[2]={flags=256,keywordFlags=0,name="UnarmedRange",type="BASE",value=10}}," to gain an Endurance Charge on Critical Strike +2 to with Staves "}c["Axe Attacks deal 16% increased Damage with Ailments"]={{[1]={flags=67584,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["8% increased Cast Speed while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=16,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["60% chance to Avoid Blind 5% reduced Damage taken from Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=60}}," to Avoid Blind 5% reduced "}c["+10 Life Gained on Killing Ignited Enemies 25% reduced Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}}," ing Ignited Enemies 25% reduced Ignite Duration "}c["30% increased Bleeding Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=30}},nil}c["+460 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=460}},nil}c["Adds 23 to 83 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=83}},nil}c["Adds 14 to 23 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=23}},nil}c["Debuffs on you expire 20% faster"]={nil,"Debuffs on you expire 20% faster "}c["+15% chance to Avoid Elemental Damage from Hits while Phasing You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=15}}," to Avoid from Hits You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently "}c["Enemies Killed with Attack Hits have a 15% chance to Explode, dealing a tenth of their Life as Physical Damage"]={nil,"Enemies Killed with Attack Hits have a 15% chance to Explode, dealing a tenth of their Life as Physical Damage "}c["Your Offerings have 25% reduced Effect on you"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"},type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="BuffEffectOnPlayer",type="INC",value=-25}}}},nil}c["Nearby Enemies have 15% less Accuracy Rating while you have Phasing"]={nil,"Nearby Enemies have 15% less Accuracy Rating while you have Phasing "}c["Adds 24 to 36 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=36}},nil}c["Each Mine applies 2% increased Damage taken to Enemies near it, up to 10%"]={nil,"Each Mine applies 2% increased Damage taken to Enemies near it, up to 10% "}c["Adds 19 to 43 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=19},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=43}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["Adds 40 to 73 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=73}},nil}c["50% increased Convocation Cooldown Recovery Speed"]={{[1]={[1]={skillName="Convocation",type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=50}},nil}c["Minions have 25% chance to gain Unholy Might for 4 seconds on Kill Minions gain 10% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=25}}}}," to gain Unholy Might for 4 seconds on Kill Minions gain 10% of as Extra Maximum Energy Shield "}c["30% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=30}},nil}c["50% increased Melee Critical Strike Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["10% reduced Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-10}},nil}c["10% increased Attack Speed with Swords"]={{[1]={flags=4194309,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Cannot be Knocked Back"]={nil,"Cannot be Knocked Back "}c["Socketed Gems are Supported by Level 15 Added Chaos Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportAddedChaosDamage"}}},nil}c["20% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=20}},nil}c["Spectres have 900% increased Critical Strike Chance"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=900}}}},nil}c["80% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=80}},nil}c["15% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=15}},nil}c["-5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-5}},nil}c["30% chance to Avoid being Frozen"]={{[1]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=30}},nil}c["You and nearby allies have 20% increased Attack, Cast and Movement Speed if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}},[2]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}}},nil}c["3% of Attack Damage leeched as Life against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=3}},nil}c["1% increased Maximum Mana per Abyss Jewel affecting you"]={{[1]={[1]={type="Multiplier",var="AbyssJewel"},flags=0,keywordFlags=0,name="Mana",type="INC",value=1}},nil}c["+9% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=9}},nil}c["20% increased Totem Duration"]={{[1]={flags=0,keywordFlags=0,name="TotemDuration",type="INC",value=20}},nil}c["Lose 0.1% of maximum Life per second per Rage while you are not losing Rage"]={nil,"Lose 0.1% of maximum Life per second per Rage while you are not losing Rage "}c["100 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["40% increased Rarity of Items Dropped by Frozen Enemies"]={{}," Rarity of Items Dropped by Frozen Enemies "}c["Cold Skills have a 25% chance to apply Cold Exposure on Hit Fire Skills have a 25% chance to apply Fire Exposure on Hit"]={nil,"a 25% chance to apply Cold Exposure on Hit Fire Skills have a 25% chance to apply Fire Exposure on Hit "}c["1% of Damage Leeched as Energy Shield against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="DamageEnergyShieldLeech",type="BASE",value=1}},nil}c["Counts as all One Handed Melee Weapon Types"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="countsAsAll1H",value=true}}},nil}c["15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=15}}," to gain a Power Charge if you or your s kill an Enemy 5% reduced "}c["30% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=30}},nil}c["10% additional Chance to receive a Critical Strike"]={{}," to receive a Critical Strike "}c["Adds 240 to 325 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=240},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=325}},nil}c["8 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=8}},nil}c["16% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=16}},nil}c["80% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="INC",value=80}},nil}c["35% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=35}},nil}c["160% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=160}},nil}c["240% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=240}},nil}c["+6% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil}c["30% reduced Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=-30}},nil}c["Cannot inflict Ignite"]={{[1]={flags=0,keywordFlags=0,name="CannotIgnite",type="FLAG",value=true}},nil}c["16% increased Accuracy Rating with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil}c["Adds 25 to 35 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=35}},nil}c["Gain a Challenger Charge when you Kill an Enemy while in Sand Stance"]={nil,"Gain a Challenger Charge when you Kill an Enemy while in Sand Stance "}c["20% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=20}},nil}c["+15% to Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}},nil}c["Attacks with this Weapon deal 100 to 200 added Fire Damage to Bleeding Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="FireMin",type="BASE",value=100},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="FireMax",type="BASE",value=200}},nil}c["You and Allies affected by your Aura Skills deal 20% increased Damage 10% more Damage while you have at least one nearby Ally Herald of Purity has 40% increased Buff Effect Summoned Sentinels of Purity have 50% increased Area of Effect"]={nil,"You and Allies affected by your Aura Skills deal 20% increased Damage 10% more Damage while you have at least one nearby Ally Herald of Purity has 40% increased Buff Effect Summoned Sentinels of Purity have 50% increased Area of Effect "}c["0.5% of Maximum Life Regenerated per second while affected by a Guard Skill Buff"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}}," while affected by a Guard Skill Buff "}c["+2 to Melee Weapon and Unarmed Attack range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}c["25% chance to Taunt on Hit"]={{}," to Taunt on Hit "}c["30% increased Zombie Resistances 25% increased Zombie Size"]={{}," Resistances 25% increased Zombie Size "}c["Every 5 seconds, remove Curses and Elemental Ailments from you Every 5 seconds, Regenerate 30% of Life over one second"]={nil,"Every 5 seconds, remove Curses and Elemental Ailments from you Every 5 seconds, Regenerate 30% of Life over one second "}c["3% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil}c["40% increased Global Evasion Rating when on Full Life"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil}c["18% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=18}},nil}c["17 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=17}},nil}c["5% chance to gain Onslaught for 3 seconds on Kill"]={{}," to gain Onslaught for 3 seconds on Kill "}c["+15 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=15}},nil}c["+2 to Melee Strike Range with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={flags=2097156,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}c["25% increased Damage for each Magic Item Equipped"]={{[1]={[1]={type="Multiplier",var="MagicItem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["40% increased Damage if you've taken no Damage from Hits Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["10% chance to create a Smoke Cloud when Hit 25% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit 25% chance to create a Smoke Cloud when Hit "}c["30% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=30}},nil}c["You and nearby Allies deal 4 to 8 added Physical Damage for each Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4}}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}}}}," for each Impale on Enemy "}c["+600 Armour if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=600}},nil}c["Lose 7% of maximum Mana per Second"]={{[1]={[1]={stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="ManaDegen",type="BASE",value=0.07}},nil}c["+170 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=170}},nil}c["Raging Spirits' Hits always Ignite"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=100}}}},nil}c["15% increased Critical Strike Chance with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["70% increased Damage while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["8% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=8}},nil}c["3% increased Attack Speed with Swords"]={{[1]={flags=4194309,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Minions have +325 to Armour"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=325}}}},nil}c["15% chance to deal Double Damage if you've Warcried in the past 8 seconds"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=15}}," if you've Warcried in the past 8 seconds "}c["10% increased Attack Speed if you've Hit with your Main Hand Weapon Recently 10% increased Movement Speed if you've Hit with your Off Hand Weapon Recently"]={{[1]={flags=8193,keywordFlags=0,name="Speed",type="INC",value=10}}," if you've Hit with your Main Hand Recently 10% increased Movement Speed if you've Hit with your Off Hand Weapon Recently "}c["Recover 5% of Maximum Energy Shield on Kill"]={nil,"Recover 5% of Maximum Energy Shield on Kill "}c["15% increased Attack Speed with Movement Skills"]={{[1]={flags=1,keywordFlags=8,name="Speed",type="INC",value=15}},nil}c["Nearby Allies' Damage with Hits is Lucky"]={nil,"Nearby Allies' Damage with Hits is Lucky "}c["25% chance to create a Smoke Cloud when Hit 40% increased Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="Damage",type="BASE",value=25}}," to create a Smoke Cloud when Hit 40% increased "}c["Minions gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}}}},nil}c["Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit"]={nil,"Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit "}c["20% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Transfiguration of Soul"]={{[1]={flags=0,keywordFlags=0,name="TransfigurationOfSoul",type="FLAG",value=true}},nil}c["150% increased Rarity of Items Dropped by Slain Magic Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies "}c["+2 to Level of all Fire Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="fire",[3]="active_skill"},value=2}}},nil}c["14% increased Elemental Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="ElementalDamage",type="INC",value=14}},nil}c["With at least 40 Intelligence in Radius, Cold Snap has a 50% chance to grant a Power Charge on Kill With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area"]={nil,"With at least 40 Intelligence in Radius, Cold Snap has a 50% chance to grant a Power Charge on Kill With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area "}c["do not have Adrenaline Recover 25% of Life when you gain Adrenaline"]={nil,"do not have Adrenaline Recover 25% of Life when you gain Adrenaline "}c["30% increased Elemental Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Shocks from your Hits always increase Damage taken by at least 20% "}c["Adds 173 to 213 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=173},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=213}},nil}c["170% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=170}},nil}c["40% reduced Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-40}},nil}c["18% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=18}},nil}c["30% increased Critical Strike Chance against Enemies on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=30}},nil}c["+20 to Maximum Blitz Charges"]={{[1]={flags=0,keywordFlags=0,name="BlitzChargesMax",type="BASE",value=20}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of Life when you gain Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of Life when you gain Adrenaline "}c["135% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=135}},nil}c["190% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=190}},nil}c["235% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=235}},nil}c["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},[3]={type="Condition",var="HaveBestialMinion"},[4]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to Maim on Hit from Attacks have 20% chance to Poison on Hit "}c["Gain a Flask Charge when you deal a Critical Strike"]={nil,"Gain a Flask Charge when you deal a Critical Strike "}c["Returning Projectiles Pierce all Targets"]={nil,"Returning Projectiles Pierce all Targets "}c["+1 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=1}},nil}c["+85 to Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=85}},nil}c["Attack Skills deal 14% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["Attack Skills deal 15% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["30% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}c["Attack Skills deal 10% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["113% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=113}},nil}c["Attack Skills deal 12% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["Summoned Sentinels use Crusade Slam"]={nil,"Summoned Sentinels use Crusade Slam "}c["Every 5 seconds, Regenerate 30% of Life over one second"]={nil,"Every 5 seconds, Regenerate 30% of Life over one second "}c["Hits with this Weapon always inflict Elemental Ailments"]={nil,"Hits with this Weapon always inflict Elemental Ailments "}c["15 Mana Regenerated per second if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=15}},nil}c["Trigger a Socketed Spell when you Use a Skill"]={nil,"Trigger a Socketed Spell when you Use a Skill "}c["16% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=0,keywordFlags=786944,name="Damage",type="INC",value=50}},nil}c["30% increased Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes"]={{}," Attack, Cast and Movements Speed while you do not have Iron Reflexes You have Far Shot while you do not have Iron Reflexes "}c["20% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["50% chance to be inflicted with Bleeding when Hit by an Attack Gore Footprints"]={{}," to be inflicted when Hit by an Attack Gore Footprints "}c["Regenerate 0.5% of Life per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["15% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=15}},nil}c["+175 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=175}},nil}c["+16% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=16}},nil}c["25% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="PhysicalDamage",type="MORE",value=25}},nil}c["Purity of Fire Reserves no Mana"]={{[1]={[1]={skillId="FireResistAura",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["You can only have one Herald 50% more Effect of Herald Buffs on you"]={nil,"You can only have one Herald 50% more Effect of Herald Buffs on you "}c["50% chance to gain a Flask Charge when you deal a Critical Strike 30% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="BASE",value=50}}," to gain a Flask Charge when you deal a Critical Strike 30% increased "}c["20% increased Damage with Two Handed Weapons"]={{[1]={flags=268435460,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["20% increased Armour while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil}c["Minions have 100% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=100}}}},nil}c["Chaos Skills have 10% chance to Hinder Enemies on Hit, with 30% reduced Movement Speed Enemies Hindered by you take 10% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=128,name="MovementSpeed",type="BASE",value=10}}," to Hinder Enemies on Hit, with 30% reduced Enemies Hindered by you take 10% increased Chaos Damage "}c["+80 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=80}},nil}c["15% increased Physical Damage with Axes or Swords"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=4,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["30% increased Melee Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["20% increased Critical Strike Chance with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["50% less Maximum total Recovery per Second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxEnergyShieldLeechRate",type="MORE",value=-50}},nil}c["12% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=12}},nil}c["You cannot be Hindered"]={nil,"You cannot be Hindered "}c["Gain Soul Eater during Flask Effect"]={nil,"Gain Soul Eater during Flask Effect "}c["Recover 20% of your Maximum Life on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage "}c["15% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=15}},nil}c["30% increased Damage over Time while affected by a Herald"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=30}}," while affected by a Herald "}c["20% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=20}},nil}c["10% reduced Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=-10}},nil}c["Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage 25% more Damage with Bleeding"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage 25% more Damage with Bleeding "}c["20% increased Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["150% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=150}},nil}c["Adds 10 to 14 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=14}},nil}c["Adds 22 to 44 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=44}},nil}c[" Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner"]={nil," Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner "}c["+0.75% to Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.75}},nil}c["12% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["22% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=22}},nil}c["Denoted service of 8000 dekhara in the akhara of Deshret Passives in radius are Conquered by the Maraketh"]={nil,"Denoted service of 8000 dekhara in the akhara of Deshret Passives in radius are Conquered by the Maraketh "}c["+30 to Maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=30}},nil}c["50% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=50}},nil}c["40% increased Effect of Chilled Ground"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=40}}," ed Ground "}c["Adds 16 to 24 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil}c["40% increased Chaos Skill Effect Duration"]={{[1]={flags=0,keywordFlags=128,name="Duration",type="INC",value=40}},nil}c["+15% to Cold and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}},nil}c["40% more chance to Evade Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="ProjectileEvadeChance",type="MORE",value=40}},nil}c["25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=25}}," to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full "}c["+90 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=90}},nil}c["5% chance to gain a Frenzy Charge on Kill 5% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=5}}," to gain aCharge on Kill 5% increased "}c["200% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," while you have Avatar of Fire "}c["Modifiers to Critical Strike Multiplier also apply to Damage Multiplier for Ailments from Critical Strikes at 30% of their value"]={nil,"Modifiers to Critical Strike Multiplier also apply to Damage Multiplier for Ailments from Critical Strikes at 30% of their value "}c["60% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["+25 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=25}},nil}c["35% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=35}},nil}c["Your Lightning Damage can Poison"]={{[1]={flags=0,keywordFlags=0,name="LightningCanPoison",type="FLAG",value=true}},nil}c["Cannot gain Mana during effect"]={nil,"Cannot gain Mana during effect "}c["60% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=60}},nil}c["30% increased Stun Duration with Bows on Enemies"]={{[1]={flags=131076,keywordFlags=0,name="EnemyStunDuration",type="INC",value=30}},nil}c["6% chance to Avoid Fire Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=6}}," to Avoid from Hits "}c["220% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=220}},nil}c["25% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=25}},nil}c["+25% to Critical Strike Multiplier with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["Adds 18 to 56 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=18},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=56}},nil}c["-1 Physical Damage taken from Hits per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-1}}," from Hits "}c["Ailments never count as being from Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="AilmentsAreNeverFromCrit",type="FLAG",value=true}},nil}c["Minions created Recently have 30% increased Movement Speed"]={nil,"created Recently have 30% increased Movement Speed "}c["8% chance to gain a Power Charge when you Stun with Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=8}}," to gain a Power Charge when you Stun with "}c["Reflects 44 Physical Damage to Attackers on Block"]={nil,"Reflects 44 Physical Damage to Attackers on Block "}c["No Block Chance"]={{[1]={flags=0,keywordFlags=0,name="ArmourData",type="LIST",value={key="BlockChance",value=0}}},nil}c["Sockets cannot be modified +1 to Level of Socketed Gems"]={nil,"Sockets cannot be modified +1 to Level of Socketed Gems "}c["+1 to Level of Socketed Strength Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="strength",value=1}}},nil}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently 25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=60}}," for each 200 total Mana you have Spent Recently 25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000% "}c["12% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=12}},nil}c["+450 to Accuracy against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="Accuracy",type="BASE",value=450}},nil}c["Removes 1% of maximum Life on Kill"]={nil,"Removes 1% of maximum Life on Kill "}c["3% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=3}},nil}c["15% increased Accuracy Rating with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["5% increased Attack and Cast Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["15% chance to create Chilled Ground when you Freeze an Enemy"]={{}," to create Chilled Ground when you Freeze an Enemy "}c["260% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=260}},nil}c["180% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=180}},nil}c["150% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=150}},nil}c["Cannot Be Slowed to Below Base Speed"]={{[1]={flags=0,keywordFlags=0,name="ActionSpeedCannotBeBelowBase",type="FLAG",value=true}},nil}c["Enemies you Attack Reflect 100 Physical Damage to you"]={nil,"Enemies you Attack Reflect 100 Physical Damage to you "}c["5% chance to Avoid Cold Damage when Hit"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="BASE",value=5}}," to Avoid when Hit "}c["125% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=125}},nil}c["180% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=180}},nil}c["Melee Critical Strikes cause Bleeding"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["Enemies Cannot Leech Mana From You 10% of Damage taken Gained as Mana over 4 seconds when Hit"]={nil,"Enemies Cannot Leech Mana From You 10% of Damage taken Gained as Mana over 4 seconds when Hit "}c["245% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=245}},nil}c["Projectile Attack Skills have 50% increased Critical Strike Chance"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["Minions have 10% chance to Knock Enemies Back on Hit with Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=65536,name="EnemyKnockbackChance",type="BASE",value=10}}}},nil}c["+45% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie "}c["Herald Skills deal 40% increased Damage 20% increased Effect of Herald Buffs on you"]={nil,"Herald Skills deal 40% increased Damage 20% increased Effect of Herald Buffs on you "}c["Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=20}},nil}c["90% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=90}},nil}c["20% increased Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=20}},nil}c["18% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["6% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=6}},nil}c["Adds 103 to 245 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=103},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=245}},nil}c["+100 Life Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=100}},nil}c["100% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=100}},nil}c["500% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=500}},nil}c["+3 to Level of all Cold Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="cold",[3]="active_skill"},value=3}}},nil}c["Gain 200 Armour per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=200},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["+24 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=24}}," gained when you Block "}c["+450 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=450}},nil}c["6% increased Spell Damage per 5% Block Chance"]={{[1]={[1]={div=5,stat="BlockChance",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["13% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=13}},nil}c["380% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=380}},nil}c["1% reduced Elemental Damage taken when Hit per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ElementalDamageTakenWhenHit",type="INC",value=-1}},nil}c["-60% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-60}},nil}c["90% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=90}},nil}c["Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,noSupports=true,skillId="PoachersMark"}}},nil}c["Enemies near Corpses affected by your Curses are Blinded"]={nil,"Enemies near Corpses affected by your Curses are Blinded "}c["5% increased Cast Speed with Cold Skills"]={{[1]={flags=16,keywordFlags=32,name="Speed",type="INC",value=5}},nil}c["+12 to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=12}},nil}c["6% increased Attack Speed with Maces or Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["+1 to Level of all Raise Zombie Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="raise zombie",value=1}}},nil}c["8% increased Accuracy Rating with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["30% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-30}},nil}c["3% increased Attack Speed with Bows"]={{[1]={flags=131077,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Adds 65 to 155 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=65},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=155}},nil}c["While at Maximum Frenzy Charges, Attacks Poison Enemies"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=1,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["Nearby Enemies have -20% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-20}}}},nil}c["100% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["Mace or Sceptre Attacks deal 8% increased Damage with Hits and Ailments"]={{[1]={flags=1048576,keywordFlags=786432,name="Damage",type="INC",value=8}},nil}c["5% increased Mana Recovery Rate during Effect of any Mana Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=5}}," of any Mana Flask "}c["15% increased Character Size Spell Skills deal no Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=15}}," Character Size Skills deal no "}c["Adds 1 to 2 Physical Damage to Attacks per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=2}},nil}c["Cannot be Stunned while Leeching You are Unaffected by Bleeding while Leeching"]={nil,"Cannot be Stunned while Leeching You are Unaffected by Bleeding while Leeching "}c["40% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=40}},nil}c["50% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=50}},nil}c["Trigger Level 20 Elemental Warding when you Hit an Enemy while Cursed"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="OnHitWhileCursedTriggeredCurseNova"}}},nil}c["+1 to Maximum Spirit Charges per Abyss Jewel affecting you"]={{}," Maximum Spirit Charges "}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite "}c["You and nearby Allies have +30% to Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=30}}}},nil}c["20% increased Arrow Speed"]={{[1]={flags=131072,keywordFlags=0,name="ProjectileSpeed",type="INC",value=20}},nil}c["You can't deal Damage with Skills yourself +1 to maximum number of Summoned Totems"]={nil,"You can't deal Damage with Skills yourself +1 to maximum number of Summoned Totems "}c["Adds 100 to 158 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=158}},nil}c["Adds 270 to 315 Cold Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=270},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=315}},nil}c["140% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=140}},nil}c["8% reduced Damage taken while Elusive"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-8}}," while Elusive "}c["Trigger level 10 Void Gaze when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="VoidGaze"}}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["33% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=33}},nil}c["Extra Gore 10% chance to cause Bleeding on Hit"]={nil,"Extra Gore 10% chance to cause Bleeding on Hit "}c["Minions created Recently have 10% increased Attack and Cast Speed Minions created Recently have 30% increased Movement Speed"]={nil,"created Recently have 10% increased Attack and Cast Speed Minions created Recently have 30% increased Movement Speed "}c["15% increased Dexterity if Strength is higher than Intelligence"]={{[1]={[1]={type="Condition",var="StrHigherThanInt"},flags=0,keywordFlags=0,name="Dex",type="INC",value=15}},nil}c["Gain +30 Life when you Hit a Bleeding Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="LifeOnHit",type="BASE",value=30}},nil}c["+1 to Minimum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMin",type="BASE",value=1}},nil}c["500% increased Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=500},[2]={flags=0,keywordFlags=0,name="DexRequirement",type="INC",value=500},[3]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=500}},nil}c["Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits 15% chance to Impale Enemies on Hit with Attacks 5% increased Impale Effect +20 to Strength"]={nil,"Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits 15% chance to Impale Enemies on Hit with Attacks 5% increased Impale Effect +20 to Strength "}c["10% increased Damage per Freeze, Shock and Ignite on Enemy"]={{[1]={[1]={type="Multiplier",var="FreezeShockIgniteOnEnemy"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=10}},nil}c["5% chance to gain an Endurance Charge on Kill while holding a Shield"]={{}," to gain an Endurance Charge on Kill "}c["160% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=160}},nil}c["8% chance to deal Double Damage if you've dealt a Critical Strike with a Two Handed Melee Weapon Recently"]={{[1]={flags=256,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=8}}," if you've dealt a Critical Strike with a Two Handed Weapon Recently "}c["20% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=20}},nil}c["13% increased Quantity of Items found when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=13}},nil}c["Life Leech is applied to Energy Shield instead while on Full Life Gain 6% of Maximum Life as Extra Maximum Energy Shield"]={nil,"Life Leech is applied to Energy Shield instead while on Full Life Gain 6% of Maximum Life as Extra Maximum Energy Shield "}c["Socketed Gems have 10% chance to cause Enemies to Flee on Hit"]={{}," to cause Enemies to Flee on Hit "}c["+1 to maximum number of Zombies per 300 Strength"]={{[1]={[1]={div=300,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil}c["12% chance to Knock Enemies Back on hit"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=12}},nil}c["Cannot be Frozen if Dexterity is higher than Intelligence"]={{[1]={[1]={type="Condition",var="DexHigherThanInt"},flags=0,keywordFlags=0,name="AvoidFreeze",type="BASE",value=100}},nil}c["+160 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=160}},nil}c["Can Allocate Passives from the Ranger's starting point"]={{},nil}c["30% increased Cast Speed if you've Attacked Recently"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=30}},nil}c["15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy 30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy"]={{}," to gain aCharge when your is triggered by an Enemy 30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy "}c["+290 to Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="BASE",value=290}},nil}c["5% increased Experience gain"]={{}," Experience gain "}c["20% chance to Block Spells if you've Blocked an Attack Recently"]={{[1]={[1]={type="Condition",var="BlockedAttackRecently"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil}c["10% chance to gain an Endurance Charge when you Block Attack Skills deal 20% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain an Endurance Charge when you Block Attack Skills deal 20% increased "}c["+1 to Maximum Spirit Charges per Abyss Jewel affecting you Gain a Spirit Charge every second"]={{}," Maximum Spirit Charges Gain a Spirit Charge every second "}c["20% chance to Freeze, Shock and Ignite during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=20},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=20},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=20}},nil}c["Adds 29 to 45 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=29},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=45}},nil}c["20% chance to gain a Power Charge on Non-Critical Strike +1 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=20}}," to gain a Power Charge on Non-Critical Strike +1 to "}c["Take 30 Chaos Damage per Second during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=30}},nil}c["Grants maximum Energy Shield equal to 15% of your Reserved Mana to"]={nil,"Grants maximum Energy Shield equal to 15% of your Reserved Mana to "}c["-2 to Total Mana Cost of Skills for each Corrupted Item Equipped"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-2}},nil}c["30% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=30}},nil}c["Projectiles Pierce 3 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=3}},nil}c["+8 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=8}},nil}c["+2 to Level of Socketed Movement Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="movement",value=2}}},nil}c["You are Shocked during Flask effect, causing 50% increased Damage taken"]={nil,"You are Shocked during Flask effect, causing 50% increased Damage taken "}c["30% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["24% increased Elemental Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="ElementalDamage",type="INC",value=24}},nil}c["+29% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=29}},nil}c["9% Increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=9}},nil}c["Take 100 Fire Damage when you Ignite an Enemy"]={nil,"100 Fire Damage when you Ignite an Enemy "}c["30% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["30% increased Damage if you Summoned a Golem in the past 8 seconds Golems Summoned in the past 8 seconds deal 45% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," if you Summoned a in the past 8 seconds Golems Summoned in the past 8 seconds deal 45% increased Damage "}c["Adds 21 to 38 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=21},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=38}},nil}c["140% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=140}},nil}c["1% reduced Mana Reserved per 250 total attributes"]={{[1]={[1]={div=250,statList={[1]="Str",[2]="Dex",[3]="Int"},type="PerStat"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-1}},nil}c["235% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=235}},nil}c["8% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["135% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=135}},nil}c["Damage Penetrates 10% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=10}},nil}c["20% increased Critical Strike Chance with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["15% chance to gain a Power Charge when your Trap is triggered by an Enemy 15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"]={{}," to gain a Power Charge when your is triggered by an Enemy 15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy "}c["15% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["+7 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=7}},nil}c["10% chance to Impale Enemies on Hit with Axes or Swords 15% increased Physical Damage with Axes or Swords"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=4,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," to Impale Enemies on Hit 15% increased with Axes or Swords "}c["13% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=13}},nil}c["20% chance to Recover 10% of Mana when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," to Recover 10% of when you use a Skill "}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={type="Condition",var="OffHandAttack"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill 10% more while at maximum Frenzy Charges "}c["8% reduced Area Damage taken from Hits +30% to Critical Strike Multiplier against Burning Enemies 80% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},[2]={actor="enemy",type="ActorCondition",var="Shocked"},flags=512,keywordFlags=262144,name="DamageTaken",type="INC",value=-8}}," from Hits +30% to Critical Strike Multiplier 80% increased Critical Strike Chance "}c["110% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=110}},nil}c["20% increased Attack and Cast Speed while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["10% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield"]={{[1]={[1]={div=10,stat="EnergyShield",type="PerStat"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=1}}," on Shield "}c["+350 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=350}},nil}c["+160 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=160}},nil}c["1% increased Rarity of Items found per 15 Rampage Kills"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=1}}," per 15 Rampage Kills "}c["14% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["30% increased Armour while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil}c["You cannot be Shocked for 3 seconds after being Shocked You grant 6 Frenzy Charges to allies on Death"]={nil,"You cannot be Shocked for 3 seconds after being Shocked You grant 6 Frenzy Charges to allies on Death "}c["Recover 100% of your maximum Life on use"]={nil,"Recover 100% of your maximum Life on use "}c["35% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=35}},nil}c["12% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["+30% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=30}},nil}c["15% increased Area of Effect for Skills used by Totems"]={{[1]={flags=0,keywordFlags=16384,name="AreaOfEffect",type="INC",value=15}},nil}c["Allies' Aura Buffs do not affect you"]={{[1]={flags=0,keywordFlags=0,name="AlliesAurasCannotAffectSelf",type="FLAG",value=true}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 20% increased Attack Speed"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 20% increased Attack Speed "}c["20% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit 10% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20}}," to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit 10% increased "}c["Adds 10 to 20 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=10},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=20}},nil}c["20% more Damage while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=20}}," while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby "}c["Adds 15 to 25 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=15},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=25}},nil}c["18% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["8% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=8}},nil}c["Unaffected by Temporal Chains"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="MORE",value=-100}},nil}c["45% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=45}},nil}c["Bathed in the blood of 8000 sacrificed in the name of Doryani"]={nil,"Bathed in the blood of 8000 sacrificed in the name of Doryani "}c["3% increased Character Size 6% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=3}}," Character Size 6% increased "}c["25% increased Knockback Distance"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",type="INC",value=25}},nil}c["25% increased Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=25}},nil}c["10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["40% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["30% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=30}},nil}c["14% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=14}},nil}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned "}c["Adds 19 to 29 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=19},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=29}},nil}c["20% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["10% chance to gain a Power Charge on Kill 5% increased Projectile Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ProjectileSpeed",type="BASE",value=10}}," to gain a Power Charge on Kill 5% increased "}c["15% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage from Critical Strikes while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="INC",value=15}}," while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage while Elusive "}c["30% more Spell Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=2,keywordFlags=0,name="Damage",type="MORE",value=30}},nil}c["32% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=32}},nil}c["+1 to Level of Socketed Dexterity Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="dexterity",value=1}}},nil}c["Left ring slot: Projectiles from Spells cannot Chain"]={{[1]={[1]={num=1,type="SlotNumber"},flags=1026,keywordFlags=0,name="CannotChain",type="FLAG",value=true}},nil}c["Damage Penetrates 5% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=5}},nil}c["16% increased Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["Adds 8 to 16 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=8},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=16}},nil}c["15% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},nil}c["70% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["25% more Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="MORE",value=25}},nil}c["+800 Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=800}},nil}c["Gain 15 Mana per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["8% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=8}},nil}c["Gain 30 Mana per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["25% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=25}},nil}c[" Life per second for each Stage"]={nil," Life per second for each Stage "}c["+1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}},nil}c["+145 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=145}},nil}c["+210 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=210}},nil}c["35% increased Projectile Damage with Hits against Nearby Enemies"]={{[1]={flags=1024,keywordFlags=262144,name="Damage",type="INC",value=35}}," against Nearby Enemies "}c["60% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=60}},nil}c["Insufficient Mana doesn't prevent your Melee Attacks Your Physical Damage can Chill"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks Your Physical Damage can Chill "}c["10% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=10}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own "}c["15% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=15}},nil}c["20% more Damage taken if a Non-Vaal Guard Buff was lost Recently"]={{[1]={flags=0,keywordFlags=256,name="DamageTaken",type="MORE",value=20}}," if a Non- Guard Buff was lost Recently "}c["+1 to Melee Strike Range with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=524292,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy You take no Extra Damage from Critical Strikes while there is only one nearby Enemy"]={nil,"Damage from your Critical Strikes cannot be Reflected 100% increased Damage while there is only one nearby Enemy You take no Extra Damage from Critical Strikes while there is only one nearby Enemy "}c["30% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=30}},nil}c["+4% Chance to Block Spell Damage while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=4}},nil}c["Adds 36 to 50 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=36},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=50}},nil}c["18% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=18}},nil}c["Mine Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=8192,name="ElementalPenetration",type="BASE",value=10}},nil}c["40% increased Critical Strike Chance with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["+5 to Maximum Virulence"]={{}," Maximum Virulence "}c["Recover 5% of Life when a Spirit Charge expires or is consumed"]={nil,"Recover 5% of Life when a Spirit Charge expires or is consumed "}c["10% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["Eldritch Battery"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Eldritch Battery"}},nil}c["10% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["40% less Minimum Physical Attack Damage 20% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-40}}," Minimum 20% more Maximum Physical Attack Damage "}c["225% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=225}},nil}c["160% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=160}},nil}c["600% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=600}},nil}c["263% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=263}},nil}c["280% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=280}},nil}c["Recover 3% of Maximum Mana on Kill 10% increased Scorching Ray beam length"]={nil,"Recover 3% of Maximum Mana on Kill 10% increased Scorching Ray beam length "}c["100% increased Critical Strike Chance against Enemies on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=100}},nil}c["145% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=145}},nil}c["10% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["Projectiles Pierce while Phasing"]={nil,"Projectiles Pierce while Phasing "}c["8% increased Physical Damage for each time you've Blocked in the past 10 seconds 80% increased Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyInPast10Sec"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}}," for each time you've Blocked in the past 10 seconds 80% increased Physical Damage "}c["10% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil}c["25% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil}c["+35 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=35}},nil}c["Adds 20 to 30 Physical Damage to Attacks if you've"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=30}}," if you've "}c["+6 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=6}},nil}c["25% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["400% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=400}},nil}c["12% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=12}},nil}c["80% less Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="MORE",value=-80}},nil}c["equal to 25% of Sacrificed Mana for 4 seconds"]={nil,"equal to 25% of Sacrificed Mana for 4 seconds "}c["Gain a Divine Charge on Hit"]={nil,"Gain a Divine Charge on Hit "}c["Adds 1 to 3 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=3}},nil}c["30% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil}c["+5% to Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=5}},nil}c["160% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=160}},nil}c["10% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=10}},nil}c["30% increased Melee Critical Strike Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["Grants Level 20 Aspect of the Crab Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="CrabAspect"}}},nil}c["20% less Damage taken if you have not been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-20}},nil}c["4% increased Attack Speed with Maces and Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["+250 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=250}},nil}c["+5% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil}c["20% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit"]={{}," to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit "}c["20% increased Effect of Auras on your Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=20}}}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 5% increased Damage per Frenzy Charge 5% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Multiplier",var="PowerCharge"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 5% increased 5% increased Damage "}c["Maximum Life becomes 1, Immune to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosInoculation",type="FLAG",value=true}},nil}c["30 Energy Shield gained for each Enemy Hit while affected by Discipline"]={nil,"30 Energy Shield gained for each Enemy Hit while affected by Discipline "}c["125 Life Regenerated per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=125}},nil}c["80% increased Critical Strike Chance against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=80}},nil}c["Socketed Gems are Supported by level 30 Generosity"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportGenerosity"}}},nil}c["10% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=10}},nil}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks You and nearby Allies have 8% increased Movement Speed "}c["Crimson Dance"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Crimson Dance"}},nil}c["+50 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=50}},nil}c["Adds 1 to 30 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=30}},nil}c["Socketed Gems are Supported by Level 18 Ice Bite"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportFrenzyChargeOnSlayingFrozenEnemy"}}},nil}c["Gain a Power Charge when you use a Vaal Skill"]={nil,"Gain a Power Charge when you use a Vaal Skill "}c["10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds"]={{}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds "}c["15% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil}c["30% more Bow Damage at Close Range while you have iron Reflexes"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=131076,keywordFlags=0,name="Damage",type="MORE",value=30}}," while you have iron Reflexes "}c["10% increased Attack Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["8% increased Attack and Cast Speed during Effect of any Mana Flask 10% increased Mana Recovery Rate during Effect of any Mana Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Speed",type="INC",value=8}}," of any Mana Flask 10% increased Mana Recovery Rate of any Mana Flask "}c["20% increased Damage per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," per Summoned 25% increased Effect of Buffs granted by your Golems per Summoned Golem "}c["15% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=15}},nil}c["Found Magic Items drop Identified"]={nil,"Found Magic Items drop Identified "}c["Recover 5% of Life when a Spirit Charge expires or is consumed 20% chance to gain a Spirit Charge on Kill"]={nil,"Recover 5% of Life when a Spirit Charge expires or is consumed 20% chance to gain a Spirit Charge on Kill "}c["20% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},nil}c["Purity of Ice has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Purity of Ice",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["+10% to Damage over Time Multiplier for Bleeding you inflict on Poisoned Enemies"]={{[1]={flags=0,keywordFlags=2097152,name="DotMultiplier",type="BASE",value=10}}," you inflict on Poisoned Enemies "}c["8% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["+2 to Level of Socketed Elemental Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="elemental",value=2}}},nil}c["Ignites you inflict deal Damage 8% faster 24% increased Fire Damage with Attack Skills"]={nil,"Ignites you inflict deal Damage 8% faster 24% increased Fire Damage with Attack Skills "}c["50% reduced Mana Reservation of Banner Skills 15% increased Effect of Non-Curse Auras from your Skills on Enemies"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-50}}," of Banner Skills 15% increased Effect of Non-Curse Auras from your Skills "}c["8% increased Physical Damage with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["15% increased Attack and Movement Speed while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="Speed",type="INC",value=15},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Nearby Enemies cannot deal Critical Strikes"]={nil,"Nearby Enemies cannot deal Critical Strikes "}c["Grants level 10 Gluttony of Elements Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="VaalAuraElementalDamageHealing"}}},nil}c["10% Chance to Cast level 18 Summon Spectral Wolf on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=18,skillId="SummonRigwaldsPack"}}},nil}c["Minions have a 20% chance to Impale on Hit with Attacks"]={nil,"a 20% chance to Impale on Hit with Attacks "}c["Curse Enemies with level 10 Flammability on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,noSupports=true,skillId="Flammability"}}},nil}c["1% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["Has an additional Implicit Mod +30 to all Attributes"]={nil,"Has an additional Implicit Mod +30 to all Attributes "}c["2% increased Minion Duration per Zombie you own 12% increased Minion Damage per Spectre you own"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillType=21,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=2}}}}," per you own 12% increased Minion Damage per Spectre you own "}c["Regenerate 2% of Life per second if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Creates a Smoke Cloud on Rampage Gain Unholy Might for 3 seconds on Rampage"]={nil,"Creates a Smoke Cloud on Rampage Gain Unholy Might for 3 seconds on Rampage "}c["+30% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=30}},nil}c["+110 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=110}},nil}c["Adds 60 to 90 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=90}},nil}c["30% chance to Avoid being Chilled during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=30}},nil}c["20% reduced Reflected Physical Damage taken Enemies have -5% to Total Physical Damage Reduction against your Hits 4% chance to deal Double Damage +20 to Strength"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected Enemies have -5% to Total Physical Damage Reduction against your Hits 4% chance to deal Double Damage +20 to Strength "}c["25% chance to Avoid interruption from Stuns while Casting +20 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=25}}," to Avoid interruption from Stuns while Casting +20 to "}c["Passives granting Cold Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Cold Resistance or all Elemental Resistances in Radius "}c["Trigger Level 20 Bone Nova when you Kill a Bleeding Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TriggeredBoneNova"}}},nil}c["Trigger Level 15 Feast of Flesh every 5 seconds 220% increased Energy Shield"]={nil,"Trigger Level 15 Feast of Flesh every 5 seconds 220% increased Energy Shield "}c["Removes 1% of maximum Energy Shield on Kill Corrupted"]={nil,"Removes 1% of maximum Energy Shield on Kill Corrupted "}c["Shocks you inflict spread to other Enemies within a Radius of 15"]={nil,"Shocks you inflict spread to other Enemies within a Radius of 15 "}c["100% increased Global Armour when you have no Energy Shield 30% Chance to gain Unholy Might on Block for 3 seconds"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Armour",type="INC",value=100}}," when you have no Energy Shield 30% Chance to gain Unholy Might on Block for 3 seconds "}c["4% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=4}},nil}c["5% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=5}},nil}c["+25 Mana gained on Killing a Frozen Enemy"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=25}}," ing a Frozen Enemy "}c["4% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=4}},nil}c["Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds"]={nil,"Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds "}c["Adds 55 to 80 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=55},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=80}},nil}c["+2% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["215% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=215}},nil}c["30% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=30}},nil}c["275% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=275}},nil}c["Adds 27 to 38 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=27},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=38}},nil}c["12% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["7% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=7}},nil}c["+24 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=24}},nil}c["10% chance to Avoid being Stunned while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=10}},nil}c["+150 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=150}},nil}c["+5 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=5}},nil}c["8% increased Accuracy Rating with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["+1 to Melee range with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1}},nil}c["20% increased Damage with Hits and Ailments per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["+25% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["7% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=7}},nil}c["1% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["40% of Physical Damage Converted to Fire Damage while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=40}},nil}c["120 Energy Shield Regenerated per second while a Rare or Unique Enemy is Nearby"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=120}},nil}c["10% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["25% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["20% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["12% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["115% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=115}},nil}c["100% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=100}},nil}c["10% reduced Physical Damage taken over time"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenOverTime",type="INC",value=-10}},nil}c["Socketed Gems are Supported by level 1 Mana Leech"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportManaLeech"}}},nil}c["45% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=45}},nil}c["Adds 3 to 9 Lightning Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=3},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=9}},nil}c["+150 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=150}},nil}c["+1 to Melee Strike Range with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=4194308,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["10% increased Attack Speed if you have at least 600 Strength"]={{[1]={[1]={stat="Str",threshold=600,type="StatThreshold"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}}}},nil}c["25% chance that if you would gain Power Charges, you instead gain up to"]={{}," that if you would gain Power Charges, you instead gain up to "}c["10% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil}c["Attacks with this Weapon deal 80-120 added Chaos Damage against Enemies affected by at least 5 Poisons"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",threshold=5,type="MultiplierThreshold",var="PoisonStack"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=80},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",threshold=5,type="MultiplierThreshold",var="PoisonStack"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=120}},nil}c["+10% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=10}},nil}c["Enemies Chilled by you take 40% increased Burning Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireDamageTakenOverTime",type="INC",value=40}}}},nil}c["Minions Regenerate 0.5% Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}}}},nil}c["6% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=6}},nil}c["+14% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=14}},nil}c["38% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=38}},nil}c["to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds "}c["+28% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=28}},nil}c["Raised Zombies have +500 to maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=500}}}},nil}c["88% increased Damage with Poison if you have at least 300 Dexterity"]={{[1]={[1]={stat="Dex",threshold=300,type="StatThreshold"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=88}},nil}c["Summoned Holy Relics have 23% reduced Cooldown Recovery Speed"]={{[1]={[1]={skillName="Summon Holy Relic",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=-23}}}},nil}c["15% chance to Impale Enemies on Hit with Attacks 5% increased Impale Effect +20 to Strength"]={{[1]={flags=0,keywordFlags=65536,name="FlaskEffect",type="BASE",value=15}}," to Impale Enemies on Hit 5% increased Impale +20 to Strength "}c["20% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=20}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 15 Socketed Gems are Supported by level 20 Ignite Proliferation"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 15 Socketed Gems are Supported by level 20 Ignite Proliferation "}c["Creates Consecrated Ground on Critical Strike 50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"]={nil,"Creates Consecrated Ground on Critical Strike 50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike "}c["10% increased maximum Life if no Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="CorruptedItem"},flags=0,keywordFlags=0,name="Life",type="INC",value=10}},nil}c["+40 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=40}},nil}c["16% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=16}},nil}c["175% increased Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=175}},nil}c["20% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["16% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=16}},nil}c["15% of maximum Life taken as Chaos Damage per second"]={{[1]={[1]={div=1,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=0.15}},nil}c["10% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=10}},nil}c["Cannot be Shocked"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=100}},nil}c["+3 to Level of Socketed Lightning Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="lightning",value=3}}},nil}c["10% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit"]={{}," to gain an Endurance Charge when you Stun an Enemy with a Hit "}c["Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage Projectiles gain Damage as they travel farther, dealing up\nto 50% increased Damage with Hits to targets "}c["10% reduced Enemy Stun Threshold with Bows"]={{[1]={flags=131076,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["You have Far Shot while you do not have Iron Reflexes"]={nil,"You have Far Shot while you do not have Iron Reflexes "}c["+30% to Critical Strike Multiplier if you've been Channelling for at least 1 second"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}}," if you've been Channelling for at least 1 second "}c["Adds 18 to 32 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=18},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=32}},nil}c["+21 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=21}},nil}c["12% increased Brand Activation frequency"]={{[1]={flags=0,keywordFlags=0,name="BrandActivationFrequency",type="INC",value=12}},nil}c["25% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=25}},nil}c["14% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=14}},nil}c["Adds 1 to 30 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=30}},nil}c["Haste Reserves no Mana"]={{[1]={[1]={skillId="Haste",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["20% chance to gain a Power Charge when you Block +6% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," to gain a Power Charge when you Block +6% Chance "}c["Your Critical Strike Multiplier is 300%"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="OVERRIDE",value=300}},nil}c["With at least 40 Dexterity in Radius, Barrage fires an additional 2 projectiles simultaneously on the first and final attacks"]={nil,"With at least 40 Dexterity in Radius, Barrage fires an additional 2 projectiles simultaneously on the first and final attacks "}c["15% more Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="MORE",value=15}},nil}c["40% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Nearby Allies have 15% increased Attack, Cast and Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=15},onlyAllies=true}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15},onlyAllies=true}}},nil}c["25% increased Attack and Cast Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["25% chance to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="AvianTornado"}}},nil}c["40% increased Area of Effect of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="AreaOfEffect",type="INC",value=40}},nil}c["The increase to Physical Damage from Strength applies to Projectile Attacks as well as Melee Attacks"]={{[1]={flags=0,keywordFlags=0,name="IronGrip",type="FLAG",value=true}},nil}c["8% reduced Area Damage taken from Hits +30% to Critical Strike Multiplier against Burning Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},flags=512,keywordFlags=262144,name="DamageTaken",type="INC",value=-8}}," from Hits +30% to Critical Strike Multiplier "}c["+160 Dexterity Requirement"]={{[1]={flags=0,keywordFlags=0,name="DexRequirement",type="BASE",value=160}},nil}c["Your Hits can't be Evaded by Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil}c["5% increased Effect of Fortify on you"]={{[1]={flags=0,keywordFlags=0,name="FortifyEffectOnSelf",type="INC",value=5}},nil}c["16% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=16}},nil}c["20% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=20}},nil}c["Gain Onslaught for 10 seconds on Kill"]={nil,"Gain Onslaught for 10 seconds on Kill "}c["Adds Knockback to Melee Attacks during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["28% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=28}},nil}c["Minions have 10% increased Area of Effect if you have used a Minion Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="UsedMinionSkillRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["30% reduced Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-30},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=-30}},nil}c["+27% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=27}},nil}c["Minions have 35% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=35}}}},nil}c["Channelling Skills have -3 to Total Mana Cost"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-3}},nil}c["You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled"]={nil,"You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled "}c["50% chance to inflict Bleeding on Critical Strike with Attacks"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=65536,name="BleedChance",type="BASE",value=50}},nil}c["20% increased Flask Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=20}},nil}c["+3% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=3}},nil}c["Channelling Skills have 10% increased Attack Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["205% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=205}},nil}c["3% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["16% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=16}},nil}c["40% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil}c["16% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["0.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.6}},nil}c["+20% to Non-Ailment Chaos Damage over Time Multiplier Every second, inflict Withered on nearby Enemies for 15 seconds Nearby Hindered Enemies deal 15% reduced Damage over Time"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=20}}," Non-Ailment Every second, inflict Withered on nearby Enemies for 15 seconds Nearby Hindered Enemies deal 15% reduced Damage over Time "}c["Energy Shield Recharge is not interrupted by Damage if Recharge began Recently"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge began Recently "}c["+48 Life gained when you Block +20 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=48}}," gained when you Block +20 Mana gained when you Block "}c["Summoned Skeletons' hits can't be Evaded +2 to Maximum number of Skeletons"]={nil,"Summoned Skeletons' hits can't be Evaded +2 to Maximum number of Skeletons "}c["Trigger Level 20 Arcane Wake after Spending a total of 200 Mana"]={nil,nil}c["Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={nil,"Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield "}c["125% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=125}},nil}c["+8% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=8}},nil}c["If you've Warcried Recently, you and nearby allies have 10% increased Attack Speed"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil}c["+15 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=15}},nil}c["+32 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=32}},nil}c["20% increased Effect of Chill you inflict with Critical Strikes 20% increased Effect of Shock you inflict with Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20}}," you inflict with Critical Strikes 20% increased Effect of Shock you inflict with Critical Strikes "}c["40% increased Damage with Hits and Ailments against Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=40}},nil}c["50% increased Stun Duration against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="EnemyStunDuration",type="INC",value=50}},nil}c["Can Consume 4 Support Gems Has not Consumed any Gems"]={nil,"Can Consume 4 Support Gems Has not Consumed any Gems "}c["20% increased Physical Damage with Axes or Swords"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=4,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Immune to Freeze while affected by Purity of Ice 10% of Physical Damage taken as Cold Damage while affected by Purity of Ice"]={nil,"Immune to Freeze while affected by Purity of Ice 10% of Physical Damage taken as Cold Damage while affected by Purity of Ice "}c["300% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=300}},nil}c["15% increased Quantity of Items Dropped by Slain Frozen Enemies 50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Quantity of Items Dropped by Slain Frozen Enemies 50% increased Rarity of Items Dropped by Slain Shocked enemies "}c["62% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=62}},nil}c["+100% to Fire Resistance when Socketed with a Red Gem +100% to Cold Resistance when Socketed with a Green Gem"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=100}}," when Socketed with a Red Gem +100% to Cold Resistance when Socketed with a Green Gem "}c["20% increased Effect of Herald Buffs on you 10% reduced Mana Reservation of Herald Skills"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=20}}," of Herald Buffs on you 10% reduced Mana Reservation "}c["Spend Energy Shield before Mana for Skill Costs"]={{},nil}c["100% increased Physical Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="PhysicalDamage",type="INC",value=100}},nil}c["20% chance to Block Attacks if you've Blocked a Spell Recently"]={{[1]={[1]={type="Condition",var="BlockedSpellRecently"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["60% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=60}},nil}c["40% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=40}},nil}c["3% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=3},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=3}},nil}c["20% increased Melee Critical Strike Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["75% increased Effect of Shrine Buffs on you 50% increased Duration of Shrine Effects on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=75}}," of Shrine Buffs on you 50% increased Duration of Shrine Effects on you "}c["3% increased Attack Speed with Maces and Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge"]={nil,"and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge "}c["16% increased Projectile Attack Damage"]={{[1]={flags=1025,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["Enemies you Impale have -5% to Total Physical Damage Reduction against Impale Hits"]={nil,"Enemies you Impale have -5% to Total Physical Damage Reduction against Impale Hits "}c["+25% to all Elemental Resistances while you have at least 200 Strength"]={{[1]={[1]={stat="Str",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}},nil}c["+15% chance to Avoid Elemental Damage from Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=15}}," to Avoid from Hits "}c["Nearby Allies gain 40% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=40},onlyAllies=true}}},nil}c["25% chance to Blind Enemies on Hit"]={{}," to Blind Enemies on Hit "}c["10% increased Effect of Auras on your Minions"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=10}}}},nil}c["4% additional Physical Damage Reduction if you've Warcried in the past 8 seconds"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}}," if you've Warcried in the past 8 seconds "}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating "}c["+15% to Critical Strike Multiplier with Claws or Daggers"]={{[1]={[1]={modFlags=786432,type="ModFlagOr"},flags=4,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Regenerate 0.6% of Life per second for each Raised Zombie 30% increased Mana Regeneration Rate per Raised Spectre"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.6}}}}," for each 30% increased per Raised Spectre "}c["Adds 98 to 140 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=140}},nil}c["+38% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=38}},nil}c["Radius: 18 Chills from your Hits always reduce Action Speed by at least 10%"]={nil,"Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% "}c["20% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage from Critical Strikes while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}," while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage while Elusive "}c["Gain a Divine Charge on Hit You gain Divinity for 10 seconds on reaching maximum Divine Charges"]={nil,"Gain a Divine Charge on Hit You gain Divinity for 10 seconds on reaching maximum Divine Charges "}c["+16% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=16}},nil}c["10% increased Stun Duration on Enemies per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=10}},nil}c["+25% Chaos Resistance when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=25}},nil}c["Adds 6 to 14 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=14}},nil}c["Skills that would Summon a Totem Summon two Totems instead"]={nil,"Skills that would Summon a Totem Summon two Totems instead "}c["20% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["Spells cast by Totems deal 25% increased Damage"]={nil,"Spells cast by Totems deal 25% increased Damage "}c["+45 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=45}},nil}c["Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth 50% increased Damage with Hits and Ailments against Blinded Enemies "}c["30% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=30}},nil}c["+60% to Cold Resistance while affected by Herald of Ice"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofIce"},flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=60}},nil}c["80% increased Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyInPast10Sec"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=80}},nil}c["Cannot be Stunned while you have Ghost Shrouds 10% chance to Dodge Spell Hits if you have Energy Shield"]={nil,"Cannot be Stunned while you have Ghost Shrouds 10% chance to Dodge Spell Hits if you have Energy Shield "}c["Minions Regenerate 2.5% Life per Second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2.5}}}},nil}c["3% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Attack Skills fire an additional Projectile while wielding a Claw or Dagger 20% increased Projectile Attack Damage with Claws or Daggers"]={nil,"Attack Skills fire an additional Projectile while wielding a Claw or Dagger 20% increased Projectile Attack Damage with Claws or Daggers "}c["Enemies Chilled by your Hits are Shocked Enemies Shocked by your Hits are Chilled"]={nil,"Enemies Chilled by your Hits are Shocked Enemies Shocked by your Hits are Chilled "}c["Enemies Shocked by your Hits are Chilled"]={nil,"Enemies Shocked by your Hits are Chilled "}c["Adds 28 to 40 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=40}},nil}c["Socketed Gems are Supported by Level 20 Greater Volley"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportGreaterVolley"}}},nil}c["30% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=30},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=30},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=30}},nil}c["Raise Zombie does not require a Corpse"]={nil,"does not require a Corpse "}c["Movement Speed cannot be modified to below base value"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeedCannotBeBelowBase",type="FLAG",value=true}},nil}c["30% more chance to Evade Projectile Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="ProjectileEvadeChance",type="MORE",value=30}},nil}c["10% chance to Steal Power, Frenzy, and Endurance Charges on Hit"]={{}," to Steal Power, Frenzy, and Endurance Charges on Hit "}c["Blight has 30% increased Hinder Duration You cannot be Hindered"]={{[1]={[1]={skillName="Blight",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}}," Hinder You cannot be Hindered "}c["Moving while Bleeding doesn't cause you to take extra Damage 15% increased Movement Speed while Bleeding"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage 15% increased Movement Speed while Bleeding "}c["10% reduced Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-10}},nil}c["Immune to Burning Ground, Shocked Ground and Chilled Ground Regenerate 100 Life per second while moving"]={nil,"Immune to Burning Ground, Shocked Ground and Chilled Ground Regenerate 100 Life per second while moving "}c["+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped"]={{[1]={[1]={threshold=3,type="MultiplierThreshold",var="PrimordialItem"},flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=1}},nil}c["Raised Zombies deal 100% more Physical Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="MORE",value=100}}}},nil}c["Adds 35 to 65 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=35},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=65}},nil}c["6% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=6}},nil}c["With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike cannot choose Fire"]={nil,"With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike cannot choose Fire "}c["60% of Lightning Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToChaos",type="BASE",value=60}},nil}c["5% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=5}},nil}c["Adds 60 to 80 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=60},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=80}},nil}c["10% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge when you Hit a Rare or Unique Enemy "}c["4% increased Attack Speed with Swords"]={{[1]={flags=4194309,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["15% reduced Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=-15}},nil}c["Shocks nearby Enemies during Flask effect"]={nil,"Shocks nearby Enemies during Flask effect "}c["10% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=10}},nil}c["5% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=5}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand"]={{}," to gain aCharge on Kill "}c["20% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=20}},nil}c["20% of Physical Damage Converted to Lightning during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=20}},nil}c["10% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled"]={nil,"from Herald Skills deal 25% more Damage Your Aura Skills are Disabled "}c["30% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}c["+4% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=4}},nil}c["Attack Skills deal 8% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["You have no Life Regeneration"]={{[1]={flags=0,keywordFlags=0,name="NoLifeRegen",type="FLAG",value=true}},nil}c["Damage from your Critical Strikes cannot be Reflected"]={nil,"Damage from your Critical Strikes cannot be Reflected "}c["16% increased Critical Strike Chance with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritChance",type="INC",value=16}},nil}c["175% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=175}},nil}c["You are Shocked for 4 seconds on reaching Maximum Power Charges"]={nil,"You are Shocked for 4 seconds on reaching Maximum Power Charges "}c["138% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=138}},nil}c["+25 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=25}},nil}c["1% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}},nil}c["Nearby Enemies have 10% reduced Stun and Block Recovery"]={nil,"Nearby Enemies have 10% reduced Stun and Block Recovery "}c["40% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=40}},nil}c["20% chance to gain an Endurance Charge when you Block Extra gore"]={{}," to gain an Endurance Charge when you Block Extra gore "}c["+10% to Physical Damage over Time Multiplier while wielding an Axe or Sword"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=0,keywordFlags=0,name="PhysicalDotMultiplier",type="BASE",value=10}}," or Sword "}c["12% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["You have Zealot's Oath if you haven't been hit recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Zealot's Oath"}},nil}c["4% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Bow Skills have 20% increased Skill Effect Duration 10% increased Duration of Ailments inflicted while wielding a Bow"]={nil,"Bow Skills have 20% increased Skill Effect Duration 10% increased Duration of Ailments inflicted while wielding a Bow "}c["Dagger Attacks deal 8% increased Damage with Hits and Ailments"]={{[1]={flags=524288,keywordFlags=786432,name="Damage",type="INC",value=8}},nil}c["+900 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=900}},nil}c["Nearby enemies have -30% to Critical Strike Multiplier"]={nil,"Nearby enemies have -30% to Critical Strike Multiplier "}c["100% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=100}},nil}c["+1 to Maximum Energy Shield per 5 Armour on Equipped Shield"]={{[1]={[1]={div=5,stat="ArmourOnWeapon 2",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil}c["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth 150% increased Evasion Rating"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth 150% increased Evasion Rating "}c["Aspect of the Spider can inflict Spider's Web on Enemies an additional time"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Multiplier:SpiderWebApplyStackMax",type="BASE",value=1}}}},nil}c["+240 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=240}},nil}c["Cannot take Reflected Elemental Damage"]={nil,"Cannot take Reflected Elemental Damage "}c["100% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["200% increased Armour against Projectiles +25% additional Block Chance against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}}," against Projectiles +25% additional Block Chance against Projectiles "}c["+250 to Armour while affected by a Guard Skill Buff 10% chance when Hit for double Armour effect 0.5% of Maximum Life Regenerated per second while affected by a Guard Skill Buff"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=250}}," while affected by a Guard Skill Buff 10% chance when Hit for double Armour effect 0.5% of Maximum Life Regenerated per second while affected by a Guard Skill Buff "}c["Gain an Endurance Charge every second if you've been Hit Recently"]={nil,"Gain an Endurance Charge every second if you've been Hit Recently "}c["You have Consecrated Ground around you while stationary Regenerate 15 Mana per Second while on Consecrated Ground"]={nil,"You have Consecrated Ground around you while stationary Regenerate 15 Mana per Second while on Consecrated Ground "}c["Bow Skills have +10% to Damage over Time Multiplier Bow Skills have 20% increased Skill Effect Duration 10% increased Duration of Ailments inflicted while wielding a Bow"]={nil,"Bow Skills have +10% to Damage over Time Multiplier Bow Skills have 20% increased Skill Effect Duration 10% increased Duration of Ailments inflicted while wielding a Bow "}c["+13% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=13}},nil}c["5% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}},nil}c["15% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil}c["Cannot gain Energy Shield 50 Life Regenerated per second if you have at least 500 Maximum Energy Shield"]={nil,"Cannot gain Energy Shield 50 Life Regenerated per second if you have at least 500 Maximum Energy Shield "}c["Ignore all Movement Penalties from Armour"]={{[1]={flags=0,keywordFlags=0,name="Condition:IgnoreMovementPenalties",type="FLAG",value=true}},nil}c["Golems have 40% less Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-40}}}},nil}c["20% increased Critical Strike Chance with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["With at least 40 Dexterity in Radius, Ice Shot has 50% chance of Projectiles Piercing"]={nil,"With at least 40 Dexterity in Radius, Ice Shot has 50% chance of Projectiles Piercing "}c["75% chance to cause Enemies to Flee on use"]={{}," to cause Enemies to Flee on use "}c["Unaffected by Burning Ground while affected by Purity of Fire"]={nil,"Unaffected by Burning Ground while affected by Purity of Fire "}c["24% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=24}},nil}c["+75 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=75}},nil}c["20% increased Accuracy Rating with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["60% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["330% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=330}},nil}c["212% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=212}},nil}c["+14% to Critical Strike Multiplier with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritMultiplier",type="BASE",value=14}},nil}c["60% increased Critical Strike Chance with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["115% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=115}},nil}c["12% increased maximum Life if no Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="CorruptedItem"},flags=0,keywordFlags=0,name="Life",type="INC",value=12}},nil}c["275% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=275}},nil}c["+20 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=20}},nil}c["24% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=24}},nil}c["15% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=15}},nil}c["9% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=9}},nil}c["24% increased Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["90 Energy Shield Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=90}},nil}c["10% chance to gain a Power Charge when you Block +6% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}," to gain a Power Charge when you Block +6% Chance "}c["Cannot Block"]={{[1]={flags=0,keywordFlags=0,name="CannotBlockAttacks",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="CannotBlockSpells",type="FLAG",value=true}},nil}c["50% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["You are Shocked during Flask effect, causing 50% increased Damage taken 30% of Lightning Damage Leeched as Life during Flask effect"]={nil,"You are Shocked during Flask effect, causing 50% increased Damage taken 30% of Lightning Damage Leeched as Life during Flask effect "}c["10% chance to gain a Frenzy, Power or Endurance Charge on Kill Conduit"]={{}," to gain a Frenzy, Power or Endurance Charge on Kill Conduit "}c["12% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["5% chance to Avoid Fire Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=5}}," to Avoid from Hits "}c["40% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=40}},nil}c["50% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=50}},nil}c["You have Culling Strike against Cursed Enemies Curse Skills have 20% increased Skill Effect Duration"]={nil,"You have Culling Strike against Cursed Enemies Curse Skills have 20% increased Skill Effect Duration "}c["10% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge "}c["+20% to Damage over Time Multiplier for Ignite from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=4194304,name="DotMultiplier",type="BASE",value=20}},nil}c["20% increased Attack Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["150% increased Rarity of Items Dropped by Slain Magic Enemies 100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies 100% increased Quantity of Items Dropped by Slain Normal Enemies "}c["Adds 35 to 90 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=35},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=90}},nil}c["Your Physical Damage can Chill"]={{[1]={flags=0,keywordFlags=0,name="PhysicalCanChill",type="FLAG",value=true}},nil}c["Herald of Agony has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["Socketed Gems have 10% chance to cause Enemies to Flee on Hit Trigger Level 1 Abyssal Cry on Hit"]={{}," to cause Enemies to Flee on Hit Trigger Level 1on Hit "}c["30% of Physical Damage taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=30}},nil}c["your maximum number of Power Charges"]={nil,"your maximum number of Power Charges "}c["10% increased total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldLeechRate",type="INC",value=10}},nil}c["20% chance to Recover 10% of Maximum Mana when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," to Recover 10% of when you use a Skill "}c["-10% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-10}},nil}c["50% increased Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=50}},nil}c["you Spend at least 100 Mana to Use a Skill"]={nil,"you Spend at least 100 Mana to Use a Skill "}c["2% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["0.7% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.7}},nil}c["20% increased Cast Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=16,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage"]={nil,"You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage "}c["111% increased Duration of Ailments you inflict while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=111},[2]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=111},[3]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=111},[4]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=111},[5]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=111},[6]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=111}},nil}c["10% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["10% chance to Curse Enemies with a random Curse on Hit"]={{}," to Curse Enemies with a random Curse on Hit "}c["+24 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}c["Adds 98 to 178 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=178}},nil}c["35% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=35}},nil}c["+12 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=12}},nil}c["+33 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=33}},nil}c["60% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=60}},nil}c["Every second, Consume a nearby Corpse to Recover 5% of Life and Mana 10% more Damage taken if you haven't Consumed a Corpse Recently"]={nil,"Every second, Consume a nearby Corpse to Recover 5% of Life and Mana 10% more Damage taken if you haven't Consumed a Corpse Recently "}c["20% increased Mine Throwing Speed if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=20}},nil}c["Unaffected by Elemental Weakness while affected by Purity of Elements Immune to Ignite while affected by Purity of Fire"]={nil,"Unaffected by Elemental Weakness while affected by Purity of Elements Immune to Ignite while affected by Purity of Fire "}c["+12% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=12}},nil}c["Warcry Skills have 40% increased Area of Effect"]={nil,"Warcry Skills have 40% increased Area of Effect "}c["+96 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=96}},nil}c["50% increased Life Recovery Rate if you've taken Fire Damage from an Enemy Hit Recently Unaffected by Ignite"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=50}}," if you've taken Fire Damage from an Enemy Hit Recently Unaffected by Ignite "}c["Your Chaos Damage can Shock"]={{[1]={flags=0,keywordFlags=0,name="ChaosCanShock",type="FLAG",value=true}},nil}c["120% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=120}},nil}c["20% less Lightning Damage taken"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTaken",type="MORE",value=-20}},nil}c["1% chance to deal Double Damage per 4 Rage"]={{[1]={[1]={div=4,type="Multiplier",var="Rage"},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=1}},nil}c["200% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=200}},nil}c["30% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}c["You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed"]={nil,"You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed "}c["+6 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=6}},nil}c["Adds 75 to 358 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=358}},nil}c["14% increased Projectile Attack Damage"]={{[1]={flags=1025,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["While stationary, gain 10% increased Area of Effect every second, up to a maximum of 50%"]={nil,"While stationary, gain 10% increased Area of Effect every second, up to a maximum of 50% "}c["10% chance when Hit for double Armour effect Regenerate 0.5% of Life per second while affected by a Guard Skill Buff"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=10}}," when Hit for double effect Regenerate 0.5% of Life per second while affected by a Guard Skill Buff "}c["15% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}c["Regenerate 0.2% of Life per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}},nil}c["Nearby Hindered Enemies deal 15% reduced Damage over Time"]={nil,"Nearby Hindered Enemies deal 15% reduced Damage over Time "}c["15% chance to Recover 10% of Maximum Mana when you use a Skill while affected by Clarity -5 to Total Mana Cost of Skills while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=15}}," to Recover 10% of when you use a Skill -5 to Total Mana Cost of Skills while affected by Clarity "}c["+25% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=25}},nil}c["8% increased Impale Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}}," Impale "}c["+175 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=175}},nil}c["+40% to Critical Strike Multiplier if Dexterity is higher than Intelligence"]={{[1]={[1]={type="Condition",var="DexHigherThanInt"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil}c["Fire Skills have a 25% chance to apply Fire Exposure on Hit Lightning Skills have a 25% chance to apply Lightning Exposure on Hit"]={nil,"a 25% chance to apply Fire Exposure on Hit Lightning Skills have a 25% chance to apply Lightning Exposure on Hit "}c["You gain Unholy Might for 10 seconds on Block"]={nil,"You gain Unholy Might for 10 seconds on Block "}c["2% increased Attack Speed with Staves"]={{[1]={flags=2097157,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["+5% chance to Evade Attacks"]={{[1]={flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=5}},nil}c["100% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=100}},nil}c["30% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="PhysicalDamage",type="MORE",value=30}},nil}c["For each Element you've been hit by Damage of Recently, 8% reduced Damage taken of that Element"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=-8},[2]={[1]={type="Condition",var="HitByColdDamageRecently"},flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=-8},[3]={[1]={type="Condition",var="HitByLightningDamageRecently"},flags=0,keywordFlags=0,name="LightningDamageTaken",type="INC",value=-8}},nil}c["You have Phasing if you have Blocked Recently"]={nil,"You have Phasing if you have Blocked Recently "}c["Regenerate 200 Energy Shield per Second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=200}},nil}c["10% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["30% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}},nil}c["With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike cannot choose Cold With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike deal 50% less Cold Damage"]={nil,"With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike cannot choose Cold With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike deal 50% less Cold Damage "}c["Adds 18 to 27 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=27}},nil}c["8% increased Attack Speed with Wands"]={{[1]={flags=8388613,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Socketed Gems are Supported by level 15 Increased Area of Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportIncreasedAreaOfEffect"}}},nil}c["2% of Life Regenerated per second if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Passives granting Fire Resistance or all Elemental Resistances in Radius also grant an equal chance to gain an Endurance Charge on Kill"]={nil,"Passives granting Fire Resistance or all Elemental Resistances in Radius also grant an equal chance to gain an Endurance Charge on Kill "}c["320% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=320}},nil}c["Trigger Commandment of Inferno on Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="EnchantmentOfInfernoOnKill4"}}},nil}c["10% reduced Enemy Stun Threshold with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of each Element"]={{[1]={flags=131072,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=110},[2]={flags=131072,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=110},[3]={flags=131072,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=110}},nil}c["10% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=10}},nil}c["Nearby Enemies are Hindered, with 25% reduced Movement Speed"]={nil,"Nearby Enemies are Hindered, with 25% reduced Movement Speed "}c["20% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=20}},nil}c["You and nearby Allies have +15% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}}}},nil}c["20% chance to Recover 10% of Maximum Mana when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," to Recover 10% of when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana "}c["Has 2 Sockets"]={{[1]={flags=0,keywordFlags=0,name="SocketCount",type="BASE",value=2}},nil}c["Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["5% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["Celestial Footprints Shaper Item"]={nil,"Celestial Footprints Shaper Item "}c["Weapons you Animate create an additional copy"]={nil,"Weapons you Animate create an additional copy "}c["+5% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil}c["+1 to Level of Socketed Melee Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="melee",value=1}}},nil}c["20% chance to gain a Power Charge when you Block"]={{}," to gain a Power Charge when you Block "}c["12% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Minions have +5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}}}},nil}c["8% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["1% less Damage taken per Grasping Vine"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-1}}," per Grasping Vine "}c["6% increased Accuracy Rating with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["Minions deal 9 to 15 additional Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=9}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=15}}}},nil}c["Projectiles gain Damage as they travel farther, dealing up to 50% increased Damage with Hits to targets"]={{[1]={[1]={ramp={[1]={[1]=35,[2]=0},[2]={[1]=70,[2]=1}},type="DistanceRamp"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["0.5% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["100% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=100}},nil}c["20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge when you Hit a Rare or Unique Enemy "}c["Nearby Allies deal 30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=30},onlyAllies=true}}},nil}c["+3 to Level of Socketed Warcry Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="warcry",value=3}}},nil}c["50% increased Effect of Socketed Jewels"]={{[1]={flags=0,keywordFlags=0,name="SocketedJewelEffect",type="INC",value=50}},nil}c["You have no Armour or Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="MORE",value=-100},[2]={flags=0,keywordFlags=0,name="EnergyShield",type="MORE",value=-100}},nil}c["100% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=100}},nil}c["20% increased Spell Damage while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["10% increased Physical Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["15% chance to gain a Flask Charge when you deal a Critical Strike 50% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike 50% chance to gain a Flask Charge when you deal a Critical Strike "}c["-1 Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=-1}},nil}c["Raised Zombies have 5% chance to Taunt Enemies on Hit"]={{}," to Taunt Enemies on Hit "}c["27% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=27}},nil}c["14% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=14}},nil}c["Curse Enemies with Temporal Chains on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="TemporalChains"}}},nil}c["Raise Zombie does not require a Corpse Your Raised Zombies count as Corpses"]={nil,"does not require a Corpse Your Raised Zombies count as Corpses "}c["10% increased Effect of Arcane Surge on you per 200 Mana spent Recently, up to 50% 10% chance to gain Arcane Surge when you Kill an Enemy"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}}," of Arcane Surge on you per 200 Mana spent Recently, up to 50% 10% chance to gain Arcane Surge when you Kill an Enemy "}c["15% more Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=15}},nil}c["Cold-only Splash Damage to surrounding targets"]={nil,"Cold-only Splash Damage to surrounding targets "}c["Minions Leech 5% of Damage as Life against Poisoned Enemies"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=0,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=5}}}},nil}c["+1% to Chaos Resistance per Poison on you"]={{[1]={[1]={type="Multiplier",var="PoisonStack"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=1}},nil}c["10% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=10}},nil}c["2% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}},nil}c["155% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=155}},nil}c["30% increased Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["20% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["Channelling Skills deal 12% increased Attack Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Triggers Level 20 Fire Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="FireAegis"}}},nil}c["+1 to maximum number of Golems"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=1}},nil}c["50% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil}c["20% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["2% chance to Avoid Elemental Damage when Hit per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=2}}," to Avoid when Hit "}c["Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks "}c["40% reduced Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-40}},nil}c["5% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["30% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil}c["20% reduced Chill Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=-20}}," on You "}c["120% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=120}},nil}c["Attack Projectiles Return to you from final Target Returning Projectiles Pierce all Targets"]={nil,"Attack Projectiles Return to you from final Target Returning Projectiles Pierce all Targets "}c["+30% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Adds 2 to 3 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=2},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=3}},nil}c["-5% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=-5},[2]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=-5}},nil}c["1% increased Lightning Damage per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=1}},nil}c["30% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["+12% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=12}},nil}c["+12% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=12}},nil}c["25% chance to Scorch Enemies Cannot inflict Ignite"]={{}," to Scorch Enemies Cannot inflict Ignite "}c["+25% to Critical Strike Multiplier with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["+2 to Maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=2}},nil}c["30% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["10% increased Brand Attachment range"]={{}," Brand Attachment range "}c["Socketed Gems are supported by level 25 Melee Splash"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=25,skillId="SupportMeleeSplash"}}},nil}c["Adds 32 to 42 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=32},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=42}},nil}c["3% increased Attack Speed for each Map Item Modifier affecting the Area"]={{[1]={flags=513,keywordFlags=0,name="Speed",type="INC",value=3}}," for each Map Item Modifier affecting the "}c["Gems can be Socketed in this Item ignoring Socket Colour Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems can be Socketed in this Item ignoring Socket Colour Gems Socketed in Red Sockets have +1 to Level "}c["You cannot Recharge Energy Shield"]={nil,"You cannot Recharge Energy Shield "}c["10% increased Critical Strike Chance with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}c["25% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=25}},nil}c["190% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=190}},nil}c["+4% chance to Evade Attack Hits if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=4}},nil}c["Minions have 12% increased Attack and Cast Speed if you or your Minions have Killed Recently"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=12}}}}," if you or your Minions have Killed Recently "}c["Gain Chilling, Shocking and Igniting Conflux for 2 seconds"]={{},nil}c["Reflects 100 to 150 Physical Damage to Melee Attackers"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers "}c["Curse Enemies with level 5 Vulnerability on Block"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=5,noSupports=true,skillId="Vulnerability"}}},nil}c["You cannot be Frozen for 3 seconds after being Frozen"]={nil,"You cannot be Frozen for 3 seconds after being Frozen "}c["Minions have +10% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}}}},nil}c["Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="EnduranceChargeOnMeleeStun"}}},nil}c["310% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=310}},nil}c["40% chance to Poison on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=40}},nil}c["230% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=230}},nil}c["15% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=15}}}},nil}c["10% increased Movement Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["5% chance to Impale Enemies on Hit with Attacks"]={{}," to Impale Enemies on Hit "}c["Your Cold Damage can Ignite"]={{[1]={flags=0,keywordFlags=0,name="ColdCanIgnite",type="FLAG",value=true}},nil}c["+15% to Critical Strike Multiplier with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Effects granted for having Rage are Doubled Cannot be Stunned while you have at least 25 Rage"]={nil,"Effects granted for having Rage are Doubled Cannot be Stunned while you have at least 25 Rage "}c["25% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=25}},nil}c["Golems have +1000 to Armour"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}}},nil}c["With at least 40 Strength in Radius, Cleave grants Fortify on Hit"]={nil,"With at least 40 Strength in Radius, Cleave grants Fortify on Hit "}c["175% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=175}},nil}c["4% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=4}},nil}c["10% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil}c["30% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=30}},nil}c["8% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=8}},nil}c["+10% to Damage over Time Multiplier for Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="DotMultiplier",type="BASE",value=10}},nil}c["Trigger Level 5 Rain of Arrows when you Attack with a Bow"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=5,skillId="RainOfArrows"}}},nil}c["10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["10% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=10}},nil}c["Spectres have 100% increased maximum Life"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=100}}}},nil}c["2% additional Chance to receive a Critical Strike"]={{}," to receive a Critical Strike "}c["50% chance to avoid Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=50}},nil}c["15% reduced Spark Duration"]={{[1]={[1]={skillName="Spark",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-15}},nil}c["Left ring slot: 100% increased Mana Regeneration Rate"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=100}},nil}c["40% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=40}},nil}c["50% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=50}},nil}c["5% chance to Dodge Attack and Spell Hits while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5},[2]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=5}},nil}c["Gain 5 Souls for Vaal Skills on Rampage Kills grant an additional Vaal Soul if you have Rampaged Recently"]={nil,"Gain 5 Souls for Vaal Skills on Rampage Kills grant an additional Vaal Soul if you have Rampaged Recently "}c["5% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=5}},nil}c["-10% to maximum Block Chance"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=-10}},nil}c["+3% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=3}}," Non-Ailment "}c["Channelling Skills have 3% increased Attack and Cast Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["20% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Hits with this Weapon deal 45% increased Damage to Shocked Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Shocked"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=45}},nil}c["50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills"]={{[1]={flags=0,keywordFlags=262144,name="FlaskEffect",type="MORE",value=50}}," of Herald Buffs on you 100% more Damage from Herald Skills "}c["Regenerate 1% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["12% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=12}},nil}c["Recover 5% of Maximum Life on Kill"]={nil,"Recover 5% of Maximum Life on Kill "}c["Nearby Allies' spells have Culling Strike Nearby Allies have Culling Strike"]={nil,"Nearby Allies' spells have Culling Strike Nearby Allies have Culling Strike "}c["Socketed Curse Skills ignore Curse Limit +40 to Intelligence"]={nil,"Socketed Curse Skills ignore Curse Limit +40 to Intelligence "}c["25% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=25}},nil}c["25% reduced Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-25}},nil}c["+30 Life gained on Killing Ignited Enemies"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=30}}," ing Ignited Enemies "}c["Recover 75% of your maximum Life on use"]={nil,"Recover 75% of your maximum Life on use "}c["8% increased Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["Channelling Skills deal 8% increased Attack Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["50% increased Duration of Shrine Effects on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}}," of Shrine Effects on you "}c["-1 to maximum number of Summoned Totems."]={{[1]={flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=-1}},nil}c["0.4% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.4}},nil}c["Grants level 15 Envy Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="Envy"}}},nil}c["Minions Recover 2% of their Life when they Block"]={nil,"Recover 2% of their Life when they Block "}c["Minions have 20% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=20}}}},nil}c["+3% to Damage over Time Multiplier for Poison"]={{[1]={flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=3}},nil}c["Socketed Gems deal 63 to 94 additional Fire Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=63}}},[2]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=94}}}},nil}c["Enemies Chilled by you take 100% increased Burning Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireDamageTakenOverTime",type="INC",value=100}}}},nil}c["Adds 1 to 230 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=230}},nil}c["Adds 10 to 167 Lightning Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=10},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=167}},nil}c["1% additional Physical Damage Reduction per Minion, up to 10%"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Minion, up to 10% "}c["Regenerate 40 Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=40}},nil}c["Summoned Raging Spirits have 100% increased maximum Life"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=100}}}},nil}c["+38 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=38}},nil}c["You gain Onslaught for 1 second per Endurance Charge when Hit You gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 1 second per Endurance Charge when Hit You gain Onslaught for 2 second per Endurance Charge when Hit "}c["Unaffected by Vulnerability while affected by Determination"]={nil,"Unaffected by Vulnerability while affected by Determination "}c["You cannot have non-Golem Minions 25% reduced Golem Size"]={nil,"You cannot have non-Golem Minions 25% reduced Golem Size "}c["100% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=100}},nil}c["20% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["20% increased Raised Zombie Size Raised Zombies have 5% chance to Taunt Enemies on Hit"]={{}," Size Raised Zombies have 5% chance to Taunt Enemies on Hit "}c["14% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["5% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=5},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=5}},nil}c["10% increased Stun Duration with Two Handed Melee Weapons on Enemies"]={{[1]={flags=301989892,keywordFlags=0,name="EnemyStunDuration",type="INC",value=10}},nil}c["Enemies can have 1 additional Curse"]={{[1]={flags=0,keywordFlags=0,name="EnemyCurseLimit",type="BASE",value=1}},nil}c["31% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=31}},nil}c["+23% to all Elemental Resistances while you have at least 200 Strength"]={{[1]={[1]={stat="Str",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=23}},nil}c["20% more Damage with Ignite"]={{[1]={flags=0,keywordFlags=4194304,name="Damage",type="MORE",value=20}},nil}c["Adds 10 to 12 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},nil}c["Adds 22 to 32 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=32}},nil}c["Adds 14 to 22 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=22}},nil}c["20% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=20}},nil}c["40% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=40}},nil}c["15% increased Armour while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Armour",type="INC",value=15}},nil}c["+16% to Critical Strike Multiplier with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=16}},nil}c["15% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=15}},nil}c["+125 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=125}},nil}c["20% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil}c["1% increased Attack Damage per 450 Evasion Rating"]={{[1]={[1]={div=450,stat="Evasion",type="PerStat"},flags=1,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["10% reduced Trap Duration"]={{[1]={flags=0,keywordFlags=0,name="TrapDuration",type="INC",value=-10}},nil}c["Enemies you Attack Reflect 100 Physical Damage to you +2 to Weapon range"]={nil,"Enemies you Attack Reflect 100 Physical Damage to you +2 to Weapon range "}c["3% reduced Damage taken per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["3 Life regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=3}},nil}c["+20% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["You and nearby allies have 20% increased Attack, Cast and Movement"]={{}," Attack, Cast and Movement "}c["100% increased Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=100}},nil}c["10% chance to double Stun Duration 24% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="EnemyStunDuration",type="BASE",value=10}}," to double 24% increased Damage "}c["10% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["30% chance to gain a Power Charge when you Stun Gain Unholy Might for 4 seconds on Critical Strike"]={{}," to gain a Power Charge when you Stun Gain Unholy Might for 4 seconds "}c["20% increased Area Damage while wielding a Two Handed Melee Weapon"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=20}}," while wielding a Two Handed Melee Weapon "}c["Removes all mana. Spend Life instead of Mana for Skills"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="MORE",value=-100},[2]={flags=0,keywordFlags=0,name="BloodMagic",type="FLAG",value=true}},nil}c["300% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=300}},nil}c["10% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}},nil}c["220% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=220}},nil}c["+4% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["245% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=245}},nil}c["Nearby Enemies are Chilled"]={nil,"Nearby Enemies are Chilled "}c["Movement Skills cost no Mana"]={{[1]={flags=0,keywordFlags=8,name="ManaCost",type="MORE",value=-100}},nil}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance 20% increased Elemental Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8192,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-10}}," Reflected Damage Penetrates 5% Elemental Resistance 20% increased Elemental Damage "}c["and nearby Allies have +1000 to Armour You and nearby Allies deal 6 to 12 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},"and nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["Adds 1 to 120 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=120}},nil}c["5% chance to Blind Enemies on Hit with Attacks"]={{}," to Blind Enemies on Hit "}c["Cannot Block Spells"]={{[1]={flags=0,keywordFlags=0,name="CannotBlockSpells",type="FLAG",value=true}},nil}c["Grants Level 15 Envy Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="Envy"}}},nil}c["+14 Mana gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=14}},nil}c["25% increased Critical Strike Chance with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["6% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["6% increased Attack and Cast Speed per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=6}}," per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds "}c["Cannot be Shocked while Chilled"]={nil,"Cannot be Shocked while Chilled "}c["22% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=22}},nil}c["2% chance to Dodge Attacks per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=2}},nil}c["Adds 1 to 4 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=4}},nil}c["+2 to Level of Socketed Bow Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="bow",value=2}}},nil}c["20% chance to gain an Endurance Charge when you Block +4% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," to gain an Endurance Charge when you Block +4% Chance "}c["Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill"]={nil,"Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill "}c["4% additional Physical Damage Reduction if you've Warcried in the past 8 seconds 4% chance to deal Double Damage if you've Warcried in the past 8 seconds"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}}," if you've Warcried in the past 8 seconds 4% chance to deal Double Damage if you've Warcried in the past 8 seconds "}c["20% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=20}},nil}c["Your Damaging Hits always Stun Enemies that are on Full Life"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life "}c["25% chance to Trigger level 20 Animate Weapon on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="AnimateWeapon"}}},nil}c["Trigger a Socketed Bow Skill when you Attack with a Bow"]={nil,"Trigger a Socketed Bow Skill when you Attack with a Bow "}c["80% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=80}},nil}c["20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block "}c["8% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=8}},nil}c["0.4% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.4}},nil}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks "}c["6% increased Attack Speed with Swords"]={{[1]={flags=4194309,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["30% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=30}},nil}c["Increases and Reductions to Light Radius also apply to Accuracy"]={{[1]={flags=0,keywordFlags=0,name="LightRadiusAppliesToAccuracy",type="FLAG",value=true}},nil}c["20% increased Attack and Movement Speed with Her Blessing"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}," with Her Blessing "}c["+75% to Critical Strike Multiplier during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=75}},nil}c["12% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=12}},nil}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground "}c["3% increased Experience gain 2% increased Experience gain"]={{}," Experience gain 2% increased Experience gain "}c["Attack Skills deal 6% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=6}},nil}c["Minions Regenerate of 1% Life per second"]={nil,"Regenerate of 1% Life per second "}c["Attack Skills deal 8% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["With at least one nearby corpse, you and nearby Allies deal 10% more Damage"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyCorpse"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}}}},nil}c["25% increased Effect of Buffs granted by Socketed Golem Skills"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}}}},nil}c["You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["5% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=5}},nil}c["1% increased Cold Damage per 25 Intelligence"]={{[1]={[1]={div=25,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=1}},nil}c["20% chance to Avoid being Stunned while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=20}},nil}c["Celestial Footprints"]={nil,"Celestial Footprints "}c["10% of Physical Damage taken as Fire Damage while affected by Purity of Fire"]={{[1]={[1]={type="Condition",var="AffectedByPurityofFire"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=10}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam "}c["Adds 235 to 290 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=235},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=290}},nil}c["25% increased Brand Activation Frequency if you haven't used a Brand Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="BrandActivationFrequency",type="INC",value=25}}," if you haven't used a Brand Skill Recently "}c["75% increased Attack Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="CritChance",type="INC",value=75}},nil}c["-6 to Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-6}},nil}c["+25% to Damage over Time Multiplier for Poison"]={{[1]={flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=25}},nil}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["12% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=12}},nil}c["+10 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["12% increased Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["12% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil}c["80% increased Critical Strike Chance for Attacks"]={{[1]={flags=1,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["-100 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=-100}},nil}c["20% increased Accuracy Rating with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["Nearby Allies have 30% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30},onlyAllies=true}}},nil}c["10% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["+6% Chance to Block Spell Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil}c["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled +10% to Cold Damage over Time Multiplier "}c["100% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground "}c["1% additional Physical Damage Reduction per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30%"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30% "}c["Attack Skills deal 30% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["6% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["30% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=30}},nil}c["Trigger level 10 Consecrate when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="TriggeredConsecrate"}}},nil}c["10% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10}},nil}c["Summoned Skeletons have 10% chance to Wither Enemies for 2 seconds on Hit"]={nil,"Summoned Skeletons have 10% chance to Wither Enemies for 2 seconds on Hit "}c["15% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=15}},nil}c["+20% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=20}},nil}c["20% chance to Maim on Hit 20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}}," to Maim on Hit 20% chance "}c["+12% to Damage over Time Multiplier for Ailments from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=2048,keywordFlags=0,name="DotMultiplier",type="BASE",value=12}},nil}c["50% chance to gain a Power Charge on Killing a Frozen Enemy Adds 10 to 20 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="ColdDamage",type="BASE",value=50}}," to gain a Power Charge on Killing a Frozen Enemy Adds 10 to 20 to s "}c["+4% Chance to Block Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=4}},nil}c["+14 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=14}},nil}c["Cannot be Stunned by Attacks if your other Ring is an Elder Item 20% chance to Trigger Level 20 Tentacle Whip on Kill"]={nil,"Cannot be Stunned by Attacks if your other Ring is an Elder Item 20% chance to Trigger Level 20 Tentacle Whip on Kill "}c["Enemies affected by your Spider's Webs have -10% to All Resistances"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={threshold=1,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-10}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={threshold=1,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-10}}}},nil}c["You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead"]={nil,"You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead "}c["+15% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=15}},nil}c["6% increased Area of Effect per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=6}},nil}c["+40% to Critical Strike Multiplier against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=262144,name="CritMultiplier",type="BASE",value=40}},nil}c["Minions have 15% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=15}}}},nil}c["1% additional Physical Damage Reduction per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% Minions have 20% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% Minions have 20% more Maximum Life "}c["4% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=4}},nil}c["+5% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["50% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-50}},nil}c["Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth"]={nil,"Critical Strikes have 20% chance to Blind Enemies while you have Cat's Stealth "}c["20% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil}c["30% chance to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently"]={{}," to gain an Endurance Charge when you are Hit 25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second "}c["Grants Level 20 Aspect of the Cat Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="CatAspect"}}},nil}c["22% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=22}},nil}c["Single-target Melee attacks deal Splash Damage to surrounding targets 20% increased Area of Effect"]={nil,"Single-target Melee attacks deal Splash Damage to surrounding targets 20% increased Area of Effect "}c["Adds 1 to 65 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=65}},nil}c["+60% to Lightning Resistance while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=60}},nil}c["Gain a Power Charge on non-Critical Strike"]={nil,"Gain a Power Charge on non-Critical Strike "}c["Minions have 5% additional chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5}}}},nil}c["Minions have 4% additional chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=4}}}},nil}c["12% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=12}},nil}c["Gain 10% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=10}},nil}c["30% chance to Poison on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=30}},nil}c["113% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=113}},nil}c["+12% to Critical Strike Multiplier with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["25% increased Effect of Buffs granted by your Golems for each Summoned Golem"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}}," for each Summoned "}c["450% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=450}},nil}c["Curses in this item are reflected back to you"]={nil,"Curses in this item are reflected back to you "}c["155% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=155}},nil}c["20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil}c["5% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=5}},nil}c["10.0 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=10}},nil}c["6% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-6}},nil}c["Regenerate 0.3% of Mana per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegenPercent",type="BASE",value=0.3}},nil}c["25% more chance to Evade Projectile Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="ProjectileEvadeChance",type="MORE",value=25}},nil}c["-20 Fire Damage taken when Hit"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenWhenHit",type="BASE",value=-20}},nil}c["2% increased Intelligence for each Unique Item Equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,keywordFlags=0,name="Int",type="INC",value=2}},nil}c["40% increased Effect of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10%"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=40}}," of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10% "}c["Golems have 38% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=38}}}},nil}c["20% increased Damage while you have a Summoned Golem 30% increased Effect of Buffs granted by your Golems Golems have 15% increased Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," while you have a Summoned 30% increased Effect of Buffs granted by your Golems Golems have 15% increased Maximum Life "}c["16% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=16}},nil}c["25% chance to Curse un-cursed Enemies with Enfeeble on Hit"]={{}," to Curse un-cursed Enemies withon Hit "}c["Fire Skills have a 25% chance to apply Fire Exposure on Hit"]={nil,"a 25% chance to apply Fire Exposure on Hit "}c["Axe Attacks deal 30% increased Damage with Hits and Ailments"]={{[1]={flags=65536,keywordFlags=786432,name="Damage",type="INC",value=30}},nil}c["50% reduced Experience gain"]={{}," Experience gain "}c["+40% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=40}},nil}c["20% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned "}c["26% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=26}},nil}c["Unaffected by Frostbite while affected by Purity of Ice Immune to Shock while affected by Purity of Lightning"]={nil,"Unaffected by Frostbite while affected by Purity of Ice Immune to Shock while affected by Purity of Lightning "}c["4% increased Brand Activation frequency"]={{[1]={flags=0,keywordFlags=0,name="BrandActivationFrequency",type="INC",value=4}},nil}c["Gain Immunity to Physical Damage for 1.5 seconds on Rampage Rampage"]={nil,"Gain Immunity to Physical Damage for 1.5 seconds on Rampage Rampage "}c["Gains no Charges During effect of any Soul Ripper Flask"]={nil,"Gains no Charges During effect of any Soul Ripper Flask "}c["10% increased Effect of your Curses if you've spent 200 total Mana Recently"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}}," if you've spent 200 total Mana Recently "}c["+24 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24}},nil}c["Projectiles Pierce 5 additional Targets while you have Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=5}},nil}c["+250 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=250}},nil}c["5% increased Impale Effect +20 to Strength"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=5}}," Impale +20 to Strength "}c["+0 seconds to Avian's Might Duration"]={{[1]={[1]={skillName="Aspect of the Avian",type="SkillName"},flags=0,keywordFlags=0,name="PrimaryDuration",type="BASE",value=0}},nil}c["+35 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=35}},nil}c["30% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["10% increased Attack and Cast Speed while you have a Totem"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["18% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=18}},nil}c["80% increased Critical Strike Chance if you haven’t Blocked Recently"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}}," if you haven’t Blocked Recently "}c["Nearby Allies' Action Speed cannot be modified to below base value Nearby Enemies cannot deal Critical Strikes"]={nil,"Nearby Allies' Action Speed cannot be modified to below base value Nearby Enemies cannot deal Critical Strikes "}c["+8 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=8},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=8}},nil}c["-5 to Total Mana Cost of Skills while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-5}},nil}c["15% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=15}},nil}c["30% increased total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldLeechRate",type="INC",value=30}},nil}c["15% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=15}},nil}c["4% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["20% reduced Reflected Physical Damage taken 4% chance to deal Double Damage +20 to Strength"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected 4% chance to deal Double Damage +20 to Strength "}c["+10% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=10}},nil}c["0.5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.5}},nil}c["+5% chance to Evade Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=5}},nil}c["+10 to maximum Divine Charges Gain a Divine Charge on Hit"]={{}," maximum Divine Charges Gain a Divine Charge on Hit "}c["25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain an Endurance Charge on Kill 10% more 10% reduced Physical Damage taken while at maximum Endurance Charges "}c["8% reduced Elemental Damage taken while at Maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-8}},nil}c["Vaal Skills have 25% reduced Soul Cost during effect Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=256,name="Duration",type="INC",value=-25}}," Soul Cost s used have 40% reduced Soul Gain Prevention "}c["Arrows that Pierce have 50% chance to cause Bleeding"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=1025,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["100% more Critical Strike Chance against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="CritChance",type="MORE",value=100}},nil}c["15% increased Critical Strike Chance with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["+18 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=18}},nil}c["30% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=30},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=30},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=30}},nil}c["+2 to Level of Socketed Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="all",value=2}}},nil}c["40% reduced Freeze Duration on you"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=-40}}," on you "}c["10% increased Projectile Attack Damage"]={{[1]={flags=1025,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["60% increased Damage against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=60}},nil}c["14% increased Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["Attack Skills deal 24% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["Attack Skills deal 25% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["+12% to Critical Strike Multiplier with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["Attack Skills deal 20% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["20% increased Damage for each Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Summoned "}c["Culling Strike Gain 1 Rage on Critical Hit with attacks, no more than once every 0.5 seconds"]={nil,"Culling Strike Gain 1 Rage on Critical Hit with attacks, no more than once every 0.5 seconds "}c["Purity of Elements has 30% increased Aura Effect"]={{[1]={[1]={skillName="Purity of Elements",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["50% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=50}},nil}c["15% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=15}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["+30% to Critical Strike Multiplier with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Zealot's Oath during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ZealotsOath",type="FLAG",value=true}},nil}c["175% increased Critical Strike Chance for Spells if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=175}},nil}c["+160 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=160}},nil}c["+15% to Critical Strike Multiplier with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["+5% Chance to Block Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil}c["33% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=33}},nil}c["50% chance to Avoid being Frozen"]={{[1]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=50}},nil}c["Socketed Curse Skills ignore Curse Limit"]={nil,"Socketed Curse Skills ignore Curse Limit "}c["20% increased Damage with Hits and Ailments per Freeze, Shock and Ignite on Enemy"]={{[1]={[1]={type="Multiplier",var="FreezeShockIgniteOnEnemy"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["Attack Skills deal 8% increased Damage with Ailments while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["Can have up to 1 additional Totem summoned at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["+8% Chance to Block Projectile Attack Damage +4% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}}," Projectile Attack Damage +4% Chance to Block Attack Damage "}c["+1000 Armour while you do not have Avatar of Fire +2000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}," while you do not have Avatar of Fire +2000 Armour while you do not have Avatar of Fire "}c["+25% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["Grants Level 25 Purity of Lightning Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="LightningResistAura"}}},nil}c["15% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-15}},nil}c["30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy Recover 100 Life when your Trap is triggered by an Enemy"]={{[1]={flags=0,keywordFlags=4096,name="Life",type="BASE",value=30}}," to gain Phasing for 4 seconds when your is triggered by an Enemy Recover 100 when your Trap is triggered by an Enemy "}c["30% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=30}},nil}c["Adds 1 to 6 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=6}},nil}c["Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies"]={nil,"Attacks Maim on Hit against Bleeding Enemies 10% chance to Blind with Hits against Bleeding Enemies "}c["20% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["30% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}}}},nil}c["100% reduced Despair Mana Reservation"]={{[1]={[1]={skillName="Despair",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["120% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=120}},nil}c["20% increased Damage with Hits and Ailments against Enemies affected by Ailments 20% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=786432,name="Damage",type="INC",value=20}}," against Enemies affected by Ailments 20% increased Effect of Non-Damaging Ailments "}c["25% increased Elemental Damage with Attack Skills per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=25}},nil}c["12% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["10% chance to gain Elusive on Kill"]={{}," to gain Elusive on Kill "}c["200 Mana spent Recently, up to 50% 10% chance to gain Arcane Surge when you Kill an Enemy"]={nil,"200 Mana spent Recently, up to 50% 10% chance to gain Arcane Surge when you Kill an Enemy "}c["With at least 40 Strength in Radius, Ground Slam has a 50% increased angle With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 50% increased angle With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy "}c["With 40 Intelligence in Radius, Glacial Cascade has an additional Burst"]={nil,"With 40 Intelligence in Radius, Glacial Cascade has an additional Burst "}c["+68 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=68}},nil}c["With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds"]={nil,"With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. With at least 40 Strength in Radius, Vigilant Strike Fortifies you and Nearby Allies for 12 seconds "}c["Enemies you Curse are Unnerved"]={nil,"Enemies you Curse are Unnerved "}c["Can Consume 4 Support Gems"]={nil,"Can Consume 4 Support Gems "}c["Transfiguration of Mind"]={{[1]={flags=0,keywordFlags=0,name="TransfigurationOfMind",type="FLAG",value=true}},nil}c["28% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=28}},nil}c["15% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=15}},nil}c["Nearby Allies have 5% increased Defences per 100 Strength you have"]={{[1]={[1]={div=100,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Defences",type="INC",value=5},onlyAllies=true}}},nil}c["10% chance to gain a Power Charge when you Shock a Chilled Enemy"]={{}," to gain a Power Charge when you Shock a Chilled Enemy "}c["28% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=28}},nil}c["5% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["Axe Attacks deal 20% increased Damage with Hits and Ailments"]={{[1]={flags=65536,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["+50% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=50}},nil}c["Every 5 seconds, Regenerate 20% of Life over one second You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other While there are at least five nearby Allies, you and nearby Allies have Onslaught"]={nil,"Every 5 seconds, Regenerate 20% of Life over one second You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other While there are at least five nearby Allies, you and nearby Allies have Onslaught "}c["Summon 2 additional Skeleton Warriors with Summon Skeleton"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton "}c["40% increased Effect of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of Golems"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=40}}," of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of s "}c["+55 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=55}},nil}c["10% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=10}},nil}c["Herald of Agony has 100% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil}c["50% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=50}},nil}c["18% increased Quantity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=18}},nil}c["30% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=30},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=30},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=30}},nil}c["You lose 5% of Energy Shield per second Life Leech is applied to Energy Shield instead while on Full Life"]={nil,"You lose 5% of Energy Shield per second Life Leech is applied to Energy Shield instead while on Full Life "}c["+1 to Melee range with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1}},nil}c["Adds 53 to 60 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=60}},nil}c["You have Onslaught while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["+2 to Level of all Cold Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="cold",[3]="active_skill"},value=2}}},nil}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned "}c["Trigger Level 10 Shock Ground when Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="TriggeredShockedGround"}}},nil}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently Regenerate 2% of Life per second if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},[2]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=100}}," to Taunt on Hit 6% reduced Regenerate 2% of Life per second "}c["140% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=140}},nil}c["5% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit "}c["0.5% of Lightning Damage Leeched as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageEnergyShieldLeech",type="BASE",value=0.5}},nil}c["15% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["6% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=6}},nil}c["50% increased Shock Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=50}}," on You "}c["25% reduced Bleed duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=-25}},nil}c["Chill and Freeze duration on you is based on 65% of Energy Shield"]={nil,"Chill and Freeze duration on you is based on 65% of Energy Shield "}c["40% increased Spell Damage while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["25% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=25}},nil}c["90% increased Rarity of Items found with a Normal Item equipped"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NormalItem"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=90}},nil}c["+60% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=60}},nil}c["Shock Reflection"]={nil,"Shock Reflection "}c["Wrath Reserves no Mana"]={{[1]={[1]={skillId="Wrath",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["+15 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=15}},nil}c["Gain a Frenzy Charge on reaching Maximum Power Charges 15% increased Cold Damage per Frenzy Charge"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges 15% increased Cold Damage per Frenzy Charge "}c["Socketed Gems fire Projectiles in a Nova"]={nil,"Socketed Gems fire Projectiles in a Nova "}c["35% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting "}c["Regenerate 2% of Life per second if a Minion has Died Recently Minions Recover 4% of Life on Minion Death"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}}," if a Minion has Died Recently Minions Recover 4% of on Minion Death "}c["Trigger Level 20 Fog of War when your Trap is triggered"]={nil,"Trigger Level 20 Fog of War when your Trap is triggered "}c["Mace or Sceptre Attacks deal 30% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["+2% to Damage over Time Multiplier for Poison"]={{[1]={flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=2}},nil}c["100% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=100}},nil}c["10% chance to gain Unholy Might for 10 seconds on Kill"]={{}," to gain Unholy Might for 10 seconds on Kill "}c["+28 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=28}},nil}c["+6% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=6}},nil}c["14% increased Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["+30 Energy Shield gained on Killing a Shocked Enemy"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=30}}," gained on Killing a Shocked Enemy "}c["5% increased Projectile Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1024,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["40% more Elemental Damage if you've dealt a Crit in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="ElementalDamage",type="MORE",value=40}},nil}c["20% chance to Poison on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PoisonChance",type="BASE",value=20}},nil}c["Unaffected by Vulnerability while affected by Determination 8% chance to Block Spells while affected by Discipline"]={nil,"Unaffected by Vulnerability while affected by Determination 8% chance to Block Spells while affected by Discipline "}c["35% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=35}},nil}c["20% increased Radius of Auras"]={{[1]={flags=0,keywordFlags=1,name="AreaOfEffect",type="INC",value=20}},nil}c["7% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=7}},nil}c["10% reduced Mana Cost of Skills while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-10}},nil}c["10% increased Movement Speed while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["20% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=20}},nil}c["40% increased Effect of Herald Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=40}}," of Herald Buffs on you "}c["Grants Level 25 Scorching Ray Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="FireBeam"}}},nil}c["Skills Chain an additional time while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil}c["+100 Armour per Summoned Totem"]={{[1]={[1]={stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=100}},nil}c["Enemies near Corpses affected by your Curses are Blinded Enemies killed near Corpses affected by your Curses explode, dealing 3% of their Life as Physical Damage"]={nil,"Enemies near Corpses affected by your Curses are Blinded Enemies killed near Corpses affected by your Curses explode, dealing 3% of their Life as Physical Damage "}c["Minions have 8% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=8}}}},nil}c["+5% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=5}},nil}c["+8% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=8}},nil}c["+110 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=110}},nil}c["Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy"]={nil,"Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy "}c["8% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=8},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=8},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=8}},nil}c["10% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="INC",value=10}},nil}c["15% increased Area of Effect if you have Stunned an Enemy Recently"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}}," if you have Stunned an Enemy Recently "}c["25% chance to Curse Enemies with level 10 Vulnerability on Hit Attacks Cause Bleeding when Hitting Cursed Enemies"]={{}," to Curse Enemies with level 10on Hit Attacks Cause Bleeding "}c["Single-target Melee attacks deal Splash Damage to surrounding targets"]={nil,"Single-target Melee attacks deal Splash Damage to surrounding targets "}c["+2 seconds to Cat's Stealth Duration"]={{[1]={[1]={skillName="Aspect of the Cat",type="SkillName"},flags=0,keywordFlags=0,name="PrimaryDuration",type="BASE",value=2}},nil}c["Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently"]={nil,"Culling Strike Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently "}c["Your Maximum Resistances are 80%"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="OVERRIDE",value=80},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="OVERRIDE",value=80},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="OVERRIDE",value=80},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="OVERRIDE",value=80}},nil}c["16% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=16}},nil}c["295% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=295}},nil}c["You cannot be Ignited for 3 seconds after being Ignited"]={nil,"You cannot be Ignited for 3 seconds after being Ignited "}c["Unaffected by Temporal Chains while affected by Haste"]={nil,"Unaffected by Temporal Chains while affected by Haste "}c["Half of your Strength is added to your Minions"]={{[1]={flags=0,keywordFlags=0,name="HalfStrengthAddedToMinions",type="FLAG",value=true}},nil}c["+25% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}},nil}c["+55 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=55}},nil}c["+55% to Cold Resistance while affected by Herald of Ice"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofIce"},flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=55}},nil}c["20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonVoidSphere"}}},nil}c["30% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}c["Gems Socketed in Red Sockets have +1 to Level Gems Socketed in Green Sockets have +10% to Quality"]={nil,"Gems Socketed in Red Sockets have +1 to Level Gems Socketed in Green Sockets have +10% to Quality "}c["40% increased Energy Shield Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=40}},nil}c["+5 to Evasion Rating per 1 Maximum Energy Shield on Helmet"]={{[1]={[1]={div=1,stat="EnergyShieldOnHelmet",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=5}},nil}c["25% Chance to Ignite when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=25}},nil}c["12% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-12}},nil}c["50% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=50}},nil}c["14% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=14}},nil}c["3% increased Intelligence for each Unique Item Equipped"]={{[1]={[1]={type="Multiplier",var="UniqueItem"},flags=0,keywordFlags=0,name="Int",type="INC",value=3}},nil}c["65% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=65}},nil}c["Zombies deal 100% increased Physical Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}}}},nil}c["Consecrated Ground you create applies 10% increased Damage taken to Enemies"]={nil,"Consecrated Ground you create applies 10% increased Damage taken to Enemies "}c["Axe Attacks deal 10% increased Damage with Hits and Ailments"]={{[1]={flags=65536,keywordFlags=786432,name="Damage",type="INC",value=10}},nil}c["Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of their Maximum Life as Physical Damage "}c["Mercury Footprints"]={nil,"Mercury Footprints "}c["40% more Elemental Damage if you've Crit in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="ElementalDamage",type="MORE",value=40}},nil}c["+65 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=65}},nil}c["Regenerate 2 Mana per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=2}},nil}c["20% increased Taunt Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Taunt "}c["5% increased Brand Activation frequency"]={{[1]={flags=0,keywordFlags=0,name="BrandActivationFrequency",type="INC",value=5}},nil}c["4% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=4}},nil}c["7% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=7}},nil}c["60% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=60}},nil}c["Gain Shocking Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=100},[2]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="PhysicalCanShock",type="FLAG",value=true},[3]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="ColdCanShock",type="FLAG",value=true},[4]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="FireCanShock",type="FLAG",value=true},[5]={[1]={type="Condition",var="ShockingConflux"},flags=0,keywordFlags=0,name="ChaosCanShock",type="FLAG",value=true}},nil}c["30% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=30}},nil}c["10% increased Damage per Summoned Golem 40% increased Effect of Buffs granted by your Golems Golems have 25% increased Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}," per Summoned 40% increased Effect of Buffs granted by your Golems Golems have 25% increased Maximum Life "}c["Can have 1 additional Siege Ballista Totem per 200 Dexterity"]={{[1]={[1]={skillName="Siege Ballista",type="SkillName"},[2]={div=200,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}},nil}c["+1 to Level of all Cold Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="cold",[3]="active_skill"},value=1}}},nil}c["50% chance to gain a Power Charge when you Summon a Totem"]={{}," to gain a Power Charge when you Summon a "}c["+2% Chance to Block Attack Damage while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["Adds 12 to 16 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=16}},nil}c["Cannot lose Crab Barriers if you have lost Crab Barriers Recently"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently "}c["+320 to Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="BASE",value=320}},nil}c["12% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Triggers Level 20 Blinding Aura when Equipped Adds 22 to 44 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=44}},"Triggers Level 20 Blinding Aura when Equipped "}c["Summoned Golems are Immune to Elemental Damage 20% increased Damage per Summoned Golem"]={nil,"Summoned Golems are Immune to Elemental Damage 20% increased Damage per Summoned Golem "}c["14% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["Every 5 seconds, Regenerate 20% of Life over one second"]={nil,"Every 5 seconds, Regenerate 20% of Life over one second "}c["0.5% of Attack Damage Leeched as Mana against Poisoned Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=1,keywordFlags=262144,name="DamageManaLeech",type="BASE",value=0.5}},nil}c["+32% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=32}},nil}c["Adds 10 to 38 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=38}},nil}c["50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="MORE",value=50}}," with Herald Skills Minions from Herald Skills deal 25% more Damage "}c["Reflects 240 to 300 Physical Damage to Attackers on Block"]={nil,"Reflects 240 to 300 Physical Damage to Attackers on Block "}c["Adds 15 to 28 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=28}},nil}c["5% reduced Area Damage taken from Hits +2 to Melee Strike Range 10% increased Area of Effect if you have Stunned an Enemy Recently Melee Skills have 10% increased Area of Effect"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits +2 to Melee Strike Range 10% increased Area of Effect if you have Stunned an Enemy Recently Melee Skills have 10% increased Area of Effect "}c["Deal no Non-Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="DealNoLightning",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="DealNoCold",type="FLAG",value=true},[4]={flags=0,keywordFlags=0,name="DealNoChaos",type="FLAG",value=true}},nil}c["100% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["2% increased Minion Duration per Zombie you own"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillType=21,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=2}}}}," per you own "}c["18% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=18}},nil}c["50% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=50}},nil}c["50% reduced Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Damage",type="INC",value=-50}},nil}c["6% increased Accuracy Rating with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["+78 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=78}},nil}c["50% chance to be inflicted with Bleeding when Hit by an Attack"]={{}," to be inflicted when Hit by an Attack "}c["Trigger Socketed Spells when you Focus"]={nil,"Trigger Socketed Spells when you Focus "}c["Cannot be Blinded"]={nil,"Cannot be Blinded "}c["Gain 20% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}},nil}c["15% chance of Projectiles Piercing"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=15}}," of Piercing "}c["You are cursed with Level 10 Vulnerability"]={{[1]={flags=0,keywordFlags=0,name="ExtraCurse",type="LIST",value={applyToPlayer=true,level=10,skillId="Vulnerability"}}},nil}c["30% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=30}},nil}c["50 Life Regenerated per second if you have at least 500 Maximum Energy Shield"]={{[1]={[1]={stat="EnergyShield",threshold=500,type="StatThreshold"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=50}},nil}c["Curse Skills have 80% increased Skill Effect Duration"]={{[1]={[1]={skillType=32,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=80}},nil}c["Nearby Enemies grant 25% increased Flask Charges 2% additional Chance to receive a Critical Strike"]={nil,"Nearby Enemies grant 25% increased Flask Charges 2% additional Chance to receive a Critical Strike "}c["+15% to Critical Strike Multiplier with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["+100 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=100}},nil}c["Regenerate 1% of Energy Shield per second for each"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}}," for each "}c["Strike Skills target 1 additional nearby Enemy"]={nil,"Strike Skills target 1 additional nearby Enemy "}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit "}c["420% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=420}},nil}c["100% increased Effect of Auras from Mines"]={{[1]={flags=0,keywordFlags=8192,name="AuraEffect",type="INC",value=100}},nil}c["25% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["+20% to Damage over Time Multiplier for Ailments from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=2048,keywordFlags=0,name="DotMultiplier",type="BASE",value=20}},nil}c["Gain a Frenzy Charge on every 50th Rampage Kill"]={nil,"Gain a Frenzy Charge on every 50th Rampage Kill "}c["You gain Phasing for 3 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 3 seconds on using a Vaal Skill "}c["+110 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=110}},nil}c["+13% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=13}},nil}c["Socketed Gems are Supported by level 15 Pierce"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportPierce"}}},nil}c["40% chance to Avoid being Frozen"]={{[1]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=40}},nil}c["Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"Effects of Consecrated Ground you create Linger for 4 seconds "}c["+1 to maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=1}},nil}c["+40 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=40}},nil}c["If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}}}},nil}c["4% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=4}},nil}c["20% chance to gain Fortify on Melee Stun"]={{}," to gain Fortify on Stun "}c["+90 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=90}},nil}c["1.5% of Damage leeched as Life while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1.5}},nil}c["25% chance to avoid Fire Damage when Hit You always Ignite while Burning"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=25}}," to avoid when Hit You always Ignite while Burning "}c["12% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["28% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=28}},nil}c["Enemies Become Chilled as they Unfreeze"]={nil,"Enemies Become Chilled as they Unfreeze "}c["Cannot be Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["Socketed Gems have 40% reduced Elemental Equilibrium effect Socketed Gems have 25% reduced Elemental Equilibrium effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-40}}}}," Elemental Equilibrium Socketed Gems have 25% reduced Elemental Equilibrium effect "}c["Unaffected by Poison 20% of Damage taken gained a Life over 4 seconds when Hit"]={nil,"Unaffected by Poison 20% of Damage taken gained a Life over 4 seconds when Hit "}c["You gain an Endurance Charge on use"]={nil,"You gain an Endurance Charge on use "}c["285% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=285}},nil}c["100% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil}c["23% increased Elemental Damage with Attack Skills per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=23}},nil}c["8% increased Accuracy Rating with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["20% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}}}},nil}c["25% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=25}},nil}c["163% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=163}},nil}c["7% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=7}},nil}c["Attacks with Two Handed Melee Weapons deal 20% increased Damage with Hits and Ailments"]={{[1]={flags=301989888,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["Raging Spirits have 140% increased Damage"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=140}}}},nil}c["Gain Flask Charges when you deal a Critical Strike"]={nil,"Gain Flask Charges when you deal a Critical Strike "}c["Gain 10% of Physical Damage as Extra Chaos Damage while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=10}},nil}c["Sentinels of Purity deal 100% increased Damage"]={{[1]={[1]={skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=100}}}},nil}c["120% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=120}},nil}c["8% increased Accuracy Rating with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["14% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=14}},nil}c["10% chance to gain a Power Charge when you Block"]={{}," to gain a Power Charge when you Block "}c["Minions have 10% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}}},nil}c["Remove an Ailment when you use a Flask if all Equipped Items are Elder Items Elder Item"]={nil,"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items Elder Item "}c["20% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=20}},nil}c["Mace or Sceptre Attacks deal 14% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["Adds 115 to 260 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=115},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=260}},nil}c["8% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["3% increased Experience gain"]={{}," Experience gain "}c["+14% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=14}},nil}c["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy"]={{}," to gain aCharge on Killing a Frozen Enemy "}c["0.6% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.6}},nil}c["maximum Life per second for each Stage"]={nil,"maximum Life per second for each Stage "}c["10% increased Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["30% increased Zombie Resistances"]={{}," Resistances "}c["Adds 59 to 102 Fire Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=59},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=102}},nil}c["Traps and Mines have a 25% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=12288,name="PoisonChance",type="BASE",value=25}},nil}c["+1% Chance to Block Attack Damage while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["25% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["20% increased Critical Strike Chance with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["+1 to Level of Socketed Minion Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="minion",value=1}}},nil}c["8% increased Attack Speed with Swords"]={{[1]={flags=4194309,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["+35% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=35}},nil}c["Left ring slot: 80% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-80}}," Reflected "}c["20% increased Physical Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Left ring slot: 40% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-40}}," Reflected "}c["Left ring slot: 30% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-30}}," Reflected "}c["+23% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=23}},nil}c["15% additional Physical Damage Reduction while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=15}},nil}c["60% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=60}},nil}c["25% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting "}c["20% reduced Reflected Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected "}c["Channelling Skills deal 8% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["Reflects 200 to 250 Physical Damage to Attackers on Block"]={nil,"Reflects 200 to 250 Physical Damage to Attackers on Block "}c["Your Minions use your Flasks when summoned"]={nil,"Your Minions use your Flasks when summoned "}c["Socketed Gems are Supported by level 16 Increased Minion Speed"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=16,skillId="SupportMinionSpeed"}}},nil}c["Pain Attunement"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Pain Attunement"}},nil}c["+35 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=35}},nil}c["Spectres have 1000% increased Critical Strike Chance"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=1000}}}},nil}c["40% chance to Avoid being Stunned while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=40}},nil}c["10% chance to gain an Endurance Charge when you Block 20% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block 20% chance to gain an Endurance Charge when you Block "}c["With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage"]={nil,"With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage "}c["Cannot be Stunned while Leeching You are Immune to Bleeding while Leeching"]={nil,"Cannot be Stunned while Leeching You are Immune to Bleeding while Leeching "}c["Adds 5 to 10 Fire Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="FireMin",type="BASE",value=5},[2]={flags=131076,keywordFlags=0,name="FireMax",type="BASE",value=10}},nil}c["While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level"]={{[1]={[1]={stat="Life",type="PerStat"},[2]={type="Multiplier",var="Level"},[3]={type="Condition",var="HerEmbrace"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=0.005},[2]={[1]={stat="EnergyShield",type="PerStat"},[2]={type="Multiplier",var="Level"},[3]={type="Condition",var="HerEmbrace"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=0.005}},nil}c["+2 seconds to Avian's Flight Duration"]={{[1]={[1]={skillName="Aspect of the Avian",type="SkillName"},flags=0,keywordFlags=0,name="SecondaryDuration",type="BASE",value=2}},nil}c["25% increased Effect of Herald Buffs on you 25% reduced Mana Reservation of Herald Skills"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=25}}," of Herald Buffs on you 25% reduced Mana Reservation "}c["Enemies take 10% increased Damage for each of your Brands Attached to them"]={nil,"Enemies take 10% increased Damage for each of your Brands Attached to them "}c["16% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=16}},nil}c["Enemies take 5% increased Damage for each of your Brands Attached to them"]={nil,"Enemies take 5% increased Damage for each of your Brands Attached to them "}c["Reflects 1 to 250 Lightning Damage to Melee Attackers Chaos Damage does not bypass Energy Shield"]={nil,"Reflects 1 to 250 Lightning Damage to Melee Attackers Chaos Damage does not bypass Energy Shield "}c["18% increased effect of Non-Curse Auras you Cast"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=18}},nil}c["23% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="PhysicalDamage",type="MORE",value=23}},nil}c["With at least 40 Strength in Radius, 20% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer"]={nil,"With at least 40 Strength in Radius, 20% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer "}c["Recover 50 Life when you Block 50% increased Defences from Equipped Shield"]={nil,"Recover 50 Life when you Block 50% increased Defences from Equipped Shield "}c["+100 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=100}},nil}c["+50 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=50}},nil}c["You take 30% reduced Extra Damage from Critical Strikes"]={nil,"You take 30% reduced Extra Damage from Critical Strikes "}c["Adds 2 to 4 Fire Damage to Attacks per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=2},[2]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=4}},nil}c["Arrows that Pierce have +50% to Critical Strike Multiplier"]={nil,"Arrows that Pierce have +50% to Critical Strike Multiplier "}c["Cannot be Stunned by Spells if your other Ring is a Shaper Item"]={nil,"Cannot be Stunned by Spells if your other Ring is a Shaper Item "}c["10% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-10}},nil}c["60% increased Lightning Damage while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=60}},nil}c["Regenerate 2% of Life per second while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["13% reduced Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=-13}},nil}c["Grants level 15 Vengeance Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="Vengeance"}}},nil}c["Enemies near corpses you Spawned Recently are Chilled and Shocked"]={nil,"Enemies near corpses you Spawned Recently are Chilled and Shocked "}c["Melee Skills have 10% increased Area of Effect"]={{[1]={[1]={skillType=24,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["150% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=150}},nil}c["2% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=2}},nil}c["10% chance to Blind with Hits against Bleeding Enemies 15% more Damage with Bleeding"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="Damage",type="BASE",value=10}}," to Blind 15% more with Bleeding "}c["+10% to Critical Strike Multiplier with Fire Skills"]={{[1]={flags=0,keywordFlags=16,name="CritMultiplier",type="BASE",value=10}},nil}c["+8% to Damage over Time Multiplier for Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="DotMultiplier",type="BASE",value=8}},nil}c["With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons"]={nil,"With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons "}c["Adds 60 to 110 Chaos Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=60},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=110}},nil}c["20% increased Critical Strike Chance with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["100% reduced Frostbite Mana Reservation"]={{[1]={[1]={skillName="Frostbite",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["Adds 22 to 32 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=32}},nil}c["+1 to maximum number of Summoned Holy Relics"]={{[1]={flags=0,keywordFlags=0,name="ActiveHolyRelicLimit",type="BASE",value=1}},nil}c["Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage "}c["100% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=100}},nil}c["50% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=50}},nil}c["25% increased Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=25}},nil}c["2% of Attack Damage Leeched as Life and Mana if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=1,keywordFlags=0,name="DamageLeech",type="BASE",value=2}},nil}c["Grants Armour equal to 160% of your Reserved Life to you and nearby Allies"]={{[1]={flags=0,keywordFlags=0,name="GrantReservedLifeAsAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1.6}}}},nil}c["40% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil}c["75% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=75}},nil}c["Recover 250 Life when you Block +6% Chance to Block"]={nil,"Recover 250 Life when you Block +6% Chance to Block "}c["6% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["4% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-4}},nil}c["20% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=20}},nil}c["Gain 18% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=18}},nil}c["25% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=25}},nil}c["40% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["-40% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-40}},nil}c["5% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=5}},nil}c["-1 to maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=-1}},nil}c["25% reduced Golem Size"]={{}," Size "}c["2% of Fire Damage Leeched as Life while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=2}},nil}c["5% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=5}},nil}c["You Cannot Be Shocked While Frozen You Cannot Be Shocked While Chilled"]={nil,"You Cannot Be Shocked While Frozen You Cannot Be Shocked While Chilled "}c["40% increased Damage against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["6% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["Radius: 18"]={nil,"Radius: 18 "}c["Ignites you inflict with Attacks deal Damage 35% faster"]={{[1]={flags=1,keywordFlags=0,name="IgniteBurnFaster",type="INC",value=35}},nil}c["Enemies you Shock have 30% reduced Cast Speed"]={nil,"Enemies you Shock have 30% reduced Cast Speed "}c["Gain 75 Armour per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["10% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["40% reduced Freeze Duration on you 15% additional Physical Damage Reduction while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=-40}}," on you 15% additional Physical Damage Reduction "}c["10% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=10}},nil}c["Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={stat="PowerCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil}c["16% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Wrath has 30% increased Aura Effect"]={{[1]={[1]={skillName="Wrath",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["+10 to maximum Divine Charges"]={{}," maximum Divine Charges "}c["24% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["100% increased Critical Strike Chance against Enemies that are affected"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}}," against Enemies that are affected "}c["30 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=30}},nil}c["Deal no Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical",type="FLAG",value=true}},nil}c["Non-Unique Flasks applied to you have 10% increased Effect"]={nil,"Non-Unique Flasks applied to you have 10% increased Effect "}c["8% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["6% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["20% chance to gain Fortify on Melee Stun You have Onslaught while you have Fortify"]={{}," to gain Fortify on Stun You have Onslaught "}c["+2 to Level of all Minion Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="minion",[2]="active_skill"},value=2}}},nil}c["20% increased Warcry Duration"]={{[1]={flags=0,keywordFlags=4,name="Duration",type="INC",value=20}},nil}c["35% reduced Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-35}},nil}c["100% increased Shock Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=100}}," on You "}c["Adds 10 to 36 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=36}},nil}c["You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=16}}},[2]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=144}}}},nil}c["Gain Onslaught for 1 second per Frenzy Charge on use Gain Onslaught for 2 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use Gain Onslaught for 2 second per Frenzy Charge on use "}c["Adds 14 to 26 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=14},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=26}},nil}c["+24 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24}},nil}c["8% chance to Knock Enemies Back on Hit with Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=8}}," with Damage "}c["Vitality Reserves no Mana"]={{[1]={[1]={skillId="Vitality",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Purity of Lightning Reserves no Mana"]={{[1]={[1]={skillId="LightningResistAura",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Minions deal 12% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}},nil}c["25% increased Critical Strike Chance with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["Cannot be Stunned while you have at least 25 Rage"]={{[1]={[1]={threshold=25,type="MultiplierThreshold",var="Rage"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["+20 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["+16 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=16}},nil}c["20% increased Damage while you have a Summoned Golem 30% increased Effect of Buffs granted by your Golems"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," while you have a Summoned 30% increased Effect of Buffs granted by your Golems "}c["Lightning Damage from Enemies Hitting you is Lucky"]={nil,"Lightning Damage from Enemies Hitting you is Lucky "}c["+45 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=45},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=45}},nil}c["138% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=138}},nil}c["Passives in radius are Conquered by the Templars"]={nil,"Passives in radius are Conquered by the Templars "}c["15% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["reducing Movement Speed by 40%"]={nil,"reducing Movement Speed by 40% "}c["Summoned Raging Spirits take 20% of their Maximum Life per second as Chaos Damage"]={nil,"Summoned Raging Spirits take 20% of their Maximum Life per second as Chaos Damage "}c["15% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil}c["60% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=60}},nil}c["10% increased Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Vaal Skills deal 80% increased Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=256,name="Damage",type="INC",value=80}},nil}c["12% increased Attack and Cast Speed per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Spell Hits if you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=2,keywordFlags=0,name="Speed",type="INC",value=12}}," per Ghost Shroud Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Hits "}c["20% increased Vaal Skill Effect Duration"]={{[1]={flags=0,keywordFlags=256,name="Duration",type="INC",value=20}},nil}c["5% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=5}},nil}c["Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"]={nil,"Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies "}c["30% chance to gain a Frenzy Charge on Kill Gore Footprints"]={{}," to gain aCharge on Kill Gore Footprints "}c["+38 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=38}},nil}c["10% reduced Flask Charges used from Mana Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-10}}," from Mana Flasks "}c["14% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently 15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="LifeRecoveryRate",type="BASE",value=15},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="ManaRecoveryRate",type="BASE",value=15},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="EnergyShieldRecoveryRate",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage "}c["Adds 3 to 8 Fire Spell Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=3},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=8}},nil}c["With at least 40 Intelligence in Radius, Cold Snap has a 25% chance to grant a Power Charge on Kill With at least 40 Intelligence in Radius, Cold Snap has a 50% chance to grant a Power Charge on Kill"]={nil,"With at least 40 Intelligence in Radius, Cold Snap has a 25% chance to grant a Power Charge on Kill With at least 40 Intelligence in Radius, Cold Snap has a 50% chance to grant a Power Charge on Kill "}c["Damage Penetrates 10% of Enemy Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=10}},nil}c["Adds 3 to 7 Fire Spell Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=3},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=7}},nil}c["Triggers Level 20 Reflection when Equipped 50% increased Physical Damage"]={nil,"Triggers Level 20 Reflection when Equipped 50% increased Physical Damage "}c["25% increased Zombie Size Enemies killed by Zombies explode dealing 20% of their Maximum Life as Fire Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=25}}}}," Size Enemies killed by Zombies explode dealing 20% of their as Fire Damage "}c["25% chance to inflict Cold Exposure on Hit 25% chance to inflict Fire Exposure on Hit"]={{}," to inflict Cold Exposure on Hit 25% chance to inflict Fire Exposure on Hit "}c["You cannot have non-Animated Minions"]={nil,"You cannot have non-Animated Minions "}c["+25% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=25}},nil}c["40% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=40}}," Maximum "}c["5% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=5}},nil}c["+3% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances"]={nil,"Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances "}c["Your Golems are aggressive"]={nil,"Your Golems are aggressive "}c["6% reduced Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-6}},nil}c["Mind Over Matter"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Mind Over Matter"}},nil}c["185% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=185}},nil}c["20% increased Projectile Attack Damage with Claws or Daggers"]={{[1]={[1]={modFlags=786432,type="ModFlagOr"},flags=1029,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["+8 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=8}},nil}c["12% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["30% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=30}},nil}c["45% increased Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=45}},nil}c["200% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=2,keywordFlags=0,name="Damage",type="INC",value=200}},nil}c["+1% to maximum Cold Resistance while affected by Herald of Ice"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofIce"},flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=1}},nil}c["100% increased Ignite Duration on You 10% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=100}}," on You 10% increased Movement Speed "}c["10% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=10}}}},nil}c["With at least 40 Dexterity in Radius, Shrapnel Shot's"]={nil,"With at least 40 Dexterity in Radius, Shrapnel Shot's "}c["Minions deal 14% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=14}}}},nil}c["+10% to all Elemental Resistances and maximum Elemental Resistances while affected by a Non-Vaal Guard Skill 20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill 20% more Damage taken if a Non-Vaal Guard Buff was lost Recently"]={{[1]={flags=0,keywordFlags=256,name="ElementalResist",type="BASE",value=10}}," and maximum Elemental Resistances while affected by a Non- Guard Skill 20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill 20% more Damage taken if a Non-Vaal Guard Buff was lost Recently "}c["6% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["Recover 3% of Life when you lose a Spirit Charge"]={nil,"Recover 3% of Life when you lose a Spirit Charge "}c["206% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=206}},nil}c["2% increased Area of Effect per 25 Rampage Kills Gain a Frenzy Charge on every 50th Rampage Kill"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=2}}," per 25 Rampage Kills Gain aCharge on every 50th Rampage Kill "}c["40% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-40}},nil}c["Summoned Skeletons have Avatar of Fire"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Avatar of Fire"}}}},nil}c["+2 to Melee Strike Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}c["You cannot be Ignited while you have a Flame Golem Summoned"]={nil,"You cannot be Ignited while you have a Flame Golem Summoned "}c["8% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=8}},nil}c["+19 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=19}},nil}c["Non-instant Mana recovery from Flasks is also recovered as Life"]={nil,"Non-instant Mana recovery from Flasks is also recovered as Life "}c["Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you"]={nil,"Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you "}c["30% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=30}},nil}c["24% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=24}},nil}c["-50% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-50}},nil}c["20% chance to gain a Power Charge on non-Critical Strike"]={{}," to gain a Power Charge on non-Critical Strike "}c["8% increased Mana Regeneration Rate per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=8}},nil}c["+10% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=10}},nil}c["50% increased Evasion if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil}c["9% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=9}},nil}c["10% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=10}},nil}c["8% additional Chance to Block while Dual Wielding Claws"]={{[1]={[1]={type="Condition",var="DualWieldingClaws"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["2% increased Attack and Cast Speed per Summoned Raging Spirit 2% increased Minion Duration per Zombie you own"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}}}," per Summoned Raging Spirit 2% increased Minion Duration per you own "}c["2% increased Experience gain"]={{}," Experience gain "}c["Adds 20 to 30 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=20},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=30}},nil}c["Sacrifice 4% of your Life when you Use or Trigger a Spell Skill 2% increased Critical Strike Chance for Spells per 100 Maximum Life"]={nil,"Sacrifice 4% of your Life when you Use or Trigger a Spell Skill 2% increased Critical Strike Chance for Spells per 100 Maximum Life "}c["100% increased Minion Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=100}}}},nil}c["Adds 21 to 33 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=21},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=33}},nil}c["24% increased Physical Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Adds 22 to 35 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=22},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=35}},nil}c["Ailments against other targets"]={nil,"Ailments against other targets "}c["50% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=50}},nil}c["1.6% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.6}},nil}c["Far Shot"]={{[1]={flags=0,keywordFlags=0,name="FarShot",type="FLAG",value=true}},nil}c["35% increased Armour while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="Armour",type="INC",value=35}},nil}c["12% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=12}},nil}c["35% increased Energy Shield Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=35}},nil}c["Enemies killed near Corpses affected by your Curses explode, dealing 3% of their Life as Physical Damage"]={nil,"Enemies killed near Corpses affected by your Curses explode, dealing 3% of their Life as Physical Damage "}c["+18 to Quality +15% to Fire and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=18}}," Quality +15% to "}c["+20% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=20}},nil}c["8% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["50% increased Damage with Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="Damage",type="INC",value=50}},nil}c["15% increased Physical Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["+6% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil}c["15% chance to Avoid interruption from Stuns while Casting"]={{}," to Avoid interruption from Stuns while Casting "}c["Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently"]={nil,"Life Leech effects are not removed at Full Life 30% increased Area of Effect if you've Killed Recently "}c["Adds 10 to 15 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=15}},nil}c["Every 14 seconds:"]={{},nil}c["6% increased Damage per Frenzy Charge with Hits against Enemies on Low Life"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=6}},nil}c["Your Raised Spectres also gain Arcane Surge when you do 50% increased Critical Strike Chance for Spells per Raised Spectre"]={nil,"Your Raised Spectres also gain Arcane Surge when you do 50% increased Critical Strike Chance for Spells per Raised Spectre "}c["Chaos Damage is taken from Mana before Life"]={nil,"Chaos Damage is taken from Mana before Life "}c["1% of Life Regenerated per second per 500 Maximum Energy Shield"]={{[1]={[1]={div=500,stat="EnergyShield",type="PerStat"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["65% reduced Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=-65}},nil}c["Cannot be Frozen"]={{[1]={flags=0,keywordFlags=0,name="AvoidFreeze",type="BASE",value=100}},nil}c["+1 to Level of Socketed Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="all",value=1}}},nil}c["12% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["20% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritChance",type="INC",value=20}},nil}c["Has not Consumed any Gems"]={nil,"Has not Consumed any Gems "}c["Mines Hinder Enemies near them for 2 seconds when they Land,"]={nil,"Mines Hinder Enemies near them for 2 seconds when they Land, "}c["25% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=25},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=25},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=25}},nil}c["15% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=15}},nil}c["Lose 0.1% of maximum Life per second per Rage while you are not losing Rage Effects granted for having Rage are Tripled Cannot be Stunned while you have at least 25 Rage"]={nil,"Lose 0.1% of maximum Life per second per Rage while you are not losing Rage Effects granted for having Rage are Tripled Cannot be Stunned while you have at least 25 Rage "}c["+40% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=40}},nil}c["50% increased Maximum total Recovery per second from Life Leech if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=50}},nil}c["+18 to All Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=18},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=18}},nil}c["100% More Bow Damage at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=131076,keywordFlags=0,name="Damage",type="MORE",value=100}},nil}c["20% increased Critical Strike Chance with Axes"]={{[1]={flags=65540,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["40% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil}c["12% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Recover 3% of Maximum Mana when you Shock an Enemy"]={nil,"Recover 3% of Maximum Mana when you Shock an Enemy "}c["Maximum total Recovery per second from Life Leech is doubled"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="MORE",value=100}},nil}c["20% chance to Avoid being Stunned while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=20}},nil}c["50% increased Critical Strike Chance for Spells per Raised Spectre Adds 12 to 16 Fire Damage"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}}," per Raised Spectre Adds 12 to 16 Fire Damage "}c["Adds 1 to 4 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=4}},nil}c["Adds 4 to 7 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=7}},nil}c["+70 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=70}},nil}c["If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour"]={nil,"If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour "}c["Socketed Gems are Supported by level 12 Fortify"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=12,skillId="SupportFortify"}}},nil}c["50% increased Herald of Thunder Buff Effect"]={{[1]={[1]={skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=50}},nil}c["+40 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}},nil}c["Skills fire an additional Projectile"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}c["Recover Full Life at the end of the Flask effect"]={nil,"Recover Full Life at the end of the Flask effect "}c["+8% to Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=8}},nil}c["Reflects 10 Cold Damage to Melee Attackers Reflects 50 Cold Damage to Melee Attackers"]={nil,"Reflects 10 Cold Damage to Melee Attackers Reflects 50 Cold Damage to Melee Attackers "}c["+110 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=110}},nil}c["+70 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=70}},nil}c["Totems Fire 2 additional Projectiles"]={{[1]={flags=0,keywordFlags=16384,name="ProjectileCount",type="BASE",value=2}},nil}c["+35% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=35}},nil}c["+40% to Critical Strike Multiplier against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="CritMultiplier",type="BASE",value=40}},nil}c["10% increased Damage taken from Skeletons 10% increased Damage taken from Ghosts"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}}," from s 10% increased Damage taken from Ghosts "}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of non-Damaging Ailments on Enemies Shocks from your Hits always increase Damage taken by at least 15%"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of non-Damaging Ailments on Enemies Shocks from your Hits always increase Damage taken by at least 15% "}c["Socketed Gems are Supported by Level 30 Cold to Fire"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportColdToFire"}}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently 15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage Cannot be Stunned if you haven't been Hit Recently 15 Mana Regenerated per second if you've used a Movement Skill Recently"]={{}," "}c["+20% to Critical Strike Multiplier with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["5% increased Area of Effect per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["Gain Life from Leech instantly from Hits with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true}},nil}c["60% increased Aspect of the Spider Area of Effect"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=60}},nil}c["25% reduced Trap Duration"]={{[1]={flags=0,keywordFlags=0,name="TrapDuration",type="INC",value=-25}},nil}c["Socketed Trap Skills create a Smoke Cloud when triggered"]={nil,"Socketed Trap Skills create a Smoke Cloud when triggered "}c["20% chance to gain a Spirit Charge on Kill +1 to Maximum Spirit Charges per Abyss Jewel affecting you"]={{}," to gain a Spirit Charge on Kill +1 to Maximum Spirit Charges "}c["15% of Physical Attack Damage Added as Lightning Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=15}},nil}c["30% reduced Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=-30}},nil}c["Socketed Golem Skills have 20% increased Attack and Cast Speed"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}}},nil}c["When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has You and nearby Allies have 12% increased Movement Speed"]={nil,"When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has You and nearby Allies have 12% increased Movement Speed "}c["+5000 to Armour while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=5000}},nil}c["Enemies you hit with Elemental Damage temporarily get +25% Resistance to those Elements and -50% Resistance to other Elements"]={{[1]={flags=0,keywordFlags=0,name="ElementalEquilibrium",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="HitByFireDamage"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25}}},[3]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={neg=true,type="Condition",var="HitByFireDamage"},[2]={type="Condition",varList={[1]="HitByColdDamage",[2]="HitByLightningDamage"}},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-50}}},[4]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="HitByColdDamage"},flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}}},[5]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={neg=true,type="Condition",var="HitByColdDamage"},[2]={type="Condition",varList={[1]="HitByFireDamage",[2]="HitByLightningDamage"}},flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-50}}},[6]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="HitByLightningDamage"},flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=25}}},[7]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={neg=true,type="Condition",var="HitByLightningDamage"},[2]={type="Condition",varList={[1]="HitByFireDamage",[2]="HitByColdDamage"}},flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-50}}}},nil}c["+46 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=46}},nil}c["Trigger a Socketed Lightning Spell on Hit"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,name="SupportUniqueMjolnerLightningSpellsCastOnHit"}}},nil}c["20% chance to attack with Level 16 Molten Burst on Melee Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=16,skillId="TriggeredMoltenStrike"}}},nil}c["100% increased Damage while there is only one nearby Enemy"]={{[1]={[1]={type="Condition",var="OnlyOneNearbyEnemy"},flags=0,keywordFlags=0,name="Damage",type="INC",value=100}},nil}c["+1 to maximum number of Sentinels of Purity"]={{}," maximum number of Sentinels of Purity "}c["0% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=0}},nil}c["18% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=18}},nil}c["15% increased Movement Speed if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Attacks have an additional Projectile when in Off Hand"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}c["45% reduced Effect of Chill on You"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-45}},nil}c["Adds 115 to 265 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=115},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=265}},nil}c["2% increased Attack Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["Regenerate 0.5% of Mana per second for each Summoned Totem"]={{[1]={[1]={stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=0,name="ManaRegenPercent",type="BASE",value=0.5}},nil}c["Gain Accuracy Rating equal to your Strength"]={{[1]={[1]={stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=1}},nil}c["Implicit Modifier magnitudes are tripled Corrupted"]={nil,"Implicit Modifier magnitudes are tripled Corrupted "}c["Kills grant an additional Vaal Soul if you have Rampaged Recently"]={nil,"Kills grant an additional Vaal Soul if you have Rampaged Recently "}c["5% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-5}},nil}c["If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned"]={nil,"If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned "}c["50% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["25% increased Brand Activation Frequency if you haven't used a Brand Skill Recently 20% increased Brand Attachment range"]={{[1]={flags=0,keywordFlags=0,name="BrandActivationFrequency",type="INC",value=25}}," if you haven't used a Brand Skill Recently 20% increased Brand Attachment range "}c["+60% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=60}},nil}c["25% increased Physical Damage with Weapons per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["Skills used by Mines have 10% increased Area of Effect"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="INC",value=10}},nil}c["You cannot be Chilled for 3 seconds after being Chilled"]={nil,"You cannot be Chilled for 3 seconds after being Chilled "}c["6% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=6}},nil}c["20% increased Critical Strike Chance for each Mine Detonated Recently, up to 100%"]={{[1]={[1]={limit=100,limitTotal=true,type="Multiplier",var="MineDetonatedRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["30% of Lightning Damage Leeched as Mana during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageManaLeech",type="BASE",value=30}},nil}c["10% increased Effect of Arcane Surge on you per"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}}," of Arcane Surge on you per "}c["Mines have 20% increased Detonation Speed Each Mine applies 2% increased Damage taken to Enemies near it, up to 10%"]={nil,"Mines have 20% increased Detonation Speed Each Mine applies 2% increased Damage taken to Enemies near it, up to 10% "}c["Adds 23 to 40 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=23},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=40}},nil}c["15% increased Attack Speed while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=1,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["10% chance for Energy Shield Recharge to start when you use a Skill Eldritch Battery"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}}," for Recharge to start when you use a Skill Eldritch Battery "}c["20 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=20}},nil}c["16% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=16}},nil}c["+50% to Critical Strike Multiplier if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}},nil}c["12% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=12}},nil}c["You gain 100 Evasion Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=100}},nil}c["50% chance to Maim Enemies on Critical Strike with Attacks +45% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=65536,name="CritMultiplier",type="BASE",value=50}}," to Maim Enemies +45% "}c["10% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+25% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=25}},nil}c["Flasks applied to you have 10% increased Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}},nil}c["Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 10% increased Movement Speed for 20 seconds when you Kill an Enemy"]={nil,"Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 10% increased Movement Speed for 20 seconds when you Kill an Enemy "}c["Melee Critical Strikes have 25% chance to Poison the Enemy"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=25}},nil}c["50% increased Effect of Infusion"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=50}}," of Infusion "}c["Adds 4 to 7 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=7}},nil}c["10% increased Impale Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}}," Impale "}c["25% more Damage while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=25}}," while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby "}c["30% increased Warcry Duration"]={{[1]={flags=0,keywordFlags=4,name="Duration",type="INC",value=30}},nil}c["Inflict non-Damaging Ailments as though dealing 200% more Damage"]={nil,"Inflict non-Damaging Ailments as though dealing 200% more Damage "}c["Reflects 20 Chaos Damage to Melee Attackers Reflects 30 Chaos Damage to Melee Attackers"]={nil,"Reflects 20 Chaos Damage to Melee Attackers Reflects 30 Chaos Damage to Melee Attackers "}c["50% more Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="MORE",value=50}},nil}c["50% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies "}c["10% chance when Hit for double Armour effect"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=10}}," when Hit for double effect "}c["+25 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=25}},nil}c["If you've Warcried Recently, you and nearby allies deal 30% increased Damage"]={nil,"If you've Warcried Recently, you and nearby allies deal 30% increased Damage "}c["Totems have 10% additional Physical Damage Reduction"]={nil,"Totems have 10% additional Physical Damage Reduction "}c["70% reduced Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=-70}},nil}c["Minions from Herald Skills deal 25% more Damage"]={nil,"from Herald Skills deal 25% more Damage "}c["With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 4% increased Damage each time it Hits."]={nil,"With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 4% increased Damage each time it Hits. "}c["When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating"]={nil,"lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating "}c["15% increased Critical Strike Chance with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["25% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-25}},nil}c["3% increased Character Size"]={{}," Character Size "}c["0.8% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.8}},nil}c["30% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=30}},nil}c["You only lose 7 Crab Barriers when you take Physical Damage from a Hit"]={nil,"You only lose 7 Crab Barriers when you take Physical Damage from a Hit "}c["18% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=18}},nil}c["Socketed Gems are Supported by Level 16 Cluster Trap"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=16,skillId="Unknown"}}},nil}c["+50% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=50}},nil}c["30% increased Spell Damage if you've Cast a Spell Recently"]={{[1]={[1]={type="Condition",var="CastSpellRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Leech applies instantly during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="InstantManaLeech",type="FLAG",value=true}},nil}c["12% increased Physical Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["+120 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=120}},nil}c["Cannot be Stunned when on Low Life"]={nil,"Cannot be Stunned when on Low Life "}c["20% increased Projectile Attack Damage"]={{[1]={flags=1025,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["14% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=14}},nil}c["Gain Unholy Might for 4 seconds on Critical Strike"]={nil,"Gain Unholy Might for 4 seconds on Critical Strike "}c["12% increased Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="INC",value=12}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["15% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=15}},nil}c["+170 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=170}},nil}c["+60 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=60}},nil}c["50% less Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=-50}},nil}c["+3 to Level of all Chaos Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="chaos",[3]="active_skill"},value=3}}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies 25% chance to Blind Enemies on Hit "}c["30% increased Rarity of Items found during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}},nil}c["6% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=6}},nil}c["Reflects 90 Physical Damage to Melee Attackers"]={{},nil}c["Reflects 81 Physical Damage to Melee Attackers"]={{},nil}c["Gain Rampage while at Maximum Endurances Charges Lose all Endurance Charges when Rampage ends"]={nil,"Gain Rampage while at Maximum Endurances Charges Lose all Endurance Charges when Rampage ends "}c["23% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=23}},nil}c["18% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}},nil}c["+10 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10}},nil}c["30% of Lightning Damage is taken from Mana before Life when Hit Recover 3% of Maximum Mana when you Shock an Enemy"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=30}}," is taken from Mana before Life when Hit Recover 3% of Maximum Mana when you Shock an Enemy "}c["+23% Chaos Resistance when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=23}},nil}c["68% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=68}},nil}c["+100 to Maximum Energy Shield per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},nil}c["12% increased Movement Speed during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}},nil}c["+4% to Damage over Time Multiplier for Ailments per Elder Item Equipped"]={{[1]={[1]={type="Multiplier",var="ElderItem"},flags=2048,keywordFlags=0,name="DotMultiplier",type="BASE",value=4}},nil}c["10% additional Block Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["10% increased Cast Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["25% chance to Curse Enemies with level 10 Vulnerability on Hit"]={{}," to Curse Enemies with level 10on Hit "}c["-40 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-40}}," from Attacks "}c["Enemies take 5% increased Damage for each type of Ailment you have inflicted on them"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[3]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[4]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[5]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[6]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}}},nil}c["You can Cast an additional Brand Brand Skills have 20% increased Duration 10% increased Brand Activation frequency 20% increased Brand Attachment range"]={nil,"You can Cast an additional Brand Brand Skills have 20% increased Duration 10% increased Brand Activation frequency 20% increased Brand Attachment range "}c["8% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["30% increased Effect of Arcane Surge on you 10% chance to gain Arcane Surge when you Hit a Unique enemy"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=30}}," of Arcane Surge on you 10% chance to gain Arcane Surge when you Hit a Unique enemy "}c["+30 to maximum Energy Shield per 100 Reserved Life"]={{[1]={[1]={div=100,stat="LifeReserved",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=30}},nil}c["25% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=25}},nil}c["24% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=24}},nil}c["5% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Energy Shield Recharge is not interrupted by Damage if Recharge"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge "}c["16% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=16}},nil}c["Reflects 23 Physical Damage to Melee Attackers"]={{},nil}c["18% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=18}},nil}c["Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability"]={nil,"Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You are cursed with Level 10 Vulnerability "}c["8% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=8}},nil}c["15% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=15}},nil}c["39% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=39}},nil}c["+10% to Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=10}},nil}c["50 Energy Shield Regenerated per Second per Poison on you, up to 250 per second"]={{[1]={[1]={limit=250,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=50}},nil}c["Minions have +10% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=10}}}},nil}c["6% increased Accuracy Rating with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["10% chance to Cause Monsters to Flee Melee Attacks cause Bleeding"]={{}," to Cause Monsters to Flee Attacks cause Bleeding "}c["+11% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=11}},nil}c["10% chance when Hit for double Armour effect 0.5% of Maximum Life Regenerated per second while affected by a Guard Skill Buff"]={{}," while affected by a Guard Skill Buff "}c["Enemies you Curse are Intimidated Enemies you Curse are Unnerved"]={nil,"Enemies you Curse are Intimidated Enemies you Curse are Unnerved "}c["Unaffected by Burning Ground"]={nil,"Unaffected by Burning Ground "}c["1% of Energy Shield Regenerated per second for each"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}}," for each "}c["Grants Level 20 Bone Armour Skill 1% additional Physical Damage Reduction per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30%"]={nil,nil}c["Gain 25% of Physical Damage as Extra Lightning Damage while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=25}},nil}c["+16% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=16}},nil}c["10% increased Experience Gain of Corrupted Gems Corrupted"]={{}," Experience Gain of Corrupted Gems Corrupted "}c["16% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=16}},nil}c["10% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+45 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=45}},nil}c["Grants Summon Harbinger of Brutality Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfBrutality"}}},nil}c["+1 Mana per 4 Strength"]={{[1]={[1]={div=4,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}},nil}c["Socketed Lightning Spells deal 100% increased Spell Damage if Triggered"]={{},nil}c["+10 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10}},nil}c["100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="MORE",value=100}}," from Herald Skills 50% more Damage Over Time with Herald Skills "}c["20% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=20}},nil}c["+16% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=16}},nil}c["10% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=10}},nil}c["Nearby Allies have +7% to Critical Strike Multiplier per 100 Dexterity you have"]={{[1]={[1]={div=100,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=7},onlyAllies=true}}},nil}c["Nearby Allies have +8% to Critical Strike Multiplier per 100 Dexterity you have"]={{[1]={[1]={div=100,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=8},onlyAllies=true}}},nil}c["+60 Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=60}},nil}c["+10% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritMultiplier",type="BASE",value=10}},nil}c["9% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=9}},nil}c["Enemies Ignited by you have -10% to Fire Resistance"]={nil,"Enemies Ignited by you have -10% to Fire Resistance "}c["20% less Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="MORE",value=-20}},nil}c["You cannot Recharge Energy Shield You cannot Regenerate Energy Shield"]={nil,"You cannot Recharge Energy Shield You cannot Regenerate Energy Shield "}c["60% increased Main Hand Attack Damage while wielding two different Weapon Types"]={{[1]={flags=8193,keywordFlags=0,name="Damage",type="INC",value=60}}," Main Hand while wielding two different Types "}c["Minions deal 35% increased Damage while you are affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=35}}}}," while you are affected by a Herald "}c["20% of Maximum Life Converted to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeConvertToEnergyShield",type="BASE",value=20}},nil}c["110% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=110}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 10% increased Movement Speed for 20 seconds when you Kill an Enemy"]={nil,"Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 10% increased Movement Speed for 20 seconds when you Kill an Enemy "}c["+2 to maximum number of Spectres"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=2}},nil}c["Every second, inflict Withered on nearby Enemies for 15 seconds Nearby Hindered Enemies deal 15% reduced Damage over Time"]={nil,"Every second, inflict Withered on nearby Enemies for 15 seconds Nearby Hindered Enemies deal 15% reduced Damage over Time "}c["25% increased Elemental Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["Hits that Stun Enemies have Culling Strike"]={nil,"Hits that Stun Enemies have Culling Strike "}c["60% increased Cold Damage while affected by Herald of Ice"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofIce"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=60}},nil}c["30% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Armour",type="INC",value=30}},nil}c["65% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=65}},nil}c["Recover 2% of Life on Kill Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill"]={nil,"Recover 2% of Life on Kill Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill "}c["10% chance to Poison on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PoisonChance",type="BASE",value=10}},nil}c["0.4% of Fire Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=0.4}},nil}c["Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit"]={nil,"Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit Totems Reflect 15% of their maximum Life as Fire Damage to\nnearby Enemies when Hit "}c["2% increased Area of Effect per 25 Rampage Kills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=2}}," per 25 Rampage Kills "}c["Adds 1 to 17 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=17}},nil}c["Adds 1 to 13 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=13}},nil}c["8% increased Attack Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["10% of Damage Reflected Gained as Life"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=10}}," Reflected Gained as Life "}c["100% increased Rarity of Items found with a Normal Item equipped"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NormalItem"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=100}},nil}c["Socketed Gems are supported by level 20 Cast on Death"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportCastOnDeath"}}},nil}c["50% of Physical Damage Converted to Fire while you have Avatar of Fire +1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," Converted to Fire while you have Avatar of Fire +1000 Armour while you do not have Avatar of Fire "}c["Adds 6 to 9 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=9}},nil}c["Minions Intimidate Enemies for 4 seconds on Hit"]={nil,"Intimidate Enemies for 4 seconds on Hit "}c["+125 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=125}},nil}c["+35% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=35}},nil}c["+10 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=10}},nil}c["You and Allies affected by your Aura Skills deal 20% increased Damage 10% more Damage while you have at least one nearby Ally Herald of Purity has 40% increased Buff Effect"]={nil,"You and Allies affected by your Aura Skills deal 20% increased Damage 10% more Damage while you have at least one nearby Ally Herald of Purity has 40% increased Buff Effect "}c["100% increased Aspect of the Avian Buff Effect"]={{[1]={[1]={skillName="Aspect of the Avian",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil}c["20% reduced Mana Cost of Skills during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-20}},nil}c["+120 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=120}},nil}c["15% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-15}},nil}c["10% chance to gain Arcane Surge when you Hit a Unique enemy"]={{}," to gain Arcane Surge when you Hit a Unique enemy "}c["+10% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["Your Fire Damage can Shock but not Ignite"]={{[1]={flags=0,keywordFlags=0,name="FireCanShock",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="FireCannotIgnite",type="FLAG",value=true}},nil}c["80% increased Critical Strike Chance if you haven’t Blocked Recently +40% to Critical Strike Multiplier if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}}," if you haven’t Blocked Recently +40% to Critical Strike Multiplier "}c["Mace or Sceptre Attacks deal 28% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=28}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Herald Buffs on you"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Herald Buffs on you "}c["10% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-10}},nil}c["10% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=10}},nil}c["0.4% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=0.4}},nil}c["20% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="INC",value=20}},nil}c["Spells Cast by Totems have 6% increased Cast Speed"]={{[1]={flags=16,keywordFlags=16384,name="Speed",type="INC",value=6}},nil}c["16% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["15% increased Character Size"]={{}," Character Size "}c["50% increased Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=50}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge"]={{}," to gain an Endurance Charge when you gain a Power Charge "}c["You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=64}}},[2]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=96}}}},nil}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased "}c["Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded +2 to Maximum number of Skeletons"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed Summoned Skeletons' hits can't be Evaded +2 to Maximum number of Skeletons "}c["5% chance to grant Unholy Might to nearby Enemies on Kill 5% chance to grant Onslaught to nearby Enemies on Kill"]={{}," to grant Unholy Might to nearby Enemies on Kill 5% chance to grant Onslaught to nearby Enemies on Kill "}c["17% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=17}},nil}c["15% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=15},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=15}},nil}c["Socketed Gems are Supported by level 15 Pulverise"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportPulverise"}}},nil}c["Socketed Gems are supported by level 1 Multistrike"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportMultistrike"}}},nil}c["1.5% of Total Physical Damage prevented from Hits in the past 10 seconds is Regenerated as Life per second"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=1.5}}," Total prevented from Hits in the past 10 seconds is Regenerated as Life per second "}c["3% increased Attack Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Your Elemental Damage can Shock"]={{[1]={flags=0,keywordFlags=0,name="ColdCanShock",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="FireCanShock",type="FLAG",value=true}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Zombies"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Zombies "}c["36% increased Attack Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=1,keywordFlags=0,name="Speed",type="INC",value=36}},nil}c["Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=5}},nil}c["10% reduced Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=-10}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you "}c["Auras from your Skills grant 3% increased Attack and Cast"]={{}," Attack and Cast "}c["30% chance to Avoid being Frozen during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=30}},nil}c["7% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=7}},nil}c["Adds 9 to 15 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=9},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=15}},nil}c["20% of Lightning Damage Leeched as Mana during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageManaLeech",type="BASE",value=20}},nil}c["+2 Mana per 4 Strength"]={{[1]={[1]={div=4,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=2}},nil}c["20% increased Critical Strike Chance with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["66% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=66}},nil}c["Poisons you inflict on non-Poisoned Enemies deal 300% increased Damage"]={nil,"Poisons you inflict on non-Poisoned Enemies deal 300% increased Damage "}c["23% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=23}},nil}c["+3 to Level of all Physical Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="physical",[3]="active_skill"},value=3}}},nil}c["+4% Chance to Block Attack Damage while Dual Wielding or holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="DualWielding",[2]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["8% increased Attack Speed with Maces"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning"]={{[1]={[1]={type="Condition",var="AffectedByPurityofLightning"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsLightning",type="BASE",value=10}},nil}c["Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time"]={nil,"Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time "}c["Regenerate 0.5% of Life per second while affected by a Guard Skill Buff"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}}," while affected by a Guard Skill Buff "}c["+1 to Melee Strike Range with Axes"]={{[1]={flags=65540,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=65540,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["Adds 2 to 6 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=6}},nil}c["8% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary Regenerate 15 Mana per Second while on Consecrated Ground"]={nil,"Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary Regenerate 15 Mana per Second while on Consecrated Ground "}c["Consecrated Ground created during Effect applies 10% increased Damage taken to Enemies"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil}c["Your Critical Strikes Knock Back Shocked Enemies 30% increased Critical Strike Chance"]={nil,"Your Critical Strikes Knock Back Shocked Enemies 30% increased Critical Strike Chance "}c["3% chance to Dodge Spell Hits"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=3}},nil}c["Energy Shield Recharge is not interrupted by Damage if Recharge began Recently 50% less Energy Shield Regeneration Rate"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge began Recently 50% less Energy Shield Regeneration Rate "}c["Deal no Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoLightning",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="DealNoCold",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="DealNoFire",type="FLAG",value=true}},nil}c["Nearby Allies' spells have Culling Strike"]={nil,"Nearby Allies' spells have Culling Strike "}c["Increases and Reductions to Light Radius also apply to Damage"]={{[1]={flags=0,keywordFlags=0,name="LightRadiusAppliesToDamage",type="FLAG",value=true}},nil}c["Adds 6 to 10 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}c["40% reduced Ignite Duration on you 50% reduced Extra Damage taken from Critical Strikes while Ignited"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-40}}," on you 50% reduced Extra Damage taken "}c["Melee Attacks Poison on Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["Adds 2 to 3 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=2},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=3}},nil}c["Adds 6 to 12 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},nil}c["20% increased Duration of Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=20},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=20},[5]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=20},[6]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=20}},nil}c["160% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=160}},nil}c["Minions have +29% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=29}}}},nil}c["+45 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=45}},nil}c["Effects granted for having Rage are Tripled"]={nil,"Effects granted for having Rage are Tripled "}c["0.9% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.9}},nil}c["+5% to Damage over Time Multiplier for Poison"]={{[1]={flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=5}},nil}c["+5% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=5}},nil}c["5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["18% increased Projectile Attack Damage"]={{[1]={flags=1025,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["Your Shocks can increase Damage taken by up to a maximum of 60%"]={nil,"Your Shocks can increase Damage taken by up to a maximum of 60% "}c["Adds 10 to 14 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=14}},nil}c["+90 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=90}},nil}c["You lose Virulence 30% slower Minions deal 20% increased Damage while you are affected by a Herald"]={nil,"You lose Virulence 30% slower Minions deal 20% increased Damage while you are affected by a Herald "}c["You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges"]={nil,"You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges "}c["Adds 19 to 34 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=19},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=34}},nil}c["Your Spells have Culling Strike"]={nil,"Your Spells have Culling Strike "}c["+1000 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=1000}},nil}c["You can inflict Bleeding on an Enemy up to 8 times"]={nil,"You can inflict Bleeding on an Enemy up to 8 times "}c["25% of Block Chance applied to Spells +7% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=25}}," applied to s +7% chance to Block Spell Damage "}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit 10% increased Movement Speed if you've Killed Recently"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge 40% chance 10% increased Movement Speed "}c["10% increased Maximum total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=10}},nil}c["250% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=250}},nil}c["Adds 4 to 8 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=8}},nil}c["25% increased Damage while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["+10% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=10}},nil}c["20% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-20}},nil}c["Reflects 15 Fire Damage to Melee Attackers 20% of Physical Damage taken as Fire Damage"]={nil,"Reflects 15 Fire Damage to Melee Attackers 20% of Physical Damage taken as Fire Damage "}c["15% increased Damage with One Handed Weapons"]={{[1]={flags=134217732,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["10% increased Area of Effect if you have Stunned an Enemy Recently"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," if you have Stunned an Enemy Recently "}c["25% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=25}},nil}c["+78 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=78}},nil}c["+15 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=15}},nil}c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by 5 or more Poisons 15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"]={{}," to gain aCharge on Killing an Enemy affected by 5 or more Poisons 15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons "}c["Critical Strike Chance is increased by Uncapped Lightning Resistance"]={{[1]={[1]={div=1,stat="LightningResistTotal",type="PerStat"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=1}},nil}c["Enemies killed explode dealing 10% of their Life as Fire Damage"]={nil,"Enemies killed explode dealing 10% of their Life as Fire Damage "}c["4% increased Attack Speed with Staves"]={{[1]={flags=2097157,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Enemies take 5% increased Damage for each of your Brands Attached to them 20% increased Brand Attachment range"]={nil,"Enemies take 5% increased Damage for each of your Brands Attached to them 20% increased Brand Attachment range "}c["100% reduced Flammability Mana Reservation"]={{[1]={[1]={skillName="Flammability",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["30% less Animate Weapon Duration"]={{[1]={[1]={skillName="Animate Weapon",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="MORE",value=-30}},nil}c["12% increased Cast Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=16,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["+8% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=8}},nil}c["Modifiers to Claw Damage also apply to Unarmed Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="ClawDamageAppliesToUnarmed",type="FLAG",value=true}},nil}c["+200 to Accuracy Rating with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Accuracy",type="BASE",value=200}},nil}c["Flasks gain 3 Charges every 3 seconds Damage Penetrates 6% of Enemy Elemental Resistances 15% chance for Flasks you use to not consume Charges"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},"Flasks gain 3 Charges every 3 seconds 15% chance for Flasks you use to not consume Charges "}c["+55% to Lightning Resistance while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=55}},nil}c["4% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["With at least 40 Strength in Radius, Glacial Hammer deals Cold-only Splash Damage to surrounding targets"]={nil,"With at least 40 Strength in Radius, Glacial Hammer deals Cold-only Splash Damage to surrounding targets "}c["8% increased Attack Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Minions have 10% chance to deal Double Damage while they are on Full Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=10}}}}," while they are on Full Life "}c["8% increased Attack and Cast Speed while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["14% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=14}},nil}c["225% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=225}},nil}c["+2% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["You and nearby Allies deal 6 to 12 added Physical Damage for each Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6}}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}}}}," for each Impale on Enemy "}c["25% chance to gain a Siphoning Charge when you use a Skill"]={{}," to gain a Siphoning Charge when you use a Skill "}c["+13% to Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=13}},nil}c["45% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=45}},nil}c["Socketed Gems are Supported by level 1 Hypothermia"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportDamageAgainstChilled"}}},nil}c["When you kill a Poisoned Enemy during any Flask Effect, nearby Enemies are Poisoned"]={nil,"When you kill a Poisoned Enemy during any Flask Effect, nearby Enemies are Poisoned "}c["+1 to maximum number of Sentinels of Purity +5 to Maximum Virulence"]={{}," maximum number of Sentinels of Purity +5 to Maximum Virulence "}c["60% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-60}},nil}c["15% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=15}},nil}c["1% of Life Regenerated per Second per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["Lose 25 Life for each Enemy hit by your Attacks"]={nil,"Lose 25 Life for each Enemy hit by your Attacks "}c["You are Immune to Silence Frostblink has 50% increased Duration"]={nil,"You are Immune to Silence Frostblink has 50% increased Duration "}c["10 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=10}},nil}c["5% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=5}},nil}c["25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain an Endurance Charge on Kill "}c["Attack Skills deal 25% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["+2 to Melee Strike Range while Holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}c["150% increased Critical Strike Chance for Spells if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=150}},nil}c["10% chance to Curse Enemies with a random Curse on Hit 20% chance to Curse non-Cursed Enemies with a random Curse on Hit"]={{}," to Curse Enemies with a random Curse on Hit 20% chance to Curse non-Cursed Enemies with a random Curse on Hit "}c["Gain Chilling Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="PhysicalCanChill",type="FLAG",value=true},[2]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="LightningCanChill",type="FLAG",value=true},[3]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="FireCanChill",type="FLAG",value=true},[4]={[1]={type="Condition",var="ChillingConflux"},flags=0,keywordFlags=0,name="ChaosCanChill",type="FLAG",value=true}},nil}c["Hatred has 30% increased Aura Effect"]={{[1]={[1]={skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["20% increased Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=20}},nil}c["1% additional Physical Damage Reduction from Hits per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=0,name="PhysicalDamageReductionWhenHit",type="BASE",value=1}},nil}c["With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks "}c["20% increased Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["30% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}},nil}c["You cannot be Shocked while you have a Lightning Golem Summoned"]={nil,"You cannot be Shocked while you have a Lightning Golem Summoned "}c["+25 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=25}},nil}c["15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons 10% increased Damage with Poison per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=1048576,name="Damage",type="BASE",value=15}}," to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons 10% increased "}c["Speed per second"]={nil,"Speed per second "}c["10% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=10}},nil}c["+17% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=17}},nil}c["30% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["1.5% of Energy Shield Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1.5}},nil}c["25% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["5% reduced Area Damage taken from Hits"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits "}c["35% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["Skills used by Mines deal 30% increased Area Damage if you Detonated a Mine Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=512,keywordFlags=8192,name="Damage",type="INC",value=30}},nil}c["Adds 13 to 47 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=47}},nil}c["Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below base value"]={nil,"Lose all Divine Charges when you gain Divinity Nearby Allies' Action Speed cannot be modified to below base value "}c["100% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=100}},nil}c["80% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["Adds 10 to 90 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=90}},nil}c["Onslaught"]={{[1]={flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["+43% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=43}},nil}c["You can Cast an additional Brand 20% increased Damage with Brand Skills 10% increased Brand Attachment range"]={nil,"You can Cast an additional Brand 20% increased Damage with Brand Skills 10% increased Brand Attachment range "}c["You gain Onslaught for 5 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 5 second per Endurance Charge when Hit "}c["10% reduced Damage taken from Damage Over Time"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenOverTime",type="INC",value=-10}},nil}c["15% increased Area of Effect while wielding a Two Handed Melee Weapon"]={{[1]={flags=256,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}}," while wielding a Two Handed Weapon "}c["150% increased Rarity of Items Dropped by Slain Magic Enemies 150% increased Rarity of Items Dropped by Slain Magic Enemies"]={{}," Rarity of Items Dropped by Slain Magic Enemies 150% increased Rarity of Items Dropped by Slain Magic Enemies "}c["150% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=150}},nil}c["-8 to Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-8}},nil}c["+435 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=435}},nil}c["4% additional Physical Damage Reduction while affected by Herald of Purity"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofPurity"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}},nil}c["8% increased Physical Damage for each time you've Blocked in the past 10 seconds"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}}," for each time you've Blocked in the past 10 seconds "}c["+1 to maximum Energy Shield per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil}c["25% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=25}},nil}c["-10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=-10}},nil}c["5% additional Physical Damage Reduction while moving"]={{[1]={[1]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=5}},nil}c["Remove Bleeding when you use a Life Flask"]={nil,"Remove Bleeding when you use a Life Flask "}c["+500 to Accuracy against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="Accuracy",type="BASE",value=500}},nil}c["13% reduced Mana Cost of Minion Skills"]={{[1]={[1]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-13}},nil}c["Passives in radius are Conquered by the Eternal Empire Historic"]={nil,"Passives in radius are Conquered by the Eternal Empire Historic "}c["Adds 1 to 32 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=32}},nil}c["Socketed Gems are Supported by level 17 Increased Minion Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=17,skillId="SupportMinionDamage"}}},nil}c["Recover 5% of Maximum Life on Kill Recover 5% of Maximum Energy Shield on Kill"]={nil,"Recover 5% of Maximum Life on Kill Recover 5% of Maximum Energy Shield on Kill "}c["21% increased maximum Life, Mana and Global Energy Shield Transfiguration of Soul"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Life",type="INC",value=21}}," , Mana and Energy Shield Transfiguration of Soul "}c["50% reduced Mana Cost of Skills while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-50}},nil}c["+45% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=45}},nil}c["3% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Adds 3 to 7 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=3},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=7}},nil}c["60% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=60}}," for each 200 total Mana you have Spent Recently "}c["Adds 13 to 19 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=19}},nil}c["40% chance to Shock Attackers for 4 seconds on Block"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=40}}," Attackers for 4 seconds on Block "}c["+1 to Melee range with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1}},nil}c["Nearby Enemies are Hindered, with 25% reduced Movement Speed 80% increased Damage against Hindered Enemies"]={nil,"Nearby Enemies are Hindered, with 25% reduced Movement Speed 80% increased Damage against Hindered Enemies "}c["30% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="MovementSpeed",type="INC",value=30}}," for 9 seconds on Throwing a "}c["+20% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=20}},nil}c["+18% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=18}},nil}c["Ignited Enemies Burn 50% faster"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnFaster",type="INC",value=50}},nil}c["Gain Arcane Surge when your Trap is Triggered by an Enemy"]={nil,"Gain Arcane Surge when your Trap is Triggered by an Enemy "}c["15% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=15}},nil}c["40% chance to Chill Attackers for 4 seconds on Block"]={{}," to Chill Attackers for 4 seconds on Block "}c["10% chance to gain an Endurance Charge when you are Hit Enemies have -5% to Total Physical Damage Reduction against your Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=10}}," to gain an Endurance Charge when you are Hit Enemies have -5% to Total against your Hits "}c["Traps and Mines deal 5 to 15 additional Physical Damage"]={{[1]={flags=0,keywordFlags=12288,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=12288,name="PhysicalMax",type="BASE",value=15}},nil}c["Adds 11 to 29 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=11},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=29}},nil}c["3% increased Area of Effect per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=3}},nil}c["8% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil}c["Adds 350 to 500 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=350},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=500}},nil}c["36% increased Movement Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=36}},nil}c["800% more Unarmed Physical Damage"]={{[1]={flags=16777220,keywordFlags=0,name="PhysicalDamage",type="MORE",value=800}},nil}c["+5% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=5}},nil}c["You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner You and nearby Allies have 12% increased Movement Speed"]={nil,"You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage Banner Skills Reserve no Mana When you create a Banner, it gains 40% of the Stages of your placed Banner You and nearby Allies have 12% increased Movement Speed "}c["60% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=60}},nil}c["Your Critical Strikes have a 5% chance to deal Double Damage 40% increased Critical Strike Chance"]={nil,"Your Critical Strikes have a 5% chance to deal Double Damage 40% increased Critical Strike Chance "}c["Minions Leech 0.4% of Damage as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.4}}}},nil}c["190% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=190}},nil}c["25% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["25% increased Fortify duration"]={{[1]={flags=0,keywordFlags=0,name="FortifyDuration",type="INC",value=25}},nil}c["15% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=15}},nil}c["60% increased Critical Strike Chance with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="CritChance",type="INC",value=60}},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}c["8% additional chance to Block when in Off Hand"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["25% increased Damage with Hits and Ailments against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=25}},nil}c["0% increased Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=0}},nil}c["10% additional Physical Damage Reduction while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=10}},nil}c["Gain +10 Life when you Taunt an Enemy"]={nil,"Gain +10 Life when you Taunt an Enemy "}c["You gain Onslaught for 4 seconds on Kill while affected by Haste You have Phasing while affected by Haste"]={nil,"You gain Onslaught for 4 seconds on Kill while affected by Haste You have Phasing while affected by Haste "}c["135% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=135}},nil}c["25% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=25}}," for each 200 total Mana you have Spent Recently, up to 2000% "}c["Consecrated Ground created by this Flask has Tripled Radius"]={nil,"Consecrated Ground created by this Flask has Tripled Radius "}c["+25% to Fire Resistance while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25}},nil}c["100 Life Regenerated per Second while you have Avian's Flight"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sFlight"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=100}},nil}c["+30 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=30}},nil}c["20% chance to Impale Enemies on Hit with Attacks Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour You and nearby Allies deal 6 to 12 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=65536,name="Armour",type="BASE",value=20}}," to Impale Enemies on Hit Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to You and nearby Allies deal 6 to 12 added Physical Damage for\neach Impale on Enemy "}c["6% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=6}},nil}c["70% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["Rampage 2% increased Area of Effect per 25 Rampage Kills"]={nil,"Rampage 2% increased Area of Effect per 25 Rampage Kills "}c["25% more chance to Evade Melee Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="MeleeEvadeChance",type="MORE",value=25}},nil}c["Attacks with Melee Weapons deal 12% increased Damage with Ailments"]={{[1]={flags=33556480,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["14% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance 20% increased Elemental Damage during any Flask Effect 20% increased Elemental Damage with Attack Skills"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8192,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-10}}," Reflected Damage Penetrates 5% Elemental Resistance 20% increased Elemental Damage 20% increased Elemental Damage with Attack Skills "}c["Spreads Tar when you take a Critical Strike"]={nil,"Spreads Tar when you take a Critical Strike "}c["10 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=10}},nil}c["Adds 400 to 600 Physical Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="PhysicalMin",type="BASE",value=400},[2]={flags=0,keywordFlags=131072,name="PhysicalMax",type="BASE",value=600}},nil}c["100% increased Physical Damage while you have Resolute Technique Elder Item"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}}," while you have Resolute Technique Elder Item "}c["Hatred has 60% increased Aura Effect"]={{[1]={[1]={skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["+2 seconds to Avian's Might Duration"]={{[1]={[1]={skillName="Aspect of the Avian",type="SkillName"},flags=0,keywordFlags=0,name="PrimaryDuration",type="BASE",value=2}},nil}c["+24 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24}},nil}c["100% increased Claw Physical Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil}c["8% increased Spell Damage per 5% Block Chance"]={{[1]={[1]={div=5,stat="BlockChance",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["10% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-10}},nil}c["40% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["+20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}},nil}c["Bleeding you inflict deals Damage 15% faster"]={{[1]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=15}},nil}c["50% increased Spell Damage while no Mana is Reserved"]={{[1]={[1]={stat="ManaReserved",threshold=0,type="StatThreshold",upper=true},flags=2,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells"]={nil,"With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells "}c["12% increased Attack Speed with Bows"]={{[1]={flags=131077,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["0.6% of Attack Damage Leeched as Life against Chilled enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=0.6}},nil}c["+61% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=61}},nil}c["15% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=15}},nil}c["8% of maximum Life taken as Chaos Damage per second"]={{[1]={[1]={div=1,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=0.08}},nil}c["Regenerate 0.6% of Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=0.6}},nil}c["Regenerate 1.5% of Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1.5}},nil}c["24% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["1% of Damage dealt by your Totems is Leeched to you as Life"]={{[1]={flags=0,keywordFlags=16384,name="DamageLifeLeechToPlayer",type="BASE",value=1}},nil}c["25% chance to inflict Brittle Cannot inflict Freeze or Chill"]={{}," to inflict Brittle Cannot inflict Freeze or Chill "}c["Arrow can inflict an additional Ignite on an Enemy"]={nil,"Arrow can inflict an additional Ignite on an Enemy "}c["Axe Attacks deal 8% increased Damage with Hits and Ailments"]={{[1]={flags=65536,keywordFlags=786432,name="Damage",type="INC",value=8}},nil}c["Enemies you hit are destroyed on Kill"]={nil,"Enemies you hit are destroyed on Kill "}c["You have Fortify during Effect of any Life Flask"]={nil,"You have Fortify during Effect of any Life Flask "}c["Poison you inflict with Critical Strikes deals 30% more Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=1048576,name="Damage",type="MORE",value=30}},nil}c["Replenishes Energy Shield by 4% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block "}c["20% increased Attack Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["15% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}c["You gain 4% increased Area of Effect for each Mine 20% increased Mine Throwing Speed if you Detonated Mines Recently 40% increased Damage if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},[2]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=4}},"% increased for each 20% increased Mine Throwing Speed 40% increased Damage "}c["8% increased Physical Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["8% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=8}},nil}c["260% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=260}},nil}c["15% increased Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["10% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=10}},nil}c["Adds 12 to 30 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=12},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=30}},nil}c["When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage"]={nil,"When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage "}c["+55% to Fire Resistance while affected by Herald of Ash"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAsh"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=55}},nil}c["Shocked Enemies you Kill Explode, dealing 10% of Shocked Enemies you Kill Explode, dealing 5% of"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of Shocked Enemies you Kill Explode, dealing 5% of "}c["No Life Recovery Applies during Flask effect"]={nil,"No Life Recovery Applies during Flask effect "}c["Adds 10 to 23 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=23}},nil}c["10% chance to gain an Endurance Charge on Melee Critical Strike 30% increased Damage with Ailments from Attack Skills while wielding a Staff +1 to Melee range with Staves"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain an Endurance Charge on Critical Strike 30% increased with Ailments from Attack Skills +1 to Melee range with Staves "}c["60% increased Spell Damage for each 200 total Mana you have Spent Recently"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=60}}," for each 200 total Mana you have Spent Recently "}c["165% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=165}},nil}c["5% reduced Area Damage taken from Hits 10% increased Area of Effect if you have Stunned an Enemy Recently"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits 10% increased Area of Effect if you have Stunned an Enemy Recently "}c["33% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=33}},nil}c["6% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=6}},nil}c["+150 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=150}},nil}c["20% less Minimum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-20}}," Minimum "}c["20% increased Maximum total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=20}},nil}c["20% increased Mine Duration"]={{[1]={flags=0,keywordFlags=0,name="MineDuration",type="INC",value=20}},nil}c["Gains no Charges during Effect of any Overflowing Chalice Flask"]={nil,"Gains no Charges during Effect of any Overflowing Chalice Flask "}c["12% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil}c["75% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=75}}," of Shrine Buffs on you "}c["50% increased Damage with Bleeding you inflict on Maimed Enemies"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=50}}," you inflict on Maimed Enemies "}c["Nearby Enemies have 18% increased Effect of Curses on them"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=18}}}},nil}c["16% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil}c["40% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=40}},nil}c["+12% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=12}},nil}c["0.5% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.5}},nil}c["15% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=15}},nil}c["Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second"]={{[1]={[1]={limit=10,limitTotal=true,type="Multiplier",var="MineDetonatedRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["14% increased Melee Physical Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["13% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=13}},nil}c["You gain 4% increased Area of Effect for each Mine 20% increased Mine Throwing Speed if you Detonated Mines Recently 40% increased Damage if you Detonated Mines Recently Mines have 20% increased Detonation Speed"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},[2]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=4}},"% increased for each 20% increased Mine Throwing Speed 40% increased Damage Mines have 20% increased Detonation Speed "}c["+18 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=18}},nil}c["20% reduced Chill Duration on You 50% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=-20}}," on You 50% chance to Avoid being Chilled "}c["Adds 64 to 96 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=64},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=96}},nil}c["Grants Level 20 Summon Petrification Statue Skill 250% increased Energy Shield"]={nil,nil}c["15% increased Movement Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["180% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=180}},nil}c["5% reduced Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-5}},nil}c["4% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}},nil}c["12% increased Elemental Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["Regenerate 1.5% of Life per second while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}},nil}c["500% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=500}},nil}c["Attacks used by Totems have 5% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=5}},nil}c["125% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=125}},nil}c["Timeless Jewel"]={nil,"Timeless Jewel "}c["Your spells have 100% chance to Shock against Frozen enemies"]={nil,"Your spells have 100% chance to Shock against Frozen enemies "}c["40% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=40}},nil}c["100% increased Charges gained by Other Flasks during Flask Effect"]={{}," Charges gained by Other Flasks "}c["3% increased Attack Speed with Wands"]={{[1]={flags=8388613,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["74% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=74}},nil}c["Adds 23 to 35 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=35}},nil}c["Cannot be Stunned if you have at least 10 Crab Barriers"]={{[1]={[1]={stat="CrabBarriers",threshold=10,type="StatThreshold"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["0.6% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.6}},nil}c["Your Lightning Damage can Ignite"]={{[1]={flags=0,keywordFlags=0,name="LightningCanIgnite",type="FLAG",value=true}},nil}c["Recover 50 Life when you Block 50% increased Defences from Equipped Shield +5% Chance to Block Attack Damage while holding a Shield"]={nil,"Recover 50 Life when you Block 50% increased Defences from Equipped Shield +5% Chance to Block Attack Damage while holding a Shield "}c["+500 to Armour per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=500}},nil}c["50% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-50}},nil}c["19% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=19}},nil}c["+20 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}},nil}c["Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second Regenerate 1% of Life per Second for each Trap Triggered Recently, up to 10% per second"]={nil,"Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second Regenerate 1% of Life per Second for each Trap Triggered Recently, up to 10% per second "}c["25% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["60% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=60}}," applied to s "}c["Minions have 80% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=80}}}},nil}c["20% increased Movement Speed while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["+13% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=13}},nil}c["25% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["25% increased Attack Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["Your Aura Buffs do not affect allies"]={{[1]={flags=0,keywordFlags=0,name="SelfAurasCannotAffectAllies",type="FLAG",value=true}},nil}c["Adds 388 to 584 Physical Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="PhysicalMin",type="BASE",value=388},[2]={flags=0,keywordFlags=131072,name="PhysicalMax",type="BASE",value=584}},nil}c["Recover 5% of Maximum Energy Shield on Kill -4% to all Resistances for each Equipped Corrupted Item"]={nil,"Recover 5% of Maximum Energy Shield on Kill -4% to all Resistances for each Equipped Corrupted Item "}c["25% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=25}},nil}c["8% increased Effect of non-Damaging Ailments per Elder Item Equipped"]={{[1]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=8},[2]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=8},[3]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=8}},nil}c["Warcries count as having 10 additional nearby Enemies"]={nil,"Warcries count as having 10 additional nearby Enemies "}c["30% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil}c["You gain Onslaught for 2 seconds on Killing Taunted Enemies"]={nil,"You gain Onslaught for 2 seconds on Killing Taunted Enemies "}c["20% increased Mine Laying Speed if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=20}},nil}c["Critical Strikes deal no Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=-100}},nil}c["14% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["15% increased Damage taken while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=15}},nil}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently 2% of Life Regenerated per second if you've Taunted an Enemy Recently"]={{}," "}c["+30% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=30}},nil}c["+10% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=10}},nil}c["Gain Her Blessing for 3 seconds when you Ignite an Enemy"]={nil,"Gain Her Blessing for 3 seconds when you Ignite an Enemy "}c["+52% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=52}},nil}c["25% more Damage with Hits and Ailments against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=786432,name="Damage",type="MORE",value=25}},nil}c["20% increased Damage with Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="Damage",type="INC",value=20}},nil}c["10% chance to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy"]={{}," to gain Onslaught for 10 Seconds when you Hit a Rare or Unique Enemy "}c["Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 2% of Armour when you Block "}c["6% increased Accuracy Rating with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["Adds 330 to 480 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=330},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=480}},nil}c["15% more Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="MORE",value=15}},nil}c["Enemies you Kill have a 20% chance to Explode, dealing a quarter"]={nil,"Enemies you Kill have a 20% chance to Explode, dealing a quarter "}c["+15% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil}c["30% slower start of Energy Shield Recharge during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=-30}},nil}c["22% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=22}},nil}c["20% reduced Mana Cost of Skills when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-20}},nil}c["+5 to Armour per 5 Evasion Rating on Equipped Shield"]={{[1]={[1]={div=5,stat="EvasionOnWeapon 2",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=5}},nil}c["130% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=130}},nil}c["250% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=250}},nil}c["+50 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=50}},nil}c["15% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=15},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=15}},nil}c["100% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=100}},nil}c["Adds 14 to 28 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=14},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=28}},nil}c["15% chance for Flasks you use to not consume Charges"]={{}," for Flasks you use to not consume Charges "}c["Strike Skills also target the previous location they were Used"]={nil,"Strike Skills also target the previous location they were Used "}c["+231 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=231}},nil}c["Adds 19-29 Chaos Damage to Attacks while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=19},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=29}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={type="Condition",var="OffHandAttack"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill 10% more while at maximum Frenzy Charges 10% reduced Physical Damage taken while at maximum Endurance Charges "}c["Adds 11 to 23 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=11},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=23}},nil}c["Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength"]={{[1]={flags=0,keywordFlags=0,name="StrDmgBonusRatioOverride",type="BASE",value=0.3}},nil}c["10% reduced Enemy Stun Threshold with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["Adds 110 to 170 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=110},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=170}},nil}c["175% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=175}},nil}c["Adds 100 to 370 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=370}},nil}c["Shock Enemies as though dealing 300% more Damage Your Shocks can increase Damage taken by up to a maximum of 100%"]={nil,"Shock Enemies as though dealing 300% more Damage Your Shocks can increase Damage taken by up to a maximum of 100% "}c["2% chance to deal Double Damage per Grasping Vine"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=2}}," per Grasping Vine "}c["4% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=4}},nil}c["12% increased Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Skills which throw Traps have Blood Magic"]={{[1]={[1]={skillType=37,type="SkillType"},flags=0,keywordFlags=0,name="BloodMagic",type="FLAG",value=true}},nil}c["Uses both hand slots 300% increased Physical Damage"]={nil,"Uses both hand slots 300% increased Physical Damage "}c["140% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=140}},nil}c["+40% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=40}},nil}c["+10 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["Adds 1 to 50 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=50}},nil}c["+23% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=23}},nil}c["14% increased Damage while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=0,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["+35 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=35}},nil}c["+45% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=45}},nil}c["25% chance to gain an Endurance Charge when you Stun an Enemy 10% increased Stun Duration on Enemies per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=25}}," to gain an Endurance Charge when you Stun an Enemy 10% increased "}c["+2 to Level of all Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="active_skill"},value=2}}},nil}c["2% chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=2}},nil}c["+25 to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}},nil}c["Minions have +15% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}}}},nil}c["+20% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["+100 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=100}},nil}c["129% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=129}},nil}c["57% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=57}},nil}c["+25% to Critical Strike Multiplier with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["+31 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=31}},nil}c["Socketed Gems are Supported by level 8 Trap"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=8,skillId="SupportTrap"}}},nil}c["+38 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=38}},nil}c["15% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=15}}," while Elusive 8% reduced Damage taken while Elusive "}c["Adds 24 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["+111 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=111}},nil}c["Adds 23 to 31 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=23},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=31}},nil}c["Adds 15 to 28 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=28}},nil}c["172% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=172}},nil}c["+2 to Level of Socketed Minion Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="minion",value=2}}},nil}c["24% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["30% increased Mana Regeneration Rate per Raised Spectre"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}}}}," per "}c["Cannot take Reflected Elemental Damage 40% increased Effect of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10%"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Herald Buffs on you Shocks from your Hits always increase Damage taken by at least 10% "}c["-4 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-4}}," from Attacks "}c["40% increased Evasion Rating while you have Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil}c["Regenerate 1.4% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.4}},nil}c["0% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=0}},nil}c["4% chance to Dodge Spell Hits"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=4}},nil}c["+69 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=69}},nil}c["+10% to Cold and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=10}},nil}c["+12% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=12}},nil}c["+63 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=63}},nil}c["100% of Cold Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsFire",type="BASE",value=100}},nil}c["Armour received from Body Armour is doubled"]={{[1]={flags=0,keywordFlags=0,name="Unbreakable",type="FLAG",value=true}},nil}c["33% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=33}},nil}c["Gore Footprints"]={nil,"Gore Footprints "}c["Attacks with Two Handed Weapons deal 25% increased Damage with Hits and Ailments"]={{[1]={flags=268435456,keywordFlags=786432,name="Damage",type="INC",value=25}},nil}c["1% increased Cold Damage per 25 Strength"]={{[1]={[1]={div=25,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=1}},nil}c["+17 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=17}},nil}c["18% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["+23 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=23}},nil}c["Minions deal 18% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}}},nil}c["74% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=74}},nil}c["74% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=74}},nil}c["+44 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=44}},nil}c["74% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=74}},nil}c["+48 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=48}},nil}c["30% increased Damage with Hits and Ailments against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=30}},nil}c["Adds Knockback during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["+48 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=48}},nil}c["Projectile Damage increased by 50% of Arrow Pierce Chance Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce"]={nil,"Projectile Damage increased by 50% of Arrow Pierce Chance Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce "}c["Dagger Attacks deal 20% increased Damage with Ailments"]={{[1]={flags=526336,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Gain Arcane Surge when you deal a Critical Strike"]={nil,"Gain Arcane Surge when you deal a Critical Strike "}c["+300 Armour per active Totem Blood Magic"]={{[1]={flags=0,keywordFlags=16384,name="Armour",type="BASE",value=300}}," per active Blood Magic "}c["+38 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=38}},nil}c["+2 to Level of Socketed Lightning Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="lightning",value=2}}},nil}c["2% chance to Dodge Spell Hits"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=2}},nil}c["Reflects 70 Physical Damage to Melee Attackers"]={{},nil}c["+1 to Maximum number of Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil}c["550% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=550}},nil}c["40% increased Duration of Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=40},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=40},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=40},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=40},[5]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=40},[6]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=40}},nil}c["600% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=600}},nil}c["You can only Socket Corrupted Gems in this item"]={nil,"You can only Socket Corrupted Gems in this item "}c["23% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=23}},nil}c["25% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a "}c["50% increased Melee Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=256,keywordFlags=262144,name="Damage",type="INC",value=50}},nil}c["Ignite a nearby Enemy on Killing an Ignited Enemy Ignites all nearby Enemies on Killing an Ignited Enemy"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy Ignites all nearby Enemies on Killing an Ignited Enemy "}c["20% increased Poison Duration if you have at least 150 Intelligence"]={{[1]={[1]={stat="Int",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=20}},nil}c["475% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=475}},nil}c["15% increased Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=15}},nil}c["20% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}," while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect "}c["You and your Totems Regenerate 1% of Life per second for each Summoned Totem"]={{[1]={[1]={stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1},[2]={flags=0,keywordFlags=16384,name="LifeRegenPercent",type="BASE",value=1}},nil}c["15% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a "}c["-18 Physical Damage taken from Attacks 15% chance to gain a Power Charge on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="PhysicalDamageTaken",type="BASE",value=-18}}," from Attacks 15% chance to gain a Power Charge on Throwing a "}c["-18 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-18}}," from Attacks "}c["Immune to Freeze, Chill, Curses and Stuns during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidFreeze",type="BASE",value=100},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidChill",type="BASE",value=100},[3]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidCurse",type="BASE",value=100},[4]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["28% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=28}},nil}c["Grants level 25 Bear Trap Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="BearTrap"}}},nil}c["Reflects 260 Physical Damage to Melee Attackers"]={{},nil}c["You always Ignite while Burning"]={{[1]={[1]={type="Condition",var="Burning"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=100}},nil}c["8% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-8}},nil}c["10% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=10}},nil}c["0.2% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.2}},nil}c["20% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=20}},nil}c["25% chance to avoid Fire Damage when Hit"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=25}}," to avoid when Hit "}c["10% chance to grant a Power Charge to nearby Allies on Kill 5% chance to grant a Frenzy Charge to nearby Allies on Hit"]={{}," to grant a Power Charge to nearby Allies on Kill 5% chance to grant aCharge to nearby Allies on Hit "}c["30% increased Trap Trigger Radius"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=30}}," Trigger "}c["or Unique Enemy Gain Onslaught for 10 seconds on Kill"]={nil,"or Unique Enemy Gain Onslaught for 10 seconds on Kill "}c["You Cannot Be Shocked While Chilled"]={nil,"You Cannot Be Shocked While Chilled "}c["10% increased Radius of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil}c["+1 to maximum number of Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil}c["You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills"]={nil,"You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills "}c["12% increased Attack Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=12}},nil}c["70% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=70}},nil}c["200 Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},[2]={type="Condition",var="SkillCritRecently"},flags=0,keywordFlags=0,name="LightningDegen",type="BASE",value=200}},nil}c["+50 Mana gained when you Block +5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=50}}," gained when you Block +5% Chance to Block "}c["Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second Regenerate 1% of Life per Second for each Trap Triggered Recently, up to 10% per second 20% reduced Mana Cost of Skills that throw Traps 20% reduced Mana Reservation of Skills that throw Mines"]={nil,"Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second Regenerate 1% of Life per Second for each Trap Triggered Recently, up to 10% per second 20% reduced Mana Cost of Skills that throw Traps 20% reduced Mana Reservation of Skills that throw Mines "}c["+50 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=50}}," gained when you Block "}c["12% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Unaffected by Desecrated Ground"]={nil,"Unaffected by Desecrated Ground "}c["Gain Unholy Might during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}},nil}c["Maximum total Recovery per second from Life Leech is doubled. Life Regeneration has no effect."]={nil,"Maximum total Recovery per second from Life Leech is doubled. Life Regeneration has no effect. "}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently 2% of Life Regenerated per second if you've Taunted an Enemy Recently Enemies Taunted by you deal 10% less Damage with Hits and\nAilments against other targets"]={{}," Enemies Taunted by you deal 10% less and\nAilments against other targets "}c["3% of Life Regenerated per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil}c["Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets "}c["Trigger Level 12 Lightning Bolt when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=12,skillId="LightningSpell"}}},nil}c["1% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["Adds 2 to 59 Lightning Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=2},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=59}},nil}c["50% reduced Freeze Duration on You"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=-50}}," on You "}c["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite "}c["20 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=20}},nil}c["Denoted service of 8000 dekhara in the akhara of Deshret"]={nil,"Denoted service of 8000 dekhara in the akhara of Deshret "}c["Adds 5 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["Unaffected by Elemental Weakness while affected by Purity of Elements"]={nil,"Unaffected by Elemental Weakness while affected by Purity of Elements "}c["+1 to Melee range with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1}},nil}c["5% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5}},nil}c["80% of Block Chance applied to Spells +24% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=80}}," applied to s +24% chance to Block Spell Damage "}c["120% of Block Chance applied to Spells 80% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=120}}," applied to s 80% of Block Chance applied to Spells "}c["120% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=120}}," applied to s "}c["Shocked Enemies you Kill Explode, dealing 5% of"]={nil,"Shocked Enemies you Kill Explode, dealing 5% of "}c["18 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=18}},nil}c["Sword Attacks deal 15% increased Damage with Ailments"]={{[1]={flags=4196352,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["+5% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=5}},nil}c["+8% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=8}},nil}c["Socketed Gems have 25% reduced Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-25}}}},nil}c["+1 to Level of Aura Gems in this item +2 to Level of Socketed Aura Gems"]={{}," Level of Aura Gems in this item +2 to Level of Socketed Aura Gems "}c["225% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=225}},nil}c["11% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=11}},nil}c["Gain 8% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=8}},nil}c["30% Chance to gain Unholy Might on Block for 3 seconds"]={{}," to gain Unholy Might on Block for 3 seconds "}c["100% increased Global Armour when you have no Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Armour",type="INC",value=100}}," when you have no Energy Shield "}c["30% increased Damage when you have no Energy Shield 100% increased Global Armour when you have no Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," when you have no Energy Shield 100% increased Armour when you have no Energy Shield "}c["30% increased Damage when you have no Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}," when you have no Energy Shield "}c["15% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["50% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["350% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=350}},nil}c["Totems gain +16% to all Elemental Resistances Brand Skills have 10% increased Duration"]={nil,"Totems gain +16% to all Elemental Resistances Brand Skills have 10% increased Duration "}c["30% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=30}},nil}c["+20% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=20}},nil}c["+8 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=8}},nil}c["100% increased Duration of Curses on you +5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=100}}," of Curses on you +5% Chance to Block "}c["20% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=20}},nil}c["100% increased Duration of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=100}}," of Curses on you "}c["Adds 43 to 113 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=43},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=113}},nil}c["Triggers Level 20 Cold Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ColdAegis"}}},nil}c["Adds 4 to 8 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=8}},nil}c["+30% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=30}},nil}c["30% increased Mine Duration"]={{[1]={flags=0,keywordFlags=0,name="MineDuration",type="INC",value=30}},nil}c["+36% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=36}},nil}c["Adds 41 to 123 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=41},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=123}},nil}c["You gain 500 Evasion Rating when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=500}},nil}c["Socketed Gems Reserve No Mana"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=-100}},nil}c["Adds 13 to 31 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=31}},nil}c["20% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=20},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=20}},nil}c["120% of Block Chance applied to Spells when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=120}}," applied to s "}c["+1 to Level of Socketed Spell Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="spell",value=1}}},nil}c["Applies level 15 Punishment on Blocking a Melee Attack Applies level 15 Temporal Chains on Blocking a Projectile Attack"]={nil,"Applies level 15 Punishment on Blocking a Melee Attack Applies level 15 Temporal Chains on Blocking a Projectile Attack "}c["+33% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=33}},nil}c["40% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToCold",type="BASE",value=40}},nil}c["Critical Strikes ignore Enemy Monster Elemental Resistances"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="IgnoreElementalResistances",type="FLAG",value=true}},nil}c["+16% to Critical Strike Multiplier with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritMultiplier",type="BASE",value=16}},nil}c["20% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-20}},nil}c["2% increased Spell Damage per 100 Maximum Life"]={{[1]={[1]={div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=2}},nil}c["Attacks with this Weapon Penetrate 5% Elemental Resistances"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil}c["10% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["+18% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=18}},nil}c["60% of Block Chance applied to Spells +18% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=60}}," applied to s +18% chance to Block Spell Damage "}c["Spreads Tar when you Block If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second"]={nil,"Spreads Tar when you Block If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second "}c["+12% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=12}},nil}c["+2 to Melee range with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2}},nil}c["Spreads Tar when you Block"]={nil,"Spreads Tar when you Block "}c["+3 to Level of Socketed Minion Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="minion",value=3}}},nil}c["13% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=13}},nil}c["120% increased Vaal Skill Critical Strike Chance"]={{[1]={flags=0,keywordFlags=256,name="CritChance",type="INC",value=120}},nil}c["+50% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=50}},nil}c["10% increased Effect of Auras on You"]={{[1]={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=10}},nil}c["When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage equal to 25% of Sacrificed Mana for 4 seconds"]={nil,"When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage equal to 25% of Sacrificed Mana for 4 seconds "}c["Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges You are Shocked for 4 seconds on reaching Maximum Power Charges "}c["20% chance to gain a Power Charge on Hit"]={{}," to gain a Power Charge on Hit "}c["+2 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=2}},nil}c["18% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=18}},nil}c["Adds 37 to 57 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=37},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=57}},nil}c["15% chance to Impale Enemies on Hit with Attacks 5% increased Impale Effect"]={{[1]={flags=0,keywordFlags=65536,name="FlaskEffect",type="BASE",value=15}}," to Impale Enemies on Hit 5% increased Impale "}c["+8% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["538% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=538}},nil}c["30% increased Attack Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["120% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=120}},nil}c["Auras from your Skills grant +1% Physical Damage Reduction to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}}},nil}c["+25% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently"]={{[1]={[1]={type="Condition",var="NonCritRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["Adds 39 to 60 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=39},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=60}},nil}c["+60 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=60}},nil}c["30% increased Fire Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="FireDamage",type="INC",value=30}},nil}c["25% increased Evasion Rating during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=25}},nil}c["Adds 3 to 47 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=47}},nil}c["Triggers Level 20 Reflection when Equipped"]={nil,nil}c["You lose all Endurance Charges at maximum Endurance Charges Cannot Block"]={nil,"You lose all Endurance Charges at maximum Endurance Charges Cannot Block "}c["50% reduced Maximum Recovery per Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechInstance",type="INC",value=-50}},nil}c["Reflect Shocks applied to you to all Nearby Enemies"]={nil,"Reflect Shocks applied to you to all Nearby Enemies "}c["Right ring slot: 3% of Energy Shield Regenerated per second"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=3}},nil}c["Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana Reflect Shocks applied to you to all Nearby Enemies"]={nil,"Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana Reflect Shocks applied to you to all Nearby Enemies "}c["+2 maximum Energy Shield per 5 Strength"]={{[1]={[1]={div=5,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=2}},nil}c["Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana"]={nil,"Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana "}c["8% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["+38% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=38}},nil}c["Gain 2 Power Charges on Using a Warcry"]={nil,"Gain 2 Power Charges on Using a Warcry "}c["5% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["1% increased Area of Effect of Area Skills per 20 Intelligence"]={{[1]={[1]={div=20,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=1}},nil}c["Spectres have 75% increased maximum Life"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=75}}}},nil}c["Adds 52 to 79 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=52},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=79}},nil}c["Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell 20% increased Spell Damage while you have Arcane Surge"]={nil,"Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell 20% increased Spell Damage while you have Arcane Surge "}c["40% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil}c["Lose all Divine Charges when you gain Divinity"]={nil,"Lose all Divine Charges when you gain Divinity "}c["20% increased Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=20}},nil}c["Projectile Attack Hits deal up to 50% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther"]={nil,"Projectile Attack Hits deal up to 50% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther "}c["Adds 1 to 24 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=24}},nil}c["Adds 12 to 16 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=16}},nil}c["50% increased Critical Strike Chance for Spells per Raised Spectre"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}}," per Raised Spectre "}c["Gain 25% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=25}},nil}c["Gain Arcane Surge when you deal a Critical Strike Your Raised Spectres also gain Arcane Surge when you do"]={nil,"Gain Arcane Surge when you deal a Critical Strike Your Raised Spectres also gain Arcane Surge when you do "}c["70% increased Damage with Hits and Ailments against Hindered Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Hindered"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=70}},nil}c["20% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=20}},nil}c["25% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=25}},nil}c["You take Chaos Damage instead of Physical Damage from Bleeding +25% chance to be Poisoned"]={nil,"You take Chaos Damage instead of Physical Damage from Bleeding +25% chance to be Poisoned "}c["Attacks with this Weapon have 108% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=108}},nil}c["30% less Damage with Hits"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="MORE",value=-30}},nil}c["50% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=50}},nil}c["18% increased Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["Adds 21 to 34 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=21},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=34}},nil}c["+3% to all maximum Resistances while Poisoned"]={{[1]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=3},[2]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=3}},nil}c["8% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=8}},nil}c["Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second Regenerate 1% of Life per Second for each Trap Triggered Recently, up to 10% per second 20% reduced Mana Cost of Skills that throw Traps"]={nil,"Immune to Ignite and Shock Regenerate 1% of Life per second for each Mine Detonated Recently, up to 10% per second Regenerate 1% of Life per Second for each Trap Triggered Recently, up to 10% per second 20% reduced Mana Cost of Skills that throw Traps "}c["Reflects 1 to 1000 Physical Damage to Attackers on Block"]={nil,"Reflects 1 to 1000 Physical Damage to Attackers on Block "}c["90% Increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=90}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently 15% chance to gain 50% of Non-Chaos Damage with Hits as Extra Chaos Damage Cannot be Stunned if you haven't been Hit Recently Regenerate 15 Mana per second if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={neg=true,type="Condition",var="BeenHitRecently"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="LifeRecoveryRate",type="BASE",value=15},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={neg=true,type="Condition",var="BeenHitRecently"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="ManaRecoveryRate",type="BASE",value=15},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={neg=true,type="Condition",var="BeenHitRecently"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=262144,name="EnergyShieldRecoveryRate",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased 15% chance to gain 50% of Non-Chaos Damage as Extra Chaos Damage Cannot be Stunned Regenerate 15 Mana per second if you've used a Movement Skill Recently "}c["25% Increased Warcry Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=25}},nil}c["100% increased Physical Damage while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil}c["You gain Onslaught for 4 seconds on Kill"]={nil,"You gain Onslaught for 4 seconds on Kill "}c["You gain Onslaught for 4 seconds on using a Warcry 25% Increased Warcry Effect"]={nil,"You gain Onslaught for 4 seconds on using a Warcry 25% Increased Warcry Effect "}c["You gain Onslaught for 4 seconds on using a Warcry"]={nil,"You gain Onslaught for 4 seconds on using a Warcry "}c["+50% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=50}},nil}c["100% Increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil}c["+15% to Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=15}},nil}c["50% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently"]={nil,"You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently "}c["Gain 13% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=13}},nil}c["-10% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-10}},nil}c["30% chance to gain an additional Vaal Soul on Kill Corrupted"]={{}," to gain an additional Soul on Kill Corrupted "}c["35% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=35}},nil}c["+33% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=33}},nil}c["Gain 15% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=15}},nil}c["10% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil}c["Adds 10 to 18 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=18}},nil}c["12% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=12}},nil}c["Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={nil,"Every second, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["Chance to Block Spell Damage is Unlucky"]={nil,"Chance to Block Spell Damage is Unlucky "}c["Adds 12 to 20 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=20}},nil}c["120% of Block Chance applied to Spells when on Low Life +36% chance to Block Spell Damage while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},[2]={type="Condition",var="LowLife"},flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=120}}," applied to s +36% chance to Block Spell Damage "}c["1% of Damage Leeched as Life against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=1}},nil}c["60% increased Rarity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=60}},nil}c["0.2% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.2}},nil}c["90% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=90}},nil}c["10% Chance to Cause Monster to Flee on Block"]={{}," to Cause Monster to Flee on Block "}c["+45 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=45}},nil}c["Traps and Mines deal 4 to 13 additional Physical Damage"]={{[1]={flags=0,keywordFlags=12288,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=12288,name="PhysicalMax",type="BASE",value=13}},nil}c["10% chance to gain Unholy Might for 4 seconds on Critical Strike"]={{}," to gain Unholy Might for 4 seconds "}c["100% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=100}},nil}c["12% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=12}},nil}c["Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of "}c["20% chance to gain a Frenzy Charge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"]={{}," to gain aCharge on Kill 20% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy "}c["Unaffected by Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="MORE",value=-100}},nil}c["Curse Reflection Unaffected by Curses"]={nil,"Curse Reflection Unaffected by Curses "}c["15% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={flags=0,keywordFlags=4096,name="MovementSpeed",type="INC",value=15}}," for 9 seconds on Throwing a "}c["Curse Reflection"]={nil,"Curse Reflection "}c["20% additional Spell Block chance while Cursed"]={{[1]={[1]={type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil}c["Socketed Gems are Supported by level 20 Ignite Proliferation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportIgniteProliferation"}}},nil}c["Minions have 30% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=30}}}},nil}c["50% reduced Duration of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}}," of Curses on you "}c["+30 to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=30}},nil}c["+60 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=60}},nil}c["11% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=11}},nil}c["0.5% of Damage dealt by your Totems is Leeched to you as Life"]={{[1]={flags=0,keywordFlags=16384,name="DamageLifeLeechToPlayer",type="BASE",value=0.5}},nil}c["+4% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=4}},nil}c["8% additional Physical Damage Reduction while affected by Determination"]={{[1]={[1]={type="Condition",var="AffectedByDetermination"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=8}},nil}c["1% of Damage Leeched as Life for Skills used by Totems"]={{[1]={flags=0,keywordFlags=16384,name="DamageLifeLeech",type="BASE",value=1}},nil}c["0.5% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={nil,"lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield "}c["You lose all Endurance Charges when Hit You gain an Endurance Charge on Kill"]={nil,"You lose all Endurance Charges when Hit You gain an Endurance Charge on Kill "}c["200% increased Armour against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}}," against Projectiles "}c["100% more Damage with Hits from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="MORE",value=100}}," from Herald Skills 50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage "}c["0.5% of Spell Damage Leeched as Life while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=2,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.5}},nil}c["-80 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-80}}," from Projectile Attacks "}c["80% reduced Trap Duration"]={{[1]={flags=0,keywordFlags=0,name="TrapDuration",type="INC",value=-80}},nil}c["-10 Physical Damage taken from Projectile Attacks -80 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-10}}," from Projectile Attacks -80 Physical Damage taken from Projectile Attacks "}c["Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled 10% increased Effect of Chill"]={nil,"Enemies Become Chilled as they Unfreeze 10% chance to Freeze Enemies which are Chilled 10% increased Effect of Chill "}c["50% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=50}},nil}c["58% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=58}},nil}c["43% increased Damage with Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="Damage",type="INC",value=43}},nil}c["Right ring slot: You cannot Regenerate Mana Right ring slot: 4% of Energy Shield Regenerated per second"]={nil,"You cannot Regenerate Mana Right ring slot: 4% of Energy Shield Regenerated per second "}c["+1 to Level of Socketed Warcry Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="warcry",value=1}}},nil}c["5% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=5}},nil}c["+90 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=90}},nil}c["100% increased Critical Strike Chance against Enemies that are affected by no Elemental Ailments"]={{[1]={[1]={actor="enemy",neg=true,type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited"}},[2]={type="Condition",var="Effective"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=100}},nil}c["Projectiles Pierce 5 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=5}},nil}c["Triggers Level 20 Elemental Aegis when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ElementalAegis"}}},nil}c["+4% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["Removes 1% of maximum Energy Shield on Kill"]={nil,"Removes 1% of maximum Energy Shield on Kill "}c["+5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["-25 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-25}}," from Projectile Attacks "}c["10% chance to gain Elusive on Kill 25% increased Elusive Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="BASE",value=10}}," to gain Elusive on Kill 25% increased Elusive "}c["Adds 14 to 33 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=14},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=33}},nil}c["10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit "}c["+1.8% to Critical Strike Chance while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1.8}},nil}c["5% chance to Curse Enemies with Enfeeble on Hit 10% chance to Curse Enemies with Enfeeble on Hit"]={{}," to Curse Enemies withon Hit 10% chance to Curse Enemies with Enfeeble on Hit "}c["Adds 15 to 35 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=15},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=35}},nil}c["Adds 10 to 25 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=25}},nil}c["+73 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=73}},nil}c["+2 to Melee Strike Range with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={flags=1048580,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}c["+120 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=120}},nil}c["+1500 Armour if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1500}},nil}c["170% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=170}},nil}c["Grants level 30 Reckoning Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="Reckoning"}}},nil}c["Minions deal 20% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}},nil}c["+1000 Armour if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}},nil}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds "}c["Minions have +40% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=40}}}},nil}c["8% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["-5% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-5}},nil}c["+60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently"]={{[1]={[1]={type="Condition",var="NonCritRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=60}},nil}c["28% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=28}},nil}c["Adds 8 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["3% increased Cast Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=16,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["Hits with this Weapon deal 60% increased Damage to Shocked Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Shocked"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=60}},nil}c["40% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-40}},nil}c["+8 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=8}}," gained when you Block "}c["to surrounding targets"]={nil,"to surrounding targets "}c["+23 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=23}},nil}c["also grant an equal chance to gain a Power Charge on Kill"]={nil,"also grant an equal chance to gain a Power Charge on Kill "}c["Minions deal 25% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=25}}}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge Damage Penetrates 5% Elemental Resistances while you have a Power Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},[2]={stat="PowerCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=25}}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Damage Penetrates 5% Elemental Resistances "}c["During Flask Effect, Damage Penetrates 15% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={stat="LightningResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},[2]={stat="LightningResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=15},[2]={[1]={stat="ColdResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="ColdResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=15},[3]={[1]={stat="FireResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="FireResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},nil}c["Minions Regenerate 1.5% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}}}},nil}c["35% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=35}},nil}c["+40 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}}," gained when you Block "}c["Sword Attacks deal 10% increased Damage with Ailments"]={{[1]={flags=4196352,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["20% increased total Recovery per second from Mana Leech"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=20}},nil}c["Minions Recover 1% of their Maximum Life when they Block"]={nil,"Recover 1% of their Maximum Life when they Block "}c["0.2% of Attack Damage Leeched as Mana per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.2}},nil}c["Mace, Sceptre or Staff Attacks deal 30% increased Damage with Hits and Ailments"]={{[1]={[1]={modFlags=3145728,type="ModFlagOr"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=30}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline "}c["+55% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=55}}," Non-Ailment "}c["1% additional Physical Damage Reduction per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30%"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% "}c["0.4% of Physical Attack Damage Leeched as Mana per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.4}},nil}c["Vaal Skills deal 40% more Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=256,name="Damage",type="MORE",value=40}},nil}c["23% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=23}},nil}c["35% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration"]={nil,"Vaal Skills used during effect have 40% reduced Soul Gain Prevention Duration "}c["+38 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=38}},nil}c["Immune to Freeze while affected by Purity of Ice"]={nil,"Immune to Freeze while affected by Purity of Ice "}c["25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges"]={{}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges "}c["10% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=10}},nil}c["33% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,keywordFlags=0,name="Damage",type="INC",value=33}},nil}c["Adds 4 to 8 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},nil}c["Adds 2 to 3 Physical Damage to Attacks per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=2},[2]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=3}},nil}c["+15 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=15}},nil}c["Adds 7 to 12 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},nil}c["Can Allocate Passives from the Duelist's starting point"]={{},nil}c["Mace or Sceptre Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=1048576,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["85% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=85}},nil}c["20% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["2 additional Projectiles if you've been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["Right ring slot: You cannot Regenerate Mana"]={nil,"You cannot Regenerate Mana "}c["Take 5 Physical Damage when hit by Attacks"]={nil,"5 Physical Damage when hit by Attacks "}c["74% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=74}},nil}c["Adds 3 to 72 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=72}},nil}c["+1 to Maximum Life per 2 Intelligence"]={{[1]={[1]={div=2,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil}c["Adds 1 to 80 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=80}},nil}c["40% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil}c["Cannot be Frozen, Chilled or Ignited with Her Blessing 20% increased Attack and Movement Speed with Her Blessing"]={nil,"Cannot be Frozen, Chilled or Ignited with Her Blessing 20% increased Attack and Movement Speed with Her Blessing "}c["80% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=80}},nil}c["10% chance to Trigger Level 8 Summon Raging Spirit on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=8,skillId="SummonRagingSpirit"}}},nil}c["-20% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-20}},nil}c["10% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=10}},nil}c["Adds 6 to 66 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=66}},nil}c["Enemies you Curse are Hindered, with 15% reduced Movement Speed"]={nil,"Enemies you Curse are Hindered, with 15% reduced Movement Speed "}c["Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy "}c["+4% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["24% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["18% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=18}},nil}c["+33 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=33}},nil}c["215% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=215}},nil}c["Adds 45 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=140}},nil}c["Ancestral Bond"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Ancestral Bond"}},nil}c["Gain 15% of Elemental Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=15}},nil}c["Adds 9 to 14 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=9},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=14}},nil}c["25% chance to Poison on Hit during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=25}},nil}c["+11% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=11}},nil}c["Adds 175 to 300 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=175},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=300}},nil}c["Adds 1 to 3 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=3}},nil}c["100% more Damage with Hits from Herald Skills"]={{[1]={flags=0,keywordFlags=262144,name="Damage",type="MORE",value=100}}," from Herald Skills "}c["Adds 1 to 200 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=200}},nil}c["Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances"]={nil,"Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances "}c["+31 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=31}},nil}c["15% chance to gain a Power Charge when your Trap is triggered by an Enemy"]={{}," to gain a Power Charge when your is triggered by an Enemy "}c["25 Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=25}},nil}c["15% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Removes 1% of maximum Life on Kill Removes 1% of maximum Energy Shield on Kill"]={nil,"Removes 1% of maximum Life on Kill Removes 1% of maximum Energy Shield on Kill "}c["Uses both hand slots 90% increased Critical Strike Chance"]={nil,"Uses both hand slots 90% increased Critical Strike Chance "}c["2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20%"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=2}}," of Life and Energy Shield per Minion, up to 20% "}c["Axe Attacks deal 25% increased Damage with Ailments"]={{[1]={flags=67584,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["20% increased Critical Strike Chance for each Mine Detonated"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=20}}," for each Detonated "}c["+30% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritMultiplier",type="BASE",value=30}},nil}c["20% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil}c["40% increased Rarity of Items Dropped by Frozen Enemies 40% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=40}}," Rarity of Items Dropped by Frozen Enemies 40% increased "}c["1% increased Elemental Damage per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=1}},nil}c["Effects granted for having Rage are Tripled Cannot be Stunned while you have at least 25 Rage"]={nil,"Effects granted for having Rage are Tripled Cannot be Stunned while you have at least 25 Rage "}c["+1 to Maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=1}},nil}c["Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to enemies is gained as Life"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to enemies is gained as Life "}c["+15% to Weapon Critical Strike Multiplier while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Trigger Level 20 Arcane Wake after Spending a total of 200 Mana +300 to Accuracy Rating"]={nil,"Trigger Level 20 Arcane Wake after Spending a total of 200 Mana +300 to Accuracy Rating "}c["+1% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}}," for each time you've Blocked in the past 10 seconds "}c["30% chance to Avoid being Ignited"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=30}},nil}c["0.2% of Cold Damage Leeched as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageEnergyShieldLeech",type="BASE",value=0.2}},nil}c["16% Chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=16}},nil}c["+175 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=175}},nil}c["110% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=110}},nil}c["20% increased Effect of Chill you inflict with Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20}}," you inflict with Critical Strikes "}c["Adds 17 to 37 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=37}},nil}c["Projectiles gain Damage as they travel farther, dealing up to 40% increased Damage with Hits to targets"]={{[1]={[1]={ramp={[1]={[1]=35,[2]=0},[2]={[1]=70,[2]=1}},type="DistanceRamp"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["+30 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=30}},nil}c["100% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=100}},nil}c["10% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=10}},nil}c["Adds 190 to 220 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=190},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=220}},nil}c["+14% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=14}},nil}c["30% chance to Cast Socketed Spells when you Spend at least 100 Mana to Use a Skill"]={{[1]={flags=2,keywordFlags=0,name="Mana",type="BASE",value=30}}," to Cast Socketed s when you Spend at least 100 to Use a Skill "}c["With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy "}c["Adds 1 to 13 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=13}},nil}c["Insufficient Mana doesn't prevent your Melee Attacks"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks "}c["+15% to Critical Strike Multiplier against Taunted Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Taunted"},flags=0,keywordFlags=262144,name="CritMultiplier",type="BASE",value=15}},nil}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground "}c["20% chance to gain a Power Charge when you Block +6% Chance to Block Spell Damage while at Maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}}," to gain a Power Charge when you Block +6% Chance "}c["+90 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=90},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=90},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=90}},nil}c["Determination has 30% increased Aura Effect"]={{[1]={[1]={skillName="Determination",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["Grace has 30% increased Aura Effect"]={{[1]={[1]={skillName="Grace",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["Attacks with this Weapon Penetrate 30% Elemental Resistances"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=30}},nil}c["22% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=22}},nil}c["Totems Hinder Enemies near them when Summoned, with 25% reduced Movement Speed"]={nil,"Totems Hinder Enemies near them when Summoned, with 25% reduced Movement Speed "}c["350% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=350}},nil}c["Adds 10-20 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=20}},nil}c["Channelling Skills deal 20% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks You and nearby Allies have 8% increased Movement Speed"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks You and nearby Allies have 8% increased Movement Speed "}c["Socketed Gems are Supported by Level 18 Innervate"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportOnslaughtOnSlayingShockedEnemy"}}},nil}c["Mine Damage Penetrates 5% Elemental Resistances"]={{[1]={flags=0,keywordFlags=8192,name="ElementalPenetration",type="BASE",value=5}},nil}c["Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="MaximumEnduranceChargesIsMaximumFrenzyCharges",type="FLAG",value=true}},nil}c["Non-Unique Flasks applied to you have 10% increased Effect 5% increased Attack and Cast Speed during any Flask Effect"]={nil,"Non-Unique Flasks applied to you have 10% increased Effect 5% increased Attack and Cast Speed during any Flask Effect "}c["+8% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=8}},nil}c["50% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=50}},nil}c["With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 30 seconds on Kill"]={nil,"With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 30 seconds on Kill "}c["With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield"]={nil,"With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield "}c["Minions have 20% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}}},nil}c["Gain a Blitz Charge on Critical Strike"]={nil,"Gain a Blitz Charge on Critical Strike "}c["Projectiles gain Damage as they travel farther, dealing up"]={nil,"Projectiles gain Damage as they travel farther, dealing up "}c["20% of Block Chance applied to Spells +6% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," applied to s +6% chance to Block Spell Damage "}c["Recover 3% of Life when you lose a Spirit Charge Recover 3% of Energy Shield when you lose a Spirit Charge"]={nil,"Recover 3% of Life when you lose a Spirit Charge Recover 3% of Energy Shield when you lose a Spirit Charge "}c["Mace or Sceptre Attacks deal 10% increased Damage with Hits and Ailments"]={{[1]={flags=1048576,keywordFlags=786432,name="Damage",type="INC",value=10}},nil}c["8% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=8}},nil}c["25% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=25}},nil}c["60% increased Critical Strike Chance with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["Damage Penetrates 8% of Enemy Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=8}},nil}c["10% chance to Dodge Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=10}},nil}c["Socketed Gems are Supported by level 1 Reduced Mana"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="Unknown"}}},nil}c["20% increased Elemental Damage if you've Ignited an Enemy Recently"]={{[1]={[1]={type="Condition",var="IgnitedEnemyRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil}c["Can have up to 2 additional Traps placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTrapLimit",type="BASE",value=2}},nil}c["Socketed Gems have 50% reduced Mana Cost"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-50}}}},nil}c["Ignited Enemies you hit are destroyed on Kill"]={nil,"Ignited Enemies you hit are destroyed on Kill "}c["+30% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["You can only have one Non-Banner Aura on you from your Skills Non-Banner Aura Skills reserve no Mana"]={nil,"You can only have one Non-Banner Aura on you from your Skills Non-Banner Aura Skills reserve no Mana "}c["Lightning Skills have 10% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=64,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["140% increased Duration of Ailments you inflict while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=140},[2]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=140},[3]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=140},[4]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=140},[5]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=140},[6]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=140}},nil}c["+18 to Quality"]={{}," Quality "}c["15% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=15}},nil}c["Minions deal 70% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=70}}}},nil}c["Minions have 50% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}}}},nil}c["Golems have 25% increased Maximum Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=25}}}},nil}c["250% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=250}},nil}c["3% additional Physical Damage Reduction during Effect of any Life or Mana Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=3}}," of any Life or Mana Flask "}c["40% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=40}},nil}c["With at least 40 Strength in Radius, Ground Slam has a 35% chance to grant an Endurance Charge when you Stun an Enemy"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 35% chance to grant an Endurance Charge when you Stun an Enemy "}c["10% increased Damage per Summoned Golem 40% increased Effect of Buffs granted by your Golems"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}," per Summoned 40% increased Effect of Buffs granted by your Golems "}c["15% chance to gain a Power Charge on Throwing a Trap 25% chance to gain a Power Charge on Throwing a Trap"]={{}," to gain a Power Charge on Throwing a 25% chance to gain a Power Charge on Throwing a Trap "}c["135% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=135}},nil}c["25% increased Fire Damage if you have used a Cold Skill Recently"]={{[1]={[1]={type="Condition",var="UsedColdSkillRecently"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=25}},nil}c["20% increased Stun Duration with Two Handed Melee Weapons on Enemies"]={{[1]={flags=301989892,keywordFlags=0,name="EnemyStunDuration",type="INC",value=20}},nil}c["20% increased Effect of Herald Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=20}}," of Herald Buffs on you "}c["2% increased Attack and Cast Speed for each corpse Consumed Recently"]={{[1]={[1]={type="Multiplier",var="CorpseConsumedRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["14% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=14}},nil}c["Curse Skills have 50% increased Skill Effect Duration"]={{[1]={[1]={skillType=32,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=50}},nil}c["-30% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-30}},nil}c["Enemies you Curse take 5% increased Damage 5% chance to Dodge Attack Hits from Cursed Enemies"]={nil,"Enemies you Curse take 5% increased Damage 5% chance to Dodge Attack Hits from Cursed Enemies "}c["25% increased Damage for each Herald affecting you"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=25}}," for each Herald affecting you "}c["3% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=3}},nil}c["Channelling Skills have 6% increased Attack and Cast Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["Minions deal 20% increased Damage while you are affected by a Herald Minions have 10% increased Movement Speed for each Herald affecting you"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}}," while you are affected by a Herald Minions have 10% increased Movement Speed for each Herald affecting you "}c["Adds 105 to 253 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=105},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=253}},nil}c["30% of Lightning Damage is taken from Mana before Life when Hit"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=30}}," is taken from Mana before Life when Hit "}c["24% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=24}},nil}c["Enemies you Kill that are affected by Elemental Ailments grant 100% increased Flask Charges"]={nil,"Enemies you Kill that are affected by Elemental Ailments grant 100% increased Flask Charges "}c["Spell Skills have 5% increased Area of Effect"]={{[1]={flags=2,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["0.3% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.3}},nil}c["70% increased Spell Damage if your other Ring is an Elder Item"]={{[1]={[1]={type="Condition",var="ElderItemInRing {OtherSlotNum}"},flags=2,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["15% reduced Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=-15}},nil}c["+2 to Level of Socketed Vaal Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="vaal",value=2}}},nil}c["Chaos Skills have 50% increased Area of Effect"]={{[1]={flags=0,keywordFlags=128,name="AreaOfEffect",type="INC",value=50}},nil}c["30% Chance to Dodge Spell Hits"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=30}},nil}c["29% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=29}},nil}c["Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second for each Summoned Totem"]={nil,"Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second for each Summoned Totem "}c["Every 5 seconds, Regenerate 10% of Life over one second"]={nil,"Every 5 seconds, Regenerate 10% of Life over one second "}c["10% chance to gain an Endurance Charge when you Block"]={{}," to gain an Endurance Charge when you Block "}c["Adds 16 to 53 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=16},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=53}},nil}c["Socketed Gems are supported by level 20 Blind"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportBlind"}}},nil}c["You take no Extra Damage from Critical Strikes while Elusive"]={nil,"You take no Extra Damage from Critical Strikes while Elusive "}c["+300 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=300}},nil}c["270% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=270}},nil}c["+6% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil}c["2% of Life Regenerated per second with at least 400 Strength"]={{[1]={[1]={stat="Str",threshold=400,type="StatThreshold"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Minions have 25% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=25}}}},nil}c["Adds 157 to 210 Fire Damage to Hits with this Weapon against Blinded Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=458752,name="FireMin",type="BASE",value=157},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=458752,name="FireMax",type="BASE",value=210}},nil}c["If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second"]={nil,"If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second "}c["50% increased Elemental Ailment Duration on You You are Immune to Bleeding"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}}," Elemental Ailment on You You are Immune to Bleeding "}c["12% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}},nil}c["Summoned Skeletons take 30% of their Maximum Life per second as Fire Damage"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={div=1,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=0.3}}}},nil}c["31% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=31}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 12"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12 "}c["+10% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=10}},nil}c["Recover 50% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use "}c["Can have up to 1 additional Remote Mine placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveMineLimit",type="BASE",value=1}},nil}c["Summoned Skeletons have 10% chance to Wither Enemies for 2 seconds on Hit Summoned Skeletons have 30% of Physical Damage Converted to Chaos Damage"]={nil,"Summoned Skeletons have 10% chance to Wither Enemies for 2 seconds on Hit Summoned Skeletons have 30% of Physical Damage Converted to Chaos Damage "}c["22% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=22}},nil}c["Sword Attacks deal 20% increased Damage with Hits and Ailments"]={{[1]={flags=4194304,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["-2 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-2}}," from Attacks "}c["Deal up to 15% more Melee Damage to Enemies, based on proximity"]={nil,"Deal up to 15% more Melee Damage to Enemies, based on proximity "}c["16% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["6% reduced Damage taken if you've Taunted an Enemy Recently"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-6}},nil}c["Attacks with One Handed Weapons deal 30% increased Damage with Ailments"]={{[1]={flags=134219776,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["You gain Onslaught for 5 seconds on using a Vaal Skill"]={nil,"You gain Onslaught for 5 seconds on using a Vaal Skill "}c["You gain a Power Charge on use You gain a Frenzy Charge on use"]={nil,"You gain a Power Charge on use You gain a Frenzy Charge on use "}c["120% increased Critical Strike Chance while you have Avatar of Fire 200% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=120}}," while you have Avatar of Fire 200% increased Critical Strike Chance while you have Avatar of Fire "}c["10% increased Attack Speed if you've Hit with your Main Hand Weapon Recently"]={{[1]={flags=8193,keywordFlags=0,name="Speed",type="INC",value=10}}," if you've Hit with your Main Hand Recently "}c["Enemies have -15% to Total Physical Damage Reduction against your Hits"]={{[1]={flags=0,keywordFlags=0,name="EnemyPhysicalDamageReduction",type="BASE",value=-15}},nil}c["Gain Rampage while at Maximum Endurances Charges"]={nil,"Gain Rampage while at Maximum Endurances Charges "}c["13% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=13}},nil}c["Gain 5% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=5}},nil}c["18% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["Mace or Sceptre Attacks deal 14% increased Damage with Hits and Ailments"]={{[1]={flags=1048576,keywordFlags=786432,name="Damage",type="INC",value=14}},nil}c["+25% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}},nil}c["8% increased Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["+20 Life gained on Kill per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=20}},nil}c["5% chance to Avoid Fire Damage when Hit"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=5}}," to Avoid when Hit "}c["20% less Minimum Physical Attack Damage 40% less Minimum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-20}}," Minimum 40% less Minimum Physical Attack Damage "}c["If you've Attacked Recently, you and nearby Allies have +10% Chance to Block Attack Damage"]={{[1]={[1]={type="Condition",var="AttackedRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}}},nil}c["26% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=26}},nil}c["Enemies inflict Elemental Ailments on you instead of nearby Allies"]={nil,"Enemies inflict Elemental Ailments on you instead of nearby Allies "}c["15% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=15}}," while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect "}c["Adds 1 to 20 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=20}},nil}c["20% reduced Mana Cost of Skills that throw Traps"]={{[1]={flags=0,keywordFlags=4096,name="ManaCost",type="INC",value=-20}},nil}c["Adds 6 to 13 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=13}},nil}c["Adds 20 to 30 Chaos Damage to Spells and Attacks while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=196608,name="ChaosMin",type="BASE",value=20},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=196608,name="ChaosMax",type="BASE",value=30}},nil}c["Attacks with Two Handed Melee Weapons deal 30% increased Damage with Ailments"]={{[1]={flags=301991936,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["25% increased Elemental Damage while affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}}," while affected by a Herald "}c["+1 to Melee range with Claws"]={{[1]={flags=262148,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1}},nil}c["10% increased Skeleton Attack Speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil}c["45% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=45}},nil}c["+8% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=8}},nil}c["+20% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=20}},nil}c["With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova"]={nil,"With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova "}c["Adds 145 to 200 Cold Damage to Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="ColdMin",type="BASE",value=145},[2]={flags=131076,keywordFlags=0,name="ColdMax",type="BASE",value=200}},nil}c["Minions have 25% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-25}}}},nil}c["Shocks you cause are reflected back to you"]={nil,"Shocks you cause are reflected back to you "}c["Grants level 12 Summon Stone Golem"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=12,skillId="SummonRockGolem"}}},nil}c["Grants level 20 Death Aura Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ChaosDegenAuraUnique"}}},nil}c["16% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Attacks with Two Handed Melee Weapons deal 24% increased Damage with Ailments"]={{[1]={flags=301991936,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["50% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=50}},nil}c["+2% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=2}},nil}c["Gain 18% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=18}},nil}c["Axe Attacks deal 15% increased Damage with Ailments"]={{[1]={flags=67584,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Regenerate 1% of Energy Shield per second if you’ve Cursed an Enemy Recently"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}}," if you’ve Cursed an Enemy Recently "}c["Auras from your Skills grant 0.2% of Life Regenerated per second to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}}}},nil}c["+10% to Critical Strike Multiplier with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["Attacks with Two Handed Melee Weapons deal 10% increased Damage with Ailments"]={{[1]={flags=301991936,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Your Spells are disabled"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true}},nil}c["33% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=33}},nil}c["2% chance to deal Double Damage per Grasping Vine 1% less Damage taken per Grasping Vine"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=2}}," per Grasping Vine 1% less Damage taken per Grasping Vine "}c["+55 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=55}},nil}c["43% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=43}},nil}c["Cannot Leech"]={nil,"Cannot Leech "}c["Socketed Gems are Supported by Level 18 Faster Casting"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportFasterCast"}}},nil}c["+5% to Damage over Time Multiplier for Ignite from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=4194304,name="DotMultiplier",type="BASE",value=5}},nil}c["5% increased Damage taken"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}},nil}c["+5% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["15% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=15}},nil}c["Hits that Stun Enemies have Culling Strike 22% increased Damage with Ailments from Attack Skills while wielding a Mace"]={nil,"Hits that Stun Enemies have Culling Strike 22% increased Damage with Ailments from Attack Skills while wielding a Mace "}c["20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill 20% more Damage taken if a Non-Vaal Guard Buff was lost Recently"]={{[1]={flags=0,keywordFlags=256,name="PhysicalDamageReduction",type="BASE",value=20}}," while affected by a Non- Guard Skill 20% more Damage taken if a Non-Vaal Guard Buff was lost Recently "}c["15% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Adds 125 to 265 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=125},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=265}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit "}c["Bleeding Enemies you Kill Explode, dealing 10% of"]={nil,"Bleeding Enemies you Kill Explode, dealing 10% of "}c["+15 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=15}},nil}c["Claw Attacks deal 25% increased Damage with Hits and Ailments"]={{[1]={flags=262144,keywordFlags=786432,name="Damage",type="INC",value=25}},nil}c["4% increased Attack Speed with Maces or Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["+2 to Level of Socketed Fire Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="fire",value=2}}},nil}c["30% chance to Avoid being Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=30}},nil}c["26% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=26}},nil}c["40% less Weapon Damage"]={{[1]={flags=8192,keywordFlags=0,name="Damage",type="MORE",value=-40}},nil}c["15 Mana Regenerated per Second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=15}},nil}c["4% increased Attack Speed with Daggers"]={{[1]={flags=524293,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Grants maximum Energy Shield equal to 10% of your Reserved Mana to you and nearby Allies"]={{[1]={flags=0,keywordFlags=0,name="GrantReservedManaAsAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=0.1}}}},nil}c["+10 Mana Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=10}},nil}c["Projectiles deal 15% increased Damage for each remaining Chain"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=15}}," for each remaining Chain "}c["Regenerate 1% of Energy Shield per second if you’ve Killed an Enemy Recently"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}}," if you’ve Killed an Enemy Recently "}c["+135 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=135}},nil}c["Enemies you Curse are Hindered, with 15% reduced Movement Speed Regenerate 1% of Energy Shield per second if you’ve Killed an Enemy Recently"]={nil,"Enemies you Curse are Hindered, with 15% reduced Movement Speed Regenerate 1% of Energy Shield per second if you’ve Killed an Enemy Recently "}c["2% increased Cast Speed per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=16,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["Socketed Gems are Supported by level 20 Increased Area of Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportIncreasedAreaOfEffect"}}},nil}c["Reflects 15 Fire Damage to Melee Attackers"]={nil,"Reflects 15 Fire Damage to Melee Attackers "}c["Attacks with One Handed Melee Weapons deal 10% increased Damage with Ailments"]={{[1]={flags=167774208,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["25% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-25}},nil}c["50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{}," Rarity of Items Dropped by Slain Shocked enemies "}c["Right ring slot: Projectiles from Spells cannot Fork Projectiles from Spells cannot Pierce"]={nil,"Projectiles from Spells cannot Fork Projectiles from Spells cannot Pierce "}c["4% increased Cast Speed with Fire Skills"]={{[1]={flags=16,keywordFlags=16,name="Speed",type="INC",value=4}},nil}c["Minions have 8% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=8}}}},nil}c["Summoned Raging Spirits deal 80% increased Damage"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=80}}}},nil}c["Regenerate 0.4% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.4}},nil}c["4% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=4}},nil}c["25% chance to gain an Endurance Charge on Kill with Off Hand 10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain an Endurance Charge on Kill 10% more "}c["Damage from your Critical Strikes cannot be Reflected 20% more Damage while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby"]={nil,"Damage from your Critical Strikes cannot be Reflected 20% more Damage while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby "}c["Enemies killed by Zombies explode dealing 20% of their Maximum Life as Fire Damage"]={nil,"Enemies killed by Zombies explode dealing 20% of their Maximum Life as Fire Damage "}c["12% increased Physical Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing"]={nil,"Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing "}c["60% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=60}},nil}c["+6% Chance to Block Attack Damage while at Maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil}c["Claw Attacks deal 8% increased Damage with Hits and Ailments"]={{[1]={flags=262144,keywordFlags=786432,name="Damage",type="INC",value=8}},nil}c["8% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=8}},nil}c["25% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["30% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=30}},nil}c["Adds 65 to 120 Chaos Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=65},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=120}},nil}c["Attack Projectiles always inflict Bleeding and Maim, and Knock Back Enemies"]={nil,"Attack Projectiles always inflict Bleeding and Maim, and Knock Back Enemies "}c["12% increased Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Every 10 seconds, gain 100% of Physical Damage"]={nil,"Every 10 seconds, gain 100% of Physical Damage "}c["20% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["-20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-20}},nil}c["20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}},nil}c["Attacks with One Handed Melee Weapons deal 12% increased Damage with Ailments"]={{[1]={flags=167774208,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["+50 Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=50}},nil}c["2 additional Projectiles during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["10% increased Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=10},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=10}},nil}c["25% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=25}},nil}c["as Extra Fire Damage for 4 seconds"]={nil,"as Extra Fire Damage for 4 seconds "}c["10% increased Duration of Ailments inflicted while wielding a Bow"]={{[1]={[1]={type="Condition",var="UsingBow"},flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=10},[2]={[1]={type="Condition",var="UsingBow"},flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=10},[3]={[1]={type="Condition",var="UsingBow"},flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=10},[4]={[1]={type="Condition",var="UsingBow"},flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=10},[5]={[1]={type="Condition",var="UsingBow"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=10},[6]={[1]={type="Condition",var="UsingBow"},flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=10}}," inflicted "}c["Attack Skills deal 20% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["Adds 12 to 22 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=22}},nil}c["10% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=10}},nil}c["10% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=10}},nil}c["When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has"]={nil,"When you place a Banner, you and nearby Allies recover 0.5% of Life for each Stage the Banner has "}c["5% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=5}},nil}c["+20% to Non-Ailment Chaos Damage over Time Multiplier Every second, inflict Withered on nearby Enemies for 15 seconds"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=20}}," Non-Ailment Every second, inflict Withered on nearby Enemies for 15 seconds "}c["15% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=15}},nil}c["Adds 285 to 330 Cold Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=285},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=330}},nil}c["20% reduced Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=-20}},nil}c["each Impale on Enemy"]={nil,"each Impale on Enemy "}c["+5 Mana Gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=5}},nil}c["Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity"]={nil,"Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity "}c["20% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=20}},nil}c["Adds 15 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["30% increased Mana Regeneration if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil}c["+20% chance to be Shocked"]={{}," to be Shocked "}c["Sword Attacks deal 20% increased Damage with Ailments"]={{[1]={flags=4196352,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["18% increased Lightning Damage per 1% Lightning Resistance above 75%"]={{[1]={[1]={div=1,stat="LightningResistOver75",type="PerStat"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=18}},nil}c["0.2% of Fire Damage Leeched as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="FireDamageEnergyShieldLeech",type="BASE",value=0.2}},nil}c["Enemies Taunted by you take 6% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=6}}}},nil}c["You cannot Regenerate Energy Shield"]={nil,"You cannot Regenerate Energy Shield "}c["24% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["Dagger Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=524288,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["Stun Threshold is based on Energy Shield instead of Life"]={nil,"Stun Threshold is based on Energy Shield instead of Life "}c["and nearby Allies cannot be Stunned"]={nil,"and nearby Allies cannot be Stunned "}c["Banner Skills Reserve no Mana"]={{[1]={[1]={skillNameList={[1]="Dread Banner",[2]="War Banner"},type="SkillName"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["Adds 270 to 315 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=270},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=315}},nil}c["Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being Placed"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown Mines cannot be Damaged for 5 seconds after being Placed "}c["15% increased Damage against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=15}},nil}c["+24% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=24}},nil}c["20% increased Effect of Shock you inflict with Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20}}," you inflict with Critical Strikes "}c["Attack Skills deal 16% increased Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["Claw Attacks deal 10% increased Damage with Hits and Ailments"]={{[1]={flags=262144,keywordFlags=786432,name="Damage",type="INC",value=10}},nil}c["Axe Attacks deal 25% increased Damage with Hits and Ailments"]={{[1]={flags=65536,keywordFlags=786432,name="Damage",type="INC",value=25}},nil}c["Axe Attacks deal 12% increased Damage with Ailments"]={{[1]={flags=67584,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["1% increased Attack Speed per 25 Dexterity"]={{[1]={[1]={div=25,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil}c["+10% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["6% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil}c["25% chance to gain a Power Charge on Critical Strike"]={{}," to gain a Power Charge "}c["6% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=6}},nil}c["+25 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=25},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=25}},nil}c["25% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=25}},nil}c["+13 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=13}},nil}c["+30 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=30}},nil}c["Right ring slot: 80% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-80}}," Reflected "}c["Claw Attacks deal 20% increased Damage with Ailments"]={{[1]={flags=264192,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["15% increased Accuracy Rating with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["You cannot Regenerate Energy Shield You lose 5% of Energy Shield per second"]={nil,"You cannot Regenerate Energy Shield You lose 5% of Energy Shield per second "}c["Triggers Level 15 Manifest Dancing Dervish on Rampage"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="UniqueAnimateWeapon"}}},nil}c["+10% to Damage over Time Multiplier for Poison while wielding a Claw or Dagger"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=10}}," or Dagger "}c["130% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=130}},nil}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}c["+15% to Attack Critical Strike Multiplier while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}}," Attack "}c["25% increased Effect of Buffs granted by your Golems for each Summoned Golem Can Summon up to 1 additional Golem at a time"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}}," for each Summoned Can Summon up to 1 additional Golem at a time "}c["Items and Gems have 25% reduced Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="GlobalAttributeRequirements",type="INC",value=-25}},nil}c["20% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-20}},nil}c["40% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=40}},nil}c["40% increased Effect of Heralds on you"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=40}},nil}c["15% increased Damage with Hits and Ailments per Curse on Enemy"]={{[1]={[1]={type="Multiplier",var="CurseOnEnemy"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=15}},nil}c["Sword Attacks deal 10% increased Damage with Hits and Ailments"]={{[1]={flags=4194304,keywordFlags=786432,name="Damage",type="INC",value=10}},nil}c["40% increased Physical Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamage",type="INC",value=40}},nil}c["Attack Skills deal 10% increased Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["125% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=125}},nil}c["+14 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=14}},nil}c["10% Chance to summon a Spectral Wolf on Kill"]={{}," to summon a Spectral Wolf on Kill "}c["Sword Attacks deal 30% increased Damage with Ailments"]={{[1]={flags=4196352,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Can be modified while Corrupted"]={nil,"Can be modified while Corrupted "}c["Brand Recall has 30% increased Cooldown Recovery Speed"]={{[1]={[1]={skillName="Brand Recall",type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=30}},nil}c["Focus has 25% increased Cooldown Recovery Speed 70% increased Damage with Hits and Ailments against Chilled Enemies"]={nil,"Focus has 25% increased Cooldown Recovery Speed 70% increased Damage with Hits and Ailments against Chilled Enemies "}c["50% increased Shock Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=50}},nil}c["Non-critical strikes deal 40% Damage"]={{[1]={[1]={neg=true,type="Condition",var="CriticalStrike"},flags=4,keywordFlags=0,name="Damage",type="MORE",value=-60}},nil}c["Minions have 8% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=8}}}},nil}c["Right ring slot: +100 to maximum Mana"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=100}},nil}c["50% more Damage Over Time with Herald Skills"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="MORE",value=50}}," with Herald Skills "}c["Gain 20% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=20}},nil}c["Golems have 12% increased Maximum Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=12}}}},nil}c["9% increased Skeleton Cast speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=9}}}},nil}c["80% increased Spell Damage if your other Ring is an Elder Item"]={{[1]={[1]={type="Condition",var="ElderItemInRing {OtherSlotNum}"},flags=2,keywordFlags=0,name="Damage",type="INC",value=80}},nil}c["+30% to Critical Strike Multiplier with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Gain 4% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=4}},nil}c["With at least 40 Strength in Radius, Cleave grants Fortify on Hit With at least 40 Strength in Radius, Cleave has +1 to Radius per Nearby Enemy, up to +10"]={nil,"With at least 40 Strength in Radius, Cleave grants Fortify on Hit With at least 40 Strength in Radius, Cleave has +1 to Radius per Nearby Enemy, up to +10 "}c["8% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=167772165,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Culling Strike against Burning Enemies"]={nil,"Culling Strike against Burning Enemies "}c["+28% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=28}},nil}c["+20 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," gained when you Block "}c["Staff Attacks deal 30% increased Damage with Hits and Ailments"]={{[1]={flags=2097152,keywordFlags=786432,name="Damage",type="INC",value=30}},nil}c["20% of Overkill Damage is Leeched as Life Cannot be Stunned while Leeching You are Unaffected by Bleeding while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},[2]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill Cannot be Stunned You are Unaffected by Bleeding "}c["Recharge began Recently 50% less Energy Shield Regeneration Rate 50% less Maximum total Recovery per Second from Energy Shield Leech"]={nil,"Recharge began Recently 50% less Energy Shield Regeneration Rate 50% less Maximum total Recovery per Second from Energy Shield Leech "}c["50% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil}c["During Flask Effect, Damage Penetrates 20% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={stat="LightningResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},[2]={stat="LightningResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=20},[2]={[1]={stat="ColdResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="ColdResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=20},[3]={[1]={stat="FireResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="FireResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=20}},nil}c["1000% more Unarmed Physical Damage"]={{[1]={flags=16777220,keywordFlags=0,name="PhysicalDamage",type="MORE",value=1000}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"]={{[1]={[1]={type="Condition",var="UsingMeleeWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["15% increased Physical Damage with Ranged Weapons"]={{[1]={flags=67108868,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Dagger Attacks deal 20% increased Damage with Hits and Ailments"]={{[1]={flags=524288,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["+2 to Weapon range"]={{[1]={flags=0,keywordFlags=0,name="WeaponRange",type="BASE",value=2}},nil}c["50% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=50}},nil}c["20% chance for Flasks you use to not consume Charges"]={{}," for Flasks you use to not consume Charges "}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded "}c["-30% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-30}},nil}c["Dagger Attacks deal 24% increased Damage with Hits and Ailments"]={{[1]={flags=524288,keywordFlags=786432,name="Damage",type="INC",value=24}},nil}c["16% increased Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["150% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=150}},nil}c["2% reduced Damage taken per Ghost Shroud"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-2}}," per Ghost Shroud "}c["Adds 68 to 102 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=68},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=102}},nil}c["Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits"]={nil,"Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits "}c["Each Totem applies 1% increased Damage taken to Enemies near it"]={nil,"Each Totem applies 1% increased Damage taken to Enemies near it "}c["+28% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=28}},nil}c["Carved to glorify 10000 new faithful converted by High Templar Venarius"]={nil,"Carved to glorify 10000 new faithful converted by High Templar Venarius "}c["Herald of Thunder has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["30% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="INC",value=30}},nil}c["10% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=10}},nil}c["24% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=24}},nil}c["Every 16 seconds you gain Elemental Overload for 8 seconds You have Resolute Technique while you do not have Elemental Overload"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds You have Resolute Technique while you do not have Elemental Overload "}c["+15% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["20% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil}c["-1 Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=-1}},nil}c["Enemies have -5% to Total Physical Damage Reduction against your Hits"]={{[1]={flags=0,keywordFlags=0,name="EnemyPhysicalDamageReduction",type="BASE",value=-5}},nil}c["Recover 3% of Maximum Life on Kill"]={nil,"Recover 3% of Maximum Life on Kill "}c["80% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=80}},nil}c["Enemies have -12% to Total Physical Damage Reduction against your Hits"]={{[1]={flags=0,keywordFlags=0,name="EnemyPhysicalDamageReduction",type="BASE",value=-12}},nil}c["8% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["+8% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=8}},nil}c["10% increased Melee Physical Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["14% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["Regenerate 2% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["15% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="INC",value=15}},nil}c["4% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=4}},nil}c["Modifiers to Critical Strike Multiplier also apply to Damage Multiplier for Ailments from Critical Strikes at 30% of their value 30% less Damage with Hits"]={nil,"Modifiers to Critical Strike Multiplier also apply to Damage Multiplier for Ailments from Critical Strikes at 30% of their value 30% less Damage with Hits "}c["1% increased Mana Regeneration Rate per 1% Chance to Block Spell Damage"]={{[1]={[1]={div=1,stat="SpellBlockChance",type="PerStat"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=1}},nil}c["Mines Hinder Enemies near them for 2 seconds when they Land, reducing Movement Speed by 40%"]={nil,"Mines Hinder Enemies near them for 2 seconds when they Land, reducing Movement Speed by 40% "}c["Adds 15 to 30 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=15},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=30}},nil}c["90% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=90}},nil}c["Trigger Level 20 Lightning Bolt when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="LightningSpell"}}},nil}c["Regenerate 1.8% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.8}},nil}c["Minions have 14% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=14}}}},nil}c["You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={nil,"You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit "}c["5% chance to Dodge Attack Hits while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["Adds 113 to 338 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=113},[2]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=338}},nil}c["1% of Damage Leeched as Mana against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="DamageManaLeech",type="BASE",value=1}},nil}c["25% more Damage while there is at most one Rare or Unique Enemy nearby"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=25}}," while there is at most one Rare or Unique Enemy nearby "}c["Totems are Immune to Fire Damage Enemies near your Totems deal 8% less Damage"]={nil,"Totems are Immune to Fire Damage Enemies near your Totems deal 8% less Damage "}c["+8% to Non-Ailment Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=8}}," Non-Ailment "}c["Cannot be Stunned by Hits you Block Your Counterattacks deal Double Damage"]={nil,"Cannot be Stunned by Hits you Block Your Counterattacks deal Double Damage "}c["+35% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=35}},nil}c["Arrows Pierce all Targets after Forking"]={nil,"Arrows Pierce all Targets after Forking "}c["+45% to Critical Strike Multiplier against Enemies that are affected"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}}," against Enemies that are affected "}c["15% reduced Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil}c["Summoned Golems are Immune to Elemental Damage 20% increased Damage per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems"]={nil,"Summoned Golems are Immune to Elemental Damage 20% increased Damage per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems "}c["Minions deal 30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}}},nil}c["1% increased Projectile Attack Damage per 200 Accuracy Rating"]={{[1]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["+20 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=20}},nil}c["Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy "}c["40% reduced Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-40}}," on you "}c["10% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=10}},nil}c["3% reduced Damage taken per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating 10% increased Movement Speed "}c["Manifested Dancing Dervish disables both weapon slots"]={{},nil}c["You gain 8% increased Area of Effect for each Mine 20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=8}},"% increased for each 20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed "}c["10% increased Movement Speed while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["Damage from your Critical Strikes cannot be Reflected 20% more Damage while there is at most one Rare or Unique Enemy nearby"]={nil,"Damage from your Critical Strikes cannot be Reflected 20% more Damage while there is at most one Rare or Unique Enemy nearby "}c["Gain 70% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=70}},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["70% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["Mines cannot be Damaged for 5 seconds after being Placed"]={nil,"Mines cannot be Damaged for 5 seconds after being Placed "}c["60% increased Critical Strike Chance with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["Minions Explode when reduced to Low Life, dealing 33% of their Life as Fire Damage to surrounding Enemies"]={{[1]={flags=0,keywordFlags=0,name="ExtraMinionSkill",type="LIST",value={skillId="MinionInstability"}}},nil}c["20% chance to gain an Endurance Charge when you Block +6% Chance to Block Attack Damage while at Maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," to gain an Endurance Charge when you Block +6% Chance "}c["Adds 123 to 180 Cold Damage to Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="ColdMin",type="BASE",value=123},[2]={flags=131076,keywordFlags=0,name="ColdMax",type="BASE",value=180}},nil}c["Socketed Gems are Supported by level 30 Greater Spell Echo"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="Unknown"}}},nil}c["25% chance to gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance Gain a Challenger Charge when you Kill an Enemy while in Sand Stance"]={{}," to gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance Gain a Challenger Charge when you Kill an Enemy while in Sand Stance "}c["+15 Energy Shield gained on Kill 75% increased Effect of Shrine Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=15}}," gained on Kill 75% increased Effect of Shrine Buffs on you "}c["2% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-2}},nil}c["+1 to Level of Socketed Elemental Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="elemental",value=1}}},nil}c["Adds 250 to 350 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=250},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=350}},nil}c["Remove a Curse when you use a Mana Flask"]={nil,"Remove a Curse when you use a Mana Flask "}c["Socketed Gems are Supported by Level 25 Blessing"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=25,skillId="SupportAuraDuration"}}},nil}c["Immune to Curses while Channelling"]={nil,"Immune to Curses while Channelling "}c["0.4% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.4}},nil}c["8% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["Adds 10 to 23 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=23}},nil}c["Attack Projectiles Return to you from final Target"]={nil,"Attack Projectiles Return to you from final Target "}c["Gain 1% of Physical Damage as Extra Fire Damage per 1 Rage"]={{[1]={[1]={div=1,type="Multiplier",var="Rage"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=1}},nil}c["3% increased Attack Speed with Claws"]={{[1]={flags=262149,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["80% increased Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=80}},nil}c["79% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=79}},nil}c["Damage from your Critical Strikes cannot be Reflected 25% more Damage while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby"]={nil,"Damage from your Critical Strikes cannot be Reflected 25% more Damage while there is at most one Rare or Unique Enemy nearby 10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby "}c["+5 Life gained for each Ignited Enemy hit by your Attacks 30 Life Gained on Igniting an Enemy"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=5}}," gained for each Ignited Enemy hit by your Attacks 30 Life Gained on Igniting an Enemy "}c["+50 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=50}},nil}c["Every 16 seconds you gain iron Reflexes for 8 seconds"]={nil,"Every 16 seconds you gain iron Reflexes for 8 seconds "}c["Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 20% increased Movement Speed for 20 seconds when you Kill an Enemy"]={nil,"Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 20% increased Movement Speed for 20 seconds when you Kill an Enemy "}c["5% reduced Elemental Damage taken while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-5}},nil}c["Lose 0.1% of Life per second per Rage while you are not losing Rage"]={{[1]={[1]={stat="Life",type="PerStat"},[2]={limit=50,type="Multiplier",var="Rage"},flags=0,keywordFlags=0,name="LifeDegen",type="BASE",value=0.001}},nil}c["10% increased Accuracy Rating with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["40% increased Critical Strike Chance with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["Minions Recover 4% of Life on Minion Death"]={nil,"Recover 4% of Life on Minion Death "}c["Nearby allies gain 18% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=18},onlyAllies=true}}},nil}c["8% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned "}c["18% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=18}},nil}c["Adds 19 to 29 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=19},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=29}},nil}c["Minions deal 40% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}}}},nil}c["Flasks applied to you have 8% increased Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}},nil}c["14% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=14}},nil}c["45% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=45}},nil}c["maximum Life per second for each Stage You and nearby Allies have 12% increased Movement Speed"]={nil,"maximum Life per second for each Stage You and nearby Allies have 12% increased Movement Speed "}c["20% chance to Dodge Spell Hits if you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=20}},nil}c["Socketed Gems are Supported by level 10 Cold to Fire"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportColdToFire"}}},nil}c["14% Chance to Block Spells"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=14}},nil}c["3% more Damage for each Endurance Charge lost recently, up to 15% +1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=3}}," for each Endurance Charge lost recently, up to 15% +1 to Maximum Endurance Charges "}c["15% reduced Mana Cost of Channelling Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}}," Channelling Skills "}c["+2 to Melee range with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2}},nil}c["18% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["10% chance to gain an Endurance Charge on Melee Critical Strike 30% increased Damage with Ailments from Attack Skills while wielding a Staff +2 to Melee range with Staves"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain an Endurance Charge on Critical Strike 30% increased with Ailments from Attack Skills +2 to Melee range with Staves "}c["70% increased Aspect of the Spider Area of Effect"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=70}},nil}c["95% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=95}},nil}c["Enemies Taunted by your Warcries are Intimidated Enemies Taunted by your Warcries are Unnerved"]={nil,"Enemies Taunted by your Warcries are Intimidated Enemies Taunted by your Warcries are Unnerved "}c["4% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["Minions have 15% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=15}}}},nil}c["Spells Cast by Totems have 5% increased Cast Speed"]={{[1]={flags=16,keywordFlags=16384,name="Speed",type="INC",value=5}},nil}c["83% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=83}},nil}c["8% increased Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=8}},nil}c["Adds 15 to 140 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=15},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=140}},nil}c["Regenerate 1.6% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.6}},nil}c["+90 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=90}},nil}c["1% increased Damage per 1% Chance to Block Attack Damage"]={{[1]={[1]={div=1,stat="BlockChance",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["18% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=18}},nil}c["8% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Effects granted for having Rage are Doubled"]={nil,"Effects granted for having Rage are Doubled "}c["Every second, inflict Withered on nearby Enemies for 15 seconds"]={nil,"Every second, inflict Withered on nearby Enemies for 15 seconds "}c["+20 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20}},nil}c["+3% to Damage over Time Multiplier for Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="DotMultiplier",type="BASE",value=3}},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["+8% to Critical Strike Multiplier for each Mine Detonated Recently, up to 40%"]={{[1]={[1]={limit=40,limitTotal=true,type="Multiplier",var="MineDetonatedRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=8}},nil}c["Regenerate 8% of Energy Shield over 2 seconds when you Consume a corpse Regenerate 8% of Mana over 2 seconds when you Consume a corpse"]={nil,"Regenerate 8% of Energy Shield over 2 seconds when you Consume a corpse Regenerate 8% of Mana over 2 seconds when you Consume a corpse "}c["Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments to you and Allies "}c["30% increased Mana Regeneration Rate if you have Frozen an Enemy Recently"]={{[1]={[1]={type="Condition",var="FrozenEnemyRecently"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil}c["You take no Extra Damage from Critical Strikes while there is only one nearby Enemy"]={nil,"You take no Extra Damage from Critical Strikes while there is only one nearby Enemy "}c["Enemies you Curse take 5% increased Damage"]={nil,"Enemies you Curse take 5% increased Damage "}c["Nearby Allies Unnerve Enemies for 4 seconds on Hit"]={nil,"Nearby Allies Unnerve Enemies for 4 seconds on Hit "}c["10% increased Area of Effect if you have Stunned an Enemy Recently Melee Skills have 10% increased Area of Effect"]={{[1]={flags=256,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," if you have Stunned an Enemy Recently Skills have 10% increased Area of Effect "}c["Gain 20 Energy Shield for each Enemy you Hit which is affected by a Spider's Web"]={{[1]={[1]={actor="enemy",threshold=1,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=0,name="EnergyShieldOnHit",type="BASE",value=20}},nil}c["Minions have 15% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=15}}}},nil}c["+12% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=12}},nil}c["50% chance to gain Elusive on Critical Strike 20% increased Attack and Cast Speed while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 20% increased while Elusive "}c["Inflicts a random level 20 Curse on you when your Totems die"]={nil,"Inflicts a random level 20 Curse on you when your Totems die "}c["42% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=42}},nil}c["35% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="PhysicalDamage",type="MORE",value=35}},nil}c["Totems have 50% of your Armour"]={nil,"Totems have 50% of your Armour "}c["Attack Skills deal 16% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["3% reduced Damage taken per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud Every second, gain a Ghost Shroud, up to a maximum of 3 "}c["Adds 30 to 41 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=41}},nil}c["15% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=15}},nil}c["25% increased Cold Damage with Hits against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="ColdDamage",type="INC",value=25}},nil}c["5% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["40% increased Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["25% increased Elusive Effect You take no Extra Damage from Critical Strikes while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=25}}," Elusive You take no Extra Damage while Elusive "}c["0.2% of Lightning Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageLifeLeech",type="BASE",value=0.2}},nil}c["26% increased Attack Damage with Main Hand"]={{[1]={[1]={type="Condition",var="MainHandAttack"},flags=1,keywordFlags=0,name="Damage",type="INC",value=26}},nil}c["12% reduced Mana Reservation of Skills that throw Mines"]={{[1]={flags=0,keywordFlags=8192,name="ManaReserved",type="INC",value=-12}},nil}c["Adds 1 to 80 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=80}},nil}c["Minions have 10% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=10}}}},nil}c["Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of Non-Damaging Ailments Shocks from your Hits always increase Damage taken by at least 15%"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite 30% increased Effect of Non-Damaging Ailments Shocks from your Hits always increase Damage taken by at least 15% "}c["40% increased Damage if you have consumed a corpse Recently"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["50% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=50}},nil}c["Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={nil,"Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield "}c["Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of Golems"]={nil,"Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of Golems "}c["Adds 30 to 50 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=30},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=50}},nil}c["You can have an Offering of each type"]={nil,"You can have an Offering of each type "}c["50% increased Critical Strike Chance with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["Adds 19 to 35 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=19},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=35}},nil}c["Minions have +10% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=10}}}},nil}c["210% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=210}},nil}c["+10 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=10}},nil}c["+13% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=13}},nil}c["10% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["Purity of Lightning has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Purity of Lightning",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["35% reduced Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=-35}},nil}c["+30 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=30}},nil}c["Grants Summon Harbinger of Focus Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfFocus"}}},nil}c["15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen Enemies "}c["Channelling Skills deal 30% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground"]={nil,"to you and Allies Regenerate 200 Energy Shield per Second while on Consecrated Ground "}c["Minions deal 8% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=8}}}},nil}c["50% increased Effect of Infusion 5% increased Movement Speed while you have Infusion"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=50}}," of Infusion 5% increased Movement Speed while you have Infusion "}c["Right ring slot: Projectiles from Spells Chain +1 times"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1026,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil}c["+23 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=23}},nil}c["Enemies Taunted by your Warcries are Unnerved"]={nil,"Enemies Taunted by your Warcries are Unnerved "}c["50% increased Projectile Attack Damage while you have at least 200 Dexterity"]={{[1]={[1]={stat="Dex",threshold=200,type="StatThreshold"},flags=1025,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["15% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=15}},nil}c["8% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil}c["Trigger Socketed Curse Spells when you cast a Curse Skill +90 to maximum Energy Shield"]={nil,"Trigger Socketed Curse Spells when you cast a Curse Skill +90 to maximum Energy Shield "}c["25% increased Effect of Heralds on you"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}},nil}c["Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Spell Hits if you have Energy Shield"]={nil,"Cannot be Stunned while you have Ghost Shrouds 20% chance to Dodge Spell Hits if you have Energy Shield "}c["+350 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=350}},nil}c["50% chance to gain Elusive on Critical Strike 15% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 15% increased while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect "}c["25% chance that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges"]={{}," that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges "}c["88% increased Physical Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="PhysicalDamage",type="INC",value=88}},nil}c["Right ring slot: 30% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-30}}," Reflected "}c["You and nearby allies have 10% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}}}},nil}c["Nearby Allies have 30% increased Item Rarity"]={{}," Item Rarity "}c["14% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["Cover Enemies in Ash when they Hit you Avatar of Fire"]={nil,"Cover Enemies in Ash when they Hit you Avatar of Fire "}c["10% increased Effect of Arcane Surge on you per 200 Mana spent Recently, up to 50%"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}}," of Arcane Surge on you per 200 Mana spent Recently, up to 50% "}c["20% increased Quantity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=20}},nil}c["50% increased Damage if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["25% reduced Golem Size Golems Deal 45% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=-25}}," Size Golems Deal 45% less "}c["120% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=120}},nil}c["Minions have 10% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil}c["20% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=20}},nil}c["10% more Damage if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=10}},nil}c["Strength provides no bonus to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="NoStrBonusToLife",type="FLAG",value=true}},nil}c["16% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Adds 56 to 84 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=56},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=84}},nil}c["Every 8 seconds, gain Avatar of Fire for 4 seconds 120% increased Critical Strike Chance while you have Avatar of Fire"]={nil,"Every 8 seconds, gain Avatar of Fire for 4 seconds 120% increased Critical Strike Chance while you have Avatar of Fire "}c["135% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=135}},nil}c["Minions gain Unholy Might for 5 seconds on Kill"]={nil,"gain Unholy Might for 5 seconds on Kill "}c["+20% to Critical Strike Multiplier with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["10% more Physical Damage while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamage",type="MORE",value=10}},nil}c["5% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-5}},nil}c["Grants Level 20 Bone Armour Skill 1% additional Physical Damage Reduction per Minion, up to 10% 2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20% Minions have 20% more Maximum Life"]={nil,nil}c["8% increased Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["5% chance to gain an Endurance Charge on Kill 5% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=5}}," to gain an Endurance Charge on Kill 5% increased "}c["Cannot lose Crab Barriers if you have lost Crab Barriers Recently 3% additional Chance to Block while you have at least 5 Crab Barriers"]={nil,"Cannot lose Crab Barriers if you have lost Crab Barriers Recently 3% additional Chance to Block while you have at least 5 Crab Barriers "}c["50% increased Melee Critical Strike Chance if you've Warcried Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=256,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["20% increased Golem Damage for each Golem you have Summoned"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Golem you have Summoned "}c["3% reduced Attack and Cast Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Speed",type="INC",value=-3}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["6% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil}c["+8% Chance to Block Projectile Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}}," Projectile Attack Damage "}c["30% increased Life Recovery Rate while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=30}},nil}c["+25% to Fire and Lightning Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=25}},nil}c["You can only have one Non-Banner Aura on you from your Skills"]={nil,"You can only have one Non-Banner Aura on you from your Skills "}c["+220 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=220}},nil}c["Attack Skills deal 20% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["12% increased Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["20% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["Adds 4 to 10 Fire Attack Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=4},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=10}},nil}c["10% increased Effect of Arcane Surge on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}}," of Arcane Surge on you "}c["3% of Damage taken gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=3}}," gained as Mana over 4 seconds when Hit "}c["30% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Regenerate 0.8% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.8}},nil}c["Recover 1% of Life on Kill Recover 1% of Energy Shield on Kill"]={nil,"Recover 1% of Life on Kill Recover 1% of Energy Shield on Kill "}c["0.6% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.6}},nil}c["-40% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-40}},nil}c["20% increased Effect of Shock you inflict with Critical Strikes 40% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20}}," you inflict with Critical Strikes 40% increased Critical Strike Chance "}c["Minions have +8% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=8}}}},nil}c["10% chance to grant a Power Charge to nearby Allies on Kill"]={{}," to grant a Power Charge to nearby Allies on Kill "}c["16% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["+1 to Minimum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMin",type="BASE",value=1}},nil}c["Gain Arcane Surge when you Summon a Totem Spells cast by Totems deal 25% increased Damage"]={nil,"Gain Arcane Surge when you Summon a Totem Spells cast by Totems deal 25% increased Damage "}c["180% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=180}},nil}c["+3000 to Armour during Soul Gain Prevention"]={{[1]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=3000}},nil}c["+25% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}},nil}c["6% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["10% increased Attack and Cast Speed if you've summoned a Totem Recently"]={{[1]={[1]={type="Condition",var="SummonedTotemRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Socketed Gems have Elemental Equilibrium Socketed Gems have 40% reduced Elemental Equilibrium effect"]={nil,"Elemental Equilibrium Socketed Gems have 40% reduced Elemental Equilibrium effect "}c["Adds 251 to 277 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=251},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=277}},nil}c["10% chance to gain a Frenzy Charge on Kill 10% chance to gain a Power Charge on Kill"]={{}," to gain aCharge on Kill 10% chance to gain a Power Charge on Kill "}c["You gain 4% increased Area of Effect for each Mine"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=4}},"% increased for each "}c["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws"]={{}," to Steal Power, Frenzy, and Endurance Charges on Hit "}c["10% increased Warcry Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=10}},nil}c["Summon Raging Spirit has 25% increased Duration"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=25}},nil}c["40% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=40}},nil}c["Trigger Level 20 Intimidating Cry when you lose Cat's Stealth"]={nil,"Trigger Level 20 Intimidating Cry when you lose Cat's Stealth "}c["75% reduced Maximum number of Summoned Raging Spirits"]={{[1]={flags=0,keywordFlags=0,name="ActiveRagingSpiritLimit",type="INC",value=-75}},nil}c["Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Zombies"]={nil,"Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +2 to Maximum number of Zombies "}c["Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect "}c["20% less chance to Evade Melee Attacks"]={{[1]={flags=0,keywordFlags=0,name="MeleeEvadeChance",type="MORE",value=-20}},nil}c["+12% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["15% increased Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["6% increased Movement Speed if you've Hit an Enemy Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=6}},nil}c["Immune to Ignite and Shock"]={nil,"Immune to Ignite and Shock "}c["Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Flammability while affected by Purity of Fire "}c["12% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["Unaffected by Flammability while affected by Purity of Fire Immune to Freeze while affected by Purity of Ice"]={nil,"Unaffected by Flammability while affected by Purity of Fire Immune to Freeze while affected by Purity of Ice "}c["4% increased Melee Attack Speed"]={{[1]={flags=257,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies "}c["20% chance to Avoid Physical Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=20}}," to Avoid from Hits "}c["Adds 475 to 600 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=475},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=600}},nil}c["Minions have 12% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=12}}}},nil}c["Flasks applied to you have 5% increased Effect"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=5}},nil}c["Gain 20% increased Movement Speed for 20 seconds when you Kill an Enemy"]={nil,"Gain 20% increased Movement Speed for 20 seconds when you Kill an Enemy "}c["+2% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["0.5% of Life Regenerated per Second per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["15% increased Onslaught Effect"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=15}},nil}c["50% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=50}},nil}c["40% increased Critical Strike Chance with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills"]={nil,"You can only have one Herald 50% more Effect of Herald Buffs on you 100% more Damage with Hits from Herald Skills "}c["You can Cast an additional Brand 12% increased Cast Speed with Brand Skills"]={nil,"You can Cast an additional Brand 12% increased Cast Speed with Brand Skills "}c["Passives in radius are Conquered by the Templars Historic"]={nil,"Passives in radius are Conquered by the Templars Historic "}c["Socketed Gems are Supported by level 20 Concentrated Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportConcentratedEffect"}}},nil}c["10% increased Movement Speed during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["Grants maximum Energy Shield equal to 10% of your Reserved Mana to"]={nil,"Grants maximum Energy Shield equal to 10% of your Reserved Mana to "}c["30% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["Hits that Stun Enemies have Culling Strike 30% increased Damage with Ailments from Attack Skills while wielding a Mace"]={nil,"Hits that Stun Enemies have Culling Strike 30% increased Damage with Ailments from Attack Skills while wielding a Mace "}c["If you've Attacked Recently, you"]={nil,"If you've Attacked Recently, you "}c["Cannot Leech Mana"]={{[1]={flags=0,keywordFlags=0,name="CannotLeechMana",type="FLAG",value=true}},nil}c["+150% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=150}},nil}c["10% chance to gain a Frenzy Charge when you Block"]={{}," to gain aCharge when you Block "}c["Axe Attacks deal 26% increased Damage with Ailments"]={{[1]={flags=67584,keywordFlags=0,name="Damage",type="INC",value=26}},nil}c["Adds 33 to 47 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=33},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=47}},nil}c["25% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=25}},nil}c["40% reduced Critical Strike Chance per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=-40}},nil}c["You lose all Endurance Charges at maximum Endurance Charges"]={nil,"You lose all Endurance Charges at maximum Endurance Charges "}c["Adds 53 to 76 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=76}},nil}c["Socketed Gems are Supported by level 10 Cast When Stunned"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportCastOnStunned"}}},nil}c["Socketed Gems are Supported by level 10 Added Chaos Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportAddedChaosDamage"}}},nil}c["Cannot Leech Cannot Leech Life"]={nil,"Cannot Leech Cannot Leech Life "}c["+1 to Level of Socketed Aura Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="aura",value=1}}},nil}c["28% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=28}},nil}c["15% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=15}},nil}c["Can Allocate Passives from the Shadow's starting point"]={{},nil}c["Has no Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="NoAttributeRequirements",type="FLAG",value=true}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Raised Zombie Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed "}c["+20% to Critical Strike Multiplier with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["5% increased Cast Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=16,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Adds 25 to 90 Lightning Damage to Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=25},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=90}},nil}c["15% increased Accuracy Rating with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["Dagger Attacks deal 10% increased Damage with Hits and Ailments"]={{[1]={flags=524288,keywordFlags=786432,name="Damage",type="INC",value=10}},nil}c["+160% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=160}},nil}c["Nearby Allies Intimidate Enemies for 4 seconds on Hit Nearby Allies Unnerve Enemies for 4 seconds on Hit"]={nil,"Nearby Allies Intimidate Enemies for 4 seconds on Hit Nearby Allies Unnerve Enemies for 4 seconds on Hit "}c["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy Elder Item"]={nil,"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy Elder Item "}c["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy "}c["6% increased Physical Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["+15% to Fire and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}},nil}c["Immune to Elemental Ailments while you have Arcane Surge"]={nil,"Immune to Elemental Ailments while you have Arcane Surge "}c["10% chance to gain a Frenzy Charge when you Block Attack Damage 10% chance to gain a Power Charge when you Block Spell Damage"]={{[1]={[1]={skillName="Frenzy",type="SkillName"},flags=3,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain aCharge when you Block 10% chance to gain a Power Charge when you Block Damage "}c["Golems Summoned in the past 8 seconds deal 45% increased Damage Golems have 22% increased Maximum Life"]={nil,"Golems Summoned in the past 8 seconds deal 45% increased Damage Golems have 22% increased Maximum Life "}c["+90 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=90}},nil}c["12% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=12}},nil}c["Adds 24 to 36 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=36}},nil}c["Nearby Enemies grant 25% increased Flask Charges"]={nil,"Nearby Enemies grant 25% increased Flask Charges "}c["10% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["10% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+1% to all maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=1}},nil}c["Gain 7% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=7}},nil}c["Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={skillId="ZombieSlam",type="SkillId"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=100}}}},nil}c["6% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=6}},nil}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Ranged Weapons "}c["+40 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=40}},nil}c["325% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=325}},nil}c["Right ring slot: 4% of Energy Shield Regenerated per second"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=4}},nil}c["+30% to Critical Strike Multiplier with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["+48% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=48}},nil}c["Animated Minions' Melee Attacks deal Splash Damage to surrounding targets Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets "}c["30% increased Effect of Arcane Surge on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=30}}," of Arcane Surge on you "}c["You and Allies affected by your placed Banners Regenerate 0.1% of maximum Life per second for each Stage You and nearby Allies have 12% increased Movement Speed"]={nil,"You and Allies affected by your placed Banners Regenerate 0.1% of maximum Life per second for each Stage You and nearby Allies have 12% increased Movement Speed "}c["8% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["60% increased Main Hand Attack Damage while wielding two different Weapon Types 30% increased Off Hand Attack Speed while wielding two different Weapon Types"]={{[1]={flags=8193,keywordFlags=0,name="Damage",type="INC",value=60}}," Main Hand while wielding two different Types 30% increased Off Hand Attack Speed while wielding two different Weapon Types "}c["2% of Life Regenerated per second if you've taken Fire Damage from a Hit Recently"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["+1 Melee Weapon and Unarmed Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=1}},nil}c["When you create a Banner, it gains 40% of the Stages of your placed Banner You and Allies affected by your placed Banners Regenerate 0.1% of\nmaximum Life per second for each Stage You and nearby Allies have 12% increased Movement Speed"]={nil,"When you create a Banner, it gains 40% of the Stages of your placed Banner You and Allies affected by your placed Banners Regenerate 0.1% of\nmaximum Life per second for each Stage You and nearby Allies have 12% increased Movement Speed "}c["25% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=25}},nil}c["10% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=10}},nil}c["10% increased Effect of Fortify on you while Stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="FortifyEffectOnSelf",type="INC",value=10}},nil}c["Socketed Gems have 20% reduced Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-20}}}},nil}c["Increases and Reductions to Minion Damage also affect you"]={{[1]={flags=0,keywordFlags=0,name="MinionDamageAppliesToPlayer",type="FLAG",value=true}},nil}c["+3% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["100% increased Cold Damage while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=100}},nil}c["Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem"]={nil,"Your Elemental Golems are Immune to Elemental Damage 20% increased Damage for each Summoned Golem "}c["Adds 19-43 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=19},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=43}},nil}c["Damage Penetrates 15% Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},nil}c["No Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil}c["12 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=12}},nil}c["Gain Igniting Conflux for 4 seconds"]={{[1]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=100},[2]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="PhysicalCanIgnite",type="FLAG",value=true},[3]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="LightningCanIgnite",type="FLAG",value=true},[4]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="ColdCanIgnite",type="FLAG",value=true},[5]={[1]={type="Condition",var="IgnitingConflux"},flags=0,keywordFlags=0,name="ChaosCanIgnite",type="FLAG",value=true}},nil}c["Implicit Modifier magnitudes are doubled"]={nil,"Implicit Modifier magnitudes are doubled "}c["Melee Skills have 5% increased Area of Effect"]={{[1]={[1]={skillType=24,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["You gain a Frenzy Charge on use You gain an Endurance Charge on use"]={nil,"You gain a Frenzy Charge on use You gain an Endurance Charge on use "}c["5% chance to gain an Endurance Charge on Kill while holding a Shield +4% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},[2]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}}," to gain an Endurance Charge on Kill +4% Chance "}c["20% chance to Maim Enemies on Critical Strike with Attacks"]={{}," to Maim Enemies "}c["12% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil}c["Minions deal 48 to 72 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=48}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=72}}}},nil}c["Chaos Damage can Ignite, Chill and Shock"]={{[1]={flags=0,keywordFlags=0,name="ChaosCanIgnite",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ChaosCanChill",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="ChaosCanShock",type="FLAG",value=true}},nil}c["Critical Strikes do not always Freeze"]={{[1]={flags=0,keywordFlags=0,name="CritsDontAlwaysFreeze",type="FLAG",value=true}},nil}c["+500 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=500}},nil}c["Damage Penetrates 6% Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=6}},nil}c["24% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=24}},nil}c["25% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy"]={nil,"Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy "}c["-80 Physical Damage taken from Projectile Attacks 200% increased Armour against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-80}}," from Projectile Attacks 200% increased Armour against Projectiles "}c["Agony Crawler deals 100% increased Damage"]={{[1]={[1]={skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=100}}}},nil}c["10% increased Fortify duration"]={{[1]={flags=0,keywordFlags=0,name="FortifyDuration",type="INC",value=10}},nil}c["4% increased Attack Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to gain a Power Charge if you Knock an Enemy Back with "}c["Items and Gems have 10% reduced Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="GlobalAttributeRequirements",type="INC",value=-10}},nil}c["+50 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=50}},nil}c["35% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=35}},nil}c["8% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=8}},nil}c["35% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=35}},nil}c["Adds 190 to 220 Cold Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=190},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=220}},nil}c["Wand Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=8388608,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["30% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=30}},nil}c["50% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["10% chance to gain an Endurance Charge when you are Hit"]={{}," to gain an Endurance Charge when you are Hit "}c["25% chance to Trigger a Socketed Spell when you Attack with a Bow"]={{}," to Trigger a Socketed when you Attack with a Bow "}c["12% increased Accuracy Rating with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["18% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=18}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["+20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield"]={{[1]={[1]={div=5,stat="EnergyShieldOnWeapon 2",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=20}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies 100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies 100% increased Quantity of Items Dropped by Slain Normal Enemies "}c["You gain 8% increased Area of Effect for each Mine 20% chance when Placing Mines to Place an additional Mine"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="BASE",value=8}},"% increased for each 20% chance when Placing Mines to Place an additional Mine "}c["5% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=5}},nil}c["25% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=25}},nil}c["100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{}," Quantity of Items Dropped by Slain Normal Enemies "}c["16% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=16}},nil}c["+2 to Level of all Lightning Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="lightning",[3]="active_skill"},value=2}}},nil}c["6% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["15% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=15}},nil}c["Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Lose all Frenzy, Endurance, and Power Charges when you Move "}c["+18 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=18},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=18}},nil}c["30% increased Critical Strike Chance with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["+4% to maximum Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=4}},nil}c["Adds 1 to 100 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=100}},nil}c["20% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=20}},nil}c["20% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=20}},nil}c["8% increased Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["Adds 300 to 380 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=300},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=380}},nil}c["Enemies you Curse are Intimidated"]={nil,"Enemies you Curse are Intimidated "}c["Adds 35 to 55 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=55}},nil}c["135% increased Spell Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=135}},nil}c["Bleeding you inflict deals Damage 10% faster"]={{[1]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=10}},nil}c["50% Chance to avoid being Stunned during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=50}},nil}c["Adds 10 to 20 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=20}},nil}c["5% reduced Area Damage taken from Hits +2 to Melee Weapon and Unarmed Attack range 10% increased Area of Effect if you have Stunned an Enemy Recently Melee Skills have 10% increased Area of Effect"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits +2 to Melee Weapon and Unarmed Attack range 10% increased Area of Effect if you have Stunned an Enemy Recently Melee Skills have 10% increased Area of Effect "}c["5% increased effect of Non-Curse Auras from your Skills"]={{[1]={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=5}},nil}c["320% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=320}},nil}c["You take 10% of your maximum Life as Chaos Damage on use You gain a Power Charge on use"]={nil,"You take 10% of your maximum Life as Chaos Damage on use You gain a Power Charge on use "}c["40% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=40}},nil}c["+80 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=80}},nil}c["Passives in radius are Conquered by the Eternal Empire"]={nil,"Passives in radius are Conquered by the Eternal Empire "}c["50% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs"]={{[1]={[1]={actor="enemy",threshold=3,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=50}},nil}c["Recover 2% of Mana when you Kill a Cursed Enemy"]={nil,"Recover 2% of Mana when you Kill a Cursed Enemy "}c["50% of Physical, Cold and Lightning Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="LightningDamageConvertToFire",type="BASE",value=50},[3]={flags=0,keywordFlags=0,name="ColdDamageConvertToFire",type="BASE",value=50}},nil}c["Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows Adds 40 to 100 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=40},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=100}},"Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows "}c["Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows"]={nil,"Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows "}c["140 Life Regenerated per Second while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=140}},nil}c["+25 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=25}},nil}c["5% increased Cast Speed with Fire Skills"]={{[1]={flags=16,keywordFlags=16,name="Speed",type="INC",value=5}},nil}c["25% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=25}},nil}c["Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"]={nil,"Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned "}c["+250 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=250}},nil}c["+20 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20}},nil}c["25% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=25}},nil}c["With at least 40 Strength in Radius, Ground Slam has a 20% increased angle With at least 40 Strength in Radius, Ground Slam has a 35% increased angle"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 20% increased angle With at least 40 Strength in Radius, Ground Slam has a 35% increased angle "}c["16% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=16}},nil}c["+10 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}},nil}c["5% reduced Damage taken from Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-5}},nil}c["Sacrifice 4% of your Life when you Use or Trigger a Spell Skill"]={nil,"Sacrifice 4% of your Life when you Use or Trigger a Spell Skill "}c["15% increased Area of Effect if you have Stunned an Enemy Recently 18% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="AreaOfEffect",type="INC",value=15}}," if you have Stunned an Enemy Recently 18% increased Damage "}c["With 5 Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead"]={{[1]={[1]={threshold=5,type="MultiplierThreshold",var="CorruptedItem"},flags=0,keywordFlags=0,name="LifeLeechBasedOnChaosDamage",type="FLAG",value=true}},nil}c["Adds 22 to 33 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=22},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=33}},nil}c["Channelling Skills have 5% increased Attack and Cast Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Adds 22 to 35 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=22},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=35}},nil}c["Grants Level 20 Bone Armour Skill 1% additional Physical Damage Reduction per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30%"]={nil,nil}c["10% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=10}},nil}c["1% increased Area of Effect per Enemy killed recently, up to 50%"]={{[1]={[1]={limit=50,limitTotal=true,type="Multiplier",var="EnemyKilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=1}},nil}c["Adds 14 to 24 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil}c["10% increased Attack Speed with Daggers"]={{[1]={flags=524293,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["23% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-23}},nil}c["Minions have 5% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=5}}}},nil}c["20% increased Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Sword Attacks deal 8% increased Damage with Ailments"]={{[1]={flags=4196352,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["Recover 4% of Mana on Kill"]={nil,"Recover 4% of Mana on Kill "}c["Gain 35% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=35}},nil}c["Projectiles Pierce an additional Target"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=1}},nil}c["4% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=301989893,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["625% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=625}},nil}c["16% increased Quantity of Items found when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=16}},nil}c["15% increased Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["100% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=100}},nil}c["15% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=15}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill"]={{}," to gain aCharge and a Power Charge on Kill "}c["+1 to Maximum number of Spectres"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=1}},nil}c["12% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=12}},nil}c["+100% to Fire Resistance when Socketed with a Red Gem"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=100}}," when Socketed with a Red Gem "}c["50% increased Critical Strike Chance with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["40% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=-40}},nil}c["Minions have 4% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=4}}}},nil}c["40% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["24% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=24}},nil}c["Summoned Skeletons Cover Enemies in Ash on Hit"]={nil,"Summoned Skeletons Cover Enemies in Ash on Hit "}c["25% reduced Mana Reservation of Herald Skills"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-25}},nil}c["+30% to Critical Strike Multiplier against Enemies that are affected"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}}," against Enemies that are affected "}c["Every 5 seconds, remove Curses and Elemental Ailments from you"]={nil,"Every 5 seconds, remove Curses and Elemental Ailments from you "}c["15% increased Accuracy Rating with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["12% increased Attack Physical Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["Passives in radius are Conquered by the Maraketh Historic"]={nil,"Passives in radius are Conquered by the Maraketh Historic "}c["20% increased Movement Speed while under no Flask Effects"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}," while under no Flask Effects "}c["20% increased Damage with Ailments from Attack Skills"]={{[1]={flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["50% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Defences",type="INC",value=50}},nil}c["Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 20% increased Movement Speed for 20 seconds when you Kill an Enemy"]={nil,"Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 20% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy Gain 20% increased Movement Speed for 20 seconds when you Kill an Enemy "}c["Minions deal 20% increased Damage against Ignited Enemies"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=20}}}},nil}c["8% increased Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Damage",type="INC",value=8}},nil}c["25% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=25}},nil}c["20% increased Damage with One Handed Weapons"]={{[1]={flags=134217732,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["+450 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=450}},nil}c["Inner Conviction"]={nil,"Inner Conviction "}c["50% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},nil}c["25% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["8% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["10% reduced Damage taken while there are at least two Rare or Unique Enemies nearby"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-10}}," while there are at least two Rare or Unique Enemies nearby "}c["60% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=60}},nil}c["50% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=50}},nil}c["+1 Maximum Endurance Charge"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}},nil}c["25% increased Effect of Herald Buffs on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=25}}," of Herald Buffs on you "}c["You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently You have Phasing if you have Blocked Recently"]={nil,"You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently You have Phasing if you have Blocked Recently "}c["10% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=10}},nil}c["You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range"]={nil,"You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them Brand Recall has 30% increased Cooldown Recovery Speed 14% increased Brand Attachment range "}c["Gain a Power Charge after spending a total of 200 Mana 2 Mana Regenerated per Second per Power Charge"]={nil,"Gain a Power Charge after spending a total of 200 Mana 2 Mana Regenerated per Second per Power Charge "}c["28% increased Physical Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="PhysicalDamage",type="INC",value=28}},nil}c["10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies take 10% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=10}}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments Nearby Enemies take 10% increased "}c["+20 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["8% increased Attack Speed with Maces and Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Iron Grip"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Iron Grip"}},nil}c["20% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=20}}," Maximum "}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies +0.1% to Critical Strike Chance per Poison affecting Enemy, up to +2.0%"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},[2]={actor="enemy",limit=2,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=1,keywordFlags=262144,name="CritChance",type="BASE",value=50}}," to Maim on Hit +0.1% to "}c["+15% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}},nil}c["0.4% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.4}},nil}c["3% reduced Damage taken per Ghost Shroud"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud "}c["Chaos Damage does not bypass Energy Shield"]={nil,"Chaos Damage does not bypass Energy Shield "}c["+63% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=63}},nil}c["80% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=80}},nil}c["+40 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=40}},nil}c["35% chance to gain an Endurance Charge when you use a Fire skill"]={{}," to gain an Endurance Charge when you use a Fire skill "}c["Mace or Sceptre Attacks deal 16% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["Recover 4% of Maximum Mana on Kill"]={nil,"Recover 4% of Maximum Mana on Kill "}c["Has 2 Abyssal Sockets"]={{[1]={flags=0,keywordFlags=0,name="AbyssalSocketCount",type="BASE",value=2}},nil}c["15% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil}c["Causes Bleeding on Melee Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["60% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=60}},nil}c["Poisons you inflict deal Damage 20% faster"]={{[1]={flags=0,keywordFlags=0,name="PoisonFaster",type="INC",value=20}},nil}c["Gain 25% of Physical Damage as Extra Fire Damage while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=25}},nil}c["Cannot be Stunned by Hits you Block"]={nil,"Cannot be Stunned by Hits you Block "}c["Nearby Enemies take 16% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=16}}}},nil}c["6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-6}}," for 4 seconds after Spending a total of 200 Mana "}c["5% increased Movement Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}c["10% chance to create a Smoke Cloud on Kill"]={{}," to create a Smoke Cloud on Kill "}c["Gain 20% of Wand Physical Damage as Extra Lightning Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=20}},nil}c["40% increased Mine Duration"]={{[1]={flags=0,keywordFlags=0,name="MineDuration",type="INC",value=40}},nil}c["+25% additional Block Chance against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=25}}," against Projectiles "}c["80% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=80}},nil}c["20% increased Blind duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}}," Blind "}c["8% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=8}},nil}c["14% increased Damage with One Handed Weapons"]={{[1]={flags=134217732,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["Lose all Power Charges on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges "}c["Gain 30% of Wand Physical Damage as Extra Lightning Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=30}},nil}c["Minions have 3% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=3}}}},nil}c["Point Blank"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Point Blank"}},nil}c["25% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=110}}," Bow as Extra Damage of an Element "}c["Traps cannot be Damaged for 5 seconds after being Thrown"]={nil,"Traps cannot be Damaged for 5 seconds after being Thrown "}c["25% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground "}c["Regenerate 8% of Energy Shield over 2 seconds when you Consume a corpse"]={nil,"Regenerate 8% of Energy Shield over 2 seconds when you Consume a corpse "}c["7% Global chance to Blind Enemies on hit"]={nil,"7% Global chance to Blind Enemies on hit "}c["3% increased Attack Speed with Maces"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["of its mods for 20 seconds"]={nil,"of its mods for 20 seconds "}c["Socketed Trap Skills create a Smoke Cloud when triggered Trigger Level 20 Fog of War when your Trap is triggered"]={nil,"Socketed Trap Skills create a Smoke Cloud when triggered Trigger Level 20 Fog of War when your Trap is triggered "}c["Minions gain Unholy Might for 5 seconds on Kill Minions gain Unholy Might for 10 seconds on Kill"]={nil,"gain Unholy Might for 5 seconds on Kill Minions gain Unholy Might for 10 seconds on Kill "}c["+20 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}},nil}c["35% chance to gain an Endurance Charge when you use a Fire skill 5% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=35}}," to gain an Endurance Charge when you use a Fire skill 5% increased "}c["15% increased Attack and Cast Speed if you've used a Movement Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["4% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=4},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["+8% to Damage over Time Multiplier for Poison"]={{[1]={flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=8}},nil}c["8% increased Elemental Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="ElementalDamage",type="INC",value=8}},nil}c["20% increased Duration of Elemental Status Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=20},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=20},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=20}},nil}c["25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="Life",type="BASE",value=25}}," to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full 20% chance to Impale Enemies on Hit "}c["40% increased Critical Strike Chance with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["50% increased Global Evasion Rating when on Low Life"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=50}},nil}c["5% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=301989893,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["230% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=230}},nil}c["Regenerate 0.5% of Mana per second for each Totem Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem"]={{[1]={[1]={stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=16384,name="ManaRegenPercent",type="BASE",value=0.5}}," for each Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of per second "}c["30% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=30}},nil}c["6% chance to Knock Enemies Back on hit"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=6}},nil}c["45% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=45}},nil}c["Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=10}},nil}c["Minions gain 6% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=6}}}},nil}c["6% increased Attack Speed with Wands"]={{[1]={flags=8388613,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["4% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=4}},nil}c["+1 to Level of Socketed Fire Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="fire",value=1}}},nil}c["140% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=140}},nil}c["Regenerate 0.3% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.3}},nil}c["Recover 2% of Mana on Kill"]={nil,"Recover 2% of Mana on Kill "}c["+15% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritMultiplier",type="BASE",value=15}},nil}c["Blood Magic"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Blood Magic"}},nil}c["Raging Spirits refresh their Duration when they Kill an Ignited Enemy"]={nil,"Raging Spirits refresh their Duration when they Kill an Ignited Enemy "}c["Minions deal 20% increased Damage while you are affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}}," while you are affected by a Herald "}c["+68 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=68}},nil}c["40% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=40}},nil}c["Spectres have a Base Duration of 20 seconds"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="duration",value=6}}},nil}c["Minions cannot be Blinded Minions have 15% chance to Blind Enemies on hit"]={nil,"cannot be Blinded Minions have 15% chance to Blind Enemies on hit "}c["Totems gain +40% to Chaos Resistance"]={nil,"Totems gain +40% to Chaos Resistance "}c["Sacrifice 5% of Life to gain that much Energy Shield when you Cast a Spell"]={nil,"Sacrifice 5% of Life to gain that much Energy Shield when you Cast a Spell "}c["2% reduced Damage taken per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-2}}," per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 "}c["30% increased Mana Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=30}},nil}c["1% of Energy Shield Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["8% increased Evasion Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=8}},nil}c["You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["You can have an Offering of each type Offering Skills have 50% reduced Duration"]={nil,"You can have an Offering of each type Offering Skills have 50% reduced Duration "}c["Cannot be Shocked while Chilled 40% chance to Chill Attackers for 4 seconds on Block"]={nil,"Cannot be Shocked while Chilled 40% chance to Chill Attackers for 4 seconds on Block "}c["With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating"]={{[1]={[1]={type="Condition",var="HaveGhastlyEyeJewelIn{SlotName}"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=1000}}}},nil}c["Implicit Modifier magnitudes are tripled"]={nil,"Implicit Modifier magnitudes are tripled "}c["+4% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["50% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-50}},nil}c["Adds 12 to 24 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil}c["+80 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=80}},nil}c["50% chance to Shock Chilled Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=50}}," Chilled Enemies "}c["Temporal Chains has 100% reduced Mana Reservation"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-100}},nil}c["Socketed Gems are Supported by level 18 Melee Physical Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportMeleePhysicalDamage"}}},nil}c["Gain 10% of Maximum Life as Extra Armour"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=10}}," as Extra Armour "}c["+180 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=180}},nil}c["6% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=6}},nil}c["6% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=6}},nil}c["0.3% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=0.3}},nil}c["Grants Summon Harbinger of the Arcane Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfTheArcane"}}},nil}c["Adds 13 to 24 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=13},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=24}},nil}c["13 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=13}},nil}c["8% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["Converts all Evasion Rating to Armour. Dexterity provides no bonus to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="IronReflexes",type="FLAG",value=true}},nil}c["15% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritChance",type="INC",value=15}},nil}c["30% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["Adds 5 to 12 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=12}},nil}c["Attack Skills deal 10% increased Damage with Ailments while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["Summoned Golems are Immune to Elemental Damage"]={nil,"Summoned Golems are Immune to Elemental Damage "}c["18% increased Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["+25% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=25}},nil}c["Melee Critical Strikes have 25% chance to cause Bleeding"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil}c["Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=10}},nil}c["15% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["1% increased Damage per 15 Dexterity"]={{[1]={[1]={div=15,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["16% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=16}},nil}c["60% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=60}},nil}c["+50 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=50}},nil}c["Unaffected by Shock Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Unaffected by Shock Shocked Enemies you Kill Explode, dealing 10% of "}c["100% chance to Trigger Level 1 Raise Spiders on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="TriggeredSummonSpider"}}},nil}c["16% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=16}},nil}c["50% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=1048576,name="Damage",type="INC",value=50}},nil}c["6% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=6}},nil}c["You and nearby Allies have 12% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}}}},nil}c["80% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=80}},nil}c["225% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=225}},nil}c["You have Vaal Pact if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Vaal Pact"}},nil}c["50% chance to gain Elusive on Critical Strike 20% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 20% increased while Elusive 8% reduced Damage taken while Elusive "}c["20% less Cold Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTaken",type="MORE",value=-20}},nil}c["6% increased Attack Speed with Daggers"]={{[1]={flags=524293,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["+3% to maximum Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=3}},nil}c["+1% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}},nil}c["30% increased Accuracy Rating with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil}c["Enemies Cannot Leech Mana From You"]={nil,"Enemies Cannot Leech Mana From You "}c["45% chance to avoid Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=45}},nil}c["+13% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=13}},nil}c["12% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["Regenerate 15 Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=15}},nil}c["50% more Damage Over Time with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="MORE",value=50}}," with Herald Skills Minions from Herald Skills deal 25% more Damage Your Aura Skills are Disabled "}c["+40 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=40}},nil}c["Channelling Skills deal 14% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["1% of Damage is taken from Mana before Life per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=1}},nil}c["15% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=15}},nil}c["Cannot gain Energy Shield 1% of Life Regenerated per second per 500 Maximum Energy Shield"]={nil,"Cannot gain Energy Shield 1% of Life Regenerated per second per 500 Maximum Energy Shield "}c["8% increased Attack and Cast Speed during Effect of any Mana Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Speed",type="INC",value=8}}," of any Mana Flask "}c["Adds 16-25 Physical Damage to Attacks while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=16},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=25}},nil}c["30% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=30}},nil}c["Regenerate 1% of Energy Shield per second for each Enemy you or your Minions have Killed Recently, up to 10% per second"]={{[1]={[1]={limit=10,limitTotal=true,type="Multiplier",varList={[1]="EnemyKilledRecently",[2]="EnemyKilledByMinionsRecently"}},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["40% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["18% increased Vaal Skill Effect Duration"]={{[1]={flags=0,keywordFlags=256,name="Duration",type="INC",value=18}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 10% increased Attack Speed"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 10% increased Attack Speed "}c["40% increased Attack Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["Projectiles Pierce 6 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=6}},nil}c["Armour is increased by Uncapped Fire Resistance"]={{[1]={[1]={div=1,stat="FireResistTotal",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="INC",value=1}},nil}c["+55% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=55}},nil}c["14% increased Damage with Two Handed Weapons"]={{[1]={flags=268435460,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["45% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=45}},nil}c["15% reduced Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-15}},nil}c["You lose Virulence 50% slower Poisons you inflict during any Flask Effect have 40% chance to deal 100% more Damage"]={nil,"You lose Virulence 50% slower Poisons you inflict during any Flask Effect have 40% chance to deal 100% more Damage "}c["Deal no Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoChaos",type="FLAG",value=true}},nil}c["Your Critical Strikes Knock Back Shocked Enemies"]={nil,"Your Critical Strikes Knock Back Shocked Enemies "}c["10% chance to double Stun Duration 28% increased Damage with Ailments from Attack Skills while wielding a Mace"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="EnemyStunDuration",type="BASE",value=10}}," to double 28% increased Damage "}c["Adds 1 to 325 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=325}},nil}c["+15% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["50% reduced maximum number of Raised Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="INC",value=-50}},nil}c["70% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=70}},nil}c["Adds 3 to 7 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=7}},nil}c["Adds 1 to 75 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=75}},nil}c["Arrows Pierce all Targets after Chaining Arrows Pierce all Targets after Forking"]={nil,"Arrows Pierce all Targets after Chaining Arrows Pierce all Targets after Forking "}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of Golems"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% +1 to maximum number of Golems "}c["+4% to all maximum Elemental Resistances during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=4}},nil}c["20% chance to Impale Enemies on Hit with Attacks Impales you inflict last 2 additional Hits"]={{}," to Impale Enemies on Hit Impales you inflict last 2 additional Hits "}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 5% increased Damage per Frenzy Charge 5% increased Damage per Power Charge Gain a Power or Frenzy Charge each second while Channelling"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Multiplier",var="PowerCharge"},[3]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 5% increased 5% increased Damage Gain a Power or Frenzy Charge each second while Channelling "}c["2 additional Arrows"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["Lose 25 Life for each Enemy hit by your Attacks Skills Chain +1 times"]={nil,"Lose 25 Life for each Enemy hit by your Attacks Skills Chain +1 times "}c["20% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["130% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=130}},nil}c["Adds 75 to 220 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=220}},nil}c["Adds 25 to 60 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=60}},nil}c["60% increased Energy Shield from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=60}},nil}c["60% chance to Avoid Blind"]={{}," to Avoid Blind "}c["6% increased Area of Effect while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=6}},nil}c["Socketed Gems are Supported by Level 16 Trap and Mine Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=16,skillId="SupportTrapAndMineDamage"}}},nil}c["16% increased Physical Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Temporal Chains has 50% reduced Effect on You"]={{[1]={[1]={skillName="Temporal Chains",type="SkillName"},flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-50}},nil}c["+45 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=45}},nil}c["0.2% of Physical Attack Damage Leeched as Mana per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.2}},nil}c["+1 to Maximum number of Raised Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil}c["22% increased Attack Speed while a Rare or Unique Enemy is Nearby"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=1,keywordFlags=0,name="Speed",type="INC",value=22}},nil}c["also grant an equal chance to gain an Endurance Charge on Kill"]={nil,"also grant an equal chance to gain an Endurance Charge on Kill "}c["Gain 30% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=30}},nil}c["If you've Warcried Recently, you and nearby allies have 20% increased Attack Speed"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=20}}}},nil}c["You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={nil,"You and Nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit "}c["10% increased Scorching Ray beam length"]={{},"beam length "}c["700% more Unarmed Physical Damage"]={{[1]={flags=16777220,keywordFlags=0,name="PhysicalDamage",type="MORE",value=700}},nil}c["Adds 170 to 195 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=170},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=195}},nil}c["20% more Damage if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=20}},nil}c["+75 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=75},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=75}},nil}c["50% less Weapon Damage"]={{[1]={flags=8192,keywordFlags=0,name="Damage",type="MORE",value=-50}},nil}c["Cannot be Poisoned"]={nil,"Cannot be Poisoned "}c["15% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=15}},nil}c["20% increased Elemental Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},nil}c["Spells Cast by Totems have 3% increased Cast Speed"]={{[1]={flags=16,keywordFlags=16384,name="Speed",type="INC",value=3}},nil}c["You take 40% reduced Extra Damage from Critical Strikes while affected by Determination Unaffected by Vulnerability while affected by Determination"]={nil,"You take 40% reduced Extra Damage from Critical Strikes while affected by Determination Unaffected by Vulnerability while affected by Determination "}c["25% chance to inflict Fire Exposure on Hit Nearby Enemies have 50% increased Fire and Cold Resistances"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}}," to inflict Fire Exposure on Hit Nearby Enemies have 50% increased "}c["24% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Golem Skills have 25% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=25}},nil}c["Adds 12 to 32 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=32}},nil}c["Raised Zombies deal 90% more Physical Damage"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="MORE",value=90}}}},nil}c["While on Low Life, Enemies are Unlucky when Damaging you"]={nil,"While on Low Life, Enemies are Unlucky when Damaging you "}c["Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"]={nil,"Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy "}c["17% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=17}},nil}c["Projectiles gain 18% of Non-Chaos Damage as extra Chaos Damage per Chain"]={{[1]={[1]={stat="Chain",type="PerStat"},flags=1024,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=18}},nil}c["650% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=650}},nil}c["12% increased Accuracy Rating with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["+375 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=375}},nil}c["Attacks Chain an additional time when in Main Hand"]={{[1]={[1]={num=1,type="SlotNumber"},flags=1,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil}c["+33% to Critical Strike Multiplier if Dexterity is higher than Intelligence"]={{[1]={[1]={type="Condition",var="DexHigherThanInt"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=33}},nil}c["60% more Attack Speed while you are Unencumbered"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="MORE",value=60}}," while you are Unencumbered "}c["Gain a Frenzy Charge on reaching Maximum Power Charges"]={nil,"Gain a Frenzy Charge on reaching Maximum Power Charges "}c["1% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=1}},nil}c["Grants Level 20 Bone Armour Skill 1% additional Physical Damage Reduction per Minion, up to 10% 2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20%"]={nil,nil}c["12% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["3% increased Attack Speed with Axes"]={{[1]={flags=65541,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["30% increased Minion Damage if you've used a Minion Skill Recently"]={{[1]={[1]={type="Condition",var="UsedMinionSkillRecently"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}}}},nil}c["Arrows always Pierce"]={{[1]={flags=1,keywordFlags=0,name="PierceAllTargets",type="FLAG",value=true}},nil}c["10% increased Critical Strike Chance with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}c["40% increased Critical Strike Chance with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["Minions have 20% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=20}}}},nil}c["Recover 1% of Life on Kill"]={nil,"Recover 1% of Life on Kill "}c["20% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=20}},nil}c["Recover 4% of Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 4% of Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["Adds 40 to 100 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=40},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=100}},nil}c["4% increased Evasion Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=4}},nil}c["0.5% of Attack Damage Leeched as Life per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.5}},nil}c["1% Life Regenerated per Second for each of your Traps Triggered Recently, up to 20%"]={{[1]={[1]={limit=20,limitTotal=true,type="Multiplier",var="TrapTriggeredRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["10% chance to gain Phasing for 4 seconds on Kill"]={{}," to gain Phasing for 4 seconds on Kill "}c["Projectiles cannot Pierce, Fork or Chain"]={nil,"Projectiles cannot Pierce, Fork or Chain "}c["5% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["+50% to all Elemental Resistances during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=50}},nil}c["160% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=160}},nil}c["Culling Strike against Enemies Cursed with Poacher's Mark Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies"]={nil,"Culling Strike against Enemies Cursed with Poacher's Mark Curse Enemies with Level 30 Poacher's Mark on Hit, which can apply to Hexproof Enemies "}c["25% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["Minions have +8% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=8}}}},nil}c["Freezes you inflict spread to other Enemies within a Radius of 12"]={nil,"Freezes you inflict spread to other Enemies within a Radius of 12 "}c["+30 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=30}},nil}c["10% chance to throw up to 1 additional Trap or Mine"]={{}," to throw up to 1 additional or Mine "}c["50% chance to gain Elusive on Critical Strike 20% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage from Critical Strikes while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 20% increased while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage while Elusive "}c["20% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=20}}," while Elusive 8% reduced Damage taken while Elusive "}c["You Cannot Be Shocked While Frozen"]={nil,"You Cannot Be Shocked While Frozen "}c["Your Skills have no Mana Cost during Flask effect"]={nil,"Your Skills have no Mana Cost during Flask effect "}c["5% increased Cast Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=16,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Minions have 28% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=28}}}},nil}c["10% chance to Dodge Spell Hits"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["3% increased Attack Speed with Two Handed Melee Weapons"]={{[1]={flags=301989893,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["50% chance to gain Elusive on Critical Strike"]={{}," to gain Elusive "}c["8% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=8}},nil}c["Auras from your Skills grant 0.2% of Maximum Life Regenerated per second to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}}}},nil}c["40% increased Critical Strike Chance against Taunted Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Taunted"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=40}},nil}c["5% increased Melee Attack Speed"]={{[1]={flags=257,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["+40% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil}c["12% increased Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["16% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=16}},nil}c["Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds"]={nil,"Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds "}c["Poison you inflict with Critical Strikes deals 50% more Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=1048576,name="Damage",type="MORE",value=50}},nil}c["+1 Maximum Power Charge"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=1}},nil}c["24% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=24}},nil}c["28% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=28}},nil}c["25% increased Elemental Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["2 Additional Arrows"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["Damage with Weapons Penetrates 3% Elemental Resistance"]={{[1]={flags=8192,keywordFlags=0,name="ElementalPenetration",type="BASE",value=3}},nil}c["20% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=20}},nil}c["25% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=25}},nil}c["Recover 2% of Maximum Energy Shield on Kill"]={nil,"Recover 2% of Maximum Energy Shield on Kill "}c["Adds 85 to 118 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=85},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=118}},nil}c["Adds 2 to 4 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=4}},nil}c["40% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=40}},nil}c["+13 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=13}},nil}c["+50% to Critical Strike Multiplier for Spells if you haven't Killed Recently"]={{[1]={[1]={neg=true,type="Condition",var="KilledRecently"},flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}},nil}c["10% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+75 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=75}},nil}c["Adds 5 to 11 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=11}},nil}c["50% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=50}},nil}c["12% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped"]={{[1]={[1]={type="Multiplier",varList={[1]="ElderItem",[2]="ShaperItem"}},flags=0,keywordFlags=0,name="SiphoningChargesMax",type="BASE",value=1}},nil}c["10% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil}c["6% chance to Dodge Attacks while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=6}},nil}c["Attacks have 25% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil}c["and nearby Allies Regenerate 200 Life per second"]={nil,"and nearby Allies Regenerate 200 Life per second "}c["14% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=14}},nil}c["Cannot Be Stunned while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["Socketed Gems are Supported by level 15 Concentrated Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportConcentratedEffect"}}},nil}c["+44 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=44}},nil}c["50% chance for Attacks to Maim on Hit against Poisoned Enemies +0.1% to Critical Strike Chance per Poison affecting Enemy, up to +2.0% 5% increased Poison Duration for each Poison you have inflicted Recently"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},[2]={actor="enemy",limit=2,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=1,keywordFlags=262144,name="CritChance",type="BASE",value=50}}," to Maim on Hit +0.1% to 5% increased Poison Duration for each Poison you have inflicted Recently "}c["Bow Skills have 20% increased Skill Effect Duration"]={nil,"Bow Skills have 20% increased Skill Effect Duration "}c["+400 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=400}},nil}c["3% increased Character Size 6% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=3}}," Character Size 6% increased "}c["Recover 2% of Life on Kill Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 2% of Life on Kill Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["-25% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-25}},nil}c["1% increased Spell Damage per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["Socketed Gems are Supported by level 10 Blastchain Mine"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportRemoteMine"}}},nil}c["Damage Penetrates 1% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=1}},nil}c["Grants level 20 Doryani's Touch Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TouchOfGod"}}},nil}c["Damage Penetrates 4% Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=4}},nil}c["Adds 80 to 180 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=80},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=180}},nil}c["Adds 91 to 130 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=91},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=130}},nil}c["Adds 56 to 400 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=56},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=400}},nil}c["Mana Flasks gain 1 Charge every 3 seconds Remove a random Elemental Ailment when you use a Mana Flask"]={nil,"Mana Flasks gain 1 Charge every 3 seconds Remove a random Elemental Ailment when you use a Mana Flask "}c["Adds 84 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=84},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=140}},nil}c["Adds 75 to 110 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=110}},nil}c["Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing"]={nil,"Nearby Enemies have Fire, Cold and Lighting Exposure while you have Phasing, applying -15% to those Resistances Nearby Enemies have 15% less Accuracy Rating while you have Phasing "}c["Adds 40 to 60 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=60}},nil}c["20% of Lightning Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageLifeLeech",type="BASE",value=20}},nil}c["Adds 25 to 50 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=25},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=50}},nil}c["Reflects 50 Cold Damage to Melee Attackers"]={nil,"Reflects 50 Cold Damage to Melee Attackers "}c["20% chance to gain an Endurance Charge when Hit while Channelling 20% chance to gain a Frenzy Charge when Hit while Channelling"]={{}," to gain an Endurance Charge when Hit 20% chance to gain aCharge when Hit "}c["12% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["100% increased Mine Arming Speed"]={{}," Arming Speed "}c["20% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["20% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=20}},nil}c["Minions have 5% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=5}}}},nil}c["You are Unaffected by Bleeding while Leeching"]={nil,"You are Unaffected by Bleeding while Leeching "}c["2% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=2}},nil}c["6% increased Attack Speed with Axes"]={{[1]={flags=65541,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["25% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=25}},nil}c["Socketed Gems are Supported by level 20 Spell Totem"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportSpellTotem"}}},nil}c["Deals 450 Chaos Damage per second to nearby Enemies You take 450 Chaos Damage per second for 10 seconds on Kill"]={nil,"Deals 450 Chaos Damage per second to nearby Enemies You take 450 Chaos Damage per second for 10 seconds on Kill "}c["Poison Cursed Enemies on hit"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil}c["Adds 98 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=140}},nil}c["+25 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=25}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of Life when you gain Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of Life when you gain Adrenaline "}c["Gain 10% of Wand Physical Damage as Extra Fire Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=10}},nil}c["25% chance to gain a Frenzy Charge on Kill 80% increased Damage while you have no Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",threshold=0,type="StatThreshold",upper=true},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=25}}," to gain aCharge on Kill 80% increased "}c["With at least 40 Intelligence in Radius, Cold Snap has a 50% chance to grant a Power Charge on Kill"]={nil,"With at least 40 Intelligence in Radius, Cold Snap has a 50% chance to grant a Power Charge on Kill "}c["12% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=12}},nil}c["Gems Socketed in Blue Sockets gain 25% increased Experience Has no Attribute Requirements"]={nil,"Gems Socketed in Blue Sockets gain 25% increased Experience Has no Attribute Requirements "}c["Minions have 4% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=4}}}},nil}c["0.2% of Damage Leeched as Life per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.2}},nil}c["Minions have 30% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=30}}}},nil}c["8% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=8}},nil}c["When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield"]={nil,"lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating 10% increased Movement Speed while you have Energy Shield "}c["10% chance to Dodge Spell Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["100% chance to Taunt on Hit 6% reduced Damage taken if you've Taunted an Enemy Recently Regenerate 2% of Life per second if you've Taunted an Enemy Recently Enemies Taunted by you deal 10% less Damage with Hits and\nAilments against other targets"]={{[1]={[1]={type="Condition",var="TauntedEnemyRecently"},[2]={type="Condition",var="TauntedEnemyRecently"},flags=0,keywordFlags=262144,name="DamageTaken",type="BASE",value=100}}," to Taunt on Hit 6% reduced Regenerate 2% of Life per second Enemies Taunted by you deal 10% less Damage and\nAilments against other targets "}c["20% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=20}},nil}c["Channelling Skills deal 15% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["Projectile Attack Hits deal up to 30% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther"]={{[1]={flags=0,keywordFlags=0,name="PointBlank",type="FLAG",value=true}},nil}c["Damage Penetrates 15% of Fire Resistance if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},nil}c["Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth"]={nil,"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth "}c["15% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-15}},nil}c["Adds 25 to 35 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=35}},nil}c["20% chance to double Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=20}}," to double "}c["Energy Shield Recharge is not interrupted by Damage if Recharge began Recently 50% less Energy Shield Regeneration Rate 50% less Maximum total Recovery per Second from Energy Shield Leech"]={nil,"Energy Shield Recharge is not interrupted by Damage if Recharge began Recently 50% less Energy Shield Regeneration Rate 50% less Maximum total Recovery per Second from Energy Shield Leech "}c["+2 to Melee Weapon and Unarmed range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="UnarmedRange",type="BASE",value=2}},nil}c["If you've Blocked in the past 10 seconds, you"]={nil,"If you've Blocked in the past 10 seconds, you "}c["21% increased maximum Life, Mana and Global Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Life",type="INC",value=21}}," , Mana and Energy Shield "}c["1% of maximum Mana gained on Kill Removes 1% of maximum Life on Kill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}}," gained on Kill Removes 1% of maximum Life on Kill "}c["15% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["If you've Cast a Spell Recently, you"]={nil,"If you've Cast a Spell Recently, you "}c["You have Phasing while affected by Haste"]={{[1]={[1]={type="Condition",var="AffectedByHaste"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["8% increased Effect of non-Damaging Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=8},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=8},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=8}},nil}c["With at least 40 Dexterity in Radius, Dual Strike has a 20% chance"]={nil,"With at least 40 Dexterity in Radius, Dual Strike has a 20% chance "}c["20% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=20}},nil}c["Adds 7 to 10 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit 10% chance to gain Elusive on Kill"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge 40% chance 10% chance to gain Elusive on Kill "}c["20% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["Reflects 10 Cold Damage to Melee Attackers"]={nil,"Reflects 10 Cold Damage to Melee Attackers "}c["Attack Skills deal 10% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=10}},nil}c["+65 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=65}},nil}c["You gain Onslaught for 4 seconds on Critical Strike"]={nil,"You gain Onslaught for 4 seconds on Critical Strike "}c["30% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=30}},nil}c["40% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["Damage with Weapons Penetrates 8% Cold Resistance"]={{[1]={flags=8192,keywordFlags=0,name="ColdPenetration",type="BASE",value=8}},nil}c["40% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=40}},nil}c["5% chance to Avoid Lightning Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=5}}," to Avoid from Hits "}c["+10% to all Elemental Resistances and maximum Elemental Resistances while affected by a Non-Vaal Guard Skill"]={{[1]={flags=0,keywordFlags=256,name="ElementalResist",type="BASE",value=10}}," and maximum Elemental Resistances while affected by a Non- Guard Skill "}c["Damage Penetrates 15% Fire Resistance while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},nil}c["8% increased Physical Damage for each time you've Blocked in the past 10 seconds 80% increased Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds +1% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds"]={{[1]={[1]={type="Condition",var="BlockedHitFromUniqueEnemyInPast10Sec"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}}," for each time you've Blocked in the past 10 seconds 80% increased Physical Damage +1% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds "}c["15% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=15}},nil}c["8% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=8}},nil}c["Chaos Damage does not bypass Energy Shield during effect"]={nil,"Chaos Damage does not bypass Energy Shield during effect "}c["33% of Physical Damage Converted to Lightning Damage while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=33}},nil}c["4% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=4}},nil}c["+30 Life gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=30}},nil}c["45% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=45}},nil}c["1% of Damage Leeched as Mana against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=262144,name="DamageManaLeech",type="BASE",value=1}},nil}c["+50% Chance to Block Attack Damage for 2 seconds every 5 seconds"]={{[1]={[1]={type="Condition",var="BastionOfHopeActive"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=50}},nil}c["Adds 6 to 12 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=6},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=12}},nil}c["4% increased Melee Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=256,keywordFlags=0,name="Damage",type="INC",value=4}},nil}c["50% increased Critical Strike Chance with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["25% chance to gain a Siphoning Charge when you use a Skill Adds 14 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=2,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to gain a Siphoning Charge when you use a Skill Adds 14 to 16 to Attacks and s "}c["30 Life gained for each Enemy Hit while affected by Vitality"]={nil,"30 Life gained for each Enemy Hit while affected by Vitality "}c["10% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffech",type="INC",value=10}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies 30% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies 30% increased Damage with Hits and Ailments against Blinded Enemies "}c["Gain 10% of Wand Physical Damage as Extra Chaos Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=10}},nil}c["Immune to Shock while affected by Purity of Lightning 10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning"]={nil,"Immune to Shock while affected by Purity of Lightning 10% of Physical Damage taken as Lightning Damage while affected by Purity of Lightning "}c["Minions have 12% increased Attack and Cast Speed if you or your Minions have Killed Recently 30% increased Minion Damage if you've used a Minion Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="UsedMinionSkillRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=12}}}}," if you or your Minions have Killed Recently 30% increased Minion Damage "}c["Recover 1% of Maximum Life on Kill"]={nil,"Recover 1% of Maximum Life on Kill "}c["Attacks with Two Handed Melee Weapons deal 25% increased Damage with Ailments"]={{[1]={flags=301991936,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["100% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=100}},nil}c["8% increased Effect of Flasks on you"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}},nil}c["Gain a Void Charge every 0.5 seconds Elder Item"]={nil,"Gain a Void Charge every 0.5 seconds Elder Item "}c["40% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["Minions deal 50% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=50}}}},nil}c["Staff Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=2097152,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["Minions have 10% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil}c["Summoned Skeletons have 30% of Physical Damage Converted to Chaos Damage"]={nil,"Summoned Skeletons have 30% of Physical Damage Converted to Chaos Damage "}c["Bow Skills have 25% increased Area of Effect"]={nil,"Bow Skills have 25% increased Area of Effect "}c["Recover 3% of Energy Shield when you lose a Spirit Charge"]={nil,"Recover 3% of Energy Shield when you lose a Spirit Charge "}c["1% increased Maximum Life per Abyss Jewel affecting you"]={{[1]={[1]={type="Multiplier",var="AbyssJewel"},flags=0,keywordFlags=0,name="Life",type="INC",value=1}},nil}c["Adds 98 to 121 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=121}},nil}c["12% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=12}},nil}c["15% reduced Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=-15}},nil}c["Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing"]={nil,"Immune to Elemental Ailments while Phasing 10% chance to Dodge Spell Hits while Phasing "}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit 10% increased Movement Speed if you've Killed Recently Damage from your Critical Strikes cannot be Reflected"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge 40% chance 10% increased Movement Speed Damage from your Critical Strikes cannot be Reflected "}c["When hit, 10% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=10}},nil}c["0.2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.2}},nil}c["20% increased Damage while you have a Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," while you have a Summoned "}c["You and Allies affected by your Aura Skills deal 30% increased Damage You and Allies affected by your Aura Skills have +20% to all Elemental Resistances"]={nil,"You and Allies affected by your Aura Skills deal 30% increased Damage You and Allies affected by your Aura Skills have +20% to all Elemental Resistances "}c["24% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=24}},nil}c["+23 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=23}},nil}c["Poison you inflict is Reflected to you"]={nil,"Poison you inflict is Reflected to you "}c["You take Chaos Damage instead of Physical Damage from Bleeding"]={nil,"You take Chaos Damage instead of Physical Damage from Bleeding "}c["10% chance to gain Unholy Might on block for 3 seconds +5% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}," to gain Unholy Might on block for 3 seconds +5% Chance "}c["15% increased Damage with Ailments from Attack Skills while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["6% chance to Avoid Cold Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="BASE",value=6}}," to Avoid from Hits "}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 20% increased Attack Speed 15% chance to deal Double Damage if you've Warcried in the past 8 seconds"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration 100% increased Warcry Cooldown Recovery Speed If you've Warcried Recently, you and nearby allies\nhave 20% increased Attack Speed 15% chance to deal Double Damage if you've Warcried in the past 8 seconds "}c["60% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs"]={{[1]={[1]={actor="enemy",threshold=3,type="MultiplierThreshold",var="Spider's WebStack"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=60}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour Skills used by Totems have a 20% chance to Taunt on Hit "}c["Minions have +5% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=5}}}},nil}c["30% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=30}},nil}c["20% increased Raised Zombie Size"]={{}," Size "}c["Attacks with One Handed Melee Weapons deal 25% increased Damage with Ailments"]={{[1]={flags=167774208,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["140% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=140}},nil}c["Auras from your Skills grant 0.2% of Maximum Life Regenerated per second to"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}}}}," to "}c["8% chance to gain a Power, Frenzy or Endurance Charge on Kill"]={{}," to gain a Power,or Endurance Charge on Kill "}c["10% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed"]={{[1]={flags=2,keywordFlags=0,name="MovementSpeed",type="BASE",value=10}}," to Hinder Enemies on Hit , with 30% reduced "}c["+70 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=70}},nil}c["Socketed Gems are Supported by level 15 Added Chaos Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportAddedChaosDamage"}}},nil}c["Purity of Fire has 30% increased Aura Effect"]={{[1]={[1]={skillName="Purity of Fire",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["Golems have 20% increased Maximum Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=20}}}},nil}c["Golem Skills have 30% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=30}},nil}c["+11 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=11}},nil}c["15% increased Area of Effect if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}c["Gain 75% increased Area of Effect for 5 seconds"]={{[1]={[1]={type="Condition",var="PendulumOfDestructionAreaOfEffect"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=75}},nil}c["-8% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-8}},nil}c["Right ring slot: 40% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-40}}," Reflected "}c["10% increased Area of Effect if you've Killed at least 5 Enemies Recently"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," if you've Killed at least 5 Enemies Recently "}c["+18% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=18}},nil}c["20% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=20}},nil}c["20% increased Golem Damage per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," per Summoned Golem "}c["25% increased Quantity of Items Dropped by Slain Frozen enemies 15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies 15% increased Quantity of Items Dropped by Slain Frozen Enemies "}c["Gain 2 Grasping Vines each second while stationary"]={nil,"Gain 2 Grasping Vines each second while stationary "}c["80% increased Critical Strike Chance during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil}c["Enemies Cannot Leech Life From you"]={nil,"Enemies Cannot Leech Life From you "}c["0.2% of Physical Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0.2}},nil}c["Gain 2 Grasping Vines each second while stationary 2% chance to deal Double Damage per Grasping Vine"]={nil,"Gain 2 Grasping Vines each second while stationary 2% chance to deal Double Damage per Grasping Vine "}c["50% reduced Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=-50}},nil}c["10% chance to Fortify on Melee hit"]={{}," to Fortify "}c["5% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=5}},nil}c["Adds 115 to 205 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=115},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=205}},nil}c["When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you and your Totems to each gain an Endurance Charge 6% increased Fire Damage per Endurance Charge "}c["Adds 175 to 205 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=175},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=205}},nil}c["With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a Nova With at least 40 Dexterity in Radius, Ethereal Knives fires 10 additional Projectiles"]={nil,"With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a Nova With at least 40 Dexterity in Radius, Ethereal Knives fires 10 additional Projectiles "}c["5% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=5},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["7% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=7}},nil}c["15% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["35% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=35}},nil}c["3% chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil}c["+7% Base Unarmed Critical Strike Chance"]={{[1]={flags=16777220,keywordFlags=0,name="CritChance",type="BASE",value=7}},nil}c["30% increased Mana Regeneration Rate if you've Hit a Cursed Enemy Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},[2]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 50% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="BASE",value=15},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="BASE",value=15},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 50% increased "}c["+280 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=280}},nil}c["Minions have +15% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}}}},nil}c["40% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other 10% chance to gain a Power, Frenzy or Endurance Charge on Hit "}c["+18% to Quality"]={{}," Quality "}c["Chills from your Hits always reduce Action Speed by at least 10%"]={nil,"Chills from your Hits always reduce Action Speed by at least 10% "}c["When you Kill an Enemy, for each Curse on that Enemy, gain 8%"]={nil,"When you Kill an Enemy, for each Curse on that Enemy, gain 8% "}c["25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life 20% chance to Impale Enemies on Hit with Attacks You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=65536,name="Life",type="BASE",value=25}}," to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full 20% chance to Impale Enemies on Hit You and nearby Allies have 8% increased Movement Speed "}c["Minions have 3% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=3}}}},nil}c["Gain 110% of Bow Physical Damage as Extra Damage of an Element Gain 100% of Bow Physical Damage as Extra Damage of an Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=110}}," Bow as Extra Damage of an Element Gain 100% of Bow Physical Damage as Extra Damage of an Element "}c["140% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=140}},nil}c["Attack Skills deal 12% increased Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["You have Phasing while you have Cat's Stealth"]={{[1]={[1]={type="Condition",var="AffectedByCat'sStealth"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["30% increased Damage with Ailments from Attack Skills"]={{[1]={flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["Minions Regenerate 2% Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}}}},nil}c["40% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-40}},nil}c["You gain Onslaught for 2 seconds on Critical Strike You gain Onslaught for 4 seconds on Critical Strike"]={nil,"You gain Onslaught for 2 seconds on Critical Strike You gain Onslaught for 4 seconds on Critical Strike "}c["Adds 80 to 375 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=80},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=375}},nil}c["Axe Attacks deal 14% increased Damage with Ailments"]={{[1]={flags=67584,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["Can Allocate Passives from the Templar's starting point"]={{},nil}c["Adds 450 to 575 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=450},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=575}},nil}c["10% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=10}},nil}c["+40% to Critical Strike Multiplier if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil}c["Axe Attacks deal 20% increased Damage with Ailments"]={{[1]={flags=67584,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Adds 1 to 4 Physical Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=1},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=4}},nil}c["Poisons you inflict deal Damage 5% faster"]={{[1]={flags=0,keywordFlags=0,name="PoisonFaster",type="INC",value=5}},nil}c["+12% to Critical Strike Multiplier with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["You gain Onslaught for 2 seconds on Critical Strike"]={nil,"You gain Onslaught for 2 seconds on Critical Strike "}c["Hits can't be Evaded"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil}c["Stun Threshold is based on 500% of your Mana instead of Life"]={nil,"Stun Threshold is based on 500% of your Mana instead of Life "}c["+25% chance to be Poisoned +3% to all maximum Resistances while Poisoned"]={{[1]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=25},[2]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=25}}," to be Poisoned +3% to "}c["350% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=350}},nil}c["10% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=10}},nil}c["10% increased Elemental Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil}c["12% increased Accuracy Rating with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["Commissioned 160000 coins to commemorate Cadiro Passives in radius are Conquered by the Eternal Empire"]={nil,"Commissioned 160000 coins to commemorate Cadiro Passives in radius are Conquered by the Eternal Empire "}c["20% chance to Recover 10% of Mana when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," to Recover 10% of when you use a Skill 6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana "}c["Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SupportSummonGhostOnKill"}}},nil}c["20% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["90% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=90}},nil}c["10% chance to gain a Power Charge on Critical Strike 20% chance to gain a Power Charge on Non-Critical Strike +1 to Maximum Power Charges"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=10}}," to gain a Power Charge 20% chance to gain a Power Charge on Non-Critical Strike +1 to "}c["40% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40}},nil}c["18% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=18}},nil}c["70% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=70}},nil}c["+3% chance to Evade Attacks"]={{[1]={flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=3}},nil}c["Totems' Action Speed cannot be modified to below base value"]={nil,"Totems' Action Speed cannot be modified to below base value "}c["Adds 27 to 37 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=27},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=37}},nil}c["Left ring slot: You cannot Recharge or Regenerate Energy Shield"]={nil,"You cannot Recharge or Regenerate Energy Shield "}c["Adds 40 to 70 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=40},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=70}},nil}c["Adds 20 to 30 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=30}},nil}c["Socketed Gems are Supported by level 10 Added Fire Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportAddedFireDamage"}}},nil}c["Grants Level 20 Bone Armour Skill 1% additional Physical Damage Reduction per Minion, up to 10%"]={nil,nil}c["19% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=19}},nil}c["Poisons you inflict during any Flask Effect have 40% chance to deal 100% more Damage"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=1048576,name="Damage",type="MORE",value=40}},nil}c["10% reduced Mana Reserved"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-10}},nil}c["Skills used by Totems have a 20% chance to Taunt on Hit"]={nil,"Skills used by Totems have a 20% chance to Taunt on Hit "}c["Totems have 10% additional Physical Damage Reduction Brand Skills have 10% increased Duration"]={nil,"Totems have 10% additional Physical Damage Reduction Brand Skills have 10% increased Duration "}c["8% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=8},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=8},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=8}},nil}c["Totems are Immune to Fire Damage Totems have 50% of your Armour"]={nil,"Totems are Immune to Fire Damage Totems have 50% of your Armour "}c["During Flask Effect, Damage Penetrates 13% Resistance of each Element for which your Uncapped Elemental Resistance is highest"]={{[1]={[1]={stat="LightningResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},[2]={stat="LightningResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=13},[2]={[1]={stat="ColdResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="ColdResistTotal",thresholdStat="FireResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=13},[3]={[1]={stat="FireResistTotal",thresholdStat="LightningResistTotal",type="StatThreshold"},[2]={stat="FireResistTotal",thresholdStat="ColdResistTotal",type="StatThreshold"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=13}},nil}c["Bow Attacks have 15% chance to cause Bleeding"]={{[1]={flags=131072,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil}c["Claw Attacks deal 16% increased Damage with Hits and Ailments"]={{[1]={flags=262144,keywordFlags=786432,name="Damage",type="INC",value=16}},nil}c["10% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=10},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=10}},nil}c["10% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit "}c["Adds 85 to 160 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=85},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=160}},nil}c["70% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=70}},nil}c["10% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=10}},nil}c["2% increased Attack Speed with Maces"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["Regenerate 1.5% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.5}},nil}c["15% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Consecrated Ground you create grants Immunity to Elemental Ailments"]={nil,"Consecrated Ground you create grants Immunity to Elemental Ailments "}c["Increases and Reductions to Spell Damage also apply to Attacks while wielding a Wand"]={nil,"Increases and Reductions to Spell Damage also apply to Attacks while wielding a Wand "}c["30% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["5% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=5}},nil}c["50% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-50}},nil}c["Curse Skills have 15% increased Skill Effect Duration"]={{[1]={[1]={skillType=32,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil}c["5% increased Movement Speed if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}},nil}c["20% increased Golem Damage per Summoned Golem 35% chance to Avoid Elemental Ailments per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," per Summoned Golem 35% chance to Avoid Elemental Ailments per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem "}c["You lose Virulence 30% slower"]={nil,"You lose Virulence 30% slower "}c["Damage with Weapons Penetrates 8% Lightning Resistance"]={{[1]={flags=8192,keywordFlags=0,name="LightningPenetration",type="BASE",value=8}},nil}c["+6% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=6}},nil}c["100% increased Blink Arrow and Mirror Arrow Cooldown Recovery Speed"]={{[1]={[1]={skillNameList={[1]="Blink Arrow",[2]="Mirror Arrow"},type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=100}},nil}c["20% increased Stun Duration with Bows on Enemies"]={{[1]={flags=131076,keywordFlags=0,name="EnemyStunDuration",type="INC",value=20}},nil}c["50% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=50}},nil}c["Consumes Frenzy Charges on use Gain Onslaught for 1 second per Frenzy Charge on use"]={nil,"Consumes Frenzy Charges on use Gain Onslaught for 1 second per Frenzy Charge on use "}c["With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a Nova"]={nil,"With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a Nova "}c["60% increased Spell Damage while no Mana is Reserved"]={{[1]={[1]={stat="ManaReserved",threshold=0,type="StatThreshold",upper=true},flags=2,keywordFlags=0,name="Damage",type="INC",value=60}},nil}c["10% increased Movement Speed if you've Hit with your Off Hand Weapon Recently"]={{[1]={flags=8192,keywordFlags=0,name="MovementSpeed",type="INC",value=10}}," if you've Hit with your Off Hand Recently "}c["Trigger level 20 Storm Cascade when you Attack"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="StormCascadeTriggered"}}},nil}c["15% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=15}},nil}c["Your Counterattacks deal Double Damage"]={nil,"Your Counterattacks deal Double Damage "}c["10% increased Effect of Auras on You for each Herald affecting you"]={{[1]={flags=0,keywordFlags=0,name="AuraEffectOnSelf",type="INC",value=10}}," for each Herald affecting you "}c["+1000 to Armour and Evasion Rating while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="BASE",value=1000}},nil}c["Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={nil,"Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill 70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently "}c["10% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=10}},nil}c["Adds 8 to 36 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=36}},nil}c["+450 to Accuracy Rating while at Maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=450}},nil}c["Base Critical Strike Chance for Attacks with Weapons is 7.5%"]={{[1]={flags=0,keywordFlags=0,name="WeaponBaseCritChance",type="OVERRIDE",value=7.5}},nil}c["6% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["Unaffected by Conductivity while affected by Purity of Lightning Unaffected by Shocked Ground while affected by Purity of Lightning"]={nil,"Unaffected by Conductivity while affected by Purity of Lightning Unaffected by Shocked Ground while affected by Purity of Lightning "}c["10% reduced Reflected Elemental Damage taken Damage with Weapons Penetrates 5% Elemental Resistance"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-10}}," Reflected Damage Penetrates 5% Elemental Resistance "}c["3% increased Attack Speed with Staves"]={{[1]={flags=2097157,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["0.2% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.2}},nil}c["20% chance to gain a Power Charge on Non-Critical Strike"]={{}," to gain a Power Charge on Non-Critical Strike "}c["10% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["70% increased Attack Damage if your other Ring is a Shaper Item"]={{[1]={[1]={type="Condition",var="ShaperItemInRing {OtherSlotNum}"},flags=1,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["Adds 5 to 8 Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},nil}c["Reflects 4 Physical Damage to Melee Attackers"]={{},nil}c["Totems gain +16% to all Elemental Resistances"]={nil,"Totems gain +16% to all Elemental Resistances "}c["15% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["10% Chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee "}c["+45% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=45}},nil}c["70% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=70}},nil}c["Unaffected by Poison"]={nil,"Unaffected by Poison "}c["Purity of Ice has 30% increased Aura Effect"]={{[1]={[1]={skillName="Purity of Ice",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["Moving while Bleeding doesn't cause Minions to take extra Damage"]={nil,"Moving while Bleeding doesn't cause Minions to take extra Damage "}c["3% reduced Damage taken per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-3}}," per Ghost Shroud Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 "}c["Adds 29 to 39 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=29},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=39}},nil}c["20% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["Adds 90 to 240 Lightning Damage to Spells while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=90},[2]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=240}},nil}c["Adds 32 to 42 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=32},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=42}},nil}c["Cannot be Stunned if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=100}},nil}c["20% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," applied to s "}c["+2 to maximum number of Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=2}},nil}c["5% increased Poison Duration for each Poison you have inflicted Recently"]={{[1]={[1]={type="Multiplier",var="PoisonAppliedRecently"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=5}},nil}c["You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned"]={nil,"You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned "}c["40% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=40}},nil}c["Cannot be Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChill",type="BASE",value=100}},nil}c["Damage penetrates 25% Fire Resistance while affected by Herald of Ash"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAsh"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=25}},nil}c["12% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=12}},nil}c["Reflects 200 to 250 Physical Damage to Attackers on Block Reflects 240 to 300 Physical Damage to Attackers on Block"]={nil,"Reflects 200 to 250 Physical Damage to Attackers on Block Reflects 240 to 300 Physical Damage to Attackers on Block "}c["Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect 80% increased Critical Strike Chance during Flask Effect"]={nil,"Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect 80% increased Critical Strike Chance during Flask Effect "}c["12% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=12}},nil}c["When you place a Banner, you and nearby Allies recover 0.5% of Life for"]={nil,"When you place a Banner, you and nearby Allies recover 0.5% of Life for "}c["Your Elemental Golems are Immune to Elemental Damage"]={nil,"Your Elemental Golems are Immune to Elemental Damage "}c["Minions have +5% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}}}},nil}c["+2% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil}c["+1 to Level of all Lightning Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keywordList={[1]="spell",[2]="lightning",[3]="active_skill"},value=1}}},nil}c["1% additional Physical Damage Reduction per Summoned Sentinel of Purity You lose Virulence 30% slower Minions deal 20% increased Damage while you are affected by a Herald"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Summoned Sentinel of Purity You lose Virulence 30% slower Minions deal 20% increased Damage while you are affected by a Herald "}c["30% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil}c["Commanded leadership over 18000 warriors under Kaom"]={nil,"Commanded leadership over 18000 warriors under Kaom "}c["60% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=60}},nil}c["+1000 Evasion Rating while you have Tailwind"]={{[1]={[1]={type="Condition",var="Tailwind"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=1000}},nil}c["Your Chaos Damage has 60% chance to Poison Enemies"]={{[1]={flags=0,keywordFlags=0,name="ChaosPoisonChance",type="BASE",value=60}},nil}c["Commissioned 160000 coins to commemorate Cadiro"]={nil,"Commissioned 160000 coins to commemorate Cadiro "}c["20% increased Attack and Cast Speed while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Timeless Jewel League: Legion"]={nil,"Timeless Jewel League: Legion "}c["20% increased Brand Attachment range"]={{}," Brand Attachment range "}c["23% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=23}},nil}c["100% increased Global Critical Strike Chance if you've Summoned a Totem Recently"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="SummonedTotemRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil}c["Totems are Immune to Fire Damage"]={nil,"Totems are Immune to Fire Damage "}c["20% increased Damage if you've Killed a Cursed Enemy Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Projectiles Fork"]={nil,"Projectiles Fork "}c["Adds 6 to 12 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=6},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=12}},nil}c["180% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=180}},nil}c["-10% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=-10},[2]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=-10}},nil}c["18% increased Accuracy Rating while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=18}},nil}c["Discipline has 30% increased Aura Effect"]={{[1]={[1]={skillName="Discipline",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=30}},nil}c["+10 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10}},nil}c["+4 Accuracy Rating per 2 Intelligence"]={{[1]={[1]={div=2,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=4}},nil}c["Socketed Gems are Supported by level 10 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportFasterAttack"}}},nil}c["Totems gain +10% to all Elemental Resistances 10% increased Brand Attachment range"]={nil,"Totems gain +10% to all Elemental Resistances 10% increased Brand Attachment range "}c["+2% Chance to Block Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["3% of Life Regenerated per second during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil}c["10% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=10}},nil}c["3% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["20% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Shock nearby Enemies for 4 Seconds when you Focus"]={nil,"Shock nearby Enemies for 4 Seconds when you Focus "}c["10% less Mana Reservation of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="MORE",value=-10}},nil}c["Damage Penetrates 8% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=8}},nil}c["30% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=30}},nil}c["Adds 10 to 38 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=38}},nil}c["You count as Dual Wielding while you are Unencumbered"]={nil,"You count as Dual Wielding while you are Unencumbered "}c["8% increased Accuracy Rating with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["225% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=225}},nil}c["Consecrated Ground created during Effect applies 9% increased Damage taken to Enemies"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=9}}}},nil}c["Attack Skills deal 25% increased Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=25}},nil}c["Recover 2% of Maximum Life on Kill"]={nil,"Recover 2% of Maximum Life on Kill "}c["50% increased Attack Damage with Main Hand"]={{[1]={[1]={type="Condition",var="MainHandAttack"},flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["12% increased Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},"Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["10% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}},nil}c["17% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=17}},nil}c["Adds 20 to 30 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=20},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=30}},nil}c["-10 Physical Damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-10}}," from Hits "}c["1% increased Damage per 5 of your lowest Attribute"]={{[1]={[1]={div=5,stat="LowestAttribute",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=1}},nil}c["+10 Life gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}},nil}c["50% increased Mine Arming Speed Skills which Place Mines place up to 1 additional Mine if you have at least 500 Dexterity"]={{}," Arming Speed Skills which Place Mines place up to 1 additional Mine "}c["25% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=25}},nil}c["Gain Immunity to Physical Damage for 1.5 seconds on Rampage"]={nil,"Gain Immunity to Physical Damage for 1.5 seconds on Rampage "}c["You grant 6 Frenzy Charges to allies on Death"]={nil,"You grant 6 Frenzy Charges to allies on Death "}c["25% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second if you've been Hit Recently"]={{}," that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges Gain an Endurance Charge every second "}c["Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton 100% increased Skeleton Movement Speed "}c["Recover 3% of Mana when you Kill an Enemy during Flask Effect Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect"]={nil,"Recover 3% of Mana when you Kill an Enemy during Flask Effect Recover 3% of Energy Shield when you Kill an Enemy during Flask Effect "}c["You cannot be Shocked for 3 seconds after being Shocked"]={nil,"You cannot be Shocked for 3 seconds after being Shocked "}c["220% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=220}},nil}c["+1 second to Summon Skeleton Cooldown"]={{}," second to Summon Cooldown "}c["Attack Skills deal 15% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["25% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=25}},nil}c["You cannot be Frozen for 3 seconds after being Frozen You cannot be Ignited for 3 seconds after being Ignited"]={nil,"You cannot be Frozen for 3 seconds after being Frozen You cannot be Ignited for 3 seconds after being Ignited "}c["Sockets cannot be modified"]={nil,"Sockets cannot be modified "}c["20% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=20}},nil}c["60% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=60}},nil}c["+35% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=35}},nil}c["Recover 100 Life when your Trap is triggered by an Enemy Recover 50 Energy Shield when your Trap is triggered by an Enemy"]={nil,"Recover 100 Life when your Trap is triggered by an Enemy Recover 50 Energy Shield when your Trap is triggered by an Enemy "}c["+1 to maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil}c["Attack Skills deal 30% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["20% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}c["20% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["Staff Attacks deal 15% increased Damage with Hits and Ailments"]={{[1]={flags=2097152,keywordFlags=786432,name="Damage",type="INC",value=15}},nil}c["Lose 15 Life for each Enemy hit by your Spells Lose 25 Life for each Enemy hit by your Attacks"]={nil,"Lose 15 Life for each Enemy hit by your Spells Lose 25 Life for each Enemy hit by your Attacks "}c["Regenerate 1% of Life per Second for each Trap Triggered Recently, up to 10% per second"]={{[1]={[1]={limit=10,limitTotal=true,type="Multiplier",var="TrapTriggeredRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil}c["+2 Life Gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=2}},nil}c["Recharge began Recently"]={nil,"Recharge began Recently "}c["20% increased Damage for each Summoned Golem 25% increased Effect of Buffs granted by your Golems for each Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Summoned 25% increased Effect of Buffs granted by your Golems for each Summoned Golem "}c["Enemies near your Totems deal 8% less Damage"]={nil,"Enemies near your Totems deal 8% less Damage "}c["Recover 50% of your maximum Life on use Recover 75% of your maximum Life on use"]={nil,"Recover 50% of your maximum Life on use Recover 75% of your maximum Life on use "}c["15% increased Damage with Ailments from Attack Skills while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=15}},nil}c["18% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=18}},nil}c["Minions have +4% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}}}},nil}c["Minions Regenerate of 1% Life per second Minions have +10% to all Elemental Resistances"]={nil,"Regenerate of 1% Life per second Minions have +10% to all Elemental Resistances "}c["Damage Penetrates 6% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=6}},nil}c["15% increased Melee Physical Damage while you have Fortify"]={{[1]={[1]={type="Condition",var="Fortify"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["3% increased Area of Effect per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=3}},nil}c["If you've Warcried Recently, you and nearby allies have 10% increased Attack, Cast and Movement Speed"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=10}}},[2]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}}}},nil}c["13% increased Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=13}},nil}c["50% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["20% increased Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["1% additional Physical Damage Reduction per Minion, up to 10% 2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20%"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Minion, up to 10% 2% increased Recovery Rate of Life and Energy Shield per Minion, up to 20% "}c["Lightning Damage with Non-Critical Strikes is Lucky"]={nil,"Lightning Damage with Non-Critical Strikes is Lucky "}c["+30 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=30},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=30}},nil}c["+180 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=180}},nil}c["+60% to Fire Resistance while affected by Herald of Ash"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAsh"},flags=0,keywordFlags=0,name="FireResist",type="BASE",value=60}},nil}c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges"]={nil,"Nearby Enemies cannot gain Power, Frenzy or Endurance Charges "}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem"]={{}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a "}c["+13 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=13},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=13}},nil}c["20% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["Trigger Level 20 Glimpse of Eternity when Hit"]={nil,nil}c["4% additional Physical Damage Reduction while affected by a Guard Skill Buff"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}}," while affected by a Guard Skill Buff "}c["15% of Damage Taken from Hits is Leeched as Life during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="DamageTakenLifeLeech",type="BASE",value=15}}," from Hits "}c["+8% to Critical Strike Multiplier for each Mine Detonated"]={{[1]={flags=0,keywordFlags=8192,name="CritMultiplier",type="BASE",value=8}}," for each Detonated "}c["100% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=100}},nil}c["8% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=8}},nil}c["+35% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=35}},nil}c["+84 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=84}},nil}c["1% increased Cold Damage per 25 Dexterity"]={{[1]={[1]={div=25,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=1}},nil}c["Damage penetrates 25% Lightning Resistance while affected by Herald of Thunder"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofThunder"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=25}},nil}c["Attacks have 20% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=20}},nil}c["Lightning Skills have a 25% chance to apply Lightning Exposure on Hit"]={nil,"a 25% chance to apply Lightning Exposure on Hit "}c["Skills Supported by Unleash have 30% increased Seal gain frequency"]={nil,"Skills Supported by Unleash have 30% increased Seal gain frequency "}c["25% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=25}},nil}c["Uses both hand slots"]={nil,"Uses both hand slots "}c["Every 10 seconds, gain 70% of Physical Damage as Extra Fire Damage for 3 seconds"]={nil,"Every 10 seconds, gain 70% of Physical Damage as Extra Fire Damage for 3 seconds "}c["50% chance to Cause Bleeding on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["Socketed Gems are Supported by level 20 Elemental Proliferation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportElementalProliferation"}}},nil}c["25% increased Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Adds 140 to 285 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=140},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=285}},nil}c["to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds"]={nil,"to you and Allies 200 Energy Shield Regenerated per Second while on Consecrated Ground Effects of Consecrated Ground you create Linger for 4 seconds "}c["Raised Spectres, Raised Zombies, and Summoned Skeletons have +50% to Critical Strike Multiplier"]={nil,"Raised Spectres, Raised Zombies, and Summoned Skeletons have +50% to Critical Strike Multiplier "}c["10% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["18% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=18}},nil}c["150% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=150}},nil}c["8% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Gain Onslaught for 1 second per Frenzy Charge on use"]={nil,"Gain Onslaught for 1 second per Frenzy Charge on use "}c["Totems have 15% additional Physical Damage Reduction"]={nil,"Totems have 15% additional Physical Damage Reduction "}c["15% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil}c["Fractured item"]={nil,"Fractured item "}c["With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires Shard Projectiles when Chaining With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires 75% less Shard Projectiles"]={nil,"With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires Shard Projectiles when Chaining With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires 75% less Shard Projectiles "}c["10% increased Weapon Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=8192,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["4% increased Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="INC",value=4}},nil}c["You count as on Low Life while you are Cursed with Vulnerability"]={{[1]={[1]={type="Condition",var="AffectedByVulnerability"},flags=0,keywordFlags=0,name="Condition:LowLife",type="FLAG",value=true}},nil}c["Attacks used by Totems have 8% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=8}},nil}c["Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect"]={nil,"Immune to Elemental Ailments during any Flask Effect 40% increased Elemental Damage during any Flask Effect "}c["With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike cannot choose Fire With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike deal 50% less Fire Damage"]={nil,"With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike cannot choose Fire With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike deal 50% less Fire Damage "}c["50% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=50}},nil}c["Attacks have 10% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil}c["Fire Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=16,name="PoisonChance",type="BASE",value=20}},nil}c["1% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=1}},nil}c["10% chance that if you would gain a Crab Barrier, you instead gain up to your maximum number of Crab Barriers"]={{[1]={flags=0,keywordFlags=0,name="CrabBarriersMax",type="BASE",value=10}}," that if you would gain a Crab Barrier, you instead gain up to your "}c["Ignites you inflict deal Damage 15% faster"]={nil,"Ignites you inflict deal Damage 15% faster "}c["10% increased Accuracy Rating with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["10% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=10}},nil}c["Summoned Sentinels of Purity have 50% increased Area of Effect"]={nil,"Summoned Sentinels of Purity have 50% increased Area of Effect "}c["2 Enemy Writhing Worms escape the Flask when used 10% reduced Charges used"]={nil,"2 Enemy Writhing Worms escape the Flask when used 10% reduced Charges used "}c["Grants Level 25 Purity of Ice Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="ColdResistAura"}}},nil}c["180% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=180}},nil}c["25% chance to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy"]={{}," to gain an Endurance Charge when you gain a Power Charge 50% chance to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy "}c["Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=4},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=7}},nil}c["If you've Consumed a corpse Recently, you and your Minions have 30% increased Area of Effect"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30},[2]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}}}},nil}c["12% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=12}},nil}c["Iron Will"]={{[1]={flags=0,keywordFlags=0,name="IronWill",type="FLAG",value=true}},nil}c["70% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=70}},nil}c["Chaos Skills have 30% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=128,name="Duration",type="INC",value=30}},nil}c["+3% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=3}},nil}c["30% increased Damage if you have Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["2% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["0.2% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=0.2}},nil}c["Cannot be Stunned by Spells if your other Ring is a Shaper Item 20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"]={nil,"Cannot be Stunned by Spells if your other Ring is a Shaper Item 20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill "}c["8% Chance to Block Spells during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=8}},nil}c["You cannot be Ignited for 3 seconds after being Ignited You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Ignited for 3 seconds after being Ignited You cannot be Shocked for 1 second after being Shocked "}c["Summoned Skeletons' hits can't be Evaded"]={nil,"Summoned Skeletons' hits can't be Evaded "}c["170% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=170}},nil}c["6% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=6},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=6},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=6}},nil}c["Totems gain +20% to all Elemental Resistances"]={nil,"Totems gain +20% to all Elemental Resistances "}c["18% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=18}},nil}c["10% increased Mana Recovery Rate during Effect of any Mana Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=10}}," of any Mana Flask "}c["30% increased Critical Strike Chance with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["1% increased Melee Physical Damage per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=1}},nil}c["1% of maximum Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}}," gained on Kill "}c["10% chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee "}c["5% increased Spell Damage per 5% Chance to Block Attack Damage"]={{[1]={[1]={div=5,stat="BlockChance",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=5}},nil}c["+8% to Non-Ailment Chaos Damage over Time Multiplier +8% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=8}}," Non-Ailment +8% to Cold Damage over Time Multiplier "}c["Cannot Knock Enemies Back"]={{[1]={flags=0,keywordFlags=0,name="CannotKnockback",type="FLAG",value=true}},nil}c["Adds 2 to 45 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=2},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=45}},nil}c["250% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=250}},nil}c["25% chance to gain an Endurance Charge when you Stun an Enemy"]={{}," to gain an Endurance Charge when you Stun an Enemy "}c["5% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=5}},nil}c["With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires Shard Projectiles when Chaining"]={nil,"With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires Shard Projectiles when Chaining "}c["Remove an Ailment when you use a Flask if all Equipped Items are Elder Items"]={nil,"Remove an Ailment when you use a Flask if all Equipped Items are Elder Items "}c["+55 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=55}},nil}c["Claw Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=262144,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["12% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["+23% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=23}},nil}c["+90% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=90}},nil}c["Regenerate 2% of Energy Shield per second if you’ve Killed an Enemy Recently"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=2}}," if you’ve Killed an Enemy Recently "}c["Nearby Chilled Enemies deal 10% reduced Damage with Hits"]={nil,"Nearby Chilled Enemies deal 10% reduced Damage with Hits "}c["When you create a Banner, it gains 40% of the Stages of your placed Banner You and nearby Allies have 12% increased Movement Speed"]={nil,"When you create a Banner, it gains 40% of the Stages of your placed Banner You and nearby Allies have 12% increased Movement Speed "}c["Ignites you inflict spread to other Enemies within a Radius of 15"]={nil,"Ignites you inflict spread to other Enemies within a Radius of 15 "}c["Removes Bleeding when you use a Flask"]={nil,"Removes Bleeding when you use a Flask "}c["Adds 9 to 14 Chaos Damage for each Spider's Web on the Enemy"]={{[1]={[1]={actor="enemy",type="Multiplier",var="Spider's WebStack"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=9},[2]={[1]={actor="enemy",type="Multiplier",var="Spider's WebStack"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=14}},nil}c["20% increased Attack Speed when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["+80 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=80}},nil}c["20% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},[2]={type="Condition",var="UsedSkillRecently"},flags=0,keywordFlags=0,name="PhysicalDegen",type="BASE",value=150}},nil}c["do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"do not have Adrenaline Recover 25% of maximum Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["8% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=8}},nil}c["90% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=90}},nil}c["50% increased Elemental Ailment Duration on You"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=50}}," Elemental Ailment on You "}c["25% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=25}},nil}c["25% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["30% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=30}},nil}c["20% of Life Regenerated per Second while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=20}},nil}c["30% increased Totem Duration"]={{[1]={flags=0,keywordFlags=0,name="TotemDuration",type="INC",value=30}},nil}c["+5% to Damage over Time Multiplier for Poison per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=1048576,name="DotMultiplier",type="BASE",value=5}},nil}c["165% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=165}},nil}c["22% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=22}},nil}c["25% chance to inflict Brittle"]={{}," to inflict Brittle "}c["Enemies you kill are Shocked"]={nil,"Enemies you kill are Shocked "}c["1.2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1.2}},nil}c["Socketed Gems are Supported by level 18 Added Lightning Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportAddedLightningDamage"}}},nil}c["Gain 100 Life when an Endurance Charge expires or is consumed"]={nil,"Gain 100 Life when an Endurance Charge expires or is consumed "}c["Chill Enemy for 1 second when Hit"]={nil,"Chill Enemy for 1 second when Hit "}c["4% increased Cast Speed with Chaos Skills"]={{[1]={flags=16,keywordFlags=128,name="Speed",type="INC",value=4}},nil}c["150% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=150}},nil}c["50% increased Rarity of Items found during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=50}},nil}c["+3% to Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=3}},nil}c["25% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=25}},nil}c["Gain 5 Rage when you use a Warcry"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true},[2]={[1]={type="Condition",var="CanGainRage"},flags=0,keywordFlags=0,name="Dummy",type="DUMMY",value=1}},nil}c["Trigger Level 1 Abyssal Cry on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="AbyssalCry"}}},nil}c["Curses on Slain Enemies are transferred to a nearby Enemy"]={nil,"Curses on Slain Enemies are transferred to a nearby Enemy "}c["Recover 2% of Life on Kill"]={nil,"Recover 2% of Life on Kill "}c["20% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["Passives in radius are Conquered by the Maraketh"]={nil,"Passives in radius are Conquered by the Maraketh "}c["15% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=15}},nil}c["+2 to Maximum number of Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=2}},nil}c["+30% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=30}},nil}c["200% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=200}},nil}c["40% increased Mine Detonation Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MineDetonationAreaOfEffect",type="INC",value=40}},nil}c["Spell Skills deal no Damage"]={nil,"no Damage "}c["Adds 14 to 21 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=21}},nil}c["4% chance to deal Double Damage while wielding a Mace, Sceptre or Staff"]={{[1]={[1]={type="Condition",varList={[1]="UsingMace",[2]="UsingStaff"}},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=4}},nil}c["Minions have 25% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=25}}}},nil}c["Minions' Attacks deal 7 to 14 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=7}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=14}}}},nil}c["Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy"]={nil,"Kill Enemies that have 20% or lower Life when Hit by your Skills Gain 10% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy "}c["1% of Physical Attack Damage leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1}},nil}c["25% chance to gain an Endurance Charge each second while Channelling"]={{}," to gain an Endurance Charge each second "}c["20% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["10% chance to gain a Power Charge on Critical Strike 40% chance to Poison on Hit 10% chance to gain Elusive on Kill Damage from your Critical Strikes cannot be Reflected"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge 40% chance 10% chance to gain Elusive on Kill Damage from your Critical Strikes cannot be Reflected "}c["14% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=14}},nil}c["45% increased Aspect of the Spider Debuff Duration"]={{[1]={[1]={skillName="Aspect of the Spider",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=45}},nil}c["Adds 29 to 39 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=29},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=39}},nil}c["You lose all Endurance Charges when Hit"]={nil,"You lose all Endurance Charges when Hit "}c["+25% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil}c["30% increased Melee Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=256,keywordFlags=262144,name="Damage",type="INC",value=30}},nil}c["3% more Damage per Summoned Totem"]={{[1]={[1]={stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=3}},nil}c["15% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=15}},nil}c["Reflects 5 Physical Damage to Melee Attackers"]={{},nil}c["35% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=35}},nil}c["60 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=60}},nil}c["When you or your Totems Kill a Burning Enemy, 20% chance for you"]={nil,"When you or your Totems Kill a Burning Enemy, 20% chance for you "}c["200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},[2]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=200}},nil}c["Every 16 seconds you gain Elemental Overload for 8 seconds"]={nil,"Every 16 seconds you gain Elemental Overload for 8 seconds "}c["20% additional Chance to Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil}c["Enemies have -10% to Total Physical Damage Reduction against your Hits"]={{[1]={flags=0,keywordFlags=0,name="EnemyPhysicalDamageReduction",type="BASE",value=-10}},nil}c["50% increased Herald of Ice Damage"]={{[1]={[1]={skillName="Herald of Ice",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["Instant Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskInstantRecovery",type="BASE",value=100}},nil}c["Chill nearby Enemies when you Focus, causing 30% reduced Action Speed"]={nil,"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed "}c["22% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=22}},nil}c["Never deal Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="NeverCrit",type="FLAG",value=true}},nil}c["Adds 1 to 40 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=40}},nil}c["Adds 18 to 28 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=28}},nil}c["Socketed Gems are Supported by level 1 Cold Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportColdPenetration"}}},nil}c["30% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=30}},nil}c["Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating"]={nil,"Every 2 seconds, gain a Ghost Shroud, up to a maximum of 3 When Hit, lose a Ghost Shroud and Recover Energy Shield equal to 4% of your Evasion Rating "}c["Minions deal 60% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=60}}}},nil}c["6% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil}c["grant 100% increased Flask Charges"]={nil,"grant 100% increased Flask Charges "}c["100% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=100}},nil}c["15% reduced Skeleton Duration"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-15}},nil}c["10% chance to Dodge Spell Hits if you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=10}},nil}c["20% chance to Avoid Projectiles while Phasing You have Phasing if you've Killed Recently"]={{[1]={[1]={type="Condition",var="Phasing"},[2]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to Avoid You have Phasing "}c["100% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=100}},nil}c["Adds 6 to 13 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=13}},nil}c["You have Onslaught while not on Low Mana"]={{[1]={[1]={neg=true,type="Condition",var="LowMana"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["7% Global chance to Blind Enemies on hit +1 Mana gained on Kill per Level"]={nil,"7% Global chance to Blind Enemies on hit +1 Mana gained on Kill per Level "}c["+1 Mana gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=1}},nil}c["Trigger a Socketed Bow Skill when you Attack with a Bow 12% increased Attack Speed"]={nil,"Trigger a Socketed Bow Skill when you Attack with a Bow 12% increased Attack Speed "}c["You gain Onslaught for 3 seconds on Culling Strike Cannot be Chilled while you have Onslaught"]={nil,"You gain Onslaught for 3 seconds on Culling Strike Cannot be Chilled while you have Onslaught "}c["Adds 53 to 110 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=110}},nil}c["Adds 13 to 28 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=28}},nil}c["+1 Energy Shield gained on Kill per Level +1 to maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},[2]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}}," gained on Kill +1 to maximum Life "}c["Removes Bleeding when you use a Flask Gain a Flask Charge when you deal a Critical Strike"]={nil,"Removes Bleeding when you use a Flask Gain a Flask Charge when you deal a Critical Strike "}c["Socketed Gems are Supported by level 14 Spell Totem"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=14,skillId="SupportSpellTotem"}}},nil}c["30% chance to gain a Power Charge when you Stun"]={{}," to gain a Power Charge when you Stun "}c["1% increased Armour per 16 Strength when in Off Hand"]={{[1]={[1]={div=16,stat="Str",type="PerStat"},[2]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Armour",type="INC",value=1}},nil}c["17% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=17}},nil}c["Summon 2 additional Skeleton Warriors with Summon Skeleton +1 second to Summon Skeleton Cooldown"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton +1 second to Summon Skeleton Cooldown "}c["Gain 20% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=20}},nil}c["Bathed in the blood of 8000 sacrificed in the name of Doryani Passives in radius are Conquered by the Vaal"]={nil,"Bathed in the blood of 8000 sacrificed in the name of Doryani Passives in radius are Conquered by the Vaal "}c["Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies take 10% increased Elemental Damage"]={nil,"Immune to Elemental Ailments while on Consecrated Ground Nearby Enemies take 10% increased Elemental Damage "}c["Adds 60 to 120 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=120}},nil}c["40% increased Energy Shield from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil}c["Minions deal 35% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=35}}}},nil}c["Summoned Skeletons take 23% of their Maximum Life per second as Fire Damage"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={div=1,stat="Life",type="PerStat"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=0.23}}}},nil}c["25% increased Zombie Size"]={{}," Size "}c["Enemies killed by Zombies explode dealing 20% of their Maximum Life as Fire Damage Zombies deal 100% increased Physical Damage"]={nil,"Enemies killed by Zombies explode dealing 20% of their Maximum Life as Fire Damage Zombies deal 100% increased Physical Damage "}c["Chill Effect and Freeze duration on you is based on 100% of Energy Shield"]={nil,"Chill Effect and Freeze duration on you is based on 100% of Energy Shield "}c["20% increased Lightning Damage per 1% Lightning Resistance above 75%"]={{[1]={[1]={div=1,stat="LightningResistOver75",type="PerStat"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=20}},nil}c["Adds 56 to 78 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=56},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=78}},nil}c["25% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=25}},nil}c["Adds 30 to 58 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=58}},nil}c["16% increased Physical Weapon Damage per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=8192,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration"]={nil,"Recover 25% of Life and Mana when you use a Warcry 100% increased Warcry Duration "}c["80% increased Damage with Hits and Ailments against Hindered Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Hindered"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=80}},nil}c["40% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=40}},nil}c["+45% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=45}},nil}c["+26% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=26}},nil}c["Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit"]={nil,"Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit "}c["Non-Aura Curses you inflict are not removed from Dying Enemies"]={nil,"Non-Aura Curses you inflict are not removed from Dying Enemies "}c["14% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=14}},nil}c["10% chance to Cause Monsters to Flee Enemies you Shock have 30% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="BASE",value=10}}," to Cause Monsters to Flee Enemies you Shock have 30% reduced "}c["Enemies you Shock have 30% reduced Cast Speed Enemies you Shock have 20% reduced Movement Speed"]={nil,"Enemies you Shock have 30% reduced Cast Speed Enemies you Shock have 20% reduced Movement Speed "}c["Enemies you Shock have 20% reduced Movement Speed"]={nil,"Enemies you Shock have 20% reduced Movement Speed "}c["Adds 90 to 345 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=90},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=345}},nil}c["Minions have 40% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=40}}}},nil}c["1% additional Physical Damage Reduction per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}},nil}c["210% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=210}},nil}c["Adds 30 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=50}},nil}c["24% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=24}},nil}c["Regenerate 1.2% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.2}},nil}c["Adds 53 to 76 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=76}},nil}c["Totems gain +20% to all Elemental Resistances Totems have 15% additional Physical Damage Reduction"]={nil,"Totems gain +20% to all Elemental Resistances Totems have 15% additional Physical Damage Reduction "}c["Adds 15 to 35 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=35}},nil}c["Adds 36 to 360 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=36},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=360}},nil}c["+20 Mana gained when you Block +24 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," gained when you Block +24 Mana gained when you Block "}c["5% chance to Dodge Attack Hits from Cursed Enemies"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=5}}," from Cursed Enemies "}c["10% chance to Blind Enemies on Hit with Attacks 25% more Damage with Bleeding"]={{[1]={flags=0,keywordFlags=65536,name="Damage",type="BASE",value=10}}," to Blind Enemies on Hit 25% more with Bleeding "}c["45% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=45}},nil}c["13% reduced Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=-13}},nil}c["Your Maximum Resistances are 78%"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="OVERRIDE",value=78},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="OVERRIDE",value=78},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="OVERRIDE",value=78},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="OVERRIDE",value=78}},nil}c["+50 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=50}},nil}c["5% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=5}},nil}c["15% chance for your Flasks to not consume Charges"]={{}," for your Flasks to not consume Charges "}c["Adds 14 to 16 Physical Damage to Attacks and Spells per Siphoning Charge"]={{[1]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=196608,name="PhysicalMin",type="BASE",value=14},[2]={[1]={type="Multiplier",var="SiphoningCharge"},flags=0,keywordFlags=196608,name="PhysicalMax",type="BASE",value=16}},nil}c["Gain 40% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=40}},nil}c["Passives granting Lightning Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Lightning Resistance or all Elemental Resistances in Radius "}c["You have Culling Strike against Cursed Enemies"]={nil,"You have Culling Strike against Cursed Enemies "}c["Adds 96 to 118 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=96},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=118}},nil}c["Adds 70 to 350 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=350}},nil}c["Recover 50 Life when you Block"]={nil,"Recover 50 Life when you Block "}c["30% reduced Enemy Stun Threshold with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-30}},nil}c["8% increased Attack Speed with Axes"]={{[1]={flags=65541,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["Non-Aura Curses you inflict are not removed from Dying Enemies Enemies near Corpses affected by your Curses are Blinded"]={nil,"Non-Aura Curses you inflict are not removed from Dying Enemies Enemies near Corpses affected by your Curses are Blinded "}c["Damage with Weapons Penetrates 5% Elemental Resistance"]={{[1]={flags=8192,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil}c["+20 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["Minions have 10% increased Area of Effect if you used a Minion Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}}}," if you used a Minion Skill Recently "}c["Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 60% increased Damage to Ignited Enemies"]={nil,"Hits with this Weapon always inflict Elemental Ailments Hits with this Weapon deal 60% increased Damage to Ignited Enemies "}c["Skills Chain +1 times"]={{[1]={flags=0,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil}c["+2 to maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=2}},nil}c["Enemies Poisoned by you cannot Regenerate Life"]={nil,"Enemies Poisoned by you cannot Regenerate Life "}c["Dispels Elemental Ailments on Rampage"]={nil,"Dispels Elemental Ailments on Rampage "}c["Adds 5 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["25% increased Accuracy Rating with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Accuracy",type="INC",value=25}},nil}c["2% increased Spell Damage per 100 Maximum Mana, up to 40%"]={{[1]={[1]={div=100,limit=40,limitTotal=true,stat="Mana",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=2}},nil}c["You cannot be Shocked for 1 second after being Shocked"]={nil,"You cannot be Shocked for 1 second after being Shocked "}c["6% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=6}},nil}c["15% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},nil}c["You and nearby allies have 6% increased Attack, Cast and Movement Speed if you've Warcried Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=6}}},[2]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=6}}}},nil}c["15% increased Elemental Damage if you've Chilled an Enemy Recently 20% increased Elemental Damage if you've Ignited an Enemy Recently"]={{[1]={[1]={type="Condition",var="IgnitedEnemyRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=15}}," if you've Chilled an Enemy Recently 20% increased Elemental Damage "}c["3% increased Attack Speed with Daggers"]={{[1]={flags=524293,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["360% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=360}},nil}c["15% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=15}},nil}c["Minions gain 10% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=10}}}},nil}c["6% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=6}},nil}c["+10% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["20% increased Cold Damage per 1% Cold Resistance above 75%"]={{[1]={[1]={div=1,stat="ColdResistOver75",type="PerStat"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=20}},nil}c["Enemies Cannot Leech Life From You"]={nil,"Enemies Cannot Leech Life From You "}c["30% increased Trap Trigger Radius 60% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=30}}," Trigger 60% increased Trap Trigger Area of Effect "}c["15% increased Damage per Curse on you"]={{[1]={[1]={type="Multiplier",var="CurseOnSelf"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil}c["When you create a Banner, it gains 40% of the Stages of your placed Banner"]={nil,"When you create a Banner, it gains 40% of the Stages of your placed Banner "}c["If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1"]={nil,"If 4 Notables are Allocated in Radius, When you Kill a Rare monster, you gain 1 "}c["Life Leech effects are not removed at Full Life"]={nil,"Life Leech effects are not removed at Full Life "}c["50% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["5% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=167772165,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["Recover 1% of Maximum Life when you Ignite an Enemy 100% increased Melee Physical Damage against Ignited Enemies"]={nil,"Recover 1% of Maximum Life when you Ignite an Enemy 100% increased Melee Physical Damage against Ignited Enemies "}c["35% chance to Avoid Elemental Ailments per Summoned Golem 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=35},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=35},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=35}}," per Summoned 25% increased Effect of Buffs granted by your Golems per Summoned Golem +1 to maximum number of Golems "}c["Projectiles gain 20% of Non-Chaos Damage as extra Chaos Damage per Chain"]={{[1]={[1]={stat="Chain",type="PerStat"},flags=1024,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=20}},nil}c["Attacks Maim on Hit against Bleeding Enemies"]={nil,"Attacks Maim on Hit against Bleeding Enemies "}c["30% increased Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["Grants Summon Harbinger of Directions Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfDirections"}}},nil}c["1% increased Attack Speed per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil}c["1% increased Fire Damage per 20 Strength"]={{[1]={[1]={div=20,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=1}},nil}c["40% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=40}},nil}c["You are Shocked during Flask effect"]={nil,"You are Shocked during Flask effect "}c["You have Phasing during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["Action Speed cannot be modified to below base value"]={nil,"Action Speed cannot be modified to below base value "}c["+75% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=75}},nil}c["2% increased Energy Shield per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=2}},nil}c["Regenerate 15 Mana per Second while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=15}},nil}c["+24 Mana gained when you Block 20% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=24}}," gained when you Block 20% reduced Movement Speed "}c["+4% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=4}},nil}c["4% chance to Dodge Attack or Spell Hits if you've Hit an Enemy Recently"]={{}," to Dodge Attack or Hits "}c["4% chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["Passives granting Fire Resistance or all Elemental Resistances in Radius"]={nil,"Passives granting Fire Resistance or all Elemental Resistances in Radius "}c["When Hit, lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating"]={nil,"lose a Ghost Shroud and recover Energy Shield equal to 5% of your Evasion Rating "}c["Minions have +0% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=0}}}},nil}c["+9% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=9}},nil}c["Totems cannot be Stunned"]={nil,"Totems cannot be Stunned "}c["Adds 1 to 2 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=2}},nil}c["60% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=60}},nil}c["Adds an additional Arrow"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}c["Trigger Level 20 Glimpse of Eternity when Hit 150% increased Evasion and Energy Shield"]={nil,"Trigger Level 20 Glimpse of Eternity when Hit 150% increased Evasion and Energy Shield "}c["10% increased Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Axe or Sword Attacks deal 20% increased Damage with Ailments"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=2048,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["+24 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}c["1.5% of Fire Damage Leeched as Life while affected by Anger"]={{[1]={[1]={type="Condition",var="AffectedByAnger"},flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=1.5}},nil}c["5% increased Movement Speed if you've thrown a Trap or Mine Recently"]={{[1]={flags=0,keywordFlags=4096,name="MovementSpeed",type="INC",value=5}}," if you've thrown a or Mine Recently "}c["8% chance to Block Spells while affected by Discipline"]={{[1]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=8}},nil}c["If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage"]={nil,"If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage "}c["40% faster start of Energy Shield Recharge while affected by Discipline"]={{[1]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=40}},nil}c["Immune to Elemental Ailments during any Flask Effect"]={nil,"Immune to Elemental Ailments during any Flask Effect "}c["20% chance when Placing Mines to Place an additional Mine"]={{}," when Placing s to Place an additional Mine "}c["+150 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=150}},nil}c["Poisons you inflict deal Damage 10% faster"]={{[1]={flags=0,keywordFlags=0,name="PoisonFaster",type="INC",value=10}},nil}c["8% chance to Dodge Spells while affected by Haste"]={{[1]={[1]={type="Condition",var="AffectedByHaste"},flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=8}},nil}c["of their maximum Life as Chaos Damage."]={nil,"of their maximum Life as Chaos Damage. "}c["Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill"]={nil,"Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill Recover 4% of Maximum Mana on Kill "}c["400 Fire Damage taken per second per Endurance Charge if you've been Hit Recently"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},[2]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=400}},nil}c["5% increased Area of Effect per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["12% of Physical Damage taken as Fire Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=12}},nil}c["5% reduced Damage taken"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-5}},nil}c["8% increased Attack Speed with Staves"]={{[1]={flags=2097157,keywordFlags=0,name="Speed",type="INC",value=8}},nil}c["+35% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=35}},nil}c["10% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=10},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=10},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=10}},nil}c["60% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=60}},nil}c["40% increased Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=40}},nil}c["50% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}},nil}c["+24 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=24},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=24}},nil}c["Totems Reflect 15% of their maximum Life as Fire Damage to nearby Enemies when Hit"]={nil,"Totems Reflect 15% of their maximum Life as Fire Damage to nearby Enemies when Hit "}c["Unaffected by Shocked Ground while affected by Purity of Lightning 1.5% of Damage leeched as Life while affected by Vitality"]={nil,"Unaffected by Shocked Ground while affected by Purity of Lightning 1.5% of Damage leeched as Life while affected by Vitality "}c["25% increased Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="INC",value=25}},nil}c["1.5% of Lightning Damage is Leeched as Mana while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="LightningDamageManaLeech",type="BASE",value=1.5}},nil}c["Damage Penetrates 15% Lightning Resistance while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="LightningPenetration",type="BASE",value=15}},nil}c["26% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=26}},nil}c["Right ring slot: Projectiles from Spells cannot Fork"]={nil,"Projectiles from Spells cannot Fork "}c["Gain a Power Charge when you use a Vaal Skill 10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"]={nil,"Gain a Power Charge when you use a Vaal Skill 10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently "}c["+30% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["50% chance to gain Elusive on Critical Strike 15% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 15% increased while Elusive 8% reduced Damage taken while Elusive "}c["With at least 40 Intelligence in Radius, can summon up to 3 Skeleton Mages with Summon Skeletons"]={nil,"With at least 40 Intelligence in Radius, can summon up to 3 Skeleton Mages with Summon Skeletons "}c["Can have up to 5 Implicit Modifiers while Item has this Modifier"]={nil,"Can have up to 5 Implicit Modifiers while Item has this Modifier "}c["18% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=44,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=18}},nil}c["Grants Perfect Agony during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Perfect Agony"}},nil}c["Minions have +9% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=9}}}},nil}c["With at least 40 Dexterity in Radius, Melee Damage"]={nil,"With at least 40 Dexterity in Radius, Melee Damage "}c["You cannot be Chilled for 3 seconds after being Chilled You cannot be Frozen for 3 seconds after being Frozen"]={nil,"You cannot be Chilled for 3 seconds after being Chilled You cannot be Frozen for 3 seconds after being Frozen "}c["With at least 40 Intelligence in Radius, 25% increased Freezing Pulse Damage if"]={nil,"With at least 40 Intelligence in Radius, 25% increased Freezing Pulse Damage if "}c["With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile"]={nil,"With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile "}c["50% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-50}},nil}c["+10% to Non-Ailment Chaos Damage over Time Multiplier 24% increased Damage Over Time with Bow Skills Poisons you inflict deal Damage 10% faster"]={{[1]={flags=0,keywordFlags=512,name="ChaosDotMultiplier",type="BASE",value=10}}," Non-Ailment 24% increased Damage Over Time Poisons you inflict deal Damage 10% faster "}c["15% chance of Projectiles Piercing Projectiles Pierce an additional Target"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=15}}," of Piercing Projectiles Pierce an additional Target "}c["13% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=13}},nil}c["10% increased Effect of your Curses if you've spent 200 total Mana Recently Remove a Curse when you use a Mana Flask"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=10}}," if you've spent 200 total Mana Recently Remove a Curse when you use a Mana Flask "}c["60% reduced Mana Cost of Totem Skills that cast an Aura Corrupted"]={{[1]={flags=0,keywordFlags=16384,name="ManaCost",type="INC",value=-60}}," Skills that cast an Aura Corrupted "}c["60% chance to Poison on Hit against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=262144,name="PoisonChance",type="BASE",value=60}},nil}c["Lightning Spells have 15% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=2,keywordFlags=64,name="PhysicalDamageConvertToLightning",type="BASE",value=15}},nil}c["+1 to Minimum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMin",type="BASE",value=1}},nil}c["35% chance to Avoid Elemental Ailments per Summoned Golem"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=35},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=35},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=35}}," per Summoned "}c["With at least 40 Intelligence in Radius, Raised"]={nil,"With at least 40 Intelligence in Radius, Raised "}c["Your Cold Damage can Ignite but not Freeze or Chill"]={{[1]={flags=0,keywordFlags=0,name="ColdCanIgnite",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ColdCannotFreeze",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="ColdCannotChill",type="FLAG",value=true}},nil}c["10% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=512,name="Damage",type="INC",value=10}},nil}c["With at least 40 Strength in Radius, Ground Slam has a 35% increased angle With at least 40 Strength in Radius, Ground Slam has a 50% increased angle"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 35% increased angle With at least 40 Strength in Radius, Ground Slam has a 50% increased angle "}c["With at least 40 Strength in Radius, Ground Slam has a 50% increased angle"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 50% increased angle "}c["With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy With at least 40 Strength in Radius, Ground Slam has a 35% chance to grant an Endurance Charge when you Stun an Enemy"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy With at least 40 Strength in Radius, Ground Slam has a 35% chance to grant an Endurance Charge when you Stun an Enemy "}c["15% chance to gain a Frenzy Charge when you Stun an Enemy"]={{}," to gain aCharge when you Stun an Enemy "}c["4% increased Attack Speed with Wands"]={{[1]={flags=8388613,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["5% chance to gain a Frenzy Charge on Kill while Dual Wielding"]={{}," to gain aCharge on Kill "}c["+200 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=200}},nil}c["+10% to Critical Strike Multiplier per Nearby Enemy, up to +100%"]={{[1]={[1]={limit=100,limitTotal=true,type="Multiplier",var="NearbyEnemy"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits."]={nil,"With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits. "}c["Gain Phasing for 4 seconds on Kill"]={nil,"Gain Phasing for 4 seconds on Kill "}c["Adds 5 to 10 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}c["3% more Damage for each Endurance Charge lost recently, up to 15%"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=3}}," for each Endurance Charge lost recently, up to 15% "}c["With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds."]={nil,"With at least 40 Strength in Radius, Vigilant Strike also Fortifies Nearby Allies for 3 seconds. "}c["Sword Attacks deal 25% increased Damage with Ailments"]={{[1]={flags=4196352,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["13% increased Area of Effect while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=13}},nil}c["With at least 40 Intelligence in Radius, Cold Snap has a 25% chance to grant a Power Charge on Kill"]={nil,"With at least 40 Intelligence in Radius, Cold Snap has a 25% chance to grant a Power Charge on Kill "}c["+12% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=12}},nil}c["20% chance to Avoid being Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=20}},nil}c["Adds 80 to 180 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=80},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=180}},nil}c["Mines have 20% increased Detonation Speed"]={nil,"Mines have 20% increased Detonation Speed "}c["When your Traps Trigger, your nearby Traps also Trigger"]={nil,"When your Traps Trigger, your nearby Traps also Trigger "}c["Attacks used by Totems have 7% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=7}},nil}c["Knocks Back Enemies if you get a Critical Strike with a Bow"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=131072,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil}c["13% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=13}},nil}c["10% increased Damage Taken while Energy Shield is Full Corrupted"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}," while Energy Shield is Full Corrupted "}c["+18% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=18}},nil}c["+15% to Critical Strike Multiplier with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["50% chance to gain an additional Vaal Soul per Enemy Shattered Corrupted"]={{}," to gain an additional Soul per Enemy Shattered Corrupted "}c["Can have up to 5 Implicit Modifiers while Item has this Modifier 200% increased Armour and Energy Shield"]={nil,"Can have up to 5 Implicit Modifiers while Item has this Modifier 200% increased Armour and Energy Shield "}c["30% of Lightning Damage Leeched as Life during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LightningDamageLifeLeech",type="BASE",value=30}},nil}c["1% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1}},nil}c["Reflects 50 Cold Damage to Melee Attackers +5% Chance to Block"]={nil,"Reflects 50 Cold Damage to Melee Attackers +5% Chance to Block "}c["An additional Curse can be applied to you"]={nil,"An additional Curse can be applied to you "}c["Creates Consecrated Ground on Critical Strike"]={nil,"Creates Consecrated Ground on Critical Strike "}c["13% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=13}},nil}c["Removed life is regenerated as Energy Shield over 2 seconds"]={nil,"Removed life is regenerated as Energy Shield over 2 seconds "}c["+100 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=100}},nil}c["15% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-15}},nil}c["2% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=2}},nil}c["Skills used by Mines have 6% increased Area of Effect"]={{[1]={flags=0,keywordFlags=8192,name="AreaOfEffect",type="INC",value=6}},nil}c["8% increased effect of Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}},nil}c["Arrow Dancing"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Arrow Dancing"}},nil}c["25% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}},nil}c["Dagger Attacks deal 15% increased Damage with Hits and Ailments"]={{[1]={flags=524288,keywordFlags=786432,name="Damage",type="INC",value=15}},nil}c["20% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["+100% to Lightning Resistance when Socketed with a Blue Gem"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=100}}," when Socketed with a Blue Gem "}c["20% increased Physical Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["3% increased Character Size 5% increased Defences"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=3}}," Character Size 5% increased "}c["50% of Physical Damage from Hits with this Weapon is Converted to a random Element"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," from Hits is Converted to a random Element "}c["and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage"]={nil,"and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage "}c["30% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=30}},nil}c["0% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=0}},nil}c["8% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=8}},nil}c["Adds 11 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=11},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["Life Recovery from Flasks also applies to Energy Shield during Flask Effect"]={nil,"Life Recovery from Flasks also applies to Energy Shield during Flask Effect "}c["+350 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=350}},nil}c["20% of Physical Damage taken as Cold Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=20}},nil}c["+20% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil}c["Curse Enemies with Level 10 Assassin's Mark on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,noSupports=true,skillId="AssassinsMark"}}},nil}c["6% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["Counts as Dual Wielding"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="countsAsDualWielding",value=true}}},nil}c["+17 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=17}},nil}c["50% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=50}},nil}c["50% increased Critical Strike Chance with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="CritChance",type="INC",value=50}},nil}c["30% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=30}},nil}c["80% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=80}},nil}c["Gain an Endurance Charge when you take a Critical Strike 2% of Life Regenerated per Second while on Low Life"]={nil,"Gain an Endurance Charge when you take a Critical Strike 2% of Life Regenerated per Second while on Low Life "}c["50% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=50}},nil}c["26% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=26}},nil}c["Life Leeched per Second is doubled"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="MORE",value=100}},nil}c["50% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike "}c["5% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=5}},nil}c["50% chance to cause Bleeding on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["100% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=100}},nil}c["20% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}c["5% chance to gain a Power Charge on Kill 5% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=5}}," to gain a Power Charge on Kill 5% increased "}c["+35 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=35}},nil}c["10% increased Accuracy Rating with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["Adds 3 to 30 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=30}},nil}c["Wand Attacks deal 12% increased Damage with Ailments"]={{[1]={flags=8390656,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["+1 maximum Energy Shield per 5 Strength"]={{[1]={[1]={div=5,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil}c["350% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=350}},nil}c["30% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=30}},nil}c["200% increased Critical Strike Chance while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," while you have Avatar of Fire 50% of Physical Damage Converted to Fire while you have Avatar of Fire "}c["+1000 Armour while you do not have Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}," while you do not have Avatar of Fire "}c["+15 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=15}},nil}c["Adds 145 to 230 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=145},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=230}},nil}c["50% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=50}},nil}c["Attacks Cause Bleeding when Hitting Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil}c["20% of Physical Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=20}},nil}c["Adds 40 to 60 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=60}},nil}c["+36% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=36}},nil}c["Attacks with Two Handed Melee Weapons deal 12% increased Damage with Ailments"]={{[1]={flags=301991936,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["+65 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=65}},nil}c["40% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=40}},nil}c["Adds 38 to 58 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=58}},nil}c["Adds 70 to 210 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=210}},nil}c["Adds 1 to 70 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=70}},nil}c["15% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=15}},nil}c["6% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["16% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=16}},nil}c["Minions have 28% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=28}}}},nil}c["Immune to Elemental Ailments while Phasing"]={nil,"Immune to Elemental Ailments while Phasing "}c["+60 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=60}},nil}c["25% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["+10% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil}c["Mace or Sceptre Attacks deal 18% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=18}},nil}c["23% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=23}},nil}c["30% increased Area of Effect during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil}c["+10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil}c["4% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=4}},nil}c["Adds 15 to 33 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=33}},nil}c["Gain 4% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=4}},nil}c["Adds 15 to 25 Fire Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="FireMin",type="BASE",value=15},[2]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=262144,name="FireMax",type="BASE",value=25}},nil}c["Gain 100% of Bow Physical Damage as Extra Damage of each Element"]={{[1]={flags=131072,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=100},[2]={flags=131072,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=100},[3]={flags=131072,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=100}},nil}c["+17 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=17}},nil}c["15 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=15}},nil}c["Adds 150 to 300 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=150},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=300}},nil}c["Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="ClawAttackSpeedAppliesToUnarmed",type="FLAG",value=true}},nil}c["Minions deal 10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}}}},nil}c["Gain 30% of Physical Damage as Extra Cold Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=30}},nil}c["40% chance to Avoid Blind"]={{}," to Avoid Blind "}c["200 Cold Damage taken per second per Frenzy Charge while moving"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={type="Condition",var="Moving"},flags=0,keywordFlags=0,name="ColdDegen",type="BASE",value=200}},nil}c["Adds 35 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["100% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=100}},nil}c["25% chance to gain a Frenzy Charge on Kill with Main Hand 25% chance to gain an Endurance Charge on Kill with Off Hand"]={{}," to gain aCharge on Kill 25% chance to gain an Endurance Charge on Kill "}c["Skills used by Traps have 20% increased Area of Effect"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=20}},nil}c["Minions have 10% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}}}},nil}c["118% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=118}},nil}c["+190 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=190}},nil}c["Recover 60 Life when you Ignite an Enemy"]={nil,"Recover 60 Life when you Ignite an Enemy "}c["+10 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil}c["24% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["Chill Enemy for 1 second when Hit Blind Chilled Enemies on Hit"]={nil,"Chill Enemy for 1 second when Hit Blind Chilled Enemies on Hit "}c["20% of Overkill Damage is Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill "}c["Adds 9 to 26 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=9},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=26}},nil}c["No Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="PhysicalMin"}},[2]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="PhysicalMax"}},[3]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="PhysicalDPS"}}},nil}c["18% increased Cold Damage per 1% Cold Resistance above 75%"]={{[1]={[1]={div=1,stat="ColdResistOver75",type="PerStat"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=18}},nil}c["You and Allies affected by your Aura Skills deal 20% increased Damage"]={nil,"You and Allies affected by your Aura Skills deal 20% increased Damage "}c["Adds 130 to 195 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=130},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=195}},nil}c["5% increased Attack and Cast Speed while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["100% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=100}},nil}c["130% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=130}},nil}c["Recharge began Recently 50% less Energy Shield Regeneration Rate"]={nil,"Recharge began Recently 50% less Energy Shield Regeneration Rate "}c["Herald of Ice has 100% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Ice",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil}c["50% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=50}},nil}c["Adds 40 to 115 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=115}},nil}c["4 additional Arrows"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=4}},nil}c["20% reduced Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-20}},nil}c["+5 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=5}},nil}c["Cannot be Stunned while Leeching"]={nil,"Cannot be Stunned while Leeching "}c["20% increased Attack Speed with Off Hand"]={{[1]={[1]={type="Condition",var="OffHandAttack"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Adds 20 to 55 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=55}},nil}c["Golems have 100% increased Movement Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=100}}}},nil}c["15% increased Maximum total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=15}},nil}c["3% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=3}},nil}c["100% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}}," with arrows that Fork "}c["100% increased Critical Strike Chance with arrows that Fork 200% increased Critical Strike Chance with arrows that Fork"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}}," with arrows that Fork 200% increased Critical Strike Chance with arrows that Fork "}c["200% increased Critical Strike Chance with arrows that Fork Arrows that Pierce cause Bleeding"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=200}}," with arrows that Fork Arrows that Pierce cause Bleeding "}c["Can Allocate Passives from the Witch's starting point"]={{},nil}c["9% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=9}},nil}c["Adds 1 to 85 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=85}},nil}c["Your Lightning Damage can Freeze but not Shock"]={{[1]={flags=0,keywordFlags=0,name="LightningCanFreeze",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="LightningCannotShock",type="FLAG",value=true}},nil}c["120% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=120}},nil}c["16% increased Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["10% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10}},nil}c["Your Shocks can increase Damage taken by up to a maximum of 100%"]={nil,"Your Shocks can increase Damage taken by up to a maximum of 100% "}c["10% chance to gain a Power, Frenzy or Endurance Charge on Hit"]={{}," to gain a Power,or Endurance Charge on Hit "}c["+3% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=3}},nil}c["do not have Adrenaline Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"do not have Adrenaline Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["Adds 1 to 150 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=150}},nil}c["Your Offerings have 50% reduced Effect on you"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering"},type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="BuffEffectOnPlayer",type="INC",value=-50}}}},nil}c["Flasks gain 3 Charges every 3 seconds"]={nil,"Flasks gain 3 Charges every 3 seconds "}c["Adds 54 to 81 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=54},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=81}},nil}c["Adds 1 to 135 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=135}},nil}c["15% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"]={{}," to gain a Power Charge when your is Detonated targeting an Enemy "}c["+30 Life gained on Killing Ignited Enemies Gain 20% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKillGainAsFire",type="BASE",value=30}}," ing Ignited Enemies Gain 20% of Physical Damage "}c["Gain 20% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=20}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 12 Ignites your Skills cause spread to other Enemies within a Radius of 15"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 12 Ignites your Skills cause spread to other Enemies within a Radius of 15 "}c["+15 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=15}},nil}c["Ignites your Skills cause spread to other Enemies within a Radius of 15"]={nil,"Ignites your Skills cause spread to other Enemies within a Radius of 15 "}c["Nova Spells have 20% less Area of Effect"]={nil,"Nova Spells have 20% less Area of Effect "}c["Adds 2 to 4 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=4}},nil}c["Recover 3% of Maximum Life on Kill Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Life on Kill Recover 3% of Maximum Mana on Kill "}c["Sword Attacks deal 12% increased Damage with Ailments"]={{[1]={flags=4196352,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["8% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=8}},nil}c["3% increased maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=3}},nil}c["50% increased Shock Duration on You Take no Extra Damage from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=50}}," on You Take no Extra Damage "}c["Damaging Ailments deal damage 10% faster"]={nil,"Damaging Ailments deal damage 10% faster "}c["Cannot be inflicted with Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=100}},nil}c["You take 450 Chaos Damage per second for 10 seconds on Kill"]={nil,"You take 450 Chaos Damage per second for 10 seconds on Kill "}c["Minions deal 1% increased Damage per 10 Dexterity"]={{[1]={[1]={div=10,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=1}}}},nil}c["You take 450 Chaos Damage per second for 10 seconds on Kill You take 450 Chaos Damage per second for 3 seconds on Kill"]={nil,"You take 450 Chaos Damage per second for 10 seconds on Kill You take 450 Chaos Damage per second for 3 seconds on Kill "}c["Anger Reserves no Mana"]={{[1]={[1]={skillId="Anger",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["20% of Overkill Damage is Leeched as Life Cannot be Stunned while Leeching You are Immune to Bleeding while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},[2]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=20}}," Overkill Cannot be Stunned You are Immune to Bleeding "}c["You can inflict up to 300 Ignites on an Enemy"]={{[1]={flags=0,keywordFlags=0,name="IgniteCanStack",type="FLAG",value=true}},nil}c["Life Regeneration is applied to Energy Shield instead"]={{[1]={flags=0,keywordFlags=0,name="ZealotsOath",type="FLAG",value=true}},nil}c["Gain 5% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped"]={{[1]={[1]={type="Multiplier",var="ShaperItem"},flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=5}},nil}c["Adds 25 to 45 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=45}},nil}c["10% chance to gain Phasing for 4 seconds on Kill 15% increased Damage with Ailments from Attack Skills while wielding a Dagger"]={{[1]={[1]={type="Condition",var="UsingDagger"},flags=2048,keywordFlags=65536,name="Damage",type="BASE",value=10}}," to gain Phasing for 4 seconds on Kill 15% increased "}c["You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem"]={nil,"You Regenerate 0.5% of Mana per second per Totem Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem "}c["7% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=7},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=7},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=7}},nil}c["220% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=220}},nil}c["0.2% of maximum Life Regenerated per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}},nil}c["20% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=20}},nil}c["+5 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=5}},nil}c["+20% chance to be Pierced by Projectiles Projectiles Pierce you"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to be Pierced by Projectiles Pierce you "}c["50% of Lightning Damage Converted to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToCold",type="BASE",value=50}},nil}c["100% increased Accuracy Rating when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=100}},nil}c["Grants Level 20 Summon Doedre's Effigy Skill Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned"]={nil,nil}c["5% chance to Avoid Cold Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="BASE",value=5}}," to Avoid from Hits "}c["10% increased Impale Effect 10% chance to Impale Enemies on Hit with Axes or Swords"]={{[1]={[1]={modFlags=4259840,type="ModFlagOr"},flags=4,keywordFlags=0,name="FlaskEffect",type="INC",value=10}}," Impale 10% chance to Impale Enemies on Hit "}c["15% chance to gain a Flask Charge when you deal a Critical Strike"]={{}," to gain a Flask Charge when you deal a Critical Strike "}c["-10 Chaos Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="BASE",value=-10}},nil}c["10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="BloodRage"}}},nil}c["70% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=70}},nil}c["Adds 10 to 15 Chaos Damage for each Spider's Web on the Enemy"]={{[1]={[1]={actor="enemy",type="Multiplier",var="Spider's WebStack"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=10},[2]={[1]={actor="enemy",type="Multiplier",var="Spider's WebStack"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=15}},nil}c["Adds 50 to 125 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=125}},nil}c["10% reduced Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=-10}},nil}c["Gain 10% of Wand Physical Damage as Extra Lightning Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=10}},nil}c["100% increased Damage with Ignites inflicted on Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=4194304,name="Damage",type="INC",value=100}},nil}c["Totems gain +16% to all Elemental Resistances Totems have 10% additional Physical Damage Reduction"]={nil,"Totems gain +16% to all Elemental Resistances Totems have 10% additional Physical Damage Reduction "}c["Minion Instability"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Minion Instability"}},nil}c["+20% to Critical Strike Multiplier with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritMultiplier",type="BASE",value=20}},nil}c["1% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil}c["Purity of Fire has 30% reduced Mana Reservation"]={{[1]={[1]={skillName="Purity of Fire",type="SkillName"},flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}},nil}c["160% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=160}},nil}c["With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage"]={nil,"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage "}c["Adds 260 to 285 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=260},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=285}},nil}c["+1500 to Evasion Rating while on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=1500}},nil}c["Curse Skills have 10% increased Cast Speed"]={{[1]={[1]={skillType=32,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["150% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=150}},nil}c["Iron Reflexes"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Iron Reflexes"}},nil}c["+450 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=450}},nil}c["+1.5% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="OnConsecratedGround"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1.5}},nil}c["20% reduced Reflected Physical Damage taken Enemies have -5% to Total Physical Damage Reduction against your Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected Enemies have -5% to Total Physical Damage Reduction against your Hits "}c["Critical Strikes do not inherently apply non-Damaging Ailments Inflict non-Damaging Ailments as though dealing 200% more Damage"]={nil,"Critical Strikes do not inherently apply non-Damaging Ailments Inflict non-Damaging Ailments as though dealing 200% more Damage "}c["Trap Damage Penetrates 10% Elemental Resistances"]={{[1]={flags=0,keywordFlags=4096,name="ElementalPenetration",type="BASE",value=10}},nil}c["1% increased Movement Speed per 600 Evasion Rating, up to 75%"]={{[1]={[1]={div=600,limit=75,limitTotal=true,stat="Evasion",type="PerStat"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}},nil}c["-50% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-50}},nil}c["10% of Fire Damage taken as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsPhysical",type="BASE",value=10}},nil}c["Adds 188 to 262 Cold Damage to Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="ColdMin",type="BASE",value=188},[2]={flags=131076,keywordFlags=0,name="ColdMax",type="BASE",value=262}},nil}c["5% chance to create Shocked Ground when Hit"]={{}," to create Shocked Ground when Hit "}c["Evasion Rating is increased by Uncapped Cold Resistance"]={{[1]={[1]={div=1,stat="ColdResistTotal",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=1}},nil}c["do not have Adrenaline"]={nil,"do not have Adrenaline "}c["Adds 1 to 300 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=300}},nil}c["Phase Acrobatics"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Phase Acrobatics"}},nil}c["Projectile Attack Skills have 60% increased Critical Strike Chance"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion"]={{}," to Maim on Hit "}c["100% increased Charge Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargeRecovery",type="INC",value=100}},nil}c["Every second, gain a Ghost Shroud, up to a maximum of 3"]={nil,"Every second, gain a Ghost Shroud, up to a maximum of 3 "}c["Channelling Skills deal 25% increased Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["6% increased Attack Speed with Maces and Sceptres"]={{[1]={flags=1048581,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["4% increased Attack Speed with Axes"]={{[1]={flags=65541,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Immune to Ignite while affected by Purity of Fire"]={nil,"Immune to Ignite while affected by Purity of Fire "}c["+8% Chance to Block Attack Damage if you were Damaged by a Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=8}},nil}c["Adds 14-23 Physical Damage to Attacks while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=14},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=23}},nil}c["20% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-20}},nil}c["Grants Level 15 Blood Offering Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="BloodOffering"}}},nil}c["10% chance to double Stun Duration 28% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=2048,keywordFlags=65536,name="EnemyStunDuration",type="BASE",value=10}}," to double 28% increased Damage "}c["Socketed Minion Gems are Supported by Level 16 Life Leech"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=16,skillId="SupportLifeLeech"}}},nil}c["When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has"]={nil,"When you create a Banner, it gains 20% of the Stages of your placed Banner When you place a Banner, you and nearby Allies recover 0.5% of Life for\neach Stage the Banner has "}c["3% additional chance for Slain monsters to drop Scrolls of Wisdom"]={{}," for Slain monsters to drop Scrolls of Wisdom "}c["Mana Reservation of Herald Skills is always 45%"]={{[1]={[1]={skillType=63,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=45}}},nil}c["Golems Summoned in the past 8 seconds deal 45% increased Damage"]={nil,"Golems Summoned in the past 8 seconds deal 45% increased Damage "}c["30% reduced Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=-30}},nil}c["With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage to surrounding targets"]={nil,"With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage to surrounding targets "}c["Gain 13% of Elemental Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=13}},nil}c["Gems Socketed in Red Sockets have +1 to Level"]={nil,"Gems Socketed in Red Sockets have +1 to Level "}c["1% increased Energy Shield per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=1}},nil}c["Socketed Curse Gems are Supported by Level 20 Blasphemy"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportBlasphemy"}}},nil}c["Minions have 8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}}}},nil}c["5% increased Attack Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=1,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["20% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=20}},nil}c["Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned Socketed Curse Skills ignore Curse Limit"]={nil,"Socketed Curse Skills are Triggered by Doedre's Effigy when Summoned Socketed Curse Skills ignore Curse Limit "}c["33% reduced Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=-33}},nil}c["Gain 10% of Physical Damage as Extra Damage of a random Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=10}}," as Extra Damage of a random Element "}c["28% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=28}},nil}c["1.2% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1.2}},nil}c["20% of Damage taken gained a Life over 4 seconds when Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=20}}," gained a Life over 4 seconds when Hit "}c["+600 Strength and Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="BASE",value=600},[2]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=600}},nil}c["Culling Strike against Burning Enemies Gain a Frenzy Charge if an Attack Ignites an Enemy"]={nil,"Culling Strike against Burning Enemies Gain a Frenzy Charge if an Attack Ignites an Enemy "}c["Regenerate 0.6% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.6}},nil}c["50% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=50}},nil}c["100% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=100}}," when on Low Mana "}c["+30% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=30}},nil}c["30% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=30}},nil}c["30% increased Off Hand Attack Speed while wielding two different Weapon Types"]={{[1]={flags=8193,keywordFlags=0,name="Speed",type="INC",value=30}}," Off Hand while wielding two different Types "}c["Gain 18% of Physical Damage as Extra Chaos Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=18}},nil}c["70 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=70}},nil}c["Grants Level 20 Bone Armour Skill 1% additional Physical Damage Reduction per Minion, up to 10% +3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% Minions have 20% more Maximum Life"]={nil,nil}c["6% increased Physical Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},nil}c["Elemental Equilibrium"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Elemental Equilibrium"}},nil}c["Elemental Overload"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Elemental Overload"}},nil}c["32% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=32}},nil}c["8% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["25% increased Quantity of Items Dropped by Slain Frozen enemies"]={{}," Quantity of Items Dropped by Slain Frozen enemies "}c["Vaal Pact"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Vaal Pact"}},nil}c["Zealot's Oath"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Zealot's Oath"}},nil}c["Adds 46 to 128 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=46},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=128}},nil}c["Recover 0.5% of your maximum Life per Poison affecting Enemies you Kill"]={nil,"Recover 0.5% of your maximum Life per Poison affecting Enemies you Kill "}c["Nearby Allies gain 1% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1},onlyAllies=true}}},nil}c["Non-Curse Aura Skills have 20% increased Duration"]={nil,"Non-Curse Aura Skills have 20% increased Duration "}c["16% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["23% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=23}},nil}c["4% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["10% increased Attack Speed with Claws"]={{[1]={flags=262149,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Adds 2 to 3 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=2},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=3}},nil}c["+6 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=6}},nil}c["10% increased Damage taken"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}},nil}c["Chance to Block Spell Damage is equal to Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChanceIsBlockChance",type="FLAG",value=true}},nil}c["Minions have 20% reduced Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=-20}}}},nil}c["8% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=8}},nil}c["40% increased Armour while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="Armour",type="INC",value=40}},nil}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit "}c["13% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=13}},nil}c["50% of Physical Damage from Hits with this Weapon is Converted to a random Element Hits with this Weapon always inflict Elemental Ailments"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=50}}," from Hits is Converted to a random Element Hits always inflict Elemental Ailments "}c["25% reduced Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-25}},nil}c["Adds 1 to 25 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=25}},nil}c["15% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=15}},nil}c["24% increased Damage while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="Damage",type="INC",value=24}},nil}c["20% chance to gain a Frenzy Charge on Kill 20% chance to gain a Power Charge on Kill"]={{}," to gain aCharge on Kill 20% chance to gain a Power Charge on Kill "}c["Grants level 20 Summon Bestial Ursa Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonBeastialUrsa"}}},nil}c["Summon Raging Spirit has 30% increased Duration"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil}c["All Attacks with this Weapon are Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="WeaponData",type="LIST",value={key="CritChance",value=100}}},nil}c["+45% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=45}},nil}c["40% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=40}},nil}c["50% increased Flask Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecoveryRate",type="INC",value=50}},nil}c["100% of Cold Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsLightning",type="BASE",value=100}},nil}c["5% chance to gain Unholy Might for 3 seconds on Kill 10% chance to gain Unholy Might for 10 seconds on Kill"]={{}," to gain Unholy Might for 3 seconds on Kill 10% chance to gain Unholy Might for 10 seconds on Kill "}c["Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage"]={nil,"Enemies near your Totems deal 8% less Damage Enemies near your Totems take 16% increased Physical and Fire Damage "}c["Enemies Killed with Wand Hits have a 10% chance to Explode, dealing a quarter of their Life as Chaos Damage"]={nil,"Enemies Killed with Wand Hits have a 10% chance to Explode, dealing a quarter of their Life as Chaos Damage "}c["Socketed Gems have 10% increased Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=10}}}},nil}c["You gain Onslaught for 1 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 1 second per Endurance Charge when Hit "}c["You gain Onslaught for 2 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit "}c["You gain Onslaught for 2 second per Endurance Charge when Hit You gain Onslaught for 5 second per Endurance Charge when Hit"]={nil,"You gain Onslaught for 2 second per Endurance Charge when Hit You gain Onslaught for 5 second per Endurance Charge when Hit "}c["60% increased Critical Strike Chance with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritChance",type="INC",value=60}},nil}c["Gain 35% of Physical Attack Damage as Extra Fire Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=35}},nil}c["Acrobatics"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Acrobatics"}},nil}c["Adds 1 to 25 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=25}},nil}c["+12% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=12}},nil}c["50% slower start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=-50}},nil}c["+35 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=35}},nil}c["+27% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=27}},nil}c["Share Endurance Charges with nearby party members"]={nil,"Share Endurance Charges with nearby party members "}c["Animated Guardian deals 5% increased Damage per Animated Weapon Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"]={nil,"Animated Guardian deals 5% increased Damage per Animated Weapon Animated Minions' Melee Attacks deal Splash Damage to surrounding targets "}c["10% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=10}},nil}c["Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy 10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={nil,"Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy 10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy "}c["10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={{}," to Trigger Level 18 Animate Guardian's when Animated Weapon Kills an Enemy "}c["Reflects 1 to 150 Lightning Damage to Melee Attackers 20% Chance for Energy Shield Recharge to Start when you Block"]={nil,"Reflects 1 to 150 Lightning Damage to Melee Attackers 20% Chance for Energy Shield Recharge to Start when you Block "}c["+20 Mana gained when you Block 40% increased Defences from Equipped Shield"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}}," gained when you Block 40% increased Defences "}c["18% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=18}},nil}c["20% of Physical Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=20}},nil}c["30% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsCold",type="BASE",value=30}},nil}c["Attacks have 5% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=5}},nil}c["-25% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=-25}},nil}c["Raised Zombies have 90% increased maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=90}}}},nil}c["Culling Strike against Enemies Cursed with Poacher's Mark"]={nil,"Culling Strike against Enemies Cursed with Poacher's Mark "}c["140% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=140}},nil}c["8% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=8}},nil}c["+20% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil}c["+2 to Maximum number of Raised Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=2}},nil}c["30% more chance to Evade Melee Attacks during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="MeleeEvadeChance",type="MORE",value=30}},nil}c["+12% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=12}},nil}c["10% increased total Recovery per second from Mana Leech"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=10}},nil}c["Enemies are Unlucky when Damaging you while you are on Full Life"]={nil,"Enemies are Unlucky when Damaging you while you are on Full Life "}c["100% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground "}c["+15% to Critical Strike Multiplier with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating"]={nil,"Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating "}c["You gain Onslaught for 2 seconds on Kill"]={nil,"You gain Onslaught for 2 seconds on Kill "}c["2 Enemy Writhing Worms escape the Flask when used"]={nil,"2 Enemy Writhing Worms escape the Flask when used "}c["+125 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=125}},nil}c["Gain a Power Charge for each Enemy you hit with a Critical Strike Inner Conviction"]={nil,"Gain a Power Charge for each Enemy you hit with a Critical Strike Inner Conviction "}c["You take 450 Chaos Damage per second for 3 seconds on Kill Gore Footprints"]={nil,"You take 450 Chaos Damage per second for 3 seconds on Kill Gore Footprints "}c["5% chance to Blind Enemies on Hit"]={{}," to Blind Enemies on Hit "}c["125% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=125}},nil}c["Regenerate 0.5% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5}},nil}c["Damage penetrates 25% Cold Resistance while affected by Herald of Ice"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofIce"},flags=0,keywordFlags=0,name="ColdPenetration",type="BASE",value=25}},nil}c["50% of Block Chance applied to Spells +15% chance to Block Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=50}}," applied to s +15% chance to Block Spell Damage "}c["120% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=120}},nil}c["20% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=20}},nil}c["25% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Minions have 8% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=8}}}},nil}c["20% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}c["25% chance on Block to create Desecrated Ground 50% chance on Block to create Desecrated Ground"]={{}," on Block to create Desecrated Ground 50% chance on Block to create Desecrated Ground "}c["100% increased Onslaught Effect"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=100}},nil}c["Gain Arcane Surge when your Mine is Detonated targeting an Enemy"]={nil,"Gain Arcane Surge when your Mine is Detonated targeting an Enemy "}c["Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="CastSpeedAppliesToTrapThrowingSpeed",type="FLAG",value=true}},nil}c["25% reduced Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=-25}},nil}c["Unaffected by Shocked Ground"]={nil,"Unaffected by Shocked Ground "}c["1% of Energy Shield Regenerated per second for each Enemy you or your Minions have Killed Recently, up to 30%"]={{[1]={[1]={limit=30,limitTotal=true,type="Multiplier",varList={[1]="EnemyKilledRecently",[2]="EnemyKilledByMinionsRecently"}},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil}c["25% increased Poison Duration if you have at least 150 Intelligence"]={{[1]={[1]={stat="Int",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=25}},nil}c["Unaffected by Shock"]={nil,"Unaffected by Shock "}c["Gain 20% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=20}},nil}c["Shocked Enemies you Kill Explode, dealing 5% of their Maximum Life as Lightning Damage which cannot Shock"]={nil,"Shocked Enemies you Kill Explode, dealing 5% of their Maximum Life as Lightning Damage which cannot Shock "}c["100% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=100},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=100},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=100}},nil}c["You gain 150 Evasion Rating when on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=150}},nil}c["Socketed Gems are Supported by Level 20 Elemental Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportElementalPenetration"}}},nil}c["40% increased Critical Strike Chance with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["Your Critical Strikes do not deal extra Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil}c["13% increased Cooldown Recovery Speed for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=13}},nil}c["30% chance to gain an additional Vaal Soul on Kill"]={{}," to gain an additional Soul on Kill "}c["Socketed Gems are Supported by level 1 Generosity"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportGenerosity"}}},nil}c["10% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments while on Consecrated Ground"]={{}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds Immune to Elemental Ailments "}c["Adds 98 to 140 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=140}},nil}c["Adds 3 to 62 Lightning Damage while you have Avian's Might"]={{[1]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={[1]={type="Condition",var="AffectedByAvian'sMight"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=62}},nil}c["12% increased Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Adds 15 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["+22% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=22}},nil}c["Has an additional Implicit Mod"]={nil,"Has an additional Implicit Mod "}c["10% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=10}},nil}c["18% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=18}},nil}c["15% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil}c["4% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=167772165,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["+7% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=7}},nil}c["50% reduced Mana Reservation of Banner Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-50}}," of Banner Skills "}c["420% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=420}},nil}c["With at least 40 Intelligence in Radius, Magma Orb"]={nil,"With at least 40 Intelligence in Radius, Magma Orb "}c["100% chance to Taunt on Hit"]={{}," to Taunt on Hit "}c["70% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=70}},nil}c["Arrows Pierce an additional Target"]={{[1]={flags=1,keywordFlags=0,name="PierceCount",type="BASE",value=1}},nil}c["Minions' Attacks deal 8 to 16 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMin",type="BASE",value=8}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalMax",type="BASE",value=16}}}},nil}c["6% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=6}},nil}c["You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage"]={nil,"You and Allies affected by your placed Banners Regenerate 0.1% of Life per second for each Stage "}c["Golems have 18% increased Attack and Cast Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=18}}}},nil}c["Skills used during Flask effect grant 800% of Mana Cost as Life"]={nil,"Skills used during Flask effect grant 800% of Mana Cost as Life "}c["Adds 21 to 33 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=21},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=33}},nil}c["Life Leech from Hits with this Weapon applies instantly"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true}},nil}c["+15% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=15}},nil}c["35% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=35}},nil}c["10% reduced Damage taken from Trap or Mine Hits"]={{[1]={flags=0,keywordFlags=4096,name="DamageTaken",type="INC",value=-10}}," from or Mine Hits "}c["+36% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=36}},nil}c["Adds 10 to 20 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=20}},nil}c["You have Resolute Technique while you do not have Elemental Overload 100% increased Physical Damage while you have Resolute Technique"]={nil,"You have Resolute Technique while you do not have Elemental Overload 100% increased Physical Damage while you have Resolute Technique "}c["Adds 1 to 2 Fire Damage to Attacks per 10 Strength"]={{[1]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=1},[2]={[1]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=2}},nil}c["Immune to Ignite"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}},nil}c["25% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil}c["10% chance to create a Smoke Cloud when Hit"]={{}," to create a Smoke Cloud when Hit "}c["Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Your Hits permanently Intimidate Enemies that are on Full Life Gain Adrenaline for 20 seconds when you reach Low Life if you\ndo not have Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["160% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=160}},nil}c["+14% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=14}},nil}c["Ancestor Totems have 100% increased Activation range 25% increased Area of Effect while you have a Totem"]={nil,"Ancestor Totems have 100% increased Activation range 25% increased Area of Effect while you have a Totem "}c["12% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=12}},nil}c["+4% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil}c["Adds 16 to 29 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=16},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=29}},nil}c["0.3% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.3}},nil}c["Consecrated Ground created by this Flask has Tripled Radius +2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"]={nil,"Consecrated Ground created by this Flask has Tripled Radius +2% to Critical Strike Chance against Enemies on Consecrated Ground during Effect "}c["6% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-6}}," for 4 seconds after Spending a total of 200 Mana "}c["Adds 20 to 40 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=40}},nil}c["+40 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=40}},nil}c["+30 Mana gained on Kill"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=30}},nil}c["If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour You and nearby Allies deal 4 to 8 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}},"If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["+40 Life gained when you Block +48 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}}," gained when you Block +48 Life gained when you Block "}c["2% additional Physical Damage Reduction while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=2}},nil}c["+2000 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=2000}},nil}c["Adds 12 to 24 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=12},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=24}},nil}c["Lose 35 Mana per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaDegen",type="BASE",value=35}},nil}c["Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Cannot be Blinded 10% reduced Damage taken from Blinded Enemies Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies "}c["Adds 10 to 15 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=15}},nil}c["Adds 12 to 25 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=25}},nil}c["Elemental Resistances are Zero"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="OVERRIDE",value=0},[2]={flags=0,keywordFlags=0,name="ColdResist",type="OVERRIDE",value=0},[3]={flags=0,keywordFlags=0,name="LightningResist",type="OVERRIDE",value=0}},nil}c["Your Shocks can increase Damage taken by up to a maximum of 60% 30% increased Effect of Shock"]={nil,"Your Shocks can increase Damage taken by up to a maximum of 60% 30% increased Effect of Shock "}c["10% increased Damage with Brand Skills"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+12 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=12}},nil}c["50% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=50}},nil}c["3% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["-7 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-7}}," from Attacks "}c["Minions have 10% increased Movement Speed for each Herald affecting you"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}}}}," for each Herald affecting you "}c["+1 to maximum Mana per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}},nil}c["With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area"]={nil,"With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area "}c["20% reduced Mana Reservation of Skills that throw Mines"]={{[1]={flags=0,keywordFlags=8192,name="ManaReserved",type="INC",value=-20}},nil}c["Envy Reserves no Mana"]={{[1]={[1]={skillId="Envy",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaCostForced",value=0}}},nil}c["+50 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=50}},nil}c["Auras from your Skills grant 0.2% of Life Regenerated per second to"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.2}}}}," to "}c["25% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=25}},nil}c["36% chance to deal Double Damage while Focussed"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=36}},nil}c["10% increased Mana Regeneration Rate Per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=10}},nil}c["20% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=20}},nil}c["began Recently"]={nil,"began Recently "}c["50% chance to gain a Power Charge when you Summon a Totem 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced Elemental Damage taken while you have an Endurance Charge"]={{[1]={[1]={stat="EnduranceCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=16384,name="ElementalDamageTaken",type="BASE",value=50}}," to gain a Power Charge when you Summon a 15% chance to gain a Power Charge if you or your Totems kill an Enemy 5% reduced "}c["10% increased Physical Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil}c["+80 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=80}},nil}c["Arrows that Pierce have +50% to Critical Strike Multiplier Arrows Pierce all Targets after Chaining"]={nil,"Arrows that Pierce have +50% to Critical Strike Multiplier Arrows Pierce all Targets after Chaining "}c["Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20%"]={nil,"Radius: 18 Chills from your Hits always reduce Action Speed by at least 10% 20% more Damage with Ignite Shocks from your Hits always increase Damage taken by at least 20% "}c["15% increased Elemental Damage if you've Chilled an Enemy Recently 20% increased Elemental Damage if you've Ignited an Enemy Recently 25% increased Elemental Damage if you've Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="IgnitedEnemyRecently"},[2]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=15}}," if you've Chilled an Enemy Recently 20% increased Elemental Damage 25% increased Elemental Damage "}c["Primordial"]={{[1]={flags=0,keywordFlags=0,name="Multiplier:PrimordialItem",type="BASE",value=1}},nil}c["Life Leeched per Second is doubled. Maximum total Recovery per second from Life Leech is doubled. Life Regeneration has no effect."]={nil,"Life Leeched per Second is doubled. Maximum total Recovery per second from Life Leech is doubled. Life Regeneration has no effect. "}c["Wand Attacks deal 15% increased Damage with Hits and Ailments"]={{[1]={flags=8388608,keywordFlags=786432,name="Damage",type="INC",value=15}},nil}c["50% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=50}},nil}c["1.6% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1.6}},nil}c["Enemies affected by your Spider's Webs deal 10% reduced Damage Enemies affected by your Spider's Webs have -10% to All Resistances"]={nil,"Enemies affected by your Spider's Webs deal 10% reduced Damage Enemies affected by your Spider's Webs have -10% to All Resistances "}c["35% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=35}},nil}c["You and nearby Allies deal 4 to 8 added Physical Damage for"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4}}},[2]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=8}}}}," for "}c["10 Life gained for each Enemy Hit if you have used a Vaal Skill Recently"]={{[1]={[1]={type="Condition",var="UsedVaalSkillRecently"},flags=0,keywordFlags=0,name="LifeOnHit",type="BASE",value=10}},nil}c["Take 100 Fire Damage when you Ignite an Enemy 2% of Fire Damage Leeched as Life while Ignited"]={nil,"100 Fire Damage when you Ignite an Enemy 2% of Fire Damage Leeched as Life while Ignited "}c["You gain a Frenzy Charge on use"]={nil,"You gain a Frenzy Charge on use "}c["Spells have an additional Projectile"]={{[1]={flags=2,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil}c["32% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=32},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=32},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=32}},nil}c["Dispels Elemental Ailments on Rampage Gain Immunity to Physical Damage for 1.5 seconds on Rampage"]={nil,"Dispels Elemental Ailments on Rampage Gain Immunity to Physical Damage for 1.5 seconds on Rampage "}c["Attacks used by Totems have 4% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=4}},nil}c["40% increased Damage if you Detonated Mines Recently"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil}c["Gain Life and Mana from Leech instantly on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="FLAG",value=true},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantManaLeech",type="FLAG",value=true}},nil}c["+1 Life per 4 Dexterity"]={{[1]={[1]={div=4,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil}c["16% increased Physical Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits 15% chance to Impale Enemies on Hit with Attacks 5% increased Impale Effect"]={nil,"Enemies you Impale have -10% to Total Physical Damage Reduction against Impale Hits 15% chance to Impale Enemies on Hit with Attacks 5% increased Impale Effect "}c["20% chance to gain a Endurance Charge on Kill"]={{}," to gain a Endurance Charge on Kill "}c["Adds 20 to 35 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=35}},nil}c["5% increased Attack Speed with Wands"]={{[1]={flags=8388613,keywordFlags=0,name="Speed",type="INC",value=5}},nil}c["100% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsCold",type="BASE",value=100}},nil}c["100% of Fire Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenAsLightning",type="BASE",value=100}},nil}c["+100 to Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},nil}c["50% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=50}},nil}c["100% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=100}},nil}c["2% of Life Regenerated per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["Removes all but one Life on use Removed life is regenerated as Energy Shield over 2 seconds"]={nil,"Removes all but one Life on use Removed life is regenerated as Energy Shield over 2 seconds "}c["200% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=200}},nil}c["Skills fire 2 additional Projectiles"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil}c["+30% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=30}},nil}c["Lose 15 Life for each Enemy hit by your Spells"]={nil,"Lose 15 Life for each Enemy hit by your Spells "}c["Adds 1 to 40 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=40}},nil}c["Socketed Gems have 30% reduced Mana Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-30}}}},nil}c["2% increased Evasion Rating per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=2}},nil}c["Your Flasks grant 10% chance to Shock during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10}},nil}c["15% increased Area of Effect while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}c["each Stage the Banner has You and nearby Allies have 12% increased Movement Speed"]={nil,"each Stage the Banner has You and nearby Allies have 12% increased Movement Speed "}c["52% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=52}},nil}c["30% of Physical Damage taken as Cold Damage during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageTakenAsCold",type="BASE",value=30}},nil}c["Gain Her Blessing for 3 seconds when you Ignite an Enemy 33% chance to Blind nearby Enemies when gaining Her Blessing"]={nil,"Gain Her Blessing for 3 seconds when you Ignite an Enemy 33% chance to Blind nearby Enemies when gaining Her Blessing "}c["Channelling Skills deal 16% increased Attack Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Damage",type="INC",value=16}},nil}c["+3 to Level of Socketed Golem Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="golem",value=3}}},nil}c["20% chance to Impale Enemies on Hit with Attacks You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=65536,name="MovementSpeed",type="BASE",value=20}}," to Impale Enemies on Hit You and nearby Allies have 8% increased "}c["Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second"]={nil,"Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second "}c["Adds 7 to 15 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=15}},nil}c["Maximum Chance to Block Spell Damage is equal to Maximum Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChanceMaxIsBlockChanceMax",type="FLAG",value=true}},nil}c["Damage Penetrates 20% Cold Resistance against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdPenetration",type="BASE",value=20}},nil}c["50% less Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="MORE",value=-50}},nil}c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 8 Ranged Weapons "}c["Grants Level 22 Precision Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="AccuracyAndCritsAura"}}},nil}c["Adds 15 to 28 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=15},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=28}},nil}c["Arrows Pierce all Targets after Chaining"]={nil,"Arrows Pierce all Targets after Chaining "}c["Damage Penetrates 10% Fire Resistance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="FirePenetration",type="BASE",value=10}},nil}c["71 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=71}},nil}c["35% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=35}},nil}c["+5 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=5}},nil}c["25% chance to inflict Cold Exposure on Hit"]={{}," to inflict Cold Exposure on Hit "}c["Replenishes Energy Shield by 4% of Armour when you Block Replenishes Energy Shield by 2% of Armour when you Block"]={nil,"Replenishes Energy Shield by 4% of Armour when you Block Replenishes Energy Shield by 2% of Armour when you Block "}c["Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={skillType=3,type="SkillType"},[3]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}},nil}c["+33 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=33}},nil}c["Socketed Gems are Supported by level 10 Fire Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportFirePenetration"}}},nil}c["30% reduced Chance to Block Attacks and Spells"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="SpellBlockChance",type="INC",value=-30}},nil}c["18% increased Damage with Hits against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=18}},nil}c["7% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=7}},nil}c["8% reduced Area Damage taken from Hits +30% to Critical Strike Multiplier against Burning Enemies 80% increased Critical Strike Chance against Shocked Enemies Damage Penetrates 10% Elemental Resistances against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},[2]={actor="enemy",type="ActorCondition",var="Shocked"},flags=512,keywordFlags=262144,name="DamageTaken",type="INC",value=-8}}," from Hits +30% to Critical Strike Multiplier 80% increased Critical Strike Chance Damage Penetrates 10% Elemental Resistances against Chilled Enemies "}c["10% increased Damage with Poison per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=1048576,name="Damage",type="INC",value=10}},nil}c["Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect"]={nil,"Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second Raised Zombies' Slam Attack has 100% increased Area of Effect "}c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius"]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius "}c["+240% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=240}},nil}c["15% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=15}},nil}c["You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second"]={nil,"You and your Minions have 1% additional Physical Damage Reduction for each Zombie you own Your Raised Zombies spread Caustic Ground on Death, dealing 50% of their maximum Life as Chaos Damage per second "}c["+6% to Damage over Time Multiplier for Bleeding"]={{[1]={flags=0,keywordFlags=2097152,name="DotMultiplier",type="BASE",value=6}},nil}c["+10 Life Gained on Killing Ignited Enemies"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=10}}," ing Ignited Enemies "}c["6% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-6}},nil}c["Chaos Skills ignore interruption from Stuns"]={nil,"Chaos Skills ignore interruption from Stuns "}c["0.3% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.3}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"]={{[1]={[1]={type="Condition",var="UsingOneHandedWeapon"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["Golems have +900 to Armour"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=900}}}},nil}c["Socketed Gems are Supported by level 10 Blind"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportBlind"}}},nil}c["Passives in Radius can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="intuitiveLeap",value=true}}},nil}c["Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance"]={nil,"Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance "}c["25% increased Critical Strike Chance with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritChance",type="INC",value=25}},nil}c["0.2% of Lightning Damage Leeched as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageEnergyShieldLeech",type="BASE",value=0.2}},nil}c["Your Non-Banner Skills that create Permanent Auras on you do not Reserve Mana"]={nil,"Your Non-Banner Skills that create Permanent Auras on you do not Reserve Mana "}c["350 Physical Damage taken on Minion Death"]={nil,"350 Physical Damage taken on Minion Death "}c["100% increased Spell Damage taken when on Low Mana 25% increased Spell Damage taken when on Low Mana"]={{[1]={flags=2,keywordFlags=0,name="DamageTaken",type="INC",value=100}}," when on Low Mana 25% increased Spell Damage taken when on Low Mana "}c["200 Mana spent Recently, up to 50%"]={nil,"200 Mana spent Recently, up to 50% "}c["With at least 40 Intelligence in Radius, 10% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies"]={nil,"With at least 40 Intelligence in Radius, 10% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies "}c["10% chance to Fortify on Melee hit Enemies Taunted by you take 10% increased Damage 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Fortify Enemies Taunted by you take 10% increased 25% chance to Taunt on Hit Your Hits permanently Intimidate Enemies that are on Full Life You and nearby Allies have 8% increased Movement Speed "}c["Golems have 90% increased Movement Speed"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=90}}}},nil}c["3% increased Attack Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=1,keywordFlags=0,name="Damage",type="INC",value=3}},nil}c["12% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["+3% to all Elemental Resistances per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% Minions have 20% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=3}}," per Minion, up to 30% 3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30% Minions have 20% more Maximum Life "}c["Minions Leech 0.2% of Damage as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.2}}}},nil}c["+20% chance to be Pierced by Projectiles"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=20}}," to be Pierced by "}c["Adds 3 to 52 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=52}},nil}c["10% chance to Taunt Enemies on Projectile Hit"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=10}}," to Taunt Enemies on Hit "}c["5% increased Area of Effect per Enemy killed recently, up to 50%"]={{[1]={[1]={limit=50,limitTotal=true,type="Multiplier",var="EnemyKilledRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=5}},nil}c["10% increased Movement Speed if you have used a Vaal Skill Recently"]={{[1]={[1]={type="Condition",var="UsedVaalSkillRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["+50% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=50}},nil}c["25% of Physical Damage from Hits taken as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsChaos",type="BASE",value=25}},nil}c["90% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=90}},nil}c["+500 to Accuracy Rating while at Maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=500}},nil}c["Adds 2 to 50 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=50}},nil}c["With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks"]={nil,"With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks "}c["+30% to Critical Strike Multiplier for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritMultiplier",type="BASE",value=30}},nil}c["Minions have 15% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}}}},nil}c["Minions have 13% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=13}}}},nil}c["Minions have 13% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=13}}}},nil}c["With at least 40 Intelligence in Radius, Cold Snap Cooldown can be bypassed by Power Charges instead of Frenzy Charges"]={nil,"With at least 40 Intelligence in Radius, Cold Snap Cooldown can be bypassed by Power Charges instead of Frenzy Charges "}c["Adds 1 to 100 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=100}},nil}c["Enemies Ignited by you during Flask Effect take 10% increased Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil}c["Socketed Melee Gems have 15% increased Area of Effect"]={{[1]={[1]={keyword="melee",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}}}},nil}c["+20% to Critical Strike Multiplier with Totem Skills"]={{[1]={flags=0,keywordFlags=16384,name="CritMultiplier",type="BASE",value=20}},nil}c["Grants level 20 Illusory Warp Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="MerveilWarp"}}},nil}c["14% increased Brand Attachment range"]={{}," Brand Attachment range "}c["50% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=50}}," applied to s "}c["+700 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=700}},nil}c["4 Life regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=4}},nil}c["Adds 1 to 30 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=30}},nil}c["35% increased Attack Speed with Swords"]={{[1]={flags=4194309,keywordFlags=0,name="Speed",type="INC",value=35}},nil}c["40% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=40}},nil}c["2% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil}c["1% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=1}},nil}c["Summoned Raging Spirits deal 70% increased Damage"]={{[1]={[1]={skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=70}}}},nil}c["Grants level 10 Purity of Elements Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="Purity"}}},nil}c["5% chance to avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="AvoidFrozen",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="AvoidChilled",type="BASE",value=5},[4]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=5}},nil}c["Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill"]={nil,"Recover 2% of Maximum Life on Kill Recover 2% of Maximum Energy Shield on Kill "}c["12% increased Damage with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Flasks gain 3 Charges every 3 seconds Damage Penetrates 6% of Enemy Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},"Flasks gain 3 Charges every 3 seconds "}c["Critical Strike Chance is increased by Lightning Resistance"]={{[1]={[1]={div=1,stat="LightningResist",type="PerStat"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=1}},nil}c["Minions have 15% chance to Blind Enemies on hit"]={{}," to Blind Enemies on hit "}c["Minions have 10% increased Area of Effect if you used a Minion Skill Recently +10 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}}}," if you used a Minion Skill Recently +10 to Intelligence "}c["20% increased Golem Damage for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}," for each Golem you have Summoned You cannot be Chilled or Frozen while you have an Ice Golem Summoned You cannot be Ignited while you have a Flame Golem Summoned You cannot be Shocked while you have a Lightning Golem Summoned Can Summon up to 1 additional Golem at a time "}c["Gain Unholy Might for 3 seconds on Rampage"]={nil,"Gain Unholy Might for 3 seconds on Rampage "}c["100% increased Damage when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Damage",type="INC",value=100}},nil}c["Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary"]={nil,"Consecrated Ground you create applies 10% increased Damage taken to Enemies You have Consecrated Ground around you while stationary "}c["Socketed Curse Gems have 12% reduced Mana Reservation"]={{[1]={[1]={keyword="curse",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReserved",type="INC",value=-12}}}},nil}c["30% reduced Duration of Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=-30},[3]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=-30},[4]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-30},[5]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=-30},[6]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=-30}},nil}c["Recover 20% of your Maximum Life on Rampage Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Recover 20% of your Maximum Life on Rampage Gain 5 Souls for Vaal Skills on Rampage "}c["Reflects 30 Chaos Damage to Melee Attackers"]={nil,"Reflects 30 Chaos Damage to Melee Attackers "}c["Reflects 20 Chaos Damage to Melee Attackers"]={nil,"Reflects 20 Chaos Damage to Melee Attackers "}c["Adds 250 to 300 Cold Damage to Counterattacks"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=250},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=300}}," to Counterattacks "}c["Recover 1% of Energy Shield on Kill"]={nil,"Recover 1% of Energy Shield on Kill "}c["40% less Minimum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=-40}}," Minimum "}c["20% increased Critical Strike Chance with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["Adds 30 to 45 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=30},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=45}},nil}c["Gain 10% increased Movement Speed for 20 seconds when you Kill an Enemy"]={nil,"Gain 10% increased Movement Speed for 20 seconds when you Kill an Enemy "}c["Adds 30 to 45 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=30},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=45}},nil}c["10% chance to Blind nearby Enemies when you use an Elemental Skill"]={{}," to Blind nearby Enemies when you use an Elemental Skill "}c["25% chance on Block to create Consecrated Ground 50% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground 50% chance on Block to create Consecrated Ground "}c["Adds 2 to 70 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=2},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=70}},nil}c["Nearby Enemies have an additional 2% chance to receive a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SelfExtraCritChance",type="BASE",value=2}}}},nil}c["Gain 10% of Wand Physical Damage as Extra Cold Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=10}},nil}c["Adds 4 to 9 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=9}},nil}c["Attack Skills deal 12% increased Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=12}},nil}c["+26% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=26}},nil}c["Ignite a nearby Enemy on Killing an Ignited Enemy"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy "}c["Ignite a nearby Enemy on Killing an Ignited Enemy Triggers level 7 Abberath's Fury when equipped"]={nil,"Ignite a nearby Enemy on Killing an Ignited Enemy Triggers level 7 Abberath's Fury when equipped "}c["With at least 40 Strength in Radius, Ground Slam has a 20% increased angle"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 20% increased angle "}c["You can Cast an additional Brand"]={nil,"You can Cast an additional Brand "}c["Burning Hoofprints"]={nil,"Burning Hoofprints "}c["15% Chance to Dodge Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellDodgeChance",type="BASE",value=15}},nil}c["4% additional Physical Damage Reduction while affected by a Guard Skill Buff Guard Skills have 15% increased Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=4}}," while affected by a Guard Skill Buff Guard Skills have 15% increased Cooldown Recovery Speed "}c["Base Critical Strike Chance for Attacks with Weapons is 8%"]={{[1]={flags=0,keywordFlags=0,name="WeaponBaseCritChance",type="OVERRIDE",value=8}},nil}c["30% chance to gain a Frenzy Charge on Kill"]={{}," to gain aCharge on Kill "}c["Minions have 25% chance to gain Unholy Might for 4 seconds on Kill"]={{}," to gain Unholy Might for 4 seconds on Kill "}c["3% increased Damage against Enemies on Low Life per Frenzy Charge"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=3}},nil}c["12% increased Elemental Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["6% increased Damage against Enemies on Low Life per Frenzy Charge"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=6}},nil}c["Adds 65 to 120 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=65},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=120}},nil}c["+100 Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="BASE",value=100}},nil}c["6% increased Attack and Cast Speed while Leeching Energy Shield"]={{[1]={[1]={type="Condition",var="LeechingEnergyShield"},flags=0,keywordFlags=0,name="Speed",type="INC",value=6}},nil}c["1.4% of Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1.4}},nil}c["20% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-20}},nil}c["25% increased Maximum total Recovery per second from Mana Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxManaLeechRate",type="INC",value=25}},nil}c["17% increased Quantity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=17}},nil}c["20% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=20}},nil}c["Adds 55 to 130 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=55},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=130}},nil}c["Damage with Weapons Penetrates 6% Elemental Resistance"]={{[1]={flags=8192,keywordFlags=0,name="ElementalPenetration",type="BASE",value=6}},nil}c["Your Hits can only Kill Frozen enemies"]={nil,"Your Hits can only Kill Frozen enemies "}c["+6% chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil}c["50% chance to gain Elusive on Critical Strike 20% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 20% increased while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect "}c["Socketed Golem Skills gain 20% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=20}}}},nil}c["70% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"]={{[1]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=70},[2]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=70},[3]={[1]={type="Condition",var="KilledAffectedByDotRecently"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=70}},nil}c["25% increased Elemental Damage if you've Shocked an Enemy Recently"]={{[1]={[1]={type="Condition",var="ShockedEnemyRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy Shocks all nearby Enemies on Killing a Shocked Enemy "}c["2% of Energy Shield regenerated per second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=2}},nil}c["+15% to Critical Strike Multiplier with Claws"]={{[1]={flags=262148,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}},nil}c["20% increased Movement Speed on Shocked Ground"]={{[1]={[1]={type="Condition",var="OnShockedGround"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["2% of Life Regenerated Per Second on Chilled Ground"]={{[1]={[1]={type="Condition",var="OnChilledGround"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["+6% to all maximum Elemental Resistances during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=6}},nil}c["100% increased Rarity of Items found when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=100}},nil}c["Consumes Frenzy Charges on use"]={nil,"Consumes Frenzy Charges on use "}c["50% reduced Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=-50}},nil}c["Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time"]={nil,"Cannot take Reflected Elemental Damage 40% increased Effect of Heralds on you Shocks from your Hits always increase Damage taken by at least 10% Can Summon up to 1 additional Golem at a time "}c["Adds 18 to 28 Chaos Damage to Spells and Attacks while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=196608,name="ChaosMin",type="BASE",value=18},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=196608,name="ChaosMax",type="BASE",value=28}},nil}c["+50% to Chaos Resistance during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=50}},nil}c["70% increased Damage Over Time during Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,keywordFlags=0,name="Damage",type="INC",value=70}},nil}c["+60 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=60}},nil}c["Gain 5 Souls for Vaal Skills on Rampage"]={nil,"Gain 5 Souls for Vaal Skills on Rampage "}c["Using Warcries is Instant 20% increased Warcry Buff Effect"]={nil,"Using Warcries is Instant 20% increased Warcry Buff Effect "}c["40% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=40}},nil}c["While there are at least five nearby Allies, you and nearby Allies have Onslaught"]={{[1]={[1]={threshold=5,type="MultiplierThreshold",var="NearbyAlly"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Onslaught",type="FLAG",value=true}}}},nil}c["Adds 2 to 5 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=5}},nil}c["+18 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=18}},nil}c["Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken"]={nil,"Shocks nearby Enemies during Flask effect, causing 10% increased Damage taken "}c["50% increased Damage with Hits against Enemies that are on Low Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="LowLife"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=50}},nil}c["40% increased Elemental Damage during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil}c["10% increased Damage while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["20% increased Physical Damage with One Handed Melee Weapons"]={{[1]={flags=167772164,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["4% reduced Mana Reservation of Skills that throw Mines"]={{[1]={flags=0,keywordFlags=8192,name="ManaReserved",type="INC",value=-4}},nil}c["Projectiles Pierce you"]={nil,"Projectiles Pierce you "}c["+2 to Level of Socketed Aura Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="aura",value=2}}},nil}c["Nearby Enemies have 100% reduced Life Regeneration rate"]={nil,"Nearby Enemies have 100% reduced Life Regeneration rate "}c["Sword Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=4194304,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["Adds 10 to 20 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=20}},nil}c["12% increased Elemental Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="ElementalDamage",type="INC",value=12}},nil}c["Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "}c["10% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=10}},nil}c["Lose 40 Mana per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaDegen",type="BASE",value=40}},nil}c["Shock nearby Enemies for 4 Seconds when you Focus +1 to Minimum Frenzy Charges"]={nil,"Shock nearby Enemies for 4 Seconds when you Focus +1 to Minimum Frenzy Charges "}c["8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}},nil}c["10% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=10}},nil}c["20% chance to Impale Enemies on Hit with Attacks Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour"]={{[1]={flags=0,keywordFlags=65536,name="Armour",type="BASE",value=20}}," to Impale Enemies on Hit Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to "}c["20% increased Movement Speed when on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}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["1% increased Attack Speed per 200 Accuracy Rating"]={{[1]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil}c["20% increased Movement Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil}c["Socketed Gems are Supported by Level 16 Trap"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=16,skillId="SupportTrap"}}},nil}c["20% chance to Dodge Attacks while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=20}},nil}c["You have Phasing if you've Killed Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil}c["20% more Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="MORE",value=20}},nil}c["Attacks used by Totems have 10% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=10}},nil}c["40% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=40}},nil}c["+5% to Maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=5}},nil}c["Trap Damage Penetrates 5% Elemental Resistances"]={{[1]={flags=0,keywordFlags=4096,name="ElementalPenetration",type="BASE",value=5}},nil}c["Reflects 44 Physical Damage to Attackers on Block Curse Enemies with level 5 Vulnerability on Block"]={nil,"Reflects 44 Physical Damage to Attackers on Block Curse Enemies with level 5 Vulnerability on Block "}c["Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18"]={nil,"Elemental Ailments caused by your Skills spread to other nearby Enemies Radius: 18 "}c["Adds 20 to 30 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=30}},nil}c["+55% to Non-Ailment Chaos Damage over Time Multiplier 2% increased Cast Speed per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=55}}," Non-Ailment 2% increased Cast Speed "}c["+45 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=45}},nil}c["35% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=35}},nil}c["Gain 20% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=20}},nil}c["Enemies you Curse have Malediction"]={{[1]={flags=0,keywordFlags=0,name="AffectedByCurseMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil}c["298% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=298}},nil}c["25% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=25}},nil}c["Brand Skills have 20% increased Duration"]={{[1]={[1]={skillType=76,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}c["50% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["7% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=7}},nil}c["24% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=24}},nil}c["Adds 30 to 40 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=40}},nil}c["Adds 10 to 20 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=20}},nil}c["Minions have 8% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}}}},nil}c["+15 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=15}},nil}c["+1 to Maximum Frenzy Charges and Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=1}},nil}c["Adds 265 to 335 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=265},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=335}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit If you've Hit an Enemy Recently, you and nearby Allies Regenerate 3.0% of Life per second"]={{[1]={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," for each Summoned Sentinel of Purity Summoned Sentinels use Crusade Slam 100% increased Minion Accuracy Rating Minions Intimidate Enemies for 4 seconds on Hit , you and nearby Allies Regenerate 3.0% of Life per second "}c["Reflects 1 to 220 Lightning Damage to Attackers on Block 22% increased Global Defences"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block 22% increased Global Defences "}c["17% Chance to Block during Flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=17}},nil}c["18% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=18}},nil}c["Adds 185 to 225 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=185},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=225}},nil}c["Trigger a Socketed Spell when you Attack with a Bow"]={nil,"Trigger a Socketed Spell when you Attack with a Bow "}c["25% chance to gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance"]={{}," to gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance "}c["Minions deal 80% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=80}}}},nil}c["10% increased Skeleton Cast speed"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil}c["12% increased Minion Damage per Spectre you own"]={{[1]={[1]={skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}}," Minion per you own "}c["30% Chance to Dodge Attack Hits. 50% less Armour, 30% less Energy Shield, 30% less Chance to Block Spell and Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="Armour",type="MORE",value=-50},[3]={flags=0,keywordFlags=0,name="EnergyShield",type="MORE",value=-30},[4]={flags=0,keywordFlags=0,name="BlockChance",type="MORE",value=-30},[5]={flags=0,keywordFlags=0,name="SpellBlockChance",type="MORE",value=-30}},nil}c["9% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=9}},nil}c["Unaffected by Burning Ground while affected by Purity of Fire Unaffected by Flammability while affected by Purity of Fire"]={nil,"Unaffected by Burning Ground while affected by Purity of Fire Unaffected by Flammability while affected by Purity of Fire "}c["20% more Maximum Physical Attack Damage 40% more Maximum Physical Attack Damage"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamage",type="MORE",value=20}}," Maximum 40% more Maximum Physical Attack Damage "}c["Every 5 seconds, Regenerate 20% of Life over one second You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other"]={nil,"Every 5 seconds, Regenerate 20% of Life over one second You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other "}c["275% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=275}},nil}c["25% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["Your Damaging Hits always Stun Enemies that are on Full Life 20% chance to double Stun Duration"]={nil,"Your Damaging Hits always Stun Enemies that are on Full Life 20% chance to double Stun Duration "}c["With at least 40 Dexterity in Radius, Viper Strike has a 10% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit"]={nil,"With at least 40 Dexterity in Radius, Viper Strike has a 10% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit "}c["Adds 150 to 250 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=150},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=250}},nil}c["15% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=15}},nil}c["8% increased Global Defences per White Socket"]={{[1]={[1]={type="Global"},[2]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="Defences",type="INC",value=8}},nil}c["-10 Physical Damage taken from Hits -1 Physical Damage taken from Hits per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-10}}," from Hits -1 Physical Damage taken from Hits "}c["40% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=40}},nil}c["Remove all Ailments and Burning when you gain Adrenaline"]={nil,"Remove all Ailments and Burning when you gain Adrenaline "}c["Immune to Freeze and Chill while Ignited Damage Penetrates 15% of Fire Resistance if you have Blocked Recently"]={{[1]={[1]={type="Condition",var="Ignited"},[2]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=15}},"Immune and Chill Damage "}c["14% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=14}},nil}c["Gore Footprints 3% increased Damage against Enemies on Low Life per Frenzy Charge"]={nil,"Gore Footprints 3% increased Damage against Enemies on Low Life per Frenzy Charge "}c["10% reduced Damage taken from Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-10}},nil}c["50% chance to gain Elusive on Critical Strike 15% increased Attack and Cast Speed while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage from Critical Strikes while Elusive"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Speed",type="BASE",value=50}}," to gain Elusive 15% increased while Elusive 8% reduced Damage taken while Elusive 25% increased Elusive Effect You take no Extra Damage while Elusive "}c["100% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=100}},nil}c["38% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=38}},nil}c["+1 to Level of Socketed Cold Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="cold",value=1}}},nil}c["3% more Damage per Totem"]={{[1]={[1]={stat="ActiveTotemLimit",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=3}},nil}c["Adds 15 to 25 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=25}},nil}c["5% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=5}},nil}c["Adds 13 to 23 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=13},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=23}},nil}c["15% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=15}},nil}c["70% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=70}},nil}c["Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth You have Phasing while you have Cat's Stealth"]={nil,"Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth You have Phasing while you have Cat's Stealth "}c["+2 to Level of Socketed Curse Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="curse",value=2}}},nil}c["+20 to All Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil}c["Enemies you inflict Bleeding on grant 100% increased Flask Charges Adds 120 to 165 Physical Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMin",type="BASE",value=120},[2]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=262144,name="PhysicalMax",type="BASE",value=165}},"Enemies you inflict Bleeding on grant 100% increased Flask Charges "}c["10% chance to double Stun Duration 24% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon 4% chance to deal Double Damage"]={{[1]={[1]={type="Condition",var="UsingTwoHandedWeapon"},flags=2048,keywordFlags=65536,name="EnemyStunDuration",type="BASE",value=10}}," to double 24% increased Damage 4% chance to deal Double Damage "}c["Minions cannot be Blinded"]={nil,"cannot be Blinded "}c["Minions deal 51 to 78 additional Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=51}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=78}}}},nil}c["Recover 25% of Life when you gain Adrenaline"]={nil,"Recover 25% of Life when you gain Adrenaline "}c["20% increased Spell Damage if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Adds 35 to 60 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=35},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=60}},nil}c["You Cannot Be Shocked While Chilled 50% chance to Shock Chilled Enemies"]={nil,"You Cannot Be Shocked While Chilled 50% chance to Shock Chilled Enemies "}c["Adds 6 to 80 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=80}},nil}c["12% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=12},[2]={flags=0,keywordFlags=0,name="Multiplier:GrandSpectrum",type="BASE",value=1}},nil}c["25% chance to Blind Enemies on Hit Nearby Enemies are Blinded"]={{}," to Blind Enemies on Hit Nearby Enemies are Blinded "}c["Each Mine applies 2% reduced Damage dealt to Enemies near it, up to 10%"]={nil,"Each Mine applies 2% reduced Damage dealt to Enemies near it, up to 10% "}c["+2 to Level of Socketed Spell Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="spell",value=2}}},nil}c["10% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=10}},nil}c["Grants 2 Passive Skill Points"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=2}},nil}c["+1 to Level of Socketed Support Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="support",value=1}}},nil}c["Grants level 1 Icestorm Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="IcestormUniqueStaff12"}}},nil}c["26% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=26}},nil}c["Raised Zombies have +2000 to maximum Life"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="BASE",value=2000}}}},nil}c["25% increased Effect of Buffs granted by your Golems per Summoned Golem"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}}," per Summoned "}c["2% additional Chance to receive a Critical Strike Nearby Enemies have 10% reduced Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="BASE",value=2}}," to receive a Critical Strike Nearby Enemies have 10% reduced "}c["2% of Attack Damage Leeched as Life against Taunted Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Taunted"},flags=1,keywordFlags=262144,name="DamageLifeLeech",type="BASE",value=2}},nil}c["Nova Spells Cast at the targeted location instead of around you"]={nil,"Nova Spells Cast at the targeted location instead of around you "}c["Adds 1 to 70 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=70}},nil}c["20% reduced Reflected Physical Damage taken Enemies have -5% to Total Physical Damage Reduction against your Hits 4% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-20}}," Reflected Enemies have -5% to Total Physical Damage Reduction against your Hits 4% chance to deal Double Damage "}c["Adds 1 to 60 Lightning Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=60}},nil}c["10% increased Area of Effect for each Summoned Sentinel of Purity"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}," for each Summoned Sentinel of Purity "}c["Shocks all nearby Enemies on Killing a Shocked Enemy Ignite a nearby Enemy on Killing an Ignited Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy Ignite a nearby Enemy on Killing an Ignited Enemy "}c["Gain 30% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=30}},nil}c["Channelling Skills deal 10% increased Attack Damage"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Adds 4 to 9 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=9}},nil}c["Hits with this Weapon deal 45% increased Damage to Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=45}},nil}c["5% reduced Enemy Stun Threshold with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-5}},nil}c["75% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=75}},nil}c["20% less Fire Damage taken"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTaken",type="MORE",value=-20}},nil}c["75% reduced Effect of Chill on You"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-75}},nil}c["10% increased Attack Speed with Staves"]={{[1]={flags=2097157,keywordFlags=0,name="Speed",type="INC",value=10}},nil}c["Adds 1 to 12 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=12}},nil}c["Adds 14 to 28 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=14},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=28}},nil}c["+2 to Level of Socketed Golem Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="golem",value=2}}},nil}c["Adds 23 to 40 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=23},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=40}},nil}c["Adds 60 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=140}},nil}c["15% increased Attack Speed with Claws"]={{[1]={flags=262149,keywordFlags=0,name="Speed",type="INC",value=15}},nil}c["25% of Block Chance applied to Spells"]={{[1]={flags=2,keywordFlags=0,name="BlockChance",type="BASE",value=25}}," applied to s "}c["60% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=60}},nil}c["2% more Attack Speed per Blitz Charge"]={{[1]={[1]={type="Multiplier",var="BlitzCharge"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=2}},nil}c["10% chance that if you would gain a Crab Barrier, you instead gain up to"]={{}," that if you would gain a Crab Barrier, you instead gain up to "}c["+1% to maximum Fire Resistance while affected by Herald of Ash"]={{[1]={[1]={type="Condition",var="AffectedByHeraldofAsh"},flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=1}},nil}c["When used in the Synthesiser, the new item will have an additional Herald Modifier"]={nil,"When used in the Synthesiser, the new item will have an additional Herald Modifier "}c["Recover 3% of Maximum Mana on Kill"]={nil,"Recover 3% of Maximum Mana on Kill "}c["7% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=7}},nil}c["Herald of Ash has 100% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Ash",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil}c["+60% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=60}},nil}c["20% more Damage while there is at most one Rare or Unique Enemy nearby"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=20}}," while there is at most one Rare or Unique Enemy nearby "}c["Adds 20 to 30 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=30}},nil}c["50% increased Effect of Buffs granted by your Active Ancestor Totems"]={{[1]={[1]={skillNameList={[1]="Ancestral Warchief",[2]="Ancestral Protector"},type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=50}},nil}c["100% increased Physical Damage while you have Resolute Technique"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}}," while you have Resolute Technique "}c["Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy Kill Enemies that have 20% or lower Life when Hit by your Skills"]={nil,"Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy Kill Enemies that have 20% or lower Life when Hit by your Skills "}c["Sword Attacks deal 14% increased Damage with Hits and Ailments"]={{[1]={flags=4194304,keywordFlags=786432,name="Damage",type="INC",value=14}},nil}c["Adds 1 to 54 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=54}},nil}c["15% increased Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=15},[2]={flags=0,keywordFlags=0,name="Dex",type="INC",value=15},[3]={flags=0,keywordFlags=0,name="Int",type="INC",value=15}},nil}c["+300 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=300}},nil}c["Resolute Technique"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Resolute Technique"}},nil}c["+325 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=325}},nil}c["16% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=16}},nil}c["+35% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=35}},nil}c["8% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=8}},nil}c["Cannot take Reflected Physical Damage"]={nil,"Cannot take Reflected Physical Damage "}c["50% increased Damage while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["5% additional Block Chance while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil}c["10% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-10}},nil}c["1 Life Regenerated per second per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=1}},nil}c["Adds 20 to 30 Physical Damage to Attacks if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=20},[2]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=30}},nil}c["7% increased Movement Speed when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=7}},nil}c["8% increased Accuracy Rating with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Accuracy",type="INC",value=8}},nil}c["10% increased Damage with Maces and Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+100% to Cold Resistance when Socketed with a Green Gem +100% to Lightning Resistance when Socketed with a Blue Gem"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=100}}," when Socketed with a Green Gem +100% to Lightning Resistance when Socketed with a Blue Gem "}c["+290 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=290}},nil}c["Socketed Gems have Elemental Equilibrium"]={nil,"Elemental Equilibrium "}c["Socketed Gems have 40% reduced Elemental Equilibrium effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-40}}}}," Elemental Equilibrium "}c["Adds 32 to 48 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ColdMin",type="BASE",value=32},[2]={flags=0,keywordFlags=65536,name="ColdMax",type="BASE",value=48}},nil}c["Adds 4 to 12 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=12}},nil}c["10% chance to gain Arcane Surge when you Kill an Enemy Minions have 28% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="BASE",value=10}}," to gain Arcane Surge when you Kill an Enemy Minions have 28% increased "}c["Can have up to 1 additional Trap placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTrapLimit",type="BASE",value=1}},nil}c["You can only have one Permanent Non-Banner Aura on you from your Skills Your Non-Banner Skills that create Permanent Auras on you do not Reserve Mana"]={nil,"You can only have one Permanent Non-Banner Aura on you from your Skills Your Non-Banner Skills that create Permanent Auras on you do not Reserve Mana "}c["40% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-40}},nil}c["8% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-8}},nil}c["20% increased Attack Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=1,keywordFlags=0,name="Speed",type="INC",value=20}},nil}c["Socketed Gems are Supported by level 13 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=13,skillId="SupportFasterAttack"}}},nil}c["30 Life Gained on Igniting an Enemy 15% increased Ignite Duration on Enemies"]={nil,"30 Life Gained on Igniting an Enemy 15% increased Ignite Duration on Enemies "}c["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws 20% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=262148,keywordFlags=0,name="Damage",type="BASE",value=25}}," to Steal Power, Frenzy, and Endurance Charges on Hit 20% increased with Ailments from Attack Skills "}c["15% increased Item Quantity per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},nil}c["30% increased Elemental Damage with Attack Skills while using a Flask"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=30}},nil}c["+1 to Level of all Raise Spectre Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="raise spectre",value=1}}},nil}c["Channelling Skills have 4% increased Attack Speed"]={{[1]={[1]={skillType=58,type="SkillType"},flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Socketed Gems are Supported by level 12 Lesser Multiple Projectiles"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=12,skillId="SupportLesserMultipleProjectiles"}}},nil}c["30% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}},nil}c["10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web 10% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}}," to gain a Power Charge on hitting an Enemy affected by a Spider's Web 10% chance "}c["15 Life Regenerated per second for each Uncorrupted Item Equipped"]={{[1]={[1]={type="Multiplier",var="NonCorruptedItem"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=15}},nil}c["Regenerate 2% of Life per second during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["50% chance on Block to create Consecrated Ground 100% chance on Block to create Consecrated Ground"]={{}," on Block to create Consecrated Ground 100% chance on Block to create Consecrated Ground "}c["Left ring slot: 40 Mana Regenerated per second"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=40}},nil}c["Minions have 4% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=4}}}},nil}c["Adds 15 to 28 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=15},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=28}},nil}c["+15% to Fire Damage over Time Multiplier while Burning"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=15}}," while Burning "}c["Left ring slot: 30% reduced Reflected Elemental Damage taken Left ring slot: 40% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=-30}}," Reflected Left ring slot: 40% reduced Reflected Elemental Damage taken "}c["10% increased Effect of Fortify on you"]={{[1]={flags=0,keywordFlags=0,name="FortifyEffectOnSelf",type="INC",value=10}},nil}c["Right ring slot: 30% reduced Reflected Physical Damage taken Right ring slot: 40% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=-30}}," Reflected Right ring slot: 40% reduced Reflected Physical Damage taken "}c["Attacks with Two Handed Melee Weapons deal 14% increased Damage with Ailments"]={{[1]={flags=301991936,keywordFlags=0,name="Damage",type="INC",value=14}},nil}c["Adds 225 to 600 Lightning Damage to Unarmed Attacks"]={{[1]={flags=16777220,keywordFlags=0,name="LightningMin",type="BASE",value=225},[2]={flags=16777220,keywordFlags=0,name="LightningMax",type="BASE",value=600}},nil}c["5 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=5}},nil}c["Projectiles from Spells cannot Pierce"]={{[1]={flags=2,keywordFlags=0,name="CannotPierce",type="FLAG",value=true}},nil}c["Adds 3 to 70 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=458752,name="LightningMin",type="BASE",value=3},[2]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=458752,name="LightningMax",type="BASE",value=70}},nil}c["15% increased Accuracy Rating with Two Handed Melee Weapons"]={{[1]={flags=301989892,keywordFlags=0,name="Accuracy",type="INC",value=15}},nil}c["Adds 2 to 66 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=458752,name="LightningMin",type="BASE",value=2},[2]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=458752,name="LightningMax",type="BASE",value=66}},nil}c["+35% to Melee Critical Strike Multiplier if you've Warcried Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=35}},nil}c["25% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=25}},nil}c["+100% to Lightning Resistance when Socketed with a Blue Gem All Sockets are White"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=100}}," when Socketed with a Blue Gem All Sockets are White "}c["Adds 40 to 60 Cold Damage against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdMin",type="BASE",value=40},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdMax",type="BASE",value=60}},nil}c["Attack Skills deal 24% increased Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=24}},nil}c["+2 to Level of Socketed Herald Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="herald",value=2}}},nil}c["Can't use other Rings"]={nil,"Can't use other Rings "}c["10% increased Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["+250 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=250}},nil}c["Your hits can't be Evaded"]={{[1]={flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil}c["12% increased Attack and Cast Speed per Ghost Shroud"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=12}}," per Ghost Shroud "}c["40% increased Damage against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},nil}c["Regenerate 0.6% of Life per second for each Raised Zombie"]={{[1]={[1]={skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.6}}}}," for each "}c["Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies"]={nil,"Nearby Enemies are Blinded 30% increased Damage with Hits and Ailments against Blinded Enemies "}c["Adds 0 to 3 Lightning Damage to Attacks per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=0},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=3}},nil}c["+13% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=13}},nil}c["10% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to Armour You and nearby Allies deal 6 to 12 added Physical Damage for\neach Impale on Enemy"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},"Impales you inflict last 2 additional Hits If you've Impaled an Enemy Recently, you\nand nearby Allies have +1000 to You and nearby Allies deal for\neach Impale on Enemy "}c["+15% to Lightning and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=15}},nil}c["+17 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=17},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=17}},nil}c["+5 to Level of Socketed Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="all",value=5}}},nil}c["Adds 15 to 50 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=50}},nil}c["30% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-30}},nil}c["23% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=23}},nil}c["+19% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=19}},nil}c["Ignites you inflict with Attacks deal Damage 20% faster"]={{[1]={flags=1,keywordFlags=0,name="IgniteBurnFaster",type="INC",value=20}},nil}c["50% chance to gain a Power Charge on Killing a Frozen Enemy"]={{}," to gain a Power Charge on Killing a Frozen Enemy "}c["Adds 285 to 330 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=285},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=330}},nil}c["2% more Attack and Movement Speed per Challenger Charge"]={{[1]={[1]={type="Multiplier",var="ChallengerCharge"},flags=0,keywordFlags=0,name="Speed",type="MORE",value=2},[2]={[1]={type="Multiplier",var="ChallengerCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="MORE",value=2}},nil}c["+120 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=120}},nil}c["Your Flasks grant 10% chance to Ignite during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}},nil}c["20% increased Damage against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=20}},nil}c["Adds 15 to 30 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=30}},nil}c["+20% to Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=20}},nil}c["110% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=110}},nil}c["50% reduced Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=-50}},nil}c["5% increased Maximum total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=5}},nil}c["3% increased Damage taken per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=3}},nil}c["Adds 9 to 17 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=9},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=17}},nil}c["Blind Chilled Enemies on Hit"]={nil,"Blind Chilled Enemies on Hit "}c["With at least 40 Dexterity in Radius, Burning"]={nil,"With at least 40 Dexterity in Radius, Burning "}c["Adds 70 to 165 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=165}},nil}c["0.3% of Physical Attack Damage Leeched as Mana per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=0.3}},nil}c["3 Mana Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=3}},nil}c["Adds 60 to 150 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=150}},nil}c["Mace or Sceptre Attacks deal 12% increased Damage with Ailments"]={{[1]={flags=1050624,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["+1 to Level of Socketed Bow Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="bow",value=1}}},nil}c["15% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=15}},nil}c["150% increased Elemental Damage if you've used a Warcry Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=150}},nil}c["You take 20% reduced Extra Damage from Critical Strikes"]={nil,"You take 20% reduced Extra Damage from Critical Strikes "}c["Nearby Allies Intimidate Enemies for 4 seconds on Hit"]={nil,"Nearby Allies Intimidate Enemies for 4 seconds on Hit "}c["50% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=50}},nil}c["130% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=130}},nil}c["10% chance to gain a Power Charge on Critical Strike 20% chance to gain a Power Charge on Non-Critical Strike"]={{}," to gain a Power Charge 20% chance to gain a Power Charge on Non-Critical Strike "}c["Enemies Taunted by your Warcries are Intimidated"]={nil,"Enemies Taunted by your Warcries are Intimidated "}c["10% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-10}},nil}c["10% increased Experience Gain of Corrupted Gems"]={{}," Experience Gain of Corrupted Gems "}c["Adds 15 to 25 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=25}},nil}c["Adds 40 to 85 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=85}},nil}c["30% increased Damage if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=30}},nil}c["+38 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=38},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=38}},nil}c["Blind Chilled Enemies on Hit Damage Penetrates 20% Cold Resistance against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="ColdPenetration",type="BASE",value=20}},"Blind Chilled Enemies on Hit "}c["Fire Spells have 10% of Physical Damage Converted to Fire Damage"]={{[1]={flags=2,keywordFlags=16,name="PhysicalDamageConvertToFire",type="BASE",value=10}},nil}c["Axe Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=65536,keywordFlags=786432,name="Damage",type="INC",value=12}},nil}c["6% increased Damage per Enemy Killed by you or your Totems Recently"]={{[1]={[1]={type="Multiplier",varList={[1]="EnemyKilledRecently",[2]="EnemyKilledByTotemsRecently"}},flags=0,keywordFlags=0,name="Damage",type="INC",value=6}},nil}c["50% less Energy Shield Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegen",type="MORE",value=-50}},nil}c["28% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-28}},nil}c["+70 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=70}},nil}c["+40% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=40}},nil}c["Vaal Skills deal 35% more Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=256,name="Damage",type="MORE",value=35}},nil}c["Impales you inflict last 2 additional Hits"]={nil,"Impales you inflict last 2 additional Hits "}c["+500 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=500}},nil}c["Adds 60 to 110 Fire Damage in Main Hand"]={{[1]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=60},[2]={[1]={num=1,type="InSlot"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=110}},nil}c["+30 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=30}},nil}c["50% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=50}},nil}c["You gain an Endurance Charge on use 100% increased Charges used"]={nil,"You gain an Endurance Charge on use 100% increased Charges used "}c["Extra gore"]={nil,"Extra gore "}c["Regenerate 2% of Life per second if a Minion has Died Recently"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}}," if a Minion has Died Recently "}c["5% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=5}},nil}c["Rampage 1% increased Rarity of Items found per 15 Rampage Kills"]={nil,"Rampage 1% increased Rarity of Items found per 15 Rampage Kills "}c["You are Cursed with Level 20 Vulnerability"]={{[1]={flags=0,keywordFlags=0,name="ExtraCurse",type="LIST",value={applyToPlayer=true,level=20,skillId="Vulnerability"}}},nil}c["Cover Enemies in Ash when they Hit you"]={nil,"Cover Enemies in Ash when they Hit you "}c["Cannot be Ignited if Strength is higher than Dexterity"]={{[1]={[1]={type="Condition",var="StrHigherThanDex"},flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}},nil}c["Cannot be Shocked if Intelligence is higher than Strength"]={{[1]={[1]={type="Condition",var="IntHigherThanStr"},flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=100}},nil}c["Adds 18 to 27 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=27}},nil}c["0.2% of Cold Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageLifeLeech",type="BASE",value=0.2}},nil}c["Your Flasks grant 25% reduced Enemy Stun Threshold during flask effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil}c["their Maximum Life as Lightning Damage which cannot Shock"]={nil,"their Maximum Life as Lightning Damage which cannot Shock "}c["Gain 12% of Physical Damage as Extra Chaos Damage while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=12}},nil}c["60% increased Flask effect duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=60}},nil}c["13% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=13}},nil}c["18% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=18}},nil}c["18% increased Cooldown Recovery Speed"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=18}},nil}c["Adds 74 to 121 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=74},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=121}},nil}c["Minions have 7% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=7}}}},nil}c["33% chance to Blind nearby Enemies when gaining Her Blessing Cannot be Frozen, Chilled or Ignited with Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing Cannot be Frozen, Chilled or Ignited with Her Blessing "}c["+1 Energy Shield gained on Kill per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}}," gained on Kill "}c["25% increased Physical Damage with Axes"]={{[1]={flags=65540,keywordFlags=0,name="PhysicalDamage",type="INC",value=25}},nil}c["8% reduced Area Damage taken from Hits"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-8}}," from Hits "}c["Socketed Gems are Supported by level 18 Blind"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportBlind"}}},nil}c["Golems have 15% increased Maximum Life"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=15}}}},nil}c["25% chance to inflict Fire Exposure on Hit"]={{}," to inflict Fire Exposure on Hit "}c["Gain 15% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=15}},nil}c["For each Element you've been hit by Damage of Recently, 40% increased Damage of that Element"]={{[1]={[1]={type="Condition",var="HitByFireDamageRecently"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=40},[2]={[1]={type="Condition",var="HitByColdDamageRecently"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=40},[3]={[1]={type="Condition",var="HitByLightningDamageRecently"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=40}},nil}c["+8% chance to Evade Attacks while affected by Grace"]={{[1]={[1]={type="Condition",var="AffectedByGrace"},flags=0,keywordFlags=0,name="EvadeChance",type="BASE",value=8}},nil}c["15% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=15}},nil}c["75 Life Regenerated per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=75}},nil}c["40% increased Armour while not Ignited, Frozen or Shocked"]={{[1]={[1]={neg=true,type="Condition",varList={[1]="Ignited",[2]="Frozen",[3]="Shocked"}},flags=0,keywordFlags=0,name="Armour",type="INC",value=40}},nil}c["Curse Skills have 20% increased Skill Effect Duration"]={{[1]={[1]={skillType=32,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}c["+100 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=100}},nil}c["Herald of Thunder has 100% increased Buff Effect"]={{[1]={[1]={skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil}c["30% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=30}},nil}c["-10 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="BASE",value=-10}}," from Projectile Attacks "}c["20% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Minions have 10% chance to Dodge Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AttackDodgeChance",type="BASE",value=10}}}},nil}c["25% increased Totem Placement range"]={{}," Placement range "}c["20% chance to gain a Frenzy Charge on Killing a Frozen Enemy Skills Chain an additional time while at maximum Frenzy Charges"]={{}," to gain aCharge on Killing a Frozen Enemy Skills Chain an additional time "}c["You count as Dual Wielding while you are Unencumbered 60% more Attack Speed while you are Unencumbered 14 to 20 Added Attack Physical Damage per 10 Dexterity while you are Unencumbered"]={nil,"You count as Dual Wielding while you are Unencumbered 60% more Attack Speed while you are Unencumbered 14 to 20 Added Attack Physical Damage per 10 Dexterity while you are Unencumbered "}c["Minions have 33% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-33}}}},nil}c["Minions have 65% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=65}}}},nil}c["48% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=48}},nil}c["+1 to Melee range with Axes"]={{[1]={flags=65540,keywordFlags=0,name="MeleeWeaponRange",type="BASE",value=1}},nil}c["Your Critical Strike Chance is Lucky"]={{[1]={flags=0,keywordFlags=0,name="CritChanceLucky",type="FLAG",value=true}},nil}c["+150 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=150}},nil}c["Auras from your Skills grant 2% increased Attack and Cast Speed to you and Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAuraEffect",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}}},nil}c["50% increased Attack Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=1,keywordFlags=0,name="Damage",type="INC",value=50}},nil}c["37% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=37}},nil}c["Adds 1 to 34 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=34}},nil}c["1% increased Evasion Rating per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=1}},nil}c["200% of Life Leech applies to enemies as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="LifeAsChaos",type="BASE",value=200}}," Leech applies to enemies "}c["20% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=20}},nil}c["15% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=15}},nil}c["5% increased Cast Speed with Lightning Skills"]={{[1]={flags=16,keywordFlags=64,name="Speed",type="INC",value=5}},nil}c["Attacks have 25% chance to cause Bleeding when Hitting Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=1,keywordFlags=262144,name="BleedChance",type="BASE",value=25}},nil}c["100% increased Chill Duration on Enemies when in Off Hand"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=100}},nil}c["16% increased Physical Damage with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["+1% Chance to Block Attack Damage per Summoned Skeleton 2% increased Minion Attack and Cast Speed per Skeleton you own"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=1}}}}," per Summoned 2% increased Minion Attack and Cast Speed per Skeleton you own "}c["You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them"]={nil,"You can Cast an additional Brand Enemies take 10% increased Damage for each of your Brands Attached to them "}c["Gain 6% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeGainAsEnergyShield",type="BASE",value=6}},nil}c["Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy"]={nil,"Gain Onslaught for 20 seconds when you Kill a Rare or Unique Enemy "}c["20% chance when Placing Mines to Place an additional Mine 100% increased Mine Arming Speed"]={{}," when Placing s to Place an additional Mine 100% increased Mine Arming Speed "}c["Historic"]={nil,"Historic "}c["Wrath has 60% increased Aura Effect"]={{[1]={[1]={skillName="Wrath",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil}c["Knocks Back Enemies in an Area on Flask use"]={nil,"Knocks Back Enemies in an Area on Flask use "}c["12% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=2,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["8% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Traps trigger at the end of their Duration"]={nil,"Traps trigger at the end of their Duration "}c["Adds 3 to 6 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=3},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=6}},nil}c["Adds 5 to 10 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=5},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=10}},nil}c["20% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-20}},nil}c["Adds 130 to 190 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=130},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=190}},nil}c["2% of Life Regenerated per second during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil}c["+20% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=20}},nil}c["+33% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=33}},nil}c["140% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=140}},nil}c["25% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=25}},nil}c["10% increased Accuracy Rating with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="Accuracy",type="INC",value=10}},nil}c["8% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=8}},nil}c["6% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=6}},nil}c["100% of Lightning Damage from Hits taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTakenAsFire",type="BASE",value=100}},nil}c["12% increased Accuracy Rating with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Accuracy",type="INC",value=12}},nil}c["Adds 4 to 8 Fire Damage to Attacks with Bows"]={{[1]={flags=131076,keywordFlags=0,name="FireMin",type="BASE",value=4},[2]={flags=131076,keywordFlags=0,name="FireMax",type="BASE",value=8}},nil}c["Socketed Gems are supported by level 5 Blind"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=5,skillId="SupportBlind"}}},nil}c["Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem"]={nil,"Skills that would Summon a Totem Summon two Totems instead You and your Totems Regenerate 1% of Life per second per Totem "}c["You have Onslaught while on full Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["20% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=20}},nil}c["263% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=263}},nil}c["Adds 30 to 92 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=92}},nil}c["Gain 15% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=15}},nil}c["2% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=2}},nil}c["Adds 27 to 86 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=27},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=86}},nil}c["Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds"]={nil,"Skills used during Flask effect grant 600% of Mana Cost as Life over 4 Seconds "}c["Gain 14% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=14}},nil}c["+2 to Level of Socketed Cold Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="cold",value=2}}},nil}c["20% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=20}},nil}c["10% increased Wand Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=8388612,keywordFlags=0,name="Damage",type="INC",value=10}},nil}c["You and nearby Party members gain 5 Rage when you Warcry"]={nil,"You and nearby Party members gain 5 Rage when you Warcry "}c["+1 to Level of Socketed Active Skill Gems per 25 Player Levels"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={div=25,type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="active_skill",value=1}}},nil}c["4% increased Attack Speed while holding a Shield"]={{[1]={[1]={type="Condition",var="UsingShield"},flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil}c["Adds 31 to 100 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=31},[2]={flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=100}},nil}c["Adds 1 to 45 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=45}},nil}c["14 to 20 Added Attack Physical Damage per 10 Dexterity while you are Unencumbered"]={nil,"14 to 20 Added Attack Physical Damage per 10 Dexterity while you are Unencumbered "}c["50% chance to gain a Power Charge on Killing a Frozen Enemy Adds 15 to 25 Cold Damage to Spells per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="ColdDamage",type="BASE",value=50}}," to gain a Power Charge on Killing a Frozen Enemy Adds 15 to 25 to s "}c["Culling Strike"]={{},"Culling Strike"}c["Adds 8 to 17 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=17}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding an Axe"]={{[1]={[1]={type="Condition",var="UsingAxe"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["Adds 40 to 60 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=60}},nil}c["3% increased Attack Speed with One Handed Melee Weapons"]={{[1]={flags=167772165,keywordFlags=0,name="Speed",type="INC",value=3}},nil}c["1% additional Physical Damage Reduction per Summoned Sentinel of Purity"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}}," per Summoned Sentinel of Purity "}c["35% less Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="MORE",value=-35}},nil}c["+30% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=30}},nil}c["2% increased Attack and Cast Speed for each corpse consumed Recently"]={{[1]={[1]={type="Multiplier",var="CorpseConsumedRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=2}},nil}c["You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving 50% less Damage with Bleeding"]={nil,"You can inflict Bleeding on an Enemy up to 8 times Your Bleeding does not deal extra Damage while the Enemy is moving 50% less Damage with Bleeding "}c["+30 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=30}},nil}c["10% chance to Impale Enemies on Hit with Attacks 15% increased Effect of Impales inflicted by Hits that also inflict Bleeding"]={{[1]={flags=0,keywordFlags=65536,name="FlaskEffect",type="BASE",value=10}}," to Impale Enemies on Hit 15% increased of Impales inflicted by Hits that also inflict Bleeding "}c["20% increased Physical Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil}c["4% reduced Enemy Stun Threshold with Maces"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-4}},nil}c["+70 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=70}},nil}c["16% increased Physical Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="PhysicalDamage",type="INC",value=16}},nil}c["If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage"]={nil,"If you've Blocked in the past 10 seconds, you and nearby Allies cannot be Stunned If you've Attacked Recently, you\nand nearby Allies have +10% Chance to Block Attack Damage If you've Cast a Spell Recently, you\nand nearby Allies have +10% Chance to Block Spell Damage "}c["Take 5 Physical Damage when hit by Attacks Pain Attunement"]={nil,"5 Physical Damage when hit by Attacks Pain Attunement "}c["3% increased Recovery Rate of Life and Energy Shield per Minion, up to 30%"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=3}}," of Life and Energy Shield per Minion, up to 30% "}c["Attack Skills fire an additional Projectile while wielding a Claw or Dagger"]={nil,"Attack Skills fire an additional Projectile while wielding a Claw or Dagger "}c["20% increased Accuracy Rating with Claws"]={{[1]={flags=262148,keywordFlags=0,name="Accuracy",type="INC",value=20}},nil}c["Shocks you cause are reflected back to you 60% increased Damage while Shocked"]={nil,"Shocks you cause are reflected back to you 60% increased Damage while Shocked "}c["You gain Phasing for 3 seconds on using a Vaal Skill You gain Phasing for 10 seconds on using a Vaal Skill"]={nil,"You gain Phasing for 3 seconds on using a Vaal Skill You gain Phasing for 10 seconds on using a Vaal Skill "}c["+1 to Level of Socketed Curse Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="curse",value=1}}},nil}c["Each Summoned Phantasm grants you Phantasmal Might"]={nil,"Each Summoned Phantasm grants you Phantasmal Might "}c["Auras from your Skills grant 2% increased Attack and Cast"]={{}," Attack and Cast "}c["60% increased Critical Strike Chance against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=262144,name="CritChance",type="INC",value=60}},nil}c["Regenerate 100 Energy Shield per second if all Equipped Items are Corrupted"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="NonCorruptedItem"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=100}},nil}c["40% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=40}},nil}c["Gain 8% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=8}},nil}c["Skeletons deal 40% increased Damage"]={{[1]={[1]={skillName="Summon Skeleton",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}}}},nil}c["Adds 21 to 36 Chaos Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ChaosMin",type="BASE",value=21},[2]={flags=0,keywordFlags=131072,name="ChaosMax",type="BASE",value=36}},nil}c["Gain 5% of Maximum Mana as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ManaGainAsEnergyShield",type="BASE",value=5}},nil}c["10% chance to Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=10}},nil}c["+15 Mana gained for each Enemy hit by your Attacks"]={{[1]={flags=1,keywordFlags=0,name="ManaOnHit",type="BASE",value=15}},nil}c["+75 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=75}},nil}c["You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other While there are at least five nearby Allies, you and nearby Allies have Onslaught"]={nil,"You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other While there are at least five nearby Allies, you and nearby Allies have Onslaught "}c["15% increased Mine Duration"]={{[1]={flags=0,keywordFlags=0,name="MineDuration",type="INC",value=15}},nil}c["+80 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=80}},nil}c["Minions have +17% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=17}}}},nil}c["15% chance to gain a Frenzy Charge and a Power Charge on Kill 5% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=15}}," to gain aCharge and a Power Charge on Kill 5% increased "}c["20% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=20}},nil}c["25% chance to Sap Enemies"]={{}," to Sap Enemies "}c["25% chance to Sap Enemies Cannot inflict Shock"]={{}," to Sap Enemies Cannot inflict Shock "}c["170% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=170}},nil}c["Grants Summon Harbinger of Storms Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfStorms"}}},nil}c["Enemies Taunted by you take 10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil}c["Socketed Gems are Supported by level 18 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=18,skillId="SupportFasterAttack"}}},nil}c["Socketed Gems are Supported by level 12 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=12,skillId="SupportFasterAttack"}}},nil}c["+8 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=8}},nil}c["Gain 20% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=20}},nil}c["Gain a Power Charge after Spending a total of 200 Mana +1 to Maximum Power Charges"]={nil,"Gain a Power Charge after Spending a total of 200 Mana +1 to Maximum Power Charges "}c["25% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=25}},nil}c["Extra Gore"]={nil,"Extra Gore "}c["Minions have 10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}}}},nil}c["Minions have +350 to Armour"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=350}}}},nil}c["You and Allies affected by your Aura Skills deal 30% increased Damage"]={nil,"You and Allies affected by your Aura Skills deal 30% increased Damage "}c["60% increased Mana Regeneration Rate while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=60}},nil}c["10% chance to double Stun Duration 4% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="BASE",value=10}}," to double 4% chance to deal Double Damage "}c["+4% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=4}},nil}c["Summoned Holy Relics have 25% reduced Cooldown Recovery Speed"]={{[1]={[1]={skillName="Summon Holy Relic",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=-25}}}},nil}c["+16 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=16},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=16}},nil}c["50% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=50}},nil}c["8% increased Area of Effect while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=8}},nil}c["or Unique Enemy"]={nil,"or Unique Enemy "}c["20% increased Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Damage",type="INC",value=20}},nil}c["Every 5 seconds, remove Curses and Elemental Ailments from you Every 5 seconds, 30% of Maximum Life Regenerated over one second"]={nil,"Every 5 seconds, remove Curses and Elemental Ailments from you Every 5 seconds, 30% of Maximum Life Regenerated over one second "}c["Ignited Enemies Burn 65% slower"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnSlower",type="INC",value=65}},nil}c["+0 seconds to Avian's Flight Duration"]={{[1]={[1]={skillName="Aspect of the Avian",type="SkillName"},flags=0,keywordFlags=0,name="SecondaryDuration",type="BASE",value=0}},nil}c["+200 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=200}},nil}c["40% increased Lightning Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="LightningDamage",type="INC",value=40}},nil}c["+50 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=50},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=50}},nil}c["Nearby Allies have 6% increased Defences per 100 Strength you have"]={{[1]={[1]={div=100,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Defences",type="INC",value=6},onlyAllies=true}}},nil}c["Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline"]={nil,"Gain Adrenaline for 20 seconds when you reach Low Life if you do not have Adrenaline "}c["+100 to Maximum Mana per Green Socket"]={{[1]={[1]={type="Multiplier",var="GreenSocketIn{SlotName}"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=100}},nil}c["10% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-10}},nil}c["Hits with this Weapon deal 60% increased Damage to Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Ignited"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=60}},nil}c["Grants level 1 Lightning Warp Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="LightningWarp"}}},nil}c["25% increased Area of Effect while you have Arcane Surge"]={{[1]={[1]={type="Condition",var="AffectedByArcaneSurge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil}c["Enemies you Kill that are affected by Elemental Ailments"]={nil,"Enemies you Kill that are affected by Elemental Ailments "}c["+18% to Quality 16% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="BASE",value=18}}," Quality 16% increased "}c["10% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}},nil}c["For each nearby corpse, you and nearby Allies Regenerate 5 Mana"]={nil,"For each nearby corpse, you and nearby Allies Regenerate 5 Mana "}c["Socketed Curse Gems are Supported by Level 22 Blasphemy"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=22,skillId="SupportBlasphemy"}}},nil}c["Adds 54 to 88 Cold Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=54},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=88}},nil}c["Adds 64 to 107 Fire Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=64},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=107}},nil}c["Adds 14 to 173 Lightning Damage to Spells while no Life is Reserved"]={{[1]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=14},[2]={[1]={stat="LifeReserved",threshold=0,type="StatThreshold",upper=true},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=173}},nil}c["+20% chance to be Shocked 30% of Lightning Damage is taken from Mana before Life when Hit"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="BASE",value=20}}," to be Shocked 30% of is taken from Mana before Life when Hit "}c["100% of Damage Leeched as Life if you've taken a Savage Hit Recently"]={{[1]={[1]={type="Condition",var="BeenSavageHitRecently"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=100}},nil}c["10% chance to Knock Enemies Back on hit"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=10}},nil}c["Attack Skills deal 20% increased Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=65536,name="Damage",type="INC",value=20}},nil}c["+18% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=18}},nil}c["8% of Damage taken gained as Mana over 4 seconds when Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=8}}," gained as Mana over 4 seconds when Hit "}c["Adds 1 to 50 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=50}},nil}c["Adds 1 to 80 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=80}},nil}c["Adds 5 to 12 Fire Attack Damage per Buff on You"]={{[1]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=5},[2]={[1]={type="Multiplier",var="BuffOnSelf"},flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=12}},nil}c["Life Leech is applied to Energy Shield instead"]={nil,"Life Leech is applied to Energy Shield instead "}c["25% increased Elemental Damage with Weapons"]={{[1]={flags=8192,keywordFlags=0,name="ElementalDamage",type="INC",value=25}},nil}c["18% increased Damage with Ailments from Attack Skills while wielding a Claw"]={{[1]={[1]={type="Condition",var="UsingClaw"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=18}},nil}c["Adds 1 to 55 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=55}},nil}c["Minions have 10% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}}}},nil}c["135% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=135}},nil}c["You lose Virulence 50% slower"]={nil,"You lose Virulence 50% slower "}c["Adds 2 to 10 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil}c["5% reduced Area Damage taken from Hits +2 to Melee Weapon and Unarmed Attack range"]={{[1]={flags=512,keywordFlags=0,name="DamageTaken",type="INC",value=-5}}," from Hits +2 to Melee Weapon and Unarmed Attack range "}c["13% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=13}},nil}c["Minions have 13% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=13}}}},nil}c["Adds 50 to 150 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=150}},nil}c["Regenerate 0.5% of Mana per second for each Totem"]={{[1]={flags=0,keywordFlags=16384,name="ManaRegenPercent",type="BASE",value=0.5}}," for each "}c["Adds 6 to 22 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=22}},nil}c["Adds 4 to 19 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=4},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=19}},nil}c["10% more Chaos Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ChaosDamage",type="MORE",value=10}},nil}c["While your Passive Skill Tree connects to a class' Starting location, you gain:"]={{},nil}c["Adds 40 to 70 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=70}},nil}c["Adds 50 to 80 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=80}},nil}c["+1% to Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}},nil}c["20% increased Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=20}},nil}c["Minions deal 20% increased Damage if you've used a Minion Skill Recently"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="UsedMinionSkillRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=20}}}},nil}c["8% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=8}},nil}c["+55 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=55}},nil}c["You and Allies affected by Auras from your Skills have +20% to Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="AffectedByAuraMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}}}},nil}c["Adds 1 to 600 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=600}},nil}c["Adds 1 to 650 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=650}},nil}c["Adds 8 to 14 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=14}},nil}c["Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill"]={nil,"Recover 2% of Energy Shield on Kill Recover 4% of Mana on Kill "}c["5% reduced Mana Reservation of Skills that throw Mines"]={{[1]={flags=0,keywordFlags=8192,name="ManaReserved",type="INC",value=-5}},nil}c["30% increased Damage with Ailments from Attack Skills while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=2048,keywordFlags=65536,name="Damage",type="INC",value=30}},nil}c["Gain 10% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=10}},nil}c["Gain 30% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=30}},nil}c["Gain 28% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=28}},nil}c["Adds 70 to 80 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=70},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=80}},nil}c["Corpses you Spawn have 50% increased Maximum Life"]={nil,"Corpses you Spawn have 50% increased Maximum Life "}c["Adds 28 to 40 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=40}},nil}c["Adds 28 to 40 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=28},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=40}},nil}c["Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds"]={nil,"Every 4 seconds, 33% chance to Freeze nearby Chilled Unique Enemies for 0.6 seconds Every 4 seconds, Freeze nearby Chilled Non-Unique Enemies for 0.6 seconds "}c["Mace, Sceptre or Staff Attacks deal 20% increased Damage with Hits and Ailments"]={{[1]={[1]={modFlags=3145728,type="ModFlagOr"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=20}},nil}c["Adds 1 to 250 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=250}},nil}c["Adds 74 to 121 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=74},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=121}},nil}c["Avatar of Fire"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Avatar of Fire"}},nil}c["Adds 8 to 19 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=19}},nil}c["+2 Life gained for each Enemy hit by Attacks"]={{[1]={flags=1,keywordFlags=0,name="LifeOnHit",type="BASE",value=2}},nil}c["Adds 1 to 65 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=65}},nil}c["9% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=9}},nil}c["Adds 75 to 130 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=75},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=130}},nil}c["12% increased Damage with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="Damage",type="INC",value=12}},nil}c["Attacks have 60% chance to Poison while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=1,keywordFlags=0,name="PoisonChance",type="BASE",value=60}},nil}c["Hits with this Weapon deal 60% increased Damage to Frozen Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={actor="enemy",type="ActorCondition",var="Frozen"},flags=4,keywordFlags=262144,name="Damage",type="INC",value=60}},nil}c["+40 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=40}},nil}c["50% chance to cause Bleeding on Melee Hit"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil}c["4% increased Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=4}},nil}c["Adds 1 to 60 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=60}},nil}c["8% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=8}},nil}c["Adds 45 to 100 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=45},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=100}},nil}c["Adds 38 to 90 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=38},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=90}},nil}c["+2 to Weapon Range"]={{[1]={flags=0,keywordFlags=0,name="WeaponRange",type="BASE",value=2}},nil}c["Adds 60 to 110 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="ColdMin",type="BASE",value=60},[2]={flags=0,keywordFlags=131072,name="ColdMax",type="BASE",value=110}},nil}c["You have Onslaught while at maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil}c["+50 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=50}},nil}c["50% reduced Duration of Curses on you 10% additional Block chance while not Cursed"]={{[1]={[1]={neg=true,type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}}," of Curses on you 10% additional Block chance "}c["Minions have 10% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=10}}}},nil} \ No newline at end of file diff --git a/Data/3_0/ModFlask.lua b/Data/3_0/ModFlask.lua index 1accac225..88a30c522 100644 --- a/Data/3_0/ModFlask.lua +++ b/Data/3_0/ModFlask.lua @@ -2,46 +2,46 @@ -- Item data (c) Grinding Gear Games return { - ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Catalysed", "50% increased Recovery rate", statOrderKey = "421", statOrder = { 421 }, level = 1, group = "FlaskRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 1000, }, }, - ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Saturated", "50% increased Amount Recovered", "33% reduced Recovery rate", statOrderKey = "420,421", statOrder = { 420, 421 }, level = 1, group = "FlaskRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 1000, }, }, - ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Cautious", "100% increased Recovery when on Low Life", statOrderKey = "423", statOrder = { 423 }, level = 6, group = "FlaskRecoveryAmount", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 1000, }, }, - ["FlaskInstantRecoveryOnLowLife1"] = { type = "Prefix", affix = "Panicked", "25% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrderKey = "420,424", statOrder = { 420, 424 }, level = 9, group = "FlaskRecoverySpeed", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 1000, }, }, - ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Bubbling", "50% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrderKey = "420,421,425", statOrder = { 420, 421, 425 }, level = 3, group = "FlaskRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 1000, }, }, - ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "66% reduced Amount Recovered", "Instant Recovery", statOrderKey = "420,427", statOrder = { 420, 427 }, level = 7, group = "FlaskBuffWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 1000, }, }, - ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Caustic", "60% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrderKey = "419,428", statOrder = { 419, 428 }, level = 11, group = "FlaskRecoveryAmount", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Sapping", "40% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrderKey = "417,430", statOrder = { 417, 430 }, level = 13, group = "FlaskRecoveryAmount", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["FlaskDispellsChill1"] = { type = "Suffix", affix = "of Heat", "Immunity to Freeze and Chill during Flask effect", "Removes Freeze and Chill on use", statOrderKey = "477,477.1", statOrder = { 477, 477.1 }, level = 4, group = "FlaskDispellChill", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskDispellsBurning1"] = { type = "Suffix", affix = "of Dousing", "Immunity to Ignite during Flask effect", "Removes Burning on use", statOrderKey = "475,475.1", statOrder = { 475, 475.1 }, level = 6, group = "FlaskDispellBurning", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskRemovesBleeding1"] = { type = "Suffix", affix = "of Staunching", "Immunity to Bleeding during Flask effect", "Removes Bleeding on use", statOrderKey = "479,479.1", statOrder = { 479, 479.1 }, level = 8, group = "FlaskRemovesBleeding", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskRemovesShock1"] = { type = "Suffix", affix = "of Grounding", "Immunity to Shock during Flask effect", "Removes Shock on use", statOrderKey = "478,478.1", statOrder = { 478, 478.1 }, level = 10, group = "FlaskRemovesShock", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskExtraCharges1"] = { type = "Prefix", affix = "Ample", "+(10-20) to Maximum Charges", statOrderKey = "435", statOrder = { 435 }, level = 2, group = "FlaskNumCharges", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskChargesAddedIncreasePercent1"] = { type = "Prefix", affix = "Perpetual", "(20-40)% increased Charge Recovery", statOrderKey = "436", statOrder = { 436 }, level = 3, group = "FlaskRechargeRate", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskBuffArmourWhileHealing1"] = { type = "Suffix", affix = "of Iron Skin", "(60-100)% increased Armour during Flask effect", statOrderKey = "443", statOrder = { 443 }, level = 6, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskBuffEvasionWhileHealing"] = { type = "Suffix", affix = "of Reflexes", "(60-100)% increased Evasion Rating during Flask effect", statOrderKey = "444", statOrder = { 444 }, level = 8, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskBuffMovementSpeedWhileHealing"] = { type = "Suffix", affix = "of Adrenaline", "(20-30)% increased Movement Speed during Flask effect", statOrderKey = "448", statOrder = { 448 }, level = 5, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskBuffStunRecoveryWhileHealing"] = { type = "Suffix", affix = "of Steadiness", "(40-60)% increased Block and Stun Recovery during Flask effect", statOrderKey = "449", statOrder = { 449 }, level = 1, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskBuffResistancesWhileHealing"] = { type = "Suffix", affix = "of Resistance", "(20-30)% additional Elemental Resistances during Flask effect", statOrderKey = "450", statOrder = { 450 }, level = 1, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskBuffLifeLeechWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "2% of Physical Attack Damage Leeched as Life during Flask effect", statOrderKey = "451", statOrder = { 451 }, level = 10, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 0, }, }, - ["FlaskBuffLifeLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "0.4% of Physical Attack Damage Leeched as Life during Flask effect", statOrderKey = "454", statOrder = { 454 }, level = 10, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 0, }, }, - ["FlaskBuffManaLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Craving", "0.4% of Physical Attack Damage Leeched as Mana during Flask effect", statOrderKey = "456", statOrder = { 456 }, level = 12, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 0, }, }, - ["FlaskBuffKnockbackWhileHealing"] = { type = "Suffix", affix = "of Fending", "Adds Knockback to Melee Attacks during Flask effect", statOrderKey = "457", statOrder = { 457 }, level = 9, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskHealsMinions1"] = { type = "Suffix", affix = "of Animation", "Grants (40-60)% of Life Recovery to Minions", statOrderKey = "472", statOrder = { 472 }, level = 10, group = "FlaskHealsOthers", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 1000, }, }, - ["FlaskFullRechargeOnCrit1"] = { type = "Prefix", affix = "Surgeon's", "Recharges 1 Charge when you deal a Critical Strike", statOrderKey = "439", statOrder = { 439 }, level = 8, group = "FlaskRechargeRate", weightKey = { "critical_utility_flask", "default", }, weightVal = { 0, 0, }, }, - ["FlaskChanceRechargeOnCrit1"] = { type = "Prefix", affix = "Surgeon's", "20% chance to gain a Flask Charge when you deal a Critical Strike", statOrderKey = "440", statOrder = { 440 }, level = 8, group = "FlaskRechargeRate", weightKey = { "critical_utility_flask", "default", }, weightVal = { 0, 1000, }, }, - ["FlaskFullRechargeOnTakeCrit1"] = { type = "Prefix", affix = "Avenger's", "Recharges 5 Charges when you take a Critical Strike", statOrderKey = "442", statOrder = { 442 }, level = 12, group = "FlaskRechargeRate", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskDispellsPoison1"] = { type = "Suffix", affix = "of Curing", "Immune to Poison during Flask Effect", "Removes Poison on use", statOrderKey = "2790,2790.1", statOrder = { 2790, 2790.1 }, level = 16, group = "FlaskDispellPoison", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskEffectReducedDuration1"] = { type = "Prefix", affix = "Alchemist's", "25% increased effect", "33% reduced Duration", statOrderKey = "2789,2804", statOrder = { 2789, 2804 }, level = 20, group = "FlaskRecoverySpeed", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 1000, 0, }, }, - ["FlaskChargesUsed1"] = { type = "Prefix", affix = "Chemist's", "(20-25)% reduced Charges used", statOrderKey = "437", statOrder = { 437 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskIncreasedDuration2"] = { type = "Prefix", affix = "Experimenter's", "(30-40)% increased Duration", statOrderKey = "2804", statOrder = { 2804 }, level = 20, group = "FlaskRecoverySpeed", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["FlaskFullRechargeOnHit1"] = { type = "Prefix", affix = "Flagellant's", "Gain 1 Charge when you are Hit by an Enemy", statOrderKey = "441", statOrder = { 441 }, level = 12, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskIncreasedHealingCharges1"] = { type = "Prefix", affix = "Concentrated", "30% increased Amount Recovered", "(20-25)% increased Charges used", statOrderKey = "420,437", statOrder = { 420, 437 }, level = 10, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 1000, }, }, - ["FlaskManaRecoveryAtEnd1_"] = { type = "Prefix", affix = "Foreboding", "66% increased Amount Recovered", "Mana Recovery occurs instantly at the end of the Flask effect", statOrderKey = "420,426", statOrder = { 420, 426 }, level = 16, group = "FlaskManaRecoveryAtEnd", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 1000, }, }, - ["FlaskEffectNotRemovedOnFullMana1"] = { type = "Prefix", affix = "Enduring", "30% reduced Amount Recovered", "30% reduced Duration", "Flask Effect is not removed at Full Mana", "Flask Effect does not Queue", statOrderKey = "420,2804,5125,5125.1", statOrder = { 420, 2804, 5125, 5125.1 }, level = 16, group = "FlaskEffectNotRemovedOnFullMana", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 1000, }, }, - ["FlaskBuffAttackLifeLeechWhileHealing1"] = { type = "Suffix", affix = "of Bloodletting", "0.4% of Attack Damage Leeched as Life during Flask effect", statOrderKey = "453", statOrder = { 453 }, level = 10, group = "FlaskBuffWhileHealing", weightKey = { "mana_flask", "default", }, weightVal = { 0, 1000, }, }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing1"] = { type = "Suffix", affix = "of Draining", "0.4% of Spell Damage Leeched as Energy Shield during Flask effect", statOrderKey = "452", statOrder = { 452 }, level = 10, group = "FlaskBuffWhileHealing", weightKey = { "life_flask", "default", }, weightVal = { 0, 1000, }, }, - ["FlaskBuffAttackSpeedWhileHealing1"] = { type = "Suffix", affix = "of Acceleration", "(8-12)% increased Attack Speed during Flask effect", statOrderKey = "446", statOrder = { 446 }, level = 12, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskBuffCastSpeedWhileHealing1"] = { type = "Suffix", affix = "of Quickening", "(8-12)% increased Cast Speed during Flask effect", statOrderKey = "447", statOrder = { 447 }, level = 12, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskBuffFreezeShockIgniteChanceWhileHealing1_"] = { type = "Suffix", affix = "of Infliction", "(20-25)% chance to Freeze, Shock and Ignite during Flask effect", statOrderKey = "464", statOrder = { 464 }, level = 12, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000, }, }, - ["FlaskBuffReducedManaCostWhileHealing1_"] = { type = "Suffix", affix = "of Efficiency", "(10-15)% reduced Mana Cost of Skills during Flask Effect", statOrderKey = "466", statOrder = { 466 }, level = 12, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 1000, }, }, - ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Immune to Curses during Flask effect", "Removes Curses on use", statOrderKey = "480,480.1", statOrder = { 480, 480.1 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "default", }, weightVal = { 500, }, }, + ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Catalysed", "50% increased Recovery rate", statOrderKey = "421", statOrder = { 421 }, level = 1, group = "FlaskRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Saturated", "50% increased Amount Recovered", "33% reduced Recovery rate", statOrderKey = "420,421", statOrder = { 420, 421 }, level = 1, group = "FlaskRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Cautious", "100% increased Recovery when on Low Life", statOrderKey = "423", statOrder = { 423 }, level = 6, group = "FlaskRecoveryAmount", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskInstantRecoveryOnLowLife1"] = { type = "Prefix", affix = "Panicked", "25% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrderKey = "420,424", statOrder = { 420, 424 }, level = 9, group = "FlaskRecoverySpeed", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Bubbling", "50% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrderKey = "420,421,425", statOrder = { 420, 421, 425 }, level = 3, group = "FlaskRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "66% reduced Amount Recovered", "Instant Recovery", statOrderKey = "420,427", statOrder = { 420, 427 }, level = 7, group = "FlaskBuffWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Caustic", "60% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrderKey = "419,428", statOrder = { 419, 428 }, level = 11, group = "FlaskRecoveryAmount", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Sapping", "40% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrderKey = "417,430", statOrder = { 417, 430 }, level = 13, group = "FlaskRecoveryAmount", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskDispellsChill1"] = { type = "Suffix", affix = "of Heat", "Immunity to Freeze and Chill during Flask effect", "Removes Freeze and Chill on use", statOrderKey = "477,477.1", statOrder = { 477, 477.1 }, level = 4, group = "FlaskDispellChill", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskDispellsBurning1"] = { type = "Suffix", affix = "of Dousing", "Immunity to Ignite during Flask effect", "Removes Burning on use", statOrderKey = "475,475.1", statOrder = { 475, 475.1 }, level = 6, group = "FlaskDispellBurning", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskRemovesBleeding1"] = { type = "Suffix", affix = "of Staunching", "Immunity to Bleeding during Flask effect", "Removes Bleeding on use", statOrderKey = "479,479.1", statOrder = { 479, 479.1 }, level = 8, group = "FlaskRemovesBleeding", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskRemovesShock1"] = { type = "Suffix", affix = "of Grounding", "Immunity to Shock during Flask effect", "Removes Shock on use", statOrderKey = "478,478.1", statOrder = { 478, 478.1 }, level = 10, group = "FlaskRemovesShock", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskExtraCharges1"] = { type = "Prefix", affix = "Ample", "+(10-20) to Maximum Charges", statOrderKey = "435", statOrder = { 435 }, level = 2, group = "FlaskNumCharges", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskChargesAddedIncreasePercent1"] = { type = "Prefix", affix = "Perpetual", "(20-40)% increased Charge Recovery", statOrderKey = "436", statOrder = { 436 }, level = 3, group = "FlaskRechargeRate", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskBuffArmourWhileHealing1"] = { type = "Suffix", affix = "of Iron Skin", "(60-100)% increased Armour during Flask effect", statOrderKey = "443", statOrder = { 443 }, level = 6, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskBuffEvasionWhileHealing"] = { type = "Suffix", affix = "of Reflexes", "(60-100)% increased Evasion Rating during Flask effect", statOrderKey = "444", statOrder = { 444 }, level = 8, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskBuffMovementSpeedWhileHealing"] = { type = "Suffix", affix = "of Adrenaline", "(20-30)% increased Movement Speed during Flask effect", statOrderKey = "448", statOrder = { 448 }, level = 5, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskBuffStunRecoveryWhileHealing"] = { type = "Suffix", affix = "of Steadiness", "(40-60)% increased Block and Stun Recovery during Flask effect", statOrderKey = "449", statOrder = { 449 }, level = 1, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskBuffResistancesWhileHealing"] = { type = "Suffix", affix = "of Resistance", "(20-30)% additional Elemental Resistances during Flask effect", statOrderKey = "450", statOrder = { 450 }, level = 1, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskBuffLifeLeechWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "2% of Physical Attack Damage Leeched as Life during Flask effect", statOrderKey = "451", statOrder = { 451 }, level = 10, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskBuffLifeLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "0.4% of Physical Attack Damage Leeched as Life during Flask effect", statOrderKey = "454", statOrder = { 454 }, level = 10, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskBuffManaLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Craving", "0.4% of Physical Attack Damage Leeched as Mana during Flask effect", statOrderKey = "456", statOrder = { 456 }, level = 12, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskBuffKnockbackWhileHealing"] = { type = "Suffix", affix = "of Fending", "Adds Knockback to Melee Attacks during Flask effect", statOrderKey = "457", statOrder = { 457 }, level = 9, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskHealsMinions1"] = { type = "Suffix", affix = "of Animation", "Grants (40-60)% of Life Recovery to Minions", statOrderKey = "472", statOrder = { 472 }, level = 10, group = "FlaskHealsOthers", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskFullRechargeOnCrit1"] = { type = "Prefix", affix = "Surgeon's", "Recharges 1 Charge when you deal a Critical Strike", statOrderKey = "439", statOrder = { 439 }, level = 8, group = "FlaskRechargeRate", weightKey = { "critical_utility_flask", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskChanceRechargeOnCrit1"] = { type = "Prefix", affix = "Surgeon's", "20% chance to gain a Flask Charge when you deal a Critical Strike", statOrderKey = "440", statOrder = { 440 }, level = 8, group = "FlaskRechargeRate", weightKey = { "critical_utility_flask", "default", }, weightVal = { 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskFullRechargeOnTakeCrit1"] = { type = "Prefix", affix = "Avenger's", "Recharges 5 Charges when you take a Critical Strike", statOrderKey = "442", statOrder = { 442 }, level = 12, group = "FlaskRechargeRate", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskDispellsPoison1"] = { type = "Suffix", affix = "of Curing", "Immune to Poison during Flask Effect", "Removes Poison on use", statOrderKey = "2790,2790.1", statOrder = { 2790, 2790.1 }, level = 16, group = "FlaskDispellPoison", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskEffectReducedDuration1"] = { type = "Prefix", affix = "Alchemist's", "25% increased effect", "33% reduced Duration", statOrderKey = "2789,2804", statOrder = { 2789, 2804 }, level = 20, group = "FlaskRecoverySpeed", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskChargesUsed1"] = { type = "Prefix", affix = "Chemist's", "(20-25)% reduced Charges used", statOrderKey = "437", statOrder = { 437 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskIncreasedDuration2"] = { type = "Prefix", affix = "Experimenter's", "(30-40)% increased Duration", statOrderKey = "2804", statOrder = { 2804 }, level = 20, group = "FlaskRecoverySpeed", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskFullRechargeOnHit1"] = { type = "Prefix", affix = "Flagellant's", "Gain 1 Charge when you are Hit by an Enemy", statOrderKey = "441", statOrder = { 441 }, level = 12, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskIncreasedHealingCharges1"] = { type = "Prefix", affix = "Concentrated", "30% increased Amount Recovered", "(20-25)% increased Charges used", statOrderKey = "420,437", statOrder = { 420, 437 }, level = 10, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskManaRecoveryAtEnd1_"] = { type = "Prefix", affix = "Foreboding", "66% increased Amount Recovered", "Mana Recovery occurs instantly at the end of the Flask effect", statOrderKey = "420,426", statOrder = { 420, 426 }, level = 16, group = "FlaskManaRecoveryAtEnd", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskEffectNotRemovedOnFullMana1"] = { type = "Prefix", affix = "Enduring", "30% reduced Amount Recovered", "30% reduced Duration", "Flask Effect is not removed at Full Mana", "Flask Effect does not Queue", statOrderKey = "420,2804,5125,5125.1", statOrder = { 420, 2804, 5125, 5125.1 }, level = 16, group = "FlaskEffectNotRemovedOnFullMana", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskBuffAttackLifeLeechWhileHealing1"] = { type = "Suffix", affix = "of Bloodletting", "0.4% of Attack Damage Leeched as Life during Flask effect", statOrderKey = "453", statOrder = { 453 }, level = 10, group = "FlaskBuffWhileHealing", weightKey = { "mana_flask", "default", }, weightVal = { 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing1"] = { type = "Suffix", affix = "of Draining", "0.4% of Spell Damage Leeched as Energy Shield during Flask effect", statOrderKey = "452", statOrder = { 452 }, level = 10, group = "FlaskBuffWhileHealing", weightKey = { "life_flask", "default", }, weightVal = { 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskBuffAttackSpeedWhileHealing1"] = { type = "Suffix", affix = "of Acceleration", "(8-12)% increased Attack Speed during Flask effect", statOrderKey = "446", statOrder = { 446 }, level = 12, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskBuffCastSpeedWhileHealing1"] = { type = "Suffix", affix = "of Quickening", "(8-12)% increased Cast Speed during Flask effect", statOrderKey = "447", statOrder = { 447 }, level = 12, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskBuffFreezeShockIgniteChanceWhileHealing1_"] = { type = "Suffix", affix = "of Infliction", "(20-25)% chance to Freeze, Shock and Ignite during Flask effect", statOrderKey = "464", statOrder = { 464 }, level = 12, group = "FlaskBuffWhileHealing", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskBuffReducedManaCostWhileHealing1_"] = { type = "Suffix", affix = "of Efficiency", "(10-15)% reduced Mana Cost of Skills during Flask Effect", statOrderKey = "466", statOrder = { 466 }, level = 12, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Immune to Curses during Flask effect", "Removes Curses on use", statOrderKey = "480,480.1", statOrder = { 480, 480.1 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, } \ No newline at end of file diff --git a/Data/3_0/ModItem.lua b/Data/3_0/ModItem.lua index 2a48668c1..4533d578b 100644 --- a/Data/3_0/ModItem.lua +++ b/Data/3_0/ModItem.lua @@ -2,3591 +2,3591 @@ -- Item data (c) Grinding Gear Games return { - ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(8-12) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(13-17) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(18-22) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(23-27) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(28-32) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(33-37) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(38-42) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(43-50) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(51-55) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Strength10"] = { type = "Suffix", affix = "of the Godslayer", "+(56-60) to Strength", statOrderKey = "521", statOrder = { 521 }, level = 85, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["StrengthEssence7_"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Strength", statOrderKey = "521", statOrder = { 521 }, level = 82, group = "Strength", weightKey = { "default", }, weightVal = { 0, }, }, - ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(8-12) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(13-17) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(18-22) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(23-27) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(28-32) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(33-37) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(38-42) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(43-50) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-55) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Dexterity10"] = { type = "Suffix", affix = "of the Blur", "+(56-60) to Dexterity", statOrderKey = "522", statOrder = { 522 }, level = 85, group = "Dexterity", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["DexterityEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Dexterity", statOrderKey = "522", statOrder = { 522 }, level = 82, group = "Dexterity", weightKey = { "default", }, weightVal = { 0, }, }, - ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(8-12) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(13-17) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(18-22) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(23-27) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(28-32) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(33-37) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(38-42) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(43-50) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(51-55) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["Intelligence10"] = { type = "Suffix", affix = "of the Polymath", "+(56-60) to Intelligence", statOrderKey = "523", statOrder = { 523 }, level = 85, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["IntelligenceEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Intelligence", statOrderKey = "523", statOrder = { 523 }, level = 82, group = "Intelligence", weightKey = { "default", }, weightVal = { 0, }, }, - ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(1-4) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0, }, }, - ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-8) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0, }, }, - ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(9-12) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0, }, }, - ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(13-16) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0, }, }, - ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(17-20) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0, }, }, - ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(21-24) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0, }, }, - ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(25-28) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0, }, }, - ["AllAttributes8"] = { type = "Suffix", affix = "of the Infinite", "+(29-32) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 77, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0, }, }, - ["AllAttributes9_"] = { type = "Suffix", affix = "of the Multiverse", "+(33-35) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 85, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedLife0"] = { type = "Prefix", affix = "Hale", "+(3-9) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife1"] = { type = "Prefix", affix = "Healthy", "+(10-19) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 5, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife2"] = { type = "Prefix", affix = "Sanguine", "+(20-29) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 11, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife3"] = { type = "Prefix", affix = "Stalwart", "+(30-39) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 18, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife4"] = { type = "Prefix", affix = "Stout", "+(40-49) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 24, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife5"] = { type = "Prefix", affix = "Robust", "+(50-59) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 30, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife6"] = { type = "Prefix", affix = "Rotund", "+(60-69) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 36, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife7"] = { type = "Prefix", affix = "Virile", "+(70-79) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 44, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000, }, }, - ["IncreasedLife8"] = { type = "Prefix", affix = "Athlete's", "+(80-89) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 54, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "ring", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["IncreasedLife9"] = { type = "Prefix", affix = "Fecund", "+(90-99) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 64, group = "IncreasedLife", weightKey = { "fishing_rod", "boots", "gloves", "weapon", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, }, }, - ["IncreasedLife10"] = { type = "Prefix", affix = "Vigorous", "+(100-109) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 73, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["IncreasedLife11"] = { type = "Prefix", affix = "Rapturous", "+(110-119) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 81, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedLife12"] = { type = "Prefix", affix = "Prime", "+(120-129) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 86, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedLifeEssence1_"] = { type = "Prefix", affix = "Essences", "+(5-14) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 3, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEssence2"] = { type = "Prefix", affix = "Essences", "+(15-30) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 10, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEssence3"] = { type = "Prefix", affix = "Essences", "+(31-45) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 26, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEssenceChest1"] = { type = "Prefix", affix = "Essences", "+(120-126) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEssenceShield1"] = { type = "Prefix", affix = "Essences", "+(110-116) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEssenceHelm1"] = { type = "Prefix", affix = "Essences", "+(100-106) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEssenceBootsGloves1"] = { type = "Prefix", affix = "Essences", "+(90-96) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEnhancedMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "(3-5)% increased maximum Life", statOrderKey = "877,879", statOrder = { 877, 879 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEnhancedBodyMod___"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrderKey = "877,879", statOrder = { 877, 879 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(15-19) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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, }, }, - ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(20-24) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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, }, }, - ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-29) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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, }, }, - ["IncreasedMana4"] = { type = "Prefix", affix = "Sapphire", "+(30-34) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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, }, }, - ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(35-39) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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, }, }, - ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(40-44) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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, }, }, - ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(45-49) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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, }, }, - ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(50-54) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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, }, }, - ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(55-59) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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, }, }, - ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(60-64) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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, }, }, - ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(65-68) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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, }, }, - ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(69-73) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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, }, }, - ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(74-78) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 85, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["IncreasedManaEssence7"] = { type = "Prefix", affix = "Essences", "+(69-77) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 82, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrderKey = "884,885", statOrder = { 884, 885 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedModOnHit_"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "884,1021", statOrder = { 884, 1021 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrderKey = "884,887", statOrder = { 884, 887 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedModReservation"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(3-5)% reduced Mana Reserved", statOrderKey = "884,1481", statOrder = { 884, 1481 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrderKey = "884,1144", statOrder = { 884, 1144 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_mana_cost_mod", }, }, - ["IncreasedManaWeapon1"] = { type = "Prefix", affix = "Beryl", "+(30-39) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 1, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedManaWeapon2__"] = { type = "Prefix", affix = "Cobalt", "+(40-49) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 11, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedManaWeapon3_"] = { type = "Prefix", affix = "Azure", "+(50-59) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 17, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedManaWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(60-69) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 23, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedManaWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(70-79) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 29, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedManaWeapon6"] = { type = "Prefix", affix = "Aqua", "+(80-89) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 35, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedManaWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(90-99) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 42, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedManaWeapon8"] = { type = "Prefix", affix = "Gentian", "+(100-109) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 51, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedManaWeapon9___"] = { type = "Prefix", affix = "Chalybeous", "+(110-119) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 60, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["IncreasedManaWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(120-129) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 69, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 800, 800, 800, 800, 0, }, }, - ["IncreasedManaWeapon11"] = { type = "Prefix", affix = "Blue", "+(130-139) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 75, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 600, 600, 600, 600, 0, }, }, - ["IncreasedManaWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(140-159) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 81, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 400, 400, 400, 400, 0, }, }, - ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(40-49) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(50-59) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 11, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(60-69) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 17, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(70-79) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 23, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(80-89) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 29, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(90-99) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 35, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(100-119) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 42, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(120-139) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 51, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(140-159) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(160-179) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 69, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(180-199) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 75, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 600, 0, }, }, - ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(200-229) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 81, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, - ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(1-3) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 3, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(4-8) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 11, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(9-12) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 17, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(13-15) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 23, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(16-19) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 29, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(20-22) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 35, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(23-26) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 42, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(27-31) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 50, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(32-37) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 59, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(38-43) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 68, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(44-47) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 74, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedEnergyShield12"] = { type = "Prefix", affix = "Dazzling", "+(48-51) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 80, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["IncreasedEnergyShieldEnhancedModES"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "(7-10)% increased maximum Energy Shield", statOrderKey = "867,870", statOrder = { 867, 870 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShieldEnhancedModRegen_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrderKey = "867,1832", statOrder = { 867, 1832 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(3-5) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 3, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(6-11) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 11, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(12-16) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 17, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(17-23) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 23, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(24-30) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 29, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(31-38) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 35, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(39-49) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 43, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(50-61) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 51, group = "BaseLocalDefences", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(62-76) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 60, group = "BaseLocalDefences", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(77-90) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 69, group = "BaseLocalDefences", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-100) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 75, group = "BaseLocalDefences", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedEnergyShieldEssenceChest5"] = { type = "Prefix", affix = "Essences", "+(62-72) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceChest6"] = { type = "Prefix", affix = "Essences", "+(73-82) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceChest7__"] = { type = "Prefix", affix = "Essences", "+(83-92) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(50-59) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(60-69) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceShield7"] = { type = "Prefix", affix = "Essences", "+(70-80) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves4"] = { type = "Prefix", affix = "Essences", "+(18-26) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 42, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(27-32) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(28-35) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(36-42) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(39-45) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(46-51) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEnergyShieldEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(52-58) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 5, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, }, - ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 13, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, }, - ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 19, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, }, - ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 28, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, }, - ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 35, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 0, 0, 0, }, }, - ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 44, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 0, 0, 0, }, }, - ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 52, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 0, 1000, 0, 0, 0, }, }, - ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 64, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 0, 1000, 0, 0, 0, }, }, - ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 76, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 0, 1000, 0, 0, 0, }, }, - ["AddedPhysicalDamageEssenceAmulet7"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamageEssenceRing5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamageEssenceRing6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamageEssenceRing7"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (3-5) to (7-8) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 42, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (10-11) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 1, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 12, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 20, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 28, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 35, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, - ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 44, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, - ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 52, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, - ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 64, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, - ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 76, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 50, 250, 0, 0, 0, }, }, - ["AddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (5-7) to (11-14) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 42, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (13-17) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 58, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (16-18) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 74, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (9-11) to (17-21) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 2, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 13, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 21, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 29, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 36, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, - ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 45, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, - ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 53, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, - ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 65, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, - ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 77, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 50, 250, 0, 0, 0, }, }, - ["AddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedColdDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (11-14) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 42, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedColdDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 58, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedColdDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 74, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedColdDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (14-17) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 3, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 13, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 22, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 28, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 35, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, - ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 44, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0, }, }, - ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 52, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, - ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 64, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0, }, }, - ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 76, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 50, 250, 0, 0, 0, }, }, - ["AddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedLightningDamageEssenceQuiverGloves3_"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (21-22) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 26, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedLightningDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (23-24) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 42, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedLightningDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (25-26) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 58, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedLightningDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 74, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedLightningDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (1-3) to (29-30) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "688,1206", statOrder = { 688, 1206 }, level = 1, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, - ["AddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "695,1208", statOrder = { 695, 1208 }, level = 1, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, - ["AddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "704,1210", statOrder = { 704, 1210 }, level = 1, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, - ["LifeLeech1"] = { type = "Prefix", affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrderKey = "943", statOrder = { 943 }, level = 9, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeech2"] = { type = "Prefix", affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrderKey = "943", statOrder = { 943 }, level = 25, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeech3"] = { type = "Prefix", affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrderKey = "943", statOrder = { 943 }, level = 72, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriad1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 50, group = "LifeLeech", weightKey = { "no_attack_mods", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriad2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 60, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "amulet", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriad3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 70, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "amulet", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 1, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 10, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadEssence3_"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 26, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 42, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 58, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 74, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 82, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["ElementalDamagePercent1"] = { type = "Prefix", affix = "Augur's", "(4-8)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 4, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0, }, }, - ["ElementalDamagePercent2"] = { type = "Prefix", affix = "Auspex's", "(9-16)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 15, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0, }, }, - ["ElementalDamagePercent3"] = { type = "Prefix", affix = "Druid's", "(17-24)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 30, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0, }, }, - ["ElementalDamagePercent4"] = { type = "Prefix", affix = "Haruspex's", "(25-29)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 60, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0, }, }, - ["ElementalDamagePercent5"] = { type = "Prefix", affix = "Harbinger's", "(30-34)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 81, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 35, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 46, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 60, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 73, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 50, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 83, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 25, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 11, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 23, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 35, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 73, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 50, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 83, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 25, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamageEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrderKey = "570,1186", statOrder = { 570, 1186 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(8-12)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 4, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(13-17)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 15, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(18-22)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 30, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Cruel", "(23-28)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 60, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["IncreasedPhysicalDamagePercent5__"] = { type = "Prefix", affix = "Merciless", "(29-33)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 81, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to (2-3) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 2, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-5) to (8-9) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 13, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-8) to (13-15) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 21, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (7-11) to (16-19) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 29, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (9-13) to (20-24) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 36, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-17) to (26-30) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 46, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (14-19) to (29-35) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 54, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (17-24) to (36-41) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 65, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (20-27) to (41-49) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 77, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to (4-5) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 2, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (6-8) to (13-14) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 13, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (10-13) to (21-24) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 21, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (11-18) to (26-30) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 29, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (14-21) to (32-38) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 36, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (21-27) to (42-48) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 46, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (22-30) to (46-56) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 54, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (27-38) to (58-66) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 65, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (32-43) to (66-78) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 77, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(11-28)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 3, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 18, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 30, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 44, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 60, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 72, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 84, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 86, group = "DefencesPercent", 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, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 3, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 17, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 29, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 42, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 60, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 72, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 84, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 86, group = "DefencesPercent", 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, }, }, - ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 3, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 19, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 30, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 44, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 60, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 72, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 84, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 86, group = "DefencesPercent", 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, }, }, - ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 3, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 19, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 30, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 44, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 60, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 72, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 84, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 86, group = "DefencesPercent", 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, }, }, - ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 3, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 19, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 30, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 44, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 60, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 72, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 84, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 86, group = "DefencesPercent", 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, }, }, - ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 3, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 19, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 30, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 44, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 60, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 72, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 84, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 86, group = "DefencesPercent", 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, }, }, - ["LocalIncreasedArmourEvasionEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(27-42)% increased Armour, Evasion and Energy Shield", statOrderKey = "865", statOrder = { 865 }, level = 3, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(43-55)% increased Armour, Evasion and Energy Shield", statOrderKey = "865", statOrder = { 865 }, level = 19, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(56-67)% increased Armour, Evasion and Energy Shield", statOrderKey = "865", statOrder = { 865 }, level = 30, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(68-79)% increased Armour, Evasion and Energy Shield", statOrderKey = "865", statOrder = { 865 }, level = 44, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(80-91)% increased Armour, Evasion and Energy Shield", statOrderKey = "865", statOrder = { 865 }, level = 60, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrderKey = "865", statOrder = { 865 }, level = 72, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShield7__"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Armour, Evasion and Energy Shield", statOrderKey = "865", statOrder = { 865 }, level = 85, group = "DefencesPercent", 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, }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "869,1153", statOrder = { 869, 1153 }, level = 3, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "869,1153", statOrder = { 869, 1153 }, level = 18, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "869,1153", statOrder = { 869, 1153 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "869,1153", statOrder = { 869, 1153 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "869,1153", statOrder = { 869, 1153 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "869,1153", statOrder = { 869, 1153 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "(6-7)% increased Stun and Block Recovery", statOrderKey = "851,1153", statOrder = { 851, 1153 }, level = 1, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "(8-9)% increased Stun and Block Recovery", statOrderKey = "851,1153", statOrder = { 851, 1153 }, level = 17, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "(10-11)% increased Stun and Block Recovery", statOrderKey = "851,1153", statOrder = { 851, 1153 }, level = 29, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "(12-13)% increased Stun and Block Recovery", statOrderKey = "851,1153", statOrder = { 851, 1153 }, level = 42, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "(14-15)% increased Stun and Block Recovery", statOrderKey = "851,1153", statOrder = { 851, 1153 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "(16-17)% increased Stun and Block Recovery", statOrderKey = "851,1153", statOrder = { 851, 1153 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance1"] = { type = "Prefix", affix = "Reliable", "(25-30)% increased Armour", "+2% Chance to Block", statOrderKey = "851,1497", statOrder = { 851, 1497 }, level = 45, group = "DefencesPercentAndStunRecovery", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance2"] = { type = "Prefix", affix = "Unfailing", "(31-36)% increased Armour", "+3% Chance to Block", statOrderKey = "851,1497", statOrder = { 851, 1497 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "(6-7)% increased Stun and Block Recovery", statOrderKey = "860,1153", statOrder = { 860, 1153 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "(8-9)% increased Stun and Block Recovery", statOrderKey = "860,1153", statOrder = { 860, 1153 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "(10-11)% increased Stun and Block Recovery", statOrderKey = "860,1153", statOrder = { 860, 1153 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "(12-13)% increased Stun and Block Recovery", statOrderKey = "860,1153", statOrder = { 860, 1153 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "(14-15)% increased Stun and Block Recovery", statOrderKey = "860,1153", statOrder = { 860, 1153 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "(16-17)% increased Stun and Block Recovery", statOrderKey = "860,1153", statOrder = { 860, 1153 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Armour and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "862,1153", statOrder = { 862, 1153 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Armour and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "862,1153", statOrder = { 862, 1153 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Armour and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "862,1153", statOrder = { 862, 1153 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Armour and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "862,1153", statOrder = { 862, 1153 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Armour and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "862,1153", statOrder = { 862, 1153 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Armour and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "862,1153", statOrder = { 862, 1153 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour and Evasion", "(6-7)% increased Stun and Block Recovery", statOrderKey = "863,1153", statOrder = { 863, 1153 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour and Evasion", "(8-9)% increased Stun and Block Recovery", statOrderKey = "863,1153", statOrder = { 863, 1153 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour and Evasion", "(10-11)% increased Stun and Block Recovery", statOrderKey = "863,1153", statOrder = { 863, 1153 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour and Evasion", "(12-13)% increased Stun and Block Recovery", statOrderKey = "863,1153", statOrder = { 863, 1153 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour and Evasion", "(14-15)% increased Stun and Block Recovery", statOrderKey = "863,1153", statOrder = { 863, 1153 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour and Evasion", "(16-17)% increased Stun and Block Recovery", statOrderKey = "863,1153", statOrder = { 863, 1153 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "864,1153", statOrder = { 864, 1153 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "864,1153", statOrder = { 864, 1153 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "864,1153", statOrder = { 864, 1153 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "864,1153", statOrder = { 864, 1153 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "864,1153", statOrder = { 864, 1153 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "864,1153", statOrder = { 864, 1153 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Armour, Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "865,1153", statOrder = { 865, 1153 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Armour, Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "865,1153", statOrder = { 865, 1153 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Armour, Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "865,1153", statOrder = { 865, 1153 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Armour, Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "865,1153", statOrder = { 865, 1153 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Armour, Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "865,1153", statOrder = { 865, 1153 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Armour, Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "865,1153", statOrder = { 865, 1153 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 1, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-10) to (15-18) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 11, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (12-16) to (24-28) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 18, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (17-22) to (33-39) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 26, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (21-28) to (42-49) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 33, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (26-35) to (53-61) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 42, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (32-42) to (63-74) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 51, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (42-56) to (85-98) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 62, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (59-79) to (118-138) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 74, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 700, 420, 420, 280, 175, 175, 420, 420, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (82-112) to (167-194) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 82, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 180, 108, 108, 72, 45, 45, 108, 108, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (75-101) to (151-176) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "Adds (59-79) to (118-138) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 1, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (3-4) to (5-6) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 1, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (13-16) to (24-29) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 11, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (19-26) to (38-45) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 18, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (27-35) to (53-62) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 26, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (34-45) to (67-78) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 33, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (42-56) to (85-98) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 42, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (51-67) to (101-118) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 51, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (67-90) to (135-156) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 62, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 960, 960, 400, 480, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (94-127) to (190-221) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 74, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 420, 420, 175, 210, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (132-179) to (267-311) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 82, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 108, 108, 45, 54, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageRanged1"] = { type = "Prefix", affix = "Heated", "Adds (1-3) to (4-5) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 1, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageRanged2"] = { type = "Prefix", affix = "Smouldering", "Adds (10-13) to (19-23) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 11, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageRanged3"] = { type = "Prefix", affix = "Smoking", "Adds (15-20) to (30-35) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 18, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageRanged4"] = { type = "Prefix", affix = "Burning", "Adds (21-28) to (41-49) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 26, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageRanged5"] = { type = "Prefix", affix = "Flaming", "Adds (26-35) to (53-61) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 33, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageRanged6"] = { type = "Prefix", affix = "Scorching", "Adds (33-44) to (66-76) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 42, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageRanged7"] = { type = "Prefix", affix = "Incinerating", "Adds (40-53) to (79-93) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 51, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageRanged8"] = { type = "Prefix", affix = "Blasting", "Adds (53-70) to (106-123) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 62, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1120, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageRanged9_"] = { type = "Prefix", affix = "Cremating", "Adds (74-99) to (148-173) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 74, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 490, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageRanged10"] = { type = "Prefix", affix = "Carbonising", "Adds (103-140) to (209-243) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 82, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 126, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (120-163) to (242-282) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (94-127) to (190-221) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 1, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 2, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (7-9) to (14-16) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 12, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (11-14) to (22-25) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 19, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (15-20) to (30-35) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 27, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (19-25) to (38-44) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 34, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (23-32) to (48-55) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 43, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (29-38) to (57-67) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 52, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (37-51) to (76-88) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 63, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (53-72) to (107-124) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 75, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 700, 420, 420, 280, 175, 175, 420, 420, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (77-101) to (152-174) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 82, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 180, 108, 108, 72, 45, 45, 108, 108, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (70-91) to (138-158) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (53-72) to (107-124) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 1, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (5-6) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 2, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (11-14) to (22-26) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 12, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (18-22) to (35-40) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 19, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (24-32) to (48-56) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 27, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (30-40) to (61-70) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 34, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (37-51) to (77-88) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 43, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (46-61) to (91-107) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 52, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (59-81) to (121-141) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 63, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 960, 960, 400, 480, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (86-114) to (170-198) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 75, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 420, 420, 175, 210, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (121-161) to (240-278) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 82, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 108, 108, 45, 54, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageRanged1"] = { type = "Prefix", affix = "Frosted", "Adds (1-3) to (4-5) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 2, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageRanged2"] = { type = "Prefix", affix = "Chilled", "Adds (9-11) to (18-20) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 12, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageRanged3"] = { type = "Prefix", affix = "Icy", "Adds (14-18) to (28-31) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 19, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageRanged4"] = { type = "Prefix", affix = "Frigid", "Adds (19-25) to (38-44) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 27, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageRanged5"] = { type = "Prefix", affix = "Freezing", "Adds (24-31) to (48-55) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 34, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageRanged6"] = { type = "Prefix", affix = "Frozen", "Adds (29-40) to (60-69) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 43, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageRanged7"] = { type = "Prefix", affix = "Glaciated", "Adds (36-48) to (71-84) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 52, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageRanged8"] = { type = "Prefix", affix = "Polar", "Adds (46-64) to (95-110) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 63, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1120, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageRanged9"] = { type = "Prefix", affix = "Entombing", "Adds (66-90) to (134-155) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 75, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 490, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageRanged10"] = { type = "Prefix", affix = "Crystalising", "Adds (96-126) to (190-218) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 82, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 126, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (110-146) to (217-252) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (86-114) to (170-198) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 1, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (5-6) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 3, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (25-29) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 13, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (40-45) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 19, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (55-63) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 31, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-6) to (70-79) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 34, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (3-8) to (89-99) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 42, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (3-9) to (105-120) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 51, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-12) to (142-158) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 63, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-17) to (198-224) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 74, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 700, 420, 420, 280, 175, 175, 420, 420, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (9-24) to (278-315) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 82, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 180, 108, 108, 72, 45, 45, 108, 108, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (8-22) to (252-286) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-17) to (198-224) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 1, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 2 to (8-10) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 3, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (40-46) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 13, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (2-6) to (64-72) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 19, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (3-8) to (88-101) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 31, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (3-10) to (112-126) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 34, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (5-13) to (142-158) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 42, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-14) to (168-192) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 51, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (7-20) to (227-253) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 63, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 960, 960, 400, 480, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (10-27) to (316-358) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 74, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 420, 420, 175, 210, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (15-38) to (445-503) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 82, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 108, 108, 45, 54, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageRanged1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-8) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 3, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageRanged2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (31-36) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 13, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageRanged3___"] = { type = "Prefix", affix = "Snapping", "Adds (1-5) to (50-56) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 19, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageRanged4"] = { type = "Prefix", affix = "Crackling", "Adds (3-6) to (69-79) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 31, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageRanged5"] = { type = "Prefix", affix = "Sparking", "Adds (3-8) to (88-99) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 34, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageRanged6_"] = { type = "Prefix", affix = "Arcing", "Adds (4-10) to (111-124) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 42, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageRanged7"] = { type = "Prefix", affix = "Shocking", "Adds (4-11) to (131-150) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 51, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageRanged8"] = { type = "Prefix", affix = "Discharging", "Adds (5-15) to (178-198) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 63, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1120, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageRanged9"] = { type = "Prefix", affix = "Electrocuting", "Adds (9-21) to (248-280) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 74, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 490, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageRanged10_"] = { type = "Prefix", affix = "Vapourising", "Adds (11-30) to (348-394) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 82, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 126, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (13-35) to (403-457) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (10-27) to (316-358) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 1, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(2-4)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 2, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(5-7)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 18, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(8-10)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 30, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(11-13)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 42, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(14-16)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 56, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(17-19)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 70, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(20-22)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 77, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(23-24)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 82, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Agile", "(2-4)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 2, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Dancer's", "(5-7)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 19, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Acrobat's", "(8-10)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 30, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Fleet", "(11-13)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 42, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Blurred", "(14-16)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 56, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Phased", "(17-19)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 70, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Vaporous", "(20-22)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 77, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(23-24)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 82, group = "EvasionRatingPercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(2-4)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 3, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(5-7)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 18, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(8-10)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 30, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(11-13)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 42, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(14-16)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 56, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-19)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 70, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(20-22)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 77, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEnergyShieldPercentEssence1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShieldPercentEssence4"] = { type = "Prefix", affix = "Essences", "(11-13)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShieldPercentEssence5"] = { type = "Prefix", affix = "Essences", "(14-16)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShieldPercentEssence6"] = { type = "Prefix", affix = "Essences", "(17-18)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShieldPercentEssence7_"] = { type = "Prefix", affix = "Essences", "(18-19)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 1, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 18, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 29, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-80) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 42, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(81-120) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 58, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(121-150) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 72, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(151-170) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 84, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(151-180) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 82, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 1, group = "BaseLocalDefences", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 18, group = "BaseLocalDefences", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 29, group = "BaseLocalDefences", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-138) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 42, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(139-322) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 56, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(323-400) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 70, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(401-430) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceHelm4__"] = { type = "Prefix", affix = "Essences", "+(40-49) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 42, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(50-60) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(61-138) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(139-155) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots3"] = { type = "Prefix", affix = "Essences", "+(21-25) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 26, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots4"] = { type = "Prefix", affix = "Essences", "+(26-29) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 42, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots5"] = { type = "Prefix", affix = "Essences", "+(30-35) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots6"] = { type = "Prefix", affix = "Essences", "+(36-60) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots7"] = { type = "Prefix", affix = "Essences", "+(61-70) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 1, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 18, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 30, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 44, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 57, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 71, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(401-460) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 83, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(461-540) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 86, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(420-480) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 82, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedPhysicalDamageReductionRatingEssenceRing5"] = { type = "Prefix", affix = "Essences", "+(80-120) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 58, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedPhysicalDamageReductionRatingEssenceRing6"] = { type = "Prefix", affix = "Essences", "+(121-200) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 74, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedPhysicalDamageReductionRatingEssenceRing7"] = { type = "Prefix", affix = "Essences", "+(201-300) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 82, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 1, group = "BaseLocalDefences", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 18, group = "BaseLocalDefences", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 30, group = "BaseLocalDefences", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 59, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(401-440) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(50-90) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm6_"] = { type = "Prefix", affix = "Essences", "+(91-138) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm7_"] = { type = "Prefix", affix = "Essences", "+(139-180) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(30-45) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(46-60) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(61-75) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(3-7) to Armour", "+(3-7) to Evasion Rating", statOrderKey = "849,858", statOrder = { 849, 858 }, level = 1, group = "BaseLocalDefences", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(9-25) to Armour", "+(9-25) to Evasion Rating", statOrderKey = "849,858", statOrder = { 849, 858 }, level = 18, group = "BaseLocalDefences", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(27-45) to Armour", "+(27-45) to Evasion Rating", statOrderKey = "849,858", statOrder = { 849, 858 }, level = 30, group = "BaseLocalDefences", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(46-103) to Armour", "+(46-103) to Evasion Rating", statOrderKey = "849,858", statOrder = { 849, 858 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, - ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(105-241) to Armour", "+(105-241) to Evasion Rating", statOrderKey = "849,858", statOrder = { 849, 858 }, level = 69, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(243-300) to Armour", "+(243-300) to Evasion Rating", statOrderKey = "849,858", statOrder = { 849, 858 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(3-7) to Armour", "+(3-4) to maximum Energy Shield", statOrderKey = "849,868", statOrder = { 849, 868 }, level = 1, group = "BaseLocalDefences", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(9-25) to Armour", "+(9-12) to maximum Energy Shield", statOrderKey = "849,868", statOrder = { 849, 868 }, level = 18, group = "BaseLocalDefences", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(27-45) to Armour", "+(18-22) to maximum Energy Shield", statOrderKey = "849,868", statOrder = { 849, 868 }, level = 30, group = "BaseLocalDefences", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(46-103) to Armour", "+(30-36) to maximum Energy Shield", statOrderKey = "849,868", statOrder = { 849, 868 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, - ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(105-241) to Armour", "+(58-67) to maximum Energy Shield", statOrderKey = "849,868", statOrder = { 849, 868 }, level = 69, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(243-300) to Armour", "+(69-75) to maximum Energy Shield", statOrderKey = "849,868", statOrder = { 849, 868 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(3-7) to Evasion Rating", "+(3-4) to maximum Energy Shield", statOrderKey = "858,868", statOrder = { 858, 868 }, level = 1, group = "BaseLocalDefences", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(9-25) to Evasion Rating", "+(9-12) to maximum Energy Shield", statOrderKey = "858,868", statOrder = { 858, 868 }, level = 18, group = "BaseLocalDefences", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(27-45) to Evasion Rating", "+(18-22) to maximum Energy Shield", statOrderKey = "858,868", statOrder = { 858, 868 }, level = 30, group = "BaseLocalDefences", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(46-103) to Evasion Rating", "+(30-36) to maximum Energy Shield", statOrderKey = "858,868", statOrder = { 858, 868 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(105-241) to Evasion Rating", "+(58-67) to maximum Energy Shield", statOrderKey = "858,868", statOrder = { 858, 868 }, level = 69, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(243-300) to Evasion Rating", "+(69-75) to maximum Energy Shield", statOrderKey = "858,868", statOrder = { 858, 868 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0, }, }, - ["LocalBaseArmourAndEvasionRatingAndLife1"] = { type = "Prefix", affix = "Rhoa's", "+(8-10) to Armour", "+(8-10) to Evasion Rating", "+(18-23) to maximum Life", statOrderKey = "849,858,877", statOrder = { 849, 858, 877 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEvasionRatingAndLife2"] = { type = "Prefix", affix = "Rhex's", "+(11-21) to Armour", "+(11-21) to Evasion Rating", "+(24-28) to maximum Life", statOrderKey = "849,858,877", statOrder = { 849, 858, 877 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEvasionRatingAndLife3"] = { type = "Prefix", affix = "Chimeral's", "+(22-48) to Armour", "+(22-48) to Evasion Rating", "+(29-33) to maximum Life", statOrderKey = "849,858,877", statOrder = { 849, 858, 877 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEvasionRatingAndLife4"] = { type = "Prefix", affix = "Bull's", "+(49-60) to Armour", "+(49-60) to Evasion Rating", "+(34-38) to maximum Life", statOrderKey = "849,858,877", statOrder = { 849, 858, 877 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEnergyShieldAndLife1_"] = { type = "Prefix", affix = "Coelacanth's", "+(8-10) to Armour", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrderKey = "849,868,877", statOrder = { 849, 868, 877 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEnergyShieldAndLife2_"] = { type = "Prefix", affix = "Swordfish's", "+(11-21) to Armour", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrderKey = "849,868,877", statOrder = { 849, 868, 877 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Shark's", "+(22-48) to Armour", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrderKey = "849,868,877", statOrder = { 849, 868, 877 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Whale's", "+(49-60) to Armour", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrderKey = "849,868,877", statOrder = { 849, 868, 877 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Vulture's", "+(8-10) to Evasion Rating", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrderKey = "858,868,877", statOrder = { 858, 868, 877 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Kingfisher's", "+(11-21) to Evasion Rating", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrderKey = "858,868,877", statOrder = { 858, 868, 877 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Owl's", "+(22-48) to Evasion Rating", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrderKey = "858,868,877", statOrder = { 858, 868, 877 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Eagle's", "+(49-60) to Evasion Rating", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrderKey = "858,868,877", statOrder = { 858, 868, 877 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalBaseArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "+(14-20) to Armour", "+(18-23) to maximum Life", statOrderKey = "849,877", statOrder = { 849, 877 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, - ["LocalBaseArmourAndLife2"] = { type = "Prefix", affix = "Urchin's", "+(21-42) to Armour", "+(24-28) to maximum Life", statOrderKey = "849,877", statOrder = { 849, 877 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, - ["LocalBaseArmourAndLife3"] = { type = "Prefix", affix = "Nautilus's", "+(43-95) to Armour", "+(29-33) to maximum Life", statOrderKey = "849,877", statOrder = { 849, 877 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "boots", "gloves", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0, }, }, - ["LocalBaseArmourAndLife4"] = { type = "Prefix", affix = "Crocodile's", "+(96-120) to Armour", "+(34-38) to maximum Life", statOrderKey = "849,877", statOrder = { 849, 877 }, level = 78, group = "BaseLocalDefencesAndLife", 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, }, }, - ["LocalBaseEvasionRatingAndLife1"] = { type = "Prefix", affix = "Flea's", "+(14-20) to Evasion Rating", "+(18-23) to maximum Life", statOrderKey = "858,877", statOrder = { 858, 877 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, - ["LocalBaseEvasionRatingAndLife2"] = { type = "Prefix", affix = "Fawn's", "+(21-42) to Evasion Rating", "+(24-28) to maximum Life", statOrderKey = "858,877", statOrder = { 858, 877 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, - ["LocalBaseEvasionRatingAndLife3"] = { type = "Prefix", affix = "Ram's", "+(43-95) to Evasion Rating", "+(29-33) to maximum Life", statOrderKey = "858,877", statOrder = { 858, 877 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "boots", "gloves", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0, }, }, - ["LocalBaseEvasionRatingAndLife4"] = { type = "Prefix", affix = "Ibex's", "+(96-120) to Evasion Rating", "+(34-38) to maximum Life", statOrderKey = "858,877", statOrder = { 858, 877 }, level = 78, group = "BaseLocalDefencesAndLife", 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, }, }, - ["LocalBaseEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "+(8-10) to maximum Energy Shield", "+(18-23) to maximum Life", statOrderKey = "868,877", statOrder = { 868, 877 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, - ["LocalBaseEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "+(11-15) to maximum Energy Shield", "+(24-28) to maximum Life", statOrderKey = "868,877", statOrder = { 868, 877 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, - ["LocalBaseEnergyShieldAndLife3_"] = { type = "Prefix", affix = "Abbot's", "+(16-25) to maximum Energy Shield", "+(29-33) to maximum Life", statOrderKey = "868,877", statOrder = { 868, 877 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0, }, }, - ["LocalBaseEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Exarch's", "+(26-30) to maximum Energy Shield", "+(34-38) to maximum Life", statOrderKey = "868,877", statOrder = { 868, 877 }, level = 78, group = "BaseLocalDefencesAndLife", 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, }, }, - ["LocalBaseEnergyShieldAndMana1"] = { type = "Prefix", affix = "Acolyte's", "+(8-10) to maximum Energy Shield", "+(11-15) to maximum Mana", statOrderKey = "868,884", statOrder = { 868, 884 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, - ["LocalBaseEnergyShieldAndMana2"] = { type = "Prefix", affix = "Deacon's", "+(11-15) to maximum Energy Shield", "+(16-19) to maximum Mana", statOrderKey = "868,884", statOrder = { 868, 884 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0, }, }, - ["LocalBaseEnergyShieldAndMana3"] = { type = "Prefix", affix = "Priest's", "+(16-25) to maximum Energy Shield", "+(20-22) to maximum Mana", statOrderKey = "868,884", statOrder = { 868, 884 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0, }, }, - ["LocalBaseEnergyShieldAndMana4"] = { type = "Prefix", affix = "Bishop's", "+(26-30) to maximum Energy Shield", "+(23-25) to maximum Mana", statOrderKey = "868,884", statOrder = { 868, 884 }, level = 78, group = "BaseLocalDefencesAndLife", 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, }, }, - ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 15, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 30, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 40, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 55, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 86, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["MovementVelocityEssence7"] = { type = "Prefix", affix = "Essences", "32% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 82, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, - ["MovementVelocityEnhancedModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrderKey = "1070,2425", statOrder = { 1070, 2425 }, level = 1, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, - ["MovementVelocityEnhancedModDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(5-6)% chance to Dodge Attack Hits", statOrderKey = "1070,1417", statOrder = { 1070, 1417 }, level = 1, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, - ["MovementVelocityEnhancedModSpellDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(5-6)% chance to Dodge Spell Hits", statOrderKey = "1070,1418", statOrder = { 1070, 1418 }, level = 1, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellDamage1"] = { type = "Prefix", affix = "Chanter's", "(3-7)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 5, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamage2"] = { type = "Prefix", affix = "Mage's", "(8-12)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 20, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamage3"] = { type = "Prefix", affix = "Sorcerer's", "(13-17)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 38, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamage4"] = { type = "Prefix", affix = "Thaumaturgist's", "(18-22)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 56, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamage5"] = { type = "Prefix", affix = "Wizard's", "(23-26)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 76, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(10-19)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 1500, 1500, 1500, 1500, 1500, 1500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(20-29)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 1500, 1500, 1500, 1500, 1500, 1500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(30-39)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 1500, 1500, 1500, 1500, 1500, 1500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(40-49)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 600, 600, 600, 600, 600, 600, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(50-64)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 300, 300, 300, 300, 300, 300, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(65-74)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 150, 150, 150, 150, 150, 150, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(85-99)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 80, 80, 80, 80, 80, 80, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(100-109)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 40, 40, 40, 40, 40, 40, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponEssence5_"] = { type = "Prefix", affix = "Essences", "(50-66)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(67-82)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 74, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(83-94)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 82, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "562,5994", statOrder = { 562, 5994 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(15-29)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(30-44)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-59)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(60-84)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 600, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(85-104)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(105-124)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 150, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(125-149)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 80, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(150-164)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 40, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "(85-106)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(107-122)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 74, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(123-144)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 82, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "562,5994", statOrder = { 562, 5994 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(5-9)% increased Spell Damage", "+(17-20) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 2, group = "SpellDamageAndMana", weightKey = { "attack_dagger", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 750, 750, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(10-14)% increased Spell Damage", "+(21-24) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 11, group = "SpellDamageAndMana", weightKey = { "attack_dagger", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 750, 750, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(15-19)% increased Spell Damage", "+(25-28) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 23, group = "SpellDamageAndMana", weightKey = { "attack_dagger", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 750, 750, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(20-24)% increased Spell Damage", "+(29-33) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 35, group = "SpellDamageAndMana", weightKey = { "attack_dagger", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 600, 600, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(25-29)% increased Spell Damage", "+(34-37) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 46, group = "SpellDamageAndMana", weightKey = { "attack_dagger", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 400, 300, 300, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(30-34)% increased Spell Damage", "+(38-41) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 58, group = "SpellDamageAndMana", weightKey = { "attack_dagger", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 200, 150, 150, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(35-39)% increased Spell Damage", "+(42-45) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 80, group = "SpellDamageAndMana", weightKey = { "attack_dagger", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 100, 75, 75, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(8-14)% increased Spell Damage", "+(26-30) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 2, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(15-22)% increased Spell Damage", "+(31-35) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 11, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(23-29)% increased Spell Damage", "+(36-41) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 23, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-37)% increased Spell Damage", "+(42-47) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 35, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 600, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(38-44)% increased Spell Damage", "+(48-53) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 46, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(45-50)% increased Spell Damage", "+(54-59) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 58, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 150, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(51-55)% increased Spell Damage", "+(60-64) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 80, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 75, 0, }, tags = { "has_caster_mod", }, }, - ["TrapDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrderKey = "534", statOrder = { 534 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrderKey = "534", statOrder = { 534 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapThrowSpeedEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrderKey = "1178", statOrder = { 1178 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapCooldownRecoveryAndDurationEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Speed for throwing Traps", statOrderKey = "1174,2642", statOrder = { 1174, 2642 }, level = 1, group = "TrapCooldownRecovery", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapAreaOfEffectEnhancedMod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrderKey = "2660", statOrder = { 2660 }, level = 1, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreaseSocketedTrapGemLevelEnhancedMod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap Gems", statOrderKey = "49", statOrder = { 49 }, level = 1, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnWeaponEnhancedMod__"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionAttackAndCastSpeedEnhancedMod"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (13-15)% increased Attack Speed", "Minions have (13-15)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDurationEnhancedMod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrderKey = "3798", statOrder = { 3798 }, level = 1, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreaseSocketedMinionGemLevelEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrderKey = "44", statOrder = { 44 }, level = 1, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(10-19)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, }, - ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(20-29)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, }, - ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(30-39)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, }, - ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(40-49)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 200, 200, 200, 0, }, }, - ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Volcanic", "(50-64)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, }, - ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(65-74)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 50, 50, 50, 0, }, }, - ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Pyroclastic", "(85-99)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 25, 25, 25, 0, }, }, - ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(100-109)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 12, 12, 12, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(15-29)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(30-44)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-59)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(60-84)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 200, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Volcanic", "(85-104)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 100, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(105-124)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 50, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Pyroclastic", "(125-149)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 25, 0, }, }, - ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(150-164)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 13, 0, }, }, - ["FireDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrderKey = "686,725", statOrder = { 686, 725 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrderKey = "686,725", statOrder = { 686, 725 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(10-19)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, }, - ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(20-29)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, }, - ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(30-39)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, }, - ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(40-49)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 200, 200, 200, 0, }, }, - ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(50-64)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, }, - ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Crystalline", "(65-74)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 50, 50, 50, 0, }, }, - ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(85-99)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 25, 25, 25, 0, }, }, - ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Tul's", "(100-109)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 12, 12, 12, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(15-29)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(30-44)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(45-59)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(60-84)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 200, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(85-104)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 100, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Crystalline", "(105-124)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 50, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(125-149)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 25, 0, }, }, - ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Tul's", "(150-164)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 13, 0, }, }, - ["ColdDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrderKey = "693,726", statOrder = { 693, 726 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrderKey = "693,726", statOrder = { 693, 726 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(10-19)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, }, - ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(20-29)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, }, - ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(30-39)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, }, - ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(40-49)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 200, 200, 200, 0, }, }, - ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(50-64)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, }, - ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(65-74)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 50, 50, 50, 0, }, }, - ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(85-99)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 25, 25, 25, 0, }, }, - ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Esh's", "(100-109)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 12, 12, 12, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(15-29)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(30-44)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-59)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(60-84)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 200, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(85-104)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 100, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(105-124)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 50, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(125-149)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 25, 0, }, }, - ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Esh's", "(150-164)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 13, 0, }, }, - ["LightningDamagePrefixOnWeaponEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrderKey = "702,727", statOrder = { 702, 727 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrderKey = "702,727", statOrder = { 702, 727 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(5-10)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(11-20)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(21-30)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(31-36)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(37-42)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(43-50)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 10, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 26, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageEssence4"] = { type = "Prefix", affix = "Essences", "(26-29)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 42, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageEssence5"] = { type = "Prefix", affix = "Essences", "(30-34)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 58, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageEssence6_"] = { type = "Prefix", affix = "Essences", "(35-38)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 74, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageEssence7"] = { type = "Prefix", affix = "Essences", "(39-42)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 82, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnWeapons1_"] = { type = "Prefix", affix = "Catalysing", "(11-20)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnWeapons2"] = { type = "Prefix", affix = "Infusing", "(21-30)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnWeapons3_"] = { type = "Prefix", affix = "Empowering", "(31-36)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnWeapons4"] = { type = "Prefix", affix = "Unleashed", "(37-42)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnWeapons5_"] = { type = "Prefix", affix = "Overpowering", "(43-50)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnWeapons6"] = { type = "Prefix", affix = "Devastating", "(51-59)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(19-34)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(36-51)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(53-61)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(63-71)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(73-85)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_attack_mod", }, }, - ["ManaLeech1"] = { type = "Prefix", affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrderKey = "979", statOrder = { 979 }, level = 9, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["ManaLeech2"] = { type = "Prefix", affix = "Parched", "(3-4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "979", statOrder = { 979 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["ManaLeechPermyriad1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "980", statOrder = { 980 }, level = 50, group = "ManaLeech", weightKey = { "no_attack_mods", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["ManaLeechPermyriad2"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrderKey = "980", statOrder = { 980 }, level = 70, group = "ManaLeech", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["ManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrderKey = "980", statOrder = { 980 }, level = 82, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalManaLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "982", statOrder = { 982 }, level = 58, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalManaLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrderKey = "982", statOrder = { 982 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrderKey = "982", statOrder = { 982 }, level = 82, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["ItemFoundQuantityIncrease1"] = { type = "Suffix", affix = "of Collecting", "(4-8)% increased Quantity of Items found", statOrderKey = "892", statOrder = { 892 }, level = 2, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["ItemFoundQuantityIncrease2"] = { type = "Suffix", affix = "of Gathering", "(9-12)% increased Quantity of Items found", statOrderKey = "892", statOrder = { 892 }, level = 32, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["ItemFoundQuantityIncrease3"] = { type = "Suffix", affix = "of Hoarding", "(13-16)% increased Quantity of Items found", statOrderKey = "892", statOrder = { 892 }, level = 55, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["ItemFoundQuantityIncrease4"] = { type = "Suffix", affix = "of Amassment", "(17-20)% increased Quantity of Items found", statOrderKey = "892", statOrder = { 892 }, level = 77, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 30, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-20)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 53, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(21-26)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-12)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 20, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Pirate's", "(13-18)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 39, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Dragon's", "(19-24)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 62, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Perandus'", "(25-28)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 84, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(5-7)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "ring", "amulet", "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 1000, 0, 1000, 800, 800, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(8-10)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "amulet", "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 1000, 0, 1000, 800, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(11-13)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "amulet", "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 1000, 0, 1000, 800, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Legerdemain", "(14-16)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Prestidigitation", "(17-19)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Sortilege", "(20-22)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 500, 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(23-25)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 250, 0, 250, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(26-28)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(8-11)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(12-15)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(17-20)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Legerdemain", "(21-24)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Prestidigitation", "(26-29)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Sortilege", "(30-33)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(35-38)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHandEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(23-25)% increased Cast Speed", statOrderKey = "728,767", statOrder = { 728, 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedCastSpeedTwoHandEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(35-38)% increased Cast Speed", statOrderKey = "728,767", statOrder = { 728, 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedCastSpeedFishing"] = { type = "Suffix", affix = "of Casting", "(24-28)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 10, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "fishing_rod", "default", }, weightVal = { 0, 1000, 0, }, }, - ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 30, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 500, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 37, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 500, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 60, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-27)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 77, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedEssenceRanged4_"] = { type = "Suffix", affix = "of the Essence", "(11-12)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedEssenceRanged5"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedEssenceRanged6"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedEssenceRanged7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrderKey = "711,734", statOrder = { 711, 734 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedAttackSpeedRangedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrderKey = "711,734", statOrder = { 711, 734 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ring", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Grandmastery", "(14-16)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 76, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceJewellery4"] = { type = "Suffix", affix = "of the Essence", "(4-5)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceJewellery5"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceJewellery6"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceJewellery7"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceQuiver4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceQuiver5_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceQuiver6"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedEssenceQuiver7___"] = { type = "Suffix", affix = "of the Essence", "(11-12)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 1, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 12, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 20, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 26, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 33, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 41, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 50, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy8"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 63, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy9"] = { type = "Suffix", affix = "of the Assassin", "+(321-400) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 76, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracy10"] = { type = "Suffix", affix = "of Lioneye", "+(401-500) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 85, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(401-440) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracyNew1_"] = { type = "Suffix", affix = "of Steadiness", "+(50-100) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 1, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 600, 600, 600, 600, 600, 600, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(100-165) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 20, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(166-250) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 40, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(251-350) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 60, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracyNew5_"] = { type = "Suffix", affix = "of the Ranger", "+(351-480) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 75, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(481-600) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 85, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "default", }, weightVal = { 0, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Regenerate (1-2) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Regenerate (2-4) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 18, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Regenerate (4-7) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 30, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Regenerate (7-10) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 44, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Regenerate (10-13) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 59, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Regenerate (13-16) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 78, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["LifeRegeneration7"] = { type = "Suffix", affix = "of Ryslatha", "Regenerate (16-20) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 83, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000, }, }, - ["LifeRegeneration8_"] = { type = "Suffix", affix = "of the Phoenix", "Regenerate (20-25) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 86, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["LifeRegenerationEssence2"] = { type = "Suffix", affix = "of the Essence", "Regenerate (2-4) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 10, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeRegenerationEssence7"] = { type = "Suffix", affix = "of the Essence", "Regenerate (15-18) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 82, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeRegenerationEnhancedMod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (16-20) Life per second", "Regenerate 0.4% of Life per second", statOrderKey = "882,1194", statOrder = { 882, 1194 }, level = 1, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeRegenerationPercent1"] = { type = "Suffix", affix = "of Youthfulness", "Regenerate (0.4-0.5)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 18, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["LifeRegenerationPercent2__"] = { type = "Suffix", affix = "of Vitality", "Regenerate (0.6-0.7)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 36, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["LifeRegenerationPercent3_"] = { type = "Suffix", affix = "of Longevity", "Regenerate (0.8-0.9)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["LifeRegenerationPercent4"] = { type = "Suffix", affix = "of Immortality", "Regenerate (1-1.1)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 81, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 2, 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, }, }, - ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 18, 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, }, }, - ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 29, 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, }, }, - ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 42, 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, }, }, - ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 55, 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, }, }, - ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 79, 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, }, }, - ["ManaRegenerationEssence7_"] = { type = "Suffix", affix = "of the Essence", "(70-76)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 82, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, - ["StunThresholdReduction1"] = { type = "Suffix", affix = "of the Pugilist", "(5-7)% reduced Enemy Stun Threshold", statOrderKey = "837", statOrder = { 837 }, level = 5, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["StunThresholdReduction2"] = { type = "Suffix", affix = "of the Brawler", "(8-9)% reduced Enemy Stun Threshold", statOrderKey = "837", statOrder = { 837 }, level = 20, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["StunThresholdReduction3"] = { type = "Suffix", affix = "of the Boxer", "(10-11)% reduced Enemy Stun Threshold", statOrderKey = "837", statOrder = { 837 }, level = 30, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["StunThresholdReduction4"] = { type = "Suffix", affix = "of the Combatant", "(12-13)% reduced Enemy Stun Threshold", statOrderKey = "837", statOrder = { 837 }, level = 44, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["StunThresholdReduction5"] = { type = "Suffix", affix = "of the Gladiator", "(14-15)% reduced Enemy Stun Threshold", statOrderKey = "837", statOrder = { 837 }, level = 58, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["StunThresholdReductionEssence7"] = { type = "Suffix", affix = "of the Essence", "(16-17)% reduced Enemy Stun Threshold", statOrderKey = "837", statOrder = { 837 }, level = 82, group = "StunThresholdReduction", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 5, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 20, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 30, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 44, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 58, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 72, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalStrikeChance7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 85, group = "CriticalStrikeChanceIncrease", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["CriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 82, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalStrikeChanceEssenceGloves4"] = { type = "Suffix", affix = "of the Essence", "(15-17)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 42, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalStrikeChanceEssenceGloves5"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 58, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalStrikeChanceEssenceGloves6"] = { type = "Suffix", affix = "of the Essence", "(21-23)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 74, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalStrikeChanceEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(24-26)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 82, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-11)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(12-17)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 12, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(18-23)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 24, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(24-29)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 36, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(30-35)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 48, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(36-41)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 60, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResist7"] = { type = "Suffix", affix = "of the Magma", "+(42-45)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 72, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(46-48)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 84, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist1"] = { type = "Suffix", affix = "of the Inuit", "+(6-11)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist2"] = { type = "Suffix", affix = "of the Seal", "+(12-17)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 14, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist3"] = { type = "Suffix", affix = "of the Penguin", "+(18-23)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 26, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(24-29)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 38, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(30-35)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 50, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(36-41)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 60, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(42-45)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 72, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(46-48)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 84, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-11)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(12-17)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 13, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(18-23)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 25, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(24-29)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 37, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(30-35)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 49, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(36-41)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 60, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(42-45)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 72, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(46-48)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 84, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["FireResistEnhancedModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "923,1653", statOrder = { 923, 1653 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["ColdResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(9-10)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "929,1654", statOrder = { 929, 1654 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["LightningResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(9-10)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "934,1655", statOrder = { 934, 1655 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["FireResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrderKey = "923,962", statOrder = { 923, 962 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrderKey = "929,964", statOrder = { 929, 964 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistEnhancedModLeech_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrderKey = "934,966", statOrder = { 934, 966 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrderKey = "923,6362", statOrder = { 923, 6362 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistEnhancedModAilments__"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrderKey = "929,4222", statOrder = { 929, 4222 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrderKey = "934,4131", statOrder = { 934, 4131 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(5-10)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, - ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(11-15)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 30, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, - ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(16-20)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 44, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, - ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(21-25)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 56, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, - ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(26-30)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 65, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, - ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(31-35)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 81, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0, }, }, - ["ChaosResistEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(9-10)% reduced Chaos Damage taken over time", statOrderKey = "938,1198", statOrder = { 938, 1198 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 12, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 24, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 36, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 48, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 60, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 85, group = "AllResistances", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["CriitcalMultiplierEssence7"] = { type = "Suffix", affix = "of the Essence", "+(35-41)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalMultiplierEssenceRing5_"] = { type = "Suffix", affix = "of the Essence", "+(15-17)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 58, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalMultiplierEssenceRing6_"] = { type = "Suffix", affix = "of the Essence", "+(18-20)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, - ["CriticalMultiplierEssenceRing7"] = { type = "Suffix", affix = "of the Essence", "+(21-25)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, - ["StunRecovery1"] = { type = "Suffix", affix = "of Thick Skin", "(11-13)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 1, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["StunRecovery2"] = { type = "Suffix", affix = "of Stone Skin", "(14-16)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 17, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["StunRecovery3"] = { type = "Suffix", affix = "of Iron Skin", "(17-19)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 28, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["StunRecovery4"] = { type = "Suffix", affix = "of Steel Skin", "(20-22)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 42, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["StunRecovery5"] = { type = "Suffix", affix = "of Adamantite Skin", "(23-25)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 56, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["StunRecovery6"] = { type = "Suffix", affix = "of Corundum Skin", "(26-28)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 79, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["StunRecoveryEssence7"] = { type = "Suffix", affix = "of the Essence", "(29-34)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 82, group = "StunRecovery", weightKey = { "default", }, weightVal = { 0, }, }, - ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-15)% increased Stun Duration on Enemies", statOrderKey = "1123", statOrder = { 1123 }, level = 5, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(16-20)% increased Stun Duration on Enemies", statOrderKey = "1123", statOrder = { 1123 }, level = 18, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(21-25)% increased Stun Duration on Enemies", statOrderKey = "1123", statOrder = { 1123 }, level = 30, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(26-30)% increased Stun Duration on Enemies", statOrderKey = "1123", statOrder = { 1123 }, level = 44, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(31-35)% increased Stun Duration on Enemies", statOrderKey = "1123", statOrder = { 1123 }, level = 58, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunDurationEssence7"] = { type = "Suffix", affix = "of the Essence", "(36-39)% increased Stun Duration on Enemies", statOrderKey = "1123", statOrder = { 1123 }, level = 82, group = "StunDurationIncreasePercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 11, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "attack_dagger", "no_caster_mods", "attack_staff", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 21, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "attack_dagger", "no_caster_mods", "attack_staff", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 28, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "attack_dagger", "no_caster_mods", "attack_staff", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 41, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "attack_dagger", "no_caster_mods", "attack_staff", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 59, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "attack_dagger", "no_caster_mods", "attack_staff", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 76, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "attack_dagger", "no_caster_mods", "attack_staff", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellCriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(110-119)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 82, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["ProjectileSpeed1"] = { type = "Suffix", affix = "of Darting", "(10-17)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 14, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["ProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "(18-25)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 27, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["ProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "(26-33)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 41, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["ProjectileSpeed4"] = { type = "Suffix", affix = "of the Zephyr", "(34-41)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 55, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["ProjectileSpeed5"] = { type = "Suffix", affix = "of the Gale", "(42-46)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 82, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["ProjectileSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "(47-52)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 28, group = "ProjectileSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "+2 Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 8, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "amulet", "ring", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "+3 Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 20, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "+4 Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 30, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "+5 Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 40, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "default", }, weightVal = { 0, 0, }, tags = { "has_attack_mod", }, }, - ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "+2 Life gained for each Enemy hit by Attacks", statOrderKey = "1015", statOrder = { 1015 }, level = 8, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, }, - ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "+3 Life gained for each Enemy hit by Attacks", statOrderKey = "1015", statOrder = { 1015 }, level = 20, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, }, - ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "+4 Life gained for each Enemy hit by Attacks", statOrderKey = "1015", statOrder = { 1015 }, level = 30, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, }, - ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "+5 Life gained for each Enemy hit by Attacks", statOrderKey = "1015", statOrder = { 1015 }, level = 40, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, }, - ["FireDamagePercent1"] = { type = "Suffix", affix = "of Embers", "(3-7)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 8, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["FireDamagePercent2"] = { type = "Suffix", affix = "of Coals", "(8-12)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 22, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["FireDamagePercent3"] = { type = "Suffix", affix = "of Cinders", "(13-17)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 36, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["FireDamagePercent4"] = { type = "Suffix", affix = "of Flames", "(18-22)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 50, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["FireDamagePercent5"] = { type = "Suffix", affix = "of Immolation", "(23-26)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 64, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0, }, }, - ["FireDamagePercent6"] = { type = "Suffix", affix = "of Ashes", "(27-30)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 76, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, }, - ["FireDamagePercentEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 10, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 26, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePercentEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 42, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 58, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 74, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 82, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePercent1"] = { type = "Suffix", affix = "of Snow", "(3-7)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 12, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["ColdDamagePercent2"] = { type = "Suffix", affix = "of Sleet", "(8-12)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 24, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["ColdDamagePercent3"] = { type = "Suffix", affix = "of Ice", "(13-17)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 36, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["ColdDamagePercent4"] = { type = "Suffix", affix = "of Rime", "(18-22)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 50, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["ColdDamagePercent5"] = { type = "Suffix", affix = "of Floe", "(23-26)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 64, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0, }, }, - ["ColdDamagePercent6"] = { type = "Suffix", affix = "of Glaciation", "(27-30)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 76, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, }, - ["ColdDamagePercentEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-10)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 1, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePercentEssence2"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 10, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 26, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePercentEssence4_"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 42, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 58, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 74, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 82, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningDamagePercent1"] = { type = "Suffix", affix = "of Sparks", "(3-7)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 10, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["LightningDamagePercent2"] = { type = "Suffix", affix = "of Static", "(8-12)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 23, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["LightningDamagePercent3"] = { type = "Suffix", affix = "of Electricity", "(13-17)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 36, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["LightningDamagePercent4"] = { type = "Suffix", affix = "of Voltage", "(18-22)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 50, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0, }, }, - ["LightningDamagePercent5"] = { type = "Suffix", affix = "of Discharge", "(23-26)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 64, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0, }, }, - ["LightningDamagePercent6"] = { type = "Suffix", affix = "of Arcing", "(27-30)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 76, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, }, - ["LightningDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 82, group = "LightningDamagePercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "+(3-6) Life gained on Kill", statOrderKey = "1025", statOrder = { 1025 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "+(7-10) Life gained on Kill", statOrderKey = "1025", statOrder = { 1025 }, level = 23, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "+(11-14) Life gained on Kill", statOrderKey = "1025", statOrder = { 1025 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "+1 Mana gained on Kill", statOrderKey = "1038", statOrder = { 1038 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "+(2-3) Mana gained on Kill", statOrderKey = "1038", statOrder = { 1038 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "+(4-6) Mana gained on Kill", statOrderKey = "1038", statOrder = { 1038 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 20, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 30, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Puncturing", "(25-29)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 44, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 59, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 73, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, - ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, - ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 30, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, - ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 44, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, - ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, - ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 73, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreaseSocketedGemLevel1"] = { type = "Prefix", affix = "Paragon's", "+1 to Level of Socketed Gems", statOrderKey = "29", statOrder = { 29 }, level = 50, group = "IncreaseSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "staff", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0, 0, 0, 1000, 0, }, }, - ["LocalIncreaseSocketedGemUnsetRing1"] = { type = "Prefix", affix = "Exemplary", "+1 to Level of Socketed Gems", statOrderKey = "29", statOrder = { 29 }, level = 2, group = "IncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreaseSocketedGemUnsetRing2"] = { type = "Prefix", affix = "Quintessential", "+2 to Level of Socketed Gems", statOrderKey = "29", statOrder = { 29 }, level = 50, group = "IncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreaseSocketedGemUnsetRing3"] = { type = "Prefix", affix = "Flawless", "+3 to Level of Socketed Gems", statOrderKey = "29", statOrder = { 29 }, level = 76, group = "IncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 250, 0, }, }, - ["GlobalSpellGemsLevel1"] = { type = "Prefix", affix = "Magister's", "+1 to Level of all Spell Skill Gems", statOrderKey = "907", statOrder = { 907 }, level = 55, group = "IncreaseSocketedGemLevel", weightKey = { "no_caster_mods", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 50, 50, 50, 0, }, }, - ["GlobalSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Magister's", "+(1-2) to Level of all Spell Skill Gems", statOrderKey = "907", statOrder = { 907 }, level = 55, group = "IncreaseSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 50, 0, }, }, - ["LocalIncreaseSocketedFireGemLevel1"] = { type = "Prefix", affix = "Flame Spinner's", "+1 to Level of Socketed Fire Gems", statOrderKey = "34", statOrder = { 34 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["LocalIncreaseSocketedFireGemLevel2_"] = { type = "Prefix", affix = "Lava Caller's", "+2 to Level of Socketed Fire Gems", statOrderKey = "34", statOrder = { 34 }, level = 55, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["GlobalFireSpellGemsLevel1_"] = { type = "Prefix", affix = "Flame Shaper's", "+1 to Level of all Fire Spell Skill Gems", statOrderKey = "909", statOrder = { 909 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 0, 250, 250, 250, 250, 0, }, }, - ["GlobalFireSpellGemsLevelTwoHand1__"] = { type = "Prefix", affix = "Flame Shaper's", "+(1-2) to Level of all Fire Spell Skill Gems", statOrderKey = "909", statOrder = { 909 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, - ["GlobalFireSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Lava Conjurer's", "+3 to Level of all Fire Spell Skill Gems", statOrderKey = "909", statOrder = { 909 }, level = 77, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 125, 0, }, }, - ["LocalIncreaseSocketedColdGemLevel1"] = { type = "Prefix", affix = "Frost Weaver's", "+1 to Level of Socketed Cold Gems", statOrderKey = "35", statOrder = { 35 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["LocalIncreaseSocketedColdGemLevel2"] = { type = "Prefix", affix = "Winterbringer's", "+2 to Level of Socketed Cold Gems", statOrderKey = "35", statOrder = { 35 }, level = 55, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["GlobalColdSpellGemsLevel1_"] = { type = "Prefix", affix = "Frost Singer's", "+1 to Level of all Cold Spell Skill Gems", statOrderKey = "910", statOrder = { 910 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 0, 250, 250, 250, 250, 0, }, }, - ["GlobalColdSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Frost Singer's", "+(1-2) to Level of all Cold Spell Skill Gems", statOrderKey = "910", statOrder = { 910 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, - ["GlobalColdSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Winter Beckoner's", "+3 to Level of all Cold Spell Skill Gems", statOrderKey = "910", statOrder = { 910 }, level = 77, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 125, 0, }, }, - ["LocalIncreaseSocketedLightningGemLevel1"] = { type = "Prefix", affix = "Thunder Lord's", "+1 to Level of Socketed Lightning Gems", statOrderKey = "36", statOrder = { 36 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["LocalIncreaseSocketedLightningGemLevel2"] = { type = "Prefix", affix = "Tempest King's", "+2 to Level of Socketed Lightning Gems", statOrderKey = "36", statOrder = { 36 }, level = 55, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["GlobalLightningSpellGemsLevel1"] = { type = "Prefix", affix = "Thunderhand's", "+1 to Level of all Lightning Spell Skill Gems", statOrderKey = "911", statOrder = { 911 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 0, 250, 250, 250, 250, 0, }, }, - ["GlobalLightningSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Thunderhand's", "+(1-2) to Level of all Lightning Spell Skill Gems", statOrderKey = "911", statOrder = { 911 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 250, 0, }, }, - ["GlobalLightningSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Tempest Master's", "+3 to Level of all Lightning Spell Skill Gems", statOrderKey = "911", statOrder = { 911 }, level = 77, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 125, 0, }, }, - ["LocalIncreaseSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Nihilist's", "+1 to Level of Socketed Chaos Gems", statOrderKey = "37", statOrder = { 37 }, level = 4, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["LocalIncreaseSocketedChaosGemLevel2"] = { type = "Prefix", affix = "Anarchist's", "+2 to Level of Socketed Chaos Gems", statOrderKey = "37", statOrder = { 37 }, level = 55, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["GlobalChaosSpellGemsLevel1"] = { type = "Prefix", affix = "Mad Lord's", "+1 to Level of all Chaos Spell Skill Gems", statOrderKey = "912", statOrder = { 912 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 0, 200, 200, 200, 0, }, }, - ["GlobalChaosSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Mad Lord's", "+(1-2) to Level of all Chaos Spell Skill Gems", statOrderKey = "912", statOrder = { 912 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 200, 0, }, }, - ["GlobalChaosSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Splintermind's", "+3 to Level of all Chaos Spell Skill Gems", statOrderKey = "912", statOrder = { 912 }, level = 77, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 100, 0, }, }, - ["GlobalPhysicalSpellGemsLevel1"] = { type = "Prefix", affix = "Lithomancer's", "+1 to Level of all Physical Spell Skill Gems", statOrderKey = "908", statOrder = { 908 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 0, }, }, - ["GlobalPhysicalSpellGemsLevelTwoHand1_"] = { type = "Prefix", affix = "Lithomancer's", "+(1-2) to Level of all Physical Spell Skill Gems", statOrderKey = "908", statOrder = { 908 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 200, 0, }, }, - ["GlobalPhysicalSpellGemsLevelTwoHand2_"] = { type = "Prefix", affix = "Tecton's", "+3 to Level of all Physical Spell Skill Gems", statOrderKey = "908", statOrder = { 908 }, level = 77, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 100, 0, }, }, - ["LocalIncreaseSocketedSpellGemLevelRace"] = { type = "Prefix", affix = "Competitor's", "+1 to Level of Socketed Spell Gems", statOrderKey = "38", statOrder = { 38 }, level = 1, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreaseSocketedMeleeGemLevel1"] = { type = "Prefix", affix = "Combatant's", "+1 to Level of Socketed Melee Gems", statOrderKey = "43", statOrder = { 43 }, level = 8, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_attack_mods", "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 1000, 0, }, }, - ["LocalIncreaseSocketedMeleeGemLevel"] = { type = "Prefix", affix = "Weaponmaster's", "+2 to Level of Socketed Melee Gems", statOrderKey = "43", statOrder = { 43 }, level = 63, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_attack_mods", "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 1000, 0, }, }, - ["LocalIncreaseSocketedBowGemLevel1"] = { type = "Prefix", affix = "Fletcher's", "+1 to Level of Socketed Bow Gems", statOrderKey = "42", statOrder = { 42 }, level = 9, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_attack_mods", "bow", "default", }, weightVal = { 0, 1000, 0, }, }, - ["LocalIncreaseSocketedBowGemLevel2"] = { type = "Prefix", affix = "Sharpshooter's", "+2 to Level of Socketed Bow Gems", statOrderKey = "42", statOrder = { 42 }, level = 64, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_attack_mods", "bow", "default", }, weightVal = { 0, 1000, 0, }, }, - ["LocalIncreaseSocketedMinionGemLevel1"] = { type = "Prefix", affix = "Reanimator's", "+1 to Level of Socketed Minion Gems", statOrderKey = "44", statOrder = { 44 }, level = 14, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreaseSocketedMinionGemLevel2"] = { type = "Prefix", affix = "Summoner's", "+2 to Level of Socketed Minion Gems", statOrderKey = "44", statOrder = { 44 }, level = 65, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreaseSocketedMinionGemLevel3_"] = { type = "Prefix", affix = "Necromancer's", "+3 to Level of Socketed Minion Gems", statOrderKey = "44", statOrder = { 44 }, level = 86, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["LocalIncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 1, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 12, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 20, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 26, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 33, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 41, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 50, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 63, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracy9_"] = { type = "Suffix", affix = "of the Assassin", "+(321-360) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 80, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "bow", "wand", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(361-380) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracyNew1"] = { type = "Suffix", affix = "of Steadiness", "+(80-130) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 1, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(131-215) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 20, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(216-325) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 40, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(326-455) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 60, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracyNew5"] = { type = "Suffix", affix = "of the Ranger", "+(456-624) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 75, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(625-780) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 85, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "bow", "wand", "weapon", "default", }, weightVal = { 0, 1000, 1000, 0, 0, }, tags = { "has_attack_mod", }, }, - ["CannotBeFrozenWarbands"] = { type = "Prefix", affix = "Mutewind", "Cannot be Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "CannotBeFrozen", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalArrowBow1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrderKey = "1067", statOrder = { 1067 }, level = 70, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1000, 0, }, }, - ["AdditionalArrowBow2_"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrderKey = "1067", statOrder = { 1067 }, level = 86, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 100, 0, }, }, - ["MinionRunSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (7-10)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 10, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionRunSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions have (11-14)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 26, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionRunSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (15-18)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 42, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionRunSpeedEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-22)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 58, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionRunSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (23-26)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 74, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionRunSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (27-30)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 82, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionLifeEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (7-10)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 10, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionLifeEssence3_"] = { type = "Suffix", affix = "of the Essence", "Minions have (11-14)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 26, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionLifeEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (15-18)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 42, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionLifeEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-22)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 58, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionLifeEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (23-26)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 74, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionLifeEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (27-30)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 82, group = "MinionLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (7-10)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions deal (11-14)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssence4_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (15-18)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions deal (19-22)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (23-26)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions deal (27-30)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssenceTwoHand2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (10-15)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssenceTwoHand3_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (16-21)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssenceTwoHand4"] = { type = "Suffix", affix = "of the Essence", "Minions deal (22-27)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssenceTwoHand5_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (28-33)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssenceTwoHand6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (34-39)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageEssenceTwoHand7_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (40-45)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(10-20)% increased Flask Charges gained", statOrderKey = "1436", statOrder = { 1436 }, level = 2, group = "BeltFlaskCharges", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Overflowing", "(21-30)% increased Flask Charges gained", statOrderKey = "1436", statOrder = { 1436 }, level = 85, group = "BeltFlaskCharges", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(10-20)% reduced Flask Charges used", statOrderKey = "1437", statOrder = { 1437 }, level = 3, group = "BeltFlaskCharges", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["BeltIncreasedFlaskDuration1"] = { type = "Suffix", affix = "of Savouring", "(10-20)% increased Flask Effect Duration", statOrderKey = "1440", statOrder = { 1440 }, level = 7, group = "BeltFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Recovering", "(10-20)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 5, group = "BeltFlaskRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 1, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 10, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 26, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 42, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 58, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 74, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 82, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Inspiring", "(10-20)% increased Flask Mana Recovery rate", statOrderKey = "1443", statOrder = { 1443 }, level = 5, group = "BeltFlaskRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrderKey = "1443", statOrder = { 1443 }, level = 58, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrderKey = "1443", statOrder = { 1443 }, level = 74, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrderKey = "1443", statOrder = { 1443 }, level = 82, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-14)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "Reflects (1-4) Physical Damage to Melee Attackers", statOrderKey = "1455", statOrder = { 1455 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "Reflects (5-10) Physical Damage to Melee Attackers", statOrderKey = "1455", statOrder = { 1455 }, level = 10, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "Reflects (11-24) Physical Damage to Melee Attackers", statOrderKey = "1455", statOrder = { 1455 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Jagged", "Reflects (25-50) Physical Damage to Melee Attackers", statOrderKey = "1455", statOrder = { 1455 }, level = 35, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrderKey = "1455", statOrder = { 1455 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0, }, }, - ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrderKey = "1455", statOrder = { 1455 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0, }, }, - ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrderKey = "1455", statOrder = { 1455 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalBlockChance1"] = { type = "Suffix", affix = "of Intercepting", "+(1-3)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 10, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["AdditionalBlockChance2"] = { type = "Suffix", affix = "of Walling", "+(4-6)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["AdditionalBlockChance3"] = { type = "Suffix", affix = "of Blocking", "+(7-8)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 85, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 1, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(31-34)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% Chance to Block Projectile Attack Damage", statOrderKey = "1669", statOrder = { 1669 }, level = 8, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% Chance to Block Projectile Attack Damage", statOrderKey = "1669", statOrder = { 1669 }, level = 19, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% Chance to Block Projectile Attack Damage", statOrderKey = "1669", statOrder = { 1669 }, level = 30, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% Chance to Block Projectile Attack Damage", statOrderKey = "1669", statOrder = { 1669 }, level = 55, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% Chance to Block Projectile Attack Damage", statOrderKey = "1669", statOrder = { 1669 }, level = 70, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% Chance to Block Projectile Attack Damage", statOrderKey = "1669", statOrder = { 1669 }, level = 81, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["AllDamageMasterVendorItem"] = { type = "Prefix", affix = "Leo's", "(5-15)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 1, group = "AllDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "2% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 42, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "3% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 58, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "4% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 74, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "5% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 82, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "18% reduced Attribute Requirements", statOrderKey = "484", statOrder = { 484 }, level = 36, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0, }, }, - ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "32% reduced Attribute Requirements", statOrderKey = "484", statOrder = { 484 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0, }, }, - ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrderKey = "754,1702", statOrder = { 754, 1702 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrderKey = "754,1702", statOrder = { 754, 1702 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrderKey = "755,1702", statOrder = { 755, 1702 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["LightRadiusAndAccuracyNew1"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrderKey = "755,1702", statOrder = { 755, 1702 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["LightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrderKey = "755,1702", statOrder = { 755, 1702 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrderKey = "1280,1702", statOrder = { 1280, 1702 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, }, - ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrderKey = "1280,1702", statOrder = { 1280, 1702 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, }, - ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrderKey = "755,1702", statOrder = { 755, 1702 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 500, 0, }, }, - ["LocalLightRadiusAndAccuracyNew1_"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrderKey = "755,1702", statOrder = { 755, 1702 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 500, 0, }, }, - ["LocalLightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrderKey = "755,1702", statOrder = { 755, 1702 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 500, 0, }, }, - ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+1 to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 58, group = "MeleeWeaponAndUnarmedRange", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+2 to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 74, group = "MeleeWeaponAndUnarmedRange", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+3 to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 82, group = "MeleeWeaponAndUnarmedRange", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "+(5-15) Life gained when you Block", statOrderKey = "1034", statOrder = { 1034 }, level = 11, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "+(16-25) Life gained when you Block", statOrderKey = "1034", statOrder = { 1034 }, level = 22, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "+(26-40) Life gained when you Block", statOrderKey = "1034", statOrder = { 1034 }, level = 36, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "+(41-60) Life gained when you Block", statOrderKey = "1034", statOrder = { 1034 }, level = 48, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "+(61-85) Life gained when you Block", statOrderKey = "1034", statOrder = { 1034 }, level = 60, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "+(86-100) Life gained when you Block", statOrderKey = "1034", statOrder = { 1034 }, level = 75, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0, }, }, - ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "+(4-12) Mana gained when you Block", statOrderKey = "1035", statOrder = { 1035 }, level = 15, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "+(13-21) Mana gained when you Block", statOrderKey = "1035", statOrder = { 1035 }, level = 32, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "+(22-30) Mana gained when you Block", statOrderKey = "1035", statOrder = { 1035 }, level = 58, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "+(31-39) Mana gained when you Block", statOrderKey = "1035", statOrder = { 1035 }, level = 75, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrderKey = "2026", statOrder = { 2026 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrderKey = "2027", statOrder = { 2027 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrderKey = "2028", statOrder = { 2028 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrderKey = "2029", statOrder = { 2029 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrderKey = "2030", statOrder = { 2030 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrderKey = "2031", statOrder = { 2031 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrderKey = "2032", statOrder = { 2032 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["ChanceToDodge1"] = { type = "Suffix", affix = "of Mist", "2% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 35, group = "ChanceToDodge", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodge2"] = { type = "Suffix", affix = "of Haze", "3% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 62, group = "ChanceToDodge", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodge3"] = { type = "Suffix", affix = "of Fog", "4% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 78, group = "ChanceToDodge", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 42, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeEssence5"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 58, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeEssence6"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 74, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 82, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeSpells1"] = { type = "Suffix", affix = "of Prayers", "2% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 35, group = "SpellDodgePercentage", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeSpells2"] = { type = "Suffix", affix = "of Invocations", "3% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 62, group = "SpellDodgePercentage", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeSpells3"] = { type = "Suffix", affix = "of Incantations", "4% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 78, group = "SpellDodgePercentage", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeSpellsEssence5"] = { type = "Suffix", affix = "of the Essence", "(3-4)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 1, group = "SpellDodgePercentage", weightKey = { "default", }, weightVal = { 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeSpellsEssence6"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 1, group = "SpellDodgePercentage", weightKey = { "default", }, weightVal = { 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeSpellsEssence7"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 1, group = "SpellDodgePercentage", weightKey = { "default", }, weightVal = { 0, }, tags = { "spell_dodge_mod", }, }, - ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrderKey = "2482", statOrder = { 2482 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellBlockPercentage1__"] = { type = "Suffix", affix = "of the Barrier", "(7-9)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 30, group = "SpellBlockPercentage", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["SpellBlockPercentage2"] = { type = "Suffix", affix = "of the Bulwark", "(10-12)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 60, group = "SpellBlockPercentage", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(2-5)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 0, 0, 0, }, }, - ["MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrderKey = "1078", statOrder = { 1078 }, level = 20, group = "MaximumFrenzyCharges", weightKey = { "boots", "amulet", "default", }, weightVal = { 0, 0, 0, }, }, - ["MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrderKey = "1080", statOrder = { 1080 }, level = 20, group = "IncreasedMaximumPowerCharges", weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0, }, }, - ["MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (15-20)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "MinionDamage", weightKey = { "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, }, }, - ["SocketedVaalGemsIncreaseCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Level of Socketed Vaal Gems", statOrderKey = "51", statOrder = { 51 }, level = 1, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "helmet", "gloves", "boots", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, }, }, - ["DamageTakenFlatReductionCorrupted1"] = { type = "Corrupted", affix = "", "-(10-5) Physical Damage taken from Attack Hits", statOrderKey = "1482", statOrder = { 1482 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0, }, }, - ["DamageTakenFlatReductionCorrupted2"] = { type = "Corrupted", affix = "", "-(16-11) Physical Damage taken from Attack Hits", statOrderKey = "1482", statOrder = { 1482 }, level = 30, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0, }, }, - ["DamageTakenFlatReductionCorrupted3"] = { type = "Corrupted", affix = "", "-(24-17) Physical Damage taken from Attack Hits", statOrderKey = "1482", statOrder = { 1482 }, level = 60, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0, }, }, - ["FireDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Fire Damage Leeched as Life", statOrderKey = "962", statOrder = { 962 }, level = 50, group = "FireDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, }, }, - ["ColdDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Cold Damage Leeched as Life", statOrderKey = "964", statOrder = { 964 }, level = 50, group = "ColdDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, }, }, - ["LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrderKey = "966", statOrder = { 966 }, level = 50, group = "LightningDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, }, }, - ["IncreasedCastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "ring", "gloves", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_caster_mod", }, }, - ["ChanceToFleeCorrupted"] = { type = "Corrupted", affix = "", "5% chance to Cause Monsters to Flee", statOrderKey = "1298", statOrder = { 1298 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { "weapon", "default", }, weightVal = { 0, 0, }, }, - ["BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Attack Damage", statOrderKey = "495", statOrder = { 495 }, level = 1, group = "BlockPercent", weightKey = { "staff", "amulet", "default", }, weightVal = { 0, 0, 0, }, }, - ["LocalAddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 1, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, }, - ["LocalAddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 20, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, }, - ["LocalAddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 40, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0, }, }, - ["AddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 1, group = "ChaosDamage", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0, }, }, - ["AddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (6-8) Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 20, group = "ChaosDamage", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0, }, }, - ["AddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (7-9) to (11-13) Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 40, group = "ChaosDamage", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0, }, }, - ["SpellBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 1, group = "SpellBlockPercentage", weightKey = { "staff", "amulet", "shield", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-8)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(6-12)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["CullingStrikeCorrupted"] = { type = "Corrupted", affix = "", "Culling Strike", statOrderKey = "1295", statOrder = { 1295 }, level = 1, group = "CullingStrike", weightKey = { "sword", "axe", "dagger", "wand", "bow", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, }, }, - ["ManaOnLifeLostCorrupted"] = { type = "Corrupted", affix = "", "(3-6)% of Damage taken gained as Mana over 4 seconds when Hit", statOrderKey = "1660", statOrder = { 1660 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "amulet", "ring", "shield", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrderKey = "939", statOrder = { 939 }, level = 1, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0, }, }, - ["AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrderKey = "1422", statOrder = { 1422 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 0, 0, }, }, - ["ChanceToAvoidFreezeCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "amulet", "body_armour", "ring", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["ChanceToAvoidIgniteCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 1, group = "AvoidIgnite", weightKey = { "amulet", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["ChaosResistCorruption"] = { type = "Corrupted", affix = "", "+(2-4)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 1, group = "ChaosResistance", weightKey = { "fishing_rod", "weapon", "jewel", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["ChanceToDodgeCorruption"] = { type = "Corrupted", affix = "", "(2-4)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 1, group = "ChanceToDodge", weightKey = { "boots", "default", }, weightVal = { 0, 0, }, tags = { "spell_dodge_mod", }, }, - ["CannotBeKnockedBackCorruption"] = { type = "Corrupted", affix = "", "Cannot be Knocked Back", statOrderKey = "841", statOrder = { 841 }, level = 1, group = "ImmuneToKnockback", weightKey = { "boots", "body_armour", "default", }, weightVal = { 0, 0, 0, }, }, - ["GemLevelCorruption"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrderKey = "29", statOrder = { 29 }, level = 1, group = "IncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, }, }, - ["AvoidShockCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 1, group = "ReducedShockChance", weightKey = { "body_armour", "belt", "default", }, weightVal = { 0, 0, 0, }, }, - ["CannotBeLeechedFromCorruption"] = { type = "Corrupted", affix = "", "Enemies Cannot Leech Life From you", statOrderKey = "1647", statOrder = { 1647 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 0, 0, }, }, - ["DamageTakenFromManaBeforeLifeCorruption"] = { type = "Corrupted", affix = "", "(3-5)% of Damage is taken from Mana before Life", statOrderKey = "1879", statOrder = { 1879 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "helmet", "default", }, weightVal = { 0, 0, }, }, - ["DamageConversionFireCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Fire Damage", statOrderKey = "1206", statOrder = { 1206 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_physical_conversion_mod", }, }, - ["DamageConversionColdCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Cold Damage", statOrderKey = "1208", statOrder = { 1208 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_physical_conversion_mod", }, }, - ["DamageConversionLighningCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Lightning Damage", statOrderKey = "1210", statOrder = { 1210 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0, }, }, - ["AdditionalArrowsCorruption"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrderKey = "1067", statOrder = { 1067 }, level = 1, group = "AdditionalArrows", weightKey = { "no_attack_mods", "quiver", "bow", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["AdditionalAOERangeCorruption"] = { type = "Corrupted", affix = "", "(4-6)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, - ["IncreasedDurationCorruption"] = { type = "Corrupted", affix = "", "(5-8)% increased Skill Effect Duration", statOrderKey = "1148", statOrder = { 1148 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, - ["AdditionalTrapsCorruption_"] = { type = "Corrupted", affix = "", "Can have up to 1 additional Trap placed at a time", statOrderKey = "1503", statOrder = { 1503 }, level = 1, group = "TrapsAllowed", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, - ["MaximumEnduranceChargesCorruption_"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrderKey = "1076", statOrder = { 1076 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, - ["DualWieldBlockCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "sceptre", "axe", "mace", "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, }, }, - ["AdditionalPierceCorruption"] = { type = "Corrupted", affix = "", "Arrows Pierce an additional Target", statOrderKey = "1065", statOrder = { 1065 }, level = 1, group = "ArrowPierce", weightKey = { "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 0, }, }, - ["GlobalPierceCorruption"] = { type = "Corrupted", affix = "", "(4-8)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 1, group = "ProjectileSpeed", weightKey = { "wand", "default", }, weightVal = { 0, 0, }, }, - ["CurseOnHitTemporalChainsCurruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Temporal Chains on Hit", statOrderKey = "1716", statOrder = { 1716 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 0, 0, }, }, - ["CurseOnHitVulnerabilityCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Vulnerability on Hit", statOrderKey = "1717", statOrder = { 1717 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 0, 0, }, }, - ["CurseOnHitElementalWeaknessCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Elemental Weakness on Hit", statOrderKey = "1719", statOrder = { 1719 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 0, 0, }, }, - ["SupportedByCastOnStunCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast when Stunned", statOrderKey = "204", statOrder = { 204 }, level = 35, group = "SupportedByTrigger", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0, }, }, - ["SupportedByCastOnCritCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast On Critical Strike", statOrderKey = "203", statOrder = { 203 }, level = 35, group = "SupportedByTrigger", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0, }, }, - ["SupportedByMeleeSplashCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Melee Splash", statOrderKey = "202", statOrder = { 202 }, level = 20, group = "SupportedByMelee", weightKey = { "no_attack_mods", "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["SupportedByAddedFireDamageCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 12 Added Fire Damage", statOrderKey = "193", statOrder = { 193 }, level = 48, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { "two_hand_weapon", "mace", "default", }, weightVal = { 0, 0, 0, }, }, - ["SupportedByStunCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 6 Stun", statOrderKey = "206", statOrder = { 206 }, level = 38, group = "SupportedByStun", weightKey = { "mace", "default", }, weightVal = { 0, 0, }, }, - ["LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { "no_attack_mods", "sceptre", "rapier", "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["SocketedSkillsManaMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 95% Mana Multiplier", statOrderKey = "246", statOrder = { 246 }, level = 1, group = "SocketedGemsHaveReducedManaCost", weightKey = { "body_armour", "default", }, weightVal = { 0, 0, }, }, - ["SupportedByElementalProliferationCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Elemental Proliferation", statOrderKey = "197", statOrder = { 197 }, level = 12, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { "wand", "default", }, weightVal = { 0, 0, }, }, - ["SupportedByAccuracyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Additional Accuracy", statOrderKey = "207", statOrder = { 207 }, level = 48, group = "SupportedByAccuracy", weightKey = { "no_attack_mods", "one_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["SupportedByMultistrikeCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrderKey = "208", statOrder = { 208 }, level = 28, group = "SupportedByMultistrike", weightKey = { "no_attack_mods", "two_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0, 0, }, }, - ["SupportedByAreaOfEffectCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Increased Area of Effect", statOrderKey = "66", statOrder = { 66 }, level = 24, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { "staff", "default", }, weightVal = { 0, 0, }, }, - ["SupportedByLifeLeechCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrderKey = "210", statOrder = { 210 }, level = 59, group = "SupportedByLifeLeech", weightKey = { "claw", "default", }, weightVal = { 0, 0, }, }, - ["SupportedByCriticalMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 14 Increased Critical Damage", statOrderKey = "211", statOrder = { 211 }, level = 35, group = "SupportedByCriticalMultiplier", weightKey = { "dagger", "default", }, weightVal = { 0, 0, }, }, - ["SupportedByForkCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Fork", statOrderKey = "212", statOrder = { 212 }, level = 6, group = "SupportedByFork", weightKey = { "bow", "default", }, weightVal = { 0, 0, }, }, - ["SupportedByWeaponElementalDamageCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Elemental Damage with Attacks", statOrderKey = "213", statOrder = { 213 }, level = 24, group = "SupportedByWeaponElementalDamage", weightKey = { "no_attack_mods", "sceptre", "default", }, weightVal = { 0, 0, 0, }, }, - ["SupportedByFasterCastCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrderKey = "220", statOrder = { 220 }, level = 24, group = "DisplaySocketedGemsGetFasterCast", weightKey = { "no_caster_mods", "sceptre", "default", }, weightVal = { 0, 0, 0, }, }, - ["PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Elements Skill", statOrderKey = "312", statOrder = { 312 }, level = 45, group = "GrantedSkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0, }, }, - ["CriticalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Assassin's Mark Skill", statOrderKey = "314", statOrder = { 314 }, level = 31, group = "GrantedSkill", weightKey = { "gloves", "default", }, weightVal = { 0, 0, }, }, - ["PurityOfFireSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Fire Skill", statOrderKey = "294", statOrder = { 294 }, level = 45, group = "GrantedSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0, }, }, - ["PurityOfColdSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Ice Skill", statOrderKey = "300", statOrder = { 300 }, level = 45, group = "GrantedSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0, }, }, - ["PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Lightning Skill", statOrderKey = "302", statOrder = { 302 }, level = 45, group = "GrantedSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0, }, }, - ["WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 7 Wrath Skill", statOrderKey = "315", statOrder = { 315 }, level = 28, group = "GrantedSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0, }, }, - ["HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 11 Hatred Skill", statOrderKey = "316", statOrder = { 316 }, level = 44, group = "GrantedSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0, }, }, - ["AngerSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Anger Skill", statOrderKey = "317", statOrder = { 317 }, level = 56, group = "GrantedSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0, }, }, - ["DeterminationSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Determination Skill", statOrderKey = "318", statOrder = { 318 }, level = 61, group = "GrantedSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0, }, }, - ["GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Grace Skill", statOrderKey = "319", statOrder = { 319 }, level = 61, group = "GrantedSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0, }, }, - ["DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Discipline Skill", statOrderKey = "321", statOrder = { 321 }, level = 61, group = "GrantedSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0, }, }, - ["ProjectileWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Projectile Weakness Skill", statOrderKey = "325", statOrder = { 325 }, level = 58, group = "GrantedSkill", weightKey = { "quiver", "default", }, weightVal = { 0, 0, }, }, - ["ElementalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Elemental Weakness Skill", statOrderKey = "326", statOrder = { 326 }, level = 31, group = "GrantedSkill", weightKey = { "wand", "default", }, weightVal = { 0, 0, }, }, - ["VulnerabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Vulnerability Skill", statOrderKey = "328", statOrder = { 328 }, level = 31, group = "GrantedSkill", weightKey = { "axe", "default", }, weightVal = { 0, 0, }, }, - ["ClaritySkillCorrupted1"] = { type = "Corrupted", affix = "", "Grants Level 4 Clarity Skill", statOrderKey = "310", statOrder = { 310 }, level = 19, group = "GrantedSkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0, }, }, - ["ClaritySkillCorrupted2"] = { type = "Corrupted", affix = "", "Grants Level 8 Clarity Skill", statOrderKey = "310", statOrder = { 310 }, level = 32, group = "GrantedSkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0, }, }, - ["ClaritySkillCorrupted3"] = { type = "Corrupted", affix = "", "Grants Level 12 Clarity Skill", statOrderKey = "310", statOrder = { 310 }, level = 47, group = "GrantedSkill", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, - ["ClaritySkillCorrupted4"] = { type = "Corrupted", affix = "", "Grants Level 16 Clarity Skill", statOrderKey = "310", statOrder = { 310 }, level = 59, group = "GrantedSkill", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, - ["FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Frostbite Skill", statOrderKey = "306", statOrder = { 306 }, level = 46, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0, }, }, - ["FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Flammability Skill", statOrderKey = "303", statOrder = { 303 }, level = 46, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0, }, }, - ["ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Conductivity Skill", statOrderKey = "305", statOrder = { 305 }, level = 46, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0, }, }, - ["TemporalChainsSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Temporal Chains Skill", statOrderKey = "307", statOrder = { 307 }, level = 40, group = "GrantedSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0, }, }, - ["HasteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Haste Skill", statOrderKey = "308", statOrder = { 308 }, level = 40, group = "GrantedSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0, }, }, - ["ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) Mana gained for each Enemy hit by your Attacks", statOrderKey = "1021", statOrder = { 1021 }, level = 40, group = "ManaGainPerTarget", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0, }, }, - ["VitalitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Vitality Skill", statOrderKey = "311", statOrder = { 311 }, level = 35, group = "GrantedSkill", weightKey = { "belt", "default", }, weightVal = { 0, 0, }, }, - ["FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrderKey = "2031", statOrder = { 2031 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0, }, }, - ["FishingRarityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrderKey = "2032", statOrder = { 2032 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0, }, }, - ["CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "fishing_rod", "default", }, weightVal = { 0, 0, 0, }, }, - ["CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrderKey = "2038", statOrder = { 2038 }, level = 1, group = "Other", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0, }, }, - ["V2AddedArmourWhileStationaryCorrupted1"] = { type = "Corrupted", affix = "", "+(35-60) Armour while stationary", statOrderKey = "3476", statOrder = { 3476 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedArmourWhileStationaryCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) Armour while stationary", statOrderKey = "3476", statOrder = { 3476 }, level = 31, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedArmourWhileStationaryCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) Armour while stationary", statOrderKey = "3476", statOrder = { 3476 }, level = 75, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 500, 0, }, }, - ["V2AddedColdDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks", statOrderKey = "699", statOrder = { 699 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedColdDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks", statOrderKey = "699", statOrder = { 699 }, level = 31, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedColdDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks", statOrderKey = "699", statOrder = { 699 }, level = 81, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0, }, }, - ["V2AddedColdDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 1, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedColdDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 31, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedColdDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-25) to (39-44) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 75, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0, }, }, - ["V2AddedEvasionWhileMovingCorrupted1_"] = { type = "Corrupted", affix = "", "+(35-60) to Global Evasion Rating while moving", statOrderKey = "4542", statOrder = { 4542 }, level = 1, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedEvasionWhileMovingCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) to Global Evasion Rating while moving", statOrderKey = "4542", statOrder = { 4542 }, level = 31, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedEvasionWhileMovingCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) to Global Evasion Rating while moving", statOrderKey = "4542", statOrder = { 4542 }, level = 75, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 500, 0, }, }, - ["V2AddedFireDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks", statOrderKey = "698", statOrder = { 698 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedFireDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks", statOrderKey = "698", statOrder = { 698 }, level = 31, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedFireDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks", statOrderKey = "698", statOrder = { 698 }, level = 82, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0, }, }, - ["V2AddedFireDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 1, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedFireDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 31, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedFireDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (42-49) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 75, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0, }, }, - ["V2AddedLightningDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (14-15) Lightning Damage to Spells and Attacks", statOrderKey = "730", statOrder = { 730 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedLightningDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks", statOrderKey = "730", statOrder = { 730 }, level = 31, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedLightningDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks", statOrderKey = "730", statOrder = { 730 }, level = 83, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0, }, }, - ["V2AddedLightningDamageToBowAttacksCorrupted1_"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 1, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedLightningDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 31, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2AddedLightningDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 75, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0, }, }, - ["V2AdditionalAOERangeCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2AdditionalArrowsCorrupted"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrderKey = "1067", statOrder = { 1067 }, level = 75, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 200, 200, 0, }, }, - ["V2AdditionalChainCorrupted"] = { type = "Corrupted", affix = "", "Skills Chain +1 times", statOrderKey = "1063", statOrder = { 1063 }, level = 80, group = "Chain", weightKey = { "quiver", "default", }, weightVal = { 200, 0, }, }, - ["V2AdditionalCriticalStrikeMultiplierUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "+(20-25)% to Critical Strike Multiplier during any Flask Effect", statOrderKey = "4156", statOrder = { 4156 }, level = 60, group = "AdditionalCriticalStrikeMultiplierUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrderKey = "1422", statOrder = { 1422 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 500, 0, }, }, - ["V2AdditionalPhysicalDamageReductionWhileStationaryCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction while stationary", statOrderKey = "3475", statOrder = { 3475 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2AdditionalProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Skills fire an additional Projectile", statOrderKey = "1066", statOrder = { 1066 }, level = 1, group = "AdditionalProjectilesCorrupted", weightKey = { "rapier", "default", }, weightVal = { 1000, 0, }, }, - ["V2AngerSkillReducedCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Anger Skill", statOrderKey = "317", statOrder = { 317 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2BlindImmunityCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrderKey = "2159", statOrder = { 2159 }, level = 1, group = "ImmunityToBlind", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Attack Damage", statOrderKey = "495", statOrder = { 495 }, level = 1, group = "MonsterBlock", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["V2CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrderKey = "2038", statOrder = { 2038 }, level = 1, group = "Other", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["V2CannotGainBleedingCorrupted_"] = { type = "Corrupted", affix = "", "Bleeding cannot be inflicted on you", statOrderKey = "3388", statOrder = { 3388 }, level = 85, group = "BleedingImmunity", weightKey = { "ring", "default", }, weightVal = { 100, 0, }, }, - ["V2AvoidIgniteCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 60, group = "AvoidIgniteCorrupted", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2CannotBePoisonedCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Poisoned", statOrderKey = "2559", statOrder = { 2559 }, level = 60, group = "CannotBePoisoned", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["V2ChanceToBleedOnHitAndIncreasedDamageToBleedingTargetsCorrupted_"] = { type = "Corrupted", affix = "", "20% chance to cause Bleeding on Hit", "(30-40)% increased Attack Damage against Bleeding Enemies", statOrderKey = "1686,1693", statOrder = { 1686, 1693 }, level = 1, group = "ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets", weightKey = { "axe", "default", }, weightVal = { 1000, 0, }, }, - ["V2ChanceToDodgeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 1, group = "ChanceToDodge", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, tags = { "spell_dodge_mod", }, }, - ["V2ChanceToGainEnduranceChargeOnStunCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy", statOrderKey = "4015", statOrder = { 4015 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "sceptre", "staff", "mace", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2ChanceToGainFortifyOnMeleeHitCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to Fortify on Melee hit", statOrderKey = "1511", statOrder = { 1511 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { "sceptre", "wand", "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0, }, }, - ["V2ChanceToGainFrenzyChargeOnKillCorrupted"] = { type = "Corrupted", affix = "", "(9-11)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1818", statOrder = { 1818 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "dagger", "claw", "bow", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2ChanceToGainOnslaughtOnKillCorrupted_"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2176", statOrder = { 2176 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "sceptre", "wand", "dagger", "claw", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0, }, }, - ["V2ChanceToGainPowerChargeOnCritCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain a Power Charge on Critical Strike", statOrderKey = "1093", statOrder = { 1093 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "wand", "dagger", "claw", "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["V2UnholyMightOnKillPercentChanceCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2567", statOrder = { 2567 }, level = 1, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "dagger", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["V2ChanceToSpellDodgeCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 1, group = "SpellDodgePercentage", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, tags = { "spell_dodge_mod", }, }, - ["V2ClaritySkillReducedCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Clarity Skill", statOrderKey = "310", statOrder = { 310 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["V2ColdDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Cold Damage Leeched as Life", statOrderKey = "964", statOrder = { 964 }, level = 50, group = "ColdDamageLifeLeech", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Conductivity Skill", statOrderKey = "305", statOrder = { 305 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2CurseOnHitDespair"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Despair on Hit", statOrderKey = "1723", statOrder = { 1723 }, level = 30, group = "CurseOnHitDespair", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, - ["V2CurseOnHitElementalWeaknessCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Elemental Weakness on Hit", statOrderKey = "1719", statOrder = { 1719 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, - ["V2CurseOnHitEnfeeble"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Enfeeble on Hit", statOrderKey = "1724", statOrder = { 1724 }, level = 30, group = "CurseOnHitEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, - ["V2CurseOnHitTemporalChainsCurrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Temporal Chains on Hit", statOrderKey = "1716", statOrder = { 1716 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, - ["V2CurseOnHitVulnerabilityCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Vulnerability on Hit", statOrderKey = "1717", statOrder = { 1717 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, - ["V2DespairSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Despair Skill", statOrderKey = "299", statOrder = { 299 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2DeterminationSkillCorrupted__"] = { type = "Corrupted", affix = "", "Grants Level 23 Determination Skill", statOrderKey = "318", statOrder = { 318 }, level = 56, group = "GrantedSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0, }, }, - ["V2DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Discipline Skill", statOrderKey = "321", statOrder = { 321 }, level = 56, group = "GrantedSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0, }, }, - ["V2DodgeAttackHitsWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "(6-10)% chance to Dodge Attack Hits while moving", statOrderKey = "4287", statOrder = { 4287 }, level = 60, group = "DodgeAttackHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2DodgeSpellHitsWhileMovingCorrupted"] = { type = "Corrupted", affix = "", "(6-10)% chance to Dodge Spell Hits while moving", statOrderKey = "4289", statOrder = { 4289 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2DualWieldBlockCorrupted"] = { type = "Corrupted", affix = "", "+(8-10)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "claw", "default", }, weightVal = { 1000, 0, }, }, - ["V2ElementalDamagePenetrationCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates (8-10)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 1, group = "ElementalPenetration", weightKey = { "wand", "rapier", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["V2FireDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Fire Damage Leeched as Life", statOrderKey = "962", statOrder = { 962 }, level = 50, group = "FireDamageLifeLeech", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrderKey = "2031", statOrder = { 2031 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["V2FishingRarityCorrupted_"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrderKey = "2032", statOrder = { 2032 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0, }, }, - ["V2FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Flammability Skill", statOrderKey = "303", statOrder = { 303 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Frostbite Skill", statOrderKey = "306", statOrder = { 306 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2GainFrenzyChargeAfterSpending200ManaCorrupted"] = { type = "Corrupted", affix = "", "Gain a Frenzy Charge after Spending a total of 200 Mana", statOrderKey = "4466", statOrder = { 4466 }, level = 1, group = "GainFrenzyChargeAfterSpending200Mana", weightKey = { "rapier", "default", }, weightVal = { 1000, 0, }, }, - ["V2GemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrderKey = "29", statOrder = { 29 }, level = 1, group = "IncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["V2GlobalCriticalStrikeMultiplierCorrupted"] = { type = "Corrupted", affix = "", "+(25-30)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "dagger", "claw", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["V2GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Grace Skill", statOrderKey = "319", statOrder = { 319 }, level = 56, group = "GrantedSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0, }, }, - ["V2HasteSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Haste Skill", statOrderKey = "308", statOrder = { 308 }, level = 56, group = "GrantedSkill", weightKey = { "boots", "default", }, weightVal = { 500, 0, }, }, - ["V2HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Hatred Skill", statOrderKey = "316", statOrder = { 316 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2MalevolenceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Malevolence Skill", statOrderKey = "352", statOrder = { 352 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["V2ZealotrySkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 23 Zealotry Skill", statOrderKey = "360", statOrder = { 360 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2PrideSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Pride Skill", statOrderKey = "353", statOrder = { 353 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2IncreasedAreaOfEffect1hCorrupted"] = { type = "Corrupted", affix = "", "(15-20)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 1, group = "AreaOfEffect", weightKey = { "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, }, - ["V2IncreasedAreaOfEffect2hCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 1, group = "AreaOfEffect", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, }, - ["V2IncreasedAtackCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Attacks have +(0-1)% to Critical Strike Chance", statOrderKey = "3668", statOrder = { 3668 }, level = 60, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedAttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0, }, tags = { "has_attack_mod", }, }, - ["V2IncreasedAttackSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Attack Speed during any Flask Effect", statOrderKey = "2481", statOrder = { 2481 }, level = 60, group = "SpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedBurningDamageCorrupted"] = { type = "Corrupted", affix = "", "(30-40)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 40, group = "BurnDamage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedCastSpeedCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0, }, tags = { "has_caster_mod", }, }, - ["V2IncreasedCastSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Cast Speed during any Flask Effect", statOrderKey = "3971", statOrder = { 3971 }, level = 60, group = "SpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedChillEffectCorrupted"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Chill", statOrderKey = "4066", statOrder = { 4066 }, level = 40, group = "ChillEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedCriticalStrikeUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(35-40)% increased Critical Strike Chance during any Flask Effect", statOrderKey = "4136", statOrder = { 4136 }, level = 1, group = "IncreasedCriticalStrikeUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedDamageCorrupted_"] = { type = "Corrupted", affix = "", "(40-50)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 1, group = "IncreasedDamage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedDamageOverTimeCorrupted_"] = { type = "Corrupted", affix = "", "(50-60)% increased Damage over Time", statOrderKey = "550", statOrder = { 550 }, level = 1, group = "DamageOverTime", weightKey = { "dagger", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedDurationCorrupted"] = { type = "Corrupted", affix = "", "(12-15)% increased Skill Effect Duration", statOrderKey = "1148", statOrder = { 1148 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 1, group = "EnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedGlobalPhysicalDamageCorrupted"] = { type = "Corrupted", affix = "", "(15-25)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2IncreasedLifeCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedLifeRegenerationPerSecondCorrupted"] = { type = "Corrupted", affix = "", "Regenerate (1.6-2)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedMovementVelocityUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Movement Speed during any Flask Effect", statOrderKey = "2366", statOrder = { 2366 }, level = 60, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedProjectileDamageForEachChainCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (20-25)% increased Damage for each time they have Chained", statOrderKey = "6112", statOrder = { 6112 }, level = 40, group = "IncreasedProjectileDamageForEachChain", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedProjectileDamageForEachPierceCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (8-10)% increased Damage for each Enemy Pierced", statOrderKey = "6113", statOrder = { 6113 }, level = 40, group = "ProjectileDamagePerEnemyPierced", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedShockEffectCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Shock", statOrderKey = "6217", statOrder = { 6217 }, level = 40, group = "ShockEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedSpellCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Spells have +(0-1)% to Critical Strike Chance ", statOrderKey = "6289", statOrder = { 6289 }, level = 60, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, - ["V2LevelOfSocketedColdGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Cold Gems", statOrderKey = "35", statOrder = { 35 }, level = 1, group = "IncreaseSocketedColdGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2LevelOfSocketedFireGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Fire Gems", statOrderKey = "34", statOrder = { 34 }, level = 1, group = "IncreaseSocketedFireGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2LevelOfSocketedLightningGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Lightning Gems", statOrderKey = "36", statOrder = { 36 }, level = 1, group = "IncreaseSocketedLightningGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrderKey = "966", statOrder = { 966 }, level = 50, group = "LightningDamageLifeLeech", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2LocalAddedChaosDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 1, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0, }, }, - ["V2LocalAddedChaosDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 31, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0, }, }, - ["V2LocalAddedChaosDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 84, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 250, 0, }, }, - ["V2LocalAddedColdDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 1, group = "ColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedColdDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 31, group = "ColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedColdDamage1hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (17-23) to (24-40) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 84, group = "ColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedColdDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-11) to (17-20) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 1, group = "ColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedColdDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (19-23) to (31-38) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 31, group = "ColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedColdDamage2hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (22-28) to (39-47) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 84, group = "ColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedFireDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 1, group = "FireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedFireDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 31, group = "FireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedFireDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (40-48) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 84, group = "FireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedFireDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (10-15) to (20-23) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 1, group = "FireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedFireDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (23-27) to (34-43) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 31, group = "FireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedFireDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (27-34) to (45-53) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 84, group = "FireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedLightningDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 1, group = "LightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedLightningDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 31, group = "LightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedLightningDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 84, group = "LightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedLightningDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (2-3) to (30-34) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 1, group = "LightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedLightningDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-6) to (63-72) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 31, group = "LightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedLightningDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (4-8) to (89-92) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 84, group = "LightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedPhysicalDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to 2 Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 1, group = "PhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedPhysicalDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (5-7) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 31, group = "PhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedPhysicalDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 84, group = "PhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedPhysicalDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 1, group = "PhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedPhysicalDamage2hCorrupted2__"] = { type = "Corrupted", affix = "", "Adds (4-5) to (6-8) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 31, group = "PhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalAddedPhysicalDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 84, group = "PhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "+(4-5)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["V2LocalIncreasedAttackSpeedBowCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedAttackSpeed1hCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedAttackSpeed2hCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 70, group = "IncreasedAttackSpeed", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedAttackSpeedWandCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "wand", "default", }, weightVal = { 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2IncreasedCastSpeedCorrupted__"] = { type = "Corrupted", affix = "", "(12-15)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["V2LocalIncreasedCriticalStrikeChance1hCorrupted1"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "wand", "rapier", "claw", "default", }, weightVal = { 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedCriticalStrikeChance2hCorrupted_"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedCriticalStrikeChance1hCorrupted2__"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "dagger", "sceptre", "default", }, weightVal = { 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedPhysicalDamageBowCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedPhysicalDamageBowCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 100, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedPhysicalDamageCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2LocalIncreasedPhysicalDamageCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2IncreasedSpellDamage1hCorrupted"] = { type = "Corrupted", affix = "", "(50-60)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 1, group = "SpellDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0, }, tags = { "has_caster_mod", }, }, - ["V2LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { "sword", "mace", "staff", "bow", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "+(4-6) Mana gained for each Enemy hit by your Attacks", statOrderKey = "1021", statOrder = { 1021 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2MaximumEnduranceChargesCorruption"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrderKey = "1076", statOrder = { 1076 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrderKey = "1078", statOrder = { 1078 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1000, 0, }, }, - ["V2MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrderKey = "1080", statOrder = { 1080 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2MaximumBlockCorruption"] = { type = "Corrupted", affix = "", "+1% to maximum Chance to Block Attack Damage", statOrderKey = "1248", statOrder = { 1248 }, level = 60, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["V2MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrderKey = "939", statOrder = { 939 }, level = 80, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["V2MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 500, 500, 0, }, }, - ["V2PercentageOfBlockAppliesToSpellBlockCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% Chance to Block Spell Damage", statOrderKey = "505", statOrder = { 505 }, level = 1, group = "BlockingBlocksSpells", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0, }, }, - ["V2SpellBlockPercentageCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 1, group = "SpellBlockPercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["V2PhysicalDamageAddedAsColdCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2PhysicalDamageAddedAsFireCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 1, group = "FireDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2PhysicalDamageAddedAsLightningCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2PhysicalDamageTakenAsColdCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["V2PhysicalDamageTakenAsFireCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["V2PhysicalDamageTakenAsLightningCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["V2PhysicalDamageTakenAsChaosCorrupted_"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1657", statOrder = { 1657 }, level = 60, group = "PhysicalDamageTakenAsChaos", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["V2PointBlankCorrupted"] = { type = "Corrupted", affix = "", "Point Blank", statOrderKey = "6543", statOrder = { 6543 }, level = 1, group = "PointBlank", weightKey = { "quiver", "default", }, weightVal = { 1000, 0, }, }, - ["V2PurityOfFireSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Fire Skill", statOrderKey = "294", statOrder = { 294 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["V2PurityOfColdSkillCorrupted___"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Ice Skill", statOrderKey = "300", statOrder = { 300 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["V2PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Lightning Skill", statOrderKey = "302", statOrder = { 302 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["V2PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Purity of Elements Skill", statOrderKey = "312", statOrder = { 312 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedChaosDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Chaos Damage taken", statOrderKey = "1491", statOrder = { 1491 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedColdDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Cold Damage taken", statOrderKey = "2578", statOrder = { 2578 }, level = 45, group = "ColdDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedDamageFromAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Area Damage taken from Hits", statOrderKey = "1487", statOrder = { 1487 }, level = 20, group = "ReducedDamageFromAreaOfEffect", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedDamageFromProjectilesCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Damage taken from Projectiles", statOrderKey = "1927", statOrder = { 1927 }, level = 20, group = "ProjectileDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedFireDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Fire Damage taken", statOrderKey = "1490", statOrder = { 1490 }, level = 45, group = "FireDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedLightningDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Lightning Damage taken", statOrderKey = "2577", statOrder = { 2577 }, level = 45, group = "LightningDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedExtraDamageFromCriticalStrikesBodyCorrupted__"] = { type = "Corrupted", affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrderKey = "833", statOrder = { 833 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedExtraDamageFromCriticalStrikesShieldCorrupted"] = { type = "Corrupted", affix = "", "You take (20-30)% reduced Extra Damage from Critical Strikes", statOrderKey = "833", statOrder = { 833 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "shield", "default", }, weightVal = { 1000, 0, }, }, - ["V2RegenerateLifePerSecondWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "Regenerate 100 Life per second while moving", statOrderKey = "4702", statOrder = { 4702 }, level = 60, group = "LifeRegenerationWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0, }, }, - ["V2ResoluteTechniqueCorrupted"] = { type = "Corrupted", affix = "", "Resolute Technique", statOrderKey = "6555", statOrder = { 6555 }, level = 40, group = "ResoluteTechnique", weightKey = { "sword", "default", }, weightVal = { 1000, 0, }, }, - ["V2SocketedSkillsManaMultiplierCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 90% Mana Multiplier", statOrderKey = "246", statOrder = { 246 }, level = 1, group = "SocketedGemsHaveReducedManaCost", weightKey = { "helmet", "default", }, weightVal = { 1000, 0, }, }, - ["V2SupportedByAccuracyCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Additional Accuracy", statOrderKey = "207", statOrder = { 207 }, level = 1, group = "SupportedByAccuracy", weightKey = { "mace", "axe", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0, }, }, - ["V2SupportedByBlindCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Blind", statOrderKey = "201", statOrder = { 201 }, level = 1, group = "SupportedByBlind", weightKey = { "bow", "default", }, weightVal = { 1000, 0, }, }, - ["V2SupportedByBloodmagicCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Blood Magic", statOrderKey = "191", statOrder = { 191 }, level = 1, group = "SupportedByBloodMagic", weightKey = { "mace", "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0, }, }, - ["V2SupportedByFasterProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Faster Projectiles", statOrderKey = "209", statOrder = { 209 }, level = 1, group = "SupportedByProjectileSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0, }, }, - ["V2SupportedByFortifyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Fortify", statOrderKey = "217", statOrder = { 217 }, level = 1, group = "SupportedByFortify", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0, }, }, - ["V2SupportedByLifeGainOnHitCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Life Gain On Hit", statOrderKey = "109", statOrder = { 109 }, level = 1, group = "SupportedByLifeGainOnHit", weightKey = { "sword", "mace", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0, }, }, - ["V2SupportedByOnslaughtCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Onslaught", statOrderKey = "118", statOrder = { 118 }, level = 1, group = "SupportedByOnslaught", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0, }, }, - ["V2SupportedByReducedManaCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrderKey = "215", statOrder = { 215 }, level = 1, group = "SupportedByReducedMana", weightKey = { "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0, }, }, - ["V2WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0, }, tags = { "has_attack_mod", }, }, - ["V2WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Wrath Skill", statOrderKey = "315", statOrder = { 315 }, level = 45, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0, }, }, - ["V2SocketedDurationGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Duration Gems", statOrderKey = "39", statOrder = { 39 }, level = 20, group = "IncreaseSocketedDurationGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2SocketedAoEGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed AoE Gems", statOrderKey = "40", statOrder = { 40 }, level = 20, group = "IncreasedSocketedAoEGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2SocketedAuraGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Aura Gems", statOrderKey = "45", statOrder = { 45 }, level = 20, group = "IncreaseSocketedAuraGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2SocketedCurseGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Curse Gems", statOrderKey = "48", statOrder = { 48 }, level = 20, group = "IncreaseSocketedCurseGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2SocketedTrapOrMineGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Trap or Mine Gems", statOrderKey = "50", statOrder = { 50 }, level = 20, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2SocketedWarcryGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Warcry Gems", statOrderKey = "54", statOrder = { 54 }, level = 20, group = "LocalSocketedWarcryGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2SocketedProjectileGemCorrupted_"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Projectile Gems", statOrderKey = "41", statOrder = { 41 }, level = 20, group = "IncreaseSocketedProjectileGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedMaximumLifeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedMaximumEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 1, group = "MaximumEnergyShieldPercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0, }, }, - ["V2ItemRarityCorrupted_"] = { type = "Corrupted", affix = "", "(20-30)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 60, group = "IncreasedItemRarity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2ItemQuantityCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Quantity of Items found", statOrderKey = "892", statOrder = { 892 }, level = 84, group = "IncreasedItemQuantity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 200, 200, 200, 0, }, }, - ["V2IncreasedAuraEffectWrathCorrupted"] = { type = "Corrupted", affix = "", "Wrath has (15-20)% increased Aura Effect", statOrderKey = "2554", statOrder = { 2554 }, level = 45, group = "IncreasedAuraEffectWrathCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedAuraEffectAngerCorrupted"] = { type = "Corrupted", affix = "", "Anger has (15-20)% increased Aura Effect", statOrderKey = "2549", statOrder = { 2549 }, level = 45, group = "IncreasedAuraEffectAngerCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedAuraEffectHatredCorrupted"] = { type = "Corrupted", affix = "", "Hatred has (15-20)% increased Aura Effect", statOrderKey = "2556", statOrder = { 2556 }, level = 45, group = "IncreasedAuraEffectHatredCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedAuraEffectDeterminationCorrupted"] = { type = "Corrupted", affix = "", "Determination has (15-20)% increased Aura Effect", statOrderKey = "2557", statOrder = { 2557 }, level = 45, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedAuraEffectDisciplineCorrupted"] = { type = "Corrupted", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrderKey = "2558", statOrder = { 2558 }, level = 45, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedAuraEffectGraceCorrupted"] = { type = "Corrupted", affix = "", "Grace has (15-20)% increased Aura Effect", statOrderKey = "2555", statOrder = { 2555 }, level = 45, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedAuraEffectMalevolenceCorrupted"] = { type = "Corrupted", affix = "", "Malevolence has (15-20)% increased Aura Effect", statOrderKey = "4262", statOrder = { 4262 }, level = 45, group = "IncreasedAuraEffectMalevolenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedAuraEffectZealotryCorrupted_"] = { type = "Corrupted", affix = "", "Zealotry has (15-20)% increased Aura Effect", statOrderKey = "6510", statOrder = { 6510 }, level = 45, group = "IncreasedAuraEffectZealotryCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedAuraEffectPrideCorrupted"] = { type = "Corrupted", affix = "", "Pride has (15-20)% increased Aura Effect", statOrderKey = "6102", statOrder = { 6102 }, level = 45, group = "IncreasedAuraEffectPrideCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedIntelligenceDexterityCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Dexterity", "(4-6)% increased Intelligence", statOrderKey = "529,530", statOrder = { 529, 530 }, level = 1, group = "IncreasedAttributesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedDexterityStrengthCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Dexterity", statOrderKey = "528,529", statOrder = { 528, 529 }, level = 1, group = "IncreasedAttributesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2IncreasedStrengthIntelligenceCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Intelligence", statOrderKey = "528,530", statOrder = { 528, 530 }, level = 1, group = "IncreasedAttributesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["V2AllResistancesCorrupted"] = { type = "Corrupted", affix = "", "+(14-16)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 1, group = "AllResistancesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["LocalIncreaseSocketedSupportGemLevelIntMasterVendorItem"] = { type = "Prefix", affix = "Catarina's", "+1 to Level of Socketed Support Gems", statOrderKey = "52", statOrder = { 52 }, level = 1, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrderKey = "708", statOrder = { 708 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrderKey = "708", statOrder = { 708 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrderKey = "708", statOrder = { 708 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "40% increased total Recovery per second from Life Leech", statOrderKey = "1409", statOrder = { 1409 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosLeechedAsLifeEssence1_"] = { type = "Suffix", affix = "of the Essence", "0.5% of Chaos Damage Leeched as Life", statOrderKey = "967", statOrder = { 967 }, level = 63, group = "ChaosDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReduceGlobalFlatManaCostStrIntMasterVendor"] = { type = "Prefix", affix = "Elreon's", "-(8-4) to Total Mana Cost of Skills", statOrderKey = "1144", statOrder = { 1144 }, level = 1, group = "IncreaseFlatManaCost", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeLeechSpeedDexIntMasterVendorItem"] = { type = "Prefix", affix = "Vorici's", "(20-40)% increased total Recovery per second from Life Leech", statOrderKey = "1409", statOrder = { 1409 }, level = 1, group = "LifeLeechSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["SocketedGemQualityStrMasterVendorItem"] = { type = "Prefix", affix = "Haku's", "+(3-6)% to Quality of Socketed Support Gems", statOrderKey = "63", statOrder = { 63 }, level = 1, group = "SupportGemQuality", weightKey = { "default", }, weightVal = { 0, }, }, - ["BleedOnHitGainedDexMasterVendorItem"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrderKey = "1684", statOrder = { 1684 }, level = 1, group = "CausesBleeding", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["BleedOnHitGainedDexMasterVendorItemUpdated_"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrderKey = "1686", statOrder = { 1686 }, level = 1, group = "CausesBleeding", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["AlwaysHitsStrDexMasterVendorItem"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrderKey = "1299", statOrder = { 1299 }, level = 1, group = "AlwaysHits", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["MapInvasionBossMasterVendorItem"] = { type = "Prefix", affix = "Zana's", "Area is inhabited by an additional Invasion Boss", statOrderKey = "1807", statOrder = { 1807 }, level = 1, group = "MapInvasionMonsterPacks", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(8-11)% chance to Avoid Elemental Ailments", statOrderKey = "1104", statOrder = { 1104 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(12-15)% chance to Avoid Elemental Ailments", statOrderKey = "1104", statOrder = { 1104 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(16-19)% chance to Avoid Elemental Ailments", statOrderKey = "1104", statOrder = { 1104 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(20-23)% chance to Avoid Elemental Ailments", statOrderKey = "1104", statOrder = { 1104 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrderKey = "1303", statOrder = { 1303 }, level = 15, group = "AttackCastSpeed", weightKey = { "no_attack_mods", "no_caster_mods", "dex_int_shield", "default", }, weightVal = { 0, 0, 1000, 0, }, }, - ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrderKey = "1303", statOrder = { 1303 }, level = 45, group = "AttackCastSpeed", weightKey = { "no_attack_mods", "no_caster_mods", "dex_int_shield", "default", }, weightVal = { 0, 0, 1000, 0, }, }, - ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrderKey = "1303", statOrder = { 1303 }, level = 70, group = "AttackCastSpeed", weightKey = { "no_attack_mods", "no_caster_mods", "dex_int_shield", "default", }, weightVal = { 0, 0, 1000, 0, }, }, - ["LifeLeechPermyriadLocal1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 50, group = "LifeLeech", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocal2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 60, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocal3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 70, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 1, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 10, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 26, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 42, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 58, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 74, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 82, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["ManaLeechPermyriadLocal1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "982", statOrder = { 982 }, level = 50, group = "ManaLeech", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrderKey = "538", statOrder = { 538 }, level = 4, group = "AttackDamage", weightKey = { "no_attack_mods", "str_dex_shield", "default", }, weightVal = { 0, 1000, 0, }, }, - ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrderKey = "538", statOrder = { 538 }, level = 15, group = "AttackDamage", weightKey = { "no_attack_mods", "str_dex_shield", "default", }, weightVal = { 0, 1000, 0, }, }, - ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrderKey = "538", statOrder = { 538 }, level = 30, group = "AttackDamage", weightKey = { "no_attack_mods", "str_dex_shield", "default", }, weightVal = { 0, 1000, 0, }, }, - ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrderKey = "538", statOrder = { 538 }, level = 60, group = "AttackDamage", weightKey = { "no_attack_mods", "str_dex_shield", "default", }, weightVal = { 0, 1000, 0, }, }, - ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrderKey = "538", statOrder = { 538 }, level = 81, group = "AttackDamage", weightKey = { "no_attack_mods", "str_dex_shield", "default", }, weightVal = { 0, 1000, 0, }, }, - ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0, }, }, - ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0, }, }, - ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-13) to (19-22) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (31-41) to (61-71) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (36-49) to (73-85) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (45-54) to (80-90) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (25-33) to (50-58) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (30-40) to (60-69) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (33-35) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-49) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-9) to (106-112) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-30) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-24) to (36-42) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (23-30) to (45-53) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (28-38) to (57-66) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (34-46) to (68-80) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (41-55) to (83-96) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (49-65) to (98-115) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-16) to (23-27) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (21-27) to (41-48) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (26-34) to (52-60) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (31-41) to (62-73) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (38-50) to (75-88) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (45-60) to (89-104) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-6) to (69-73) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-7) to (87-92) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-9) to (109-115) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (4-11) to (132-139) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (4-13) to (159-168) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (5-15) to (189-200) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_caster_mod", }, }, - ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (47-72) to (98-123) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 83, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 0, 600, 600, 600, 400, 250, 250, 600, 600, 0, }, }, - ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (70-108) to (147-185) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 83, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 600, 600, 250, 300, 0, }, }, - ["RarityDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "30% increased Rarity of Items found during any Flask Effect", statOrderKey = "1935", statOrder = { 1935 }, level = 1, group = "RarityDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["DamageDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "(20-25)% increased Damage during any Flask Effect", statOrderKey = "3258", statOrder = { 3258 }, level = 1, group = "DamageDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["PierceChanceEssence5"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrderKey = "6135", statOrder = { 6135 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, - ["PierceChanceEssence6_"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrderKey = "6135", statOrder = { 6135 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, - ["PierceChanceEssence7"] = { type = "Prefix", affix = "", "Projectiles Pierce 2 additional Targets", statOrderKey = "6136", statOrder = { 6136 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalPierceEssence5"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrderKey = "1064", statOrder = { 1064 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalPierceEssence6_"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrderKey = "1064", statOrder = { 1064 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalPierceEssence7"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce 2 additional Targets", statOrderKey = "1064", statOrder = { 1064 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0, }, }, - ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrderKey = "2559", statOrder = { 2559 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFireDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Fire Damage from Hits", statOrderKey = "2563", statOrder = { 2563 }, level = 58, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFireDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Fire Damage from Hits", statOrderKey = "2563", statOrder = { 2563 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFireDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Fire Damage from Hits", statOrderKey = "2563", statOrder = { 2563 }, level = 82, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidFireDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Fire Damage from Hits", statOrderKey = "2563", statOrder = { 2563 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidColdDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Cold Damage from Hits", statOrderKey = "2564", statOrder = { 2564 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidColdDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Cold Damage from Hits", statOrderKey = "2564", statOrder = { 2564 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidColdDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Cold Damage from Hits", statOrderKey = "2564", statOrder = { 2564 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidColdDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Cold Damage from Hits", statOrderKey = "2564", statOrder = { 2564 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidColdDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Cold Damage from Hits", statOrderKey = "2564", statOrder = { 2564 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidLightningDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "(4-5)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 10, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidLightningDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 26, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidLightningDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 42, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidLightningDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 58, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidLightningDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 74, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToAvoidLightningDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 82, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0, }, }, - ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrderKey = "2350", statOrder = { 2350 }, level = 30, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, }, }, - ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrderKey = "2350", statOrder = { 2350 }, level = 60, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, }, }, - ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrderKey = "708,2350", statOrder = { 708, 2350 }, level = 1, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 additional Fire Damage", statOrderKey = "267", statOrder = { 267 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0, }, }, - ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrderKey = "264", statOrder = { 264 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0, }, }, - ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrderKey = "264", statOrder = { 264 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0, }, }, - ["SocketedGemsAddPercentageOfPhysicalAsLightningEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage", statOrderKey = "268", statOrder = { 268 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0, }, }, - ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrderKey = "265", statOrder = { 265 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0, }, }, - ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrderKey = "3474", statOrder = { 3474 }, level = 63, group = "ItemGrantsBuff", weightKey = { "default", }, weightVal = { 0, }, }, - ["BurningGroundWhileMovingEssence1"] = { type = "Suffix", affix = "of the Essence", "Drops Burning Ground while moving, dealing 2500 Fire Damage per second", statOrderKey = "3473", statOrder = { 3473 }, level = 63, group = "ItemGrantsBuff", weightKey = { "default", }, weightVal = { 0, }, }, - ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 63, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrderKey = "1198", statOrder = { 1198 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0, }, }, - ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Strike Chance", statOrderKey = "256", statOrder = { 256 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrderKey = "3448", statOrder = { 3448 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrderKey = "2366", statOrder = { 2366 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Cold Damage per Frenzy Charge", statOrderKey = "3447", statOrder = { 3447 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 40 to 80 Fire Damage if you've Blocked Recently", statOrderKey = "3449", statOrder = { 3449 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0, }, }, - ["SocketedSkillAlwaysIgniteEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 50% chance to Ignite", statOrderKey = "250", statOrder = { 250 }, level = 63, group = "DisplaySupportedSkillsHaveAChanceToIgnite", weightKey = { "default", }, weightVal = { 0, }, }, - ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrderKey = "3442", statOrder = { 3442 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrderKey = "3443", statOrder = { 3443 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 10% reduced Reflected Damage", statOrderKey = "6170", statOrder = { 6170 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0, }, }, - ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to gain a Power Charge when you Block", statOrderKey = "3445", statOrder = { 3445 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0, }, }, - ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrderKey = "3446", statOrder = { 3446 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0, }, }, - ["PoisonDamageEssence1"] = { type = "Prefix", affix = "Essences", "40% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 63, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of Mana when you use a Skill", statOrderKey = "2656", statOrder = { 2656 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0, }, }, - ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "15% increased Effect of Fortify on you", statOrderKey = "2749", statOrder = { 2749 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2788", statOrder = { 2788 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0, }, }, - ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrderKey = "281", statOrder = { 281 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0, }, }, - ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrderKey = "45", statOrder = { 45 }, level = 63, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Cast Level 20 Fire Burst on Hit", statOrderKey = "379", statOrder = { 379 }, level = 63, group = "GrantedSkill", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", statOrderKey = "364", statOrder = { 364 }, level = 63, group = "GrantsMinion", weightKey = { "default", }, weightVal = { 0, }, }, - ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrderKey = "4507", statOrder = { 4507 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrderKey = "279", statOrder = { 279 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0, }, }, - ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 500 Chaos Damage per second for 8 seconds", statOrderKey = "4254", statOrder = { 4254 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0, }, }, - ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrderKey = "5980", statOrder = { 5980 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0, }, }, - ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 2% of your maximum Mana when you Block", statOrderKey = "5289", statOrder = { 5289 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0, }, }, - ["BleedDuration1"] = { type = "Suffix", affix = "of Agony", "(8-12)% increased Bleeding Duration", statOrderKey = "3779", statOrder = { 3779 }, level = 30, group = "BleedDuration", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, }, }, - ["BleedDuration2"] = { type = "Suffix", affix = "of Torment", "(13-18)% increased Bleeding Duration", statOrderKey = "3779", statOrder = { 3779 }, level = 60, group = "BleedDuration", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, }, }, - ["ChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(6-8)% chance to Ignite", statOrderKey = "1282", statOrder = { 1282 }, level = 15, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["TwoHandChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(12-15)% chance to Ignite", statOrderKey = "1282", statOrder = { 1282 }, level = 15, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, - ["ChanceToBleed1"] = { type = "Suffix", affix = "of Bleeding", "10% chance to cause Bleeding on Hit", statOrderKey = "1686", statOrder = { 1686 }, level = 15, group = "LocalChanceToBleed", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, }, }, - ["ChanceToBleed2_"] = { type = "Suffix", affix = "of Flaying", "15% chance to cause Bleeding on Hit", statOrderKey = "1686", statOrder = { 1686 }, level = 55, group = "LocalChanceToBleed", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, }, }, - ["ChanceToBleed3"] = { type = "Suffix", affix = "of Hemorrhaging", "20% chance to cause Bleeding on Hit", statOrderKey = "1686", statOrder = { 1686 }, level = 85, group = "LocalChanceToBleed", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, }, }, - ["ChanceToPoison1"] = { type = "Suffix", affix = "of Poisoning", "10% chance to Poison on Hit", statOrderKey = "5167", statOrder = { 5167 }, level = 15, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, }, }, - ["ChanceToPoison2"] = { type = "Suffix", affix = "of Toxins", "20% chance to Poison on Hit", statOrderKey = "5167", statOrder = { 5167 }, level = 55, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, }, }, - ["ChanceToPoison3_"] = { type = "Suffix", affix = "of Death", "30% chance to Poison on Hit", statOrderKey = "5167", statOrder = { 5167 }, level = 85, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, }, }, - ["ChanceToPoisonEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrderKey = "708,5167", statOrder = { 708, 5167 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(6-8)% chance to Freeze", statOrderKey = "1285", statOrder = { 1285 }, level = 15, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["TwoHandChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(12-15)% chance to Freeze", statOrderKey = "1285", statOrder = { 1285 }, level = 15, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, - ["ChanceToShock1"] = { type = "Suffix", affix = "of Shocking", "(6-8)% chance to Shock", statOrderKey = "1289", statOrder = { 1289 }, level = 15, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["TwoHandChanceToShock1__"] = { type = "Suffix", affix = "of Shocking", "(12-15)% chance to Shock", statOrderKey = "1289", statOrder = { 1289 }, level = 15, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0, }, }, - ["BurnDamage1_"] = { type = "Suffix", affix = "of Burning", "(16-20)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 20, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "sceptre", "wand", "default", }, weightVal = { 0, 1500, 1500, 0, }, }, - ["BurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(21-25)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 40, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "sceptre", "wand", "default", }, weightVal = { 0, 1500, 1500, 0, }, }, - ["BurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(26-30)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 60, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "sceptre", "wand", "default", }, weightVal = { 0, 750, 750, 0, }, }, - ["TwoHandBurnDamage1"] = { type = "Suffix", affix = "of Burning", "(21-30)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 20, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 1500, 0, }, }, - ["TwoHandBurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(31-40)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 40, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 1500, 0, }, }, - ["TwoHandBurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(41-50)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 60, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 750, 0, }, }, - ["PoisonDamage1"] = { type = "Suffix", affix = "of Poison", "20% chance to Poison on Hit", "(21-30)% increased Damage with Poison", statOrderKey = "2353,2361", statOrder = { 2353, 2361 }, level = 20, group = "PoisonDamage", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 1500, 1500, 3000, 3000, 0, }, }, - ["PoisonDamage2"] = { type = "Suffix", affix = "of Venom", "25% chance to Poison on Hit", "(31-40)% increased Damage with Poison", statOrderKey = "2353,2361", statOrder = { 2353, 2361 }, level = 40, group = "PoisonDamage", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 1500, 1500, 3000, 3000, 0, }, }, - ["PoisonDamage3"] = { type = "Suffix", affix = "of Virulence", "30% chance to Poison on Hit", "(41-50)% increased Damage with Poison", statOrderKey = "2353,2361", statOrder = { 2353, 2361 }, level = 60, group = "PoisonDamage", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 500, 500, 1000, 1000, 0, }, }, - ["PoisonDamageEnhancedAttacksMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrderKey = "711,2361", statOrder = { 711, 2361 }, level = 1, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["PoisonDamageEnhancedSpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrderKey = "728,2361", statOrder = { 728, 2361 }, level = 1, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["BleedDamage1_"] = { type = "Suffix", affix = "of Bloodletting", "Attacks have 20% chance to cause Bleeding", "(21-30)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 20, group = "BleedingDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 1500, 1500, 3000, 3000, 0, }, }, - ["BleedDamage2"] = { type = "Suffix", affix = "of Haemophilia", "Attacks have 25% chance to cause Bleeding", "(31-40)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 40, group = "BleedingDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 1500, 1500, 3000, 3000, 0, }, }, - ["BleedDamage3"] = { type = "Suffix", affix = "of Exsanguination", "Attacks have 30% chance to cause Bleeding", "(41-50)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 60, group = "BleedingDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 500, 500, 1000, 1000, 0, }, }, - ["ReducedPhysicalDamageTaken1"] = { type = "Suffix", affix = "of Dampening", "2% additional Physical Damage Reduction", statOrderKey = "1519", statOrder = { 1519 }, level = 25, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "shield", "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, 0, 2000, 1000, 1000, 660, 0, }, }, - ["ReducedPhysicalDamageTaken2_"] = { type = "Suffix", affix = "of Numbing", "(3-4)% additional Physical Damage Reduction", statOrderKey = "1519", statOrder = { 1519 }, level = 85, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "shield", "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, 0, 1000, 500, 500, 300, 0, }, }, - ["ChanceToDodge1_"] = { type = "Suffix", affix = "of Haze", "(3-4)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 25, group = "ChanceToDodge", weightKey = { "weapon", "quiver", "shield", "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, 0, 2000, 1000, 1000, 660, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodge2__"] = { type = "Suffix", affix = "of Fog", "(5-6)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 85, group = "ChanceToDodge", weightKey = { "weapon", "quiver", "shield", "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, 0, 1000, 500, 500, 300, 0, }, tags = { "spell_dodge_mod", }, }, - ["EnergyShieldRegenerationPerMinute1"] = { type = "Suffix", affix = "of Vibrance", "Regenerate 0.6% of Energy Shield per second", statOrderKey = "1832", statOrder = { 1832 }, level = 25, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "shield", "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, 0, 2000, 1000, 1000, 660, 0, }, }, - ["EnergyShieldRegenerationPerMinute2"] = { type = "Suffix", affix = "of Exuberance", "Regenerate 1% of Energy Shield per second", statOrderKey = "1832", statOrder = { 1832 }, level = 85, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "shield", "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, 0, 1000, 500, 500, 300, 0, }, }, - ["IncreasedDurationBootsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 15 Increased Duration", "(10-15)% increased Skill Effect Duration", statOrderKey = "104,1148", statOrder = { 104, 1148 }, level = 68, group = "SkillEffectDuration", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedCooldownRecoveryBootsUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Speed", statOrderKey = "3784", statOrder = { 3784 }, level = 80, group = "CooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, }, - ["SupportedByFortifyUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Fortify", statOrderKey = "217", statOrder = { 217 }, level = 68, group = "DisplaySocketedGemGetsFortify", weightKey = { "no_attack_mods", "boots_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ImmuneToChilledGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Chilled Ground", statOrderKey = "6425", statOrder = { 6425 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ImmuneToBurningGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Burning Ground", statOrderKey = "6423", statOrder = { 6423 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ImmuneToShockedGroundUber1"] = { type = "Prefix", affix = "Eldritch", "Unaffected by Shocked Ground", statOrderKey = "6436", statOrder = { 6436 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0, }, }, - ["ImmuneToDesecratedGroundUber1_"] = { type = "Prefix", affix = "Eldritch", "Unaffected by Desecrated Ground", statOrderKey = "6428", statOrder = { 6428 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToDodgeUber1"] = { type = "Suffix", affix = "of Shaping", "(3-5)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 68, group = "ChanceToDodge", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeUber2"] = { type = "Suffix", affix = "of Shaping", "(6-8)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 75, group = "ChanceToDodge", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 84, group = "ChanceToDodge", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 68, group = "SpellDodgePercentage", weightKey = { "spell_dodge_mod", "boots_elder", "default", }, weightVal = { 0, 500, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeSpellsUber2"] = { type = "Suffix", affix = "of the Elder", "(6-8)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 75, group = "SpellDodgePercentage", weightKey = { "spell_dodge_mod", "boots_elder", "default", }, weightVal = { 0, 500, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeSpellsUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 83, group = "SpellDodgePercentage", weightKey = { "spell_dodge_mod", "boots_elder", "default", }, weightVal = { 0, 500, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToAvoidStunUber1"] = { type = "Suffix", affix = "of the Elder", "(15-22)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 68, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0, }, }, - ["ChanceToAvoidStunUber2"] = { type = "Suffix", affix = "of the Elder", "(23-30)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 75, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0, }, }, - ["ChanceToAvoidStunUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 82, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0, }, }, - ["ChanceToAvoidElementalAilmentsUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-22)% chance to Avoid Elemental Ailments", statOrderKey = "1104", statOrder = { 1104 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToAvoidElementalAilmentsUber2"] = { type = "Suffix", affix = "of Shaping", "(23-30)% chance to Avoid Elemental Ailments", statOrderKey = "1104", statOrder = { 1104 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToAvoidElementalAilmentsUber3"] = { type = "Suffix", affix = "of Shaping", "(31-35)% chance to Avoid Elemental Ailments", statOrderKey = "1104", statOrder = { 1104 }, level = 81, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToAvoidProjectilesUber1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% chance to avoid Projectiles", statOrderKey = "3778", statOrder = { 3778 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToAvoidProjectilesUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% chance to avoid Projectiles", statOrderKey = "3778", statOrder = { 3778 }, level = 84, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToGainEnduranceChargeOnKillUber1"] = { type = "Prefix", affix = "Eldritch", "(4-6)% chance to gain an Endurance Charge on Kill", statOrderKey = "1819", statOrder = { 1819 }, 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, }, }, - ["ChanceToGainEnduranceChargeOnKillUber2"] = { type = "Prefix", affix = "Eldritch", "(7-10)% chance to gain an Endurance Charge on Kill", statOrderKey = "1819", statOrder = { 1819 }, 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, }, }, - ["TotemDamageSpellUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(20-25)% increased Totem Damage", statOrderKey = "195,533", statOrder = { 195, 533 }, level = 68, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, - ["TotemDamageSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(26-30)% increased Totem Damage", statOrderKey = "195,533", statOrder = { 195, 533 }, level = 75, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, - ["TotemDamageSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(31-35)% increased Totem Damage", statOrderKey = "195,533", statOrder = { 195, 533 }, level = 80, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, - ["TotemSpeedSpellUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(8-12)% increased Totem Placement speed", statOrderKey = "195,1776", statOrder = { 195, 1776 }, level = 68, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, - ["TotemSpeedSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(13-16)% increased Totem Placement speed", statOrderKey = "195,1776", statOrder = { 195, 1776 }, level = 75, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, - ["TotemSpeedSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(17-20)% increased Totem Placement speed", statOrderKey = "195,1776", statOrder = { 195, 1776 }, level = 80, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_caster_mod", }, }, - ["TotemDamageAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(20-25)% increased Totem Damage", statOrderKey = "128,533", statOrder = { 128, 533 }, level = 68, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["TotemDamageAttackUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(26-30)% increased Totem Damage", statOrderKey = "128,533", statOrder = { 128, 533 }, level = 75, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["TotemDamageAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(31-35)% increased Totem Damage", statOrderKey = "128,533", statOrder = { 128, 533 }, level = 80, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["TotemSpeedAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(8-12)% increased Totem Placement speed", statOrderKey = "128,1776", statOrder = { 128, 1776 }, level = 68, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["TotemSpeedAttackUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(13-16)% increased Totem Placement speed", statOrderKey = "128,1776", statOrder = { 128, 1776 }, level = 75, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["TotemSpeedAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrderKey = "128,1776", statOrder = { 128, 1776 }, level = 80, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_attack_mod", }, }, - ["SupportedByLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 15 Life Leech", statOrderKey = "210", statOrder = { 210 }, level = 68, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, - ["GrantsDecoyTotemSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 20 Decoy Totem Skill", statOrderKey = "344", statOrder = { 344 }, level = 68, group = "GrantedSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0, }, }, - ["GlobalRaiseSpectreGemLevelUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Level of all Raise Spectre Gems", statOrderKey = "915", statOrder = { 915 }, level = 75, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 400, 0, }, }, - ["IncreasedAttackSpeedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Faster Attacks", "(7-9)% increased Attack Speed", statOrderKey = "200,731", statOrder = { 200, 731 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedUber2_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Faster Attacks", "(10-12)% increased Attack Speed", statOrderKey = "200,731", statOrder = { 200, 731 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAttackSpeedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Faster Attacks", "(13-14)% increased Attack Speed", statOrderKey = "200,731", statOrder = { 200, 731 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedCastSpeedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Faster Casting", "(7-9)% increased Cast Speed", statOrderKey = "220,767", statOrder = { 220, 767 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(10-12)% increased Cast Speed", statOrderKey = "220,767", statOrder = { 220, 767 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(13-14)% increased Cast Speed", statOrderKey = "220,767", statOrder = { 220, 767 }, level = 84, group = "IncreasedAttackSpeed", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedAttackAndCastSpeedUber1_"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Attack and Cast Speed", statOrderKey = "1303", statOrder = { 1303 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedAttackAndCastSpeedUber2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attack and Cast Speed", statOrderKey = "1303", statOrder = { 1303 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedAttackAndCastSpeedUber3_"] = { type = "Suffix", affix = "of the Elder", "(13-14)% increased Attack and Cast Speed", statOrderKey = "1303", statOrder = { 1303 }, level = 85, group = "IncreasedAttackSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["SupportedByManaLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 15 Mana Leech", statOrderKey = "233", statOrder = { 233 }, level = 68, group = "Supported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ProjectileSpeedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 16 Faster Projectiles", "(15-20)% increased Projectile Speed", statOrderKey = "209,1068", statOrder = { 209, 1068 }, level = 68, group = "ProjectileSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["ProjectileSpeedUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 18 Faster Projectiles", "(21-25)% increased Projectile Speed", statOrderKey = "209,1068", statOrder = { 209, 1068 }, level = 75, group = "ProjectileSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["ProjectileSpeedUber3_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 20 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrderKey = "209,1068", statOrder = { 209, 1068 }, level = 82, group = "ProjectileSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["ProjectileDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Slower Projectiles", "(15-18)% increased Projectile Damage", statOrderKey = "136,1255", statOrder = { 136, 1255 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ProjectileDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Slower Projectiles", "(19-22)% increased Projectile Damage", statOrderKey = "136,1255", statOrder = { 136, 1255 }, level = 75, group = "ProjectileDamage", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ProjectileDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrderKey = "136,1255", statOrder = { 136, 1255 }, level = 83, group = "ProjectileDamage", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToAvoidInterruptionWhileCastingUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "1151", statOrder = { 1151 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["ChanceToAvoidInterruptionWhileCastingUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "1151", statOrder = { 1151 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["ChanceToAvoidInterruptionWhileCastingUber3"] = { type = "Suffix", affix = "of Shaping", "(26-30)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "1151", statOrder = { 1151 }, level = 80, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedMeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Melee Strike Range", statOrderKey = "1732", statOrder = { 1732 }, level = 85, group = "MeleeWeaponAndUnarmedRange", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["AdditionalTrapsThrownSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrderKey = "186,6013", statOrder = { 186, 6013 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0, }, }, - ["AdditionalTrapsThrownSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrderKey = "186,6013", statOrder = { 186, 6013 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0, }, }, - ["AdditionalTrapsThrownSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrderKey = "186,6013", statOrder = { 186, 6013 }, level = 84, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0, }, }, - ["TrapDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "(20-25)% increased Trap Damage", statOrderKey = "186,534", statOrder = { 186, 534 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["TrapDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "(26-30)% increased Trap Damage", statOrderKey = "186,534", statOrder = { 186, 534 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["TrapDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "(31-35)% increased Trap Damage", statOrderKey = "186,534", statOrder = { 186, 534 }, level = 80, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["TrapDamageCooldownUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(20-25)% increased Trap Damage", statOrderKey = "145,534", statOrder = { 145, 534 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["TrapDamageCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(26-30)% increased Trap Damage", statOrderKey = "145,534", statOrder = { 145, 534 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["TrapDamageCooldownUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(31-35)% increased Trap Damage", statOrderKey = "145,534", statOrder = { 145, 534 }, level = 80, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["TrapSpeedCooldownUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(8-12)% increased Trap Throwing Speed", statOrderKey = "145,1178", statOrder = { 145, 1178 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["TrapSpeedCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(13-16)% increased Trap Throwing Speed", statOrderKey = "145,1178", statOrder = { 145, 1178 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["TrapSpeedCooldownUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrderKey = "145,1178", statOrder = { 145, 1178 }, level = 80, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["TrapDamageMineUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Trap Damage", statOrderKey = "189,534", statOrder = { 189, 534 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["TrapDamageMineUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Trap Damage", statOrderKey = "189,534", statOrder = { 189, 534 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["TrapDamageMineUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrderKey = "189,534", statOrder = { 189, 534 }, level = 80, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0, }, }, - ["PoisonDamageSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Poison", "(20-25)% increased Damage with Poison", statOrderKey = "123,2361", statOrder = { 123, 2361 }, level = 68, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["PoisonDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "(26-30)% increased Damage with Poison", statOrderKey = "123,2361", statOrder = { 123, 2361 }, level = 75, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["PoisonDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "(31-35)% increased Damage with Poison", statOrderKey = "123,2361", statOrder = { 123, 2361 }, level = 80, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["PoisonDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Poison", "(8-12)% increased Poison Duration", statOrderKey = "123,2350", statOrder = { 123, 2350 }, level = 68, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["PoisonDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "(13-16)% increased Poison Duration", statOrderKey = "123,2350", statOrder = { 123, 2350 }, level = 75, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["PoisonDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "(17-20)% increased Poison Duration", statOrderKey = "123,2350", statOrder = { 123, 2350 }, level = 80, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["BleedingDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance To Bleed", "(20-25)% increased Damage with Bleeding", statOrderKey = "78,2349", statOrder = { 78, 2349 }, level = 68, group = "BleedingDamage", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["BleedingDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "(26-30)% increased Damage with Bleeding", statOrderKey = "78,2349", statOrder = { 78, 2349 }, level = 75, group = "BleedingDamage", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["BleedingDamageUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrderKey = "78,2349", statOrder = { 78, 2349 }, level = 80, group = "BleedingDamage", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ChanceToGainFrenzyChargeOnKillUberElder1"] = { type = "Prefix", affix = "Eldritch", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1818", statOrder = { 1818 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0, }, }, - ["ChanceToGainFrenzyChargeOnKillUberElder2_"] = { type = "Prefix", affix = "Eldritch", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1818", statOrder = { 1818 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0, }, }, - ["ChanceToGainFrenzyChargeOnKillUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1818", statOrder = { 1818 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0, }, }, - ["ChanceToGainFrenzyChargeOnKillUberShaper2_"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1818", statOrder = { 1818 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0, }, }, - ["IncreasedAccuracySupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 16 Additional Accuracy", "(6-10)% increased Global Accuracy Rating", statOrderKey = "207,755", statOrder = { 207, 755 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracySupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Additional Accuracy", "(11-15)% increased Global Accuracy Rating", statOrderKey = "207,755", statOrder = { 207, 755 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["IncreasedAccuracySupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrderKey = "207,755", statOrder = { 207, 755 }, level = 83, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["AdditionalBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(2-3)% Chance to Block Attack Damage", statOrderKey = "495", statOrder = { 495 }, level = 68, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["AdditionalBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(4-5)% Chance to Block Attack Damage", statOrderKey = "495", statOrder = { 495 }, level = 80, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0, }, }, - ["BlindOnHitSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Blind", "(5-6)% Global chance to Blind Enemies on hit", statOrderKey = "201,2139", statOrder = { 201, 2139 }, level = 68, group = "BlindOnHit", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, - ["BlindOnHitSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Blind", "(7-8)% Global chance to Blind Enemies on hit", statOrderKey = "201,2139", statOrder = { 201, 2139 }, level = 75, group = "BlindOnHit", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, - ["BlindOnHitSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrderKey = "201,2139", statOrder = { 201, 2139 }, level = 80, group = "BlindOnHit", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0, }, }, - ["SocketedSpellCriticalMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +30% to Critical Strike Multiplier", statOrderKey = "277", statOrder = { 277 }, level = 68, group = "SocketedCriticalMultiplier", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SocketedSpellCriticalMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +50% to Critical Strike Multiplier", statOrderKey = "277", statOrder = { 277 }, level = 75, group = "SocketedCriticalMultiplier", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SocketedSpellCriticalMultiplierUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +70% to Critical Strike Multiplier", statOrderKey = "277", statOrder = { 277 }, level = 83, group = "SocketedCriticalMultiplier", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SocketedAttackCriticalMultiplierUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +30% to Critical Strike Multiplier", statOrderKey = "262", statOrder = { 262 }, level = 68, group = "SocketedCriticalMultiplier", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["SocketedAttackCriticalMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +50% to Critical Strike Multiplier", statOrderKey = "262", statOrder = { 262 }, level = 75, group = "SocketedCriticalMultiplier", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["SocketedAttackCriticalMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +70% to Critical Strike Multiplier", statOrderKey = "262", statOrder = { 262 }, level = 84, group = "SocketedCriticalMultiplier", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["AreaDamageSupportedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Concentrated Effect", "(15-18)% increased Area Damage", statOrderKey = "185,1291", statOrder = { 185, 1291 }, level = 68, group = "AreaDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["AreaDamageSupportedUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Concentrated Effect", "(19-22)% increased Area Damage", statOrderKey = "185,1291", statOrder = { 185, 1291 }, level = 75, group = "AreaDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["AreaDamageSupportedUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Concentrated Effect", "(23-25)% increased Area Damage", statOrderKey = "185,1291", statOrder = { 185, 1291 }, level = 82, group = "AreaDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["AreaOfEffectSupportedUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(7-9)% increased Area of Effect", statOrderKey = "66,1140", statOrder = { 66, 1140 }, level = 68, group = "AreaOfEffect", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["AreaOfEffectSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(10-12)% increased Area of Effect", statOrderKey = "66,1140", statOrder = { 66, 1140 }, level = 75, group = "AreaOfEffect", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["AreaOfEffectSupportedUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrderKey = "66,1140", statOrder = { 66, 1140 }, level = 83, group = "AreaOfEffect", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumManaUber1"] = { type = "Prefix", affix = "Eldritch", "(9-11)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumManaUber2_"] = { type = "Prefix", affix = "Eldritch", "(12-15)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MinionDamageSupportedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Minion Damage", "Minions deal (15-18)% increased Damage", statOrderKey = "225,1233", statOrder = { 225, 1233 }, level = 68, group = "MinionDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MinionDamageSupportedUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Minion Damage", "Minions deal (19-22)% increased Damage", statOrderKey = "225,1233", statOrder = { 225, 1233 }, level = 75, group = "MinionDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MinionDamageSupportedUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Minion Damage", "Minions deal (23-25)% increased Damage", statOrderKey = "225,1233", statOrder = { 225, 1233 }, level = 83, group = "MinionDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MinionLifeSupportedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Minion Life", "Minions have (15-18)% increased maximum Life", statOrderKey = "223,1040", statOrder = { 223, 1040 }, level = 68, group = "MinionLife", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MinionLifeSupportedUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Minion Life", "Minions have (19-22)% increased maximum Life", statOrderKey = "223,1040", statOrder = { 223, 1040 }, level = 75, group = "MinionLife", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MinionLifeSupportedUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Minion Life", "Minions have (23-25)% increased maximum Life", statOrderKey = "223,1040", statOrder = { 223, 1040 }, level = 80, group = "MinionLife", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["AdditionalMinesPlacedSupportedUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "Throw an additional Mine", statOrderKey = "218,2729", statOrder = { 218, 2729 }, level = 68, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0, }, }, - ["AdditionalMinesPlacedSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "Throw an additional Mine", statOrderKey = "218,2729", statOrder = { 218, 2729 }, level = 75, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0, }, }, - ["AdditionalMinesPlacedSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "Throw an additional Mine", statOrderKey = "218,2729", statOrder = { 218, 2729 }, level = 85, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0, }, }, - ["MineDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "(20-25)% increased Mine Damage", statOrderKey = "218,536", statOrder = { 218, 536 }, level = 68, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0, }, }, - ["MineDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "(26-30)% increased Mine Damage", statOrderKey = "218,536", statOrder = { 218, 536 }, level = 75, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0, }, }, - ["MineDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "(31-35)% increased Mine Damage", statOrderKey = "218,536", statOrder = { 218, 536 }, level = 80, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0, }, }, - ["MineDamageTrapUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Mine Damage", statOrderKey = "189,536", statOrder = { 189, 536 }, level = 68, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0, }, }, - ["MineDamageTrapUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Mine Damage", statOrderKey = "189,536", statOrder = { 189, 536 }, level = 75, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0, }, }, - ["MineDamageTrapUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrderKey = "189,536", statOrder = { 189, 536 }, level = 80, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0, }, }, - ["IncreasedChillEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Hypothermia", "(8-12)% increased Effect of Chill", statOrderKey = "230,4066", statOrder = { 230, 4066 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedChillEffectSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Hypothermia", "(13-16)% increased Effect of Chill", statOrderKey = "230,4066", statOrder = { 230, 4066 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedChillEffectSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Hypothermia", "(17-20)% increased Effect of Chill", statOrderKey = "230,4066", statOrder = { 230, 4066 }, level = 80, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedShockEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Innervate", "(8-12)% increased Effect of Shock", statOrderKey = "237,6217", statOrder = { 237, 6217 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedShockEffectSupportedUber2___"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Innervate", "(13-16)% increased Effect of Shock", statOrderKey = "237,6217", statOrder = { 237, 6217 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedShockEffectSupportedUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Innervate", "(17-20)% increased Effect of Shock", statOrderKey = "237,6217", statOrder = { 237, 6217 }, level = 80, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IgniteDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Immolate", "(8-12)% increased Ignite Duration on Enemies", statOrderKey = "100,1119", statOrder = { 100, 1119 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["IgniteDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Immolate", "(13-16)% increased Ignite Duration on Enemies", statOrderKey = "100,1119", statOrder = { 100, 1119 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["IgniteDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrderKey = "100,1119", statOrder = { 100, 1119 }, level = 80, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedBurningDamageSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Burning Damage", "(20-25)% increased Burning Damage", statOrderKey = "102,1137", statOrder = { 102, 1137 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedBurningDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Burning Damage", "(26-30)% increased Burning Damage", statOrderKey = "102,1137", statOrder = { 102, 1137 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedBurningDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Burning Damage", "(31-35)% increased Burning Damage", statOrderKey = "102,1137", statOrder = { 102, 1137 }, level = 82, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToGainPowerChargeOnKillUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Power Charge on Kill", statOrderKey = "1820", statOrder = { 1820 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0, }, }, - ["ChanceToGainPowerChargeOnKillUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Power Charge on Kill", statOrderKey = "1820", statOrder = { 1820 }, level = 84, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0, }, }, - ["SupportedByLessDurationUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Less Duration", statOrderKey = "131", statOrder = { 131 }, level = 68, group = "Supported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["SpellAddedFireDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 82, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 83, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 84, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["ManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "(41-55)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "(56-70)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["AddedManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "Regenerate (3-5) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["AddedManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "Regenerate (6-8) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 80, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["AdditionalSpellBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(3-4)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["AdditionalSpellBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(5-6)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0, }, }, - ["SocketedSpellCriticalStrikeChanceUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +1% to Critical Strike Chance", statOrderKey = "276", statOrder = { 276 }, level = 68, group = "SocketedCriticalStrikeChance", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SocketedSpellCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +2% to Critical Strike Chance", statOrderKey = "276", statOrder = { 276 }, level = 75, group = "SocketedCriticalStrikeChance", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SocketedSpellCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +3% to Critical Strike Chance", statOrderKey = "276", statOrder = { 276 }, level = 84, group = "SocketedCriticalStrikeChance", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SocketedAttackCriticalStrikeChanceUber1__"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +1% to Critical Strike Chance", statOrderKey = "261", statOrder = { 261 }, level = 68, group = "SocketedCriticalStrikeChance", weightKey = { "no_attack_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["SocketedAttackCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +2% to Critical Strike Chance", statOrderKey = "261", statOrder = { 261 }, level = 75, group = "SocketedCriticalStrikeChance", weightKey = { "no_attack_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["SocketedAttackCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +3% to Critical Strike Chance", statOrderKey = "261", statOrder = { 261 }, level = 83, group = "SocketedCriticalStrikeChance", weightKey = { "no_attack_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_attack_mod", }, }, - ["EnemyPhysicalDamageTakenAuraUber1_"] = { type = "Suffix", affix = "of the Elder", "9% increased Physical Damage taken", "Nearby Enemies take 9% increased Physical Damage", statOrderKey = "1489,5114", statOrder = { 1489, 5114 }, level = 85, group = "LocalDisplayNearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0, }, }, - ["EnemyElementalDamageTakenAuraUber1"] = { type = "Suffix", affix = "of Shaping", "6% increased Elemental Damage taken", "Nearby Enemies take 6% increased Elemental Damage", statOrderKey = "2474,5111", statOrder = { 2474, 5111 }, level = 85, group = "LocalDisplayNearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0, }, }, - ["LocalIncreaseSocketedActiveGemLevelUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to Level of Socketed Active Skill Gems", statOrderKey = "53", statOrder = { 53 }, level = 80, group = "IncreaseSkillGemLevel", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0, }, }, - ["LocalIncreaseSocketedSupportGemLevelUber1"] = { type = "Prefix", affix = "Eldritch", "+1 to Level of Socketed Support Gems", statOrderKey = "52", statOrder = { 52 }, level = 80, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0, }, }, - ["PhysicalDamageTakenAsFirePercentUber1"] = { type = "Prefix", affix = "Eldritch", "(5-10)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysicalDamageTakenAsFirePercentUber2"] = { type = "Prefix", affix = "Eldritch", "(11-15)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 84, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysicalDamageTakenAsColdPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysicalDamageTakenAsColdPercentUber2"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysicalDamageTakenAsLightningPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysicalDamageTakenAsLightningPercentUber2___"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 82, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["ReducedElementalReflectTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrderKey = "4328", statOrder = { 4328 }, level = 68, group = "ReflectedDamage", weightKey = { "body_armour_shaper", "default", }, weightVal = { 200, 0, }, }, - ["ReducedElementalReflectTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrderKey = "4328", statOrder = { 4328 }, level = 75, group = "ReflectedDamage", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0, }, }, - ["ReducedPhysicalReflectTakenUber1"] = { type = "Prefix", affix = "Eldritch", "You and your Minions take 100% reduced Reflected Physical Damage", statOrderKey = "6076", statOrder = { 6076 }, level = 68, group = "ReflectedDamage", weightKey = { "body_armour_elder", "default", }, weightVal = { 200, 0, }, }, - ["ReducedPhysicalReflectTakenUber2"] = { type = "Prefix", affix = "Eldritch", "You and your Minions take 100% reduced Reflected Physical Damage", statOrderKey = "6076", statOrder = { 6076 }, level = 75, group = "ReflectedDamage", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0, }, }, - ["MaximumLifeUber1"] = { type = "Prefix", affix = "Eldritch", "(5-8)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0, }, }, - ["MaximumLifeUber2"] = { type = "Prefix", affix = "Eldritch", "(9-12)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0, }, }, - ["MaximumManaBodyUber1"] = { type = "Prefix", affix = "The Shaper's", "(9-11)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0, }, tags = { "has_percent_mana_mod", }, }, - ["MaximumManaBodyUber2"] = { type = "Prefix", affix = "The Shaper's", "(12-15)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0, }, tags = { "has_percent_mana_mod", }, }, - ["DamageTakenFromManaBeforeLifeUber1_"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Damage is taken from Mana before Life", statOrderKey = "1879", statOrder = { 1879 }, level = 80, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0, }, }, - ["MaximumLifeOnKillPercentUber1"] = { type = "Suffix", affix = "of the Elder", "Recover (3-4)% of Life on Kill", statOrderKey = "1026", statOrder = { 1026 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumLifeOnKillPercentUber2__"] = { type = "Suffix", affix = "of the Elder", "Recover (5-6)% of Life on Kill", statOrderKey = "1026", statOrder = { 1026 }, level = 75, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumManaOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Mana on Kill", statOrderKey = "1028", statOrder = { 1028 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumManaOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Mana on Kill", statOrderKey = "1028", statOrder = { 1028 }, level = 75, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumEnergyShieldOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Energy Shield on Kill", statOrderKey = "1027", statOrder = { 1027 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumEnergyShieldOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Energy Shield on Kill", statOrderKey = "1027", statOrder = { 1027 }, level = 75, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PercentageStrengthUber1_"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Strength", statOrderKey = "528", statOrder = { 528 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, - ["PercentageStrengthUber2__"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Strength", statOrderKey = "528", statOrder = { 528 }, level = 83, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, - ["PercentageDexterityUber1"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Dexterity", statOrderKey = "529", statOrder = { 529 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, - ["PercentageDexterityUber2"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Dexterity", statOrderKey = "529", statOrder = { 529 }, level = 83, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0, }, }, - ["PercentageIntelligenceUber1"] = { type = "Suffix", affix = "of Shaping", "(5-8)% increased Intelligence", statOrderKey = "530", statOrder = { 530 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PercentageIntelligenceUber2"] = { type = "Suffix", affix = "of Shaping", "(9-12)% increased Intelligence", statOrderKey = "530", statOrder = { 530 }, level = 83, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["LifeRegenerationRatePercentUber1"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1-1.5)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 800, 800, 0, }, }, - ["LifeRegenerationRatePercentUber2"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1.6-2)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 800, 800, 0, }, }, - ["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", statOrderKey = "108,6445", statOrder = { 108, 6445 }, level = 68, group = "Supported", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["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", statOrderKey = "108,6445", statOrder = { 108, 6445 }, level = 85, group = "Supported", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0, }, }, - ["AdditionalCriticalStrikeChanceWithAttacksUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(0-1)% to Critical Strike Chance", statOrderKey = "3668", statOrder = { 3668 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "no_attack_mods", "body_armour_elder", "default", }, weightVal = { 0, 400, 0, }, }, - ["AdditionalCriticalStrikeChanceWithAttacksUber2"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(1-2)% to Critical Strike Chance", statOrderKey = "3668", statOrder = { 3668 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "no_attack_mods", "body_armour_elder", "default", }, weightVal = { 0, 400, 0, }, }, - ["AdditionalCriticalStrikeChanceWithSpellsUber1_"] = { type = "Suffix", affix = "of Shaping", "Spells have +(0-1)% to Critical Strike Chance ", statOrderKey = "6289", statOrder = { 6289 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "no_caster_mods", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, }, - ["AdditionalCriticalStrikeChanceWithSpellsUber2_"] = { type = "Suffix", affix = "of Shaping", "Spells have +(1-2)% to Critical Strike Chance ", statOrderKey = "6289", statOrder = { 6289 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "no_caster_mods", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0, }, }, - ["GrantsWrathAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Wrath Skill", statOrderKey = "315", statOrder = { 315 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["GrantsAngerAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Anger Skill", statOrderKey = "317", statOrder = { 317 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["GrantsHatredAuraUber1__"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Hatred Skill", statOrderKey = "316", statOrder = { 316 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["GrantsEnvyAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 15 Envy Skill", statOrderKey = "322", statOrder = { 322 }, level = 85, group = "GrantedSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["GrantsDeterminationAuraUber1_"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Determination Skill", statOrderKey = "318", statOrder = { 318 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["GrantsGraceAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Grace Skill", statOrderKey = "319", statOrder = { 319 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["GrantsDisciplineAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Discipline Skill", statOrderKey = "321", statOrder = { 321 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["GrantsHasteAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Haste Skill", statOrderKey = "308", statOrder = { 308 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["GrantsVitalityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Vitality Skill", statOrderKey = "311", statOrder = { 311 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["GrantsClarityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Clarity Skill", statOrderKey = "310", statOrder = { 310 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ReducedAttributeRequirementsUber1"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrderKey = "1750", statOrder = { 1750 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ReducedAttributeRequirementsUber2"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrderKey = "1750", statOrder = { 1750 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["FireDamageLifeLeechUber1"] = { type = "Prefix", affix = "Eldritch", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrderKey = "962", statOrder = { 962 }, level = 68, group = "FireDamageLifeLeech", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["ColdDamageLifeLeechUber1_"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrderKey = "964", statOrder = { 964 }, level = 68, group = "ColdDamageLifeLeech", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["LightningDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrderKey = "966", statOrder = { 966 }, level = 68, group = "LightningDamageLifeLeech", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalDamageLifeLeechUber1"] = { type = "Prefix", affix = "Eldritch", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrderKey = "960", statOrder = { 960 }, level = 68, group = "PhysicalDamageLifeLeech", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MovementVelocityAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 68, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MovementVelocityAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-8)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 84, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["BlockAppliesToSpellsUber1"] = { type = "Suffix", affix = "of Shaping", "(25-35)% Chance to Block Spell Damage", statOrderKey = "505", statOrder = { 505 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0, }, }, - ["BlockAppliesToSpellsUber2"] = { type = "Suffix", affix = "of Shaping", "(36-40)% Chance to Block Spell Damage", statOrderKey = "505", statOrder = { 505 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0, }, }, - ["SpellBlockAmuletUber1_"] = { type = "Suffix", affix = "of Shaping", "(4-5)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["SpellBlockAmuletUber2_"] = { type = "Suffix", affix = "of Shaping", "(6-7)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 75, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PercentageAllAttributesUberElder1"] = { type = "Suffix", affix = "of the Elder", "(6-9)% increased Attributes", statOrderKey = "527", statOrder = { 527 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["PercentageAllAttributesUberElder2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attributes", statOrderKey = "527", statOrder = { 527 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, - ["PercentageAllAttributesUberShaper1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% increased Attributes", statOrderKey = "527", statOrder = { 527 }, level = 68, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PercentageAllAttributesUberShaper2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Attributes", statOrderKey = "527", statOrder = { 527 }, level = 75, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0, }, }, - ["ReducedManaReservedUber1"] = { type = "Suffix", affix = "of Shaping", "(3-5)% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 82, group = "ReducedManaReservationsCost", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["AreaOfEffectUber1_"] = { type = "Prefix", affix = "Eldritch", "(7-9)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 800, 800, 800, 0, }, }, - ["AreaOfEffectUber2"] = { type = "Prefix", affix = "Eldritch", "(10-12)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 75, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 600, 600, 600, 0, }, }, - ["AreaOfEffectUber3_"] = { type = "Prefix", affix = "Eldritch", "(13-15)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 82, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 400, 400, 400, 0, }, }, - ["AdditionalPierceUber1"] = { type = "Prefix", affix = "Eldritch", "Projectiles Pierce an additional Target", statOrderKey = "1064", statOrder = { 1064 }, level = 68, group = "Pierce", weightKey = { "amulet_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0, }, }, - ["ReducedPhysicalDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% additional Physical Damage Reduction", statOrderKey = "1519", statOrder = { 1519 }, level = 83, group = "ReducedPhysicalDamageTaken", weightKey = { "amulet_elder", "shield_elder", "default", }, weightVal = { 800, 800, 0, }, }, - ["ItemFoundQuantityIncreaseUber1"] = { type = "Suffix", affix = "of Shaping", "(4-7)% increased Quantity of Items found", statOrderKey = "892", statOrder = { 892 }, level = 75, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ItemFoundQuantityIncreaseUber2"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Quantity of Items found", statOrderKey = "892", statOrder = { 892 }, level = 85, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAddedAsFireAmuletUber1"] = { type = "Prefix", affix = "Eldritch", "Gain (8-11)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAddedAsFireAmuletUber2"] = { type = "Prefix", affix = "Eldritch", "Gain (12-15)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAddedAsColdAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAddedAsColdAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAddedAsLightningAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAddedAsLightningAmuletUber2_"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedAttackSpeedAmuletUber1"] = { type = "Suffix", affix = "of the Elder", "(7-13)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "amulet_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["NonChaosAddedAsChaosUber1"] = { type = "Prefix", affix = "Eldritch", "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "5994", statOrder = { 5994 }, level = 81, group = "NonChaosAddedAsChaos", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["PowerFrenzyOrEnduranceChargeOnKillUber1_"] = { type = "Suffix", affix = "of Shaping", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2788", statOrder = { 2788 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PowerFrenzyOrEnduranceChargeOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2788", statOrder = { 2788 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumZombiesUber1"] = { type = "Prefix", affix = "Eldritch", "+1 to maximum number of Raised Zombies", statOrderKey = "1412", statOrder = { 1412 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumSkeletonsUber1"] = { type = "Prefix", affix = "Eldritch", "+1 to maximum number of Skeletons", statOrderKey = "1414", statOrder = { 1414 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumBlockChanceUber1"] = { type = "Suffix", affix = "of Shaping", "+2% to maximum Chance to Block Attack Damage", statOrderKey = "1248", statOrder = { 1248 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumLifeLeechRateUber1"] = { type = "Prefix", affix = "Eldritch", "(180-300)% increased Maximum total Recovery per second from Life Leech", statOrderKey = "1009", statOrder = { 1009 }, level = 68, group = "MaximumLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0, }, }, - ["MaximumLifeLeechRateUpdatedUber1"] = { type = "Prefix", affix = "Eldritch", "(15-25)% increased Maximum total Recovery per second from Life Leech", statOrderKey = "1008", statOrder = { 1008 }, level = 68, group = "MaximumLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["ElementalPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (4-7)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ElementalPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (8-10)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0, }, }, - ["DamagePer15StrengthUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Damage per 15 Strength", statOrderKey = "4214", statOrder = { 4214 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0, }, }, - ["DamagePer15DexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Dexterity", statOrderKey = "4212", statOrder = { 4212 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["DamagePer15IntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Intelligence", statOrderKey = "4213", statOrder = { 4213 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ReducedCurseEffectUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% reduced Effect of Curses on you", statOrderKey = "1424", statOrder = { 1424 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ReducedCurseEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% reduced Effect of Curses on you", statOrderKey = "1424", statOrder = { 1424 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MeleeDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 68, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["MeleeDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 75, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["MeleeDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 83, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ProjectileAttackDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ProjectileAttackDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ProjectileAttackDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 84, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["SpellDamageRingUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 68, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageRingUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 75, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageRingUber3__"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 82, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_caster_mod", }, }, - ["ReducedElementalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrderKey = "4328", statOrder = { 4328 }, level = 68, group = "ReflectedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ReducedElementalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrderKey = "4328", statOrder = { 4328 }, level = 75, group = "ReflectedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ReducedPhysicalReflectTakenRingUber1"] = { type = "Prefix", affix = "Eldritch", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrderKey = "6076", statOrder = { 6076 }, level = 68, group = "ReflectedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["ReducedPhysicalReflectTakenRingUber2"] = { type = "Prefix", affix = "Eldritch", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrderKey = "6076", statOrder = { 6076 }, level = 75, group = "ReflectedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["CriticalStrikeChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["CriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["CriticalStrikeChanceUber3_"] = { type = "Suffix", affix = "of Shaping", "(21-25)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 80, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["CriticalStrikeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["CriticalStrikeMultiplierUber2_"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["CriticalStrikeMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "+(17-20)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["AddedFireDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks", statOrderKey = "698", statOrder = { 698 }, level = 68, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 400, 0, }, }, - ["AddedFireDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks", statOrderKey = "698", statOrder = { 698 }, level = 75, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 400, 0, }, }, - ["AddedColdDamageToSpellsAndAttacksUber1__"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks", statOrderKey = "699", statOrder = { 699 }, level = 68, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0, }, }, - ["AddedColdDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks", statOrderKey = "699", statOrder = { 699 }, level = 75, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0, }, }, - ["AddedLightningDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks", statOrderKey = "730", statOrder = { 730 }, level = 68, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0, }, }, - ["AddedLightningDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks", statOrderKey = "730", statOrder = { 730 }, level = 75, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0, }, }, - ["IncreasedExperienceGainUber1"] = { type = "Prefix", affix = "The Shaper's", "(2-3)% increased Experience gain", statOrderKey = "902", statOrder = { 902 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 50, 0, }, }, - ["LifeGainPerTargetUber1"] = { type = "Prefix", affix = "Eldritch", "+(10-15) Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 68, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["LifeGainPerTargetUber2"] = { type = "Prefix", affix = "Eldritch", "+(16-20) Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 75, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, tags = { "has_attack_mod", }, }, - ["ManaGainPerTargetUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "1021", statOrder = { 1021 }, level = 68, group = "ManaGainPerTarget", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["ManaGainPerTargetUberElder1"] = { type = "Prefix", affix = "Eldritch", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "1021", statOrder = { 1021 }, level = 68, group = "ManaGainPerTarget", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["LifeGainedOnSpellHitUber1"] = { type = "Prefix", affix = "The Shaper's", "+(8-12) Life gained for each Enemy hit by your Spells", statOrderKey = "1016", statOrder = { 1016 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["LifeGainedOnSpellHitUber2"] = { type = "Prefix", affix = "The Shaper's", "+(13-15) Life gained for each Enemy hit by your Spells", statOrderKey = "1016", statOrder = { 1016 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["ManaGainedOnSpellHitUber1_"] = { type = "Prefix", affix = "The Shaper's", "+(2-3) Mana gained for each Enemy Hit by your Spells", statOrderKey = "5283", statOrder = { 5283 }, level = 68, group = "ManaGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["IncreasedAccuracyPercentUber1_"] = { type = "Suffix", affix = "of the Elder", "(6-10)% increased Global Accuracy Rating", statOrderKey = "755", statOrder = { 755 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["IncreasedAccuracyPercentUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Global Accuracy Rating", statOrderKey = "755", statOrder = { 755 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["IncreasedAccuracyPercentUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Global Accuracy Rating", statOrderKey = "755", statOrder = { 755 }, level = 82, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["CurseOnHitAssassinsMarkUber1"] = { type = "Suffix", affix = "of Shaping", "Curse Enemies with Level 8 Assassin's Mark on Hit", statOrderKey = "1720", statOrder = { 1720 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_shaper", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitAssassinsMarkUber2"] = { type = "Suffix", affix = "of Shaping", "Curse Enemies with Level 12 Assassin's Mark on Hit", statOrderKey = "1720", statOrder = { 1720 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_shaper", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitPoachersMarkUber1"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 8 Poacher's Mark on Hit", statOrderKey = "1727", statOrder = { 1727 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitPoachersMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 12 Poacher's Mark on Hit", statOrderKey = "1727", statOrder = { 1727 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitWarlordsMarkUber1_"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 8 Warlord's Mark on Hit", statOrderKey = "1729", statOrder = { 1729 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitWarlordsMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 12 Warlord's Mark on Hit", statOrderKey = "1729", statOrder = { 1729 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0, }, }, - ["GrantsHeraldOfAshSkillUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Herald of Ash Skill", statOrderKey = "347", statOrder = { 347 }, level = 68, group = "GrantedSkill", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["GrantsHeraldOfIceSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Ice Skill", statOrderKey = "348", statOrder = { 348 }, level = 68, group = "GrantedSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["GrantsHeraldOfThunderSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Thunder Skill", statOrderKey = "349", statOrder = { 349 }, level = 68, group = "GrantedSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["AdditionalChanceToEvadeUber1__"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% chance to Evade Attack Hits", statOrderKey = "4008", statOrder = { 4008 }, level = 68, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["AdditionalChanceToEvadeUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% chance to Evade Attack Hits", statOrderKey = "4008", statOrder = { 4008 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0, }, }, - ["ChanceToIgniteAddedDamageUber1"] = { type = "Prefix", affix = "Eldritch", "(4-6)% chance to Ignite", "Adds (9-12) to (27-30) Fire Damage against Ignited Enemies", statOrderKey = "1282,4544", statOrder = { 1282, 4544 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToIgniteAddedDamageUber2__"] = { type = "Prefix", affix = "Eldritch", "(7-10)% chance to Ignite", "Adds (13-16) to (33-36) Fire Damage against Ignited Enemies", statOrderKey = "1282,4544", statOrder = { 1282, 4544 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToFreezeAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to Freeze", "Adds (9-12) to (27-30) Cold Damage against Chilled or Frozen Enemies", statOrderKey = "1285,4543", statOrder = { 1285, 4543 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToFreezeAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to Freeze", "Adds (13-16) to (33-36) Cold Damage against Chilled or Frozen Enemies", statOrderKey = "1285,4543", statOrder = { 1285, 4543 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToShockAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to Shock", "Adds (3-7) to (34-38) Lightning Damage against Shocked Enemies", statOrderKey = "1289,4546", statOrder = { 1289, 4546 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToShockAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to Shock", "Adds (6-10) to (41-45) Lightning Damage against Shocked Enemies", statOrderKey = "1289,4546", statOrder = { 1289, 4546 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAttackDamageTakenUber1_"] = { type = "Suffix", affix = "of Shaping", "-(35-25) Physical Damage taken from Attack Hits", statOrderKey = "1482", statOrder = { 1482 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAttackDamageTakenUber2"] = { type = "Suffix", affix = "of Shaping", "-(45-36) Physical Damage taken from Attack Hits", statOrderKey = "1482", statOrder = { 1482 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedCooldownRecoveryUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Speed", statOrderKey = "3784", statOrder = { 3784 }, level = 75, group = "CooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["IncreasedCooldownRecoveryUber2_"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Cooldown Recovery Speed", statOrderKey = "3784", statOrder = { 3784 }, level = 84, group = "CooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumLifeIncreasePercentBeltUber1"] = { type = "Prefix", affix = "Eldritch", "(4-7)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, - ["MaximumLifeIncreasePercentBeltUber2"] = { type = "Prefix", affix = "Eldritch", "(8-10)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, - ["GlobalEnergyShieldPercentBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-7)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 68, group = "EnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0, }, }, - ["GlobalEnergyShieldPercentBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(8-10)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 75, group = "EnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0, }, }, - ["FlaskEffectUber1"] = { type = "Prefix", affix = "Eldritch", "Flasks applied to you have (4-7)% increased Effect", statOrderKey = "1921", statOrder = { 1921 }, level = 75, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, - ["FlaskEffectUber2"] = { type = "Prefix", affix = "Eldritch", "Flasks applied to you have (8-10)% increased Effect", statOrderKey = "1921", statOrder = { 1921 }, level = 81, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, - ["AllResistancesBeltUber1"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 68, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["AllResistancesBeltUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-18)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 75, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["ReducedCriticalStrikeDamageTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrderKey = "833", statOrder = { 833 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ReducedCriticalStrikeDamageTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrderKey = "833", statOrder = { 833 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["LifeRecoveryRateUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% increased Life Recovery rate", statOrderKey = "2153", statOrder = { 2153 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["LifeRecoveryRateUber2_"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Life Recovery rate", statOrderKey = "2153", statOrder = { 2153 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["EnergyShieldRecoveryRateUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Energy Shield Recovery rate", statOrderKey = "2155", statOrder = { 2155 }, level = 68, group = "EnergyShieldRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["EnergyShieldRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Energy Shield Recovery rate", statOrderKey = "2155", statOrder = { 2155 }, level = 75, group = "EnergyShieldRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ManaRecoveryRateUber1_"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Mana Recovery rate", statOrderKey = "2154", statOrder = { 2154 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ManaRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Mana Recovery rate", statOrderKey = "2154", statOrder = { 2154 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["FlaskChanceToNotConsumeChargesUber1_"] = { type = "Prefix", affix = "Eldritch", "(6-10)% chance for Flasks you use to not consume Charges", statOrderKey = "3403", statOrder = { 3403 }, level = 82, group = "FlaskChargesUsed", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChaosResistanceWhileUsingFlaskUber1"] = { type = "Suffix", affix = "of the Elder", "+(20-25)% to Chaos Resistance during any Flask Effect", statOrderKey = "2482", statOrder = { 2482 }, level = 68, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChaosResistanceWhileUsingFlaskUber2_"] = { type = "Suffix", affix = "of the Elder", "+(26-30)% to Chaos Resistance during any Flask Effect", statOrderKey = "2482", statOrder = { 2482 }, level = 75, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["MovementSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Movement Speed during any Flask Effect", statOrderKey = "2366", statOrder = { 2366 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["FortifyOnMeleeStunUber1"] = { type = "Prefix", affix = "Eldritch", "(8-12)% chance to gain Fortify when you Stun an Enemy with Melee Damage", statOrderKey = "4012", statOrder = { 4012 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["GrantsEnduringCrySkillUber1"] = { type = "Prefix", affix = "Eldritch", "Grants Level 22 Enduring Cry Skill", statOrderKey = "346", statOrder = { 346 }, level = 68, group = "GrantedSkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["GrantsRallyingCrySkillUber1"] = { type = "Prefix", affix = "Eldritch", "Grants Level 22 Rallying Cry Skill", statOrderKey = "354", statOrder = { 354 }, level = 68, group = "GrantedSkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0, }, }, - ["GrantsAbyssalCrySkillUber1"] = { type = "Prefix", affix = "The Shaper's", "Grants Level 22 Abyssal Cry Skill", statOrderKey = "338", statOrder = { 338 }, level = 68, group = "GrantedSkill", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0, }, }, - ["RemoveIgniteOnFlaskUseUber1"] = { type = "Suffix", affix = "of the Elder", "Remove Ignite and Burning when you use a Flask", statOrderKey = "6182", statOrder = { 6182 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, - ["RemoveFreezeOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Chill and Freeze when you use a Flask", statOrderKey = "6180", statOrder = { 6180 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0, }, }, - ["RemoveShockOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Shock when you use a Flask", statOrderKey = "6186", statOrder = { 6186 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0, }, }, - ["AttackSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(8-14)% increased Attack Speed during any Flask Effect", statOrderKey = "2481", statOrder = { 2481 }, level = 68, group = "SpeedDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["CastSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(8-14)% increased Cast Speed during any Flask Effect", statOrderKey = "3971", statOrder = { 3971 }, level = 68, group = "SpeedDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["MeleeDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage during any Flask Effect", statOrderKey = "5850", statOrder = { 5850 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["MeleeDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage during any Flask Effect", statOrderKey = "5850", statOrder = { 5850 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["MeleeDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage during any Flask Effect", statOrderKey = "5850", statOrder = { 5850 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ProjectileAttackDamageDuringFlaskEffectUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "6110", statOrder = { 6110 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ProjectileAttackDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "6110", statOrder = { 6110 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["ProjectileAttackDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "6110", statOrder = { 6110 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["SpellDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage during any Flask Effect", statOrderKey = "6301", statOrder = { 6301 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["SpellDamageDuringFlaskEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage during any Flask Effect", statOrderKey = "6301", statOrder = { 6301 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["SpellDamageDuringFlaskEffectUber3_"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage during any Flask Effect", statOrderKey = "6301", statOrder = { 6301 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0, }, }, - ["PhysicalDamageBeltUber1"] = { type = "Prefix", affix = "Eldritch", "(16-20)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0, }, }, - ["PhysicalDamageBeltUber2"] = { type = "Prefix", affix = "Eldritch", "(21-25)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0, }, }, - ["PhysicalDamageBeltUber3___"] = { type = "Prefix", affix = "Eldritch", "(26-30)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 80, group = "PhysicalDamagePercent", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0, }, }, - ["ElementalDamageBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 68, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0, }, }, - ["ElementalDamageBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(16-20)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 75, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0, }, }, - ["ElementalDamageBeltUber3"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 80, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0, }, }, - ["ArmourDoubleArmourEffectUber1"] = { type = "Prefix", affix = "Eldritch", "(11-20)% chance when Hit for double Armour effect", statOrderKey = "4007", statOrder = { 4007 }, level = 75, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, - ["ArmourDoubleArmourEffectUber2"] = { type = "Prefix", affix = "Eldritch", "(21-30)% chance when Hit for double Armour effect", statOrderKey = "4007", statOrder = { 4007 }, level = 80, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0, }, }, - ["IncreasedEnergyShieldFromBodyArmourUber1_"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Energy Shield from Body Armour", statOrderKey = "5826", statOrder = { 5826 }, level = 75, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0, }, }, - ["IncreasedEnergyShieldFromBodyArmourUber2"] = { type = "Prefix", affix = "The Shaper's", "(26-30)% increased Energy Shield from Body Armour", statOrderKey = "5826", statOrder = { 5826 }, level = 80, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0, }, }, - ["AdditionalArrowUber1__"] = { type = "Prefix", affix = "The Shaper's", "Bow Attacks fire an additional Arrow", statOrderKey = "1067", statOrder = { 1067 }, level = 80, group = "AdditionalArrows", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 400, 0, }, }, - ["PoisonOnHitQuiverUber1_"] = { type = "Suffix", affix = "of the Elder", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrderKey = "2353,2361", statOrder = { 2353, 2361 }, level = 68, group = "PoisonDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0, }, }, - ["PoisonOnHitQuiverUber2"] = { type = "Suffix", affix = "of the Elder", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrderKey = "2353,2361", statOrder = { 2353, 2361 }, level = 75, group = "PoisonDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0, }, }, - ["BleedOnHitQuiverUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 68, group = "BleedingDamage", weightKey = { "no_attack_mods", "quiver_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["BleedOnHitQuiverUber2_"] = { type = "Suffix", affix = "of the Elder", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 75, group = "BleedingDamage", weightKey = { "no_attack_mods", "quiver_elder", "default", }, weightVal = { 0, 800, 0, }, }, - ["MaimOnHitQuiverUber1"] = { type = "Suffix", affix = "of Shaping", "Attacks have 15% chance to Maim on Hit", statOrderKey = "5271", statOrder = { 5271 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaimOnHitQuiverUber2"] = { type = "Suffix", affix = "of Shaping", "Attacks have 20% chance to Maim on Hit", statOrderKey = "5271", statOrder = { 5271 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChancetoGainPhasingOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChancetoGainPhasingOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 75, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChancetoGainPhasingOnKillUber3_"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0, }, }, - ["AddedColdDamagePerFrenzyChargeUber1"] = { type = "Prefix", affix = "Eldritch", "3 to 6 Cold Damage per Frenzy Charge", statOrderKey = "3447", statOrder = { 3447 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0, }, }, - ["PhysicalAddedAsColdQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, - ["PhysicalAddedAsColdQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MovementVelocityQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "(3-6)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MovementVelocityQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0, }, }, - ["FrenzyChargeOnHittingRareOrUniqueUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrderKey = "4498", statOrder = { 4498 }, level = 75, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0, }, }, - ["MaximumFireResistanceUber1"] = { type = "Prefix", affix = "Eldritch", "+1% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 75, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumFireResistanceUber2"] = { type = "Prefix", affix = "Eldritch", "+2% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 80, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumFireResistanceUber3_"] = { type = "Prefix", affix = "Eldritch", "+3% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 86, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumColdResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 75, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumColdResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 80, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumColdResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 86, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumLightningResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumLightningResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 80, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumLightningResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 86, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumAllResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to all maximum Resistances", statOrderKey = "939", statOrder = { 939 }, level = 80, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumAllResistanceUber2__"] = { type = "Prefix", affix = "The Shaper's", "+2% to all maximum Resistances", statOrderKey = "939", statOrder = { 939 }, level = 85, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["SupportedByCastOnDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 5 Cast when Damage Taken", statOrderKey = "74", statOrder = { 74 }, level = 68, group = "SupportedByTrigger", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumLifeIncreasePercentShieldUber1"] = { type = "Prefix", affix = "Eldritch", "(3-6)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["MaximumLifeIncreasePercentShieldUber2"] = { type = "Prefix", affix = "Eldritch", "(7-10)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["DisplaySocketedGemsGetReducedReservationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 10% reduced Mana Reservation", statOrderKey = "244", statOrder = { 244 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["DisplaySocketedGemsGetReducedReservationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 15% reduced Mana Reservation", statOrderKey = "244", statOrder = { 244 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["BlockAppliesToSpellsShieldUber1_"] = { type = "Suffix", affix = "of Shaping", "(30-40)% Chance to Block Spell Damage", statOrderKey = "505", statOrder = { 505 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0, }, }, - ["BlockAppliesToSpellsShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(41-50)% Chance to Block Spell Damage", statOrderKey = "505", statOrder = { 505 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0, }, }, - ["SpellBlockOnShieldUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 68, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["SpellBlockOnShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 75, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["GainArmourIfBlockedRecentlyUber1"] = { type = "Prefix", affix = "Eldritch", "+(500-650) Armour if you've Blocked Recently", statOrderKey = "3553", statOrder = { 3553 }, level = 68, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["GainArmourIfBlockedRecentlyUber2"] = { type = "Prefix", affix = "Eldritch", "+(651-800) Armour if you've Blocked Recently", statOrderKey = "3553", statOrder = { 3553 }, level = 75, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["AdditionalBlockWith5NearbyEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrderKey = "3573", statOrder = { 3573 }, level = 68, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["AdditionalBlockWith5NearbyEnemiesUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrderKey = "3573", statOrder = { 3573 }, level = 75, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["GainRandomChargeOnBlockUber1__"] = { type = "Suffix", affix = "of Shaping", "Gain an Endurance, Frenzy or Power charge when you Block", statOrderKey = "4523", statOrder = { 4523 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToDodgeIfBlockedRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(3-5)% chance to Dodge Attack Hits if you have Blocked Recently", statOrderKey = "4286", statOrder = { 4286 }, level = 68, group = "ChanceToDodgeIfBlockedRecently", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["DamagePerBlockChanceUber1_"] = { type = "Prefix", affix = "Eldritch", "1% increased Damage per 1% Chance to Block Attack Damage", statOrderKey = "4215", statOrder = { 4215 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToChillAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrderKey = "4064", statOrder = { 4064 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToChillAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrderKey = "4064", statOrder = { 4064 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToShockAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrderKey = "6216", statOrder = { 6216 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["ChanceToShockAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrderKey = "6216", statOrder = { 6216 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["RecoverLifePercentOnBlockUber1_"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Life when you Block", statOrderKey = "2243", statOrder = { 2243 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["RecoverManaPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of your maximum Mana when you Block", statOrderKey = "5289", statOrder = { 5289 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["RecoverEnergyShieldPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Energy Shield when you Block", statOrderKey = "1672", statOrder = { 1672 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["MaximumTotemUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to maximum number of Summoned Totems", statOrderKey = "1502", statOrder = { 1502 }, level = 70, group = "AdditionalTotems", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0, }, }, - ["SupportedByEnduranceChargeOnStunWeaponUber1"] = { type = "Prefix", affix = "", "Socketed Gems are Supported by Level 10 Endurance Charge on Melee Stun", statOrderKey = "242", statOrder = { 242 }, level = 68, group = "WeaponSupportUber", 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, }, }, - ["SupportedByOnslaughtWeaponUber1"] = { type = "Prefix", affix = "", "Socketed Gems are Supported by Level 10 Onslaught", statOrderKey = "118", statOrder = { 118 }, level = 68, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "bow_elder", "default", }, weightVal = { 0, 400, 400, 400, 0, }, }, - ["SupportedByPowerChargeOnCritWeaponUber1"] = { type = "Prefix", affix = "", "Socketed Gems are Supported by Level 10 Power Charge On Critical Strike", statOrderKey = "124", statOrder = { 124 }, level = 68, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0, }, }, - ["SupportedByFortifyWeaponUber1"] = { type = "Prefix", affix = "", "Socketed Gems are Supported by Level 1 Fortify", statOrderKey = "217", statOrder = { 217 }, level = 68, group = "WeaponSupportUber", 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, }, }, - ["SupportedByArcaneSurgeWeaponUber1"] = { type = "Prefix", affix = "", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrderKey = "67", statOrder = { 67 }, level = 68, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "staff_shaper", "default", }, weightVal = { 0, 400, 0, }, }, - ["SupportedByInspirationWeaponUber1"] = { type = "Prefix", affix = "", "Socketed Gems are Supported by Level 1 Inspiration", statOrderKey = "215", statOrder = { 215 }, level = 68, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0, }, }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Melee Physical Damage", "(101-115)% increased Physical Damage", statOrderKey = "199,570", statOrder = { 199, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Melee Physical Damage", "(116-126)% increased Physical Damage", statOrderKey = "199,570", statOrder = { 199, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Melee Physical Damage", "(127-134)% increased Physical Damage", statOrderKey = "199,570", statOrder = { 199, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Brutality", "(101-115)% increased Physical Damage", statOrderKey = "73,570", statOrder = { 73, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Brutality", "(116-126)% increased Physical Damage", statOrderKey = "73,570", statOrder = { 73, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Brutality", "(127-134)% increased Physical Damage", statOrderKey = "73,570", statOrder = { 73, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Added Fire Damage", "(101-115)% increased Physical Damage", statOrderKey = "193,570", statOrder = { 193, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Added Fire Damage", "(116-126)% increased Physical Damage", statOrderKey = "193,570", statOrder = { 193, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 0, 200, 200, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Added Fire Damage", "(127-134)% increased Physical Damage", statOrderKey = "193,570", statOrder = { 193, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 0, 100, 100, 100, 100, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Ruthless", "(101-115)% increased Physical Damage", statOrderKey = "133,570", statOrder = { 133, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber2__"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Ruthless", "(116-126)% increased Physical Damage", statOrderKey = "133,570", statOrder = { 133, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Ruthless", "(127-134)% increased Physical Damage", statOrderKey = "133,570", statOrder = { 133, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Onslaught", "(101-115)% increased Physical Damage", statOrderKey = "118,570", statOrder = { 118, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Onslaught", "(116-126)% increased Physical Damage", statOrderKey = "118,570", statOrder = { 118, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Onslaught", "(127-134)% increased Physical Damage", statOrderKey = "118,570", statOrder = { 118, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun", "(101-115)% increased Physical Damage", statOrderKey = "242,570", statOrder = { 242, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun", "(116-126)% increased Physical Damage", statOrderKey = "242,570", statOrder = { 242, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", "(127-134)% increased Physical Damage", statOrderKey = "242,570", statOrder = { 242, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Fortify", "(101-115)% increased Physical Damage", statOrderKey = "217,570", statOrder = { 217, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Fortify", "(116-126)% increased Physical Damage", statOrderKey = "217,570", statOrder = { 217, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Fortify", "(127-134)% increased Physical Damage", statOrderKey = "217,570", statOrder = { 217, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(101-115)% increased Physical Damage", statOrderKey = "124,570", statOrder = { 124, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(116-126)% increased Physical Damage", statOrderKey = "124,570", statOrder = { 124, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(127-134)% increased Physical Damage", statOrderKey = "124,570", statOrder = { 124, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Iron Grip", "(101-115)% increased Physical Damage", statOrderKey = "106,570", statOrder = { 106, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Iron Grip", "(116-126)% increased Physical Damage", statOrderKey = "106,570", statOrder = { 106, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Iron Grip", "(127-134)% increased Physical Damage", statOrderKey = "106,570", statOrder = { 106, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 16 Faster Projectiles", "(101-115)% increased Physical Damage", statOrderKey = "209,570", statOrder = { 209, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 18 Faster Projectiles", "(116-126)% increased Physical Damage", statOrderKey = "209,570", statOrder = { 209, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 20 Faster Projectiles", "(127-134)% increased Physical Damage", statOrderKey = "209,570", statOrder = { 209, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Vicious Projectiles", "(101-115)% increased Physical Damage", statOrderKey = "120,570", statOrder = { 120, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Vicious Projectiles", "(116-126)% increased Physical Damage", statOrderKey = "120,570", statOrder = { 120, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Vicious Projectiles", "(127-134)% increased Physical Damage", statOrderKey = "120,570", statOrder = { 120, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["SupportedByMeleeSplashDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Melee Splash", "(23-27)% increased Area Damage", statOrderKey = "202,1291", statOrder = { 202, 1291 }, level = 68, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["SupportedByMeleeSplashDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Melee Splash", "(28-32)% increased Area Damage", statOrderKey = "202,1291", statOrder = { 202, 1291 }, level = 75, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["SupportedByMeleeSplashDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Melee Splash", "(33-37)% increased Area Damage", statOrderKey = "202,1291", statOrder = { 202, 1291 }, level = 80, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["SupportedBySpiritStrikeAreaUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Ancestral Call", "(5-8)% increased Area of Effect", statOrderKey = "140,1140", statOrder = { 140, 1140 }, level = 68, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["SupportedBySpiritStrikeAreaUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Ancestral Call", "(9-12)% increased Area of Effect", statOrderKey = "140,1140", statOrder = { 140, 1140 }, level = 75, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["SupportedBySpiritStrikeAreaUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Ancestral Call", "(13-15)% increased Area of Effect", statOrderKey = "140,1140", statOrder = { 140, 1140 }, level = 80, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedMultistrikeUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Multistrike", "(17-19)% increased Attack Speed", statOrderKey = "208,734", statOrder = { 208, 734 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedMultistrikeUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Multistrike", "(20-21)% increased Attack Speed", statOrderKey = "208,734", statOrder = { 208, 734 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(17-19)% increased Attack Speed", statOrderKey = "200,734", statOrder = { 200, 734 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedFasterAttacksUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(20-21)% increased Attack Speed", statOrderKey = "200,734", statOrder = { 200, 734 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedOnslaughtUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Onslaught", "(8-10)% increased Attack Speed", statOrderKey = "118,734", statOrder = { 118, 734 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedOnslaughtUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Onslaught", "(11-12)% increased Attack Speed", statOrderKey = "118,734", statOrder = { 118, 734 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(8-10)% increased Attack Speed", statOrderKey = "200,734", statOrder = { 200, 734 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedFasterAttacksUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(11-12)% increased Attack Speed", statOrderKey = "200,734", statOrder = { 200, 734 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(17-19)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrderKey = "734,3992", statOrder = { 734, 3992 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(20-21)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrderKey = "734,3992", statOrder = { 734, 3992 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(17-19)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "734,3733", statOrder = { 734, 3733 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(20-21)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "734,3733", statOrder = { 734, 3733 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrderKey = "734,3992", statOrder = { 734, 3992 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(11-12)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrderKey = "734,3992", statOrder = { 734, 3992 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(8-10)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "734,3733", statOrder = { 734, 3733 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(11-12)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "734,3733", statOrder = { 734, 3733 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["CriticalStrikeChanceSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(22-25)% increased Critical Strike Chance", statOrderKey = "103,786", statOrder = { 103, 786 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "grants_crit_chance_support", }, }, - ["CriticalStrikeChanceSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(26-29)% increased Critical Strike Chance", statOrderKey = "103,786", statOrder = { 103, 786 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "grants_crit_chance_support", }, }, - ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "(22-25)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "786,4138", statOrder = { 786, 4138 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(26-29)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "786,4138", statOrder = { 786, 4138 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["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", statOrderKey = "786,4162", statOrder = { 786, 4162 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["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", statOrderKey = "786,4162", statOrder = { 786, 4162 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["CriticalMultiplierSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Increased Critical Damage", "+(22-25)% to Global Critical Strike Multiplier", statOrderKey = "211,810", statOrder = { 211, 810 }, level = 68, group = "CriticalStrikeMultiplier", 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, }, }, - ["CriticalMultiplierSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Increased Critical Damage", "+(26-29)% to Global Critical Strike Multiplier", statOrderKey = "211,810", statOrder = { 211, 810 }, level = 75, group = "CriticalStrikeMultiplier", 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, }, }, - ["CriticalMultiplierSupportedTwoHandedUber1"] = { type = "Suffix", affix = "of Shaping", "+(22-25)% to Global Critical Strike Multiplier", "(5-8)% chance to gain a Power Charge on Critical Strike", statOrderKey = "810,1093", statOrder = { 810, 1093 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0, }, }, - ["CriticalMultiplierSupportedTwoHandedUber2"] = { type = "Suffix", affix = "of Shaping", "+(26-29)% to Global Critical Strike Multiplier", "(9-10)% chance to gain a Power Charge on Critical Strike", statOrderKey = "810,1093", statOrder = { 810, 1093 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0, }, }, - ["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", statOrderKey = "213,4319", statOrder = { 213, 4319 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["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", statOrderKey = "213,4319", statOrder = { 213, 4319 }, level = 75, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["ChanceToMaimUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Maim", "15% chance to Maim on Hit", statOrderKey = "111,5158", statOrder = { 111, 5158 }, level = 68, group = "LocalChanceToMaim", weightKey = { "grants_2h_support", "no_attack_mods", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["ChanceToMaimUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Maim", "20% chance to Maim on Hit", statOrderKey = "111,5158", statOrder = { 111, 5158 }, level = 75, group = "LocalChanceToMaim", weightKey = { "grants_2h_support", "no_attack_mods", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", "grants_2h_support", }, }, - ["ChanceToPoisonUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "15% chance to Poison on Hit", statOrderKey = "123,5167", statOrder = { 123, 5167 }, level = 68, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["ChanceToPoisonUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "20% chance to Poison on Hit", statOrderKey = "123,5167", statOrder = { 123, 5167 }, level = 75, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["ChanceToBleedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "10% chance to cause Bleeding on Hit", statOrderKey = "78,1686", statOrder = { 78, 1686 }, level = 68, group = "LocalChanceToBleed", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["ChanceToBleedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "15% chance to cause Bleeding on Hit", statOrderKey = "78,1686", statOrder = { 78, 1686 }, level = 75, group = "LocalChanceToBleed", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["PhysicalAddedAsFireUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsFireUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 80, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsColdUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsColdUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsColdUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 80, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsLightningUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsLightningUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalAddedAsLightningUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 80, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["OnslaugtOnKillUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2570", statOrder = { 2570 }, 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, }, }, - ["OnslaugtOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2570", statOrder = { 2570 }, 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, }, }, - ["OnslaugtOnKillUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2570", statOrder = { 2570 }, 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, }, }, - ["UnholyMightOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2567", statOrder = { 2567 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["UnholyMightOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2567", statOrder = { 2567 }, level = 75, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["UnholyMightOnKillUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2567", statOrder = { 2567 }, level = 84, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["BlindOnHitUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 68, group = "BlindOnHit", weightKey = { "no_attack_mods", "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "quiver_shaper", "axe_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["BlindOnHitUber2"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 75, group = "BlindOnHit", weightKey = { "no_attack_mods", "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "quiver_shaper", "axe_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["BlindOnHitUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 81, group = "BlindOnHit", weightKey = { "no_attack_mods", "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "quiver_shaper", "axe_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["BlindOnHitShaperUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 68, group = "BlindOnHit", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["BlindOnHitShaperUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 75, group = "BlindOnHit", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["BlindOnHitShaperUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 81, group = "BlindOnHit", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["BlockWhileDualWieldingUber1"] = { type = "Suffix", affix = "of Shaping", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["BlockWhileDualWieldingUber2"] = { type = "Suffix", affix = "of Shaping", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, level = 75, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["BlockWhileDualWieldingUber3_"] = { type = "Suffix", affix = "of Shaping", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, level = 80, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["PhysicalDamageWhileDualWieldingUber1"] = { type = "Suffix", affix = "of the Elder", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrderKey = "609", statOrder = { 609 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["PhysicalDamageWhileDualWieldingUber2"] = { type = "Suffix", affix = "of the Elder", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrderKey = "609", statOrder = { 609 }, level = 75, group = "DualWieldingPhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["PhysicalDamageWhileDualWieldingUber3"] = { type = "Suffix", affix = "of the Elder", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrderKey = "609", statOrder = { 609 }, level = 80, group = "DualWieldingPhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["ElementalPenetrationWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (5-6)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 68, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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, 0, 0, }, }, - ["ElementalPenetrationWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (7-8)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 75, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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, 0, 0, }, }, - ["ElementalPenetrationWeaponUber3"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (9-10)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 83, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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, 0, 0, }, }, - ["ElementalPenetrationWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 4% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 68, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "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, }, }, - ["ElementalPenetrationWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 5% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 75, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "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, }, }, - ["ElementalPenetrationWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 6% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 83, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "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, }, }, - ["ElementalPenetrationTwoWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (7-8)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 68, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ElementalPenetrationTwoWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (9-10)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 75, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["ElementalPenetrationTwoWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (11-12)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 83, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0, }, }, - ["WeaponSocketedAttacksDamageFinalUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Attack Damage", statOrderKey = "260", statOrder = { 260 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponSocketedAttacksDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Attack Damage", statOrderKey = "260", statOrder = { 260 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["WeaponSocketedSpellsDamageFinalUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Spell Damage", statOrderKey = "275", statOrder = { 275 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["WeaponSocketedSpellsDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Spell Damage", statOrderKey = "275", statOrder = { 275 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["ChanceForPoisonDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrderKey = "5082", statOrder = { 5082 }, 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 = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, }, - ["ChanceForBleedDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrderKey = "5081", statOrder = { 5081 }, 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 = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, }, - ["PhysicalDamageConvertedToChaosUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1212", statOrder = { 1212 }, 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, }, }, - ["PhysicalDamageConvertedToChaosUber2"] = { type = "Suffix", affix = "of the Elder", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1212", statOrder = { 1212 }, 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, }, }, - ["PhysicalDamageConvertedToChaosUber3"] = { type = "Suffix", affix = "of the Elder", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1212", statOrder = { 1212 }, 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, }, }, - ["AddedFireDamagePerStrengthUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "3721", statOrder = { 3721 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["AddedFireDamagePerStrengthTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "3721", statOrder = { 3721 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["AddedColdDamagePerDexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "3751", statOrder = { 3751 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "bow_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["AddedColdDamagePerDexterityTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "3751", statOrder = { 3751 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "default", }, weightVal = { 0, 0, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["AddedLightningDamagePerIntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "3723", statOrder = { 3723 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["AddedLightningDamagePerIntelligenceTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "3723", statOrder = { 3723 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["SupportedByCastOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Cast On Critical Strike", statOrderKey = "203", statOrder = { 203 }, level = 68, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0, }, }, - ["SupportedByCastOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Cast On Critical Strike", statOrderKey = "203", statOrder = { 203 }, level = 75, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0, }, }, - ["SupportedByCastOnMeleeKillUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast On Melee Kill", statOrderKey = "75", statOrder = { 75 }, level = 68, group = "WeaponSupportUber", 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, }, }, - ["SupportedByCastOnMeleeKillUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast On Melee Kill", statOrderKey = "75", statOrder = { 75 }, level = 75, group = "WeaponSupportUber", 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, }, }, - ["SupportedByCastWhileChannellingUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast While Channelling", statOrderKey = "76", statOrder = { 76 }, level = 68, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0, }, }, - ["SupportedByCastWhileChannellingUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast While Channelling", statOrderKey = "76", statOrder = { 76 }, level = 75, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0, }, }, - ["CullingStrikeUber1"] = { type = "Suffix", affix = "of the Elder", "Culling Strike", statOrderKey = "1295", statOrder = { 1295 }, 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, }, }, - ["MeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 75, group = "LocalWeaponRangeUber", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["MeleeWeaponRangeUber2"] = { type = "Suffix", affix = "of the Elder", "+2 to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 85, group = "LocalWeaponRangeUber", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["AreaOfEffectTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, 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, }, }, - ["AreaOfEffectTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, 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, }, }, - ["AreaOfEffectTwoHandedWeaponUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, 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, }, }, - ["MovementVelocityTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "(3-6)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, 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, }, }, - ["MovementVelocityTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, 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, }, }, - ["AdditionalArrowsUber1"] = { type = "Suffix", affix = "of the Elder", "Skills fire an additional Projectile", statOrderKey = "1066", statOrder = { 1066 }, 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, }, }, - ["AdditionalPierceRangedUber1"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce an additional Target", statOrderKey = "1064", statOrder = { 1064 }, level = 68, group = "Pierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["AdditionalPierceRangedUber2"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce 2 additional Targets", statOrderKey = "1064", statOrder = { 1064 }, level = 75, group = "Pierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["SpellDamageOnWeaponControlledDestructionUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Controlled Destruction", "(45-52)% increased Spell Damage", statOrderKey = "241,562", statOrder = { 241, 562 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 400, 400, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponControlledDestructionUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Controlled Destruction", "(53-56)% increased Spell Damage", statOrderKey = "241,562", statOrder = { 241, 562 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 200, 200, 200, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponControlledDestructionUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Controlled Destruction", "(57-60)% increased Spell Damage", statOrderKey = "241,562", statOrder = { 241, 562 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 100, 100, 100, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponEfficacyUber1_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Efficacy", "(45-52)% increased Spell Damage", statOrderKey = "86,562", statOrder = { 86, 562 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 0, 400, 400, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponEfficacyUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Efficacy", "(53-56)% increased Spell Damage", statOrderKey = "86,562", statOrder = { 86, 562 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 0, 200, 200, 200, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponEfficacyUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Efficacy", "(57-60)% increased Spell Damage", statOrderKey = "86,562", statOrder = { 86, 562 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 0, 100, 100, 100, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageOnWeaponArcaneSurgeUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Arcane Surge", "(67-78)% increased Spell Damage", statOrderKey = "67,562", statOrder = { 67, 562 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_caster_mod", "grants_2h_support", }, }, - ["SpellDamageOnWeaponArcaneSurgeUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Arcane Surge", "(79-83)% increased Spell Damage", statOrderKey = "67,562", statOrder = { 67, 562 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_caster_mod", "grants_2h_support", }, }, - ["SpellDamageOnWeaponArcaneSurgeUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Arcane Surge", "(84-87)% increased Spell Damage", statOrderKey = "67,562", statOrder = { 67, 562 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_caster_mod", "grants_2h_support", }, }, - ["SpellDamageOnWeaponReducedManaUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Inspiration", "(67-78)% increased Spell Damage", statOrderKey = "215,562", statOrder = { 215, 562 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_caster_mod", "grants_2h_support", }, }, - ["SpellDamageOnWeaponReducedManaUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Inspiration", "(79-83)% increased Spell Damage", statOrderKey = "215,562", statOrder = { 215, 562 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_caster_mod", "grants_2h_support", }, }, - ["SpellDamageOnWeaponReducedManaUber3__"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Inspiration", "(84-87)% increased Spell Damage", statOrderKey = "215,562", statOrder = { 215, 562 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_caster_mod", "grants_2h_support", }, }, - ["SpellDamageOnWeaponPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(67-78)% increased Spell Damage", statOrderKey = "124,562", statOrder = { 124, 562 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_caster_mod", "grants_2h_support", }, }, - ["SpellDamageOnWeaponPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(79-83)% increased Spell Damage", statOrderKey = "124,562", statOrder = { 124, 562 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_caster_mod", "grants_2h_support", }, }, - ["SpellDamageOnWeaponPowerChargeOnCritUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(84-87)% increased Spell Damage", statOrderKey = "124,562", statOrder = { 124, 562 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, }, tags = { "has_caster_mod", "grants_2h_support", }, }, - ["ElementalDamagePrefixOnWeaponElementalFocusUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Elemental Focus", "(45-52)% increased Elemental Damage", statOrderKey = "87,1240", statOrder = { 87, 1240 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 0, 400, 0, }, }, - ["ElementalDamagePrefixOnWeaponElementalFocusUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Elemental Focus", "(53-56)% increased Elemental Damage", statOrderKey = "87,1240", statOrder = { 87, 1240 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 0, 200, 0, }, }, - ["ElementalDamagePrefixOnWeaponElementalFocusUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Elemental Focus", "(57-60)% increased Elemental Damage", statOrderKey = "87,1240", statOrder = { 87, 1240 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 0, 100, 0, }, }, - ["FireDamagePrefixOnWeaponFirePenetrationUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Fire Penetration", "(45-52)% increased Fire Damage", statOrderKey = "94,686", statOrder = { 94, 686 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_elder", "wand_elder", "default", }, weightVal = { 0, 0, 400, 400, 0, }, }, - ["FireDamagePrefixOnWeaponFirePenetrationUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Fire Penetration", "(53-56)% increased Fire Damage", statOrderKey = "94,686", statOrder = { 94, 686 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_elder", "wand_elder", "default", }, weightVal = { 0, 0, 200, 200, 0, }, }, - ["FireDamagePrefixOnWeaponFirePenetrationUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Fire Penetration", "(57-60)% increased Fire Damage", statOrderKey = "94,686", statOrder = { 94, 686 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_elder", "wand_elder", "default", }, weightVal = { 0, 0, 100, 100, 0, }, }, - ["ColdDamagePrefixOnWeaponColdPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Cold Penetration", "(45-52)% increased Cold Damage", statOrderKey = "232,693", statOrder = { 232, 693 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 400, 400, 0, }, }, - ["ColdDamagePrefixOnWeaponColdPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cold Penetration", "(53-56)% increased Cold Damage", statOrderKey = "232,693", statOrder = { 232, 693 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 200, 200, 0, }, }, - ["ColdDamagePrefixOnWeaponColdPenetrationUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cold Penetration", "(57-60)% increased Cold Damage", statOrderKey = "232,693", statOrder = { 232, 693 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 100, 100, 0, }, }, - ["LightningDamagePrefixOnWeaponLightningPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Lightning Penetration", "(45-52)% increased Lightning Damage", statOrderKey = "110,702", statOrder = { 110, 702 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 400, 400, 400, 0, }, }, - ["LightningDamagePrefixOnWeaponLightningPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Lightning Penetration", "(53-56)% increased Lightning Damage", statOrderKey = "110,702", statOrder = { 110, 702 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 0, }, }, - ["LightningDamagePrefixOnWeaponLightningPenetrationUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Lightning Penetration", "(57-60)% increased Lightning Damage", statOrderKey = "110,702", statOrder = { 110, 702 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, }, - ["IncreasedCastSpeedSpellEchoUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Echo", "(15-17)% increased Cast Speed", statOrderKey = "117,767", statOrder = { 117, 767 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedSpellEchoUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Echo", "(18-20)% increased Cast Speed", statOrderKey = "117,767", statOrder = { 117, 767 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedFasterCastingUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(15-17)% increased Cast Speed", statOrderKey = "220,767", statOrder = { 220, 767 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedFasterCastingUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(18-20)% increased Cast Speed", statOrderKey = "220,767", statOrder = { 220, 767 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber1"] = { type = "Suffix", affix = "of the Elder", "(15-17)% increased Cast Speed", "(15-25)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "767,1151", statOrder = { 767, 1151 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber2"] = { type = "Suffix", affix = "of the Elder", "(18-20)% increased Cast Speed", "(26-35)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "767,1151", statOrder = { 767, 1151 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(15-17)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrderKey = "767,3972", statOrder = { 767, 3972 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["IncreasedCastSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(18-20)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrderKey = "767,3972", statOrder = { 767, 3972 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["CriticalStrikeChanceSpellsSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(60-74)% increased Critical Strike Chance for Spells", statOrderKey = "103,781", statOrder = { 103, 781 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", "grants_crit_chance_support", }, }, - ["CriticalStrikeChanceSpellsSupportedUber2__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(75-82)% increased Critical Strike Chance for Spells", statOrderKey = "103,781", statOrder = { 103, 781 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", "grants_crit_chance_support", }, }, - ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "(60-74)% increased Critical Strike Chance for Spells", "10% chance to gain a Power Charge on Critical Strike", statOrderKey = "781,1093", statOrder = { 781, 1093 }, level = 68, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber2"] = { type = "Suffix", affix = "of Shaping", "(75-82)% increased Critical Strike Chance for Spells", "10% chance to gain a Power Charge on Critical Strike", statOrderKey = "781,1093", statOrder = { 781, 1093 }, level = 75, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["ChanceToFreezeShockIgniteProliferationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Elemental Proliferation", "(5-7)% chance to Freeze, Shock and Ignite", statOrderKey = "197,1982", statOrder = { 197, 1982 }, level = 68, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, - ["ChanceToFreezeShockIgniteProliferationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Elemental Proliferation", "(8-10)% chance to Freeze, Shock and Ignite", statOrderKey = "197,1982", statOrder = { 197, 1982 }, level = 75, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, - ["ChanceToFreezeShockIgniteUnboundAilmentsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Unbound Ailments", "(5-7)% chance to Freeze, Shock and Ignite", statOrderKey = "146,1982", statOrder = { 146, 1982 }, level = 68, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_elder", "default", }, weightVal = { 0, 1000, 0, }, }, - ["ChanceToFreezeShockIgniteUnboundAilmentsUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Unbound Ailments", "(8-10)% chance to Freeze, Shock and Ignite", statOrderKey = "146,1982", statOrder = { 146, 1982 }, level = 75, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_elder", "default", }, weightVal = { 0, 1000, 0, }, }, - ["PoisonDamageWeaponSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Lesser Poison", "(19-23)% increased Damage with Poison", statOrderKey = "239,2361", statOrder = { 239, 2361 }, level = 68, group = "PoisonDamage", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["PoisonDamageWeaponSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Lesser Poison", "(24-26)% increased Damage with Poison", statOrderKey = "239,2361", statOrder = { 239, 2361 }, level = 75, group = "PoisonDamage", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["PoisonDurationWeaponSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "(6-9)% increased Poison Duration", statOrderKey = "123,2350", statOrder = { 123, 2350 }, level = 68, group = "PoisonDuration", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["PoisonDurationWeaponSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "(10-14)% increased Poison Duration", statOrderKey = "123,2350", statOrder = { 123, 2350 }, level = 75, group = "PoisonDuration", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["SupportedByIncreasedAreaOfEffectDamageUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(23-27)% increased Area Damage", statOrderKey = "66,1291", statOrder = { 66, 1291 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["SupportedByIncreasedAreaOfEffectDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(28-32)% increased Area Damage", statOrderKey = "66,1291", statOrder = { 66, 1291 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["SupportedByIncreasedAreaOfEffectDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(33-37)% increased Area Damage", statOrderKey = "66,1291", statOrder = { 66, 1291 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["SupportedBySpellCascadeAreaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Spell Cascade", "(5-8)% increased Area of Effect", statOrderKey = "138,1140", statOrder = { 138, 1140 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SupportedBySpellCascadeAreaUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Spell Cascade", "(9-12)% increased Area of Effect", statOrderKey = "138,1140", statOrder = { 138, 1140 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SupportedBySpellCascadeAreaUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Spell Cascade", "(13-15)% increased Area of Effect", statOrderKey = "138,1140", statOrder = { 138, 1140 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SupportedByLesserMultipleProjectilesDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Lesser Multiple Projectiles", "(15-20)% increased Projectile Damage", statOrderKey = "224,1255", statOrder = { 224, 1255 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0, }, }, - ["SupportedByLesserMultipleProjectilesDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Lesser Multiple Projectiles", "(21-25)% increased Projectile Damage", statOrderKey = "224,1255", statOrder = { 224, 1255 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0, }, }, - ["SupportedByLesserMultipleProjectilesDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Lesser Multiple Projectiles", "(26-30)% increased Projectile Damage", statOrderKey = "224,1255", statOrder = { 224, 1255 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0, }, }, - ["SupportedByVolleySpeedUber1__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Volley", "(15-18)% increased Projectile Speed", statOrderKey = "119,1068", statOrder = { 119, 1068 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["SupportedByVolleySpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Volley", "(19-22)% increased Projectile Speed", statOrderKey = "119,1068", statOrder = { 119, 1068 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["SupportedByVolleySpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Volley", "(23-25)% increased Projectile Speed", statOrderKey = "119,1068", statOrder = { 119, 1068 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["ElementalDamagePercentAddedAsChaosUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-6)% of Elemental Damage as Extra Chaos Damage", statOrderKey = "1193", statOrder = { 1193 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["ElementalDamagePercentAddedAsChaosUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-8)% of Elemental Damage as Extra Chaos Damage", statOrderKey = "1193", statOrder = { 1193 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0, }, }, - ["ElementalDamagePercentAddedAsChaosStaffUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-12)% of Elemental Damage as Extra Chaos Damage", statOrderKey = "1193", statOrder = { 1193 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["ElementalDamagePercentAddedAsChaosStaffUber2__"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15)% of Elemental Damage as Extra Chaos Damage", statOrderKey = "1193", statOrder = { 1193 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["DisplaySocketedSkillsChainUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems Chain 1 additional times", statOrderKey = "255", statOrder = { 255 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_shaper", "default", }, weightVal = { 200, 0, }, }, - ["SpellAddedPhysicalDamageWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (22-31) to (46-53) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageWeaponUber2_"] = { type = "Prefix", affix = "Eldritch", "Adds (28-37) to (55-64) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageWeaponUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (32-44) to (66-76) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageTwoHandWeaponUber1_"] = { type = "Prefix", affix = "Eldritch", "Adds (37-49) to (75-86) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (44-58) to (88-103) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (60-73) to (108-122) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (22-31) to (46-53) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageWeaponUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (28-37) to (55-64) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageWeaponUber3_"] = { type = "Prefix", affix = "Eldritch", "Adds (32-44) to (66-76) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageTwoHandWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (37-49) to (75-86) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (44-58) to (88-103) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (60-73) to (108-122) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 1000, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamagePer16StrengthUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 16 Strength", statOrderKey = "6309", statOrder = { 6309 }, level = 68, group = "SpellDamagePerStrength", weightKey = { "no_caster_mods", "sceptre_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamagePer16DexterityUber1__"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 16 Dexterity", statOrderKey = "6307", statOrder = { 6307 }, level = 68, group = "SpellDamagePerDexterity", weightKey = { "no_caster_mods", "rune_dagger_elder", "default", }, weightVal = { 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamagePer16IntelligenceUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 16 Intelligence", statOrderKey = "6308", statOrder = { 6308 }, level = 68, group = "SpellDamagePerIntelligence", weightKey = { "no_caster_mods", "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 0, 400, 400, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamagePer10StrengthUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 10 Strength", statOrderKey = "6306", statOrder = { 6306 }, level = 68, group = "SpellDamagePerStrength", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamagePer10IntelligenceUber1_"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 10 Intelligence", statOrderKey = "1917", statOrder = { 1917 }, level = 68, group = "SpellDamagePerIntelligence", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["MaximumEnduranceChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Endurance Charges", statOrderKey = "1076", statOrder = { 1076 }, 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, }, }, - ["MaximumFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Frenzy Charges", statOrderKey = "1078", statOrder = { 1078 }, level = 84, group = "MaximumFrenzyCharges", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0, }, }, - ["MaximumPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Power Charges", statOrderKey = "1080", statOrder = { 1080 }, level = 84, group = "IncreasedMaximumPowerCharges", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["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", statOrderKey = "502,3445", statOrder = { 502, 3445 }, level = 68, group = "PowerChargeOnBlock", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["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", statOrderKey = "502,4165", statOrder = { 502, 4165 }, level = 68, group = "CriticalStrikeMultiplierIfBlockedRecently", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["BlockingBlocksSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(40-60)% Chance to Block Spell Damage", statOrderKey = "502,505", statOrder = { 502, 505 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0, }, }, - ["SpellBlockStaffUber1_"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(8-12)% Chance to Block Spell Damage", statOrderKey = "502,510", statOrder = { 502, 510 }, level = 68, group = "SpellBlockPercentage", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["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", statOrderKey = "810,4139", statOrder = { 810, 4139 }, level = 68, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["PowerChargeOnManaSpentUber1"] = { type = "Suffix", affix = "of Shaping", "Gain a Power Charge after Spending a total of 200 Mana", statOrderKey = "5098", statOrder = { 5098 }, level = 68, group = "PowerChargeOnManaSpent", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["IncreasedDamagePerPowerChargeUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Damage per Power Charge", statOrderKey = "4220", statOrder = { 4220 }, level = 68, group = "AllDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0, }, }, - ["ProjectileDamagePerEnemyPiercedUber1_"] = { type = "Suffix", affix = "of Shaping", "Projectiles deal (20-30)% increased Damage for each Enemy Pierced", statOrderKey = "6113", statOrder = { 6113 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["IncreaseProjectileAttackDamagePerAccuracyUber1"] = { type = "Suffix", affix = "of the Elder", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrderKey = "3472", statOrder = { 3472 }, level = 68, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 1000, 0, }, }, - ["CriticalStrikeChanceAgainstPoisonedEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(80-100)% increased Critical Strike Chance against Poisoned Enemies", statOrderKey = "2473", statOrder = { 2473 }, level = 68, group = "CriticalStrikeChanceAgainstPoisonedEnemies", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["CriticalStrikeMultiplierAgainstEnemiesOnFullLifeUber1"] = { type = "Suffix", affix = "of Shaping", "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrderKey = "2617", statOrder = { 2617 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["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", statOrderKey = "4465", statOrder = { 4465 }, level = 68, group = "GainRareMonsterModsOnKill", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0, }, }, - ["EnemiesHaveReducedEvasionIfHitRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies have 20% reduced Evasion if you have Hit them Recently", statOrderKey = "4359", statOrder = { 4359 }, level = 68, group = "EnemiesHaveReducedEvasionIfHitRecently", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["LifeGainPerBlindedEnemyHitUber1"] = { type = "Suffix", affix = "of the Elder", "+(35-50) Life gained for each Blinded Enemy Hit by this Weapon", statOrderKey = "5155", statOrder = { 5155 }, level = 68, group = "LifeGainPerBlindedEnemyHit", weightKey = { "no_attack_mods", "claw_elder", "default", }, weightVal = { 0, 1000, 0, }, }, - ["CriticalChanceAgainstBlindedEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance against Blinded Enemies", statOrderKey = "2591", statOrder = { 2591 }, level = 68, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["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", statOrderKey = "1376,3569", statOrder = { 1376, 3569 }, level = 68, group = "AdditionalBlockChancePerEnduranceCharge", weightKey = { "sword_elder", "default", }, weightVal = { 1000, 0, }, }, - ["AccuracyRatingPerFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "5% increased Accuracy Rating per Frenzy Charge", "(20-25)% chance to gain a Frenzy Charge when you Block", statOrderKey = "1307,4018", statOrder = { 1307, 4018 }, level = 68, group = "AccuracyRatingPerFrenzyCharge", weightKey = { "no_attack_mods", "sword_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MovementSkillsCostNoManaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Movement Skills have no Mana Cost", statOrderKey = "271", statOrder = { 271 }, level = 68, group = "MovementSkillsCostNoMana", weightKey = { "2h_sword_shaper", "sword_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["GainEnduranceChargeWhileStationaryUber1"] = { type = "Suffix", affix = "of the Elder", "Gain an Endurance Charge every 4 seconds while Stationary", statOrderKey = "6015", statOrder = { 6015 }, level = 68, group = "GainEnduranceChargeWhileStationary", weightKey = { "2h_sword_elder", "sword_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["CullingStrikeOnBleedingEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(30-49)% increased Physical Damage", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrderKey = "570,5092", statOrder = { 570, 5092 }, level = 68, group = "CullingStrikeOnBleedingEnemies", weightKey = { "no_attack_mods", "2h_axe_elder", "axe_elder", "default", }, weightVal = { 0, 1000, 1000, 0, }, }, - ["GainEnduranceChargeOnHittingBleedingEnemyUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", statOrderKey = "4014", statOrder = { 4014 }, level = 68, group = "GainEnduranceChargeOnHittingBleedingEnemy", weightKey = { "axe_elder", "default", }, weightVal = { 1000, 0, }, }, - ["GainEnduranceChargeOnCritUber1"] = { type = "Suffix", affix = "of Shaping", "(15-20)% increased Critical Strike Chance", "(5-10)% chance to gain an Endurance Charge on Critical Strike", statOrderKey = "786,1083", statOrder = { 786, 1083 }, level = 68, group = "GainEnduranceChargeOnCrit", weightKey = { "2h_axe_shaper", "axe_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["CriticalStrikeChanceIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "4138", statOrder = { 4138 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "axe_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["EnemiesExplodeOnDeathDealingFireUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrderKey = "1886", statOrder = { 1886 }, level = 68, group = "EnemiesExplodeOnDeath", weightKey = { "2h_mace_shaper", "mace_shaper", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["GainFortifyOnStunChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-20)% chance to gain Fortify when you Stun an Enemy with Melee Damage", statOrderKey = "4012", statOrder = { 4012 }, level = 68, group = "GainFortifyOnStunChance", weightKey = { "no_attack_mods", "mace_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, - ["AreaOfEffectPer50StrengthUber1"] = { type = "Suffix", affix = "of the Elder", "3% increased Area of Effect per 50 Strength", statOrderKey = "3629", statOrder = { 3629 }, level = 68, group = "AreaOfEffectPerStrength", weightKey = { "mace_elder", "default", }, weightVal = { 1000, 0, }, }, - ["AreaOfEffectIfStunnedEnemyRecentlyUber1___"] = { type = "Suffix", affix = "of the Elder", "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrderKey = "3626", statOrder = { 3626 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_elder", "mace_elder", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["MeleeWeaponRangeIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "+(1-2) to Melee Strike Range if you have Killed Recently", statOrderKey = "5866", statOrder = { 5866 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "no_attack_mods", "2h_sword_elder", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MovementSkillsFortifyOnHitChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Melee Movement Skills have (30-50)% chance to Fortify on Hit", statOrderKey = "5851", statOrder = { 5851 }, level = 68, group = "MovementSkillsFortifyOnHitChance", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["GainEnduranceChargeOnTauntingEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy", statOrderKey = "4016", statOrder = { 4016 }, level = 68, group = "GainEnduranceChargeOnTauntingEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["RemoveBleedingOnWarcryUber1"] = { type = "Suffix", affix = "of the Elder", "Removes Bleeding when you use a Warcry", statOrderKey = "6179", statOrder = { 6179 }, level = 68, group = "RemoveBleedingOnWarcry", weightKey = { "2h_axe_elder", "default", }, weightVal = { 1000, 0, }, }, - ["AreaOfEffectPerEnduranceChargeUber1"] = { type = "Suffix", affix = "of the Elder", "5% increased Area of Effect per Endurance Charge", statOrderKey = "3631", statOrder = { 3631 }, level = 68, group = "AreaOfEffectPerEnduranceCharge", weightKey = { "2h_mace_elder", "default", }, weightVal = { 1000, 0, }, }, - ["StunDurationAndThresholdUber1"] = { type = "Suffix", affix = "of Shaping", "(20-30)% reduced Enemy Stun Threshold", "(20-30)% increased Stun Duration on Enemies", statOrderKey = "837,1123", statOrder = { 837, 1123 }, level = 68, group = "StunDurationAndThreshold", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 1000, 0, }, }, - ["PhysicalDamageAddedAsRandomElementUber1"] = { type = "Suffix", affix = "of Shaping", "Gain (7-9)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "2116", statOrder = { 2116 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, - ["PhysicalDamageAddedAsRandomElementUber2"] = { type = "Suffix", affix = "of Shaping", "Gain (10-12)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "2116", statOrder = { 2116 }, level = 75, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, - ["PhysicalDamageAddedAsRandomElementUber3"] = { type = "Suffix", affix = "of Shaping", "Gain (13-15)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "2116", statOrder = { 2116 }, level = 80, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0, }, }, - ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrderKey = "342", statOrder = { 342 }, level = 20, group = "GrantedSkill", weightKey = { "default", }, weightVal = { 0, }, }, - ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrderKey = "340", statOrder = { 340 }, level = 20, group = "GrantedSkill", weightKey = { "default", }, weightVal = { 0, }, }, - ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrderKey = "356", statOrder = { 356 }, level = 20, group = "GrantedSkill", weightKey = { "default", }, weightVal = { 0, }, }, - ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrderKey = "343", statOrder = { 343 }, level = 20, group = "GrantedSkill", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreaseSocketedMinionGemLevelDelve"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Minion Gems", statOrderKey = "44", statOrder = { 44 }, level = 60, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["MaximumMinionCountZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrderKey = "1412", statOrder = { 1412 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0, }, }, - ["MaximumMinionCountSkeletonDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrderKey = "1414", statOrder = { 1414 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0, }, }, - ["MaximumMinionCountSpectreDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Spectres", statOrderKey = "1413", statOrder = { 1413 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageDelve"] = { type = "Suffix", affix = "of the Underground", "Minions deal (25-35)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 60, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["MaximumMinionCountAmuletZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrderKey = "1412", statOrder = { 1412 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0, }, }, - ["MaximumMinionCountAmuletSkeletonDelve__"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrderKey = "1414", statOrder = { 1414 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedManaReservationsCostDelve_"] = { type = "Suffix", affix = "of the Underground", "5% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 60, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreaseSocketedAuraLevelDelve"] = { type = "Suffix", affix = "of the Underground", "+2 to Level of Socketed Aura Gems", statOrderKey = "45", statOrder = { 45 }, level = 60, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedPhysicalDamageTakenDelve"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction", statOrderKey = "1519", statOrder = { 1519 }, level = 60, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0, }, }, - ["BleedingDamageChanceDelve__"] = { type = "Suffix", affix = "of the Underground", "Attacks have 25% chance to cause Bleeding", "(30-50)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 60, group = "BleedingDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["CorruptedBloodImmunityDelve"] = { type = "Suffix", affix = "of the Underground", "Corrupted Blood cannot be inflicted on you", statOrderKey = "3949", statOrder = { 3949 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 0, }, }, - ["DoubleDamageChanceDelve"] = { type = "Suffix", affix = "of the Underground", "10% chance to deal Double Damage", statOrderKey = "3992", statOrder = { 3992 }, level = 60, group = "DoubleDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedPhysicalDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrderKey = "569,724", statOrder = { 569, 724 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedPhysicalDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (15-20) to (30-35) Physical Damage to Spells", statOrderKey = "569,724", statOrder = { 569, 724 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseOnHitLevelVulnerabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Vulnerability on Hit", statOrderKey = "1717", statOrder = { 1717 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["PhysicalDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched as Life", statOrderKey = "960", statOrder = { 960 }, level = 60, group = "PhysicalDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["PhysicalDamageTakenAsFireDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["MaximumFireResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 60, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Fire Damage taken", statOrderKey = "1490", statOrder = { 1490 }, level = 60, group = "FireDamageTaken", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (18-24) to (36-42) Fire Damage", statOrderKey = "686,689", statOrder = { 686, 689 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (27-36) to (55-64) Fire Damage", statOrderKey = "686,689", statOrder = { 686, 689 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (14-20) to (29-34) Fire Damage to Spells", statOrderKey = "686,725", statOrder = { 686, 725 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (20-26) to (39-46) Fire Damage to Spells", statOrderKey = "686,725", statOrder = { 686, 725 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseOnHitLevelFlammabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Flammability on Hit", statOrderKey = "1725", statOrder = { 1725 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched as Life", statOrderKey = "962", statOrder = { 962 }, level = 60, group = "FireDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["PhysicalDamageTakenAsColdDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["MaximumColdResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 60, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Cold Damage taken", statOrderKey = "2578", statOrder = { 2578 }, level = 60, group = "ColdDamageTaken", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalColdDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (15-20) to (30-35) Cold Damage", statOrderKey = "693,696", statOrder = { 693, 696 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (22-30) to (45-52) Cold Damage", statOrderKey = "693,696", statOrder = { 693, 696 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedColdDamageHybridDelve_"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (12-16) to (24-28) Cold Damage to Spells", statOrderKey = "693,726", statOrder = { 693, 726 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (18-24) to (36-42) Cold Damage to Spells", statOrderKey = "693,726", statOrder = { 693, 726 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseOnHitLevelFrostbiteDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Frostbite on Hit", statOrderKey = "1726", statOrder = { 1726 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched as Life", statOrderKey = "964", statOrder = { 964 }, level = 60, group = "ColdDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["PhysicalDamageTakenAsLightningDelve_"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["MaximumLightningResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 60, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Lightning Damage taken", statOrderKey = "2577", statOrder = { 2577 }, level = 60, group = "LightningDamageTaken", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-5) to (63-66) Lightning Damage", statOrderKey = "702,705", statOrder = { 702, 705 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-8) to (95-100) Lightning Damage", statOrderKey = "702,705", statOrder = { 702, 705 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (1-4) to (50-53) Lightning Damage to Spells", statOrderKey = "702,727", statOrder = { 702, 727 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-6) to (76-80) Lightning Damage to Spells", statOrderKey = "702,727", statOrder = { 702, 727 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseOnHitLevelConductivityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Conductivity on Hit", statOrderKey = "1722", statOrder = { 1722 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningDamageLifeLeechDelve__"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched as Life", statOrderKey = "966", statOrder = { 966 }, level = 60, group = "LightningDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["PhysicalDamageTakenAsChaosDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1657", statOrder = { 1657 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0, }, }, - ["MaximumChaosResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Chaos Resistance", statOrderKey = "937", statOrder = { 937 }, level = 60, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Chaos Damage taken", statOrderKey = "1491", statOrder = { 1491 }, level = 60, group = "ChaosDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (18-28) to (39-49) Chaos Damage", statOrderKey = "708,711", statOrder = { 708, 711 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (28-43) to (59-74) Chaos Damage", statOrderKey = "708,711", statOrder = { 708, 711 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (11-15) to (23-26) Chaos Damage to Spells", statOrderKey = "708,728", statOrder = { 708, 728 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellAddedChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (15-20) to (30-35) Chaos Damage to Spells", statOrderKey = "708,728", statOrder = { 708, 728 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseOnHitLevelDespairDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Despair on Hit", statOrderKey = "1723", statOrder = { 1723 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched as Life", statOrderKey = "967", statOrder = { 967 }, level = 60, group = "ChaosDamageLifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseEffectivenessDelve"] = { type = "Suffix", affix = "of the Underground", "(10-15)% increased Effect of your Curses", statOrderKey = "1799", statOrder = { 1799 }, level = 60, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0, }, }, - ["AdditionalCurseOnEnemiesDelve"] = { type = "Prefix", affix = "Subterranean", "You can apply an additional Curse", statOrderKey = "1422", statOrder = { 1422 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreaseSocketedCurseGemLevelDelve_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Curse Gems", statOrderKey = "48", statOrder = { 48 }, level = 60, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseAreaOfEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(25-40)% increased Area of Effect of Curse Skills", statOrderKey = "1480", statOrder = { 1480 }, level = 60, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseDurationDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Skills have (25-40)% increased Skill Effect Duration", statOrderKey = "4186", statOrder = { 4186 }, level = 60, group = "CurseDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedDamagePerCurseDelve"] = { type = "Prefix", affix = "Subterranean", "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy", statOrderKey = "2196", statOrder = { 2196 }, level = 60, group = "DamageToEnemiesPerCurse", weightKey = { "default", }, weightVal = { 0, }, }, - ["ManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "(30-50)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, - ["PercentDamageGoesToManaDelve"] = { type = "Suffix", affix = "of the Underground", "(5-8)% of Damage taken gained as Mana over 4 seconds when Hit", statOrderKey = "1660", statOrder = { 1660 }, level = 60, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "Regenerate (3-5) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, - ["MaximumManaIncreasePercentDelve_"] = { type = "Prefix", affix = "Subterranean", "(10-15)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 400, 400, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 300, 300, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h3___"] = { type = "Prefix", affix = "Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 200, 200, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 100, 100, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 50, 50, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0, }, }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0, }, }, - ["ColdDamageOverTimeMultiplier2h1_"] = { type = "Prefix", affix = "Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 300, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 200, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 100, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 50, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 300, 300, 300, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 220, 220, 220, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 140, 140, 140, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 70, 70, 70, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 35, 35, 35, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(8-12)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 200, 400, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(13-16)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 200, 400, 0, }, tags = { "has_caster_mod", }, }, - ["FireDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 400, 0, }, }, - ["FireDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 300, 0, }, }, - ["FireDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 200, 0, }, }, - ["FireDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 100, 0, }, }, - ["FireDamageOverTimeMultiplier2h5__"] = { type = "Prefix", affix = "Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 50, 0, }, }, - ["FireDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "wand", "sceptre", "default", }, weightVal = { 0, 300, 300, 0, }, }, - ["FireDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "wand", "sceptre", "default", }, weightVal = { 0, 220, 220, 0, }, }, - ["FireDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "wand", "sceptre", "default", }, weightVal = { 0, 140, 140, 0, }, }, - ["FireDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "wand", "sceptre", "default", }, weightVal = { 0, 70, 70, 0, }, }, - ["FireDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "wand", "sceptre", "default", }, weightVal = { 0, 35, 35, 0, }, }, - ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(8-12)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 200, 400, 0, }, }, - ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(13-16)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 200, 400, 0, }, }, - ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Physical Damage over Time Multiplier", statOrderKey = "583", statOrder = { 583 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0, }, }, - ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Physical Damage over Time Multiplier", statOrderKey = "583", statOrder = { 583 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0, }, }, - ["GlobalDamageOverTimeMultiplier1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier", statOrderKey = "580", statOrder = { 580 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "quiver", "default", }, weightVal = { 300, 300, 0, }, }, - ["GlobalDamageOverTimeMultiplier1h2_"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier", statOrderKey = "580", statOrder = { 580 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "quiver", "default", }, weightVal = { 300, 300, 0, }, }, - ["GlobalDamageOverTimeMultiplier1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-18)% to Damage over Time Multiplier", statOrderKey = "580", statOrder = { 580 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "quiver", "default", }, weightVal = { 300, 300, 0, }, }, - ["GlobalDamageOverTimeMultiplier2h1__"] = { type = "Suffix", affix = "of Acrimony", "+(16-21)% to Damage over Time Multiplier", statOrderKey = "580", statOrder = { 580 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0, }, }, - ["GlobalDamageOverTimeMultiplier2h2"] = { type = "Suffix", affix = "of Dispersion", "+(24-29)% to Damage over Time Multiplier", statOrderKey = "580", statOrder = { 580 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0, }, }, - ["GlobalDamageOverTimeMultiplier2h3___"] = { type = "Suffix", affix = "of Liquefaction", "+(31-35)% to Damage over Time Multiplier", statOrderKey = "580", statOrder = { 580 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0, }, }, - ["IncreasedLifeEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "2% increased maximum Life", statOrderKey = "877,879", statOrder = { 877, 879 }, level = 50, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedLifeEnhancedLevel50BodyMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrderKey = "877,879", statOrder = { 877, 879 }, level = 50, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedLevel50ModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrderKey = "884,885", statOrder = { 884, 885 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedLevel50ModOnHit"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "884,1021", statOrder = { 884, 1021 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrderKey = "884,887", statOrder = { 884, 887 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedLevel50ModReservation_"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(3-5)% reduced Mana Reserved", statOrderKey = "884,1481", statOrder = { 884, 1481 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedManaEnhancedLevel50ModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrderKey = "884,1144", statOrder = { 884, 1144 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_mana_cost_mod", }, }, - ["IncreasedManaEnhancedLevel50ModCostNew"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills have -(8-6) to Total Mana Cost", statOrderKey = "884,6255", statOrder = { 884, 6255 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_mana_cost_mod", }, }, - ["IncreasedEnergyShieldEnhancedLevel50ModES_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "3% increased maximum Energy Shield", statOrderKey = "867,870", statOrder = { 867, 870 }, level = 50, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedEnergyShieldEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrderKey = "867,1832", statOrder = { 867, 1832 }, level = 50, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "688,1206", statOrder = { 688, 1206 }, level = 50, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, - ["AddedColdDamageEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "695,1208", statOrder = { 695, 1208 }, level = 50, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, - ["AddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "704,1210", statOrder = { 704, 1210 }, level = 50, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_physical_conversion_mod", }, }, - ["LocalIncreasedPhysicalDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (3-5)% of Physical Damage as Extra Chaos Damage", statOrderKey = "570,1186", statOrder = { 570, 1186 }, level = 50, group = "LocalPhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalAddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (45-61) to (91-106) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 50, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (68-91) to (137-160) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 50, group = "FireDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (37-50) to (74-87) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 50, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (56-75) to (112-131) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 50, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (4-13) to (158-166) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 50, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (6-19) to (237-250) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 50, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_attack_mod", }, }, - ["MovementVelocityEnhancedLevel50ModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrderKey = "1070,2425", statOrder = { 1070, 2425 }, level = 50, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, - ["MovementVelocityEnhancedLevel50ModDodge"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(5-6)% chance to Dodge Attack Hits", statOrderKey = "1070,1417", statOrder = { 1070, 1417 }, level = 50, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, - ["MovementVelocityEnhancedLevel50ModSpellDodge__"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(5-6)% chance to Dodge Spell Hits", statOrderKey = "1070,1418", statOrder = { 1070, 1418 }, level = 50, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "562,5994", statOrder = { 562, 5994 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "562,5994", statOrder = { 562, 5994 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrderKey = "534", statOrder = { 534 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrderKey = "534", statOrder = { 534 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MineDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Mine Damage", statOrderKey = "536", statOrder = { 536 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MineDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Mine Damage", statOrderKey = "536", statOrder = { 536 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrderKey = "1178", statOrder = { 1178 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Trap Throwing Speed", statOrderKey = "1178", statOrder = { 1178 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MineThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Mine Throwing Speed", statOrderKey = "1179", statOrder = { 1179 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MineThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Mine Throwing Speed", statOrderKey = "1179", statOrder = { 1179 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapCooldownRecoveryAndDurationEnhancedLevel50Mod__"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Speed for throwing Traps", statOrderKey = "1174,2642", statOrder = { 1174, 2642 }, level = 50, group = "TrapCooldownRecovery", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapCooldownRecoveryAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Trap Duration", "(21-22)% increased Cooldown Recovery Speed for throwing Traps", statOrderKey = "1174,2642", statOrder = { 1174, 2642 }, level = 50, group = "TrapCooldownRecovery", weightKey = { "default", }, weightVal = { 0, }, }, - ["MineDetonationSpeedAndDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Mine Duration", "Mines have (14-15)% increased Detonation Speed", statOrderKey = "1175,5873", statOrder = { 1175, 5873 }, level = 50, group = "MineDetonationSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MineDetonationSpeedAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Mine Duration", "Mines have (21-22)% increased Detonation Speed", statOrderKey = "1175,5873", statOrder = { 1175, 5873 }, level = 50, group = "MineDetonationSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrderKey = "2660", statOrder = { 2660 }, level = 50, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (33-37)% increased Area of Effect", statOrderKey = "2660", statOrder = { 2660 }, level = 50, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["MineAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (22-25)% increased Area of Effect", statOrderKey = "5870", statOrder = { 5870 }, level = 50, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["MineAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (33-37)% increased Area of Effect", statOrderKey = "5870", statOrder = { 5870 }, level = 50, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreaseSocketedTrapGemLevelEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap or Mine Gems", statOrderKey = "50", statOrder = { 50 }, level = 50, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnTwoHandWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (50-66)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrderKey = "1233,5915", statOrder = { 1233, 5915 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnTwoHandWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (85-94)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrderKey = "1233,5915", statOrder = { 1233, 5915 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionAttackAndCastSpeedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 50, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionAttackAndCastSpeedTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (36-40)% increased Attack Speed", "Minions have (36-40)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 50, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrderKey = "3798", statOrder = { 3798 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDurationTwoHandedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(27-30)% increased Minion Duration", statOrderKey = "3798", statOrder = { 3798 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreaseSocketedMinionGemLevelEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrderKey = "44", statOrder = { 44 }, level = 50, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrderKey = "686,725", statOrder = { 686, 725 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod__"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrderKey = "686,725", statOrder = { 686, 725 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrderKey = "693,726", statOrder = { 693, 726 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrderKey = "693,726", statOrder = { 693, 726 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningDamagePrefixOnWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrderKey = "702,727", statOrder = { 702, 727 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrderKey = "702,727", statOrder = { 702, 727 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedCastSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(23-25)% increased Cast Speed", statOrderKey = "728,767", statOrder = { 728, 767 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedCastSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(35-38)% increased Cast Speed", statOrderKey = "728,767", statOrder = { 728, 767 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedAttackSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrderKey = "711,734", statOrder = { 711, 734 }, level = 50, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["LocalIncreasedAttackSpeedRangedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrderKey = "711,734", statOrder = { 711, 734 }, level = 50, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeRegenerationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (16-20) Life per second", "Regenerate 0.4% of Life per second", statOrderKey = "882,1194", statOrder = { 882, 1194 }, level = 50, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(3-5)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "923,1653", statOrder = { 923, 1653 }, level = 50, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["ColdResistEnhancedLevel50ModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(3-5)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "929,1654", statOrder = { 929, 1654 }, level = 50, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["LightningResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(3-5)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "934,1655", statOrder = { 934, 1655 }, level = 50, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["FireResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrderKey = "923,962", statOrder = { 923, 962 }, level = 50, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrderKey = "929,964", statOrder = { 929, 964 }, level = 50, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrderKey = "934,966", statOrder = { 934, 966 }, level = 50, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistEnhancedLevel50ModAilments_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrderKey = "923,6362", statOrder = { 923, 6362 }, level = 50, group = "FireResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ColdResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrderKey = "929,4222", statOrder = { 929, 4222 }, level = 50, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["LightningResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrderKey = "934,4131", statOrder = { 934, 4131 }, level = 50, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosResistEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(5-7)% reduced Chaos Damage taken over time", statOrderKey = "938,1198", statOrder = { 938, 1198 }, level = 50, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["PoisonDurationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrderKey = "708,2350", statOrder = { 708, 2350 }, level = 50, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToPoisonEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrderKey = "708,5167", statOrder = { 708, 5167 }, level = 50, group = "LocalChanceToPoisonOnHit", weightKey = { "default", }, weightVal = { 0, }, }, - ["PoisonDamageEnhancedLevel50AttacksMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrderKey = "711,2361", statOrder = { 711, 2361 }, level = 50, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["PoisonDamageEnhancedLevel50SpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrderKey = "728,2361", statOrder = { 728, 2361 }, level = 50, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["WeaponFireAddedAsChaos1h1"] = { type = "Prefix", affix = "Acidic", "Gain (5-7)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1192", statOrder = { 1192 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 400, 400, 200, 200, 200, 200, 0, }, }, - ["WeaponFireAddedAsChaos1h2"] = { type = "Prefix", affix = "Dissolving", "Gain (8-10)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1192", statOrder = { 1192 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 200, 200, 100, 100, 100, 100, 0, }, }, - ["WeaponFireAddedAsChaos1h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1192", statOrder = { 1192 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 100, 100, 50, 50, 50, 50, 0, }, }, - ["WeaponColdAddedAsChaos1h1"] = { type = "Prefix", affix = "Atrophic", "Gain (5-7)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1191", statOrder = { 1191 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 400, 400, 200, 200, 200, 200, 0, }, }, - ["WeaponColdAddedAsChaos1h2"] = { type = "Prefix", affix = "Festering", "Gain (8-10)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1191", statOrder = { 1191 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 200, 200, 100, 100, 100, 100, 0, }, }, - ["WeaponColdAddedAsChaos1h3_"] = { type = "Prefix", affix = "Mortifying", "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1191", statOrder = { 1191 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 100, 100, 50, 50, 50, 50, 0, }, }, - ["WeaponLightningAddedAsChaos1h1"] = { type = "Prefix", affix = "Agonizing", "Gain (5-7)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1189", statOrder = { 1189 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 400, 400, 200, 200, 200, 200, 0, }, }, - ["WeaponLightningAddedAsChaos1h2"] = { type = "Prefix", affix = "Harrowing", "Gain (8-10)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1189", statOrder = { 1189 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 200, 200, 100, 100, 100, 100, 0, }, }, - ["WeaponLightningAddedAsChaos1h3_"] = { type = "Prefix", affix = "Excruciating", "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1189", statOrder = { 1189 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 100, 100, 50, 50, 50, 50, 0, }, }, - ["WeaponPhysicalAddedAsChaos1h1____"] = { type = "Prefix", affix = "Pernicious", "Gain (5-7)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1186", statOrder = { 1186 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "dagger", "dex_int_shield", "focus", "default", }, weightVal = { 400, 600, 50, 50, 0, }, }, - ["WeaponPhysicalAddedAsChaos1h2"] = { type = "Prefix", affix = "Inimical", "Gain (8-10)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1186", statOrder = { 1186 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "dagger", "dex_int_shield", "focus", "default", }, weightVal = { 200, 300, 50, 50, 0, }, }, - ["WeaponPhysicalAddedAsChaos1h3_"] = { type = "Prefix", affix = "Baleful", "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1186", statOrder = { 1186 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "dagger", "dex_int_shield", "focus", "default", }, weightVal = { 100, 150, 50, 50, 0, }, }, - ["WeaponFireAddedAsChaos2h1_"] = { type = "Prefix", affix = "Acidic", "Gain (10-14)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1192", statOrder = { 1192 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, - ["WeaponFireAddedAsChaos2h2"] = { type = "Prefix", affix = "Dissolving", "Gain (15-20)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1192", statOrder = { 1192 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0, }, }, - ["WeaponFireAddedAsChaos2h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (21-26)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1192", statOrder = { 1192 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0, }, }, - ["WeaponColdAddedAsChaos2h1"] = { type = "Prefix", affix = "Atrophic", "Gain (10-14)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1191", statOrder = { 1191 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, - ["WeaponColdAddedAsChaos2h2"] = { type = "Prefix", affix = "Festering", "Gain (15-20)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1191", statOrder = { 1191 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0, }, }, - ["WeaponColdAddedAsChaos2h3"] = { type = "Prefix", affix = "Mortifying", "Gain (21-26)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1191", statOrder = { 1191 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0, }, }, - ["WeaponLightningAddedAsChaos2h1"] = { type = "Prefix", affix = "Agonizing", "Gain (10-14)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1189", statOrder = { 1189 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, - ["WeaponLightningAddedAsChaos2h2"] = { type = "Prefix", affix = "Harrowing", "Gain (15-20)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1189", statOrder = { 1189 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0, }, }, - ["WeaponLightningAddedAsChaos2h3"] = { type = "Prefix", affix = "Excruciating", "Gain (21-26)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1189", statOrder = { 1189 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0, }, }, - ["WeaponPhysicalAddedAsChaos2h1"] = { type = "Prefix", affix = "Pernicious", "Gain (10-14)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1186", statOrder = { 1186 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0, }, }, - ["WeaponPhysicalAddedAsChaos2h2"] = { type = "Prefix", affix = "Inimical", "Gain (15-20)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1186", statOrder = { 1186 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0, }, }, - ["WeaponPhysicalAddedAsChaos2h3"] = { type = "Prefix", affix = "Baleful", "Gain (21-26)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1186", statOrder = { 1186 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0, }, }, - ["MinionDamageOnWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (10-19)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 750, 0, }, }, - ["MinionDamageOnWeapon2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (20-29)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 750, 0, }, }, - ["MinionDamageOnWeapon3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-39)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 750, 0, }, }, - ["MinionDamageOnWeapon4_"] = { type = "Prefix", affix = "Countess's", "Minions deal (40-49)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 300, 0, }, }, - ["MinionDamageOnWeapon5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (50-59)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 600, 0, }, }, - ["MinionDamageOnWeapon6"] = { type = "Prefix", affix = "Princess's", "Minions deal (60-69)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 75, 0, }, }, - ["MinionDamageOnWeapon7"] = { type = "Prefix", affix = "Queen's", "Minions deal (70-74)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 40, 0, }, }, - ["MinionDamageOnWeapon8"] = { type = "Prefix", affix = "Empress's", "Minions deal (75-79)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 20, 0, }, }, - ["MinionDamageOnWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (50-56)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (57-62)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 74, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (63-69)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 82, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (15-29)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-44)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Duchess's", "Minions deal (45-59)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Queen's", "Minions deal (60-74)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (75-84)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (85-94)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 74, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (95-104)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 82, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0, }, }, - ["MinionDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Baron's", "+(17-20) to maximum Mana", "Minions deal (5-9)% increased Damage", statOrderKey = "884,1233", statOrder = { 884, 1233 }, level = 2, group = "SpellDamageAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionDamageAndManaOnWeapon2_"] = { type = "Prefix", affix = "Viscount's", "+(21-24) to maximum Mana", "Minions deal (10-14)% increased Damage", statOrderKey = "884,1233", statOrder = { 884, 1233 }, level = 11, group = "SpellDamageAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Marquess's", "+(25-28) to maximum Mana", "Minions deal (15-19)% increased Damage", statOrderKey = "884,1233", statOrder = { 884, 1233 }, level = 23, group = "SpellDamageAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionDamageAndManaOnWeapon4_"] = { type = "Prefix", affix = "Count's", "+(29-33) to maximum Mana", "Minions deal (20-24)% increased Damage", statOrderKey = "884,1233", statOrder = { 884, 1233 }, level = 35, group = "SpellDamageAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 800, 0, }, }, - ["MinionDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Duke's", "+(34-37) to maximum Mana", "Minions deal (25-29)% increased Damage", statOrderKey = "884,1233", statOrder = { 884, 1233 }, level = 46, group = "SpellDamageAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 0, }, }, - ["MinionDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Prince's", "+(38-41) to maximum Mana", "Minions deal (30-34)% increased Damage", statOrderKey = "884,1233", statOrder = { 884, 1233 }, level = 58, group = "SpellDamageAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 200, 0, }, }, - ["MinionDamageAndManaOnWeapon7_"] = { type = "Prefix", affix = "King's", "+(42-45) to maximum Mana", "Minions deal (35-39)% increased Damage", statOrderKey = "884,1233", statOrder = { 884, 1233 }, level = 80, group = "SpellDamageAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 100, 0, }, }, - ["MinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of Motivation", "Minions have (5-7)% increased Attack Speed", "Minions have (5-7)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 2, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Coercion", "Minions have (8-10)% increased Attack Speed", "Minions have (8-10)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 15, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Incitation", "Minions have (11-13)% increased Attack Speed", "Minions have (11-13)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 30, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionAttackAndCastSpeed4"] = { type = "Suffix", affix = "of Agitation", "Minions have (14-16)% increased Attack Speed", "Minions have (14-16)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 40, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionAttackAndCastSpeed5"] = { type = "Suffix", affix = "of Instigation", "Minions have (17-19)% increased Attack Speed", "Minions have (17-19)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 55, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionAttackAndCastSpeed6__"] = { type = "Suffix", affix = "of Provocation", "Minions have (20-22)% increased Attack Speed", "Minions have (20-22)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 72, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 0, }, }, - ["MinionAttackAndCastSpeed7"] = { type = "Suffix", affix = "of Infuriation", "Minions have (23-25)% increased Attack Speed", "Minions have (23-25)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 83, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 250, 0, }, }, - ["MinionGemLevel1h1"] = { type = "Prefix", affix = "Martinet's", "+1 to Level of all Minion Skill Gems", statOrderKey = "913", statOrder = { 913 }, level = 60, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 125, 0, }, }, - ["MinionLifeWeapon1"] = { type = "Suffix", affix = "of the Administrator", "Minions have (13-17)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 10, group = "MinionLife", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionLifeWeapon2"] = { type = "Suffix", affix = "of the Rector", "Minions have (18-22)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 26, group = "MinionLife", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionLifeWeapon3"] = { type = "Suffix", affix = "of the Overseer", "Minions have (23-27)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 42, group = "MinionLife", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionLifeWeapon4__"] = { type = "Suffix", affix = "of the Taskmaster", "Minions have (28-32)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 58, group = "MinionLife", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionLifeWeapon5"] = { type = "Suffix", affix = "of the Slavedriver", "Minions have (33-36)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 74, group = "MinionLife", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionLifeWeapon6_"] = { type = "Suffix", affix = "of the Despot", "Minions have (37-40)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 82, group = "MinionLife", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionMovementSpeed1"] = { type = "Suffix", affix = "of Coordination", "Minions have (16-20)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 1, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionMovementSpeed2"] = { type = "Suffix", affix = "of Orchestration", "Minions have (21-25)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 23, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionMovementSpeed3"] = { type = "Suffix", affix = "of Masterminding", "Minions have (26-30)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 40, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionResistancesWeapon1_"] = { type = "Suffix", affix = "of Adjustment", "Minions have +(11-15)% to all Elemental Resistances", statOrderKey = "2090", statOrder = { 2090 }, level = 8, group = "MinionElementalResistances", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionResistancesWeapon2"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(16-20)% to all Elemental Resistances", statOrderKey = "2090", statOrder = { 2090 }, level = 20, group = "MinionElementalResistances", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionResistancesWeapon3"] = { type = "Suffix", affix = "of Adaptation", "Minions have +(21-25)% to all Elemental Resistances", statOrderKey = "2090", statOrder = { 2090 }, level = 30, group = "MinionElementalResistances", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionResistancesWeapon4"] = { type = "Suffix", affix = "of Evolution", "Minions have +(26-30)% to all Elemental Resistances", statOrderKey = "2090", statOrder = { 2090 }, level = 40, group = "MinionElementalResistances", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionAccuracyRatingWeapon1_"] = { type = "Suffix", affix = "of Suggestion", "Minions have +(80-130) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 1, group = "MinionAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionAccuracyRatingWeapon2"] = { type = "Suffix", affix = "of Instruction", "Minions have +(131-215) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 20, group = "MinionAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionAccuracyRatingWeapon3"] = { type = "Suffix", affix = "of Tutelage", "Minions have +(216-325) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 40, group = "MinionAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionAccuracyRatingWeapon4"] = { type = "Suffix", affix = "of Command", "Minions have +(326-455) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 60, group = "MinionAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["MinionAccuracyRatingWeapon5"] = { type = "Suffix", affix = "of Ultimatum", "Minions have +(456-624) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 75, group = "MinionAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0, }, }, - ["TrapAndMineThrowSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Trap and Mine Throwing Speed", statOrderKey = "6415", statOrder = { 6415 }, level = 42, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapAndMineThrowSpeedEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-13)% increased Trap and Mine Throwing Speed", statOrderKey = "6415", statOrder = { 6415 }, level = 58, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapAndMineThrowSpeedEssence3_"] = { type = "Suffix", affix = "of the Essence", "(14-17)% increased Trap and Mine Throwing Speed", statOrderKey = "6415", statOrder = { 6415 }, level = 74, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["TrapAndMineThrowSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(18-21)% increased Trap and Mine Throwing Speed", statOrderKey = "6415", statOrder = { 6415 }, level = 82, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["UnaffectedByShockedGroundInfluence1"] = { type = "Prefix", affix = "Crusader's", "Unaffected by Shocked Ground", statOrderKey = "6436", statOrder = { 6436 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0, }, }, - ["SocketedLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+2 to Level of Socketed Lightning Gems", statOrderKey = "36", statOrder = { 36 }, level = 68, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0, }, }, - ["MaximumFireResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 250, 0, }, }, - ["MaximumFireResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 125, 0, }, }, - ["PhysicalAddedAsExtraLightningBootsInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0, }, }, - ["PhysicalAddedAsExtraLightningBootsInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (6-8)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0, }, }, - ["CooldownRecoveryInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(6-10)% increased Cooldown Recovery Speed", statOrderKey = "3784", statOrder = { 3784 }, level = 75, group = "CooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0, }, }, - ["CooldownRecoveryInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% increased Cooldown Recovery Speed", statOrderKey = "3784", statOrder = { 3784 }, level = 80, group = "CooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0, }, }, - ["AvoidIgniteInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 68, group = "AvoidIgnite", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["AvoidIgniteInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 70, group = "AvoidIgnite", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["AvoidIgniteInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 75, group = "AvoidIgnite", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["AvoidFreezeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 68, group = "AvoidFreeze", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["AvoidFreezeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 70, group = "AvoidFreeze", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["AvoidFreezeInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 75, group = "AvoidFreeze", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["AvoidShockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 68, group = "AvoidShock", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["AvoidShockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 70, group = "AvoidShock", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["AvoidShockInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 75, group = "AvoidShock", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["AvoidProjectilesInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(6-9)% chance to avoid Projectiles", statOrderKey = "3778", statOrder = { 3778 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0, }, }, - ["AvoidProjectilesInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% chance to avoid Projectiles", statOrderKey = "3778", statOrder = { 3778 }, level = 73, group = "ChanceToAvoidProjectiles", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0, }, }, - ["UnaffectedByBurningGroundInfluence1"] = { type = "Prefix", affix = "Warlord's", "Unaffected by Burning Ground", statOrderKey = "6423", statOrder = { 6423 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["SocketedFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+2 to Level of Socketed Fire Gems", statOrderKey = "34", statOrder = { 34 }, level = 68, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["MaximumEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Endurance Charges", statOrderKey = "1076", statOrder = { 1076 }, level = 75, group = "MaximumEnduranceCharges", weightKey = { "boots_adjudicator", "default", }, weightVal = { 125, 0, }, }, - ["PhysicalAddedAsExtraFireBootsInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["PhysicalAddedAsExtraFireBootsInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["AvoidStunInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 68, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["AvoidStunInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(21-25)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 70, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["AvoidStunInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(26-30)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 75, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["AvoidFireDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Fire Damage from Hits", statOrderKey = "2563", statOrder = { 2563 }, level = 68, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["AvoidFireDamageInfluence2__"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Fire Damage from Hits", statOrderKey = "2563", statOrder = { 2563 }, level = 80, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["AvoidColdDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Cold Damage from Hits", statOrderKey = "2564", statOrder = { 2564 }, level = 68, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["AvoidColdDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Cold Damage from Hits", statOrderKey = "2564", statOrder = { 2564 }, level = 80, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["AvoidLightningDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 68, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["AvoidLightningDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 80, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["LifeRegenerationPercentInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (0.8-1.2)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["LifeRegenerationPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (1.3-1.5)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 73, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["AdditionalPhysicalDamageReductionInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(2-4)% additional Physical Damage Reduction", statOrderKey = "1519", statOrder = { 1519 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "boots_adjudicator", "default", }, weightVal = { 250, 0, }, }, - ["UnaffectedByChilledGroundInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Unaffected by Chilled Ground", statOrderKey = "6425", statOrder = { 6425 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["SocketedColdGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+2 to Level of Socketed Cold Gems", statOrderKey = "35", statOrder = { 35 }, level = 68, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["EnduranceChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrderKey = "1819", statOrder = { 1819 }, 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, }, }, - ["EnduranceChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrderKey = "1819", statOrder = { 1819 }, 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, }, }, - ["PhysicalAddedAsExtraColdBootsInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["PhysicalAddedAsExtraColdBootsInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (6-8)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["ElusiveOnCriticalStrikeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(5-10)% chance to gain Elusive on Critical Strike", statOrderKey = "3454", statOrder = { 3454 }, level = 75, group = "ElusiveOnCriticalStrike", weightKey = { "boots_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["ChanceToDodgeAttacksInfluence1"] = { type = "Suffix", affix = "of Redemption", "(3-5)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 68, group = "ChanceToDodge", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeAttacksInfluence2"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 73, group = "ChanceToDodge", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeAttacksInfluence3"] = { type = "Suffix", affix = "of Redemption", "(9-10)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 80, group = "ChanceToDodge", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeSpellsInfluence1"] = { type = "Suffix", affix = "of Redemption", "(3-5)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 68, group = "SpellDodgePercentage", weightKey = { "spell_dodge_mod", "boots_eyrie", "default", }, weightVal = { 0, 500, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeSpellsInfluence2___"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 73, group = "SpellDodgePercentage", weightKey = { "spell_dodge_mod", "boots_eyrie", "default", }, weightVal = { 0, 500, 0, }, tags = { "spell_dodge_mod", }, }, - ["ChanceToDodgeSpellsInfluence3"] = { type = "Suffix", affix = "of Redemption", "(9-10)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 80, group = "SpellDodgePercentage", weightKey = { "spell_dodge_mod", "boots_eyrie", "default", }, weightVal = { 0, 500, 0, }, tags = { "spell_dodge_mod", }, }, - ["IncreasedAilmentEffectOnEnemiesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(30-34)% increased Effect of Non-Damaging Ailments", statOrderKey = "6000", statOrder = { 6000 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["IncreasedAilmentEffectOnEnemiesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(35-40)% increased Effect of Non-Damaging Ailments", statOrderKey = "6000", statOrder = { 6000 }, level = 73, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["OnslaughtOnKillInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2176", statOrder = { 2176 }, level = 75, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["OnslaughtOnKillInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2176", statOrder = { 2176 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["UnaffectedByDesecratedGroundInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Unaffected by Desecrated Ground", statOrderKey = "6428", statOrder = { 6428 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["SocketedChaosGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+2 to Level of Socketed Chaos Gems", statOrderKey = "37", statOrder = { 37 }, level = 68, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["AdditionalPierceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce an additional Target", statOrderKey = "1064", statOrder = { 1064 }, level = 75, group = "Pierce", weightKey = { "boots_basilisk", "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["AdditionalPierceInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce 2 additional Targets", statOrderKey = "1064", statOrder = { 1064 }, level = 80, group = "Pierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PercentageStrengthInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Strength", statOrderKey = "528", statOrder = { 528 }, level = 68, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PercentageStrengthInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Strength", statOrderKey = "528", statOrder = { 528 }, level = 75, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["AvoidBleedAndPoisonInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% chance to Avoid being Poisoned", "(21-25)% chance to avoid Bleeding", statOrderKey = "1110,3389", statOrder = { 1110, 3389 }, level = 68, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["AvoidBleedAndPoisonInfluence2____"] = { type = "Suffix", affix = "of the Hunt", "(26-30)% chance to Avoid being Poisoned", "(26-30)% chance to avoid Bleeding", statOrderKey = "1110,3389", statOrder = { 1110, 3389 }, level = 70, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["AvoidBleedAndPoisonInfluence3"] = { type = "Suffix", affix = "of the Hunt", "(31-35)% chance to Avoid being Poisoned", "(31-35)% chance to avoid Bleeding", statOrderKey = "1110,3389", statOrder = { 1110, 3389 }, level = 75, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["TailwindOnCriticalStrikeInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Tailwind if you have dealt a Critical Strike Recently", statOrderKey = "6389", statOrder = { 6389 }, level = 75, group = "TailwindOnCriticalStrike", weightKey = { "boots_basilisk", "default", }, weightVal = { 100, 0, }, }, - ["FasterIgniteInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (5-7)% faster", statOrderKey = "1762", statOrder = { 1762 }, level = 68, group = "FasterDamageAilments", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["FasterIgniteInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (8-10)% faster", statOrderKey = "1762", statOrder = { 1762 }, level = 73, group = "FasterDamageAilments", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["FasterBleedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (5-7)% faster", statOrderKey = "4406", statOrder = { 4406 }, level = 68, group = "FasterDamageAilments", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["FasterBleedInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (8-10)% faster", statOrderKey = "4406", statOrder = { 4406 }, level = 73, group = "FasterDamageAilments", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["FasterPoisonInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (5-7)% faster", statOrderKey = "4407", statOrder = { 4407 }, level = 68, group = "FasterDamageAilments", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["FasterPoisonInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (8-10)% faster", statOrderKey = "4407", statOrder = { 4407 }, level = 73, group = "FasterDamageAilments", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["MaximumColdResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0, }, }, - ["MaximumColdResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 125, 0, }, }, - ["ConvertPhysicalToFireInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Fire Damage", statOrderKey = "1206", statOrder = { 1206 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0, }, tags = { "has_physical_conversion_mod", }, }, - ["ConvertPhysicalToFireInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Fire Damage", statOrderKey = "1206", statOrder = { 1206 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0, }, tags = { "has_physical_conversion_mod", }, }, - ["ConvertPhysicalToColdInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Cold Damage", statOrderKey = "1208", statOrder = { 1208 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0, }, tags = { "has_physical_conversion_mod", }, }, - ["ConvertPhysicalToColdInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Cold Damage", statOrderKey = "1208", statOrder = { 1208 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0, }, tags = { "has_physical_conversion_mod", }, }, - ["ConvertPhysicalToLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Lightning Damage", statOrderKey = "1210", statOrder = { 1210 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0, }, tags = { "has_physical_conversion_mod", }, }, - ["ConvertPhysicalToLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrderKey = "1210", statOrder = { 1210 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0, }, tags = { "has_physical_conversion_mod", }, }, - ["MaximumLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "10% increased Maximum total Recovery per second from Life Leech", statOrderKey = "1008", statOrder = { 1008 }, level = 75, group = "MaximumLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0, }, }, - ["MaximumEnergyShieldLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "10% increased Maximum total Recovery per second from Energy Shield Leech", statOrderKey = "1011", statOrder = { 1011 }, level = 75, group = "MaximumLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0, }, }, - ["AvoidInterruptionWhileCastingInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "1151", statOrder = { 1151 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_crusader", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["AvoidInterruptionWhileCastingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "1151", statOrder = { 1151 }, level = 70, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_crusader", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["AvoidInterruptionWhileCastingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "1151", statOrder = { 1151 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_crusader", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["GlobalCriticalStrikeChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0, }, }, - ["GlobalCriticalStrikeChanceInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 70, group = "CriticalStrikeChanceIncrease", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0, }, }, - ["GlobalCriticalStrikeChanceInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0, }, }, - ["MaximumFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Frenzy Charges", statOrderKey = "1078", statOrder = { 1078 }, level = 75, group = "MaximumFrenzyCharges", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 125, 0, }, }, - ["MeleeDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 68, group = "MeleeDamage", weightKey = { "no_attack_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["MeleeDamageInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 70, group = "MeleeDamage", weightKey = { "no_attack_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["MeleeDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 73, group = "MeleeDamage", weightKey = { "no_attack_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["ProjectileAttackDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["ProjectileAttackDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 70, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["ProjectileAttackDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 73, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["SpellDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 68, group = "SpellDamage", weightKey = { "no_caster_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 70, group = "SpellDamage", weightKey = { "no_caster_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 73, group = "SpellDamage", weightKey = { "no_caster_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["DamageOverTimeInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Damage over Time", statOrderKey = "550", statOrder = { 550 }, level = 68, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["DamageOverTimeInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Damage over Time", statOrderKey = "550", statOrder = { 550 }, level = 70, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["DamageOverTimeInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Damage over Time", statOrderKey = "550", statOrder = { 550 }, level = 73, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["MeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+2 to Melee Strike Range", statOrderKey = "1732", statOrder = { 1732 }, level = 82, group = "MeleeWeaponAndUnarmedRange", weightKey = { "no_attack_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["BlockPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(2-3)% Chance to Block Attack Damage", statOrderKey = "495", statOrder = { 495 }, level = 68, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["BlockPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(4-5)% Chance to Block Attack Damage", statOrderKey = "495", statOrder = { 495 }, level = 80, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["CullingStrikeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Culling Strike", statOrderKey = "1295", statOrder = { 1295 }, 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, }, }, - ["FrenzyChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1818", statOrder = { 1818 }, 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, }, }, - ["FrenzyChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1818", statOrder = { 1818 }, 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, }, }, - ["AddedPhysicalDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (4-5) to (6-8) Physical Damage if you've dealt a Critical Strike Recently", statOrderKey = "5893", statOrder = { 5893 }, level = 68, group = "AddedPhysicalDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AddedPhysicalDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (6-8) to (9-11) Physical Damage if you've dealt a Critical Strike Recently", statOrderKey = "5893", statOrder = { 5893 }, level = 73, group = "AddedPhysicalDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AddedFireDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Fire Damage if you've dealt a Critical Strike Recently", statOrderKey = "5883", statOrder = { 5883 }, level = 68, group = "AddedFireDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AddedFireDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Fire Damage if you've dealt a Critical Strike Recently", statOrderKey = "5883", statOrder = { 5883 }, level = 73, group = "AddedFireDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AddedColdDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Cold Damage if you've dealt a Critical Strike Recently", statOrderKey = "5878", statOrder = { 5878 }, level = 68, group = "AddedColdDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AddedColdDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Cold Damage if you've dealt a Critical Strike Recently", statOrderKey = "5878", statOrder = { 5878 }, level = 73, group = "AddedColdDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AddedLightningDamageCritRecentlyInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (41-47) Lightning Damage if you've dealt a Critical Strike Recently", statOrderKey = "5887", statOrder = { 5887 }, level = 68, group = "AddedLightningDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AddedLightningDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (48-60) Lightning Damage if you've dealt a Critical Strike Recently", statOrderKey = "5887", statOrder = { 5887 }, level = 73, group = "AddedLightningDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["MinionDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-22)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 68, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["MinionDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (23-26)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 70, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["MinionDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (27-30)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 73, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["IncreasedAccuracyPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Global Accuracy Rating", statOrderKey = "755", statOrder = { 755 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 0, }, }, - ["IncreasedAccuracyPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% increased Global Accuracy Rating", statOrderKey = "755", statOrder = { 755 }, level = 80, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 0, }, }, - ["GlobalChanceToBlindOnHitInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(8-11)% Global chance to Blind Enemies on hit", statOrderKey = "2139", statOrder = { 2139 }, level = 68, group = "BlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["GlobalChanceToBlindOnHitInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(12-15)% Global chance to Blind Enemies on hit", statOrderKey = "2139", statOrder = { 2139 }, level = 80, group = "BlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["AdditionalChanceToEvadeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% chance to Evade Attack Hits", statOrderKey = "4008", statOrder = { 4008 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "gloves_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["ChanceToIntimidateOnHitInfluence1"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrderKey = "4032", statOrder = { 4032 }, level = 85, group = "ChanceToIntimidateOnHit", weightKey = { "no_attack_mods", "gloves_basilisk", "default", }, weightVal = { 0, 250, 0, }, }, - ["ChanceToUnnerveOnHitInfluence1___"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrderKey = "4036", statOrder = { 4036 }, level = 85, group = "ChanceToUnnerveOnHit", weightKey = { "no_caster_mods", "gloves_basilisk", "default", }, weightVal = { 0, 250, 0, }, }, - ["StrikeSkillsAdditionalTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Strike Skills target 1 additional nearby Enemy", statOrderKey = "5847", statOrder = { 5847 }, level = 80, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_attack_mods", "gloves_basilisk", "default", }, weightVal = { 0, 250, 0, }, }, - ["ChanceToImpaleInfluence1"] = { type = "Prefix", affix = "Hunter's", "(8-11)% chance to Impale Enemies on Hit with Attacks", statOrderKey = "3749", statOrder = { 3749 }, level = 68, group = "ImpaleOnHit", weightKey = { "no_attack_mods", "gloves_basilisk", "default", }, weightVal = { 0, 500, 0, }, }, - ["ChanceToImpaleInfluence2"] = { type = "Prefix", affix = "Hunter's", "(12-15)% chance to Impale Enemies on Hit with Attacks", statOrderKey = "3749", statOrder = { 3749 }, level = 80, group = "ImpaleOnHit", weightKey = { "no_attack_mods", "gloves_basilisk", "default", }, weightVal = { 0, 500, 0, }, }, - ["AilmentDurationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(10-12)% increased Duration of Ailments on Enemies", statOrderKey = "1120", statOrder = { 1120 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["AilmentDurationInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% increased Duration of Ailments on Enemies", statOrderKey = "1120", statOrder = { 1120 }, level = 80, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PercentageDexterityInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Dexterity", statOrderKey = "529", statOrder = { 529 }, level = 68, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PercentageDexterityInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Dexterity", statOrderKey = "529", statOrder = { 529 }, level = 75, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["FireDamageOverTimeMultiplierInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "+(8-12)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["FireDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(13-16)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["ColdDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(8-12)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["ColdDamageOverTimeMultiplierInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "+(13-16)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["ChaosDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(8-12)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["ChaosDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(13-16)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["PhysicalDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(8-12)% to Physical Damage over Time Multiplier", statOrderKey = "583", statOrder = { 583 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["PhysicalDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(13-16)% to Physical Damage over Time Multiplier", statOrderKey = "583", statOrder = { 583 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["MaximumLightningResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0, }, }, - ["MaximumLightningResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 125, 0, }, }, - ["MaximumManaInfluence1"] = { type = "Prefix", affix = "Crusader's", "(9-11)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0, }, }, - ["MaximumManaInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(12-15)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 80, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0, }, }, - ["PhysTakenAsLightningHelmInfluence1"] = { type = "Prefix", affix = "Crusader's", "(4-6)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysTakenAsLightningHelmInfluence2"] = { type = "Prefix", affix = "Crusader's", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["EnemyLightningResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "-9% to Lightning Resistance", "Nearby Enemies have -9% to Lightning Resistance", statOrderKey = "934,5113", statOrder = { 934, 5113 }, level = 85, group = "LocalDisplayNearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0, }, }, - ["SpellBlockPercentInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(3-4)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0, }, }, - ["SpellBlockPercentInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0, }, }, - ["FortifyEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-20)% increased Effect of Fortify on you", statOrderKey = "2749", statOrder = { 2749 }, level = 75, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0, }, }, - ["FortifyEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% increased Effect of Fortify on you", statOrderKey = "2749", statOrder = { 2749 }, level = 80, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0, }, }, - ["EnergyShieldRegenInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1-1.5)% of Energy Shield per second", statOrderKey = "1832", statOrder = { 1832 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0, }, }, - ["MaximumPowerChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Power Charges", statOrderKey = "1080", statOrder = { 1080 }, level = 75, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 125, 0, }, }, - ["PhysTakenAsFireHelmetInfluence1"] = { type = "Prefix", affix = "Warlord's", "(4-6)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysTakenAsFireHelmetInfluence2"] = { type = "Prefix", affix = "Warlord's", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["ElementalDamageInfluence1____"] = { type = "Prefix", affix = "Warlord's", "(12-14)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 68, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["ElementalDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(15-18)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 70, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["ElementalDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(19-22)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 75, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["EnemyFireResistanceAuraInfluence1"] = { type = "Suffix", affix = "of the Conquest", "-9% to Fire Resistance", "Nearby Enemies have -9% to Fire Resistance", statOrderKey = "923,5112", statOrder = { 923, 5112 }, level = 85, group = "LocalDisplayNearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 250, 0, }, }, - ["CriticalStrikeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(11-13)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["CriticalStrikeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 70, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["CriticalStrikeMultiplierInfluence3"] = { type = "Suffix", affix = "of the Conquest", "+(17-20)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["ManaRegenerationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(41-55)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["ManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(56-70)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["GainAccuracyEqualToStrengthInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain Accuracy Rating equal to your Strength", statOrderKey = "4469", statOrder = { 4469 }, level = 75, group = "GainAccuracyEqualToStrength", weightKey = { "no_attack_mods", "helmet_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["MinionLifeInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Minions have (21-26)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 68, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["MinionLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Minions have (27-30)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 70, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["MinionLifeInfluence3"] = { type = "Suffix", affix = "of the Conquest", "Minions have (31-35)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 75, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["PowerChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Power Charge on Kill", statOrderKey = "1820", statOrder = { 1820 }, 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, }, }, - ["PowerChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Power Charge on Kill", statOrderKey = "1820", statOrder = { 1820 }, 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, }, }, - ["PhysTakenAsColdHelmetInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysTakenAsColdHelmetInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["SpellsAdditionalUnleashSealInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Skills supported by Unleash have +1 to maximum number of Seals", statOrderKey = "6509", statOrder = { 6509 }, level = 80, group = "SpellsAdditionalUnleashSeal", weightKey = { "no_caster_mods", "helmet_eyrie", "default", }, weightVal = { 0, 250, 0, }, }, - ["EnemyColdResistanceAuraInfluence1__"] = { type = "Suffix", affix = "of Redemption", "-9% to Cold Resistance", "Nearby Enemies have -9% to Cold Resistance", statOrderKey = "929,5110", statOrder = { 929, 5110 }, level = 85, group = "LocalDisplayNearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["ReducedManaReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(2-3)% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 68, group = "ReducedManaReservationsCost", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["ReducedManaReservationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(4-5)% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["IgniteChanceAndDamageInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(15-17)% increased Burning Damage", "(6-8)% chance to Ignite", statOrderKey = "1137,1282", statOrder = { 1137, 1282 }, level = 68, group = "ChanceToIgnite", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["IgniteChanceAndDamageInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(18-20)% increased Burning Damage", "(6-8)% chance to Ignite", statOrderKey = "1137,1282", statOrder = { 1137, 1282 }, level = 75, group = "ChanceToIgnite", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["FreezeChanceAndDurationInfluence1____"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrderKey = "1118,1285", statOrder = { 1118, 1285 }, level = 68, group = "ChanceToFreeze", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["FreezeChanceAndDurationInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrderKey = "1118,1285", statOrder = { 1118, 1285 }, level = 75, group = "ChanceToFreeze", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["ShockChanceAndEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(8-12)% increased Effect of Shock", statOrderKey = "1289,6217", statOrder = { 1289, 6217 }, level = 68, group = "ChanceToShock", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["ShockChanceAndEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(13-15)% increased Effect of Shock", statOrderKey = "1289,6217", statOrder = { 1289, 6217 }, level = 75, group = "ChanceToShock", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AddedManaRegenerationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Regenerate (3-5) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AddedManaRegenerationInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Regenerate (6-8) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["SpellAddedFireDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 70, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 70, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 70, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 70, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedPhysicalDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 70, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["EnemyChaosResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "-9% to Chaos Resistance", "Nearby Enemies have -9% to Chaos Resistance", statOrderKey = "938,5109", statOrder = { 938, 5109 }, level = 85, group = "LocalDisplayNearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 250, 0, }, }, - ["PercentageIntelligenceInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Intelligence", statOrderKey = "530", statOrder = { 530 }, level = 68, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PercentageIntelligenceInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Intelligence", statOrderKey = "530", statOrder = { 530 }, level = 75, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["IgnitingConfluxInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrderKey = "4527", statOrder = { 4527 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ChillingConfluxInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrderKey = "4527", statOrder = { 4527 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ShockingConfluxInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrderKey = "4527", statOrder = { 4527 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PhysTakenAsLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(5-10)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysTakenAsLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(11-15)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["ConsecratedGroundStationaryInfluence1_"] = { type = "Prefix", affix = "Crusader's", "You have Consecrated Ground around you while stationary", statOrderKey = "4116", statOrder = { 4116 }, level = 75, group = "ConsecratedGroundStationary", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0, }, }, - ["HolyPhysicalExplosionInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrderKey = "4342", statOrder = { 4342 }, level = 85, group = "EnemiesExplodeOnDeath", weightKey = { "body_armour_crusader", "default", }, weightVal = { 25, 0, }, }, - ["PercentageIntelligenceBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-8)% increased Intelligence", statOrderKey = "530", statOrder = { 530 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0, }, }, - ["PercentageIntelligenceBodyInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "(9-12)% increased Intelligence", statOrderKey = "530", statOrder = { 530 }, level = 75, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0, }, }, - ["AddPowerChargeOnCritInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% chance to gain a Power Charge on Critical Strike", statOrderKey = "1093", statOrder = { 1093 }, level = 80, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 250, 0, }, }, - ["EnergyShieldOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-4)% of Energy Shield on Kill", statOrderKey = "1027", statOrder = { 1027 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0, }, }, - ["EnergyShieldOnKillPercentInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Recover (5-6)% of Energy Shield on Kill", statOrderKey = "1027", statOrder = { 1027 }, level = 80, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0, }, }, - ["EnergyShieldRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(8-11)% increased Energy Shield Recovery rate", statOrderKey = "2155", statOrder = { 2155 }, level = 68, group = "EnergyShieldRecovery", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0, }, }, - ["EnergyShieldRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(12-15)% increased Energy Shield Recovery rate", statOrderKey = "2155", statOrder = { 2155 }, level = 80, group = "EnergyShieldRecovery", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0, }, }, - ["PhysTakenAsFireInfluence1"] = { type = "Prefix", affix = "Warlord's", "(5-10)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysTakenAsFireInfluence2"] = { type = "Prefix", affix = "Warlord's", "(11-15)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["SocketedActiveGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of Socketed Active Skill Gems", statOrderKey = "53", statOrder = { 53 }, level = 80, group = "IncreaseSkillGemLevel", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0, }, }, - ["ReflectedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Warlord's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrderKey = "6076", statOrder = { 6076 }, level = 75, group = "ReflectedDamage", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["AllResistancesInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(10-12)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 68, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["AllResistancesInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(13-15)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 70, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["AllResistancesInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(16-18)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 75, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["PercentageStrengthBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-8)% increased Strength", statOrderKey = "528", statOrder = { 528 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["PercentageStrengthBodyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(9-12)% increased Strength", statOrderKey = "528", statOrder = { 528 }, level = 75, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["EnduranceChargeIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain an Endurance Charge every second if you've been Hit Recently", statOrderKey = "4491", statOrder = { 4491 }, level = 80, group = "EnduranceChargeIfHitRecently", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0, }, }, - ["LifeOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-4)% of Life on Kill", statOrderKey = "1026", statOrder = { 1026 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["LifeOnKillPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Recover (5-6)% of Life on Kill", statOrderKey = "1026", statOrder = { 1026 }, level = 80, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["LifeRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(8-11)% increased Life Recovery rate", statOrderKey = "2153", statOrder = { 2153 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["LifeRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(12-15)% increased Life Recovery rate", statOrderKey = "2153", statOrder = { 2153 }, level = 80, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["SocketedAttacksManaCostInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Socketed Attacks have -15 to Total Mana Cost", statOrderKey = "263", statOrder = { 263 }, level = 85, group = "SocketedAttacksManaCost", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 200, 0, }, tags = { "has_attack_mod", }, }, - ["PhysTakenAsColdInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(5-10)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["PhysTakenAsColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(11-15)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0, }, tags = { "has_damage_taken_as_mod", }, }, - ["SocketedSupportGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of Socketed Support Gems", statOrderKey = "52", statOrder = { 52 }, level = 80, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["ReflectedElementalDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrderKey = "4328", statOrder = { 4328 }, level = 75, group = "ReflectedDamage", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["NearbyEnemiesAreBlindedInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Nearby Enemies are Blinded", statOrderKey = "2584", statOrder = { 2584 }, level = 75, group = "NearbyEnemiesAreBlinded", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["PercentageDexterityBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-8)% increased Dexterity", statOrderKey = "529", statOrder = { 529 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["PercentageDexterityBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(9-12)% increased Dexterity", statOrderKey = "529", statOrder = { 529 }, level = 75, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["FrenzyChargeOnHitChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "10% chance to gain a Frenzy Charge on Hit", statOrderKey = "1096", statOrder = { 1096 }, level = 80, group = "FrenzyChargeOnHitChance", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["ManaOnKillPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "Recover (3-4)% of Mana on Kill", statOrderKey = "1028", statOrder = { 1028 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["ManaOnKillPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "Recover (5-6)% of Mana on Kill", statOrderKey = "1028", statOrder = { 1028 }, level = 80, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["ManaRecoveryRateBodyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Mana Recovery rate", statOrderKey = "2154", statOrder = { 2154 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["ManaRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Mana Recovery rate", statOrderKey = "2154", statOrder = { 2154 }, level = 80, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AuraEffectBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased Effect of Auras on you", statOrderKey = "1396", statOrder = { 1396 }, level = 75, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["AuraEffectBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Effect of Auras on you", statOrderKey = "1396", statOrder = { 1396 }, level = 80, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["MaximumLifeBodyInfluence1"] = { type = "Prefix", affix = "Hunter's", "(5-8)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["MaximumLifeBodyInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(9-12)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PhysTakenAsChaosInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(5-10)% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1657", statOrder = { 1657 }, level = 75, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PhysTakenAsChaosInfluence2"] = { type = "Prefix", affix = "Hunter's", "(11-15)% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1657", statOrder = { 1657 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["AdditionalCurseOnEnemiesInfluence1"] = { type = "Prefix", affix = "Hunter's", "You can apply an additional Curse", statOrderKey = "1422", statOrder = { 1422 }, level = 82, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0, }, }, - ["RegenerateLifeOver1SecondInfluence1"] = { type = "Prefix", affix = "Hunter's", "Every 5 seconds, Regenerate 15% of Life over one second", statOrderKey = "2966", statOrder = { 2966 }, level = 80, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0, }, }, - ["OfferingEffectInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% increased effect of Offerings", statOrderKey = "3240", statOrder = { 3240 }, level = 68, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["OfferingEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% increased effect of Offerings", statOrderKey = "3240", statOrder = { 3240 }, level = 80, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["AdditionalCritWithAttacksInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(0-1)% to Critical Strike Chance", statOrderKey = "3668", statOrder = { 3668 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "no_attack_mods", "body_armour_basilisk", "default", }, weightVal = { 0, 250, 0, }, }, - ["AdditionalCritWithAttacksInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(1-2)% to Critical Strike Chance", statOrderKey = "3668", statOrder = { 3668 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "no_attack_mods", "body_armour_basilisk", "default", }, weightVal = { 0, 250, 0, }, }, - ["AdditionalCritWithSpellsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Spells have +(0-1)% to Critical Strike Chance ", statOrderKey = "6289", statOrder = { 6289 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "no_caster_mods", "body_armour_basilisk", "default", }, weightVal = { 0, 250, 0, }, }, - ["AdditionalCritWithSpellsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Spells have +(1-2)% to Critical Strike Chance ", statOrderKey = "6289", statOrder = { 6289 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "no_caster_mods", "body_armour_basilisk", "default", }, weightVal = { 0, 250, 0, }, }, - ["LifeRegenerationPercentBodyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1-1.5)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["LifeRegenerationPercentBodyInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["MaximumLightningResistanceHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield_crusader", "quiver_crusader", "default", }, weightVal = { 250, 250, 0, }, }, - ["MaximumLightningResistanceHighInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 80, group = "MaximumLightningResistance", weightKey = { "shield_crusader", "quiver_crusader", "default", }, weightVal = { 250, 250, 0, }, }, - ["MaximumLightningResistanceHighInfluence3_"] = { type = "Prefix", affix = "Crusader's", "+3% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 86, group = "MaximumLightningResistance", weightKey = { "shield_crusader", "default", }, weightVal = { 250, 0, }, }, - ["DamagePerBlockChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrderKey = "4215", statOrder = { 4215 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0, }, }, - ["MinimumPowerChargeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+1 to Minimum Power Charges", statOrderKey = "1079", statOrder = { 1079 }, level = 68, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0, }, }, - ["MinimumPowerChargeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+2 to Minimum Power Charges", statOrderKey = "1079", statOrder = { 1079 }, level = 80, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0, }, }, - ["RecoverEnergyShieldPercentOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-5)% of Energy Shield when you Block", statOrderKey = "1672", statOrder = { 1672 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_crusader", "default", }, weightVal = { 250, 0, }, }, - ["EnergyShieldRegenHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1.5-2.5)% of Energy Shield per second", statOrderKey = "1832", statOrder = { 1832 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "shield_crusader", "amulet_crusader", "default", }, weightVal = { 250, 250, 0, }, }, - ["ChanceToChillAttackersOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrderKey = "4064", statOrder = { 4064 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["ChanceToChillAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrderKey = "4064", statOrder = { 4064 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["ChanceToShockAttackersOnBlockInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrderKey = "6216", statOrder = { 6216 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["ChanceToShockAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrderKey = "6216", statOrder = { 6216 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["SpellBlockIfBlockedSpellsInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "+(7-9)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrderKey = "6293", statOrder = { 6293 }, level = 68, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0, }, }, - ["SpellBlockIfBlockedSpellsInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(10-12)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrderKey = "6293", statOrder = { 6293 }, level = 75, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0, }, }, - ["MaximumFireResistanceHighInfluence1__"] = { type = "Prefix", affix = "Warlord's", "+1% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 75, group = "MaximumFireResist", weightKey = { "shield_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 250, 250, 0, }, }, - ["MaximumFireResistanceHighInfluence2__"] = { type = "Prefix", affix = "Warlord's", "+2% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 80, group = "MaximumFireResist", weightKey = { "shield_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 250, 250, 0, }, }, - ["MaximumFireResistanceHighInfluence3"] = { type = "Prefix", affix = "Warlord's", "+3% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 86, group = "MaximumFireResist", weightKey = { "shield_adjudicator", "default", }, weightVal = { 250, 0, }, }, - ["AreaOfEffectInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 68, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["AreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 75, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["AreaOfEffectInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 80, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["MinimumEnduranceChargeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+1 to Minimum Endurance Charges", statOrderKey = "1075", statOrder = { 1075 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["MinimumEnduranceChargeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+2 to Minimum Endurance Charges", statOrderKey = "1075", statOrder = { 1075 }, level = 80, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["RecoverLifePercentOnBlockInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-5)% of Life when you Block", statOrderKey = "2243", statOrder = { 2243 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_adjudicator", "default", }, weightVal = { 250, 0, }, }, - ["AttackBlockIfBlockedAttacksInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(5-6)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrderKey = "3924", statOrder = { 3924 }, level = 68, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["AttackBlockIfBlockedAttacksInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(7-8)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrderKey = "3924", statOrder = { 3924 }, level = 75, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["AdditionalPhysicalDamageReductionHighInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(3-5)% additional Physical Damage Reduction", statOrderKey = "1519", statOrder = { 1519 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "shield_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 250, 250, 0, }, }, - ["MaximumColdResistanceHighInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 75, group = "MaximumColdResist", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 250, 250, 0, }, }, - ["MaximumColdResistanceHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "+2% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 80, group = "MaximumColdResist", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 250, 250, 0, }, }, - ["MaximumColdResistanceHighInfluence3__"] = { type = "Prefix", affix = "Redeemer's", "+3% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 86, group = "MaximumColdResist", weightKey = { "shield_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["EnergyShieldDelayHighInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% faster start of Energy Shield Recharge", statOrderKey = "871", statOrder = { 871 }, level = 68, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["EnergyShieldDelayHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% faster start of Energy Shield Recharge", statOrderKey = "871", statOrder = { 871 }, level = 75, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["EnergyShieldDelayHighInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% faster start of Energy Shield Recharge", statOrderKey = "871", statOrder = { 871 }, level = 80, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["MinimumFrenzyChargeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+1 to Minimum Frenzy Charges", statOrderKey = "1077", statOrder = { 1077 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["MinimumFrenzyChargeInfluence2"] = { type = "Suffix", affix = "of Redemption", "+2 to Minimum Frenzy Charges", statOrderKey = "1077", statOrder = { 1077 }, level = 80, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["RecoverManaPercentOnBlockInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Recover (3-5)% of your maximum Mana when you Block", statOrderKey = "5289", statOrder = { 5289 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["AdditionalChanceToEvadeHighInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(3-5)% chance to Evade Attack Hits", statOrderKey = "4008", statOrder = { 4008 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "shield_eyrie", "amulet_eyrie", "default", }, weightVal = { 250, 250, 0, }, }, - ["AvoidPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to Avoid Physical Damage from Hits", statOrderKey = "2561", statOrder = { 2561 }, level = 68, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["AvoidPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to Avoid Physical Damage from Hits", statOrderKey = "2561", statOrder = { 2561 }, level = 80, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["CurseEffectivenessInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Effect of your Curses", statOrderKey = "1799", statOrder = { 1799 }, level = 73, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["CurseEffectivenessInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Effect of your Curses", statOrderKey = "1799", statOrder = { 1799 }, level = 80, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AuraEffectInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Effect of Auras on you", statOrderKey = "1396", statOrder = { 1396 }, level = 73, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AuraEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Effect of Auras on you", statOrderKey = "1396", statOrder = { 1396 }, level = 80, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["IncreasedAilmentEffectLowInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased Effect of Non-Damaging Ailments", statOrderKey = "6000", statOrder = { 6000 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["IncreasedAilmentEffectLowInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Effect of Non-Damaging Ailments", statOrderKey = "6000", statOrder = { 6000 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["MaximumResistancesInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to all maximum Resistances", statOrderKey = "939", statOrder = { 939 }, level = 80, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0, }, }, - ["MaximumResistancesInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to all maximum Resistances", statOrderKey = "939", statOrder = { 939 }, level = 85, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0, }, }, - ["MaximumChaosResistanceHighInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to maximum Chaos Resistance", statOrderKey = "937", statOrder = { 937 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield_basilisk", "quiver_basilisk", "default", }, weightVal = { 250, 250, 0, }, }, - ["MaximumChaosResistanceHighInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to maximum Chaos Resistance", statOrderKey = "937", statOrder = { 937 }, level = 80, group = "MaximumChaosResistance", weightKey = { "shield_basilisk", "quiver_basilisk", "default", }, weightVal = { 250, 250, 0, }, }, - ["MaximumChaosResistanceHighInfluence3"] = { type = "Prefix", affix = "Hunter's", "+3% to maximum Chaos Resistance", statOrderKey = "937", statOrder = { 937 }, level = 86, group = "MaximumChaosResistance", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0, }, }, - ["MaximumLifeInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["MaximumLifeInfluence2"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["NoExtraDamageFromBleedMovingInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Moving while Bleeding doesn't cause you to take extra Damage", statOrderKey = "2372", statOrder = { 2372 }, level = 75, group = "NoExtraDamageFromBleedMoving", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["GainRandomChargeOnBlockInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain an Endurance, Frenzy or Power charge when you Block", statOrderKey = "4523", statOrder = { 4523 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0, }, }, - ["SocketedGemsReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 10% reduced Mana Reservation", statOrderKey = "244", statOrder = { 244 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["SocketedGemsReducedReservationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 15% reduced Mana Reservation", statOrderKey = "244", statOrder = { 244 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["DegenDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(4-6)% reduced Damage taken from Damage Over Time", statOrderKey = "1493", statOrder = { 1493 }, level = 68, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["DegenDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% reduced Damage taken from Damage Over Time", statOrderKey = "1493", statOrder = { 1493 }, level = 80, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["LifeRegenerationPercentHighInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.1-1.5)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["LifeRegenerationPercentHighInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 80, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["PhysicalAddedAsExtraLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (5-10)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0, }, }, - ["PhysicalAddedAsExtraLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (11-15)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0, }, }, - ["AdditionalArrowInfluence1"] = { type = "Prefix", affix = "Warlord's", "Bow Attacks fire an additional Arrow", statOrderKey = "1067", statOrder = { 1067 }, level = 80, group = "AdditionalArrows", weightKey = { "no_attack_mods", "quiver_adjudicator", "default", }, weightVal = { 0, 250, 0, }, }, - ["PhysicalAddedAsExtraFireInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Gain (5-10)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["PhysicalAddedAsExtraFireInfluence2_____"] = { type = "Prefix", affix = "Warlord's", "Gain (11-15)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["MaimOnHitInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to Maim on Hit", statOrderKey = "5271", statOrder = { 5271 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "no_attack_mods", "quiver_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["MaimOnHitInfluence2___"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 20% chance to Maim on Hit", statOrderKey = "5271", statOrder = { 5271 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_attack_mods", "quiver_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["ChancetoGainPhasingOnKillInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["ChancetoGainPhasingOnKillInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["ChancetoGainPhasingOnKillInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["BleedOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 68, group = "BleedingDamage", weightKey = { "no_attack_mods", "quiver_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["BleedOnHitDamageInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 75, group = "BleedingDamage", weightKey = { "no_attack_mods", "quiver_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["PhysicalAddedAsExtraColdInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["PhysicalAddedAsExtraColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["MovementVelocityExtraInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["MovementVelocityExtraInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["ManaGainPerTargetInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(3-5) Mana gained for each Enemy hit by your Attacks", statOrderKey = "1021", statOrder = { 1021 }, level = 68, group = "ManaGainPerTarget", weightKey = { "no_attack_mods", "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 0, 500, 500, 0, }, }, - ["ChaosDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ChaosDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PhysicalDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier", statOrderKey = "583", statOrder = { 583 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PhysicalDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Physical Damage over Time Multiplier", statOrderKey = "583", statOrder = { 583 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["FireDamageOverTimeMultiplierQuiverInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["FireDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PoisonOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrderKey = "2353,2361", statOrder = { 2353, 2361 }, level = 68, group = "PoisonDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PoisonOnHitDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrderKey = "2353,2361", statOrder = { 2353, 2361 }, level = 75, group = "PoisonDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["GlobalEnergyShieldPercentInfluence1"] = { type = "Prefix", affix = "Crusader's", "(7-9)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 68, group = "EnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0, }, }, - ["GlobalEnergyShieldPercentInfluence2"] = { type = "Prefix", affix = "Crusader's", "(10-12)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 78, group = "EnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0, }, }, - ["GlobalEnergyShieldPercentInfluence3"] = { type = "Prefix", affix = "Crusader's", "(13-15)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 82, group = "EnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0, }, }, - ["CriticalStrikeChanceShockedEnemiesInfluence1"] = { type = "Prefix", affix = "Crusader's", "(30-34)% increased Critical Strike Chance against Shocked Enemies", statOrderKey = "4131", statOrder = { 4131 }, level = 68, group = "CritChanceToShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0, }, }, - ["CriticalStrikeChanceShockedEnemiesInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-39)% increased Critical Strike Chance against Shocked Enemies", statOrderKey = "4131", statOrder = { 4131 }, level = 75, group = "CritChanceToShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0, }, }, - ["CriticalStrikeChanceShockedEnemiesInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(40-45)% increased Critical Strike Chance against Shocked Enemies", statOrderKey = "4131", statOrder = { 4131 }, level = 80, group = "CritChanceToShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0, }, }, - ["LightningDamageInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(16-20)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 68, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0, }, }, - ["LightningDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "(21-25)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 75, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0, }, }, - ["LightningDamageInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(26-30)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 80, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0, }, }, - ["FortifyOnMeleeStunInfluence1"] = { type = "Prefix", affix = "Crusader's", "(8-12)% chance to gain Fortify when you Stun an Enemy with Melee Damage", statOrderKey = "4012", statOrder = { 4012 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "no_attack_mods", "belt_crusader", "default", }, weightVal = { 0, 250, 0, }, }, - ["CooldownRecoveryHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-15)% increased Cooldown Recovery Speed", statOrderKey = "3784", statOrder = { 3784 }, level = 75, group = "CooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0, }, }, - ["CooldownRecoveryHighInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Cooldown Recovery Speed", statOrderKey = "3784", statOrder = { 3784 }, level = 84, group = "CooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0, }, }, - ["SpellDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(20-25)% increased Spell Damage during any Flask Effect", statOrderKey = "6301", statOrder = { 6301 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_crusader", "default", }, weightVal = { 0, 500, 0, }, }, - ["SpellDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Spell Damage during any Flask Effect", statOrderKey = "6301", statOrder = { 6301 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_crusader", "default", }, weightVal = { 0, 500, 0, }, }, - ["SpellDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Spell Damage during any Flask Effect", statOrderKey = "6301", statOrder = { 6301 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_crusader", "default", }, weightVal = { 0, 500, 0, }, }, - ["EnergyShieldRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-15)% increased Energy Shield Recovery rate", statOrderKey = "2155", statOrder = { 2155 }, level = 68, group = "EnergyShieldRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0, }, }, - ["EnergyShieldRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Energy Shield Recovery rate", statOrderKey = "2155", statOrder = { 2155 }, level = 75, group = "EnergyShieldRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0, }, }, - ["RemoveShockOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Remove Shock when you use a Flask", statOrderKey = "6186", statOrder = { 6186 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0, }, }, - ["GlobalArmourPercentInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 68, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["GlobalArmourPercentInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 78, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["GlobalArmourPercentInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 82, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["FireDamageBurningEnemiesInfluence1"] = { type = "Prefix", affix = "Warlord's", "(22-27) to (41-46) added Fire Damage against Burning Enemies", statOrderKey = "6362", statOrder = { 6362 }, level = 68, group = "AddedFireDamageToBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["FireDamageBurningEnemiesInfluence2"] = { type = "Prefix", affix = "Warlord's", "(28-32) to (47-51) added Fire Damage against Burning Enemies", statOrderKey = "6362", statOrder = { 6362 }, level = 75, group = "AddedFireDamageToBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["FireDamageBurningEnemiesInfluence3"] = { type = "Prefix", affix = "Warlord's", "(33-39) to (52-55) added Fire Damage against Burning Enemies", statOrderKey = "6362", statOrder = { 6362 }, level = 80, group = "AddedFireDamageToBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["FireDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 68, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["FireDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 75, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["FireDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(26-30)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 80, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["ReducedCriticalStrikeDamageTakenInfluence1"] = { type = "Prefix", affix = "Warlord's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrderKey = "833", statOrder = { 833 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["ReducedCriticalStrikeDamageTakenInfluence2_"] = { type = "Prefix", affix = "Warlord's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrderKey = "833", statOrder = { 833 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["AllDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(11-15)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 75, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["AllDamageInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 80, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["AllDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 85, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["MeleeDamageDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(20-25)% increased Melee Damage during any Flask Effect", statOrderKey = "5850", statOrder = { 5850 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["MeleeDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(26-30)% increased Melee Damage during any Flask Effect", statOrderKey = "5850", statOrder = { 5850 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["MeleeDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% increased Melee Damage during any Flask Effect", statOrderKey = "5850", statOrder = { 5850 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["LifeRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-15)% increased Life Recovery rate", statOrderKey = "2153", statOrder = { 2153 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0, }, }, - ["LifeRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% increased Life Recovery rate", statOrderKey = "2153", statOrder = { 2153 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0, }, }, - ["RemoveIgniteOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Remove Ignite and Burning when you use a Flask", statOrderKey = "6182", statOrder = { 6182 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["GlobalEvasionPercentInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(7-9)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 68, group = "EvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["GlobalEvasionPercentInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(10-12)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 78, group = "EvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["GlobalEvasionPercentInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 82, group = "EvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["DamageChilledEnemiesInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Damage with Hits against Chilled Enemies", statOrderKey = "4222", statOrder = { 4222 }, level = 68, group = "IncreasedDamageToChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["DamageChilledEnemiesInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Damage with Hits against Chilled Enemies", statOrderKey = "4222", statOrder = { 4222 }, level = 75, group = "IncreasedDamageToChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["DamageChilledEnemiesInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Damage with Hits against Chilled Enemies", statOrderKey = "4222", statOrder = { 4222 }, level = 80, group = "IncreasedDamageToChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["FlaskEffectInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (4-7)% increased Effect", statOrderKey = "1921", statOrder = { 1921 }, level = 75, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["FlaskEffectInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (8-10)% increased Effect", statOrderKey = "1921", statOrder = { 1921 }, level = 81, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["ColdDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 68, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["ColdDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 75, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["ColdDamageInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 80, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AttackSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(8-14)% increased Attack Speed during any Flask Effect", statOrderKey = "2481", statOrder = { 2481 }, level = 68, group = "SpeedDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_eyrie", "default", }, weightVal = { 0, 250, 0, }, }, - ["ProjectileAttackDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "6110", statOrder = { 6110 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_eyrie", "default", }, weightVal = { 0, 500, 0, }, }, - ["ProjectileAttackDamageDuringFlaskEffectInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "6110", statOrder = { 6110 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_eyrie", "default", }, weightVal = { 0, 500, 0, }, }, - ["ProjectileAttackDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "6110", statOrder = { 6110 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_eyrie", "default", }, weightVal = { 0, 500, 0, }, }, - ["ManaRecoveryRateInfluence1"] = { type = "Suffix", affix = "of Redemption", "(10-15)% increased Mana Recovery rate", statOrderKey = "2154", statOrder = { 2154 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["ManaRecoveryRateInfluence2__"] = { type = "Suffix", affix = "of Redemption", "(16-20)% increased Mana Recovery rate", statOrderKey = "2154", statOrder = { 2154 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["RemoveFreezeOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of Redemption", "Remove Chill and Freeze when you use a Flask", statOrderKey = "6180", statOrder = { 6180 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["FlaskChanceToNotConsumeChargesInfluence1"] = { type = "Prefix", affix = "Hunter's", "(6-10)% chance for Flasks you use to not consume Charges", statOrderKey = "3403", statOrder = { 3403 }, level = 80, group = "FlaskChargesUsed", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["FlaskChargeOnCritInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain a Flask Charge when you deal a Critical Strike", statOrderKey = "2580", statOrder = { 2580 }, level = 75, group = "FlaskChargeOnCrit", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0, }, }, - ["ChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "(16-20)% increased Chaos Damage", statOrderKey = "708", statOrder = { 708 }, level = 68, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ChaosDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(21-25)% increased Chaos Damage", statOrderKey = "708", statOrder = { 708 }, level = 75, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "(26-30)% increased Chaos Damage", statOrderKey = "708", statOrder = { 708 }, level = 80, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PercentageAllAttributesInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-9)% increased Attributes", statOrderKey = "527", statOrder = { 527 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PercentageAllAttributesInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(10-12)% increased Attributes", statOrderKey = "527", statOrder = { 527 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["CastSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(8-14)% increased Cast Speed during any Flask Effect", statOrderKey = "3971", statOrder = { 3971 }, level = 68, group = "SpeedDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_basilisk", "default", }, weightVal = { 0, 250, 0, }, }, - ["ArmourPenetrationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(11-8)% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 68, group = "ArmourPenetration", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ArmourPenetrationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(15-12)% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 75, group = "ArmourPenetration", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["MovementSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-10)% increased Movement Speed during any Flask Effect", statOrderKey = "2366", statOrder = { 2366 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PhysicalAttackDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "-(35-25) Physical Damage taken from Attack Hits", statOrderKey = "1482", statOrder = { 1482 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PhysicalAttackDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "-(45-36) Physical Damage taken from Attack Hits", statOrderKey = "1482", statOrder = { 1482 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToShockAddedDamageInfluence1"] = { type = "Prefix", affix = "Crusader's", "(4-6)% chance to Shock", "Adds (3-7) to (34-38) Lightning Damage against Shocked Enemies", statOrderKey = "1289,4546", statOrder = { 1289, 4546 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToShockAddedDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "(7-10)% chance to Shock", "Adds (6-10) to (41-45) Lightning Damage against Shocked Enemies", statOrderKey = "1289,4546", statOrder = { 1289, 4546 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0, }, }, - ["AddedLightningDamagePerPowerChargeInfluence1__"] = { type = "Prefix", affix = "Crusader's", "1 to (6-8) Lightning Damage per Power Charge", statOrderKey = "5888", statOrder = { 5888 }, level = 75, group = "AddedLightningDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0, }, }, - ["AddedLightningDamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(1-2) to (9-11) Lightning Damage per Power Charge", statOrderKey = "5888", statOrder = { 5888 }, level = 80, group = "AddedLightningDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0, }, }, - ["SpellDamageRingInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(15-17)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 68, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_crusader", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageRingInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 75, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_crusader", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamageRingInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(22-25)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 80, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_crusader", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["ReducedCurseEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% reduced Effect of Curses on you", statOrderKey = "1424", statOrder = { 1424 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0, }, }, - ["ReducedCurseEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(30-35)% reduced Effect of Curses on you", statOrderKey = "1424", statOrder = { 1424 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0, }, }, - ["CurseOnHitConductivityInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Level 5 Conductivity on Hit", statOrderKey = "1722", statOrder = { 1722 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitConductivityInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Level 8 Conductivity on Hit", statOrderKey = "1722", statOrder = { 1722 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0, }, }, - ["LifeGainedOnSpellHitInfluence1"] = { type = "Prefix", affix = "Crusader's", "+(8-12) Life gained for each Enemy hit by your Spells", statOrderKey = "1016", statOrder = { 1016 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_crusader", "default", }, weightVal = { 0, 500, 0, }, }, - ["LifeGainedOnSpellHitInfluence2"] = { type = "Prefix", affix = "Crusader's", "+(13-15) Life gained for each Enemy hit by your Spells", statOrderKey = "1016", statOrder = { 1016 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_crusader", "default", }, weightVal = { 0, 500, 0, }, }, - ["GlobalCriticalStrikeChanceRingInfluence1___"] = { type = "Suffix", affix = "of the Crusade", "(15-17)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0, }, }, - ["GlobalCriticalStrikeChanceRingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0, }, }, - ["GlobalCriticalStrikeChanceRingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 80, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToIgniteAddedDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(4-6)% chance to Ignite", "Adds (9-12) to (27-30) Fire Damage against Ignited Enemies", statOrderKey = "1282,4544", statOrder = { 1282, 4544 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToIgniteAddedDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(7-10)% chance to Ignite", "Adds (13-16) to (33-36) Fire Damage against Ignited Enemies", statOrderKey = "1282,4544", statOrder = { 1282, 4544 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["AddedFireDamagePerEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "(2-3) to (4-5) Fire Damage per Endurance Charge", statOrderKey = "5884", statOrder = { 5884 }, level = 75, group = "AddedFireDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["AddedFireDamagePerEnduranceChargeInfluence2__"] = { type = "Prefix", affix = "Warlord's", "(3-4) to (6-7) Fire Damage per Endurance Charge", statOrderKey = "5884", statOrder = { 5884 }, level = 80, group = "AddedFireDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["MeleeDamageRingInfluence1"] = { type = "Prefix", affix = "Warlord's", "(15-17)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 68, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["MeleeDamageRingInfluence2"] = { type = "Prefix", affix = "Warlord's", "(18-21)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 75, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["MeleeDamageRingInfluence3"] = { type = "Prefix", affix = "Warlord's", "(22-25)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 80, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["CurseOnHitFlammabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Level 5 Flammability on Hit", statOrderKey = "1725", statOrder = { 1725 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitFlammabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Level 8 Flammability on Hit", statOrderKey = "1725", statOrder = { 1725 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitVulnerabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Level 5 Vulnerability on Hit", statOrderKey = "1717", statOrder = { 1717 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitVulnerabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Level 8 Vulnerability on Hit", statOrderKey = "1717", statOrder = { 1717 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0, }, }, - ["CriticalStrikeMultiplierRingInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["CriticalStrikeMultiplierRingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(17-19)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["CriticalStrikeMultiplierRingInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(20-22)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["BleedDamageAndDurationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(8-12)% increased Damage with Bleeding", "(5-6)% increased Bleeding Duration", statOrderKey = "2349,3779", statOrder = { 2349, 3779 }, level = 68, group = "BleedingDamage", weightKey = { "no_attack_mods", "ring_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["BleedDamageAndDurationInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(13-17)% increased Damage with Bleeding", "(7-8)% increased Bleeding Duration", statOrderKey = "2349,3779", statOrder = { 2349, 3779 }, level = 75, group = "BleedingDamage", weightKey = { "no_attack_mods", "ring_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["BleedDamageAndDurationInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(18-22)% increased Damage with Bleeding", "(9-10)% increased Bleeding Duration", statOrderKey = "2349,3779", statOrder = { 2349, 3779 }, level = 80, group = "BleedingDamage", weightKey = { "no_attack_mods", "ring_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["ChanceToFreezeAddedDamageInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to Freeze", "Adds (9-12) to (27-30) Cold Damage against Chilled or Frozen Enemies", statOrderKey = "1285,4543", statOrder = { 1285, 4543 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToFreezeAddedDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to Freeze", "Adds (13-16) to (33-36) Cold Damage against Chilled or Frozen Enemies", statOrderKey = "1285,4543", statOrder = { 1285, 4543 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AddedColdDamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(2-3) to (4-5) Cold Damage per Frenzy Charge", statOrderKey = "3447", statOrder = { 3447 }, level = 75, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AddedColdDamagePerFrenzyChargeInfluence2__"] = { type = "Prefix", affix = "Redeemer's", "(3-4) to (6-7) Cold Damage per Frenzy Charge", statOrderKey = "3447", statOrder = { 3447 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["ProjectileAttackDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-17)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_eyrie", "default", }, weightVal = { 0, 500, 0, }, }, - ["ProjectileAttackDamageRingInfluence2___"] = { type = "Prefix", affix = "Redeemer's", "(18-21)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_eyrie", "default", }, weightVal = { 0, 500, 0, }, }, - ["ProjectileAttackDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(22-25)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 80, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_eyrie", "default", }, weightVal = { 0, 500, 0, }, }, - ["MinionDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (15-17)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 68, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["MinionDamageRingInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-21)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 75, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["MinionDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (22-25)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 80, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["CurseOnHitFrostbiteInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Level 5 Frostbite on Hit", statOrderKey = "1726", statOrder = { 1726 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitFrostbiteInfluence2"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Level 8 Frostbite on Hit", statOrderKey = "1726", statOrder = { 1726 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0, }, }, - ["AttackSpeedHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Attack Speed if you've been Hit Recently", statOrderKey = "3734", statOrder = { 3734 }, level = 75, group = "AttackSpeedHitRecently", weightKey = { "no_attack_mods", "ring_eyrie", "default", }, weightVal = { 0, 500, 0, }, }, - ["IncreasedExperienceGainInfluence1"] = { type = "Prefix", affix = "Hunter's", "(2-3)% increased Experience gain", statOrderKey = "902", statOrder = { 902 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_basilisk", "default", }, weightVal = { 50, 0, }, }, - ["ReflectedPhysicalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrderKey = "6076", statOrder = { 6076 }, level = 68, group = "ReflectedDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ReflectedPhysicalDamageRingInfluence2_"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrderKey = "6076", statOrder = { 6076 }, level = 75, group = "ReflectedDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ReflectedElementalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrderKey = "4328", statOrder = { 4328 }, level = 68, group = "ReflectedDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ReflectedElementalDamageRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrderKey = "4328", statOrder = { 4328 }, level = 75, group = "ReflectedDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["EnergyShieldDelayInfluence1"] = { type = "Prefix", affix = "Hunter's", "(15-20)% faster start of Energy Shield Recharge", statOrderKey = "871", statOrder = { 871 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["EnergyShieldDelayInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(20-24)% faster start of Energy Shield Recharge", statOrderKey = "871", statOrder = { 871 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["LifeGainPerTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "+(10-15) Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 68, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "ring_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LifeGainPerTargetInfluence2__"] = { type = "Prefix", affix = "Hunter's", "+(16-20) Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 75, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "ring_basilisk", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_attack_mod", }, }, - ["CurseOnHitElementalWeaknessInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Level 5 Elemental Weakness on Hit", statOrderKey = "1719", statOrder = { 1719 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitElementalWeaknessInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Level 8 Elemental Weakness on Hit", statOrderKey = "1719", statOrder = { 1719 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitDespairInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Level 5 Despair on Hit", statOrderKey = "1723", statOrder = { 1723 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0, }, }, - ["CurseOnHitDespairInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Level 8 Despair on Hit", statOrderKey = "1723", statOrder = { 1723 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0, }, }, - ["PoisonDamageAndDurationInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(5-6)% increased Poison Duration", "(8-12)% increased Damage with Poison", statOrderKey = "2350,2361", statOrder = { 2350, 2361 }, level = 68, group = "PoisonDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PoisonDamageAndDurationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-8)% increased Poison Duration", "(13-17)% increased Damage with Poison", statOrderKey = "2350,2361", statOrder = { 2350, 2361 }, level = 75, group = "PoisonDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["PoisonDamageAndDurationInfluence3__"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Poison Duration", "(18-22)% increased Damage with Poison", statOrderKey = "2350,2361", statOrder = { 2350, 2361 }, level = 80, group = "PoisonDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["LightningDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrderKey = "966", statOrder = { 966 }, level = 68, group = "LightningDamageLifeLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0, }, }, - ["LightningDamageESLeechInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrderKey = "3790", statOrder = { 3790 }, level = 68, group = "LightningDamageLifeLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0, }, }, - ["DamagePer15IntelligenceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 15 Intelligence", statOrderKey = "4213", statOrder = { 4213 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0, }, }, - ["DamagePerPowerChargeInfluence1"] = { type = "Prefix", affix = "Crusader's", "(3-4)% increased Damage per Power Charge", statOrderKey = "4220", statOrder = { 4220 }, level = 68, group = "AllDamage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0, }, }, - ["DamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(5-6)% increased Damage per Power Charge", statOrderKey = "4220", statOrder = { 4220 }, level = 80, group = "AllDamage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0, }, }, - ["GlobalLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+1 to Level of all Lightning Skill Gems", statOrderKey = "4735", statOrder = { 4735 }, level = 82, group = "GlobalDamageTypeGemLevel", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0, }, }, - ["LightningPenetrationInfluence1__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (4-7)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 68, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0, }, }, - ["LightningPenetrationInfluence2__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (8-10)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 82, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0, }, }, - ["MaximumLifeLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Recovery per second from Life Leech", statOrderKey = "1008", statOrder = { 1008 }, level = 68, group = "MaximumLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0, }, }, - ["MaximumEnergyShieldLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Recovery per second from Energy Shield Leech", statOrderKey = "1011", statOrder = { 1011 }, level = 68, group = "MaximumLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0, }, }, - ["MaximumSpellBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Chance to Block Spell Damage", statOrderKey = "1249", statOrder = { 1249 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0, }, }, - ["WrathReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (20-25)% reduced Mana Reservation", statOrderKey = "3220", statOrder = { 3220 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0, }, }, - ["DisciplineReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (25-30)% reduced Mana Reservation", statOrderKey = "3215", statOrder = { 3215 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0, }, }, - ["PurityOfLightningReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (25-30)% reduced Mana Reservation", statOrderKey = "3218", statOrder = { 3218 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0, }, }, - ["ZealotryReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (20-25)% reduced Mana Reservation", statOrderKey = "6511", statOrder = { 6511 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0, }, }, - ["SpellBlockAmuletInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(4-5)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0, }, }, - ["SpellBlockAmuletInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(6-7)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 80, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0, }, }, - ["FireDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrderKey = "962", statOrder = { 962 }, level = 68, group = "FireDamageLifeLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["FireDamageESLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrderKey = "3789", statOrder = { 3789 }, level = 68, group = "FireDamageLifeLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["DamagePer15StrengthInfluence1"] = { type = "Prefix", affix = "Warlord's", "1% increased Damage per 15 Strength", statOrderKey = "4214", statOrder = { 4214 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["DamagePerEnduranceChargeInfluence1__"] = { type = "Prefix", affix = "Warlord's", "(3-4)% increased Damage per Endurance Charge", statOrderKey = "2378", statOrder = { 2378 }, level = 68, group = "AllDamage", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["DamagePerEnduranceChargeInfluence2"] = { type = "Prefix", affix = "Warlord's", "(5-6)% increased Damage per Endurance Charge", statOrderKey = "2378", statOrder = { 2378 }, level = 80, group = "AllDamage", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["GlobalFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Fire Skill Gems", statOrderKey = "4432", statOrder = { 4432 }, level = 82, group = "GlobalDamageTypeGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0, }, }, - ["GlobalPhysicalGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Physical Skill Gems", statOrderKey = "6077", statOrder = { 6077 }, level = 82, group = "GlobalDamageTypeGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0, }, }, - ["FirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (4-7)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 68, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0, }, }, - ["FirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (8-10)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 82, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0, }, }, - ["MaximumAttackBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+2% to maximum Chance to Block Attack Damage", statOrderKey = "1248", statOrder = { 1248 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0, }, }, - ["AngerReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (20-25)% reduced Mana Reservation", statOrderKey = "2602", statOrder = { 2602 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["DeterminationReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Determination has (20-25)% reduced Mana Reservation", statOrderKey = "3214", statOrder = { 3214 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["PurityOfFireReducedReservationInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (25-30)% reduced Mana Reservation", statOrderKey = "3217", statOrder = { 3217 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["PrideReducedReservationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Pride has (20-25)% reduced Mana Reservation", statOrderKey = "6106", statOrder = { 6106 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["ColdDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrderKey = "964", statOrder = { 964 }, level = 68, group = "ColdDamageLifeLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["ColdDamageESLeechInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrderKey = "3787", statOrder = { 3787 }, level = 68, group = "ColdDamageLifeLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["DamagePer15DexterityInfluence1"] = { type = "Prefix", affix = "Redeemer's", "1% increased Damage per 15 Dexterity", statOrderKey = "4212", statOrder = { 4212 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["DamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(3-4)% increased Damage per Frenzy Charge", statOrderKey = "2468", statOrder = { 2468 }, level = 68, group = "AllDamage", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["DamagePerFrenzyChargeInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(5-6)% increased Damage per Frenzy Charge", statOrderKey = "2468", statOrder = { 2468 }, level = 80, group = "AllDamage", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["GlobalColdGemLevelInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of all Cold Skill Gems", statOrderKey = "4105", statOrder = { 4105 }, level = 82, group = "GlobalDamageTypeGemLevel", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["ColdPenetrationInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (4-7)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 68, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["ColdPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (8-10)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 82, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["MaximumAttackDodgeChanceInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+2% to maximum Chance to Dodge Attack Hits", statOrderKey = "5824", statOrder = { 5824 }, level = 68, group = "MaximumDodgeChance", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["MaximumSpellDodgeChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "+2% to maximum Chance to Dodge Spell Hits", statOrderKey = "5845", statOrder = { 5845 }, level = 68, group = "MaximumDodgeChance", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0, }, }, - ["HatredReducedReservationInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Hatred has (20-25)% reduced Mana Reservation", statOrderKey = "3212", statOrder = { 3212 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["GraceReducedReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (20-25)% reduced Mana Reservation", statOrderKey = "3221", statOrder = { 3221 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["PurityOfIceReducedReservationInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (25-30)% reduced Mana Reservation", statOrderKey = "3213", statOrder = { 3213 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["PhysicalDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrderKey = "960", statOrder = { 960 }, level = 68, group = "PhysicalDamageLifeLeech", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ChaosDamageLifeLeechInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrderKey = "967", statOrder = { 967 }, level = 68, group = "ChaosDamageLifeLeech", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["GlobalChaosGemLevelInfluence1__"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Chaos Skill Gems", statOrderKey = "4053", statOrder = { 4053 }, level = 82, group = "GlobalDamageTypeGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0, }, }, - ["GlobalStrengthGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Strength Skill Gems", statOrderKey = "6342", statOrder = { 6342 }, level = 82, group = "GlobalAttributeTypeGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 200, 0, }, }, - ["GlobalDexterityGemLevelInfluence1_"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Dexterity Skill Gems", statOrderKey = "4269", statOrder = { 4269 }, level = 82, group = "GlobalAttributeTypeGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 200, 0, }, }, - ["GlobalIntelligenceGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Intelligence Skill Gems", statOrderKey = "4649", statOrder = { 4649 }, level = 82, group = "GlobalAttributeTypeGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 200, 0, }, }, - ["ElementalPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (3-4)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0, }, }, - ["ElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (5-6)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0, }, }, - ["MalevolenceReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (20-25)% reduced Mana Reservation", statOrderKey = "4263", statOrder = { 4263 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["RandomChargeOnKillInfluence1___"] = { type = "Suffix", affix = "of the Hunt", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2788", statOrder = { 2788 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["RandomChargeOnKillInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2788", statOrder = { 2788 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ReducedAttributeRequirementsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrderKey = "1750", statOrder = { 1750 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ReducedAttributeRequirementsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrderKey = "1750", statOrder = { 1750 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrderKey = "570,946", statOrder = { 570, 946 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrderKey = "570,946", statOrder = { 570, 946 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 0, 250, 250, 250, 250, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrderKey = "570,946", statOrder = { 570, 946 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 0, 150, 150, 150, 150, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrderKey = "570,946", statOrder = { 570, 946 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence5_"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrderKey = "570,946", statOrder = { 570, 946 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 0, 50, 50, 50, 50, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrderKey = "570,734", statOrder = { 570, 734 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrderKey = "570,734", statOrder = { 570, 734 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 0, 0, 250, 250, 250, 250, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence3"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrderKey = "570,734", statOrder = { 570, 734 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 0, 0, 150, 150, 150, 150, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrderKey = "570,734", statOrder = { 570, 734 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrderKey = "570,734", statOrder = { 570, 734 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 0, 0, 50, 50, 50, 50, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrderKey = "570,786", statOrder = { 570, 786 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrderKey = "570,786", statOrder = { 570, 786 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrderKey = "570,786", statOrder = { 570, 786 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 0, 0, 150, 150, 150, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrderKey = "570,786", statOrder = { 570, 786 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrderKey = "570,786", statOrder = { 570, 786 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 0, 0, 50, 50, 50, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrderKey = "570,810", statOrder = { 570, 810 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrderKey = "570,810", statOrder = { 570, 810 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 0, 0, 250, 250, 250, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrderKey = "570,810", statOrder = { 570, 810 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 0, 0, 150, 150, 150, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrderKey = "570,810", statOrder = { 570, 810 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 0, 0, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrderKey = "570,810", statOrder = { 570, 810 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 0, 0, 50, 50, 50, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrderKey = "570,837", statOrder = { 570, 837 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrderKey = "570,837", statOrder = { 570, 837 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 0, 0, 250, 250, 250, 250, 250, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrderKey = "570,837", statOrder = { 570, 837 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 0, 0, 150, 150, 150, 150, 150, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrderKey = "570,837", statOrder = { 570, 837 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrderKey = "570,837", statOrder = { 570, 837 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 0, 0, 50, 50, 50, 50, 50, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrderKey = "570,1140", statOrder = { 570, 1140 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrderKey = "570,1140", statOrder = { 570, 1140 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 0, 250, 250, 250, 250, 250, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrderKey = "570,1140", statOrder = { 570, 1140 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 0, 150, 150, 150, 150, 150, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrderKey = "570,1140", statOrder = { 570, 1140 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrderKey = "570,1140", statOrder = { 570, 1140 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 0, 50, 50, 50, 50, 50, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrderKey = "570,1068", statOrder = { 570, 1068 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrderKey = "570,1068", statOrder = { 570, 1068 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 250, 250, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrderKey = "570,1068", statOrder = { 570, 1068 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 150, 150, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrderKey = "570,1068", statOrder = { 570, 1068 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrderKey = "570,1068", statOrder = { 570, 1068 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 50, 50, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(25-34)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrderKey = "570,1064", statOrder = { 570, 1064 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 0, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence2"] = { type = "Prefix", affix = "Hunter's", "(35-44)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrderKey = "570,1064", statOrder = { 570, 1064 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 0, 250, 250, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence3"] = { type = "Prefix", affix = "Hunter's", "(45-54)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrderKey = "570,1064", statOrder = { 570, 1064 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 0, 150, 150, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(55-64)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrderKey = "570,1064", statOrder = { 570, 1064 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 0, 100, 100, 0, }, tags = { "has_attack_mod", }, }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence5_"] = { type = "Prefix", affix = "Hunter's", "(65-69)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrderKey = "570,1064", statOrder = { 570, 1064 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 0, 50, 50, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageAndPenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-10) to (15-18) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 68, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (12-16) to (24-28) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 71, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 74, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 77, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (26-35) to (53-61) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 80, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (13-16) to (24-29) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 68, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (19-26) to (38-45) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 71, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (27-35) to (53-62) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 74, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (34-45) to (67-78) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 77, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 0, 300, 300, 300, 300, 300, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (42-56) to (85-98) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 80, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (7-9) to (14-16) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 68, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-14) to (22-25) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 71, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (15-20) to (30-35) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 74, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (19-25) to (38-44) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 77, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (23-32) to (48-55) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 80, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-14) to (22-26) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 68, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (18-22) to (35-40) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 71, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Adds (24-32) to (48-56) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 74, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (30-40) to (61-70) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 77, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 300, 300, 300, 300, 300, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Redeemer's", "Adds (37-51) to (77-88) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 80, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds 2 to (25-29) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 68, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageAndPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (40-45) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 71, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (55-63) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 74, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (70-79) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 77, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (3-8) to (89-99) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 80, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Adds 3 to (40-46) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 68, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (64-72) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 71, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (3-8) to (88-101) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 74, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (3-10) to (112-126) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 77, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 0, 300, 300, 300, 300, 300, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (5-13) to (142-158) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 80, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedChaosDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (5-7) to (11-13) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 68, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedChaosDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (9-11) to (17-20) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 71, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedChaosDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (12-16) to (24-28) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 74, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedChaosDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (15-20) to (30-35) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 77, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedChaosDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (18-25) to (38-44) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 80, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (8-11) to (18-21) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 68, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (28-32) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 71, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (19-25) to (38-45) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 74, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (24-32) to (49-56) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 77, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 0, 300, 300, 300, 300, 300, 0, }, tags = { "has_attack_mod", }, }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (30-41) to (62-70) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 80, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 0, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["SpellAddedFireDamagePenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (6-8) to (12-14) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 68, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamagePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (10-13) to (19-22) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 71, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (13-18) to (27-31) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 74, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 77, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 0, 400, 400, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 80, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 0, 300, 300, 300, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-11) to (17-19) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 68, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_adjudicator", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (13-17) to (26-30) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 71, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_adjudicator", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Adds (18-24) to (36-42) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 74, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_adjudicator", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (45-53) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 77, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_adjudicator", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Warlord's", "Adds (28-38) to (57-66) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 80, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_adjudicator", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamagePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (5-7) to (10-12) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 68, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (16-18) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 71, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-15) to (22-25) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 74, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (14-18) to (27-32) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 77, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 0, 400, 400, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (34-40) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 80, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 0, 300, 300, 300, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (15-18) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 68, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (12-16) to (23-27) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 71, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-22) to (33-38) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 74, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence4_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-27) to (41-48) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 77, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (26-34) to (52-60) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 80, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamagePenetrationInfluence1___"] = { type = "Prefix", affix = "Crusader's", "Adds (1-2) to (21-22) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 68, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (33-35) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 71, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (46-49) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 74, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamagePenetrationInfluence4_"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (58-61) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 77, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 0, 400, 400, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (73-77) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 80, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 0, 300, 300, 300, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (32-34) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 68, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_crusader", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (49-52) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 71, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_crusader", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (69-73) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 74, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_crusader", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence4__"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (87-92) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 77, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_crusader", "default", }, weightVal = { 0, 0, 400, 0, }, tags = { "has_caster_mod", }, }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (109-115) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 80, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_crusader", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_caster_mod", }, }, - ["LocalWeaponFirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (9-10)% Fire Resistance", statOrderKey = "2941", statOrder = { 2941 }, level = 68, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, }, - ["LocalWeaponFirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (11-12)% Fire Resistance", statOrderKey = "2941", statOrder = { 2941 }, level = 73, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0, }, }, - ["LocalWeaponFirePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrderKey = "2941", statOrder = { 2941 }, level = 78, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0, }, }, - ["LocalWeaponColdPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (9-10)% Cold Resistance", statOrderKey = "2942", statOrder = { 2942 }, level = 68, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, }, - ["LocalWeaponColdPenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (11-12)% Cold Resistance", statOrderKey = "2942", statOrder = { 2942 }, level = 73, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0, }, }, - ["LocalWeaponColdPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrderKey = "2942", statOrder = { 2942 }, level = 78, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0, }, }, - ["LocalWeaponLightningPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (9-10)% Lightning Resistance", statOrderKey = "2943", statOrder = { 2943 }, level = 68, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, }, - ["LocalWeaponLightningPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (11-12)% Lightning Resistance", statOrderKey = "2943", statOrder = { 2943 }, level = 73, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0, }, }, - ["LocalWeaponLightningPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrderKey = "2943", statOrder = { 2943 }, level = 78, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0, }, }, - ["LocalWeaponChaosPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrderKey = "5087", statOrder = { 5087 }, level = 68, group = "ChaosPenetrationWithAttacks", weightKey = { "no_attack_mods", "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 = { 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0, }, }, - ["LocalWeaponChaosPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Chaos Resistance", statOrderKey = "5087", statOrder = { 5087 }, level = 73, group = "ChaosPenetrationWithAttacks", weightKey = { "no_attack_mods", "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 = { 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0, }, }, - ["LocalWeaponChaosPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Chaos Resistance", statOrderKey = "5087", statOrder = { 5087 }, level = 78, group = "ChaosPenetrationWithAttacks", weightKey = { "no_attack_mods", "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 = { 0, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0, }, }, - ["LocalWeaponElementalPenetrationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrderKey = "2940", statOrder = { 2940 }, level = 68, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, }, - ["LocalWeaponElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Elemental Resistances", statOrderKey = "2940", statOrder = { 2940 }, level = 73, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0, }, }, - ["LocalWeaponElementalPenetrationInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Elemental Resistances", statOrderKey = "2940", statOrder = { 2940 }, level = 78, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0, }, }, - ["FireResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 6% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 68, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 0, }, }, - ["FireResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 7% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 73, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 0, }, }, - ["FireResistancePenetrationInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 8% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 78, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 0, }, }, - ["FireResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (10-11)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 68, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_adjudicator", "default", }, weightVal = { 0, 400, 0, }, }, - ["FireResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (12-13)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 73, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_adjudicator", "default", }, weightVal = { 0, 400, 0, }, }, - ["FireResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (14-15)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 78, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_adjudicator", "default", }, weightVal = { 0, 400, 0, }, }, - ["ColdResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 6% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 68, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 400, 400, 400, 0, }, }, - ["ColdResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 7% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 73, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 400, 400, 400, 0, }, }, - ["ColdResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 8% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 78, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 400, 400, 400, 0, }, }, - ["ColdResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (10-11)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 68, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_eyrie", "default", }, weightVal = { 0, 400, 0, }, }, - ["ColdResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (12-13)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 73, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_eyrie", "default", }, weightVal = { 0, 400, 0, }, }, - ["ColdResistancePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (14-15)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 78, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_eyrie", "default", }, weightVal = { 0, 400, 0, }, }, - ["LightningResistancePenetrationInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 6% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 68, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 400, 400, 400, 0, }, }, - ["LightningResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 7% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 73, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 400, 400, 400, 0, }, }, - ["LightningResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 8% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 78, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 400, 400, 400, 0, }, }, - ["LightningResistancePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (10-11)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 68, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_crusader", "default", }, weightVal = { 0, 400, 0, }, }, - ["LightningResistancePenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (12-13)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 73, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_crusader", "default", }, weightVal = { 0, 400, 0, }, }, - ["LightningResistancePenetrationTwoHandInfluence3__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (14-15)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 78, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_crusader", "default", }, weightVal = { 0, 400, 0, }, }, - ["ElementalResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 4% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 68, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 0, 400, 400, 400, 0, }, }, - ["ElementalResistancePenetrationInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 5% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 73, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 0, 400, 400, 400, 0, }, }, - ["ElementalResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 6% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 78, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 0, 400, 400, 400, 0, }, }, - ["ElementalResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (7-8)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 68, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "staff_basilisk", "default", }, weightVal = { 0, 400, 0, }, }, - ["ElementalResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (9-10)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 73, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "staff_basilisk", "default", }, weightVal = { 0, 400, 0, }, }, - ["ElementalResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (11-12)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 78, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "staff_basilisk", "default", }, weightVal = { 0, 400, 0, }, }, - ["PhysicalAddedAsExtraFireWeaponInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraFireWeaponInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraFireWeaponInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence1__"] = { type = "Prefix", affix = "Warlord's", "Gain (16-20)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence2__"] = { type = "Prefix", affix = "Warlord's", "Gain (21-26)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Warlord's", "Gain (27-30)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraColdWeaponInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 400, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraColdWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 400, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraColdWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 400, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (16-20)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 0, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (21-26)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 0, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (27-30)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 0, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraLightningWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraLightningWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraLightningWeaponInfluence3_"] = { type = "Prefix", affix = "Crusader's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (16-20)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (21-26)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 400, 400, 0, }, }, - ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Crusader's", "Gain (27-30)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 400, 400, 0, }, }, - ["AddedFireDamagePerStrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "3721", statOrder = { 3721 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_basilisk", "axe_basilisk", "mace_basilisk", "sceptre_basilisk", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["AddedFireDamagePerStrengthTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "3721", statOrder = { 3721 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["AddedColdDamagePerDexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "3751", statOrder = { 3751 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["AddedColdDamagePerDexterityTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "3751", statOrder = { 3751 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "default", }, weightVal = { 0, 0, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["AddedLightningDamagePerIntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "3723", statOrder = { 3723 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["AddedLightningDamagePerIntelligenceTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "3723", statOrder = { 3723 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 0, 0, 200, 200, 0, }, tags = { "has_attack_mod", }, }, - ["SpellDamagePer16StrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Strength", statOrderKey = "6309", statOrder = { 6309 }, level = 68, group = "SpellDamagePerStrength", weightKey = { "no_caster_mods", "sceptre_basilisk", "default", }, weightVal = { 0, 200, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamagePer16DexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Dexterity", statOrderKey = "6307", statOrder = { 6307 }, level = 68, group = "SpellDamagePerDexterity", weightKey = { "no_caster_mods", "rune_dagger_basilisk", "default", }, weightVal = { 0, 200, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamagePer16IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Intelligence", statOrderKey = "6308", statOrder = { 6308 }, level = 68, group = "SpellDamagePerIntelligence", weightKey = { "no_caster_mods", "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 0, 200, 200, 200, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamagePer10StrengthInfluence1_"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Strength", statOrderKey = "6306", statOrder = { 6306 }, level = 68, group = "SpellDamagePerStrength", weightKey = { "no_caster_mods", "staff_basilisk", "default", }, weightVal = { 0, 200, 0, }, tags = { "has_caster_mod", }, }, - ["SpellDamagePer10IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Intelligence", statOrderKey = "1917", statOrder = { 1917 }, level = 68, group = "SpellDamagePerIntelligence", weightKey = { "no_caster_mods", "staff_basilisk", "default", }, weightVal = { 0, 200, 0, }, tags = { "has_caster_mod", }, }, - ["BurningDamagePrefixInfluence1___"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 0, }, }, - ["BurningDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 71, group = "WeaponCasterDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 0, }, }, - ["BurningDamagePrefixInfluence3"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 200, 200, 0, }, }, - ["BurningDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 78, group = "WeaponCasterDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 100, 100, 0, }, }, - ["BurningDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 0, }, }, - ["BurningDamagePrefixTwoHandInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 71, group = "WeaponCasterDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 0, }, }, - ["BurningDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 0, }, }, - ["BurningDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 78, group = "WeaponCasterDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 100, 100, 0, }, }, - ["BleedingDamagePrefixInfluence1"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 400, 0, }, }, - ["BleedingDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 71, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 300, 300, 300, 300, 0, }, }, - ["BleedingDamagePrefixInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 200, 200, 200, 200, 0, }, }, - ["BleedingDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 78, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 100, 100, 100, 100, 0, }, }, - ["BleedingDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 0, }, }, - ["BleedingDamagePrefixTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 71, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 300, 300, 300, 0, }, }, - ["BleedingDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 200, 200, 200, 0, }, }, - ["BleedingDamagePrefixTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 78, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 100, 100, 100, 0, }, }, - ["PoisonDamagePrefixInfluence1__"] = { type = "Prefix", affix = "Hunter's", "(60-69)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0, }, }, - ["PoisonDamagePrefixInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(70-79)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 71, group = "WeaponCasterDamagePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0, }, }, - ["PoisonDamagePrefixInfluence3"] = { type = "Prefix", affix = "Hunter's", "(80-89)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0, }, }, - ["PoisonDamagePrefixInfluence4"] = { type = "Prefix", affix = "Hunter's", "(90-94)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 78, group = "WeaponCasterDamagePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 100, 100, 100, 0, }, }, - ["PoisonDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "(100-109)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 400, 0, }, }, - ["PoisonDamagePrefixTwoHandInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(110-119)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 71, group = "WeaponCasterDamagePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 300, 0, }, }, - ["PoisonDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "(120-129)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 200, 0, }, }, - ["PoisonDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(130-134)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 78, group = "WeaponCasterDamagePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 100, 0, }, }, - ["FasterIgniteDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (8-12)% faster", statOrderKey = "1762", statOrder = { 1762 }, level = 68, group = "FasterDamageAilments", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["FasterIgniteDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (13-15)% faster", statOrderKey = "1762", statOrder = { 1762 }, level = 73, group = "FasterDamageAilments", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["FasterIgniteDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (18-21)% faster", statOrderKey = "1762", statOrder = { 1762 }, level = 68, group = "FasterDamageAilments", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["FasterIgniteDamageTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (22-25)% faster", statOrderKey = "1762", statOrder = { 1762 }, level = 73, group = "FasterDamageAilments", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["FasterBleedDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (8-12)% faster", statOrderKey = "4406", statOrder = { 4406 }, level = 68, group = "FasterDamageAilments", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 0, }, }, - ["FasterBleedDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (13-15)% faster", statOrderKey = "4406", statOrder = { 4406 }, level = 73, group = "FasterDamageAilments", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 0, }, }, - ["FasterBleedDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (18-21)% faster", statOrderKey = "4406", statOrder = { 4406 }, level = 68, group = "FasterDamageAilments", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["FasterBleedDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (22-25)% faster", statOrderKey = "4406", statOrder = { 4406 }, level = 73, group = "FasterDamageAilments", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["FasterPoisonDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (8-12)% faster", statOrderKey = "4407", statOrder = { 4407 }, level = 68, group = "FasterDamageAilments", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["FasterPoisonDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (13-15)% faster", statOrderKey = "4407", statOrder = { 4407 }, level = 73, group = "FasterDamageAilments", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["FasterPoisonDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (18-21)% faster", statOrderKey = "4407", statOrder = { 4407 }, level = 68, group = "FasterDamageAilments", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["FasterPoisonDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (22-25)% faster", statOrderKey = "4407", statOrder = { 4407 }, level = 73, group = "FasterDamageAilments", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0, }, }, - ["ImpaleEffectWeaponInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(7-9)% increased Impale Effect", statOrderKey = "4636", statOrder = { 4636 }, level = 68, group = "ImpaleEffect", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 0, }, }, - ["ImpaleEffectWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Impale Effect", statOrderKey = "4636", statOrder = { 4636 }, level = 71, group = "ImpaleEffect", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 0, }, }, - ["ImpaleEffectWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(13-15)% increased Impale Effect", statOrderKey = "4636", statOrder = { 4636 }, level = 75, group = "ImpaleEffect", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 0, }, }, - ["ImpaleEffectTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(14-16)% increased Impale Effect", statOrderKey = "4636", statOrder = { 4636 }, level = 68, group = "ImpaleEffect", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 0, }, }, - ["ImpaleEffectTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(17-19)% increased Impale Effect", statOrderKey = "4636", statOrder = { 4636 }, level = 71, group = "ImpaleEffect", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 0, }, }, - ["ImpaleEffectTwoHandWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(20-22)% increased Impale Effect", statOrderKey = "4636", statOrder = { 4636 }, level = 75, group = "ImpaleEffect", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 0, }, }, - ["ConvertPhysicalToFireInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Fire Damage", statOrderKey = "1206", statOrder = { 1206 }, 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, }, tags = { "has_physical_conversion_mod", }, }, - ["ConvertPhysicalToFireInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Fire Damage", statOrderKey = "1206", statOrder = { 1206 }, 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, }, tags = { "has_physical_conversion_mod", }, }, - ["ConvertPhysicalToColdInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Cold Damage", statOrderKey = "1208", statOrder = { 1208 }, 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, }, tags = { "has_physical_conversion_mod", }, }, - ["ConvertPhysicalToColdInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Cold Damage", statOrderKey = "1208", statOrder = { 1208 }, 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, }, tags = { "has_physical_conversion_mod", }, }, - ["ConvertPhysicalToLightningInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Lightning Damage", statOrderKey = "1210", statOrder = { 1210 }, 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, }, tags = { "has_physical_conversion_mod", }, }, - ["ConvertPhysicalToLightningInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Lightning Damage", statOrderKey = "1210", statOrder = { 1210 }, 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, }, tags = { "has_physical_conversion_mod", }, }, - ["ConvertPhysicalToChaosInfluenceWeapon1"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1212", statOrder = { 1212 }, 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, }, }, - ["ConvertPhysicalToChaosInfluenceWeapon2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1212", statOrder = { 1212 }, 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, }, }, - ["ArmourPenetrationWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(16-13)% to Total Physical Damage Reduction against this Weapon's Hits", statOrderKey = "571", statOrder = { 571 }, level = 68, group = "ArmourPenetration", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, }, - ["ArmourPenetrationWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(20-17)% to Total Physical Damage Reduction against this Weapon's Hits", statOrderKey = "571", statOrder = { 571 }, level = 71, group = "ArmourPenetration", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, }, - ["ArmourPenetrationTwoHandWeaponInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(16-13)% to Total Physical Damage Reduction against this Weapon's Hits", statOrderKey = "571", statOrder = { 571 }, level = 68, group = "ArmourPenetration", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0, }, }, - ["ArmourPenetrationTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(20-17)% to Total Physical Damage Reduction against this Weapon's Hits", statOrderKey = "571", statOrder = { 571 }, level = 71, group = "ArmourPenetration", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0, }, }, - ["ArmourPenetrationSpellWeaponInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(8-7)% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 68, group = "ArmourPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["ArmourPenetrationSpellWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(10-9)% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 71, group = "ArmourPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["ArmourPenetrationSpellTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(16-13)% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 68, group = "ArmourPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ArmourPenetrationSpellTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(20-17)% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 71, group = "ArmourPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["FireExposureOnHitWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(11-15)% chance to inflict Fire Exposure on Hit", statOrderKey = "3795", statOrder = { 3795 }, level = 75, group = "ExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["FireExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to inflict Fire Exposure on Hit", statOrderKey = "3795", statOrder = { 3795 }, level = 80, group = "ExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["ColdExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(11-15)% chance to inflict Cold Exposure on Hit", statOrderKey = "3794", statOrder = { 3794 }, level = 75, group = "ExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["ColdExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% chance to inflict Cold Exposure on Hit", statOrderKey = "3794", statOrder = { 3794 }, level = 80, group = "ExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["LightningExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% chance to inflict Lightning Exposure on Hit", statOrderKey = "3796", statOrder = { 3796 }, level = 75, group = "ExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["LightningExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% chance to inflict Lightning Exposure on Hit", statOrderKey = "3796", statOrder = { 3796 }, level = 80, group = "ExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["ChanceToUnnerveOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Unnerve Enemies for 4 seconds on Hit", statOrderKey = "4036", statOrder = { 4036 }, level = 78, group = "ChanceToUnnerveOnHit", weightKey = { "no_caster_mods", "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["ChanceToUnnerveOnHitWeaponInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Unnerve Enemies for 4 seconds on Hit", statOrderKey = "4036", statOrder = { 4036 }, level = 81, group = "ChanceToUnnerveOnHit", weightKey = { "no_caster_mods", "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 0, }, }, - ["ChanceToIntimidateOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Intimidate Enemies for 4 seconds on Hit", statOrderKey = "5085", statOrder = { 5085 }, level = 78, group = "ChanceToIntimidateOnHit", weightKey = { "no_attack_mods", "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 = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, }, - ["ChanceToIntimidateOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit", statOrderKey = "5085", statOrder = { 5085 }, level = 81, group = "ChanceToIntimidateOnHit", weightKey = { "no_attack_mods", "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 = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, }, - ["DamageFromAurasWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrderKey = "2639", statOrder = { 2639 }, 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, }, }, - ["DamageFromAurasTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrderKey = "2639", statOrder = { 2639 }, 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, }, }, - ["LocalChanceToMaimPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Physical Damage", "10% chance to Maim on Hit", statOrderKey = "570,5158", statOrder = { 570, 5158 }, level = 68, group = "LocalMaimOnHit", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, }, - ["LocalChanceToMaimPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-16)% increased Physical Damage", "15% chance to Maim on Hit", statOrderKey = "570,5158", statOrder = { 570, 5158 }, level = 70, group = "LocalMaimOnHit", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, }, - ["LocalChanceToMaimPhysicalDamageInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Physical Damage", "20% chance to Maim on Hit", statOrderKey = "570,5158", statOrder = { 570, 5158 }, level = 73, group = "LocalMaimOnHit", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, }, - ["BlindOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 68, group = "BlindOnHit", weightKey = { "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["BlindOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 70, group = "BlindOnHit", weightKey = { "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["BlindOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 73, group = "BlindOnHit", weightKey = { "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["OnslaugtOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2570", statOrder = { 2570 }, 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, }, }, - ["OnslaugtOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2570", statOrder = { 2570 }, 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, }, }, - ["OnslaugtOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2570", statOrder = { 2570 }, 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, }, }, - ["PhasingOnKillWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["PhasingOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["PhasingOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["UnholyMightOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2567", statOrder = { 2567 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["UnholyMightOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2567", statOrder = { 2567 }, level = 70, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["UnholyMightOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2567", statOrder = { 2567 }, level = 73, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0, }, }, - ["BlockWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, 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, }, }, - ["BlockWhileDualWieldingInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, 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, }, }, - ["BlockWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, 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, }, }, - ["PhysicalDamageWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrderKey = "609", statOrder = { 609 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["PhysicalDamageWhileDualWieldingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrderKey = "609", statOrder = { 609 }, level = 70, group = "DualWieldingPhysicalDamage", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["PhysicalDamageWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrderKey = "609", statOrder = { 609 }, level = 73, group = "DualWieldingPhysicalDamage", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalMeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+2 to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 68, group = "LocalWeaponRangeUber", weightKey = { "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["LocalMeleeWeaponRangeInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+3 to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 73, group = "LocalWeaponRangeUber", weightKey = { "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0, }, tags = { "has_attack_mod", }, }, - ["MovementVelocityWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(3-6)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, 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, }, }, - ["MovementVelocityWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, 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, }, }, - ["SpellsDoubleDamageChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Spells have a (4-5)% chance to deal Double Damage", statOrderKey = "6296", statOrder = { 6296 }, level = 75, group = "DoubleDamage", weightKey = { "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 0, }, }, - ["SpellsDoubleDamageChanceInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (6-7)% chance to deal Double Damage", statOrderKey = "6296", statOrder = { 6296 }, level = 80, group = "DoubleDamage", weightKey = { "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 0, }, }, - ["SpellsDoubleDamageChanceTwoHandInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Spells have a (10-11)% chance to deal Double Damage", statOrderKey = "6296", statOrder = { 6296 }, level = 75, group = "DoubleDamage", weightKey = { "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 500, 0, }, }, - ["SpellsDoubleDamageChanceTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (12-14)% chance to deal Double Damage", statOrderKey = "6296", statOrder = { 6296 }, level = 80, group = "DoubleDamage", weightKey = { "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 500, 0, }, }, - ["DamagePerEnduranceChargeWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% increased Damage per Endurance Charge", statOrderKey = "2378", statOrder = { 2378 }, level = 68, group = "AllDamage", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["DamagePerEnduranceChargeWeaponInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% increased Damage per Endurance Charge", statOrderKey = "2378", statOrder = { 2378 }, level = 73, group = "AllDamage", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["DamagePerFrenzyChargeWeaponInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Damage per Frenzy Charge", statOrderKey = "2468", statOrder = { 2468 }, level = 68, group = "AllDamage", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["DamagePerFrenzyChargeWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Damage per Frenzy Charge", statOrderKey = "2468", statOrder = { 2468 }, level = 73, group = "AllDamage", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["DamagePerPowerChargeWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(5-7)% increased Damage per Power Charge", statOrderKey = "4220", statOrder = { 4220 }, level = 68, group = "AllDamage", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["DamagePerPowerChargeWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(8-10)% increased Damage per Power Charge", statOrderKey = "4220", statOrder = { 4220 }, level = 73, group = "AllDamage", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["DamagePerEnduranceChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Damage per Endurance Charge", statOrderKey = "2378", statOrder = { 2378 }, level = 68, group = "AllDamage", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["DamagePerEnduranceChargeTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-17)% increased Damage per Endurance Charge", statOrderKey = "2378", statOrder = { 2378 }, level = 73, group = "AllDamage", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["DamagePerPowerChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-13)% increased Damage per Power Charge", statOrderKey = "4220", statOrder = { 4220 }, level = 68, group = "AllDamage", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0, }, }, - ["DamagePerPowerChargeTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(14-17)% increased Damage per Power Charge", statOrderKey = "4220", statOrder = { 4220 }, level = 73, group = "AllDamage", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0, }, }, - ["BaseManaRegenerationInfluence1_____"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.3% of Mana per second", statOrderKey = "886", statOrder = { 886 }, level = 68, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["BaseManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.4% of Mana per second", statOrderKey = "886", statOrder = { 886 }, level = 73, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["BaseManaRegenerationTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.7% of Mana per second", statOrderKey = "886", statOrder = { 886 }, level = 68, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["BaseManaRegenerationTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.8% of Mana per second", statOrderKey = "886", statOrder = { 886 }, level = 73, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["AngerAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (28-33)% increased Aura Effect", statOrderKey = "2549", statOrder = { 2549 }, level = 75, group = "AuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["AngerAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Anger has (34-40)% increased Aura Effect", statOrderKey = "2549", statOrder = { 2549 }, level = 80, group = "AuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["AngerAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (48-54)% increased Aura Effect", statOrderKey = "2549", statOrder = { 2549 }, level = 75, group = "AuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["AngerAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Anger has (55-60)% increased Aura Effect", statOrderKey = "2549", statOrder = { 2549 }, level = 80, group = "AuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["HatredAuraEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (28-33)% increased Aura Effect", statOrderKey = "2556", statOrder = { 2556 }, level = 75, group = "AuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["HatredAuraEffectInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (34-40)% increased Aura Effect", statOrderKey = "2556", statOrder = { 2556 }, level = 80, group = "AuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["HatredAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (48-54)% increased Aura Effect", statOrderKey = "2556", statOrder = { 2556 }, level = 75, group = "AuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["HatredAuraEffectTwoHandInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (55-60)% increased Aura Effect", statOrderKey = "2556", statOrder = { 2556 }, level = 80, group = "AuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["WrathAuraEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (28-33)% increased Aura Effect", statOrderKey = "2554", statOrder = { 2554 }, level = 75, group = "AuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["WrathAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (34-40)% increased Aura Effect", statOrderKey = "2554", statOrder = { 2554 }, level = 80, group = "AuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["WrathAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (48-54)% increased Aura Effect", statOrderKey = "2554", statOrder = { 2554 }, level = 75, group = "AuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0, }, }, - ["WrathAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (55-60)% increased Aura Effect", statOrderKey = "2554", statOrder = { 2554 }, level = 80, group = "AuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0, }, }, - ["MalevolenceAuraEffectInfluence1____"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (28-33)% increased Aura Effect", statOrderKey = "4262", statOrder = { 4262 }, level = 75, group = "AuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["MalevolenceAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (34-40)% increased Aura Effect", statOrderKey = "4262", statOrder = { 4262 }, level = 80, group = "AuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["MalevolenceAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (48-54)% increased Aura Effect", statOrderKey = "4262", statOrder = { 4262 }, level = 75, group = "AuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["MalevolenceAuraEffectTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (55-60)% increased Aura Effect", statOrderKey = "4262", statOrder = { 4262 }, level = 80, group = "AuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ZealotryAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (28-33)% increased Aura Effect", statOrderKey = "6510", statOrder = { 6510 }, level = 75, group = "AuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["ZealotryAuraEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (34-40)% increased Aura Effect", statOrderKey = "6510", statOrder = { 6510 }, level = 80, group = "AuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["ZealotryAuraEffectTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (48-54)% increased Aura Effect", statOrderKey = "6510", statOrder = { 6510 }, level = 75, group = "AuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0, }, }, - ["ZealotryAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (55-60)% increased Aura Effect", statOrderKey = "6510", statOrder = { 6510 }, level = 80, group = "AuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0, }, }, - ["DamageWhileLeechingWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(18-22)% increased Damage while Leeching", statOrderKey = "2246", statOrder = { 2246 }, level = 68, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0, }, }, - ["DamageWhileLeechingWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% increased Damage while Leeching", statOrderKey = "2246", statOrder = { 2246 }, level = 70, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0, }, }, - ["DamageWhileLeechingWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% increased Damage while Leeching", statOrderKey = "2246", statOrder = { 2246 }, level = 73, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0, }, }, - ["DamageWhileLeechingWeaponTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(32-36)% increased Damage while Leeching", statOrderKey = "2246", statOrder = { 2246 }, level = 68, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0, }, }, - ["DamageWhileLeechingWeaponTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(37-41)% increased Damage while Leeching", statOrderKey = "2246", statOrder = { 2246 }, level = 70, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0, }, }, - ["DamageWhileLeechingWeaponTwoHandInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(42-45)% increased Damage while Leeching", statOrderKey = "2246", statOrder = { 2246 }, level = 73, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0, }, }, - ["AttackSpeedWithFortifyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Attack Speed while you have Fortify", statOrderKey = "2396", statOrder = { 2396 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "no_attack_mods", "sword_crusader", "default", }, weightVal = { 0, 500, 0, }, }, - ["AttackSpeedWithFortifyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(13-15)% increased Attack Speed while you have Fortify", statOrderKey = "2396", statOrder = { 2396 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "no_attack_mods", "sword_crusader", "default", }, weightVal = { 0, 500, 0, }, }, - ["AttackSpeedWithFortifyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(20-22)% increased Attack Speed while you have Fortify", statOrderKey = "2396", statOrder = { 2396 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "no_attack_mods", "2h_sword_crusader", "default", }, weightVal = { 0, 500, 0, }, }, - ["AttackSpeedWithFortifyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-25)% increased Attack Speed while you have Fortify", statOrderKey = "2396", statOrder = { 2396 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "no_attack_mods", "2h_sword_crusader", "default", }, weightVal = { 0, 500, 0, }, }, - ["MeleeWeaponRangeIfKilledRecentlyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "+2 to Melee Strike Range if you have Killed Recently", statOrderKey = "5866", statOrder = { 5866 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "no_attack_mods", "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 0, 500, 500, 0, }, }, - ["MeleeWeaponRangeIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+3 to Melee Strike Range if you have Killed Recently", statOrderKey = "5866", statOrder = { 5866 }, level = 73, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "no_attack_mods", "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 0, 500, 500, 0, }, }, - ["TauntOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% chance to Taunt Enemies on Hit with Attacks", statOrderKey = "3748", statOrder = { 3748 }, level = 68, group = "TauntOnHit", weightKey = { "no_attack_mods", "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 500, 500, 0, }, }, - ["TauntOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(7-8)% chance to Taunt Enemies on Hit with Attacks", statOrderKey = "3748", statOrder = { 3748 }, level = 70, group = "TauntOnHit", weightKey = { "no_attack_mods", "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 500, 500, 0, }, }, - ["TauntOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(9-10)% chance to Taunt Enemies on Hit with Attacks", statOrderKey = "3748", statOrder = { 3748 }, level = 73, group = "TauntOnHit", weightKey = { "no_attack_mods", "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 500, 500, 0, }, }, - ["AttackSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(13-16)% increased Attack Speed if you've Killed Recently", statOrderKey = "3733", statOrder = { 3733 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "no_attack_mods", "axe_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["AttackSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Attack Speed if you've Killed Recently", statOrderKey = "3733", statOrder = { 3733 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "no_attack_mods", "axe_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["AttackSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(23-26)% increased Attack Speed if you've Killed Recently", statOrderKey = "3733", statOrder = { 3733 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "no_attack_mods", "2h_axe_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["AttackSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(27-30)% increased Attack Speed if you've Killed Recently", statOrderKey = "3733", statOrder = { 3733 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "no_attack_mods", "2h_axe_adjudicator", "default", }, weightVal = { 0, 500, 0, }, }, - ["CastSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(13-16)% increased Cast Speed if you've Killed Recently", statOrderKey = "3972", statOrder = { 3972 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 0, }, }, - ["CastSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(17-20)% increased Cast Speed if you've Killed Recently", statOrderKey = "3972", statOrder = { 3972 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 0, }, }, - ["CastSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(23-26)% increased Cast Speed if you've Killed Recently", statOrderKey = "3972", statOrder = { 3972 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 500, 0, }, }, - ["CastSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(27-30)% increased Cast Speed if you've Killed Recently", statOrderKey = "3972", statOrder = { 3972 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 500, 0, }, }, - ["WarcryCooldownSpeedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Warcry Cooldown Recovery Speed", statOrderKey = "2518", statOrder = { 2518 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["WarcryCooldownSpeedInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Warcry Cooldown Recovery Speed", statOrderKey = "2518", statOrder = { 2518 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["WarcryCooldownSpeedTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(35-40)% increased Warcry Cooldown Recovery Speed", statOrderKey = "2518", statOrder = { 2518 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "2h_axe_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["WarcryCooldownSpeedTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(41-45)% increased Warcry Cooldown Recovery Speed", statOrderKey = "2518", statOrder = { 2518 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "2h_axe_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["CriticalStrikeChanceIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-40)% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "4138", statOrder = { 4138 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["CriticalStrikeChanceIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "4138", statOrder = { 4138 }, level = 73, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["CriticalStrikeMultiplierIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(26-30)% to Critical Strike Multiplier if you've Killed Recently", statOrderKey = "4160", statOrder = { 4160 }, level = 68, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["CriticalStrikeMultiplierIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(31-35)% to Critical Strike Multiplier if you've Killed Recently", statOrderKey = "4160", statOrder = { 4160 }, level = 73, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0, }, }, - ["CriticalStrikeMultiplierAgainstFullLifeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(41-50)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrderKey = "2617", statOrder = { 2617 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["CriticalStrikeMultiplierAgainstFullLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(51-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrderKey = "2617", statOrder = { 2617 }, level = 73, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0, }, }, - ["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", statOrderKey = "4465", statOrder = { 4465 }, level = 68, group = "GainRareMonsterModsOnKill", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["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", statOrderKey = "4465", statOrder = { 4465 }, level = 73, group = "GainRareMonsterModsOnKill", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["StunDurationAndThresholdInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% reduced Enemy Stun Threshold", "(11-15)% increased Stun Duration on Enemies", statOrderKey = "837,1123", statOrder = { 837, 1123 }, level = 68, group = "StunDurationAndThreshold", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0, }, }, - ["StunDurationAndThresholdInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% reduced Enemy Stun Threshold", "(16-20)% increased Stun Duration on Enemies", statOrderKey = "837,1123", statOrder = { 837, 1123 }, level = 73, group = "StunDurationAndThreshold", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0, }, }, - ["StunDurationAndThresholdTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% reduced Enemy Stun Threshold", "(21-25)% increased Stun Duration on Enemies", statOrderKey = "837,1123", statOrder = { 837, 1123 }, level = 68, group = "StunDurationAndThreshold", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0, }, }, - ["StunDurationAndThresholdTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% reduced Enemy Stun Threshold", "(26-30)% increased Stun Duration on Enemies", statOrderKey = "837,1123", statOrder = { 837, 1123 }, level = 73, group = "StunDurationAndThreshold", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0, }, }, - ["AreaOfEffectIfStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Area of Effect if you have Stunned an Enemy Recently", statOrderKey = "3626", statOrder = { 3626 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0, }, }, - ["AreaOfEffectIfStunnedRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrderKey = "3626", statOrder = { 3626 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0, }, }, - ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% increased Area of Effect if you have Stunned an Enemy Recently", statOrderKey = "3626", statOrder = { 3626 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0, }, }, - ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased Area of Effect if you have Stunned an Enemy Recently", statOrderKey = "3626", statOrder = { 3626 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0, }, }, - ["EnemiesExplodeOnDeathDealingFireInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrderKey = "1886", statOrder = { 1886 }, level = 78, group = "EnemiesExplodeOnDeath", weightKey = { "mace_eyrie", "2h_mace_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["ChanceForDoubleStunDurationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-11)% chance to double Stun Duration", statOrderKey = "2739", statOrder = { 2739 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["ChanceForDoubleStunDurationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% chance to double Stun Duration", statOrderKey = "2739", statOrder = { 2739 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["ChanceForDoubleStunDurationTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(17-21)% chance to double Stun Duration", statOrderKey = "2739", statOrder = { 2739 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["ChanceForDoubleStunDurationTwoHandInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(22-25)% chance to double Stun Duration", statOrderKey = "2739", statOrder = { 2739 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["MovementSpeedIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Movement Speed if you've Hit an Enemy Recently", statOrderKey = "5968", statOrder = { 5968 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["MovementSpeedIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Movement Speed if you've Hit an Enemy Recently", statOrderKey = "5968", statOrder = { 5968 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["MovementSpeedIfHitRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Movement Speed if you've Hit an Enemy Recently", statOrderKey = "5968", statOrder = { 5968 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["MovementSpeedIfHitRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Movement Speed if you've Hit an Enemy Recently", statOrderKey = "5968", statOrder = { 5968 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["AreaOfEffectIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Area of Effect if you've Killed Recently", statOrderKey = "3392", statOrder = { 3392 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["AreaOfEffectIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Area of Effect if you've Killed Recently", statOrderKey = "3392", statOrder = { 3392 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["AreaOfEffectIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(27-31)% increased Area of Effect if you've Killed Recently", statOrderKey = "3392", statOrder = { 3392 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["AreaOfEffectIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(32-35)% increased Area of Effect if you've Killed Recently", statOrderKey = "3392", statOrder = { 3392 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0, }, }, - ["ChanceToBlockIfDamagedRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrderKey = "2397", statOrder = { 2397 }, level = 68, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["ChanceToBlockIfDamagedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrderKey = "2397", statOrder = { 2397 }, level = 73, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["SpellBlockChanceIfHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrderKey = "3988", statOrder = { 3988 }, level = 68, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["SpellBlockChanceIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrderKey = "3988", statOrder = { 3988 }, level = 73, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0, }, }, - ["AdditionalProjectileWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Skills fire an additional Projectile", statOrderKey = "1066", statOrder = { 1066 }, 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, }, }, - ["SocketedSkillsChainInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Socketed Gems Chain 1 additional times", statOrderKey = "255", statOrder = { 255 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0, }, }, - ["SocketedSkillsForkInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles from Socketed Gems Fork", statOrderKey = "274", statOrder = { 274 }, level = 85, group = "DisplaySocketedSkillsFork", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0, }, }, - ["ProjectileDamagePerEnemyPiercedInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (15-20)% increased Damage for each Enemy Pierced", statOrderKey = "6113", statOrder = { 6113 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0, }, }, - ["ProjectileDamagePerEnemyPiercedInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (21-25)% increased Damage for each Enemy Pierced", statOrderKey = "6113", statOrder = { 6113 }, level = 70, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0, }, }, - ["ProjectileDamagePerEnemyPiercedInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (26-30)% increased Damage for each Enemy Pierced", statOrderKey = "6113", statOrder = { 6113 }, level = 73, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0, }, }, - ["PhysicalDamageAddedAsRandomElementInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Gain (7-8)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "2116", statOrder = { 2116 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "bow_crusader", "default", }, weightVal = { 0, 400, 0, }, }, - ["PhysicalDamageAddedAsRandomElementInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Gain (9-11)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "2116", statOrder = { 2116 }, level = 73, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "bow_crusader", "default", }, weightVal = { 0, 400, 0, }, }, - ["PhysicalDamageAddedAsRandomElementInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Gain (12-15)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "2116", statOrder = { 2116 }, level = 78, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "bow_crusader", "default", }, weightVal = { 0, 400, 0, }, }, - ["ArcaneSurgeOnCritInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(11-20)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrderKey = "4474", statOrder = { 4474 }, level = 75, group = "ArcaneSurgeOnCrit", weightKey = { "no_caster_mods", "wand_crusader", "default", }, weightVal = { 0, 500, 0, }, }, - ["ArcaneSurgeOnCritInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-30)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrderKey = "4474", statOrder = { 4474 }, level = 80, group = "ArcaneSurgeOnCrit", weightKey = { "no_caster_mods", "wand_crusader", "default", }, weightVal = { 0, 500, 0, }, }, - ["CurseOnHitFlammabilityWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Level 10 Flammability on Hit", statOrderKey = "1725", statOrder = { 1725 }, level = 78, group = "CurseOnHitLevel", weightKey = { "wand_adjudicator", "default", }, weightVal = { 500, 0, }, }, - ["CurseOnHitFrostbiteWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Level 10 Frostbite on Hit", statOrderKey = "1726", statOrder = { 1726 }, level = 78, group = "CurseOnHitLevel", weightKey = { "wand_eyrie", "default", }, weightVal = { 500, 0, }, }, - ["CurseOnHitConductivityWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Level 10 Conductivity on Hit", statOrderKey = "1722", statOrder = { 1722 }, level = 78, group = "CurseOnHitLevel", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0, }, }, - ["CurseOnHitDespairWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Level 10 Despair on Hit", statOrderKey = "1723", statOrder = { 1723 }, level = 78, group = "CurseOnHitDespair", weightKey = { "wand_basilisk", "default", }, weightVal = { 500, 0, }, }, + ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(8-12) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(13-17) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(18-22) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(23-27) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(28-32) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(33-37) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(38-42) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(43-50) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(51-55) to Strength", statOrderKey = "521", statOrder = { 521 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Strength10"] = { type = "Suffix", affix = "of the Godslayer", "+(56-60) to Strength", statOrderKey = "521", statOrder = { 521 }, level = 85, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StrengthEssence7_"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Strength", statOrderKey = "521", statOrder = { 521 }, level = 82, group = "Strength", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(8-12) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(13-17) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(18-22) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(23-27) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(28-32) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(33-37) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(38-42) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(43-50) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-55) to Dexterity", statOrderKey = "522", statOrder = { 522 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Dexterity10"] = { type = "Suffix", affix = "of the Blur", "+(56-60) to Dexterity", statOrderKey = "522", statOrder = { 522 }, level = 85, group = "Dexterity", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DexterityEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Dexterity", statOrderKey = "522", statOrder = { 522 }, level = 82, group = "Dexterity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(8-12) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(13-17) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(18-22) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(23-27) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(28-32) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(33-37) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(38-42) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(43-50) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(51-55) to Intelligence", statOrderKey = "523", statOrder = { 523 }, 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, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["Intelligence10"] = { type = "Suffix", affix = "of the Polymath", "+(56-60) to Intelligence", statOrderKey = "523", statOrder = { 523 }, level = 85, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IntelligenceEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Intelligence", statOrderKey = "523", statOrder = { 523 }, level = 82, group = "Intelligence", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(1-4) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-8) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(9-12) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(13-16) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(17-20) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(21-24) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(25-28) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllAttributes8"] = { type = "Suffix", affix = "of the Infinite", "+(29-32) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 77, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllAttributes9_"] = { type = "Suffix", affix = "of the Multiverse", "+(33-35) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 85, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLife0"] = { type = "Prefix", affix = "Hale", "+(3-9) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLife1"] = { type = "Prefix", affix = "Healthy", "+(10-19) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 5, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLife2"] = { type = "Prefix", affix = "Sanguine", "+(20-29) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 11, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLife3"] = { type = "Prefix", affix = "Stalwart", "+(30-39) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 18, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLife4"] = { type = "Prefix", affix = "Stout", "+(40-49) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 24, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLife5"] = { type = "Prefix", affix = "Robust", "+(50-59) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 30, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLife6"] = { type = "Prefix", affix = "Rotund", "+(60-69) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 36, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLife7"] = { type = "Prefix", affix = "Virile", "+(70-79) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 44, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLife8"] = { type = "Prefix", affix = "Athlete's", "+(80-89) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 54, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "ring", "default", }, weightVal = { 0, 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLife9"] = { type = "Prefix", affix = "Fecund", "+(90-99) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 64, group = "IncreasedLife", weightKey = { "fishing_rod", "boots", "gloves", "weapon", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLife10"] = { type = "Prefix", affix = "Vigorous", "+(100-109) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 73, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLife11"] = { type = "Prefix", affix = "Rapturous", "+(110-119) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 81, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLife12"] = { type = "Prefix", affix = "Prime", "+(120-129) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 86, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLifeEssence1_"] = { type = "Prefix", affix = "Essences", "+(5-14) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 3, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLifeEssence2"] = { type = "Prefix", affix = "Essences", "+(15-30) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 10, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLifeEssence3"] = { type = "Prefix", affix = "Essences", "+(31-45) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 26, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLifeEssenceChest1"] = { type = "Prefix", affix = "Essences", "+(120-126) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLifeEssenceShield1"] = { type = "Prefix", affix = "Essences", "+(110-116) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLifeEssenceHelm1"] = { type = "Prefix", affix = "Essences", "+(100-106) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLifeEssenceBootsGloves1"] = { type = "Prefix", affix = "Essences", "+(90-96) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLifeEnhancedMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "(3-5)% increased maximum Life", statOrderKey = "877,879", statOrder = { 877, 879 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLifeEnhancedBodyMod___"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrderKey = "877,879", statOrder = { 877, 879 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(15-19) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(20-24) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-29) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedMana4"] = { type = "Prefix", affix = "Sapphire", "+(30-34) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(35-39) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(40-44) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(45-49) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(50-54) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(55-59) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(60-64) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(65-68) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(69-73) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(74-78) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 85, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaEssence7"] = { type = "Prefix", affix = "Essences", "+(69-77) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 82, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaEnhancedModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrderKey = "884,885", statOrder = { 884, 885 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaEnhancedModOnHit_"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "884,1021", statOrder = { 884, 1021 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaEnhancedModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrderKey = "884,887", statOrder = { 884, 887 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaEnhancedModReservation"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(3-5)% reduced Mana Reserved", statOrderKey = "884,1481", statOrder = { 884, 1481 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaEnhancedModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrderKey = "884,1144", statOrder = { 884, 1144 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_mana_cost_mod", }, }, + ["IncreasedManaWeapon1"] = { type = "Prefix", affix = "Beryl", "+(30-39) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 1, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaWeapon2__"] = { type = "Prefix", affix = "Cobalt", "+(40-49) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 11, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaWeapon3_"] = { type = "Prefix", affix = "Azure", "+(50-59) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 17, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(60-69) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 23, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(70-79) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 29, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaWeapon6"] = { type = "Prefix", affix = "Aqua", "+(80-89) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 35, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(90-99) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 42, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaWeapon8"] = { type = "Prefix", affix = "Gentian", "+(100-109) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 51, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaWeapon9___"] = { type = "Prefix", affix = "Chalybeous", "+(110-119) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 60, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(120-129) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 69, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 800, 800, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaWeapon11"] = { type = "Prefix", affix = "Blue", "+(130-139) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 75, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 600, 600, 600, 600, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(140-159) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 81, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(40-49) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(50-59) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 11, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(60-69) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 17, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(70-79) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 23, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(80-89) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 29, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(90-99) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 35, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(100-119) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 42, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(120-139) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 51, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(140-159) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(160-179) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 69, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(180-199) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 75, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(200-229) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 81, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(1-3) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 3, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(4-8) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 11, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(9-12) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 17, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(13-15) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 23, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(16-19) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 29, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(20-22) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 35, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(23-26) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 42, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(27-31) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 50, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(32-37) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 59, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(38-43) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 68, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(44-47) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 74, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShield12"] = { type = "Prefix", affix = "Dazzling", "+(48-51) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 80, group = "IncreasedEnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldEnhancedModES"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "(7-10)% increased maximum Energy Shield", statOrderKey = "867,870", statOrder = { 867, 870 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldEnhancedModRegen_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrderKey = "867,1832", statOrder = { 867, 1832 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(3-5) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 3, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(6-11) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 11, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(12-16) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 17, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(17-23) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 23, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(24-30) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 29, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(31-38) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 35, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(39-49) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 43, group = "BaseLocalDefences", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(50-61) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 51, group = "BaseLocalDefences", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(62-76) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 60, group = "BaseLocalDefences", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(77-90) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 69, group = "BaseLocalDefences", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-100) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 75, group = "BaseLocalDefences", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldEssenceChest5"] = { type = "Prefix", affix = "Essences", "+(62-72) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldEssenceChest6"] = { type = "Prefix", affix = "Essences", "+(73-82) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldEssenceChest7__"] = { type = "Prefix", affix = "Essences", "+(83-92) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(50-59) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(60-69) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldEssenceShield7"] = { type = "Prefix", affix = "Essences", "+(70-80) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves4"] = { type = "Prefix", affix = "Essences", "+(18-26) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 42, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(27-32) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(28-35) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(36-42) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(39-45) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(46-51) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(52-58) to maximum Energy Shield", statOrderKey = "868", statOrder = { 868 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 5, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 13, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 19, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 28, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 35, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 44, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 1000, 1000, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 52, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 0, 1000, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 64, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 0, 1000, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 76, group = "PhysicalDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 0, 1000, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamageEssenceAmulet7"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamageEssenceRing5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamageEssenceRing6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamageEssenceRing7"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (3-5) to (7-8) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 42, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (10-11) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 1, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 12, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 20, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 28, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 35, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 44, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 52, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 64, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 76, group = "FireDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 50, 250, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (5-7) to (11-14) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 42, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (13-17) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 58, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (16-18) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 74, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (9-11) to (17-21) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 2, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 13, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 21, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 29, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 36, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 45, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 53, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 65, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 77, group = "ColdDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 50, 250, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (11-14) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 42, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 58, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 74, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (14-17) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 3, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 13, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 22, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 28, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 35, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 44, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 500, 500, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 52, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 64, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 100, 500, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 76, group = "LightningDamage", weightKey = { "no_attack_mods", "ring", "amulet", "quiver", "gloves", "default", }, weightVal = { 0, 50, 250, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamageEssenceQuiverGloves3_"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (21-22) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 26, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (23-24) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 42, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (25-26) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 58, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 74, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (1-3) to (29-30) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "688,1206", statOrder = { 688, 1206 }, level = 1, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["AddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "695,1208", statOrder = { 695, 1208 }, level = 1, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["AddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "704,1210", statOrder = { 704, 1210 }, level = 1, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["LifeLeech1"] = { type = "Prefix", affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrderKey = "943", statOrder = { 943 }, level = 9, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeech2"] = { type = "Prefix", affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrderKey = "943", statOrder = { 943 }, level = 25, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeech3"] = { type = "Prefix", affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrderKey = "943", statOrder = { 943 }, level = 72, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriad1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 50, group = "LifeLeech", weightKey = { "no_attack_mods", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriad2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 60, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "amulet", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriad3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 70, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "amulet", "default", }, weightVal = { 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 1, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 10, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadEssence3_"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 26, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 42, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 58, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 74, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 82, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["ElementalDamagePercent1"] = { type = "Prefix", affix = "Augur's", "(4-8)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 4, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamagePercent2"] = { type = "Prefix", affix = "Auspex's", "(9-16)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 15, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamagePercent3"] = { type = "Prefix", affix = "Druid's", "(17-24)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 30, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamagePercent4"] = { type = "Prefix", affix = "Haruspex's", "(25-29)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 60, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamagePercent5"] = { type = "Prefix", affix = "Harbinger's", "(30-34)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 81, group = "ElementalDamagePercent", weightKey = { "str_int_shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 35, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 46, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 60, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 100, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 73, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 50, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrderKey = "570,1280", statOrder = { 570, 1280 }, level = 83, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 25, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 11, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 23, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 35, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 100, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 73, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 50, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 83, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 25, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamageEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrderKey = "570,1186", statOrder = { 570, 1186 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(8-12)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 4, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(13-17)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 15, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(18-22)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 30, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Cruel", "(23-28)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 60, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamagePercent5__"] = { type = "Prefix", affix = "Merciless", "(29-33)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 81, group = "PhysicalDamagePercent", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to (2-3) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 2, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-5) to (8-9) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 13, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-8) to (13-15) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 21, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (7-11) to (16-19) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 29, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (9-13) to (20-24) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 36, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-17) to (26-30) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 46, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 800, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (14-19) to (29-35) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 54, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (17-24) to (36-41) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 65, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (20-27) to (41-49) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 77, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to (4-5) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 2, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (6-8) to (13-14) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 13, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (10-13) to (21-24) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 21, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (11-18) to (26-30) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 29, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (14-21) to (32-38) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 36, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (21-27) to (42-48) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 46, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 800, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (22-30) to (46-56) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 54, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (27-38) to (58-66) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 65, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (32-43) to (66-78) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 77, group = "PhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(11-28)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 3, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 18, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 30, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 44, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 60, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 72, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 84, group = "DefencesPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrderKey = "869", statOrder = { 869 }, level = 86, group = "DefencesPercent", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 3, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 17, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 29, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 42, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 60, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 72, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 84, group = "DefencesPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrderKey = "851", statOrder = { 851 }, level = 86, group = "DefencesPercent", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 3, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 19, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 30, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 44, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 60, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 72, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 84, group = "DefencesPercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrderKey = "860", statOrder = { 860 }, level = 86, group = "DefencesPercent", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 3, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 19, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 30, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 44, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 60, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 72, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 84, group = "DefencesPercent", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrderKey = "862", statOrder = { 862 }, level = 86, group = "DefencesPercent", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 3, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 19, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 30, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 44, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 60, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 72, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 84, group = "DefencesPercent", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrderKey = "863", statOrder = { 863 }, level = 86, group = "DefencesPercent", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 3, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 19, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 30, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 44, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 60, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 72, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 84, group = "DefencesPercent", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrderKey = "864", statOrder = { 864 }, level = 86, group = "DefencesPercent", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourEvasionEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(27-42)% increased Armour, Evasion and Energy Shield", statOrderKey = "865", statOrder = { 865 }, level = 3, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourEvasionEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(43-55)% increased Armour, Evasion and Energy Shield", statOrderKey = "865", statOrder = { 865 }, level = 19, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourEvasionEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(56-67)% increased Armour, Evasion and Energy Shield", statOrderKey = "865", statOrder = { 865 }, level = 30, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourEvasionEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(68-79)% increased Armour, Evasion and Energy Shield", statOrderKey = "865", statOrder = { 865 }, level = 44, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourEvasionEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(80-91)% increased Armour, Evasion and Energy Shield", statOrderKey = "865", statOrder = { 865 }, level = 60, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourEvasionEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrderKey = "865", statOrder = { 865 }, level = 72, group = "DefencesPercent", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourEvasionEnergyShield7__"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Armour, Evasion and Energy Shield", statOrderKey = "865", statOrder = { 865 }, level = 85, group = "DefencesPercent", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "869,1153", statOrder = { 869, 1153 }, level = 3, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "869,1153", statOrder = { 869, 1153 }, level = 18, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "869,1153", statOrder = { 869, 1153 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "869,1153", statOrder = { 869, 1153 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "869,1153", statOrder = { 869, 1153 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "869,1153", statOrder = { 869, 1153 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "(6-7)% increased Stun and Block Recovery", statOrderKey = "851,1153", statOrder = { 851, 1153 }, level = 1, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "(8-9)% increased Stun and Block Recovery", statOrderKey = "851,1153", statOrder = { 851, 1153 }, level = 17, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "(10-11)% increased Stun and Block Recovery", statOrderKey = "851,1153", statOrder = { 851, 1153 }, level = 29, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "(12-13)% increased Stun and Block Recovery", statOrderKey = "851,1153", statOrder = { 851, 1153 }, level = 42, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "(14-15)% increased Stun and Block Recovery", statOrderKey = "851,1153", statOrder = { 851, 1153 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "(16-17)% increased Stun and Block Recovery", statOrderKey = "851,1153", statOrder = { 851, 1153 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance1"] = { type = "Prefix", affix = "Reliable", "(25-30)% increased Armour", "+2% Chance to Block", statOrderKey = "851,1497", statOrder = { 851, 1497 }, level = 45, group = "DefencesPercentAndStunRecovery", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance2"] = { type = "Prefix", affix = "Unfailing", "(31-36)% increased Armour", "+3% Chance to Block", statOrderKey = "851,1497", statOrder = { 851, 1497 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "(6-7)% increased Stun and Block Recovery", statOrderKey = "860,1153", statOrder = { 860, 1153 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "(8-9)% increased Stun and Block Recovery", statOrderKey = "860,1153", statOrder = { 860, 1153 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "(10-11)% increased Stun and Block Recovery", statOrderKey = "860,1153", statOrder = { 860, 1153 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "(12-13)% increased Stun and Block Recovery", statOrderKey = "860,1153", statOrder = { 860, 1153 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "(14-15)% increased Stun and Block Recovery", statOrderKey = "860,1153", statOrder = { 860, 1153 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "(16-17)% increased Stun and Block Recovery", statOrderKey = "860,1153", statOrder = { 860, 1153 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Armour and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "862,1153", statOrder = { 862, 1153 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Armour and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "862,1153", statOrder = { 862, 1153 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Armour and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "862,1153", statOrder = { 862, 1153 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Armour and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "862,1153", statOrder = { 862, 1153 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Armour and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "862,1153", statOrder = { 862, 1153 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Armour and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "862,1153", statOrder = { 862, 1153 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour and Evasion", "(6-7)% increased Stun and Block Recovery", statOrderKey = "863,1153", statOrder = { 863, 1153 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour and Evasion", "(8-9)% increased Stun and Block Recovery", statOrderKey = "863,1153", statOrder = { 863, 1153 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour and Evasion", "(10-11)% increased Stun and Block Recovery", statOrderKey = "863,1153", statOrder = { 863, 1153 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour and Evasion", "(12-13)% increased Stun and Block Recovery", statOrderKey = "863,1153", statOrder = { 863, 1153 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour and Evasion", "(14-15)% increased Stun and Block Recovery", statOrderKey = "863,1153", statOrder = { 863, 1153 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour and Evasion", "(16-17)% increased Stun and Block Recovery", statOrderKey = "863,1153", statOrder = { 863, 1153 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "864,1153", statOrder = { 864, 1153 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "864,1153", statOrder = { 864, 1153 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "864,1153", statOrder = { 864, 1153 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "864,1153", statOrder = { 864, 1153 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "864,1153", statOrder = { 864, 1153 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "864,1153", statOrder = { 864, 1153 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Armour, Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrderKey = "865,1153", statOrder = { 865, 1153 }, level = 2, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Armour, Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrderKey = "865,1153", statOrder = { 865, 1153 }, level = 19, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Armour, Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrderKey = "865,1153", statOrder = { 865, 1153 }, level = 30, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Armour, Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrderKey = "865,1153", statOrder = { 865, 1153 }, level = 44, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Armour, Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrderKey = "865,1153", statOrder = { 865, 1153 }, level = 60, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Armour, Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrderKey = "865,1153", statOrder = { 865, 1153 }, level = 78, group = "DefencesPercentAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 1, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-10) to (15-18) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 11, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (12-16) to (24-28) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 18, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (17-22) to (33-39) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 26, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (21-28) to (42-49) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 33, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (26-35) to (53-61) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 42, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (32-42) to (63-74) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 51, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (42-56) to (85-98) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 62, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (59-79) to (118-138) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 74, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (82-112) to (167-194) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 82, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (75-101) to (151-176) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "Adds (59-79) to (118-138) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 1, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (3-4) to (5-6) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 1, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (13-16) to (24-29) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 11, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (19-26) to (38-45) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 18, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (27-35) to (53-62) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 26, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (34-45) to (67-78) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 33, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (42-56) to (85-98) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 42, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (51-67) to (101-118) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 51, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (67-90) to (135-156) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 62, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (94-127) to (190-221) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 74, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (132-179) to (267-311) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 82, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageRanged1"] = { type = "Prefix", affix = "Heated", "Adds (1-3) to (4-5) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 1, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageRanged2"] = { type = "Prefix", affix = "Smouldering", "Adds (10-13) to (19-23) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 11, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageRanged3"] = { type = "Prefix", affix = "Smoking", "Adds (15-20) to (30-35) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 18, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageRanged4"] = { type = "Prefix", affix = "Burning", "Adds (21-28) to (41-49) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 26, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageRanged5"] = { type = "Prefix", affix = "Flaming", "Adds (26-35) to (53-61) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 33, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageRanged6"] = { type = "Prefix", affix = "Scorching", "Adds (33-44) to (66-76) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 42, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageRanged7"] = { type = "Prefix", affix = "Incinerating", "Adds (40-53) to (79-93) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 51, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageRanged8"] = { type = "Prefix", affix = "Blasting", "Adds (53-70) to (106-123) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 62, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1120, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageRanged9_"] = { type = "Prefix", affix = "Cremating", "Adds (74-99) to (148-173) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 74, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 490, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageRanged10"] = { type = "Prefix", affix = "Carbonising", "Adds (103-140) to (209-243) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 82, group = "FireDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 126, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (120-163) to (242-282) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (94-127) to (190-221) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 1, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 2, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (7-9) to (14-16) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 12, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (11-14) to (22-25) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 19, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (15-20) to (30-35) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 27, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (19-25) to (38-44) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 34, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (23-32) to (48-55) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 43, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (29-38) to (57-67) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 52, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (37-51) to (76-88) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 63, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (53-72) to (107-124) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 75, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (77-101) to (152-174) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 82, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (70-91) to (138-158) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (53-72) to (107-124) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 1, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (5-6) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 2, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (11-14) to (22-26) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 12, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (18-22) to (35-40) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 19, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (24-32) to (48-56) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 27, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (30-40) to (61-70) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 34, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (37-51) to (77-88) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 43, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (46-61) to (91-107) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 52, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (59-81) to (121-141) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 63, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (86-114) to (170-198) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 75, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (121-161) to (240-278) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 82, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageRanged1"] = { type = "Prefix", affix = "Frosted", "Adds (1-3) to (4-5) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 2, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageRanged2"] = { type = "Prefix", affix = "Chilled", "Adds (9-11) to (18-20) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 12, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageRanged3"] = { type = "Prefix", affix = "Icy", "Adds (14-18) to (28-31) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 19, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageRanged4"] = { type = "Prefix", affix = "Frigid", "Adds (19-25) to (38-44) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 27, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageRanged5"] = { type = "Prefix", affix = "Freezing", "Adds (24-31) to (48-55) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 34, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageRanged6"] = { type = "Prefix", affix = "Frozen", "Adds (29-40) to (60-69) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 43, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageRanged7"] = { type = "Prefix", affix = "Glaciated", "Adds (36-48) to (71-84) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 52, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageRanged8"] = { type = "Prefix", affix = "Polar", "Adds (46-64) to (95-110) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 63, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1120, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageRanged9"] = { type = "Prefix", affix = "Entombing", "Adds (66-90) to (134-155) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 75, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 490, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageRanged10"] = { type = "Prefix", affix = "Crystalising", "Adds (96-126) to (190-218) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 82, group = "ColdDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 126, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (110-146) to (217-252) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (86-114) to (170-198) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 1, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (5-6) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 3, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (25-29) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 13, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (40-45) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 19, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (55-63) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 31, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-6) to (70-79) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 34, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (3-8) to (89-99) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 42, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (3-9) to (105-120) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 51, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-12) to (142-158) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 63, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-17) to (198-224) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 74, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (9-24) to (278-315) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 82, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 0, 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (8-22) to (252-286) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-17) to (198-224) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 1, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 2 to (8-10) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 3, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (40-46) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 13, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (2-6) to (64-72) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 19, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (3-8) to (88-101) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 31, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (3-10) to (112-126) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 34, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (5-13) to (142-158) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 42, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-14) to (168-192) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 51, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (7-20) to (227-253) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 63, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (10-27) to (316-358) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 74, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (15-38) to (445-503) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 82, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 0, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageRanged1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-8) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 3, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageRanged2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (31-36) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 13, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageRanged3___"] = { type = "Prefix", affix = "Snapping", "Adds (1-5) to (50-56) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 19, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageRanged4"] = { type = "Prefix", affix = "Crackling", "Adds (3-6) to (69-79) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 31, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageRanged5"] = { type = "Prefix", affix = "Sparking", "Adds (3-8) to (88-99) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 34, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageRanged6_"] = { type = "Prefix", affix = "Arcing", "Adds (4-10) to (111-124) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 42, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageRanged7"] = { type = "Prefix", affix = "Shocking", "Adds (4-11) to (131-150) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 51, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageRanged8"] = { type = "Prefix", affix = "Discharging", "Adds (5-15) to (178-198) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 63, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 1120, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageRanged9"] = { type = "Prefix", affix = "Electrocuting", "Adds (9-21) to (248-280) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 74, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 490, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageRanged10_"] = { type = "Prefix", affix = "Vapourising", "Adds (11-30) to (348-394) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 82, group = "LightningDamage", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 126, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (13-35) to (403-457) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (10-27) to (316-358) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 1, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(2-4)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 2, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(5-7)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 18, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(8-10)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 30, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(11-13)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 42, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(14-16)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 56, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(17-19)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 70, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(20-22)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 77, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(23-24)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 82, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Agile", "(2-4)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 2, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Dancer's", "(5-7)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 19, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Acrobat's", "(8-10)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 30, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Fleet", "(11-13)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 42, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Blurred", "(14-16)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 56, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Phased", "(17-19)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 70, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Vaporous", "(20-22)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 77, group = "EvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(23-24)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 82, group = "EvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(2-4)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 3, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(5-7)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 18, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(8-10)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 30, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(11-13)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 42, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(14-16)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 56, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-19)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 70, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(20-22)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 77, group = "EnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldPercentEssence1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldPercentEssence4"] = { type = "Prefix", affix = "Essences", "(11-13)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldPercentEssence5"] = { type = "Prefix", affix = "Essences", "(14-16)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldPercentEssence6"] = { type = "Prefix", affix = "Essences", "(17-18)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldPercentEssence7_"] = { type = "Prefix", affix = "Essences", "(18-19)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 10, group = "EnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 1, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 18, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 29, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-80) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 42, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(81-120) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 58, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(121-150) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 72, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(151-170) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 84, group = "IncreasedEvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(151-180) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 82, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 1, group = "BaseLocalDefences", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 18, group = "BaseLocalDefences", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 29, group = "BaseLocalDefences", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-138) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 42, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(139-322) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 56, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(323-400) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 70, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(401-430) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingEssenceHelm4__"] = { type = "Prefix", affix = "Essences", "+(40-49) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 42, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(50-60) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(61-138) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(139-155) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots3"] = { type = "Prefix", affix = "Essences", "+(21-25) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 26, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots4"] = { type = "Prefix", affix = "Essences", "+(26-29) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 42, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots5"] = { type = "Prefix", affix = "Essences", "+(30-35) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots6"] = { type = "Prefix", affix = "Essences", "+(36-60) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots7"] = { type = "Prefix", affix = "Essences", "+(61-70) to Evasion Rating", statOrderKey = "858", statOrder = { 858 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 1, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 18, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 30, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 44, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 57, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 71, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(401-460) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 83, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(461-540) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 86, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(420-480) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 82, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRatingEssenceRing5"] = { type = "Prefix", affix = "Essences", "+(80-120) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 58, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRatingEssenceRing6"] = { type = "Prefix", affix = "Essences", "+(121-200) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 74, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedPhysicalDamageReductionRatingEssenceRing7"] = { type = "Prefix", affix = "Essences", "+(201-300) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 82, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 1, group = "BaseLocalDefences", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 18, group = "BaseLocalDefences", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 30, group = "BaseLocalDefences", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 59, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(401-440) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(50-90) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm6_"] = { type = "Prefix", affix = "Essences", "+(91-138) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm7_"] = { type = "Prefix", affix = "Essences", "+(139-180) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(30-45) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 58, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(46-60) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 74, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(61-75) to Armour", statOrderKey = "849", statOrder = { 849 }, level = 82, group = "BaseLocalDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(3-7) to Armour", "+(3-7) to Evasion Rating", statOrderKey = "849,858", statOrder = { 849, 858 }, level = 1, group = "BaseLocalDefences", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(9-25) to Armour", "+(9-25) to Evasion Rating", statOrderKey = "849,858", statOrder = { 849, 858 }, level = 18, group = "BaseLocalDefences", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(27-45) to Armour", "+(27-45) to Evasion Rating", statOrderKey = "849,858", statOrder = { 849, 858 }, level = 30, group = "BaseLocalDefences", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(46-103) to Armour", "+(46-103) to Evasion Rating", statOrderKey = "849,858", statOrder = { 849, 858 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(105-241) to Armour", "+(105-241) to Evasion Rating", statOrderKey = "849,858", statOrder = { 849, 858 }, level = 69, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(243-300) to Armour", "+(243-300) to Evasion Rating", statOrderKey = "849,858", statOrder = { 849, 858 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(3-7) to Armour", "+(3-4) to maximum Energy Shield", statOrderKey = "849,868", statOrder = { 849, 868 }, level = 1, group = "BaseLocalDefences", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(9-25) to Armour", "+(9-12) to maximum Energy Shield", statOrderKey = "849,868", statOrder = { 849, 868 }, level = 18, group = "BaseLocalDefences", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(27-45) to Armour", "+(18-22) to maximum Energy Shield", statOrderKey = "849,868", statOrder = { 849, 868 }, level = 30, group = "BaseLocalDefences", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(46-103) to Armour", "+(30-36) to maximum Energy Shield", statOrderKey = "849,868", statOrder = { 849, 868 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(105-241) to Armour", "+(58-67) to maximum Energy Shield", statOrderKey = "849,868", statOrder = { 849, 868 }, level = 69, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(243-300) to Armour", "+(69-75) to maximum Energy Shield", statOrderKey = "849,868", statOrder = { 849, 868 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(3-7) to Evasion Rating", "+(3-4) to maximum Energy Shield", statOrderKey = "858,868", statOrder = { 858, 868 }, level = 1, group = "BaseLocalDefences", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(9-25) to Evasion Rating", "+(9-12) to maximum Energy Shield", statOrderKey = "858,868", statOrder = { 858, 868 }, level = 18, group = "BaseLocalDefences", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(27-45) to Evasion Rating", "+(18-22) to maximum Energy Shield", statOrderKey = "858,868", statOrder = { 858, 868 }, level = 30, group = "BaseLocalDefences", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(46-103) to Evasion Rating", "+(30-36) to maximum Energy Shield", statOrderKey = "858,868", statOrder = { 858, 868 }, level = 46, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(105-241) to Evasion Rating", "+(58-67) to maximum Energy Shield", statOrderKey = "858,868", statOrder = { 858, 868 }, level = 69, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(243-300) to Evasion Rating", "+(69-75) to maximum Energy Shield", statOrderKey = "858,868", statOrder = { 858, 868 }, level = 73, group = "BaseLocalDefences", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEvasionRatingAndLife1"] = { type = "Prefix", affix = "Rhoa's", "+(8-10) to Armour", "+(8-10) to Evasion Rating", "+(18-23) to maximum Life", statOrderKey = "849,858,877", statOrder = { 849, 858, 877 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEvasionRatingAndLife2"] = { type = "Prefix", affix = "Rhex's", "+(11-21) to Armour", "+(11-21) to Evasion Rating", "+(24-28) to maximum Life", statOrderKey = "849,858,877", statOrder = { 849, 858, 877 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEvasionRatingAndLife3"] = { type = "Prefix", affix = "Chimeral's", "+(22-48) to Armour", "+(22-48) to Evasion Rating", "+(29-33) to maximum Life", statOrderKey = "849,858,877", statOrder = { 849, 858, 877 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEvasionRatingAndLife4"] = { type = "Prefix", affix = "Bull's", "+(49-60) to Armour", "+(49-60) to Evasion Rating", "+(34-38) to maximum Life", statOrderKey = "849,858,877", statOrder = { 849, 858, 877 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEnergyShieldAndLife1_"] = { type = "Prefix", affix = "Coelacanth's", "+(8-10) to Armour", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrderKey = "849,868,877", statOrder = { 849, 868, 877 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEnergyShieldAndLife2_"] = { type = "Prefix", affix = "Swordfish's", "+(11-21) to Armour", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrderKey = "849,868,877", statOrder = { 849, 868, 877 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Shark's", "+(22-48) to Armour", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrderKey = "849,868,877", statOrder = { 849, 868, 877 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Whale's", "+(49-60) to Armour", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrderKey = "849,868,877", statOrder = { 849, 868, 877 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Vulture's", "+(8-10) to Evasion Rating", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrderKey = "858,868,877", statOrder = { 858, 868, 877 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Kingfisher's", "+(11-21) to Evasion Rating", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrderKey = "858,868,877", statOrder = { 858, 868, 877 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Owl's", "+(22-48) to Evasion Rating", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrderKey = "858,868,877", statOrder = { 858, 868, 877 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Eagle's", "+(49-60) to Evasion Rating", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrderKey = "858,868,877", statOrder = { 858, 868, 877 }, level = 78, group = "BaseLocalDefencesAndLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "+(14-20) to Armour", "+(18-23) to maximum Life", statOrderKey = "849,877", statOrder = { 849, 877 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndLife2"] = { type = "Prefix", affix = "Urchin's", "+(21-42) to Armour", "+(24-28) to maximum Life", statOrderKey = "849,877", statOrder = { 849, 877 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndLife3"] = { type = "Prefix", affix = "Nautilus's", "+(43-95) to Armour", "+(29-33) to maximum Life", statOrderKey = "849,877", statOrder = { 849, 877 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "boots", "gloves", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseArmourAndLife4"] = { type = "Prefix", affix = "Crocodile's", "+(96-120) to Armour", "+(34-38) to maximum Life", statOrderKey = "849,877", statOrder = { 849, 877 }, level = 78, group = "BaseLocalDefencesAndLife", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEvasionRatingAndLife1"] = { type = "Prefix", affix = "Flea's", "+(14-20) to Evasion Rating", "+(18-23) to maximum Life", statOrderKey = "858,877", statOrder = { 858, 877 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEvasionRatingAndLife2"] = { type = "Prefix", affix = "Fawn's", "+(21-42) to Evasion Rating", "+(24-28) to maximum Life", statOrderKey = "858,877", statOrder = { 858, 877 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEvasionRatingAndLife3"] = { type = "Prefix", affix = "Ram's", "+(43-95) to Evasion Rating", "+(29-33) to maximum Life", statOrderKey = "858,877", statOrder = { 858, 877 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "boots", "gloves", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEvasionRatingAndLife4"] = { type = "Prefix", affix = "Ibex's", "+(96-120) to Evasion Rating", "+(34-38) to maximum Life", statOrderKey = "858,877", statOrder = { 858, 877 }, level = 78, group = "BaseLocalDefencesAndLife", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "+(8-10) to maximum Energy Shield", "+(18-23) to maximum Life", statOrderKey = "868,877", statOrder = { 868, 877 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "+(11-15) to maximum Energy Shield", "+(24-28) to maximum Life", statOrderKey = "868,877", statOrder = { 868, 877 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEnergyShieldAndLife3_"] = { type = "Prefix", affix = "Abbot's", "+(16-25) to maximum Energy Shield", "+(29-33) to maximum Life", statOrderKey = "868,877", statOrder = { 868, 877 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Exarch's", "+(26-30) to maximum Energy Shield", "+(34-38) to maximum Life", statOrderKey = "868,877", statOrder = { 868, 877 }, level = 78, group = "BaseLocalDefencesAndLife", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEnergyShieldAndMana1"] = { type = "Prefix", affix = "Acolyte's", "+(8-10) to maximum Energy Shield", "+(11-15) to maximum Mana", statOrderKey = "868,884", statOrder = { 868, 884 }, level = 30, group = "BaseLocalDefencesAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEnergyShieldAndMana2"] = { type = "Prefix", affix = "Deacon's", "+(11-15) to maximum Energy Shield", "+(16-19) to maximum Mana", statOrderKey = "868,884", statOrder = { 868, 884 }, level = 46, group = "BaseLocalDefencesAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEnergyShieldAndMana3"] = { type = "Prefix", affix = "Priest's", "+(16-25) to maximum Energy Shield", "+(20-22) to maximum Mana", statOrderKey = "868,884", statOrder = { 868, 884 }, level = 62, group = "BaseLocalDefencesAndLife", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalBaseEnergyShieldAndMana4"] = { type = "Prefix", affix = "Bishop's", "+(26-30) to maximum Energy Shield", "+(23-25) to maximum Mana", statOrderKey = "868,884", statOrder = { 868, 884 }, level = 78, group = "BaseLocalDefencesAndLife", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 15, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 30, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 40, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 55, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 86, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityEssence7"] = { type = "Prefix", affix = "Essences", "32% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 82, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityEnhancedModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrderKey = "1070,2425", statOrder = { 1070, 2425 }, level = 1, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityEnhancedModDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(5-6)% chance to Dodge Attack Hits", statOrderKey = "1070,1417", statOrder = { 1070, 1417 }, level = 1, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityEnhancedModSpellDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(5-6)% chance to Dodge Spell Hits", statOrderKey = "1070,1418", statOrder = { 1070, 1418 }, level = 1, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamage1"] = { type = "Prefix", affix = "Chanter's", "(3-7)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 5, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellDamage2"] = { type = "Prefix", affix = "Mage's", "(8-12)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 20, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellDamage3"] = { type = "Prefix", affix = "Sorcerer's", "(13-17)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 38, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellDamage4"] = { type = "Prefix", affix = "Thaumaturgist's", "(18-22)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 56, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellDamage5"] = { type = "Prefix", affix = "Wizard's", "(23-26)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 76, group = "SpellDamage", weightKey = { "no_caster_mods", "amulet", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(10-19)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 1500, 1500, 1500, 1500, 1500, 1500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(20-29)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 1500, 1500, 1500, 1500, 1500, 1500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(30-39)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 1500, 1500, 1500, 1500, 1500, 1500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(40-49)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 600, 600, 600, 600, 600, 600, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(50-64)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(65-74)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 150, 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(85-99)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 80, 80, 80, 80, 80, 80, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(100-109)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "attack_dagger", "no_caster_mods", "focus", "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 0, 40, 40, 40, 40, 40, 40, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponEssence5_"] = { type = "Prefix", affix = "Essences", "(50-66)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(67-82)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 74, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(83-94)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 82, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "562,5994", statOrder = { 562, 5994 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(15-29)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(30-44)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-59)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(60-84)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 600, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(85-104)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(105-124)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 150, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(125-149)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 80, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(150-164)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 40, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "(85-106)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(107-122)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 74, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(123-144)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 82, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "562,5994", statOrder = { 562, 5994 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(5-9)% increased Spell Damage", "+(17-20) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 2, group = "SpellDamageAndMana", weightKey = { "attack_dagger", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 750, 750, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(10-14)% increased Spell Damage", "+(21-24) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 11, group = "SpellDamageAndMana", weightKey = { "attack_dagger", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 750, 750, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(15-19)% increased Spell Damage", "+(25-28) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 23, group = "SpellDamageAndMana", weightKey = { "attack_dagger", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 750, 750, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(20-24)% increased Spell Damage", "+(29-33) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 35, group = "SpellDamageAndMana", weightKey = { "attack_dagger", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 800, 600, 600, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(25-29)% increased Spell Damage", "+(34-37) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 46, group = "SpellDamageAndMana", weightKey = { "attack_dagger", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 400, 300, 300, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(30-34)% increased Spell Damage", "+(38-41) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 58, group = "SpellDamageAndMana", weightKey = { "attack_dagger", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 200, 150, 150, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(35-39)% increased Spell Damage", "+(42-45) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 80, group = "SpellDamageAndMana", weightKey = { "attack_dagger", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 100, 75, 75, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(8-14)% increased Spell Damage", "+(26-30) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 2, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(15-22)% increased Spell Damage", "+(31-35) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 11, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(23-29)% increased Spell Damage", "+(36-41) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 23, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-37)% increased Spell Damage", "+(42-47) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 35, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 600, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(38-44)% increased Spell Damage", "+(48-53) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 46, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(45-50)% increased Spell Damage", "+(54-59) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 58, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 150, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(51-55)% increased Spell Damage", "+(60-64) to maximum Mana", statOrderKey = "562,884", statOrder = { 562, 884 }, level = 80, group = "SpellDamageAndMana", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 75, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["TrapDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrderKey = "534", statOrder = { 534 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrderKey = "534", statOrder = { 534 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapThrowSpeedEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrderKey = "1178", statOrder = { 1178 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapCooldownRecoveryAndDurationEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Speed for throwing Traps", statOrderKey = "1174,2642", statOrder = { 1174, 2642 }, level = 1, group = "TrapCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapAreaOfEffectEnhancedMod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrderKey = "2660", statOrder = { 2660 }, level = 1, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedTrapGemLevelEnhancedMod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap Gems", statOrderKey = "49", statOrder = { 49 }, level = 1, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnWeaponEnhancedMod__"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAttackAndCastSpeedEnhancedMod"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (13-15)% increased Attack Speed", "Minions have (13-15)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDurationEnhancedMod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrderKey = "3798", statOrder = { 3798 }, level = 1, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedMinionGemLevelEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrderKey = "44", statOrder = { 44 }, level = 1, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(10-19)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(20-29)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(30-39)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(40-49)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 200, 200, 200, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Volcanic", "(50-64)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 100, 100, 100, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(65-74)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 50, 50, 50, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Pyroclastic", "(85-99)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 25, 25, 25, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(100-109)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 12, 12, 12, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(15-29)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(30-44)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-59)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(60-84)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 200, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Volcanic", "(85-104)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 100, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(105-124)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 50, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Pyroclastic", "(125-149)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 25, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(150-164)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 13, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrderKey = "686,725", statOrder = { 686, 725 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrderKey = "686,725", statOrder = { 686, 725 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(10-19)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(20-29)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(30-39)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(40-49)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 200, 200, 200, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(50-64)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 100, 100, 100, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Crystalline", "(65-74)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 50, 50, 50, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(85-99)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 25, 25, 25, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Tul's", "(100-109)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 12, 12, 12, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(15-29)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(30-44)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(45-59)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(60-84)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 200, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(85-104)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 100, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Crystalline", "(105-124)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 50, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(125-149)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 25, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Tul's", "(150-164)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 13, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["ColdDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrderKey = "693,726", statOrder = { 693, 726 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrderKey = "693,726", statOrder = { 693, 726 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(10-19)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(20-29)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(30-39)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(40-49)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 200, 200, 200, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(50-64)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 100, 100, 100, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(65-74)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 50, 50, 50, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(85-99)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 25, 25, 25, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Esh's", "(100-109)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "focus", "wand", "sceptre", "default", }, weightVal = { 0, 0, 12, 12, 12, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(15-29)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(30-44)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-59)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(60-84)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 200, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(85-104)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 100, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(105-124)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 50, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(125-149)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 79, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 25, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Esh's", "(150-164)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 13, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["LightningDamagePrefixOnWeaponEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrderKey = "702,727", statOrder = { 702, 727 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrderKey = "702,727", statOrder = { 702, 727 }, level = 1, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(5-10)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(11-20)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(21-30)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(31-36)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(37-42)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 300, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(43-50)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 300, 300, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 10, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 26, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageEssence4"] = { type = "Prefix", affix = "Essences", "(26-29)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 42, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageEssence5"] = { type = "Prefix", affix = "Essences", "(30-34)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 58, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageEssence6_"] = { type = "Prefix", affix = "Essences", "(35-38)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 74, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageEssence7"] = { type = "Prefix", affix = "Essences", "(39-42)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 82, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnWeapons1_"] = { type = "Prefix", affix = "Catalysing", "(11-20)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnWeapons2"] = { type = "Prefix", affix = "Infusing", "(21-30)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnWeapons3_"] = { type = "Prefix", affix = "Empowering", "(31-36)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnWeapons4"] = { type = "Prefix", affix = "Unleashed", "(37-42)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnWeapons5_"] = { type = "Prefix", affix = "Overpowering", "(43-50)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnWeapons6"] = { type = "Prefix", affix = "Devastating", "(51-59)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "one_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(19-34)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(36-51)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(53-61)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(63-71)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(73-85)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "two_hand_weapon", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["ManaLeech1"] = { type = "Prefix", affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrderKey = "979", statOrder = { 979 }, level = 9, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["ManaLeech2"] = { type = "Prefix", affix = "Parched", "(3-4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "979", statOrder = { 979 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["ManaLeechPermyriad1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "980", statOrder = { 980 }, level = 50, group = "ManaLeech", weightKey = { "no_attack_mods", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["ManaLeechPermyriad2"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrderKey = "980", statOrder = { 980 }, level = 70, group = "ManaLeech", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["ManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrderKey = "980", statOrder = { 980 }, level = 82, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalManaLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "982", statOrder = { 982 }, level = 58, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalManaLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrderKey = "982", statOrder = { 982 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrderKey = "982", statOrder = { 982 }, level = 82, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["ItemFoundQuantityIncrease1"] = { type = "Suffix", affix = "of Collecting", "(4-8)% increased Quantity of Items found", statOrderKey = "892", statOrder = { 892 }, level = 2, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ItemFoundQuantityIncrease2"] = { type = "Suffix", affix = "of Gathering", "(9-12)% increased Quantity of Items found", statOrderKey = "892", statOrder = { 892 }, level = 32, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ItemFoundQuantityIncrease3"] = { type = "Suffix", affix = "of Hoarding", "(13-16)% increased Quantity of Items found", statOrderKey = "892", statOrder = { 892 }, level = 55, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ItemFoundQuantityIncrease4"] = { type = "Suffix", affix = "of Amassment", "(17-20)% increased Quantity of Items found", statOrderKey = "892", statOrder = { 892 }, level = 77, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 30, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-20)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 53, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(21-26)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-12)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 20, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Pirate's", "(13-18)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 39, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Dragon's", "(19-24)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 62, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Perandus'", "(25-28)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 84, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(5-7)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "ring", "amulet", "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 1000, 0, 1000, 800, 800, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(8-10)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "amulet", "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 1000, 0, 1000, 800, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(11-13)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "amulet", "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 0, 1000, 0, 1000, 800, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Legerdemain", "(14-16)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Prestidigitation", "(17-19)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Sortilege", "(20-22)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(23-25)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 250, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(26-28)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(8-11)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(12-15)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(17-20)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Legerdemain", "(21-24)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Prestidigitation", "(26-29)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Sortilege", "(30-33)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(35-38)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHandEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(23-25)% increased Cast Speed", statOrderKey = "728,767", statOrder = { 728, 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedCastSpeedTwoHandEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(35-38)% increased Cast Speed", statOrderKey = "728,767", statOrder = { 728, 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedCastSpeedFishing"] = { type = "Suffix", affix = "of Casting", "(24-28)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 10, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "fishing_rod", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 30, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 37, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 60, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-27)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 77, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedEssenceRanged4_"] = { type = "Suffix", affix = "of the Essence", "(11-12)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedEssenceRanged5"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedEssenceRanged6"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedEssenceRanged7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrderKey = "711,734", statOrder = { 711, 734 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedAttackSpeedRangedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrderKey = "711,734", statOrder = { 711, 734 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "ring", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Grandmastery", "(14-16)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 76, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceJewellery4"] = { type = "Suffix", affix = "of the Essence", "(4-5)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceJewellery5"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceJewellery6"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceJewellery7"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceQuiver4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceQuiver5_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceQuiver6"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedEssenceQuiver7___"] = { type = "Suffix", affix = "of the Essence", "(11-12)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 1, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 12, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 20, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 26, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 33, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 41, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 50, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy8"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 63, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy9"] = { type = "Suffix", affix = "of the Assassin", "+(321-400) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 76, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracy10"] = { type = "Suffix", affix = "of Lioneye", "+(401-500) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 85, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(401-440) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracyNew1_"] = { type = "Suffix", affix = "of Steadiness", "+(50-100) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 1, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 600, 600, 600, 600, 600, 600, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(100-165) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 20, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(166-250) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 40, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(251-350) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 60, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracyNew5_"] = { type = "Suffix", affix = "of the Ranger", "+(351-480) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 75, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(481-600) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 85, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "gloves", "helmet", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Regenerate (1-2) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Regenerate (2-4) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 18, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Regenerate (4-7) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 30, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Regenerate (7-10) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 44, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Regenerate (10-13) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 59, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Regenerate (13-16) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 78, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegeneration7"] = { type = "Suffix", affix = "of Ryslatha", "Regenerate (16-20) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 83, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegeneration8_"] = { type = "Suffix", affix = "of the Phoenix", "Regenerate (20-25) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 86, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationEssence2"] = { type = "Suffix", affix = "of the Essence", "Regenerate (2-4) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 10, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationEssence7"] = { type = "Suffix", affix = "of the Essence", "Regenerate (15-18) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 82, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationEnhancedMod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (16-20) Life per second", "Regenerate 0.4% of Life per second", statOrderKey = "882,1194", statOrder = { 882, 1194 }, level = 1, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationPercent1"] = { type = "Suffix", affix = "of Youthfulness", "Regenerate (0.4-0.5)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 18, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationPercent2__"] = { type = "Suffix", affix = "of Vitality", "Regenerate (0.6-0.7)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 36, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationPercent3_"] = { type = "Suffix", affix = "of Longevity", "Regenerate (0.8-0.9)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationPercent4"] = { type = "Suffix", affix = "of Immortality", "Regenerate (1-1.1)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 81, group = "LifeRegenerationRatePercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 2, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 18, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 29, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 42, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 55, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 79, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRegenerationEssence7_"] = { type = "Suffix", affix = "of the Essence", "(70-76)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 82, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunThresholdReduction1"] = { type = "Suffix", affix = "of the Pugilist", "(5-7)% reduced Enemy Stun Threshold", statOrderKey = "837", statOrder = { 837 }, level = 5, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunThresholdReduction2"] = { type = "Suffix", affix = "of the Brawler", "(8-9)% reduced Enemy Stun Threshold", statOrderKey = "837", statOrder = { 837 }, level = 20, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunThresholdReduction3"] = { type = "Suffix", affix = "of the Boxer", "(10-11)% reduced Enemy Stun Threshold", statOrderKey = "837", statOrder = { 837 }, level = 30, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunThresholdReduction4"] = { type = "Suffix", affix = "of the Combatant", "(12-13)% reduced Enemy Stun Threshold", statOrderKey = "837", statOrder = { 837 }, level = 44, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunThresholdReduction5"] = { type = "Suffix", affix = "of the Gladiator", "(14-15)% reduced Enemy Stun Threshold", statOrderKey = "837", statOrder = { 837 }, level = 58, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunThresholdReductionEssence7"] = { type = "Suffix", affix = "of the Essence", "(16-17)% reduced Enemy Stun Threshold", statOrderKey = "837", statOrder = { 837 }, level = 82, group = "StunThresholdReduction", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 5, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 20, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 30, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 44, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 58, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 72, group = "CriticalStrikeChanceIncrease", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChance7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 85, group = "CriticalStrikeChanceIncrease", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 82, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceEssenceGloves4"] = { type = "Suffix", affix = "of the Essence", "(15-17)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 42, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceEssenceGloves5"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 58, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceEssenceGloves6"] = { type = "Suffix", affix = "of the Essence", "(21-23)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 74, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(24-26)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 82, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-11)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(12-17)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 12, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(18-23)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 24, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(24-29)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 36, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(30-35)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 48, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(36-41)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 60, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResist7"] = { type = "Suffix", affix = "of the Magma", "+(42-45)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 72, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(46-48)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 84, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResist1"] = { type = "Suffix", affix = "of the Inuit", "+(6-11)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResist2"] = { type = "Suffix", affix = "of the Seal", "+(12-17)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 14, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResist3"] = { type = "Suffix", affix = "of the Penguin", "+(18-23)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 26, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(24-29)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 38, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(30-35)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 50, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(36-41)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 60, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(42-45)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 72, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(46-48)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 84, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-11)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(12-17)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 13, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(18-23)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 25, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(24-29)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 37, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(30-35)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 49, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(36-41)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 60, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(42-45)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 72, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(46-48)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 84, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistEnhancedModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "923,1653", statOrder = { 923, 1653 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["ColdResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(9-10)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "929,1654", statOrder = { 929, 1654 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["LightningResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(9-10)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "934,1655", statOrder = { 934, 1655 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["FireResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrderKey = "923,962", statOrder = { 923, 962 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrderKey = "929,964", statOrder = { 929, 964 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistEnhancedModLeech_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrderKey = "934,966", statOrder = { 934, 966 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrderKey = "923,6362", statOrder = { 923, 6362 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistEnhancedModAilments__"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrderKey = "929,4222", statOrder = { 929, 4222 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrderKey = "934,4131", statOrder = { 934, 4131 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(5-10)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(11-15)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 30, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(16-20)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 44, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(21-25)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 56, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(26-30)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 65, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(31-35)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 81, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 125, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosResistEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(9-10)% reduced Chaos Damage taken over time", statOrderKey = "938,1198", statOrder = { 938, 1198 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 12, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 24, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 36, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 48, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 60, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 85, group = "AllResistances", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "quiver", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriitcalMultiplierEssence7"] = { type = "Suffix", affix = "of the Essence", "+(35-41)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalMultiplierEssenceRing5_"] = { type = "Suffix", affix = "of the Essence", "+(15-17)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 58, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalMultiplierEssenceRing6_"] = { type = "Suffix", affix = "of the Essence", "+(18-20)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalMultiplierEssenceRing7"] = { type = "Suffix", affix = "of the Essence", "+(21-25)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunRecovery1"] = { type = "Suffix", affix = "of Thick Skin", "(11-13)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 1, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunRecovery2"] = { type = "Suffix", affix = "of Stone Skin", "(14-16)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 17, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunRecovery3"] = { type = "Suffix", affix = "of Iron Skin", "(17-19)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 28, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunRecovery4"] = { type = "Suffix", affix = "of Steel Skin", "(20-22)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 42, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunRecovery5"] = { type = "Suffix", affix = "of Adamantite Skin", "(23-25)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 56, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunRecovery6"] = { type = "Suffix", affix = "of Corundum Skin", "(26-28)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 79, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunRecoveryEssence7"] = { type = "Suffix", affix = "of the Essence", "(29-34)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 82, group = "StunRecovery", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-15)% increased Stun Duration on Enemies", statOrderKey = "1123", statOrder = { 1123 }, level = 5, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(16-20)% increased Stun Duration on Enemies", statOrderKey = "1123", statOrder = { 1123 }, level = 18, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(21-25)% increased Stun Duration on Enemies", statOrderKey = "1123", statOrder = { 1123 }, level = 30, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(26-30)% increased Stun Duration on Enemies", statOrderKey = "1123", statOrder = { 1123 }, level = 44, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(31-35)% increased Stun Duration on Enemies", statOrderKey = "1123", statOrder = { 1123 }, level = 58, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunDurationEssence7"] = { type = "Suffix", affix = "of the Essence", "(36-39)% increased Stun Duration on Enemies", statOrderKey = "1123", statOrder = { 1123 }, level = 82, group = "StunDurationIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 11, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "attack_dagger", "no_caster_mods", "attack_staff", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 21, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "attack_dagger", "no_caster_mods", "attack_staff", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 28, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "attack_dagger", "no_caster_mods", "attack_staff", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 41, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "attack_dagger", "no_caster_mods", "attack_staff", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 59, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "attack_dagger", "no_caster_mods", "attack_staff", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 76, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "attack_dagger", "no_caster_mods", "attack_staff", "focus", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellCriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(110-119)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 82, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["ProjectileSpeed1"] = { type = "Suffix", affix = "of Darting", "(10-17)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 14, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "(18-25)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 27, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "(26-33)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 41, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileSpeed4"] = { type = "Suffix", affix = "of the Zephyr", "(34-41)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 55, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileSpeed5"] = { type = "Suffix", affix = "of the Gale", "(42-46)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 82, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "(47-52)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 28, group = "ProjectileSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "+2 Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 8, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "amulet", "ring", "gloves", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "+3 Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 20, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "+4 Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 30, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "+5 Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 40, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "+2 Life gained for each Enemy hit by Attacks", statOrderKey = "1015", statOrder = { 1015 }, level = 8, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "+3 Life gained for each Enemy hit by Attacks", statOrderKey = "1015", statOrder = { 1015 }, level = 20, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "+4 Life gained for each Enemy hit by Attacks", statOrderKey = "1015", statOrder = { 1015 }, level = 30, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "+5 Life gained for each Enemy hit by Attacks", statOrderKey = "1015", statOrder = { 1015 }, level = 40, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePercent1"] = { type = "Suffix", affix = "of Embers", "(3-7)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 8, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePercent2"] = { type = "Suffix", affix = "of Coals", "(8-12)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 22, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePercent3"] = { type = "Suffix", affix = "of Cinders", "(13-17)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 36, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePercent4"] = { type = "Suffix", affix = "of Flames", "(18-22)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 50, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePercent5"] = { type = "Suffix", affix = "of Immolation", "(23-26)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 64, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePercent6"] = { type = "Suffix", affix = "of Ashes", "(27-30)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 76, group = "FireDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePercentEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 10, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 26, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePercentEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 42, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 58, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 74, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 82, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePercent1"] = { type = "Suffix", affix = "of Snow", "(3-7)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 12, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePercent2"] = { type = "Suffix", affix = "of Sleet", "(8-12)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 24, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePercent3"] = { type = "Suffix", affix = "of Ice", "(13-17)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 36, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePercent4"] = { type = "Suffix", affix = "of Rime", "(18-22)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 50, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePercent5"] = { type = "Suffix", affix = "of Floe", "(23-26)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 64, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePercent6"] = { type = "Suffix", affix = "of Glaciation", "(27-30)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 76, group = "ColdDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePercentEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-10)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 1, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePercentEssence2"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 10, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 26, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePercentEssence4_"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 42, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 58, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 74, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 82, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamagePercent1"] = { type = "Suffix", affix = "of Sparks", "(3-7)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 10, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamagePercent2"] = { type = "Suffix", affix = "of Static", "(8-12)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 23, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamagePercent3"] = { type = "Suffix", affix = "of Electricity", "(13-17)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 36, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamagePercent4"] = { type = "Suffix", affix = "of Voltage", "(18-22)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 50, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "ring", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamagePercent5"] = { type = "Suffix", affix = "of Discharge", "(23-26)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 64, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "amulet", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamagePercent6"] = { type = "Suffix", affix = "of Arcing", "(27-30)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 76, group = "LightningDamagePercentage", weightKey = { "no_elemental_damage_mods", "wand", "staff", "sceptre", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 82, group = "LightningDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "+(3-6) Life gained on Kill", statOrderKey = "1025", statOrder = { 1025 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "+(7-10) Life gained on Kill", statOrderKey = "1025", statOrder = { 1025 }, level = 23, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "+(11-14) Life gained on Kill", statOrderKey = "1025", statOrder = { 1025 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "+1 Mana gained on Kill", statOrderKey = "1038", statOrder = { 1038 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "+(2-3) Mana gained on Kill", statOrderKey = "1038", statOrder = { 1038 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "+(4-6) Mana gained on Kill", statOrderKey = "1038", statOrder = { 1038 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 20, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 30, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Puncturing", "(25-29)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 44, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 59, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 73, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 30, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 44, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 73, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedGemLevel1"] = { type = "Prefix", affix = "Paragon's", "+1 to Level of Socketed Gems", statOrderKey = "29", statOrder = { 29 }, level = 50, group = "IncreaseSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "staff", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedGemUnsetRing1"] = { type = "Prefix", affix = "Exemplary", "+1 to Level of Socketed Gems", statOrderKey = "29", statOrder = { 29 }, level = 2, group = "IncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedGemUnsetRing2"] = { type = "Prefix", affix = "Quintessential", "+2 to Level of Socketed Gems", statOrderKey = "29", statOrder = { 29 }, level = 50, group = "IncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedGemUnsetRing3"] = { type = "Prefix", affix = "Flawless", "+3 to Level of Socketed Gems", statOrderKey = "29", statOrder = { 29 }, level = 76, group = "IncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalSpellGemsLevel1"] = { type = "Prefix", affix = "Magister's", "+1 to Level of all Spell Skill Gems", statOrderKey = "907", statOrder = { 907 }, level = 55, group = "IncreaseSocketedGemLevel", weightKey = { "no_caster_mods", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 50, 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Magister's", "+(1-2) to Level of all Spell Skill Gems", statOrderKey = "907", statOrder = { 907 }, level = 55, group = "IncreaseSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedFireGemLevel1"] = { type = "Prefix", affix = "Flame Spinner's", "+1 to Level of Socketed Fire Gems", statOrderKey = "34", statOrder = { 34 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedFireGemLevel2_"] = { type = "Prefix", affix = "Lava Caller's", "+2 to Level of Socketed Fire Gems", statOrderKey = "34", statOrder = { 34 }, level = 55, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalFireSpellGemsLevel1_"] = { type = "Prefix", affix = "Flame Shaper's", "+1 to Level of all Fire Spell Skill Gems", statOrderKey = "909", statOrder = { 909 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 0, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalFireSpellGemsLevelTwoHand1__"] = { type = "Prefix", affix = "Flame Shaper's", "+(1-2) to Level of all Fire Spell Skill Gems", statOrderKey = "909", statOrder = { 909 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalFireSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Lava Conjurer's", "+3 to Level of all Fire Spell Skill Gems", statOrderKey = "909", statOrder = { 909 }, level = 77, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedColdGemLevel1"] = { type = "Prefix", affix = "Frost Weaver's", "+1 to Level of Socketed Cold Gems", statOrderKey = "35", statOrder = { 35 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedColdGemLevel2"] = { type = "Prefix", affix = "Winterbringer's", "+2 to Level of Socketed Cold Gems", statOrderKey = "35", statOrder = { 35 }, level = 55, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalColdSpellGemsLevel1_"] = { type = "Prefix", affix = "Frost Singer's", "+1 to Level of all Cold Spell Skill Gems", statOrderKey = "910", statOrder = { 910 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 0, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalColdSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Frost Singer's", "+(1-2) to Level of all Cold Spell Skill Gems", statOrderKey = "910", statOrder = { 910 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalColdSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Winter Beckoner's", "+3 to Level of all Cold Spell Skill Gems", statOrderKey = "910", statOrder = { 910 }, level = 77, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedLightningGemLevel1"] = { type = "Prefix", affix = "Thunder Lord's", "+1 to Level of Socketed Lightning Gems", statOrderKey = "36", statOrder = { 36 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedLightningGemLevel2"] = { type = "Prefix", affix = "Tempest King's", "+2 to Level of Socketed Lightning Gems", statOrderKey = "36", statOrder = { 36 }, level = 55, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalLightningSpellGemsLevel1"] = { type = "Prefix", affix = "Thunderhand's", "+1 to Level of all Lightning Spell Skill Gems", statOrderKey = "911", statOrder = { 911 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 0, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalLightningSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Thunderhand's", "+(1-2) to Level of all Lightning Spell Skill Gems", statOrderKey = "911", statOrder = { 911 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalLightningSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Tempest Master's", "+3 to Level of all Lightning Spell Skill Gems", statOrderKey = "911", statOrder = { 911 }, level = 77, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Nihilist's", "+1 to Level of Socketed Chaos Gems", statOrderKey = "37", statOrder = { 37 }, level = 4, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedChaosGemLevel2"] = { type = "Prefix", affix = "Anarchist's", "+2 to Level of Socketed Chaos Gems", statOrderKey = "37", statOrder = { 37 }, level = 55, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalChaosSpellGemsLevel1"] = { type = "Prefix", affix = "Mad Lord's", "+1 to Level of all Chaos Spell Skill Gems", statOrderKey = "912", statOrder = { 912 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 0, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalChaosSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Mad Lord's", "+(1-2) to Level of all Chaos Spell Skill Gems", statOrderKey = "912", statOrder = { 912 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalChaosSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Splintermind's", "+3 to Level of all Chaos Spell Skill Gems", statOrderKey = "912", statOrder = { 912 }, level = 77, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalPhysicalSpellGemsLevel1"] = { type = "Prefix", affix = "Lithomancer's", "+1 to Level of all Physical Spell Skill Gems", statOrderKey = "908", statOrder = { 908 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalPhysicalSpellGemsLevelTwoHand1_"] = { type = "Prefix", affix = "Lithomancer's", "+(1-2) to Level of all Physical Spell Skill Gems", statOrderKey = "908", statOrder = { 908 }, level = 2, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalPhysicalSpellGemsLevelTwoHand2_"] = { type = "Prefix", affix = "Tecton's", "+3 to Level of all Physical Spell Skill Gems", statOrderKey = "908", statOrder = { 908 }, level = 77, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedSpellGemLevelRace"] = { type = "Prefix", affix = "Competitor's", "+1 to Level of Socketed Spell Gems", statOrderKey = "38", statOrder = { 38 }, level = 1, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedMeleeGemLevel1"] = { type = "Prefix", affix = "Combatant's", "+1 to Level of Socketed Melee Gems", statOrderKey = "43", statOrder = { 43 }, level = 8, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_attack_mods", "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedMeleeGemLevel"] = { type = "Prefix", affix = "Weaponmaster's", "+2 to Level of Socketed Melee Gems", statOrderKey = "43", statOrder = { 43 }, level = 63, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_attack_mods", "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedBowGemLevel1"] = { type = "Prefix", affix = "Fletcher's", "+1 to Level of Socketed Bow Gems", statOrderKey = "42", statOrder = { 42 }, level = 9, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_attack_mods", "bow", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedBowGemLevel2"] = { type = "Prefix", affix = "Sharpshooter's", "+2 to Level of Socketed Bow Gems", statOrderKey = "42", statOrder = { 42 }, level = 64, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "no_attack_mods", "bow", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedMinionGemLevel1"] = { type = "Prefix", affix = "Reanimator's", "+1 to Level of Socketed Minion Gems", statOrderKey = "44", statOrder = { 44 }, level = 14, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedMinionGemLevel2"] = { type = "Prefix", affix = "Summoner's", "+2 to Level of Socketed Minion Gems", statOrderKey = "44", statOrder = { 44 }, level = 65, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedMinionGemLevel3_"] = { type = "Prefix", affix = "Necromancer's", "+3 to Level of Socketed Minion Gems", statOrderKey = "44", statOrder = { 44 }, level = 86, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 1, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 12, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 20, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 26, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 33, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 41, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 50, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 63, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracy9_"] = { type = "Suffix", affix = "of the Assassin", "+(321-360) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 80, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "bow", "wand", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(361-380) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracyNew1"] = { type = "Suffix", affix = "of Steadiness", "+(80-130) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 1, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(131-215) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 20, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(216-325) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 40, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(326-455) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 60, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracyNew5"] = { type = "Suffix", affix = "of the Ranger", "+(456-624) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 75, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(625-780) to Accuracy Rating", statOrderKey = "1280", statOrder = { 1280 }, level = 85, group = "IncreasedAccuracy", weightKey = { "no_attack_mods", "bow", "wand", "weapon", "default", }, weightVal = { 0, 1000, 1000, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["CannotBeFrozenWarbands"] = { type = "Prefix", affix = "Mutewind", "Cannot be Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "CannotBeFrozen", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalArrowBow1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrderKey = "1067", statOrder = { 1067 }, level = 70, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalArrowBow2_"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrderKey = "1067", statOrder = { 1067 }, level = 86, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionRunSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (7-10)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 10, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionRunSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions have (11-14)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 26, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionRunSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (15-18)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 42, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionRunSpeedEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-22)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 58, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionRunSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (23-26)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 74, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionRunSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (27-30)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 82, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (7-10)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 10, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeEssence3_"] = { type = "Suffix", affix = "of the Essence", "Minions have (11-14)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 26, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (15-18)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 42, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-22)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 58, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (23-26)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 74, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (27-30)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 82, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (7-10)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions deal (11-14)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageEssence4_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (15-18)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions deal (19-22)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (23-26)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions deal (27-30)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageEssenceTwoHand2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (10-15)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageEssenceTwoHand3_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (16-21)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageEssenceTwoHand4"] = { type = "Suffix", affix = "of the Essence", "Minions deal (22-27)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageEssenceTwoHand5_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (28-33)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageEssenceTwoHand6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (34-39)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageEssenceTwoHand7_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (40-45)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(10-20)% increased Flask Charges gained", statOrderKey = "1436", statOrder = { 1436 }, level = 2, group = "BeltFlaskCharges", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Overflowing", "(21-30)% increased Flask Charges gained", statOrderKey = "1436", statOrder = { 1436 }, level = 85, group = "BeltFlaskCharges", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(10-20)% reduced Flask Charges used", statOrderKey = "1437", statOrder = { 1437 }, level = 3, group = "BeltFlaskCharges", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltIncreasedFlaskDuration1"] = { type = "Suffix", affix = "of Savouring", "(10-20)% increased Flask Effect Duration", statOrderKey = "1440", statOrder = { 1440 }, level = 7, group = "BeltFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Recovering", "(10-20)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 5, group = "BeltFlaskRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 1, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 10, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 26, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 42, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 58, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 74, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrderKey = "1442", statOrder = { 1442 }, level = 82, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Inspiring", "(10-20)% increased Flask Mana Recovery rate", statOrderKey = "1443", statOrder = { 1443 }, level = 5, group = "BeltFlaskRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrderKey = "1443", statOrder = { 1443 }, level = 58, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrderKey = "1443", statOrder = { 1443 }, level = 74, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrderKey = "1443", statOrder = { 1443 }, level = 82, group = "BeltFlaskRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-14)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "Reflects (1-4) Physical Damage to Melee Attackers", statOrderKey = "1455", statOrder = { 1455 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "Reflects (5-10) Physical Damage to Melee Attackers", statOrderKey = "1455", statOrder = { 1455 }, level = 10, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "Reflects (11-24) Physical Damage to Melee Attackers", statOrderKey = "1455", statOrder = { 1455 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Jagged", "Reflects (25-50) Physical Damage to Melee Attackers", statOrderKey = "1455", statOrder = { 1455 }, level = 35, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrderKey = "1455", statOrder = { 1455 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrderKey = "1455", statOrder = { 1455 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrderKey = "1455", statOrder = { 1455 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalBlockChance1"] = { type = "Suffix", affix = "of Intercepting", "+(1-3)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 10, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalBlockChance2"] = { type = "Suffix", affix = "of Walling", "+(4-6)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalBlockChance3"] = { type = "Suffix", affix = "of Blocking", "+(7-8)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 85, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 1, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(31-34)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% Chance to Block Projectile Attack Damage", statOrderKey = "1669", statOrder = { 1669 }, level = 8, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% Chance to Block Projectile Attack Damage", statOrderKey = "1669", statOrder = { 1669 }, level = 19, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% Chance to Block Projectile Attack Damage", statOrderKey = "1669", statOrder = { 1669 }, level = 30, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% Chance to Block Projectile Attack Damage", statOrderKey = "1669", statOrder = { 1669 }, level = 55, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% Chance to Block Projectile Attack Damage", statOrderKey = "1669", statOrder = { 1669 }, level = 70, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% Chance to Block Projectile Attack Damage", statOrderKey = "1669", statOrder = { 1669 }, level = 81, group = "BlockVsProjectiles", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllDamageMasterVendorItem"] = { type = "Prefix", affix = "Leo's", "(5-15)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 1, group = "AllDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "2% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 42, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "3% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 58, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "4% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 74, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "5% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 82, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "18% reduced Attribute Requirements", statOrderKey = "484", statOrder = { 484 }, level = 36, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "32% reduced Attribute Requirements", statOrderKey = "484", statOrder = { 484 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrderKey = "754,1702", statOrder = { 754, 1702 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrderKey = "754,1702", statOrder = { 754, 1702 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrderKey = "755,1702", statOrder = { 755, 1702 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightRadiusAndAccuracyNew1"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrderKey = "755,1702", statOrder = { 755, 1702 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrderKey = "755,1702", statOrder = { 755, 1702 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "helmet", "ring", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrderKey = "1280,1702", statOrder = { 1280, 1702 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrderKey = "1280,1702", statOrder = { 1280, 1702 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrderKey = "755,1702", statOrder = { 755, 1702 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalLightRadiusAndAccuracyNew1_"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrderKey = "755,1702", statOrder = { 755, 1702 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalLightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrderKey = "755,1702", statOrder = { 755, 1702 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+1 to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 58, group = "MeleeWeaponAndUnarmedRange", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+2 to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 74, group = "MeleeWeaponAndUnarmedRange", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+3 to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 82, group = "MeleeWeaponAndUnarmedRange", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "+(5-15) Life gained when you Block", statOrderKey = "1034", statOrder = { 1034 }, level = 11, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "+(16-25) Life gained when you Block", statOrderKey = "1034", statOrder = { 1034 }, level = 22, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "+(26-40) Life gained when you Block", statOrderKey = "1034", statOrder = { 1034 }, level = 36, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "+(41-60) Life gained when you Block", statOrderKey = "1034", statOrder = { 1034 }, level = 48, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "+(61-85) Life gained when you Block", statOrderKey = "1034", statOrder = { 1034 }, level = 60, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "+(86-100) Life gained when you Block", statOrderKey = "1034", statOrder = { 1034 }, level = 75, group = "GainLifeOnBlock", weightKey = { "str_shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "+(4-12) Mana gained when you Block", statOrderKey = "1035", statOrder = { 1035 }, level = 15, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "+(13-21) Mana gained when you Block", statOrderKey = "1035", statOrder = { 1035 }, level = 32, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "+(22-30) Mana gained when you Block", statOrderKey = "1035", statOrder = { 1035 }, level = 58, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "+(31-39) Mana gained when you Block", statOrderKey = "1035", statOrder = { 1035 }, level = 75, group = "GainManaOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrderKey = "2026", statOrder = { 2026 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrderKey = "2027", statOrder = { 2027 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrderKey = "2028", statOrder = { 2028 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrderKey = "2029", statOrder = { 2029 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrderKey = "2030", statOrder = { 2030 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrderKey = "2031", statOrder = { 2031 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrderKey = "2032", statOrder = { 2032 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToDodge1"] = { type = "Suffix", affix = "of Mist", "2% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 35, group = "ChanceToDodge", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodge2"] = { type = "Suffix", affix = "of Haze", "3% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 62, group = "ChanceToDodge", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodge3"] = { type = "Suffix", affix = "of Fog", "4% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 78, group = "ChanceToDodge", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 42, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeEssence5"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 58, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeEssence6"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 74, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 82, group = "ChanceToDodge", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeSpells1"] = { type = "Suffix", affix = "of Prayers", "2% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 35, group = "SpellDodgePercentage", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeSpells2"] = { type = "Suffix", affix = "of Invocations", "3% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 62, group = "SpellDodgePercentage", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeSpells3"] = { type = "Suffix", affix = "of Incantations", "4% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 78, group = "SpellDodgePercentage", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeSpellsEssence5"] = { type = "Suffix", affix = "of the Essence", "(3-4)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 1, group = "SpellDodgePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeSpellsEssence6"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 1, group = "SpellDodgePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeSpellsEssence7"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 1, group = "SpellDodgePercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrderKey = "2482", statOrder = { 2482 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockPercentage1__"] = { type = "Suffix", affix = "of the Barrier", "(7-9)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 30, group = "SpellBlockPercentage", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockPercentage2"] = { type = "Suffix", affix = "of the Bulwark", "(10-12)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 60, group = "SpellBlockPercentage", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(2-5)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrderKey = "1078", statOrder = { 1078 }, level = 20, group = "MaximumFrenzyCharges", weightKey = { "boots", "amulet", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrderKey = "1080", statOrder = { 1080 }, level = 20, group = "IncreasedMaximumPowerCharges", weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (15-20)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "MinionDamage", weightKey = { "helmet", "amulet", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedVaalGemsIncreaseCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Level of Socketed Vaal Gems", statOrderKey = "51", statOrder = { 51 }, level = 1, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "helmet", "gloves", "boots", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageTakenFlatReductionCorrupted1"] = { type = "Corrupted", affix = "", "-(10-5) Physical Damage taken from Attack Hits", statOrderKey = "1482", statOrder = { 1482 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageTakenFlatReductionCorrupted2"] = { type = "Corrupted", affix = "", "-(16-11) Physical Damage taken from Attack Hits", statOrderKey = "1482", statOrder = { 1482 }, level = 30, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageTakenFlatReductionCorrupted3"] = { type = "Corrupted", affix = "", "-(24-17) Physical Damage taken from Attack Hits", statOrderKey = "1482", statOrder = { 1482 }, level = 60, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Fire Damage Leeched as Life", statOrderKey = "962", statOrder = { 962 }, level = 50, group = "FireDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Cold Damage Leeched as Life", statOrderKey = "964", statOrder = { 964 }, level = 50, group = "ColdDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrderKey = "966", statOrder = { 966 }, level = 50, group = "LightningDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedCastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "ring", "gloves", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["ChanceToFleeCorrupted"] = { type = "Corrupted", affix = "", "5% chance to Cause Monsters to Flee", statOrderKey = "1298", statOrder = { 1298 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Attack Damage", statOrderKey = "495", statOrder = { 495 }, level = 1, group = "BlockPercent", weightKey = { "staff", "amulet", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalAddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 1, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalAddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 20, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalAddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 40, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 1, group = "ChaosDamage", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (6-8) Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 20, group = "ChaosDamage", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (7-9) to (11-13) Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 40, group = "ChaosDamage", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 1, group = "SpellBlockPercentage", weightKey = { "staff", "amulet", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-8)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "amulet", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(6-12)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_attack_mods", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["CullingStrikeCorrupted"] = { type = "Corrupted", affix = "", "Culling Strike", statOrderKey = "1295", statOrder = { 1295 }, level = 1, group = "CullingStrike", weightKey = { "sword", "axe", "dagger", "wand", "bow", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaOnLifeLostCorrupted"] = { type = "Corrupted", affix = "", "(3-6)% of Damage taken gained as Mana over 4 seconds when Hit", statOrderKey = "1660", statOrder = { 1660 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "amulet", "ring", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrderKey = "939", statOrder = { 939 }, level = 1, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrderKey = "1422", statOrder = { 1422 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidFreezeCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "amulet", "body_armour", "ring", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidIgniteCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 1, group = "AvoidIgnite", weightKey = { "amulet", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosResistCorruption"] = { type = "Corrupted", affix = "", "+(2-4)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 1, group = "ChaosResistance", weightKey = { "fishing_rod", "weapon", "jewel", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToDodgeCorruption"] = { type = "Corrupted", affix = "", "(2-4)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 1, group = "ChanceToDodge", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["CannotBeKnockedBackCorruption"] = { type = "Corrupted", affix = "", "Cannot be Knocked Back", statOrderKey = "841", statOrder = { 841 }, level = 1, group = "ImmuneToKnockback", weightKey = { "boots", "body_armour", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GemLevelCorruption"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrderKey = "29", statOrder = { 29 }, level = 1, group = "IncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidShockCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 1, group = "ReducedShockChance", weightKey = { "body_armour", "belt", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CannotBeLeechedFromCorruption"] = { type = "Corrupted", affix = "", "Enemies Cannot Leech Life From you", statOrderKey = "1647", statOrder = { 1647 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageTakenFromManaBeforeLifeCorruption"] = { type = "Corrupted", affix = "", "(3-5)% of Damage is taken from Mana before Life", statOrderKey = "1879", statOrder = { 1879 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageConversionFireCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Fire Damage", statOrderKey = "1206", statOrder = { 1206 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["DamageConversionColdCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Cold Damage", statOrderKey = "1208", statOrder = { 1208 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["DamageConversionLighningCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Lightning Damage", statOrderKey = "1210", statOrder = { 1210 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalArrowsCorruption"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrderKey = "1067", statOrder = { 1067 }, level = 1, group = "AdditionalArrows", weightKey = { "no_attack_mods", "quiver", "bow", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalAOERangeCorruption"] = { type = "Corrupted", affix = "", "(4-6)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedDurationCorruption"] = { type = "Corrupted", affix = "", "(5-8)% increased Skill Effect Duration", statOrderKey = "1148", statOrder = { 1148 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalTrapsCorruption_"] = { type = "Corrupted", affix = "", "Can have up to 1 additional Trap placed at a time", statOrderKey = "1503", statOrder = { 1503 }, level = 1, group = "TrapsAllowed", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumEnduranceChargesCorruption_"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrderKey = "1076", statOrder = { 1076 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DualWieldBlockCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "sceptre", "axe", "mace", "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalPierceCorruption"] = { type = "Corrupted", affix = "", "Arrows Pierce an additional Target", statOrderKey = "1065", statOrder = { 1065 }, level = 1, group = "ArrowPierce", weightKey = { "no_attack_mods", "bow", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalPierceCorruption"] = { type = "Corrupted", affix = "", "(4-8)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 1, group = "ProjectileSpeed", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitTemporalChainsCurruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Temporal Chains on Hit", statOrderKey = "1716", statOrder = { 1716 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitVulnerabilityCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Vulnerability on Hit", statOrderKey = "1717", statOrder = { 1717 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitElementalWeaknessCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Elemental Weakness on Hit", statOrderKey = "1719", statOrder = { 1719 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByCastOnStunCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast when Stunned", statOrderKey = "204", statOrder = { 204 }, level = 35, group = "SupportedByTrigger", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByCastOnCritCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast On Critical Strike", statOrderKey = "203", statOrder = { 203 }, level = 35, group = "SupportedByTrigger", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByMeleeSplashCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Melee Splash", statOrderKey = "202", statOrder = { 202 }, level = 20, group = "SupportedByMelee", weightKey = { "no_attack_mods", "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByAddedFireDamageCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 12 Added Fire Damage", statOrderKey = "193", statOrder = { 193 }, level = 48, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { "two_hand_weapon", "mace", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByStunCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 6 Stun", statOrderKey = "206", statOrder = { 206 }, level = 38, group = "SupportedByStun", weightKey = { "mace", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { "no_attack_mods", "sceptre", "rapier", "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["SocketedSkillsManaMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 95% Mana Multiplier", statOrderKey = "246", statOrder = { 246 }, level = 1, group = "SocketedGemsHaveReducedManaCost", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByElementalProliferationCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Elemental Proliferation", statOrderKey = "197", statOrder = { 197 }, level = 12, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByAccuracyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Additional Accuracy", statOrderKey = "207", statOrder = { 207 }, level = 48, group = "SupportedByAccuracy", weightKey = { "no_attack_mods", "one_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByMultistrikeCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrderKey = "208", statOrder = { 208 }, level = 28, group = "SupportedByMultistrike", weightKey = { "no_attack_mods", "two_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByAreaOfEffectCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Increased Area of Effect", statOrderKey = "66", statOrder = { 66 }, level = 24, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByLifeLeechCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrderKey = "210", statOrder = { 210 }, level = 59, group = "SupportedByLifeLeech", weightKey = { "claw", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByCriticalMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 14 Increased Critical Damage", statOrderKey = "211", statOrder = { 211 }, level = 35, group = "SupportedByCriticalMultiplier", weightKey = { "dagger", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByForkCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Fork", statOrderKey = "212", statOrder = { 212 }, level = 6, group = "SupportedByFork", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByWeaponElementalDamageCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Elemental Damage with Attacks", statOrderKey = "213", statOrder = { 213 }, level = 24, group = "SupportedByWeaponElementalDamage", weightKey = { "no_attack_mods", "sceptre", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByFasterCastCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrderKey = "220", statOrder = { 220 }, level = 24, group = "DisplaySocketedGemsGetFasterCast", weightKey = { "no_caster_mods", "sceptre", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Elements Skill", statOrderKey = "312", statOrder = { 312 }, level = 45, group = "GrantedSkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Assassin's Mark Skill", statOrderKey = "314", statOrder = { 314 }, level = 31, group = "GrantedSkill", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PurityOfFireSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Fire Skill", statOrderKey = "294", statOrder = { 294 }, level = 45, group = "GrantedSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PurityOfColdSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Ice Skill", statOrderKey = "300", statOrder = { 300 }, level = 45, group = "GrantedSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Lightning Skill", statOrderKey = "302", statOrder = { 302 }, level = 45, group = "GrantedSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 7 Wrath Skill", statOrderKey = "315", statOrder = { 315 }, level = 28, group = "GrantedSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 11 Hatred Skill", statOrderKey = "316", statOrder = { 316 }, level = 44, group = "GrantedSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AngerSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Anger Skill", statOrderKey = "317", statOrder = { 317 }, level = 56, group = "GrantedSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DeterminationSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Determination Skill", statOrderKey = "318", statOrder = { 318 }, level = 61, group = "GrantedSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Grace Skill", statOrderKey = "319", statOrder = { 319 }, level = 61, group = "GrantedSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Discipline Skill", statOrderKey = "321", statOrder = { 321 }, level = 61, group = "GrantedSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Projectile Weakness Skill", statOrderKey = "325", statOrder = { 325 }, level = 58, group = "GrantedSkill", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Elemental Weakness Skill", statOrderKey = "326", statOrder = { 326 }, level = 31, group = "GrantedSkill", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["VulnerabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Vulnerability Skill", statOrderKey = "328", statOrder = { 328 }, level = 31, group = "GrantedSkill", weightKey = { "axe", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ClaritySkillCorrupted1"] = { type = "Corrupted", affix = "", "Grants Level 4 Clarity Skill", statOrderKey = "310", statOrder = { 310 }, level = 19, group = "GrantedSkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ClaritySkillCorrupted2"] = { type = "Corrupted", affix = "", "Grants Level 8 Clarity Skill", statOrderKey = "310", statOrder = { 310 }, level = 32, group = "GrantedSkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ClaritySkillCorrupted3"] = { type = "Corrupted", affix = "", "Grants Level 12 Clarity Skill", statOrderKey = "310", statOrder = { 310 }, level = 47, group = "GrantedSkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ClaritySkillCorrupted4"] = { type = "Corrupted", affix = "", "Grants Level 16 Clarity Skill", statOrderKey = "310", statOrder = { 310 }, level = 59, group = "GrantedSkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Frostbite Skill", statOrderKey = "306", statOrder = { 306 }, level = 46, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Flammability Skill", statOrderKey = "303", statOrder = { 303 }, level = 46, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Conductivity Skill", statOrderKey = "305", statOrder = { 305 }, level = 46, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TemporalChainsSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Temporal Chains Skill", statOrderKey = "307", statOrder = { 307 }, level = 40, group = "GrantedSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["HasteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Haste Skill", statOrderKey = "308", statOrder = { 308 }, level = 40, group = "GrantedSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) Mana gained for each Enemy hit by your Attacks", statOrderKey = "1021", statOrder = { 1021 }, level = 40, group = "ManaGainPerTarget", weightKey = { "no_attack_mods", "ring", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["VitalitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Vitality Skill", statOrderKey = "311", statOrder = { 311 }, level = 35, group = "GrantedSkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrderKey = "2031", statOrder = { 2031 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FishingRarityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrderKey = "2032", statOrder = { 2032 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "fishing_rod", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrderKey = "2038", statOrder = { 2038 }, level = 1, group = "Other", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedArmourWhileStationaryCorrupted1"] = { type = "Corrupted", affix = "", "+(35-60) Armour while stationary", statOrderKey = "3476", statOrder = { 3476 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedArmourWhileStationaryCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) Armour while stationary", statOrderKey = "3476", statOrder = { 3476 }, level = 31, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedArmourWhileStationaryCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) Armour while stationary", statOrderKey = "3476", statOrder = { 3476 }, level = 75, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedColdDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks", statOrderKey = "699", statOrder = { 699 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedColdDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks", statOrderKey = "699", statOrder = { 699 }, level = 31, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedColdDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks", statOrderKey = "699", statOrder = { 699 }, level = 81, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedColdDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 1, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedColdDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 31, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedColdDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-25) to (39-44) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 75, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedEvasionWhileMovingCorrupted1_"] = { type = "Corrupted", affix = "", "+(35-60) to Global Evasion Rating while moving", statOrderKey = "4542", statOrder = { 4542 }, level = 1, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedEvasionWhileMovingCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) to Global Evasion Rating while moving", statOrderKey = "4542", statOrder = { 4542 }, level = 31, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedEvasionWhileMovingCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) to Global Evasion Rating while moving", statOrderKey = "4542", statOrder = { 4542 }, level = 75, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedFireDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks", statOrderKey = "698", statOrder = { 698 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedFireDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks", statOrderKey = "698", statOrder = { 698 }, level = 31, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedFireDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks", statOrderKey = "698", statOrder = { 698 }, level = 82, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedFireDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 1, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedFireDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 31, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedFireDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (42-49) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 75, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedLightningDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (14-15) Lightning Damage to Spells and Attacks", statOrderKey = "730", statOrder = { 730 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedLightningDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks", statOrderKey = "730", statOrder = { 730 }, level = 31, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedLightningDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks", statOrderKey = "730", statOrder = { 730 }, level = 83, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedLightningDamageToBowAttacksCorrupted1_"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 1, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedLightningDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 31, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AddedLightningDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 75, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AdditionalAOERangeCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AdditionalArrowsCorrupted"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrderKey = "1067", statOrder = { 1067 }, level = 75, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AdditionalChainCorrupted"] = { type = "Corrupted", affix = "", "Skills Chain +1 times", statOrderKey = "1063", statOrder = { 1063 }, level = 80, group = "Chain", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AdditionalCriticalStrikeMultiplierUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "+(20-25)% to Critical Strike Multiplier during any Flask Effect", statOrderKey = "4156", statOrder = { 4156 }, level = 60, group = "AdditionalCriticalStrikeMultiplierUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrderKey = "1422", statOrder = { 1422 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AdditionalPhysicalDamageReductionWhileStationaryCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction while stationary", statOrderKey = "3475", statOrder = { 3475 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AdditionalProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Skills fire an additional Projectile", statOrderKey = "1066", statOrder = { 1066 }, level = 1, group = "AdditionalProjectilesCorrupted", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AngerSkillReducedCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Anger Skill", statOrderKey = "317", statOrder = { 317 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2BlindImmunityCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrderKey = "2159", statOrder = { 2159 }, level = 1, group = "ImmunityToBlind", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Attack Damage", statOrderKey = "495", statOrder = { 495 }, level = 1, group = "MonsterBlock", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrderKey = "2038", statOrder = { 2038 }, level = 1, group = "Other", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2CannotGainBleedingCorrupted_"] = { type = "Corrupted", affix = "", "Bleeding cannot be inflicted on you", statOrderKey = "3388", statOrder = { 3388 }, level = 85, group = "BleedingImmunity", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AvoidIgniteCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 60, group = "AvoidIgniteCorrupted", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2CannotBePoisonedCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Poisoned", statOrderKey = "2559", statOrder = { 2559 }, level = 60, group = "CannotBePoisoned", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ChanceToBleedOnHitAndIncreasedDamageToBleedingTargetsCorrupted_"] = { type = "Corrupted", affix = "", "20% chance to cause Bleeding on Hit", "(30-40)% increased Attack Damage against Bleeding Enemies", statOrderKey = "1686,1693", statOrder = { 1686, 1693 }, level = 1, group = "ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets", weightKey = { "axe", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ChanceToDodgeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 1, group = "ChanceToDodge", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["V2ChanceToGainEnduranceChargeOnStunCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy", statOrderKey = "4015", statOrder = { 4015 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "sceptre", "staff", "mace", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ChanceToGainFortifyOnMeleeHitCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to Fortify on Melee hit", statOrderKey = "1511", statOrder = { 1511 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { "sceptre", "wand", "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ChanceToGainFrenzyChargeOnKillCorrupted"] = { type = "Corrupted", affix = "", "(9-11)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1818", statOrder = { 1818 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "dagger", "claw", "bow", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ChanceToGainOnslaughtOnKillCorrupted_"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2176", statOrder = { 2176 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "sceptre", "wand", "dagger", "claw", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ChanceToGainPowerChargeOnCritCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain a Power Charge on Critical Strike", statOrderKey = "1093", statOrder = { 1093 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "wand", "dagger", "claw", "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2UnholyMightOnKillPercentChanceCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2567", statOrder = { 2567 }, level = 1, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "dagger", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ChanceToSpellDodgeCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 1, group = "SpellDodgePercentage", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["V2ClaritySkillReducedCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Clarity Skill", statOrderKey = "310", statOrder = { 310 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ColdDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Cold Damage Leeched as Life", statOrderKey = "964", statOrder = { 964 }, level = 50, group = "ColdDamageLifeLeech", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Conductivity Skill", statOrderKey = "305", statOrder = { 305 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2CurseOnHitDespair"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Despair on Hit", statOrderKey = "1723", statOrder = { 1723 }, level = 30, group = "CurseOnHitDespair", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2CurseOnHitElementalWeaknessCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Elemental Weakness on Hit", statOrderKey = "1719", statOrder = { 1719 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2CurseOnHitEnfeeble"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Enfeeble on Hit", statOrderKey = "1724", statOrder = { 1724 }, level = 30, group = "CurseOnHitEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2CurseOnHitTemporalChainsCurrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Temporal Chains on Hit", statOrderKey = "1716", statOrder = { 1716 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2CurseOnHitVulnerabilityCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Level (10-12) Vulnerability on Hit", statOrderKey = "1717", statOrder = { 1717 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2DespairSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Despair Skill", statOrderKey = "299", statOrder = { 299 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2DeterminationSkillCorrupted__"] = { type = "Corrupted", affix = "", "Grants Level 23 Determination Skill", statOrderKey = "318", statOrder = { 318 }, level = 56, group = "GrantedSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Discipline Skill", statOrderKey = "321", statOrder = { 321 }, level = 56, group = "GrantedSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2DodgeAttackHitsWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "(6-10)% chance to Dodge Attack Hits while moving", statOrderKey = "4287", statOrder = { 4287 }, level = 60, group = "DodgeAttackHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2DodgeSpellHitsWhileMovingCorrupted"] = { type = "Corrupted", affix = "", "(6-10)% chance to Dodge Spell Hits while moving", statOrderKey = "4289", statOrder = { 4289 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2DualWieldBlockCorrupted"] = { type = "Corrupted", affix = "", "+(8-10)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "claw", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ElementalDamagePenetrationCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates (8-10)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 1, group = "ElementalPenetration", weightKey = { "wand", "rapier", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2FireDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Fire Damage Leeched as Life", statOrderKey = "962", statOrder = { 962 }, level = 50, group = "FireDamageLifeLeech", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrderKey = "2031", statOrder = { 2031 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2FishingRarityCorrupted_"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrderKey = "2032", statOrder = { 2032 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Flammability Skill", statOrderKey = "303", statOrder = { 303 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Frostbite Skill", statOrderKey = "306", statOrder = { 306 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2GainFrenzyChargeAfterSpending200ManaCorrupted"] = { type = "Corrupted", affix = "", "Gain a Frenzy Charge after Spending a total of 200 Mana", statOrderKey = "4466", statOrder = { 4466 }, level = 1, group = "GainFrenzyChargeAfterSpending200Mana", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2GemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrderKey = "29", statOrder = { 29 }, level = 1, group = "IncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2GlobalCriticalStrikeMultiplierCorrupted"] = { type = "Corrupted", affix = "", "+(25-30)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "dagger", "claw", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Grace Skill", statOrderKey = "319", statOrder = { 319 }, level = 56, group = "GrantedSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2HasteSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Haste Skill", statOrderKey = "308", statOrder = { 308 }, level = 56, group = "GrantedSkill", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Hatred Skill", statOrderKey = "316", statOrder = { 316 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2MalevolenceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Malevolence Skill", statOrderKey = "352", statOrder = { 352 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ZealotrySkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 23 Zealotry Skill", statOrderKey = "360", statOrder = { 360 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2PrideSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Pride Skill", statOrderKey = "353", statOrder = { 353 }, level = 56, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAreaOfEffect1hCorrupted"] = { type = "Corrupted", affix = "", "(15-20)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 1, group = "AreaOfEffect", weightKey = { "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAreaOfEffect2hCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 1, group = "AreaOfEffect", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAtackCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Attacks have +(0-1)% to Critical Strike Chance", statOrderKey = "3668", statOrder = { 3668 }, level = 60, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2IncreasedAttackSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Attack Speed during any Flask Effect", statOrderKey = "2481", statOrder = { 2481 }, level = 60, group = "SpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedBurningDamageCorrupted"] = { type = "Corrupted", affix = "", "(30-40)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 40, group = "BurnDamage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedCastSpeedCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["V2IncreasedCastSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Cast Speed during any Flask Effect", statOrderKey = "3971", statOrder = { 3971 }, level = 60, group = "SpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedChillEffectCorrupted"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Chill", statOrderKey = "4066", statOrder = { 4066 }, level = 40, group = "ChillEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedCriticalStrikeUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(35-40)% increased Critical Strike Chance during any Flask Effect", statOrderKey = "4136", statOrder = { 4136 }, level = 1, group = "IncreasedCriticalStrikeUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedDamageCorrupted_"] = { type = "Corrupted", affix = "", "(40-50)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 1, group = "IncreasedDamage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedDamageOverTimeCorrupted_"] = { type = "Corrupted", affix = "", "(50-60)% increased Damage over Time", statOrderKey = "550", statOrder = { 550 }, level = 1, group = "DamageOverTime", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedDurationCorrupted"] = { type = "Corrupted", affix = "", "(12-15)% increased Skill Effect Duration", statOrderKey = "1148", statOrder = { 1148 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 1, group = "EnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedGlobalPhysicalDamageCorrupted"] = { type = "Corrupted", affix = "", "(15-25)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedLifeCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedLifeRegenerationPerSecondCorrupted"] = { type = "Corrupted", affix = "", "Regenerate (1.6-2)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedMovementVelocityUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Movement Speed during any Flask Effect", statOrderKey = "2366", statOrder = { 2366 }, level = 60, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedProjectileDamageForEachChainCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (20-25)% increased Damage for each time they have Chained", statOrderKey = "6112", statOrder = { 6112 }, level = 40, group = "IncreasedProjectileDamageForEachChain", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedProjectileDamageForEachPierceCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (8-10)% increased Damage for each Enemy Pierced", statOrderKey = "6113", statOrder = { 6113 }, level = 40, group = "ProjectileDamagePerEnemyPierced", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedShockEffectCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Shock", statOrderKey = "6217", statOrder = { 6217 }, level = 40, group = "ShockEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedSpellCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Spells have +(0-1)% to Critical Strike Chance ", statOrderKey = "6289", statOrder = { 6289 }, level = 60, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2LevelOfSocketedColdGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Cold Gems", statOrderKey = "35", statOrder = { 35 }, level = 1, group = "IncreaseSocketedColdGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2LevelOfSocketedFireGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Fire Gems", statOrderKey = "34", statOrder = { 34 }, level = 1, group = "IncreaseSocketedFireGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2LevelOfSocketedLightningGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Lightning Gems", statOrderKey = "36", statOrder = { 36 }, level = 1, group = "IncreaseSocketedLightningGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrderKey = "966", statOrder = { 966 }, level = 50, group = "LightningDamageLifeLeech", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2LocalAddedChaosDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 1, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2LocalAddedChaosDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 31, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2LocalAddedChaosDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 84, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2LocalAddedColdDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 1, group = "ColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedColdDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 31, group = "ColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedColdDamage1hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (17-23) to (24-40) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 84, group = "ColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedColdDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-11) to (17-20) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 1, group = "ColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedColdDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (19-23) to (31-38) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 31, group = "ColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedColdDamage2hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (22-28) to (39-47) Cold Damage", statOrderKey = "696", statOrder = { 696 }, level = 84, group = "ColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedFireDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 1, group = "FireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedFireDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 31, group = "FireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedFireDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (40-48) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 84, group = "FireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedFireDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (10-15) to (20-23) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 1, group = "FireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedFireDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (23-27) to (34-43) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 31, group = "FireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedFireDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (27-34) to (45-53) Fire Damage", statOrderKey = "689", statOrder = { 689 }, level = 84, group = "FireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedLightningDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 1, group = "LightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedLightningDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 31, group = "LightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedLightningDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 84, group = "LightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedLightningDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (2-3) to (30-34) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 1, group = "LightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedLightningDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-6) to (63-72) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 31, group = "LightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedLightningDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (4-8) to (89-92) Lightning Damage", statOrderKey = "705", statOrder = { 705 }, level = 84, group = "LightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedPhysicalDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to 2 Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 1, group = "PhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedPhysicalDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (5-7) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 31, group = "PhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedPhysicalDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 84, group = "PhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedPhysicalDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 1, group = "PhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedPhysicalDamage2hCorrupted2__"] = { type = "Corrupted", affix = "", "Adds (4-5) to (6-8) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 31, group = "PhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalAddedPhysicalDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrderKey = "606", statOrder = { 606 }, level = 84, group = "PhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "+(4-5)% Chance to Block", statOrderKey = "1497", statOrder = { 1497 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2LocalIncreasedAttackSpeedBowCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedAttackSpeed1hCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedAttackSpeed2hCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 70, group = "IncreasedAttackSpeed", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedAttackSpeedWandCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrderKey = "734", statOrder = { 734 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "wand", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2IncreasedCastSpeedCorrupted__"] = { type = "Corrupted", affix = "", "(12-15)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["V2LocalIncreasedCriticalStrikeChance1hCorrupted1"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "wand", "rapier", "claw", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedCriticalStrikeChance2hCorrupted_"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedCriticalStrikeChance1hCorrupted2__"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrderKey = "786", statOrder = { 786 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "dagger", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedPhysicalDamageBowCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedPhysicalDamageBowCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedPhysicalDamageCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2LocalIncreasedPhysicalDamageCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrderKey = "570", statOrder = { 570 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2IncreasedSpellDamage1hCorrupted"] = { type = "Corrupted", affix = "", "(50-60)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 1, group = "SpellDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["V2LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { "sword", "mace", "staff", "bow", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "+(4-6) Mana gained for each Enemy hit by your Attacks", statOrderKey = "1021", statOrder = { 1021 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2MaximumEnduranceChargesCorruption"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrderKey = "1076", statOrder = { 1076 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrderKey = "1078", statOrder = { 1078 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrderKey = "1080", statOrder = { 1080 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2MaximumBlockCorruption"] = { type = "Corrupted", affix = "", "+1% to maximum Chance to Block Attack Damage", statOrderKey = "1248", statOrder = { 1248 }, level = 60, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrderKey = "939", statOrder = { 939 }, level = 80, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2PercentageOfBlockAppliesToSpellBlockCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% Chance to Block Spell Damage", statOrderKey = "505", statOrder = { 505 }, level = 1, group = "BlockingBlocksSpells", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SpellBlockPercentageCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 1, group = "SpellBlockPercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2PhysicalDamageAddedAsColdCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2PhysicalDamageAddedAsFireCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 1, group = "FireDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2PhysicalDamageAddedAsLightningCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2PhysicalDamageTakenAsColdCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["V2PhysicalDamageTakenAsFireCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["V2PhysicalDamageTakenAsLightningCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["V2PhysicalDamageTakenAsChaosCorrupted_"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1657", statOrder = { 1657 }, level = 60, group = "PhysicalDamageTakenAsChaos", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2PointBlankCorrupted"] = { type = "Corrupted", affix = "", "Point Blank", statOrderKey = "6543", statOrder = { 6543 }, level = 1, group = "PointBlank", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2PurityOfFireSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Fire Skill", statOrderKey = "294", statOrder = { 294 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2PurityOfColdSkillCorrupted___"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Ice Skill", statOrderKey = "300", statOrder = { 300 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Lightning Skill", statOrderKey = "302", statOrder = { 302 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Purity of Elements Skill", statOrderKey = "312", statOrder = { 312 }, level = 56, group = "GrantedSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ReducedChaosDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Chaos Damage taken", statOrderKey = "1491", statOrder = { 1491 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ReducedColdDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Cold Damage taken", statOrderKey = "2578", statOrder = { 2578 }, level = 45, group = "ColdDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ReducedDamageFromAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Area Damage taken from Hits", statOrderKey = "1487", statOrder = { 1487 }, level = 20, group = "ReducedDamageFromAreaOfEffect", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ReducedDamageFromProjectilesCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Damage taken from Projectiles", statOrderKey = "1927", statOrder = { 1927 }, level = 20, group = "ProjectileDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ReducedFireDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Fire Damage taken", statOrderKey = "1490", statOrder = { 1490 }, level = 45, group = "FireDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ReducedLightningDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Lightning Damage taken", statOrderKey = "2577", statOrder = { 2577 }, level = 45, group = "LightningDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ReducedExtraDamageFromCriticalStrikesBodyCorrupted__"] = { type = "Corrupted", affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrderKey = "833", statOrder = { 833 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ReducedExtraDamageFromCriticalStrikesShieldCorrupted"] = { type = "Corrupted", affix = "", "You take (20-30)% reduced Extra Damage from Critical Strikes", statOrderKey = "833", statOrder = { 833 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2RegenerateLifePerSecondWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "Regenerate 100 Life per second while moving", statOrderKey = "4702", statOrder = { 4702 }, level = 60, group = "LifeRegenerationWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ResoluteTechniqueCorrupted"] = { type = "Corrupted", affix = "", "Resolute Technique", statOrderKey = "6555", statOrder = { 6555 }, level = 40, group = "ResoluteTechnique", weightKey = { "sword", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SocketedSkillsManaMultiplierCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 90% Mana Multiplier", statOrderKey = "246", statOrder = { 246 }, level = 1, group = "SocketedGemsHaveReducedManaCost", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SupportedByAccuracyCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Additional Accuracy", statOrderKey = "207", statOrder = { 207 }, level = 1, group = "SupportedByAccuracy", weightKey = { "mace", "axe", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SupportedByBlindCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Blind", statOrderKey = "201", statOrder = { 201 }, level = 1, group = "SupportedByBlind", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SupportedByBloodmagicCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Blood Magic", statOrderKey = "191", statOrder = { 191 }, level = 1, group = "SupportedByBloodMagic", weightKey = { "mace", "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SupportedByFasterProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Faster Projectiles", statOrderKey = "209", statOrder = { 209 }, level = 1, group = "SupportedByProjectileSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SupportedByFortifyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Fortify", statOrderKey = "217", statOrder = { 217 }, level = 1, group = "SupportedByFortify", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SupportedByLifeGainOnHitCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Life Gain On Hit", statOrderKey = "109", statOrder = { 109 }, level = 1, group = "SupportedByLifeGainOnHit", weightKey = { "sword", "mace", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SupportedByOnslaughtCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Onslaught", statOrderKey = "118", statOrder = { 118 }, level = 1, group = "SupportedByOnslaught", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SupportedByReducedManaCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrderKey = "215", statOrder = { 215 }, level = 1, group = "SupportedByReducedMana", weightKey = { "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrderKey = "4319", statOrder = { 4319 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["V2WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Wrath Skill", statOrderKey = "315", statOrder = { 315 }, level = 45, group = "GrantedSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SocketedDurationGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Duration Gems", statOrderKey = "39", statOrder = { 39 }, level = 20, group = "IncreaseSocketedDurationGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SocketedAoEGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed AoE Gems", statOrderKey = "40", statOrder = { 40 }, level = 20, group = "IncreasedSocketedAoEGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SocketedAuraGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Aura Gems", statOrderKey = "45", statOrder = { 45 }, level = 20, group = "IncreaseSocketedAuraGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SocketedCurseGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Curse Gems", statOrderKey = "48", statOrder = { 48 }, level = 20, group = "IncreaseSocketedCurseGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SocketedTrapOrMineGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Trap or Mine Gems", statOrderKey = "50", statOrder = { 50 }, level = 20, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SocketedWarcryGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Warcry Gems", statOrderKey = "54", statOrder = { 54 }, level = 20, group = "LocalSocketedWarcryGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SocketedProjectileGemCorrupted_"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Projectile Gems", statOrderKey = "41", statOrder = { 41 }, level = 20, group = "IncreaseSocketedProjectileGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedMaximumLifeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedMaximumEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 1, group = "MaximumEnergyShieldPercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ItemRarityCorrupted_"] = { type = "Corrupted", affix = "", "(20-30)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 60, group = "IncreasedItemRarity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ItemQuantityCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Quantity of Items found", statOrderKey = "892", statOrder = { 892 }, level = 84, group = "IncreasedItemQuantity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAuraEffectWrathCorrupted"] = { type = "Corrupted", affix = "", "Wrath has (15-20)% increased Aura Effect", statOrderKey = "2554", statOrder = { 2554 }, level = 45, group = "IncreasedAuraEffectWrathCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAuraEffectAngerCorrupted"] = { type = "Corrupted", affix = "", "Anger has (15-20)% increased Aura Effect", statOrderKey = "2549", statOrder = { 2549 }, level = 45, group = "IncreasedAuraEffectAngerCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAuraEffectHatredCorrupted"] = { type = "Corrupted", affix = "", "Hatred has (15-20)% increased Aura Effect", statOrderKey = "2556", statOrder = { 2556 }, level = 45, group = "IncreasedAuraEffectHatredCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAuraEffectDeterminationCorrupted"] = { type = "Corrupted", affix = "", "Determination has (15-20)% increased Aura Effect", statOrderKey = "2557", statOrder = { 2557 }, level = 45, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAuraEffectDisciplineCorrupted"] = { type = "Corrupted", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrderKey = "2558", statOrder = { 2558 }, level = 45, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAuraEffectGraceCorrupted"] = { type = "Corrupted", affix = "", "Grace has (15-20)% increased Aura Effect", statOrderKey = "2555", statOrder = { 2555 }, level = 45, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAuraEffectMalevolenceCorrupted"] = { type = "Corrupted", affix = "", "Malevolence has (15-20)% increased Aura Effect", statOrderKey = "4262", statOrder = { 4262 }, level = 45, group = "IncreasedAuraEffectMalevolenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAuraEffectZealotryCorrupted_"] = { type = "Corrupted", affix = "", "Zealotry has (15-20)% increased Aura Effect", statOrderKey = "6510", statOrder = { 6510 }, level = 45, group = "IncreasedAuraEffectZealotryCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAuraEffectPrideCorrupted"] = { type = "Corrupted", affix = "", "Pride has (15-20)% increased Aura Effect", statOrderKey = "6102", statOrder = { 6102 }, level = 45, group = "IncreasedAuraEffectPrideCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedIntelligenceDexterityCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Dexterity", "(4-6)% increased Intelligence", statOrderKey = "529,530", statOrder = { 529, 530 }, level = 1, group = "IncreasedAttributesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedDexterityStrengthCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Dexterity", statOrderKey = "528,529", statOrder = { 528, 529 }, level = 1, group = "IncreasedAttributesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedStrengthIntelligenceCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Intelligence", statOrderKey = "528,530", statOrder = { 528, 530 }, level = 1, group = "IncreasedAttributesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2AllResistancesCorrupted"] = { type = "Corrupted", affix = "", "+(14-16)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 1, group = "AllResistancesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedSupportGemLevelIntMasterVendorItem"] = { type = "Prefix", affix = "Catarina's", "+1 to Level of Socketed Support Gems", statOrderKey = "52", statOrder = { 52 }, level = 1, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrderKey = "708", statOrder = { 708 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrderKey = "708", statOrder = { 708 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrderKey = "708", statOrder = { 708 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "40% increased total Recovery per second from Life Leech", statOrderKey = "1409", statOrder = { 1409 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosLeechedAsLifeEssence1_"] = { type = "Suffix", affix = "of the Essence", "0.5% of Chaos Damage Leeched as Life", statOrderKey = "967", statOrder = { 967 }, level = 63, group = "ChaosDamageLifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReduceGlobalFlatManaCostStrIntMasterVendor"] = { type = "Prefix", affix = "Elreon's", "-(8-4) to Total Mana Cost of Skills", statOrderKey = "1144", statOrder = { 1144 }, level = 1, group = "IncreaseFlatManaCost", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeLeechSpeedDexIntMasterVendorItem"] = { type = "Prefix", affix = "Vorici's", "(20-40)% increased total Recovery per second from Life Leech", statOrderKey = "1409", statOrder = { 1409 }, level = 1, group = "LifeLeechSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedGemQualityStrMasterVendorItem"] = { type = "Prefix", affix = "Haku's", "+(3-6)% to Quality of Socketed Support Gems", statOrderKey = "63", statOrder = { 63 }, level = 1, group = "SupportGemQuality", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedOnHitGainedDexMasterVendorItem"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrderKey = "1684", statOrder = { 1684 }, level = 1, group = "CausesBleeding", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["BleedOnHitGainedDexMasterVendorItemUpdated_"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrderKey = "1686", statOrder = { 1686 }, level = 1, group = "CausesBleeding", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["AlwaysHitsStrDexMasterVendorItem"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrderKey = "1299", statOrder = { 1299 }, level = 1, group = "AlwaysHits", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["MapInvasionBossMasterVendorItem"] = { type = "Prefix", affix = "Zana's", "Area is inhabited by an additional Invasion Boss", statOrderKey = "1807", statOrder = { 1807 }, level = 1, group = "MapInvasionMonsterPacks", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(8-11)% chance to Avoid Elemental Ailments", statOrderKey = "1104", statOrder = { 1104 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(12-15)% chance to Avoid Elemental Ailments", statOrderKey = "1104", statOrder = { 1104 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(16-19)% chance to Avoid Elemental Ailments", statOrderKey = "1104", statOrder = { 1104 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(20-23)% chance to Avoid Elemental Ailments", statOrderKey = "1104", statOrder = { 1104 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrderKey = "1303", statOrder = { 1303 }, level = 15, group = "AttackCastSpeed", weightKey = { "no_attack_mods", "no_caster_mods", "dex_int_shield", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrderKey = "1303", statOrder = { 1303 }, level = 45, group = "AttackCastSpeed", weightKey = { "no_attack_mods", "no_caster_mods", "dex_int_shield", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrderKey = "1303", statOrder = { 1303 }, level = 70, group = "AttackCastSpeed", weightKey = { "no_attack_mods", "no_caster_mods", "dex_int_shield", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeLeechPermyriadLocal1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 50, group = "LifeLeech", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocal2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 60, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocal3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 70, group = "LifeLeech", weightKey = { "no_attack_mods", "ranged", "weapon", "default", }, weightVal = { 0, 0, 250, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 1, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 10, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 26, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 42, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 58, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 74, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrderKey = "946", statOrder = { 946 }, level = 82, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["ManaLeechPermyriadLocal1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "982", statOrder = { 982 }, level = 50, group = "ManaLeech", weightKey = { "no_attack_mods", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrderKey = "538", statOrder = { 538 }, level = 4, group = "AttackDamage", weightKey = { "no_attack_mods", "str_dex_shield", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrderKey = "538", statOrder = { 538 }, level = 15, group = "AttackDamage", weightKey = { "no_attack_mods", "str_dex_shield", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrderKey = "538", statOrder = { 538 }, level = 30, group = "AttackDamage", weightKey = { "no_attack_mods", "str_dex_shield", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrderKey = "538", statOrder = { 538 }, level = 60, group = "AttackDamage", weightKey = { "no_attack_mods", "str_dex_shield", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrderKey = "538", statOrder = { 538 }, level = 81, group = "AttackDamage", weightKey = { "no_attack_mods", "str_dex_shield", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-13) to (19-22) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (31-41) to (61-71) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (36-49) to (73-85) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (45-54) to (80-90) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (25-33) to (50-58) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (30-40) to (60-69) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (33-35) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-49) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-9) to (106-112) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 800, 800, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-30) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-24) to (36-42) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (23-30) to (45-53) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (28-38) to (57-66) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (34-46) to (68-80) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (41-55) to (83-96) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (49-65) to (98-115) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-16) to (23-27) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (21-27) to (41-48) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (26-34) to (52-60) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (31-41) to (62-73) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (38-50) to (75-88) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (45-60) to (89-104) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 1, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 11, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 18, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-6) to (69-73) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 26, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-7) to (87-92) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 33, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-9) to (109-115) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 42, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (4-11) to (132-139) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 51, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (4-13) to (159-168) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 62, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (5-15) to (189-200) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 74, group = "SpellAddedElementalDamage", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 800, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 82, group = "SpellAddedElementalDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (47-72) to (98-123) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 83, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "bow", "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 0, 600, 600, 600, 400, 250, 250, 600, 600, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, }, + ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (70-108) to (147-185) Chaos Damage", statOrderKey = "711", statOrder = { 711 }, level = 83, group = "LocalChaosDamage", weightKey = { "no_attack_mods", "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 0, 0, 600, 600, 250, 300, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, }, + ["RarityDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "30% increased Rarity of Items found during any Flask Effect", statOrderKey = "1935", statOrder = { 1935 }, level = 1, group = "RarityDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "(20-25)% increased Damage during any Flask Effect", statOrderKey = "3258", statOrder = { 3258 }, level = 1, group = "DamageDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PierceChanceEssence5"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrderKey = "6135", statOrder = { 6135 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PierceChanceEssence6_"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrderKey = "6135", statOrder = { 6135 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PierceChanceEssence7"] = { type = "Prefix", affix = "", "Projectiles Pierce 2 additional Targets", statOrderKey = "6136", statOrder = { 6136 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalPierceEssence5"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrderKey = "1064", statOrder = { 1064 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalPierceEssence6_"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrderKey = "1064", statOrder = { 1064 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalPierceEssence7"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce 2 additional Targets", statOrderKey = "1064", statOrder = { 1064 }, level = 1, group = "Pierce", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrderKey = "2559", statOrder = { 2559 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidFireDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Fire Damage from Hits", statOrderKey = "2563", statOrder = { 2563 }, level = 58, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidFireDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Fire Damage from Hits", statOrderKey = "2563", statOrder = { 2563 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidFireDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Fire Damage from Hits", statOrderKey = "2563", statOrder = { 2563 }, level = 82, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidFireDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Fire Damage from Hits", statOrderKey = "2563", statOrder = { 2563 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidColdDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Cold Damage from Hits", statOrderKey = "2564", statOrder = { 2564 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidColdDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Cold Damage from Hits", statOrderKey = "2564", statOrder = { 2564 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidColdDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Cold Damage from Hits", statOrderKey = "2564", statOrder = { 2564 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidColdDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Cold Damage from Hits", statOrderKey = "2564", statOrder = { 2564 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidColdDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Cold Damage from Hits", statOrderKey = "2564", statOrder = { 2564 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidLightningDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "(4-5)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 10, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidLightningDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 26, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidLightningDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 42, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidLightningDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 58, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidLightningDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 74, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidLightningDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 82, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrderKey = "2350", statOrder = { 2350 }, level = 30, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrderKey = "2350", statOrder = { 2350 }, level = 60, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrderKey = "708,2350", statOrder = { 708, 2350 }, level = 1, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 additional Fire Damage", statOrderKey = "267", statOrder = { 267 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrderKey = "264", statOrder = { 264 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrderKey = "264", statOrder = { 264 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedGemsAddPercentageOfPhysicalAsLightningEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage", statOrderKey = "268", statOrder = { 268 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrderKey = "265", statOrder = { 265 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrderKey = "3474", statOrder = { 3474 }, level = 63, group = "ItemGrantsBuff", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BurningGroundWhileMovingEssence1"] = { type = "Suffix", affix = "of the Essence", "Drops Burning Ground while moving, dealing 2500 Fire Damage per second", statOrderKey = "3473", statOrder = { 3473 }, level = 63, group = "ItemGrantsBuff", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 63, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrderKey = "1198", statOrder = { 1198 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Strike Chance", statOrderKey = "256", statOrder = { 256 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrderKey = "3448", statOrder = { 3448 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrderKey = "2366", statOrder = { 2366 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Cold Damage per Frenzy Charge", statOrderKey = "3447", statOrder = { 3447 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 40 to 80 Fire Damage if you've Blocked Recently", statOrderKey = "3449", statOrder = { 3449 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedSkillAlwaysIgniteEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 50% chance to Ignite", statOrderKey = "250", statOrder = { 250 }, level = 63, group = "DisplaySupportedSkillsHaveAChanceToIgnite", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrderKey = "3442", statOrder = { 3442 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrderKey = "3443", statOrder = { 3443 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 10% reduced Reflected Damage", statOrderKey = "6170", statOrder = { 6170 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to gain a Power Charge when you Block", statOrderKey = "3445", statOrder = { 3445 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrderKey = "3446", statOrder = { 3446 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamageEssence1"] = { type = "Prefix", affix = "Essences", "40% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 63, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of Mana when you use a Skill", statOrderKey = "2656", statOrder = { 2656 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "15% increased Effect of Fortify on you", statOrderKey = "2749", statOrder = { 2749 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2788", statOrder = { 2788 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrderKey = "281", statOrder = { 281 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrderKey = "45", statOrder = { 45 }, level = 63, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Cast Level 20 Fire Burst on Hit", statOrderKey = "379", statOrder = { 379 }, level = 63, group = "GrantedSkill", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", statOrderKey = "364", statOrder = { 364 }, level = 63, group = "GrantsMinion", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrderKey = "4507", statOrder = { 4507 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrderKey = "279", statOrder = { 279 }, level = 63, group = "Supported", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 500 Chaos Damage per second for 8 seconds", statOrderKey = "4254", statOrder = { 4254 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrderKey = "5980", statOrder = { 5980 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 2% of your maximum Mana when you Block", statOrderKey = "5289", statOrder = { 5289 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedDuration1"] = { type = "Suffix", affix = "of Agony", "(8-12)% increased Bleeding Duration", statOrderKey = "3779", statOrder = { 3779 }, level = 30, group = "BleedDuration", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedDuration2"] = { type = "Suffix", affix = "of Torment", "(13-18)% increased Bleeding Duration", statOrderKey = "3779", statOrder = { 3779 }, level = 60, group = "BleedDuration", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(6-8)% chance to Ignite", statOrderKey = "1282", statOrder = { 1282 }, level = 15, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TwoHandChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(12-15)% chance to Ignite", statOrderKey = "1282", statOrder = { 1282 }, level = 15, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToBleed1"] = { type = "Suffix", affix = "of Bleeding", "10% chance to cause Bleeding on Hit", statOrderKey = "1686", statOrder = { 1686 }, level = 15, group = "LocalChanceToBleed", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToBleed2_"] = { type = "Suffix", affix = "of Flaying", "15% chance to cause Bleeding on Hit", statOrderKey = "1686", statOrder = { 1686 }, level = 55, group = "LocalChanceToBleed", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToBleed3"] = { type = "Suffix", affix = "of Hemorrhaging", "20% chance to cause Bleeding on Hit", statOrderKey = "1686", statOrder = { 1686 }, level = 85, group = "LocalChanceToBleed", weightKey = { "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToPoison1"] = { type = "Suffix", affix = "of Poisoning", "10% chance to Poison on Hit", statOrderKey = "5167", statOrder = { 5167 }, level = 15, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToPoison2"] = { type = "Suffix", affix = "of Toxins", "20% chance to Poison on Hit", statOrderKey = "5167", statOrder = { 5167 }, level = 55, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToPoison3_"] = { type = "Suffix", affix = "of Death", "30% chance to Poison on Hit", statOrderKey = "5167", statOrder = { 5167 }, level = 85, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToPoisonEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrderKey = "708,5167", statOrder = { 708, 5167 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(6-8)% chance to Freeze", statOrderKey = "1285", statOrder = { 1285 }, level = 15, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TwoHandChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(12-15)% chance to Freeze", statOrderKey = "1285", statOrder = { 1285 }, level = 15, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToShock1"] = { type = "Suffix", affix = "of Shocking", "(6-8)% chance to Shock", statOrderKey = "1289", statOrder = { 1289 }, level = 15, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TwoHandChanceToShock1__"] = { type = "Suffix", affix = "of Shocking", "(12-15)% chance to Shock", statOrderKey = "1289", statOrder = { 1289 }, level = 15, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BurnDamage1_"] = { type = "Suffix", affix = "of Burning", "(16-20)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 20, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "sceptre", "wand", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(21-25)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 40, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "sceptre", "wand", "default", }, weightVal = { 0, 1500, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(26-30)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 60, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "sceptre", "wand", "default", }, weightVal = { 0, 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TwoHandBurnDamage1"] = { type = "Suffix", affix = "of Burning", "(21-30)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 20, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TwoHandBurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(31-40)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 40, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 1500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TwoHandBurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(41-50)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 60, group = "BurnDamage", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamage1"] = { type = "Suffix", affix = "of Poison", "20% chance to Poison on Hit", "(21-30)% increased Damage with Poison", statOrderKey = "2353,2361", statOrder = { 2353, 2361 }, level = 20, group = "PoisonDamage", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 1500, 1500, 3000, 3000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamage2"] = { type = "Suffix", affix = "of Venom", "25% chance to Poison on Hit", "(31-40)% increased Damage with Poison", statOrderKey = "2353,2361", statOrder = { 2353, 2361 }, level = 40, group = "PoisonDamage", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 1500, 1500, 3000, 3000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamage3"] = { type = "Suffix", affix = "of Virulence", "30% chance to Poison on Hit", "(41-50)% increased Damage with Poison", statOrderKey = "2353,2361", statOrder = { 2353, 2361 }, level = 60, group = "PoisonDamage", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 500, 500, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamageEnhancedAttacksMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrderKey = "711,2361", statOrder = { 711, 2361 }, level = 1, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamageEnhancedSpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrderKey = "728,2361", statOrder = { 728, 2361 }, level = 1, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedDamage1_"] = { type = "Suffix", affix = "of Bloodletting", "Attacks have 20% chance to cause Bleeding", "(21-30)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 20, group = "BleedingDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 1500, 1500, 3000, 3000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedDamage2"] = { type = "Suffix", affix = "of Haemophilia", "Attacks have 25% chance to cause Bleeding", "(31-40)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 40, group = "BleedingDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 1500, 1500, 3000, 3000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedDamage3"] = { type = "Suffix", affix = "of Exsanguination", "Attacks have 30% chance to cause Bleeding", "(41-50)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 60, group = "BleedingDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 500, 500, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedPhysicalDamageTaken1"] = { type = "Suffix", affix = "of Dampening", "2% additional Physical Damage Reduction", statOrderKey = "1519", statOrder = { 1519 }, level = 25, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "shield", "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, 0, 2000, 1000, 1000, 660, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedPhysicalDamageTaken2_"] = { type = "Suffix", affix = "of Numbing", "(3-4)% additional Physical Damage Reduction", statOrderKey = "1519", statOrder = { 1519 }, level = 85, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "shield", "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, 0, 1000, 500, 500, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToDodge1_"] = { type = "Suffix", affix = "of Haze", "(3-4)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 25, group = "ChanceToDodge", weightKey = { "weapon", "quiver", "shield", "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, 0, 2000, 1000, 1000, 660, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodge2__"] = { type = "Suffix", affix = "of Fog", "(5-6)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 85, group = "ChanceToDodge", weightKey = { "weapon", "quiver", "shield", "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, 0, 1000, 500, 500, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["EnergyShieldRegenerationPerMinute1"] = { type = "Suffix", affix = "of Vibrance", "Regenerate 0.6% of Energy Shield per second", statOrderKey = "1832", statOrder = { 1832 }, level = 25, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "shield", "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, 0, 2000, 1000, 1000, 660, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldRegenerationPerMinute2"] = { type = "Suffix", affix = "of Exuberance", "Regenerate 1% of Energy Shield per second", statOrderKey = "1832", statOrder = { 1832 }, level = 85, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "shield", "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, 0, 1000, 500, 500, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedDurationBootsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 15 Increased Duration", "(10-15)% increased Skill Effect Duration", statOrderKey = "104,1148", statOrder = { 104, 1148 }, level = 68, group = "SkillEffectDuration", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedCooldownRecoveryBootsUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Speed", statOrderKey = "3784", statOrder = { 3784 }, level = 80, group = "CooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByFortifyUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Fortify", statOrderKey = "217", statOrder = { 217 }, level = 68, group = "DisplaySocketedGemGetsFortify", weightKey = { "no_attack_mods", "boots_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ImmuneToChilledGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Chilled Ground", statOrderKey = "6425", statOrder = { 6425 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ImmuneToBurningGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Burning Ground", statOrderKey = "6423", statOrder = { 6423 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ImmuneToShockedGroundUber1"] = { type = "Prefix", affix = "Eldritch", "Unaffected by Shocked Ground", statOrderKey = "6436", statOrder = { 6436 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ImmuneToDesecratedGroundUber1_"] = { type = "Prefix", affix = "Eldritch", "Unaffected by Desecrated Ground", statOrderKey = "6428", statOrder = { 6428 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToDodgeUber1"] = { type = "Suffix", affix = "of Shaping", "(3-5)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 68, group = "ChanceToDodge", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeUber2"] = { type = "Suffix", affix = "of Shaping", "(6-8)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 75, group = "ChanceToDodge", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 84, group = "ChanceToDodge", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 68, group = "SpellDodgePercentage", weightKey = { "spell_dodge_mod", "boots_elder", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeSpellsUber2"] = { type = "Suffix", affix = "of the Elder", "(6-8)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 75, group = "SpellDodgePercentage", weightKey = { "spell_dodge_mod", "boots_elder", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeSpellsUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 83, group = "SpellDodgePercentage", weightKey = { "spell_dodge_mod", "boots_elder", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToAvoidStunUber1"] = { type = "Suffix", affix = "of the Elder", "(15-22)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 68, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidStunUber2"] = { type = "Suffix", affix = "of the Elder", "(23-30)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 75, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidStunUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 82, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidElementalAilmentsUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-22)% chance to Avoid Elemental Ailments", statOrderKey = "1104", statOrder = { 1104 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidElementalAilmentsUber2"] = { type = "Suffix", affix = "of Shaping", "(23-30)% chance to Avoid Elemental Ailments", statOrderKey = "1104", statOrder = { 1104 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidElementalAilmentsUber3"] = { type = "Suffix", affix = "of Shaping", "(31-35)% chance to Avoid Elemental Ailments", statOrderKey = "1104", statOrder = { 1104 }, level = 81, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidProjectilesUber1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% chance to avoid Projectiles", statOrderKey = "3778", statOrder = { 3778 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidProjectilesUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% chance to avoid Projectiles", statOrderKey = "3778", statOrder = { 3778 }, level = 84, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToGainEnduranceChargeOnKillUber1"] = { type = "Prefix", affix = "Eldritch", "(4-6)% chance to gain an Endurance Charge on Kill", statOrderKey = "1819", statOrder = { 1819 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToGainEnduranceChargeOnKillUber2"] = { type = "Prefix", affix = "Eldritch", "(7-10)% chance to gain an Endurance Charge on Kill", statOrderKey = "1819", statOrder = { 1819 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TotemDamageSpellUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(20-25)% increased Totem Damage", statOrderKey = "195,533", statOrder = { 195, 533 }, level = 68, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["TotemDamageSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(26-30)% increased Totem Damage", statOrderKey = "195,533", statOrder = { 195, 533 }, level = 75, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["TotemDamageSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(31-35)% increased Totem Damage", statOrderKey = "195,533", statOrder = { 195, 533 }, level = 80, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["TotemSpeedSpellUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(8-12)% increased Totem Placement speed", statOrderKey = "195,1776", statOrder = { 195, 1776 }, level = 68, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["TotemSpeedSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(13-16)% increased Totem Placement speed", statOrderKey = "195,1776", statOrder = { 195, 1776 }, level = 75, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["TotemSpeedSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(17-20)% increased Totem Placement speed", statOrderKey = "195,1776", statOrder = { 195, 1776 }, level = 80, group = "TotemSupported", weightKey = { "no_caster_mods", "boots_elder", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["TotemDamageAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(20-25)% increased Totem Damage", statOrderKey = "128,533", statOrder = { 128, 533 }, level = 68, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["TotemDamageAttackUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(26-30)% increased Totem Damage", statOrderKey = "128,533", statOrder = { 128, 533 }, level = 75, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["TotemDamageAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(31-35)% increased Totem Damage", statOrderKey = "128,533", statOrder = { 128, 533 }, level = 80, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["TotemSpeedAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(8-12)% increased Totem Placement speed", statOrderKey = "128,1776", statOrder = { 128, 1776 }, level = 68, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["TotemSpeedAttackUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(13-16)% increased Totem Placement speed", statOrderKey = "128,1776", statOrder = { 128, 1776 }, level = 75, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["TotemSpeedAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrderKey = "128,1776", statOrder = { 128, 1776 }, level = 80, group = "TotemSupported", weightKey = { "no_attack_mods", "boots_shaper", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["SupportedByLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 15 Life Leech", statOrderKey = "210", statOrder = { 210 }, level = 68, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsDecoyTotemSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 20 Decoy Totem Skill", statOrderKey = "344", statOrder = { 344 }, level = 68, group = "GrantedSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalRaiseSpectreGemLevelUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Level of all Raise Spectre Gems", statOrderKey = "915", statOrder = { 915 }, level = 75, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedAttackSpeedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Faster Attacks", "(7-9)% increased Attack Speed", statOrderKey = "200,731", statOrder = { 200, 731 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedUber2_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Faster Attacks", "(10-12)% increased Attack Speed", statOrderKey = "200,731", statOrder = { 200, 731 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAttackSpeedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Faster Attacks", "(13-14)% increased Attack Speed", statOrderKey = "200,731", statOrder = { 200, 731 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedCastSpeedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Faster Casting", "(7-9)% increased Cast Speed", statOrderKey = "220,767", statOrder = { 220, 767 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(10-12)% increased Cast Speed", statOrderKey = "220,767", statOrder = { 220, 767 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(13-14)% increased Cast Speed", statOrderKey = "220,767", statOrder = { 220, 767 }, level = 84, group = "IncreasedAttackSpeed", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedAttackAndCastSpeedUber1_"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Attack and Cast Speed", statOrderKey = "1303", statOrder = { 1303 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedAttackAndCastSpeedUber2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attack and Cast Speed", statOrderKey = "1303", statOrder = { 1303 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedAttackAndCastSpeedUber3_"] = { type = "Suffix", affix = "of the Elder", "(13-14)% increased Attack and Cast Speed", statOrderKey = "1303", statOrder = { 1303 }, level = 85, group = "IncreasedAttackSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByManaLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 15 Mana Leech", statOrderKey = "233", statOrder = { 233 }, level = 68, group = "Supported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileSpeedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 16 Faster Projectiles", "(15-20)% increased Projectile Speed", statOrderKey = "209,1068", statOrder = { 209, 1068 }, level = 68, group = "ProjectileSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileSpeedUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 18 Faster Projectiles", "(21-25)% increased Projectile Speed", statOrderKey = "209,1068", statOrder = { 209, 1068 }, level = 75, group = "ProjectileSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileSpeedUber3_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 20 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrderKey = "209,1068", statOrder = { 209, 1068 }, level = 82, group = "ProjectileSpeed", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Slower Projectiles", "(15-18)% increased Projectile Damage", statOrderKey = "136,1255", statOrder = { 136, 1255 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Slower Projectiles", "(19-22)% increased Projectile Damage", statOrderKey = "136,1255", statOrder = { 136, 1255 }, level = 75, group = "ProjectileDamage", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrderKey = "136,1255", statOrder = { 136, 1255 }, level = 83, group = "ProjectileDamage", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToAvoidInterruptionWhileCastingUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "1151", statOrder = { 1151 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["ChanceToAvoidInterruptionWhileCastingUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "1151", statOrder = { 1151 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["ChanceToAvoidInterruptionWhileCastingUber3"] = { type = "Suffix", affix = "of Shaping", "(26-30)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "1151", statOrder = { 1151 }, level = 80, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["IncreasedMeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Melee Strike Range", statOrderKey = "1732", statOrder = { 1732 }, level = 85, group = "MeleeWeaponAndUnarmedRange", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalTrapsThrownSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrderKey = "186,6013", statOrder = { 186, 6013 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalTrapsThrownSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrderKey = "186,6013", statOrder = { 186, 6013 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalTrapsThrownSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrderKey = "186,6013", statOrder = { 186, 6013 }, level = 84, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "(20-25)% increased Trap Damage", statOrderKey = "186,534", statOrder = { 186, 534 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "(26-30)% increased Trap Damage", statOrderKey = "186,534", statOrder = { 186, 534 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "(31-35)% increased Trap Damage", statOrderKey = "186,534", statOrder = { 186, 534 }, level = 80, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapDamageCooldownUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(20-25)% increased Trap Damage", statOrderKey = "145,534", statOrder = { 145, 534 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapDamageCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(26-30)% increased Trap Damage", statOrderKey = "145,534", statOrder = { 145, 534 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapDamageCooldownUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(31-35)% increased Trap Damage", statOrderKey = "145,534", statOrder = { 145, 534 }, level = 80, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapSpeedCooldownUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(8-12)% increased Trap Throwing Speed", statOrderKey = "145,1178", statOrder = { 145, 1178 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapSpeedCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(13-16)% increased Trap Throwing Speed", statOrderKey = "145,1178", statOrder = { 145, 1178 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapSpeedCooldownUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrderKey = "145,1178", statOrder = { 145, 1178 }, level = 80, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapDamageMineUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Trap Damage", statOrderKey = "189,534", statOrder = { 189, 534 }, level = 68, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapDamageMineUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Trap Damage", statOrderKey = "189,534", statOrder = { 189, 534 }, level = 75, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapDamageMineUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrderKey = "189,534", statOrder = { 189, 534 }, level = 80, group = "TrapSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamageSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Poison", "(20-25)% increased Damage with Poison", statOrderKey = "123,2361", statOrder = { 123, 2361 }, level = 68, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "(26-30)% increased Damage with Poison", statOrderKey = "123,2361", statOrder = { 123, 2361 }, level = 75, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "(31-35)% increased Damage with Poison", statOrderKey = "123,2361", statOrder = { 123, 2361 }, level = 80, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Poison", "(8-12)% increased Poison Duration", statOrderKey = "123,2350", statOrder = { 123, 2350 }, level = 68, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "(13-16)% increased Poison Duration", statOrderKey = "123,2350", statOrder = { 123, 2350 }, level = 75, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "(17-20)% increased Poison Duration", statOrderKey = "123,2350", statOrder = { 123, 2350 }, level = 80, group = "PoisonDamage", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedingDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance To Bleed", "(20-25)% increased Damage with Bleeding", statOrderKey = "78,2349", statOrder = { 78, 2349 }, level = 68, group = "BleedingDamage", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedingDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "(26-30)% increased Damage with Bleeding", statOrderKey = "78,2349", statOrder = { 78, 2349 }, level = 75, group = "BleedingDamage", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedingDamageUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrderKey = "78,2349", statOrder = { 78, 2349 }, level = 80, group = "BleedingDamage", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToGainFrenzyChargeOnKillUberElder1"] = { type = "Prefix", affix = "Eldritch", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1818", statOrder = { 1818 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToGainFrenzyChargeOnKillUberElder2_"] = { type = "Prefix", affix = "Eldritch", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1818", statOrder = { 1818 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToGainFrenzyChargeOnKillUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1818", statOrder = { 1818 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToGainFrenzyChargeOnKillUberShaper2_"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1818", statOrder = { 1818 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedAccuracySupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 16 Additional Accuracy", "(6-10)% increased Global Accuracy Rating", statOrderKey = "207,755", statOrder = { 207, 755 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracySupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Additional Accuracy", "(11-15)% increased Global Accuracy Rating", statOrderKey = "207,755", statOrder = { 207, 755 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["IncreasedAccuracySupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrderKey = "207,755", statOrder = { 207, 755 }, level = 83, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["AdditionalBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(2-3)% Chance to Block Attack Damage", statOrderKey = "495", statOrder = { 495 }, level = 68, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(4-5)% Chance to Block Attack Damage", statOrderKey = "495", statOrder = { 495 }, level = 80, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlindOnHitSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Blind", "(5-6)% Global chance to Blind Enemies on hit", statOrderKey = "201,2139", statOrder = { 201, 2139 }, level = 68, group = "BlindOnHit", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlindOnHitSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Blind", "(7-8)% Global chance to Blind Enemies on hit", statOrderKey = "201,2139", statOrder = { 201, 2139 }, level = 75, group = "BlindOnHit", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlindOnHitSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrderKey = "201,2139", statOrder = { 201, 2139 }, level = 80, group = "BlindOnHit", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedSpellCriticalMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +30% to Critical Strike Multiplier", statOrderKey = "277", statOrder = { 277 }, level = 68, group = "SocketedCriticalMultiplier", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SocketedSpellCriticalMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +50% to Critical Strike Multiplier", statOrderKey = "277", statOrder = { 277 }, level = 75, group = "SocketedCriticalMultiplier", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SocketedSpellCriticalMultiplierUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +70% to Critical Strike Multiplier", statOrderKey = "277", statOrder = { 277 }, level = 83, group = "SocketedCriticalMultiplier", weightKey = { "no_caster_mods", "gloves_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SocketedAttackCriticalMultiplierUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +30% to Critical Strike Multiplier", statOrderKey = "262", statOrder = { 262 }, level = 68, group = "SocketedCriticalMultiplier", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["SocketedAttackCriticalMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +50% to Critical Strike Multiplier", statOrderKey = "262", statOrder = { 262 }, level = 75, group = "SocketedCriticalMultiplier", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["SocketedAttackCriticalMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +70% to Critical Strike Multiplier", statOrderKey = "262", statOrder = { 262 }, level = 84, group = "SocketedCriticalMultiplier", weightKey = { "no_attack_mods", "gloves_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["AreaDamageSupportedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Concentrated Effect", "(15-18)% increased Area Damage", statOrderKey = "185,1291", statOrder = { 185, 1291 }, level = 68, group = "AreaDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaDamageSupportedUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Concentrated Effect", "(19-22)% increased Area Damage", statOrderKey = "185,1291", statOrder = { 185, 1291 }, level = 75, group = "AreaDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaDamageSupportedUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Concentrated Effect", "(23-25)% increased Area Damage", statOrderKey = "185,1291", statOrder = { 185, 1291 }, level = 82, group = "AreaDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectSupportedUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(7-9)% increased Area of Effect", statOrderKey = "66,1140", statOrder = { 66, 1140 }, level = 68, group = "AreaOfEffect", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(10-12)% increased Area of Effect", statOrderKey = "66,1140", statOrder = { 66, 1140 }, level = 75, group = "AreaOfEffect", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectSupportedUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrderKey = "66,1140", statOrder = { 66, 1140 }, level = 83, group = "AreaOfEffect", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumManaUber1"] = { type = "Prefix", affix = "Eldritch", "(9-11)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumManaUber2_"] = { type = "Prefix", affix = "Eldritch", "(12-15)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageSupportedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Minion Damage", "Minions deal (15-18)% increased Damage", statOrderKey = "225,1233", statOrder = { 225, 1233 }, level = 68, group = "MinionDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageSupportedUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Minion Damage", "Minions deal (19-22)% increased Damage", statOrderKey = "225,1233", statOrder = { 225, 1233 }, level = 75, group = "MinionDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageSupportedUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Minion Damage", "Minions deal (23-25)% increased Damage", statOrderKey = "225,1233", statOrder = { 225, 1233 }, level = 83, group = "MinionDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeSupportedUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Minion Life", "Minions have (15-18)% increased maximum Life", statOrderKey = "223,1040", statOrder = { 223, 1040 }, level = 68, group = "MinionLife", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeSupportedUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Minion Life", "Minions have (19-22)% increased maximum Life", statOrderKey = "223,1040", statOrder = { 223, 1040 }, level = 75, group = "MinionLife", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeSupportedUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Minion Life", "Minions have (23-25)% increased maximum Life", statOrderKey = "223,1040", statOrder = { 223, 1040 }, level = 80, group = "MinionLife", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalMinesPlacedSupportedUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "Throw an additional Mine", statOrderKey = "218,2729", statOrder = { 218, 2729 }, level = 68, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalMinesPlacedSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "Throw an additional Mine", statOrderKey = "218,2729", statOrder = { 218, 2729 }, level = 75, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalMinesPlacedSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "Throw an additional Mine", statOrderKey = "218,2729", statOrder = { 218, 2729 }, level = 85, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "(20-25)% increased Mine Damage", statOrderKey = "218,536", statOrder = { 218, 536 }, level = 68, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "(26-30)% increased Mine Damage", statOrderKey = "218,536", statOrder = { 218, 536 }, level = 75, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "(31-35)% increased Mine Damage", statOrderKey = "218,536", statOrder = { 218, 536 }, level = 80, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineDamageTrapUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Mine Damage", statOrderKey = "189,536", statOrder = { 189, 536 }, level = 68, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineDamageTrapUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Mine Damage", statOrderKey = "189,536", statOrder = { 189, 536 }, level = 75, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineDamageTrapUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrderKey = "189,536", statOrder = { 189, 536 }, level = 80, group = "MineSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedChillEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Hypothermia", "(8-12)% increased Effect of Chill", statOrderKey = "230,4066", statOrder = { 230, 4066 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedChillEffectSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Hypothermia", "(13-16)% increased Effect of Chill", statOrderKey = "230,4066", statOrder = { 230, 4066 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedChillEffectSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Hypothermia", "(17-20)% increased Effect of Chill", statOrderKey = "230,4066", statOrder = { 230, 4066 }, level = 80, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedShockEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Innervate", "(8-12)% increased Effect of Shock", statOrderKey = "237,6217", statOrder = { 237, 6217 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedShockEffectSupportedUber2___"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Innervate", "(13-16)% increased Effect of Shock", statOrderKey = "237,6217", statOrder = { 237, 6217 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedShockEffectSupportedUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Innervate", "(17-20)% increased Effect of Shock", statOrderKey = "237,6217", statOrder = { 237, 6217 }, level = 80, group = "HelmetAilmentUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IgniteDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Immolate", "(8-12)% increased Ignite Duration on Enemies", statOrderKey = "100,1119", statOrder = { 100, 1119 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IgniteDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Immolate", "(13-16)% increased Ignite Duration on Enemies", statOrderKey = "100,1119", statOrder = { 100, 1119 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IgniteDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrderKey = "100,1119", statOrder = { 100, 1119 }, level = 80, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedBurningDamageSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Burning Damage", "(20-25)% increased Burning Damage", statOrderKey = "102,1137", statOrder = { 102, 1137 }, level = 68, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedBurningDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Burning Damage", "(26-30)% increased Burning Damage", statOrderKey = "102,1137", statOrder = { 102, 1137 }, level = 75, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedBurningDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Burning Damage", "(31-35)% increased Burning Damage", statOrderKey = "102,1137", statOrder = { 102, 1137 }, level = 82, group = "HelmetAilmentUber", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToGainPowerChargeOnKillUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Power Charge on Kill", statOrderKey = "1820", statOrder = { 1820 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToGainPowerChargeOnKillUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Power Charge on Kill", statOrderKey = "1820", statOrder = { 1820 }, level = 84, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByLessDurationUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Less Duration", statOrderKey = "131", statOrder = { 131 }, level = 68, group = "Supported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellAddedFireDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 82, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 83, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 84, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["ManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "(41-55)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "(56-70)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "Regenerate (3-5) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "Regenerate (6-8) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 80, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalSpellBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(3-4)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalSpellBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(5-6)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedSpellCriticalStrikeChanceUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +1% to Critical Strike Chance", statOrderKey = "276", statOrder = { 276 }, level = 68, group = "SocketedCriticalStrikeChance", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SocketedSpellCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +2% to Critical Strike Chance", statOrderKey = "276", statOrder = { 276 }, level = 75, group = "SocketedCriticalStrikeChance", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SocketedSpellCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +3% to Critical Strike Chance", statOrderKey = "276", statOrder = { 276 }, level = 84, group = "SocketedCriticalStrikeChance", weightKey = { "no_caster_mods", "helmet_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SocketedAttackCriticalStrikeChanceUber1__"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +1% to Critical Strike Chance", statOrderKey = "261", statOrder = { 261 }, level = 68, group = "SocketedCriticalStrikeChance", weightKey = { "no_attack_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["SocketedAttackCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +2% to Critical Strike Chance", statOrderKey = "261", statOrder = { 261 }, level = 75, group = "SocketedCriticalStrikeChance", weightKey = { "no_attack_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["SocketedAttackCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +3% to Critical Strike Chance", statOrderKey = "261", statOrder = { 261 }, level = 83, group = "SocketedCriticalStrikeChance", weightKey = { "no_attack_mods", "helmet_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["EnemyPhysicalDamageTakenAuraUber1_"] = { type = "Suffix", affix = "of the Elder", "9% increased Physical Damage taken", "Nearby Enemies take 9% increased Physical Damage", statOrderKey = "1489,5114", statOrder = { 1489, 5114 }, level = 85, group = "LocalDisplayNearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnemyElementalDamageTakenAuraUber1"] = { type = "Suffix", affix = "of Shaping", "6% increased Elemental Damage taken", "Nearby Enemies take 6% increased Elemental Damage", statOrderKey = "2474,5111", statOrder = { 2474, 5111 }, level = 85, group = "LocalDisplayNearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedActiveGemLevelUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to Level of Socketed Active Skill Gems", statOrderKey = "53", statOrder = { 53 }, level = 80, group = "IncreaseSkillGemLevel", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedSupportGemLevelUber1"] = { type = "Prefix", affix = "Eldritch", "+1 to Level of Socketed Support Gems", statOrderKey = "52", statOrder = { 52 }, level = 80, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageTakenAsFirePercentUber1"] = { type = "Prefix", affix = "Eldritch", "(5-10)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysicalDamageTakenAsFirePercentUber2"] = { type = "Prefix", affix = "Eldritch", "(11-15)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 84, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysicalDamageTakenAsColdPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysicalDamageTakenAsColdPercentUber2"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysicalDamageTakenAsLightningPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysicalDamageTakenAsLightningPercentUber2___"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 82, group = "PhysicalDamageTakenAsElement", weightKey = { "has_damage_taken_as_mod", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["ReducedElementalReflectTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrderKey = "4328", statOrder = { 4328 }, level = 68, group = "ReflectedDamage", weightKey = { "body_armour_shaper", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedElementalReflectTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrderKey = "4328", statOrder = { 4328 }, level = 75, group = "ReflectedDamage", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedPhysicalReflectTakenUber1"] = { type = "Prefix", affix = "Eldritch", "You and your Minions take 100% reduced Reflected Physical Damage", statOrderKey = "6076", statOrder = { 6076 }, level = 68, group = "ReflectedDamage", weightKey = { "body_armour_elder", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedPhysicalReflectTakenUber2"] = { type = "Prefix", affix = "Eldritch", "You and your Minions take 100% reduced Reflected Physical Damage", statOrderKey = "6076", statOrder = { 6076 }, level = 75, group = "ReflectedDamage", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLifeUber1"] = { type = "Prefix", affix = "Eldritch", "(5-8)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLifeUber2"] = { type = "Prefix", affix = "Eldritch", "(9-12)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumManaBodyUber1"] = { type = "Prefix", affix = "The Shaper's", "(9-11)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_percent_mana_mod", }, }, + ["MaximumManaBodyUber2"] = { type = "Prefix", affix = "The Shaper's", "(12-15)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_percent_mana_mod", }, }, + ["DamageTakenFromManaBeforeLifeUber1_"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Damage is taken from Mana before Life", statOrderKey = "1879", statOrder = { 1879 }, level = 80, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLifeOnKillPercentUber1"] = { type = "Suffix", affix = "of the Elder", "Recover (3-4)% of Life on Kill", statOrderKey = "1026", statOrder = { 1026 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLifeOnKillPercentUber2__"] = { type = "Suffix", affix = "of the Elder", "Recover (5-6)% of Life on Kill", statOrderKey = "1026", statOrder = { 1026 }, level = 75, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumManaOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Mana on Kill", statOrderKey = "1028", statOrder = { 1028 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumManaOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Mana on Kill", statOrderKey = "1028", statOrder = { 1028 }, level = 75, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumEnergyShieldOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Energy Shield on Kill", statOrderKey = "1027", statOrder = { 1027 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumEnergyShieldOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Energy Shield on Kill", statOrderKey = "1027", statOrder = { 1027 }, level = 75, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageStrengthUber1_"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Strength", statOrderKey = "528", statOrder = { 528 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageStrengthUber2__"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Strength", statOrderKey = "528", statOrder = { 528 }, level = 83, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageDexterityUber1"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Dexterity", statOrderKey = "529", statOrder = { 529 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageDexterityUber2"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Dexterity", statOrderKey = "529", statOrder = { 529 }, level = 83, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageIntelligenceUber1"] = { type = "Suffix", affix = "of Shaping", "(5-8)% increased Intelligence", statOrderKey = "530", statOrder = { 530 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageIntelligenceUber2"] = { type = "Suffix", affix = "of Shaping", "(9-12)% increased Intelligence", statOrderKey = "530", statOrder = { 530 }, level = 83, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationRatePercentUber1"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1-1.5)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationRatePercentUber2"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1.6-2)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["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", statOrderKey = "108,6445", statOrder = { 108, 6445 }, level = 68, group = "Supported", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["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", statOrderKey = "108,6445", statOrder = { 108, 6445 }, level = 85, group = "Supported", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalCriticalStrikeChanceWithAttacksUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(0-1)% to Critical Strike Chance", statOrderKey = "3668", statOrder = { 3668 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "no_attack_mods", "body_armour_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalCriticalStrikeChanceWithAttacksUber2"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(1-2)% to Critical Strike Chance", statOrderKey = "3668", statOrder = { 3668 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "no_attack_mods", "body_armour_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalCriticalStrikeChanceWithSpellsUber1_"] = { type = "Suffix", affix = "of Shaping", "Spells have +(0-1)% to Critical Strike Chance ", statOrderKey = "6289", statOrder = { 6289 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "no_caster_mods", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalCriticalStrikeChanceWithSpellsUber2_"] = { type = "Suffix", affix = "of Shaping", "Spells have +(1-2)% to Critical Strike Chance ", statOrderKey = "6289", statOrder = { 6289 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "no_caster_mods", "body_armour_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsWrathAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Wrath Skill", statOrderKey = "315", statOrder = { 315 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsAngerAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Anger Skill", statOrderKey = "317", statOrder = { 317 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsHatredAuraUber1__"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Hatred Skill", statOrderKey = "316", statOrder = { 316 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsEnvyAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 15 Envy Skill", statOrderKey = "322", statOrder = { 322 }, level = 85, group = "GrantedSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsDeterminationAuraUber1_"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Determination Skill", statOrderKey = "318", statOrder = { 318 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsGraceAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Grace Skill", statOrderKey = "319", statOrder = { 319 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsDisciplineAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Discipline Skill", statOrderKey = "321", statOrder = { 321 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsHasteAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Haste Skill", statOrderKey = "308", statOrder = { 308 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsVitalityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Vitality Skill", statOrderKey = "311", statOrder = { 311 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsClarityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Clarity Skill", statOrderKey = "310", statOrder = { 310 }, level = 68, group = "GrantedSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedAttributeRequirementsUber1"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrderKey = "1750", statOrder = { 1750 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedAttributeRequirementsUber2"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrderKey = "1750", statOrder = { 1750 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageLifeLeechUber1"] = { type = "Prefix", affix = "Eldritch", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrderKey = "962", statOrder = { 962 }, level = 68, group = "FireDamageLifeLeech", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamageLifeLeechUber1_"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrderKey = "964", statOrder = { 964 }, level = 68, group = "ColdDamageLifeLeech", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrderKey = "966", statOrder = { 966 }, level = 68, group = "LightningDamageLifeLeech", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageLifeLeechUber1"] = { type = "Prefix", affix = "Eldritch", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrderKey = "960", statOrder = { 960 }, level = 68, group = "PhysicalDamageLifeLeech", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 68, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-8)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 84, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlockAppliesToSpellsUber1"] = { type = "Suffix", affix = "of Shaping", "(25-35)% Chance to Block Spell Damage", statOrderKey = "505", statOrder = { 505 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlockAppliesToSpellsUber2"] = { type = "Suffix", affix = "of Shaping", "(36-40)% Chance to Block Spell Damage", statOrderKey = "505", statOrder = { 505 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockAmuletUber1_"] = { type = "Suffix", affix = "of Shaping", "(4-5)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockAmuletUber2_"] = { type = "Suffix", affix = "of Shaping", "(6-7)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 75, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageAllAttributesUberElder1"] = { type = "Suffix", affix = "of the Elder", "(6-9)% increased Attributes", statOrderKey = "527", statOrder = { 527 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageAllAttributesUberElder2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attributes", statOrderKey = "527", statOrder = { 527 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageAllAttributesUberShaper1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% increased Attributes", statOrderKey = "527", statOrder = { 527 }, level = 68, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageAllAttributesUberShaper2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Attributes", statOrderKey = "527", statOrder = { 527 }, level = 75, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedManaReservedUber1"] = { type = "Suffix", affix = "of Shaping", "(3-5)% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 82, group = "ReducedManaReservationsCost", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectUber1_"] = { type = "Prefix", affix = "Eldritch", "(7-9)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 800, 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectUber2"] = { type = "Prefix", affix = "Eldritch", "(10-12)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 75, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 600, 600, 600, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectUber3_"] = { type = "Prefix", affix = "Eldritch", "(13-15)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 82, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalPierceUber1"] = { type = "Prefix", affix = "Eldritch", "Projectiles Pierce an additional Target", statOrderKey = "1064", statOrder = { 1064 }, level = 68, group = "Pierce", weightKey = { "amulet_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedPhysicalDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% additional Physical Damage Reduction", statOrderKey = "1519", statOrder = { 1519 }, level = 83, group = "ReducedPhysicalDamageTaken", weightKey = { "amulet_elder", "shield_elder", "default", }, weightVal = { 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ItemFoundQuantityIncreaseUber1"] = { type = "Suffix", affix = "of Shaping", "(4-7)% increased Quantity of Items found", statOrderKey = "892", statOrder = { 892 }, level = 75, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ItemFoundQuantityIncreaseUber2"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Quantity of Items found", statOrderKey = "892", statOrder = { 892 }, level = 85, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsFireAmuletUber1"] = { type = "Prefix", affix = "Eldritch", "Gain (8-11)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsFireAmuletUber2"] = { type = "Prefix", affix = "Eldritch", "Gain (12-15)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsColdAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsColdAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsLightningAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsLightningAmuletUber2_"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedAttackSpeedAmuletUber1"] = { type = "Suffix", affix = "of the Elder", "(7-13)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "amulet_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["NonChaosAddedAsChaosUber1"] = { type = "Prefix", affix = "Eldritch", "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "5994", statOrder = { 5994 }, level = 81, group = "NonChaosAddedAsChaos", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PowerFrenzyOrEnduranceChargeOnKillUber1_"] = { type = "Suffix", affix = "of Shaping", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2788", statOrder = { 2788 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PowerFrenzyOrEnduranceChargeOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2788", statOrder = { 2788 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumZombiesUber1"] = { type = "Prefix", affix = "Eldritch", "+1 to maximum number of Raised Zombies", statOrderKey = "1412", statOrder = { 1412 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumSkeletonsUber1"] = { type = "Prefix", affix = "Eldritch", "+1 to maximum number of Skeletons", statOrderKey = "1414", statOrder = { 1414 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumBlockChanceUber1"] = { type = "Suffix", affix = "of Shaping", "+2% to maximum Chance to Block Attack Damage", statOrderKey = "1248", statOrder = { 1248 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLifeLeechRateUber1"] = { type = "Prefix", affix = "Eldritch", "(180-300)% increased Maximum total Recovery per second from Life Leech", statOrderKey = "1009", statOrder = { 1009 }, level = 68, group = "MaximumLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLifeLeechRateUpdatedUber1"] = { type = "Prefix", affix = "Eldritch", "(15-25)% increased Maximum total Recovery per second from Life Leech", statOrderKey = "1008", statOrder = { 1008 }, level = 68, group = "MaximumLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (4-7)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (8-10)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePer15StrengthUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Damage per 15 Strength", statOrderKey = "4214", statOrder = { 4214 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePer15DexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Dexterity", statOrderKey = "4212", statOrder = { 4212 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePer15IntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Intelligence", statOrderKey = "4213", statOrder = { 4213 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedCurseEffectUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% reduced Effect of Curses on you", statOrderKey = "1424", statOrder = { 1424 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedCurseEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% reduced Effect of Curses on you", statOrderKey = "1424", statOrder = { 1424 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 68, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 75, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 83, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileAttackDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileAttackDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileAttackDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 84, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamageRingUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 68, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellDamageRingUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 75, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellDamageRingUber3__"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 82, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["ReducedElementalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrderKey = "4328", statOrder = { 4328 }, level = 68, group = "ReflectedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedElementalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrderKey = "4328", statOrder = { 4328 }, level = 75, group = "ReflectedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedPhysicalReflectTakenRingUber1"] = { type = "Prefix", affix = "Eldritch", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrderKey = "6076", statOrder = { 6076 }, level = 68, group = "ReflectedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedPhysicalReflectTakenRingUber2"] = { type = "Prefix", affix = "Eldritch", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrderKey = "6076", statOrder = { 6076 }, level = 75, group = "ReflectedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceUber3_"] = { type = "Suffix", affix = "of Shaping", "(21-25)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 80, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeMultiplierUber2_"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "+(17-20)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks", statOrderKey = "698", statOrder = { 698 }, level = 68, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks", statOrderKey = "698", statOrder = { 698 }, level = 75, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamageToSpellsAndAttacksUber1__"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks", statOrderKey = "699", statOrder = { 699 }, level = 68, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks", statOrderKey = "699", statOrder = { 699 }, level = 75, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks", statOrderKey = "730", statOrder = { 730 }, level = 68, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks", statOrderKey = "730", statOrder = { 730 }, level = 75, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedExperienceGainUber1"] = { type = "Prefix", affix = "The Shaper's", "(2-3)% increased Experience gain", statOrderKey = "902", statOrder = { 902 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeGainPerTargetUber1"] = { type = "Prefix", affix = "Eldritch", "+(10-15) Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 68, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeGainPerTargetUber2"] = { type = "Prefix", affix = "Eldritch", "+(16-20) Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 75, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["ManaGainPerTargetUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "1021", statOrder = { 1021 }, level = 68, group = "ManaGainPerTarget", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaGainPerTargetUberElder1"] = { type = "Prefix", affix = "Eldritch", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "1021", statOrder = { 1021 }, level = 68, group = "ManaGainPerTarget", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeGainedOnSpellHitUber1"] = { type = "Prefix", affix = "The Shaper's", "+(8-12) Life gained for each Enemy hit by your Spells", statOrderKey = "1016", statOrder = { 1016 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeGainedOnSpellHitUber2"] = { type = "Prefix", affix = "The Shaper's", "+(13-15) Life gained for each Enemy hit by your Spells", statOrderKey = "1016", statOrder = { 1016 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaGainedOnSpellHitUber1_"] = { type = "Prefix", affix = "The Shaper's", "+(2-3) Mana gained for each Enemy Hit by your Spells", statOrderKey = "5283", statOrder = { 5283 }, level = 68, group = "ManaGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedAccuracyPercentUber1_"] = { type = "Suffix", affix = "of the Elder", "(6-10)% increased Global Accuracy Rating", statOrderKey = "755", statOrder = { 755 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedAccuracyPercentUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Global Accuracy Rating", statOrderKey = "755", statOrder = { 755 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedAccuracyPercentUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Global Accuracy Rating", statOrderKey = "755", statOrder = { 755 }, level = 82, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "ring_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitAssassinsMarkUber1"] = { type = "Suffix", affix = "of Shaping", "Curse Enemies with Level 8 Assassin's Mark on Hit", statOrderKey = "1720", statOrder = { 1720 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_shaper", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitAssassinsMarkUber2"] = { type = "Suffix", affix = "of Shaping", "Curse Enemies with Level 12 Assassin's Mark on Hit", statOrderKey = "1720", statOrder = { 1720 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_shaper", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitPoachersMarkUber1"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 8 Poacher's Mark on Hit", statOrderKey = "1727", statOrder = { 1727 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitPoachersMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 12 Poacher's Mark on Hit", statOrderKey = "1727", statOrder = { 1727 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitWarlordsMarkUber1_"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 8 Warlord's Mark on Hit", statOrderKey = "1729", statOrder = { 1729 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitWarlordsMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Curse Enemies with Level 12 Warlord's Mark on Hit", statOrderKey = "1729", statOrder = { 1729 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_elder", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsHeraldOfAshSkillUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Herald of Ash Skill", statOrderKey = "347", statOrder = { 347 }, level = 68, group = "GrantedSkill", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsHeraldOfIceSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Ice Skill", statOrderKey = "348", statOrder = { 348 }, level = 68, group = "GrantedSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsHeraldOfThunderSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Thunder Skill", statOrderKey = "349", statOrder = { 349 }, level = 68, group = "GrantedSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalChanceToEvadeUber1__"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% chance to Evade Attack Hits", statOrderKey = "4008", statOrder = { 4008 }, level = 68, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalChanceToEvadeUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% chance to Evade Attack Hits", statOrderKey = "4008", statOrder = { 4008 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToIgniteAddedDamageUber1"] = { type = "Prefix", affix = "Eldritch", "(4-6)% chance to Ignite", "Adds (9-12) to (27-30) Fire Damage against Ignited Enemies", statOrderKey = "1282,4544", statOrder = { 1282, 4544 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToIgniteAddedDamageUber2__"] = { type = "Prefix", affix = "Eldritch", "(7-10)% chance to Ignite", "Adds (13-16) to (33-36) Fire Damage against Ignited Enemies", statOrderKey = "1282,4544", statOrder = { 1282, 4544 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToFreezeAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to Freeze", "Adds (9-12) to (27-30) Cold Damage against Chilled or Frozen Enemies", statOrderKey = "1285,4543", statOrder = { 1285, 4543 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToFreezeAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to Freeze", "Adds (13-16) to (33-36) Cold Damage against Chilled or Frozen Enemies", statOrderKey = "1285,4543", statOrder = { 1285, 4543 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToShockAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to Shock", "Adds (3-7) to (34-38) Lightning Damage against Shocked Enemies", statOrderKey = "1289,4546", statOrder = { 1289, 4546 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToShockAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to Shock", "Adds (6-10) to (41-45) Lightning Damage against Shocked Enemies", statOrderKey = "1289,4546", statOrder = { 1289, 4546 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAttackDamageTakenUber1_"] = { type = "Suffix", affix = "of Shaping", "-(35-25) Physical Damage taken from Attack Hits", statOrderKey = "1482", statOrder = { 1482 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAttackDamageTakenUber2"] = { type = "Suffix", affix = "of Shaping", "-(45-36) Physical Damage taken from Attack Hits", statOrderKey = "1482", statOrder = { 1482 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedCooldownRecoveryUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Speed", statOrderKey = "3784", statOrder = { 3784 }, level = 75, group = "CooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedCooldownRecoveryUber2_"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Cooldown Recovery Speed", statOrderKey = "3784", statOrder = { 3784 }, level = 84, group = "CooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLifeIncreasePercentBeltUber1"] = { type = "Prefix", affix = "Eldritch", "(4-7)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLifeIncreasePercentBeltUber2"] = { type = "Prefix", affix = "Eldritch", "(8-10)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalEnergyShieldPercentBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-7)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 68, group = "EnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalEnergyShieldPercentBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(8-10)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 75, group = "EnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskEffectUber1"] = { type = "Prefix", affix = "Eldritch", "Flasks applied to you have (4-7)% increased Effect", statOrderKey = "1921", statOrder = { 1921 }, level = 75, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskEffectUber2"] = { type = "Prefix", affix = "Eldritch", "Flasks applied to you have (8-10)% increased Effect", statOrderKey = "1921", statOrder = { 1921 }, level = 81, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllResistancesBeltUber1"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 68, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllResistancesBeltUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-18)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 75, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedCriticalStrikeDamageTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrderKey = "833", statOrder = { 833 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedCriticalStrikeDamageTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrderKey = "833", statOrder = { 833 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRecoveryRateUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% increased Life Recovery rate", statOrderKey = "2153", statOrder = { 2153 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRecoveryRateUber2_"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Life Recovery rate", statOrderKey = "2153", statOrder = { 2153 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldRecoveryRateUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Energy Shield Recovery rate", statOrderKey = "2155", statOrder = { 2155 }, level = 68, group = "EnergyShieldRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Energy Shield Recovery rate", statOrderKey = "2155", statOrder = { 2155 }, level = 75, group = "EnergyShieldRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRecoveryRateUber1_"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Mana Recovery rate", statOrderKey = "2154", statOrder = { 2154 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Mana Recovery rate", statOrderKey = "2154", statOrder = { 2154 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskChanceToNotConsumeChargesUber1_"] = { type = "Prefix", affix = "Eldritch", "(6-10)% chance for Flasks you use to not consume Charges", statOrderKey = "3403", statOrder = { 3403 }, level = 82, group = "FlaskChargesUsed", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosResistanceWhileUsingFlaskUber1"] = { type = "Suffix", affix = "of the Elder", "+(20-25)% to Chaos Resistance during any Flask Effect", statOrderKey = "2482", statOrder = { 2482 }, level = 68, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosResistanceWhileUsingFlaskUber2_"] = { type = "Suffix", affix = "of the Elder", "+(26-30)% to Chaos Resistance during any Flask Effect", statOrderKey = "2482", statOrder = { 2482 }, level = 75, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Movement Speed during any Flask Effect", statOrderKey = "2366", statOrder = { 2366 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FortifyOnMeleeStunUber1"] = { type = "Prefix", affix = "Eldritch", "(8-12)% chance to gain Fortify when you Stun an Enemy with Melee Damage", statOrderKey = "4012", statOrder = { 4012 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsEnduringCrySkillUber1"] = { type = "Prefix", affix = "Eldritch", "Grants Level 22 Enduring Cry Skill", statOrderKey = "346", statOrder = { 346 }, level = 68, group = "GrantedSkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsRallyingCrySkillUber1"] = { type = "Prefix", affix = "Eldritch", "Grants Level 22 Rallying Cry Skill", statOrderKey = "354", statOrder = { 354 }, level = 68, group = "GrantedSkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsAbyssalCrySkillUber1"] = { type = "Prefix", affix = "The Shaper's", "Grants Level 22 Abyssal Cry Skill", statOrderKey = "338", statOrder = { 338 }, level = 68, group = "GrantedSkill", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RemoveIgniteOnFlaskUseUber1"] = { type = "Suffix", affix = "of the Elder", "Remove Ignite and Burning when you use a Flask", statOrderKey = "6182", statOrder = { 6182 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RemoveFreezeOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Chill and Freeze when you use a Flask", statOrderKey = "6180", statOrder = { 6180 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RemoveShockOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Shock when you use a Flask", statOrderKey = "6186", statOrder = { 6186 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(8-14)% increased Attack Speed during any Flask Effect", statOrderKey = "2481", statOrder = { 2481 }, level = 68, group = "SpeedDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CastSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(8-14)% increased Cast Speed during any Flask Effect", statOrderKey = "3971", statOrder = { 3971 }, level = 68, group = "SpeedDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage during any Flask Effect", statOrderKey = "5850", statOrder = { 5850 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage during any Flask Effect", statOrderKey = "5850", statOrder = { 5850 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage during any Flask Effect", statOrderKey = "5850", statOrder = { 5850 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileAttackDamageDuringFlaskEffectUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "6110", statOrder = { 6110 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileAttackDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "6110", statOrder = { 6110 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileAttackDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "6110", statOrder = { 6110 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage during any Flask Effect", statOrderKey = "6301", statOrder = { 6301 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamageDuringFlaskEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage during any Flask Effect", statOrderKey = "6301", statOrder = { 6301 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamageDuringFlaskEffectUber3_"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage during any Flask Effect", statOrderKey = "6301", statOrder = { 6301 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_shaper", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageBeltUber1"] = { type = "Prefix", affix = "Eldritch", "(16-20)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageBeltUber2"] = { type = "Prefix", affix = "Eldritch", "(21-25)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageBeltUber3___"] = { type = "Prefix", affix = "Eldritch", "(26-30)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 80, group = "PhysicalDamagePercent", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamageBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 68, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamageBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(16-20)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 75, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamageBeltUber3"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 80, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArmourDoubleArmourEffectUber1"] = { type = "Prefix", affix = "Eldritch", "(11-20)% chance when Hit for double Armour effect", statOrderKey = "4007", statOrder = { 4007 }, level = 75, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArmourDoubleArmourEffectUber2"] = { type = "Prefix", affix = "Eldritch", "(21-30)% chance when Hit for double Armour effect", statOrderKey = "4007", statOrder = { 4007 }, level = 80, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldFromBodyArmourUber1_"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Energy Shield from Body Armour", statOrderKey = "5826", statOrder = { 5826 }, level = 75, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldFromBodyArmourUber2"] = { type = "Prefix", affix = "The Shaper's", "(26-30)% increased Energy Shield from Body Armour", statOrderKey = "5826", statOrder = { 5826 }, level = 80, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalArrowUber1__"] = { type = "Prefix", affix = "The Shaper's", "Bow Attacks fire an additional Arrow", statOrderKey = "1067", statOrder = { 1067 }, level = 80, group = "AdditionalArrows", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonOnHitQuiverUber1_"] = { type = "Suffix", affix = "of the Elder", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrderKey = "2353,2361", statOrder = { 2353, 2361 }, level = 68, group = "PoisonDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonOnHitQuiverUber2"] = { type = "Suffix", affix = "of the Elder", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrderKey = "2353,2361", statOrder = { 2353, 2361 }, level = 75, group = "PoisonDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedOnHitQuiverUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 68, group = "BleedingDamage", weightKey = { "no_attack_mods", "quiver_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedOnHitQuiverUber2_"] = { type = "Suffix", affix = "of the Elder", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 75, group = "BleedingDamage", weightKey = { "no_attack_mods", "quiver_elder", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaimOnHitQuiverUber1"] = { type = "Suffix", affix = "of Shaping", "Attacks have 15% chance to Maim on Hit", statOrderKey = "5271", statOrder = { 5271 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaimOnHitQuiverUber2"] = { type = "Suffix", affix = "of Shaping", "Attacks have 20% chance to Maim on Hit", statOrderKey = "5271", statOrder = { 5271 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChancetoGainPhasingOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChancetoGainPhasingOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 75, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChancetoGainPhasingOnKillUber3_"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamagePerFrenzyChargeUber1"] = { type = "Prefix", affix = "Eldritch", "3 to 6 Cold Damage per Frenzy Charge", statOrderKey = "3447", statOrder = { 3447 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsColdQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsColdQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "(3-6)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FrenzyChargeOnHittingRareOrUniqueUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrderKey = "4498", statOrder = { 4498 }, level = 75, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumFireResistanceUber1"] = { type = "Prefix", affix = "Eldritch", "+1% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 75, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumFireResistanceUber2"] = { type = "Prefix", affix = "Eldritch", "+2% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 80, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumFireResistanceUber3_"] = { type = "Prefix", affix = "Eldritch", "+3% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 86, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumColdResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 75, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumColdResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 80, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumColdResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 86, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLightningResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLightningResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 80, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLightningResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 86, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumAllResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to all maximum Resistances", statOrderKey = "939", statOrder = { 939 }, level = 80, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumAllResistanceUber2__"] = { type = "Prefix", affix = "The Shaper's", "+2% to all maximum Resistances", statOrderKey = "939", statOrder = { 939 }, level = 85, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByCastOnDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 5 Cast when Damage Taken", statOrderKey = "74", statOrder = { 74 }, level = 68, group = "SupportedByTrigger", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLifeIncreasePercentShieldUber1"] = { type = "Prefix", affix = "Eldritch", "(3-6)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLifeIncreasePercentShieldUber2"] = { type = "Prefix", affix = "Eldritch", "(7-10)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DisplaySocketedGemsGetReducedReservationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 10% reduced Mana Reservation", statOrderKey = "244", statOrder = { 244 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DisplaySocketedGemsGetReducedReservationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 15% reduced Mana Reservation", statOrderKey = "244", statOrder = { 244 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlockAppliesToSpellsShieldUber1_"] = { type = "Suffix", affix = "of Shaping", "(30-40)% Chance to Block Spell Damage", statOrderKey = "505", statOrder = { 505 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlockAppliesToSpellsShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(41-50)% Chance to Block Spell Damage", statOrderKey = "505", statOrder = { 505 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockOnShieldUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 68, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockOnShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 75, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainArmourIfBlockedRecentlyUber1"] = { type = "Prefix", affix = "Eldritch", "+(500-650) Armour if you've Blocked Recently", statOrderKey = "3553", statOrder = { 3553 }, level = 68, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainArmourIfBlockedRecentlyUber2"] = { type = "Prefix", affix = "Eldritch", "+(651-800) Armour if you've Blocked Recently", statOrderKey = "3553", statOrder = { 3553 }, level = 75, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalBlockWith5NearbyEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrderKey = "3573", statOrder = { 3573 }, level = 68, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalBlockWith5NearbyEnemiesUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrderKey = "3573", statOrder = { 3573 }, level = 75, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainRandomChargeOnBlockUber1__"] = { type = "Suffix", affix = "of Shaping", "Gain an Endurance, Frenzy or Power charge when you Block", statOrderKey = "4523", statOrder = { 4523 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToDodgeIfBlockedRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(3-5)% chance to Dodge Attack Hits if you have Blocked Recently", statOrderKey = "4286", statOrder = { 4286 }, level = 68, group = "ChanceToDodgeIfBlockedRecently", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerBlockChanceUber1_"] = { type = "Prefix", affix = "Eldritch", "1% increased Damage per 1% Chance to Block Attack Damage", statOrderKey = "4215", statOrder = { 4215 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToChillAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrderKey = "4064", statOrder = { 4064 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToChillAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrderKey = "4064", statOrder = { 4064 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToShockAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrderKey = "6216", statOrder = { 6216 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToShockAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrderKey = "6216", statOrder = { 6216 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RecoverLifePercentOnBlockUber1_"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Life when you Block", statOrderKey = "2243", statOrder = { 2243 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RecoverManaPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of your maximum Mana when you Block", statOrderKey = "5289", statOrder = { 5289 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RecoverEnergyShieldPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Energy Shield when you Block", statOrderKey = "1672", statOrder = { 1672 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumTotemUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to maximum number of Summoned Totems", statOrderKey = "1502", statOrder = { 1502 }, level = 70, group = "AdditionalTotems", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByEnduranceChargeOnStunWeaponUber1"] = { type = "Prefix", affix = "", "Socketed Gems are Supported by Level 10 Endurance Charge on Melee Stun", statOrderKey = "242", statOrder = { 242 }, level = 68, group = "WeaponSupportUber", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByOnslaughtWeaponUber1"] = { type = "Prefix", affix = "", "Socketed Gems are Supported by Level 10 Onslaught", statOrderKey = "118", statOrder = { 118 }, level = 68, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "bow_elder", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByPowerChargeOnCritWeaponUber1"] = { type = "Prefix", affix = "", "Socketed Gems are Supported by Level 10 Power Charge On Critical Strike", statOrderKey = "124", statOrder = { 124 }, level = 68, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByFortifyWeaponUber1"] = { type = "Prefix", affix = "", "Socketed Gems are Supported by Level 1 Fortify", statOrderKey = "217", statOrder = { 217 }, level = 68, group = "WeaponSupportUber", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByArcaneSurgeWeaponUber1"] = { type = "Prefix", affix = "", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrderKey = "67", statOrder = { 67 }, level = 68, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "staff_shaper", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByInspirationWeaponUber1"] = { type = "Prefix", affix = "", "Socketed Gems are Supported by Level 1 Inspiration", statOrderKey = "215", statOrder = { 215 }, level = 68, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Melee Physical Damage", "(101-115)% increased Physical Damage", statOrderKey = "199,570", statOrder = { 199, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Melee Physical Damage", "(116-126)% increased Physical Damage", statOrderKey = "199,570", statOrder = { 199, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Melee Physical Damage", "(127-134)% increased Physical Damage", statOrderKey = "199,570", statOrder = { 199, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Brutality", "(101-115)% increased Physical Damage", statOrderKey = "73,570", statOrder = { 73, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Brutality", "(116-126)% increased Physical Damage", statOrderKey = "73,570", statOrder = { 73, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Brutality", "(127-134)% increased Physical Damage", statOrderKey = "73,570", statOrder = { 73, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Added Fire Damage", "(101-115)% increased Physical Damage", statOrderKey = "193,570", statOrder = { 193, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Added Fire Damage", "(116-126)% increased Physical Damage", statOrderKey = "193,570", statOrder = { 193, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 0, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Added Fire Damage", "(127-134)% increased Physical Damage", statOrderKey = "193,570", statOrder = { 193, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 0, 100, 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Ruthless", "(101-115)% increased Physical Damage", statOrderKey = "133,570", statOrder = { 133, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber2__"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Ruthless", "(116-126)% increased Physical Damage", statOrderKey = "133,570", statOrder = { 133, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Ruthless", "(127-134)% increased Physical Damage", statOrderKey = "133,570", statOrder = { 133, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Onslaught", "(101-115)% increased Physical Damage", statOrderKey = "118,570", statOrder = { 118, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Onslaught", "(116-126)% increased Physical Damage", statOrderKey = "118,570", statOrder = { 118, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Onslaught", "(127-134)% increased Physical Damage", statOrderKey = "118,570", statOrder = { 118, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun", "(101-115)% increased Physical Damage", statOrderKey = "242,570", statOrder = { 242, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun", "(116-126)% increased Physical Damage", statOrderKey = "242,570", statOrder = { 242, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", "(127-134)% increased Physical Damage", statOrderKey = "242,570", statOrder = { 242, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Fortify", "(101-115)% increased Physical Damage", statOrderKey = "217,570", statOrder = { 217, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Fortify", "(116-126)% increased Physical Damage", statOrderKey = "217,570", statOrder = { 217, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Fortify", "(127-134)% increased Physical Damage", statOrderKey = "217,570", statOrder = { 217, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(101-115)% increased Physical Damage", statOrderKey = "124,570", statOrder = { 124, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(116-126)% increased Physical Damage", statOrderKey = "124,570", statOrder = { 124, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(127-134)% increased Physical Damage", statOrderKey = "124,570", statOrder = { 124, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Iron Grip", "(101-115)% increased Physical Damage", statOrderKey = "106,570", statOrder = { 106, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Iron Grip", "(116-126)% increased Physical Damage", statOrderKey = "106,570", statOrder = { 106, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Iron Grip", "(127-134)% increased Physical Damage", statOrderKey = "106,570", statOrder = { 106, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 16 Faster Projectiles", "(101-115)% increased Physical Damage", statOrderKey = "209,570", statOrder = { 209, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 18 Faster Projectiles", "(116-126)% increased Physical Damage", statOrderKey = "209,570", statOrder = { 209, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are supported by Level 20 Faster Projectiles", "(127-134)% increased Physical Damage", statOrderKey = "209,570", statOrder = { 209, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Vicious Projectiles", "(101-115)% increased Physical Damage", statOrderKey = "120,570", statOrder = { 120, 570 }, level = 68, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Vicious Projectiles", "(116-126)% increased Physical Damage", statOrderKey = "120,570", statOrder = { 120, 570 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Vicious Projectiles", "(127-134)% increased Physical Damage", statOrderKey = "120,570", statOrder = { 120, 570 }, level = 80, group = "LocalPhysicalDamagePercent", weightKey = { "grants_2h_support", "no_physical_damage_mods", "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["SupportedByMeleeSplashDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Melee Splash", "(23-27)% increased Area Damage", statOrderKey = "202,1291", statOrder = { 202, 1291 }, level = 68, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["SupportedByMeleeSplashDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Melee Splash", "(28-32)% increased Area Damage", statOrderKey = "202,1291", statOrder = { 202, 1291 }, level = 75, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["SupportedByMeleeSplashDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Melee Splash", "(33-37)% increased Area Damage", statOrderKey = "202,1291", statOrder = { 202, 1291 }, level = 80, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["SupportedBySpiritStrikeAreaUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Ancestral Call", "(5-8)% increased Area of Effect", statOrderKey = "140,1140", statOrder = { 140, 1140 }, level = 68, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["SupportedBySpiritStrikeAreaUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Ancestral Call", "(9-12)% increased Area of Effect", statOrderKey = "140,1140", statOrder = { 140, 1140 }, level = 75, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["SupportedBySpiritStrikeAreaUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Ancestral Call", "(13-15)% increased Area of Effect", statOrderKey = "140,1140", statOrder = { 140, 1140 }, level = 80, group = "SupportedByMelee", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedMultistrikeUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Multistrike", "(17-19)% increased Attack Speed", statOrderKey = "208,734", statOrder = { 208, 734 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedMultistrikeUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Multistrike", "(20-21)% increased Attack Speed", statOrderKey = "208,734", statOrder = { 208, 734 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(17-19)% increased Attack Speed", statOrderKey = "200,734", statOrder = { 200, 734 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedFasterAttacksUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(20-21)% increased Attack Speed", statOrderKey = "200,734", statOrder = { 200, 734 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedOnslaughtUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Onslaught", "(8-10)% increased Attack Speed", statOrderKey = "118,734", statOrder = { 118, 734 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_elder", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedOnslaughtUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Onslaught", "(11-12)% increased Attack Speed", statOrderKey = "118,734", statOrder = { 118, 734 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_elder", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(8-10)% increased Attack Speed", statOrderKey = "200,734", statOrder = { 200, 734 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_shaper", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedFasterAttacksUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(11-12)% increased Attack Speed", statOrderKey = "200,734", statOrder = { 200, 734 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "wand_shaper", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(17-19)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrderKey = "734,3992", statOrder = { 734, 3992 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(20-21)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrderKey = "734,3992", statOrder = { 734, 3992 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(17-19)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "734,3733", statOrder = { 734, 3733 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(20-21)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "734,3733", statOrder = { 734, 3733 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrderKey = "734,3992", statOrder = { 734, 3992 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_shaper", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(11-12)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrderKey = "734,3992", statOrder = { 734, 3992 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_shaper", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(8-10)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "734,3733", statOrder = { 734, 3733 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(11-12)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrderKey = "734,3733", statOrder = { 734, 3733 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["CriticalStrikeChanceSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(22-25)% increased Critical Strike Chance", statOrderKey = "103,786", statOrder = { 103, 786 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "grants_crit_chance_support", }, }, + ["CriticalStrikeChanceSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(26-29)% increased Critical Strike Chance", statOrderKey = "103,786", statOrder = { 103, 786 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "grants_crit_chance_support", }, }, + ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "(22-25)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "786,4138", statOrder = { 786, 4138 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(26-29)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "786,4138", statOrder = { 786, 4138 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["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", statOrderKey = "786,4162", statOrder = { 786, 4162 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["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", statOrderKey = "786,4162", statOrder = { 786, 4162 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["CriticalMultiplierSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Increased Critical Damage", "+(22-25)% to Global Critical Strike Multiplier", statOrderKey = "211,810", statOrder = { 211, 810 }, level = 68, group = "CriticalStrikeMultiplier", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalMultiplierSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Increased Critical Damage", "+(26-29)% to Global Critical Strike Multiplier", statOrderKey = "211,810", statOrder = { 211, 810 }, level = 75, group = "CriticalStrikeMultiplier", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalMultiplierSupportedTwoHandedUber1"] = { type = "Suffix", affix = "of Shaping", "+(22-25)% to Global Critical Strike Multiplier", "(5-8)% chance to gain a Power Charge on Critical Strike", statOrderKey = "810,1093", statOrder = { 810, 1093 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalMultiplierSupportedTwoHandedUber2"] = { type = "Suffix", affix = "of Shaping", "+(26-29)% to Global Critical Strike Multiplier", "(9-10)% chance to gain a Power Charge on Critical Strike", statOrderKey = "810,1093", statOrder = { 810, 1093 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["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", statOrderKey = "213,4319", statOrder = { 213, 4319 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["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", statOrderKey = "213,4319", statOrder = { 213, 4319 }, level = 75, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["ChanceToMaimUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Maim", "15% chance to Maim on Hit", statOrderKey = "111,5158", statOrder = { 111, 5158 }, level = 68, group = "LocalChanceToMaim", weightKey = { "grants_2h_support", "no_attack_mods", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["ChanceToMaimUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Maim", "20% chance to Maim on Hit", statOrderKey = "111,5158", statOrder = { 111, 5158 }, level = 75, group = "LocalChanceToMaim", weightKey = { "grants_2h_support", "no_attack_mods", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, }, + ["ChanceToPoisonUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "15% chance to Poison on Hit", statOrderKey = "123,5167", statOrder = { 123, 5167 }, level = 68, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["ChanceToPoisonUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "20% chance to Poison on Hit", statOrderKey = "123,5167", statOrder = { 123, 5167 }, level = 75, group = "LocalChanceToPoisonOnHit", weightKey = { "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["ChanceToBleedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "10% chance to cause Bleeding on Hit", statOrderKey = "78,1686", statOrder = { 78, 1686 }, level = 68, group = "LocalChanceToBleed", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["ChanceToBleedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "15% chance to cause Bleeding on Hit", statOrderKey = "78,1686", statOrder = { 78, 1686 }, level = 75, group = "LocalChanceToBleed", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["PhysicalAddedAsFireUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsFireUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 80, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsColdUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsColdUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsColdUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 80, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsLightningUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsLightningUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsLightningUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 80, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["OnslaugtOnKillUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2570", statOrder = { 2570 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["OnslaugtOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2570", statOrder = { 2570 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["OnslaugtOnKillUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2570", statOrder = { 2570 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["UnholyMightOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2567", statOrder = { 2567 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["UnholyMightOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2567", statOrder = { 2567 }, level = 75, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["UnholyMightOnKillUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2567", statOrder = { 2567 }, level = 84, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlindOnHitUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 68, group = "BlindOnHit", weightKey = { "no_attack_mods", "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "quiver_shaper", "axe_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["BlindOnHitUber2"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 75, group = "BlindOnHit", weightKey = { "no_attack_mods", "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "quiver_shaper", "axe_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["BlindOnHitUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 81, group = "BlindOnHit", weightKey = { "no_attack_mods", "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "quiver_shaper", "axe_elder", "claw_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["BlindOnHitShaperUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 68, group = "BlindOnHit", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["BlindOnHitShaperUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 75, group = "BlindOnHit", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["BlindOnHitShaperUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 81, group = "BlindOnHit", weightKey = { "no_attack_mods", "quiver_shaper", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["BlockWhileDualWieldingUber1"] = { type = "Suffix", affix = "of Shaping", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlockWhileDualWieldingUber2"] = { type = "Suffix", affix = "of Shaping", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, level = 75, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlockWhileDualWieldingUber3_"] = { type = "Suffix", affix = "of Shaping", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, level = 80, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageWhileDualWieldingUber1"] = { type = "Suffix", affix = "of the Elder", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrderKey = "609", statOrder = { 609 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["PhysicalDamageWhileDualWieldingUber2"] = { type = "Suffix", affix = "of the Elder", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrderKey = "609", statOrder = { 609 }, level = 75, group = "DualWieldingPhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["PhysicalDamageWhileDualWieldingUber3"] = { type = "Suffix", affix = "of the Elder", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrderKey = "609", statOrder = { 609 }, level = 80, group = "DualWieldingPhysicalDamage", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["ElementalPenetrationWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (5-6)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 68, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalPenetrationWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (7-8)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 75, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalPenetrationWeaponUber3"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (9-10)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 83, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalPenetrationWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 4% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 68, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalPenetrationWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 5% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 75, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalPenetrationWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 6% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 83, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalPenetrationTwoWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (7-8)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 68, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalPenetrationTwoWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (9-10)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 75, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalPenetrationTwoWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (11-12)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 83, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponSocketedAttacksDamageFinalUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Attack Damage", statOrderKey = "260", statOrder = { 260 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponSocketedAttacksDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Attack Damage", statOrderKey = "260", statOrder = { 260 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["WeaponSocketedSpellsDamageFinalUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Spell Damage", statOrderKey = "275", statOrder = { 275 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["WeaponSocketedSpellsDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Spell Damage", statOrderKey = "275", statOrder = { 275 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "no_caster_mods", "staff_shaper", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["ChanceForPoisonDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrderKey = "5082", statOrder = { 5082 }, 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 = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceForBleedDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrderKey = "5081", statOrder = { 5081 }, 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 = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageConvertedToChaosUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1212", statOrder = { 1212 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageConvertedToChaosUber2"] = { type = "Suffix", affix = "of the Elder", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1212", statOrder = { 1212 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageConvertedToChaosUber3"] = { type = "Suffix", affix = "of the Elder", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1212", statOrder = { 1212 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamagePerStrengthUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "3721", statOrder = { 3721 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["AddedFireDamagePerStrengthTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "3721", statOrder = { 3721 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["AddedColdDamagePerDexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "3751", statOrder = { 3751 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "bow_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["AddedColdDamagePerDexterityTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "3751", statOrder = { 3751 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_shaper", "2h_axe_shaper", "default", }, weightVal = { 0, 0, 200, 200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["AddedLightningDamagePerIntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "3723", statOrder = { 3723 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["AddedLightningDamagePerIntelligenceTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "3723", statOrder = { 3723 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 200, 200, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["SupportedByCastOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Cast On Critical Strike", statOrderKey = "203", statOrder = { 203 }, level = 68, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByCastOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Cast On Critical Strike", statOrderKey = "203", statOrder = { 203 }, level = 75, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByCastOnMeleeKillUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast On Melee Kill", statOrderKey = "75", statOrder = { 75 }, level = 68, group = "WeaponSupportUber", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByCastOnMeleeKillUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast On Melee Kill", statOrderKey = "75", statOrder = { 75 }, level = 75, group = "WeaponSupportUber", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByCastWhileChannellingUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast While Channelling", statOrderKey = "76", statOrder = { 76 }, level = 68, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByCastWhileChannellingUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast While Channelling", statOrderKey = "76", statOrder = { 76 }, level = 75, group = "WeaponSupportUber", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CullingStrikeUber1"] = { type = "Suffix", affix = "of the Elder", "Culling Strike", statOrderKey = "1295", statOrder = { 1295 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 75, group = "LocalWeaponRangeUber", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["MeleeWeaponRangeUber2"] = { type = "Suffix", affix = "of the Elder", "+2 to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 85, group = "LocalWeaponRangeUber", weightKey = { "no_attack_mods", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_attack_mod", "has_caster_mod", "default", }, weightMultiplierVal = { 100, 65, 100 }, tags = { "has_attack_mod", }, }, + ["AreaOfEffectTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectTwoHandedWeaponUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "(3-6)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalArrowsUber1"] = { type = "Suffix", affix = "of the Elder", "Skills fire an additional Projectile", statOrderKey = "1066", statOrder = { 1066 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalPierceRangedUber1"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce an additional Target", statOrderKey = "1064", statOrder = { 1064 }, level = 68, group = "Pierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalPierceRangedUber2"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce 2 additional Targets", statOrderKey = "1064", statOrder = { 1064 }, level = 75, group = "Pierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamageOnWeaponControlledDestructionUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Controlled Destruction", "(45-52)% increased Spell Damage", statOrderKey = "241,562", statOrder = { 241, 562 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponControlledDestructionUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Controlled Destruction", "(53-56)% increased Spell Damage", statOrderKey = "241,562", statOrder = { 241, 562 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 200, 200, 200, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponControlledDestructionUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Controlled Destruction", "(57-60)% increased Spell Damage", statOrderKey = "241,562", statOrder = { 241, 562 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 100, 100, 100, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponEfficacyUber1_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Efficacy", "(45-52)% increased Spell Damage", statOrderKey = "86,562", statOrder = { 86, 562 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponEfficacyUber2"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Efficacy", "(53-56)% increased Spell Damage", statOrderKey = "86,562", statOrder = { 86, 562 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 0, 200, 200, 200, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponEfficacyUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Efficacy", "(57-60)% increased Spell Damage", statOrderKey = "86,562", statOrder = { 86, 562 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_caster_mods", "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 0, 100, 100, 100, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamageOnWeaponArcaneSurgeUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Arcane Surge", "(67-78)% increased Spell Damage", statOrderKey = "67,562", statOrder = { 67, 562 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", "grants_2h_support", }, }, + ["SpellDamageOnWeaponArcaneSurgeUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Arcane Surge", "(79-83)% increased Spell Damage", statOrderKey = "67,562", statOrder = { 67, 562 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", "grants_2h_support", }, }, + ["SpellDamageOnWeaponArcaneSurgeUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Arcane Surge", "(84-87)% increased Spell Damage", statOrderKey = "67,562", statOrder = { 67, 562 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", "grants_2h_support", }, }, + ["SpellDamageOnWeaponReducedManaUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Inspiration", "(67-78)% increased Spell Damage", statOrderKey = "215,562", statOrder = { 215, 562 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", "grants_2h_support", }, }, + ["SpellDamageOnWeaponReducedManaUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Inspiration", "(79-83)% increased Spell Damage", statOrderKey = "215,562", statOrder = { 215, 562 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", "grants_2h_support", }, }, + ["SpellDamageOnWeaponReducedManaUber3__"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Inspiration", "(84-87)% increased Spell Damage", statOrderKey = "215,562", statOrder = { 215, 562 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", "grants_2h_support", }, }, + ["SpellDamageOnWeaponPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(67-78)% increased Spell Damage", statOrderKey = "124,562", statOrder = { 124, 562 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", "grants_2h_support", }, }, + ["SpellDamageOnWeaponPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(79-83)% increased Spell Damage", statOrderKey = "124,562", statOrder = { 124, 562 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", "grants_2h_support", }, }, + ["SpellDamageOnWeaponPowerChargeOnCritUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(84-87)% increased Spell Damage", statOrderKey = "124,562", statOrder = { 124, 562 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "grants_2h_support", "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", "grants_2h_support", }, }, + ["ElementalDamagePrefixOnWeaponElementalFocusUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Elemental Focus", "(45-52)% increased Elemental Damage", statOrderKey = "87,1240", statOrder = { 87, 1240 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamagePrefixOnWeaponElementalFocusUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Elemental Focus", "(53-56)% increased Elemental Damage", statOrderKey = "87,1240", statOrder = { 87, 1240 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 0, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamagePrefixOnWeaponElementalFocusUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Elemental Focus", "(57-60)% increased Elemental Damage", statOrderKey = "87,1240", statOrder = { 87, 1240 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePrefixOnWeaponFirePenetrationUber1"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 16 Fire Penetration", "(45-52)% increased Fire Damage", statOrderKey = "94,686", statOrder = { 94, 686 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_elder", "wand_elder", "default", }, weightVal = { 0, 0, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePrefixOnWeaponFirePenetrationUber2_"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 18 Fire Penetration", "(53-56)% increased Fire Damage", statOrderKey = "94,686", statOrder = { 94, 686 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_elder", "wand_elder", "default", }, weightVal = { 0, 0, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePrefixOnWeaponFirePenetrationUber3"] = { type = "Prefix", affix = "Eldritch", "Socketed Gems are Supported by Level 20 Fire Penetration", "(57-60)% increased Fire Damage", statOrderKey = "94,686", statOrder = { 94, 686 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_elder", "wand_elder", "default", }, weightVal = { 0, 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePrefixOnWeaponColdPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Cold Penetration", "(45-52)% increased Cold Damage", statOrderKey = "232,693", statOrder = { 232, 693 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePrefixOnWeaponColdPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cold Penetration", "(53-56)% increased Cold Damage", statOrderKey = "232,693", statOrder = { 232, 693 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePrefixOnWeaponColdPenetrationUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cold Penetration", "(57-60)% increased Cold Damage", statOrderKey = "232,693", statOrder = { 232, 693 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamagePrefixOnWeaponLightningPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Lightning Penetration", "(45-52)% increased Lightning Damage", statOrderKey = "110,702", statOrder = { 110, 702 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamagePrefixOnWeaponLightningPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Lightning Penetration", "(53-56)% increased Lightning Damage", statOrderKey = "110,702", statOrder = { 110, 702 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamagePrefixOnWeaponLightningPenetrationUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Lightning Penetration", "(57-60)% increased Lightning Damage", statOrderKey = "110,702", statOrder = { 110, 702 }, level = 80, group = "WeaponCasterDamagePrefix", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedCastSpeedSpellEchoUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Echo", "(15-17)% increased Cast Speed", statOrderKey = "117,767", statOrder = { 117, 767 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedSpellEchoUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Echo", "(18-20)% increased Cast Speed", statOrderKey = "117,767", statOrder = { 117, 767 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedFasterCastingUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(15-17)% increased Cast Speed", statOrderKey = "220,767", statOrder = { 220, 767 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedFasterCastingUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(18-20)% increased Cast Speed", statOrderKey = "220,767", statOrder = { 220, 767 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber1"] = { type = "Suffix", affix = "of the Elder", "(15-17)% increased Cast Speed", "(15-25)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "767,1151", statOrder = { 767, 1151 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber2"] = { type = "Suffix", affix = "of the Elder", "(18-20)% increased Cast Speed", "(26-35)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "767,1151", statOrder = { 767, 1151 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(15-17)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrderKey = "767,3972", statOrder = { 767, 3972 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["IncreasedCastSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(18-20)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrderKey = "767,3972", statOrder = { 767, 3972 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["CriticalStrikeChanceSpellsSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(60-74)% increased Critical Strike Chance for Spells", statOrderKey = "103,781", statOrder = { 103, 781 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", "grants_crit_chance_support", }, }, + ["CriticalStrikeChanceSpellsSupportedUber2__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(75-82)% increased Critical Strike Chance for Spells", statOrderKey = "103,781", statOrder = { 103, 781 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "grants_crit_chance_support", "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", "grants_crit_chance_support", }, }, + ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "(60-74)% increased Critical Strike Chance for Spells", "10% chance to gain a Power Charge on Critical Strike", statOrderKey = "781,1093", statOrder = { 781, 1093 }, level = 68, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber2"] = { type = "Suffix", affix = "of Shaping", "(75-82)% increased Critical Strike Chance for Spells", "10% chance to gain a Power Charge on Critical Strike", statOrderKey = "781,1093", statOrder = { 781, 1093 }, level = 75, group = "SpellCriticalStrikeChanceIncrease", weightKey = { "no_caster_mods", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["ChanceToFreezeShockIgniteProliferationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Elemental Proliferation", "(5-7)% chance to Freeze, Shock and Ignite", statOrderKey = "197,1982", statOrder = { 197, 1982 }, level = 68, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToFreezeShockIgniteProliferationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Elemental Proliferation", "(8-10)% chance to Freeze, Shock and Ignite", statOrderKey = "197,1982", statOrder = { 197, 1982 }, level = 75, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToFreezeShockIgniteUnboundAilmentsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Unbound Ailments", "(5-7)% chance to Freeze, Shock and Ignite", statOrderKey = "146,1982", statOrder = { 146, 1982 }, level = 68, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_elder", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToFreezeShockIgniteUnboundAilmentsUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Unbound Ailments", "(8-10)% chance to Freeze, Shock and Ignite", statOrderKey = "146,1982", statOrder = { 146, 1982 }, level = 75, group = "ChanceToFreezeShockIgnite", weightKey = { "no_caster_mods", "sceptre_elder", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamageWeaponSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Lesser Poison", "(19-23)% increased Damage with Poison", statOrderKey = "239,2361", statOrder = { 239, 2361 }, level = 68, group = "PoisonDamage", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamageWeaponSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Lesser Poison", "(24-26)% increased Damage with Poison", statOrderKey = "239,2361", statOrder = { 239, 2361 }, level = 75, group = "PoisonDamage", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDurationWeaponSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Poison", "(6-9)% increased Poison Duration", statOrderKey = "123,2350", statOrder = { 123, 2350 }, level = 68, group = "PoisonDuration", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDurationWeaponSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Poison", "(10-14)% increased Poison Duration", statOrderKey = "123,2350", statOrder = { 123, 2350 }, level = 75, group = "PoisonDuration", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByIncreasedAreaOfEffectDamageUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(23-27)% increased Area Damage", statOrderKey = "66,1291", statOrder = { 66, 1291 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByIncreasedAreaOfEffectDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(28-32)% increased Area Damage", statOrderKey = "66,1291", statOrder = { 66, 1291 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByIncreasedAreaOfEffectDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(33-37)% increased Area Damage", statOrderKey = "66,1291", statOrder = { 66, 1291 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedBySpellCascadeAreaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Spell Cascade", "(5-8)% increased Area of Effect", statOrderKey = "138,1140", statOrder = { 138, 1140 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SupportedBySpellCascadeAreaUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Spell Cascade", "(9-12)% increased Area of Effect", statOrderKey = "138,1140", statOrder = { 138, 1140 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SupportedBySpellCascadeAreaUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Spell Cascade", "(13-15)% increased Area of Effect", statOrderKey = "138,1140", statOrder = { 138, 1140 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "no_caster_mods", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SupportedByLesserMultipleProjectilesDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Lesser Multiple Projectiles", "(15-20)% increased Projectile Damage", statOrderKey = "224,1255", statOrder = { 224, 1255 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByLesserMultipleProjectilesDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Lesser Multiple Projectiles", "(21-25)% increased Projectile Damage", statOrderKey = "224,1255", statOrder = { 224, 1255 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByLesserMultipleProjectilesDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Lesser Multiple Projectiles", "(26-30)% increased Projectile Damage", statOrderKey = "224,1255", statOrder = { 224, 1255 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByVolleySpeedUber1__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Volley", "(15-18)% increased Projectile Speed", statOrderKey = "119,1068", statOrder = { 119, 1068 }, level = 68, group = "SupportedByAreaProjectile", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByVolleySpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Volley", "(19-22)% increased Projectile Speed", statOrderKey = "119,1068", statOrder = { 119, 1068 }, level = 75, group = "SupportedByAreaProjectile", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SupportedByVolleySpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Volley", "(23-25)% increased Projectile Speed", statOrderKey = "119,1068", statOrder = { 119, 1068 }, level = 80, group = "SupportedByAreaProjectile", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamagePercentAddedAsChaosUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-6)% of Elemental Damage as Extra Chaos Damage", statOrderKey = "1193", statOrder = { 1193 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamagePercentAddedAsChaosUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-8)% of Elemental Damage as Extra Chaos Damage", statOrderKey = "1193", statOrder = { 1193 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamagePercentAddedAsChaosStaffUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-12)% of Elemental Damage as Extra Chaos Damage", statOrderKey = "1193", statOrder = { 1193 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamagePercentAddedAsChaosStaffUber2__"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15)% of Elemental Damage as Extra Chaos Damage", statOrderKey = "1193", statOrder = { 1193 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DisplaySocketedSkillsChainUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems Chain 1 additional times", statOrderKey = "255", statOrder = { 255 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_shaper", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellAddedPhysicalDamageWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (22-31) to (46-53) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageWeaponUber2_"] = { type = "Prefix", affix = "Eldritch", "Adds (28-37) to (55-64) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageWeaponUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (32-44) to (66-76) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageTwoHandWeaponUber1_"] = { type = "Prefix", affix = "Eldritch", "Adds (37-49) to (75-86) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (44-58) to (88-103) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (60-73) to (108-122) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (22-31) to (46-53) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageWeaponUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (28-37) to (55-64) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageWeaponUber3_"] = { type = "Prefix", affix = "Eldritch", "Adds (32-44) to (66-76) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageTwoHandWeaponUber1"] = { type = "Prefix", affix = "Eldritch", "Adds (37-49) to (75-86) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "Eldritch", "Adds (44-58) to (88-103) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "Eldritch", "Adds (60-73) to (108-122) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 1000, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamagePer16StrengthUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 16 Strength", statOrderKey = "6309", statOrder = { 6309 }, level = 68, group = "SpellDamagePerStrength", weightKey = { "no_caster_mods", "sceptre_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamagePer16DexterityUber1__"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 16 Dexterity", statOrderKey = "6307", statOrder = { 6307 }, level = 68, group = "SpellDamagePerDexterity", weightKey = { "no_caster_mods", "rune_dagger_elder", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamagePer16IntelligenceUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 16 Intelligence", statOrderKey = "6308", statOrder = { 6308 }, level = 68, group = "SpellDamagePerIntelligence", weightKey = { "no_caster_mods", "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamagePer10StrengthUber1"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 10 Strength", statOrderKey = "6306", statOrder = { 6306 }, level = 68, group = "SpellDamagePerStrength", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 400, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["SpellDamagePer10IntelligenceUber1_"] = { type = "Prefix", affix = "Eldritch", "1% increased Spell Damage per 10 Intelligence", statOrderKey = "1917", statOrder = { 1917 }, level = 68, group = "SpellDamagePerIntelligence", weightKey = { "no_caster_mods", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 400, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["MaximumEnduranceChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Endurance Charges", statOrderKey = "1076", statOrder = { 1076 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Frenzy Charges", statOrderKey = "1078", statOrder = { 1078 }, level = 84, group = "MaximumFrenzyCharges", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Power Charges", statOrderKey = "1080", statOrder = { 1080 }, level = 84, group = "IncreasedMaximumPowerCharges", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["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", statOrderKey = "502,3445", statOrder = { 502, 3445 }, level = 68, group = "PowerChargeOnBlock", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["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", statOrderKey = "502,4165", statOrder = { 502, 4165 }, level = 68, group = "CriticalStrikeMultiplierIfBlockedRecently", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlockingBlocksSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(40-60)% Chance to Block Spell Damage", statOrderKey = "502,505", statOrder = { 502, 505 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockStaffUber1_"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(8-12)% Chance to Block Spell Damage", statOrderKey = "502,510", statOrder = { 502, 510 }, level = 68, group = "SpellBlockPercentage", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["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", statOrderKey = "810,4139", statOrder = { 810, 4139 }, level = 68, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PowerChargeOnManaSpentUber1"] = { type = "Suffix", affix = "of Shaping", "Gain a Power Charge after Spending a total of 200 Mana", statOrderKey = "5098", statOrder = { 5098 }, level = 68, group = "PowerChargeOnManaSpent", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedDamagePerPowerChargeUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Damage per Power Charge", statOrderKey = "4220", statOrder = { 4220 }, level = 68, group = "AllDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileDamagePerEnemyPiercedUber1_"] = { type = "Suffix", affix = "of Shaping", "Projectiles deal (20-30)% increased Damage for each Enemy Pierced", statOrderKey = "6113", statOrder = { 6113 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreaseProjectileAttackDamagePerAccuracyUber1"] = { type = "Suffix", affix = "of the Elder", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrderKey = "3472", statOrder = { 3472 }, level = 68, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { "no_attack_mods", "bow_elder", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceAgainstPoisonedEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(80-100)% increased Critical Strike Chance against Poisoned Enemies", statOrderKey = "2473", statOrder = { 2473 }, level = 68, group = "CriticalStrikeChanceAgainstPoisonedEnemies", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeMultiplierAgainstEnemiesOnFullLifeUber1"] = { type = "Suffix", affix = "of Shaping", "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrderKey = "2617", statOrder = { 2617 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["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", statOrderKey = "4465", statOrder = { 4465 }, level = 68, group = "GainRareMonsterModsOnKill", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnemiesHaveReducedEvasionIfHitRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies have 20% reduced Evasion if you have Hit them Recently", statOrderKey = "4359", statOrder = { 4359 }, level = 68, group = "EnemiesHaveReducedEvasionIfHitRecently", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeGainPerBlindedEnemyHitUber1"] = { type = "Suffix", affix = "of the Elder", "+(35-50) Life gained for each Blinded Enemy Hit by this Weapon", statOrderKey = "5155", statOrder = { 5155 }, level = 68, group = "LifeGainPerBlindedEnemyHit", weightKey = { "no_attack_mods", "claw_elder", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalChanceAgainstBlindedEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance against Blinded Enemies", statOrderKey = "2591", statOrder = { 2591 }, level = 68, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["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", statOrderKey = "1376,3569", statOrder = { 1376, 3569 }, level = 68, group = "AdditionalBlockChancePerEnduranceCharge", weightKey = { "sword_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AccuracyRatingPerFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "5% increased Accuracy Rating per Frenzy Charge", "(20-25)% chance to gain a Frenzy Charge when you Block", statOrderKey = "1307,4018", statOrder = { 1307, 4018 }, level = 68, group = "AccuracyRatingPerFrenzyCharge", weightKey = { "no_attack_mods", "sword_shaper", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementSkillsCostNoManaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Movement Skills have no Mana Cost", statOrderKey = "271", statOrder = { 271 }, level = 68, group = "MovementSkillsCostNoMana", weightKey = { "2h_sword_shaper", "sword_shaper", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainEnduranceChargeWhileStationaryUber1"] = { type = "Suffix", affix = "of the Elder", "Gain an Endurance Charge every 4 seconds while Stationary", statOrderKey = "6015", statOrder = { 6015 }, level = 68, group = "GainEnduranceChargeWhileStationary", weightKey = { "2h_sword_elder", "sword_elder", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CullingStrikeOnBleedingEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(30-49)% increased Physical Damage", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrderKey = "570,5092", statOrder = { 570, 5092 }, level = 68, group = "CullingStrikeOnBleedingEnemies", weightKey = { "no_attack_mods", "2h_axe_elder", "axe_elder", "default", }, weightVal = { 0, 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainEnduranceChargeOnHittingBleedingEnemyUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", statOrderKey = "4014", statOrder = { 4014 }, level = 68, group = "GainEnduranceChargeOnHittingBleedingEnemy", weightKey = { "axe_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainEnduranceChargeOnCritUber1"] = { type = "Suffix", affix = "of Shaping", "(15-20)% increased Critical Strike Chance", "(5-10)% chance to gain an Endurance Charge on Critical Strike", statOrderKey = "786,1083", statOrder = { 786, 1083 }, level = 68, group = "GainEnduranceChargeOnCrit", weightKey = { "2h_axe_shaper", "axe_shaper", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "4138", statOrder = { 4138 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "axe_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnemiesExplodeOnDeathDealingFireUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrderKey = "1886", statOrder = { 1886 }, level = 68, group = "EnemiesExplodeOnDeath", weightKey = { "2h_mace_shaper", "mace_shaper", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainFortifyOnStunChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-20)% chance to gain Fortify when you Stun an Enemy with Melee Damage", statOrderKey = "4012", statOrder = { 4012 }, level = 68, group = "GainFortifyOnStunChance", weightKey = { "no_attack_mods", "mace_shaper", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectPer50StrengthUber1"] = { type = "Suffix", affix = "of the Elder", "3% increased Area of Effect per 50 Strength", statOrderKey = "3629", statOrder = { 3629 }, level = 68, group = "AreaOfEffectPerStrength", weightKey = { "mace_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectIfStunnedEnemyRecentlyUber1___"] = { type = "Suffix", affix = "of the Elder", "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrderKey = "3626", statOrder = { 3626 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_elder", "mace_elder", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeWeaponRangeIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "+(1-2) to Melee Strike Range if you have Killed Recently", statOrderKey = "5866", statOrder = { 5866 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "no_attack_mods", "2h_sword_elder", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementSkillsFortifyOnHitChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Melee Movement Skills have (30-50)% chance to Fortify on Hit", statOrderKey = "5851", statOrder = { 5851 }, level = 68, group = "MovementSkillsFortifyOnHitChance", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainEnduranceChargeOnTauntingEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy", statOrderKey = "4016", statOrder = { 4016 }, level = 68, group = "GainEnduranceChargeOnTauntingEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RemoveBleedingOnWarcryUber1"] = { type = "Suffix", affix = "of the Elder", "Removes Bleeding when you use a Warcry", statOrderKey = "6179", statOrder = { 6179 }, level = 68, group = "RemoveBleedingOnWarcry", weightKey = { "2h_axe_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectPerEnduranceChargeUber1"] = { type = "Suffix", affix = "of the Elder", "5% increased Area of Effect per Endurance Charge", statOrderKey = "3631", statOrder = { 3631 }, level = 68, group = "AreaOfEffectPerEnduranceCharge", weightKey = { "2h_mace_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunDurationAndThresholdUber1"] = { type = "Suffix", affix = "of Shaping", "(20-30)% reduced Enemy Stun Threshold", "(20-30)% increased Stun Duration on Enemies", statOrderKey = "837,1123", statOrder = { 837, 1123 }, level = 68, group = "StunDurationAndThreshold", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageAddedAsRandomElementUber1"] = { type = "Suffix", affix = "of Shaping", "Gain (7-9)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "2116", statOrder = { 2116 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageAddedAsRandomElementUber2"] = { type = "Suffix", affix = "of Shaping", "Gain (10-12)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "2116", statOrder = { 2116 }, level = 75, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageAddedAsRandomElementUber3"] = { type = "Suffix", affix = "of Shaping", "Gain (13-15)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "2116", statOrder = { 2116 }, level = 80, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "sceptre_shaper", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrderKey = "342", statOrder = { 342 }, level = 20, group = "GrantedSkill", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrderKey = "340", statOrder = { 340 }, level = 20, group = "GrantedSkill", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrderKey = "356", statOrder = { 356 }, level = 20, group = "GrantedSkill", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrderKey = "343", statOrder = { 343 }, level = 20, group = "GrantedSkill", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedMinionGemLevelDelve"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Minion Gems", statOrderKey = "44", statOrder = { 44 }, level = 60, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumMinionCountZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrderKey = "1412", statOrder = { 1412 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumMinionCountSkeletonDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrderKey = "1414", statOrder = { 1414 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumMinionCountSpectreDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Spectres", statOrderKey = "1413", statOrder = { 1413 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageDelve"] = { type = "Suffix", affix = "of the Underground", "Minions deal (25-35)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 60, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumMinionCountAmuletZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrderKey = "1412", statOrder = { 1412 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumMinionCountAmuletSkeletonDelve__"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrderKey = "1414", statOrder = { 1414 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedManaReservationsCostDelve_"] = { type = "Suffix", affix = "of the Underground", "5% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 60, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedAuraLevelDelve"] = { type = "Suffix", affix = "of the Underground", "+2 to Level of Socketed Aura Gems", statOrderKey = "45", statOrder = { 45 }, level = 60, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedPhysicalDamageTakenDelve"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction", statOrderKey = "1519", statOrder = { 1519 }, level = 60, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedingDamageChanceDelve__"] = { type = "Suffix", affix = "of the Underground", "Attacks have 25% chance to cause Bleeding", "(30-50)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 60, group = "BleedingDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CorruptedBloodImmunityDelve"] = { type = "Suffix", affix = "of the Underground", "Corrupted Blood cannot be inflicted on you", statOrderKey = "3949", statOrder = { 3949 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DoubleDamageChanceDelve"] = { type = "Suffix", affix = "of the Underground", "10% chance to deal Double Damage", statOrderKey = "3992", statOrder = { 3992 }, level = 60, group = "DoubleDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellAddedPhysicalDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrderKey = "569,724", statOrder = { 569, 724 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellAddedPhysicalDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (15-20) to (30-35) Physical Damage to Spells", statOrderKey = "569,724", statOrder = { 569, 724 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitLevelVulnerabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Vulnerability on Hit", statOrderKey = "1717", statOrder = { 1717 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched as Life", statOrderKey = "960", statOrder = { 960 }, level = 60, group = "PhysicalDamageLifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageTakenAsFireDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["MaximumFireResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 60, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Fire Damage taken", statOrderKey = "1490", statOrder = { 1490 }, level = 60, group = "FireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (18-24) to (36-42) Fire Damage", statOrderKey = "686,689", statOrder = { 686, 689 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (27-36) to (55-64) Fire Damage", statOrderKey = "686,689", statOrder = { 686, 689 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellAddedFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (14-20) to (29-34) Fire Damage to Spells", statOrderKey = "686,725", statOrder = { 686, 725 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellAddedFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (20-26) to (39-46) Fire Damage to Spells", statOrderKey = "686,725", statOrder = { 686, 725 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitLevelFlammabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Flammability on Hit", statOrderKey = "1725", statOrder = { 1725 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched as Life", statOrderKey = "962", statOrder = { 962 }, level = 60, group = "FireDamageLifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageTakenAsColdDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["MaximumColdResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 60, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Cold Damage taken", statOrderKey = "2578", statOrder = { 2578 }, level = 60, group = "ColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalColdDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (15-20) to (30-35) Cold Damage", statOrderKey = "693,696", statOrder = { 693, 696 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (22-30) to (45-52) Cold Damage", statOrderKey = "693,696", statOrder = { 693, 696 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellAddedColdDamageHybridDelve_"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (12-16) to (24-28) Cold Damage to Spells", statOrderKey = "693,726", statOrder = { 693, 726 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellAddedColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (18-24) to (36-42) Cold Damage to Spells", statOrderKey = "693,726", statOrder = { 693, 726 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitLevelFrostbiteDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Frostbite on Hit", statOrderKey = "1726", statOrder = { 1726 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched as Life", statOrderKey = "964", statOrder = { 964 }, level = 60, group = "ColdDamageLifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageTakenAsLightningDelve_"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["MaximumLightningResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 60, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Lightning Damage taken", statOrderKey = "2577", statOrder = { 2577 }, level = 60, group = "LightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-5) to (63-66) Lightning Damage", statOrderKey = "702,705", statOrder = { 702, 705 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-8) to (95-100) Lightning Damage", statOrderKey = "702,705", statOrder = { 702, 705 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellAddedLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (1-4) to (50-53) Lightning Damage to Spells", statOrderKey = "702,727", statOrder = { 702, 727 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellAddedLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-6) to (76-80) Lightning Damage to Spells", statOrderKey = "702,727", statOrder = { 702, 727 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitLevelConductivityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Conductivity on Hit", statOrderKey = "1722", statOrder = { 1722 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamageLifeLeechDelve__"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched as Life", statOrderKey = "966", statOrder = { 966 }, level = 60, group = "LightningDamageLifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageTakenAsChaosDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1657", statOrder = { 1657 }, level = 60, group = "PhysicalDamageTakenAsElement", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumChaosResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Chaos Resistance", statOrderKey = "937", statOrder = { 937 }, level = 60, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Chaos Damage taken", statOrderKey = "1491", statOrder = { 1491 }, level = 60, group = "ChaosDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (18-28) to (39-49) Chaos Damage", statOrderKey = "708,711", statOrder = { 708, 711 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (28-43) to (59-74) Chaos Damage", statOrderKey = "708,711", statOrder = { 708, 711 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellAddedChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (11-15) to (23-26) Chaos Damage to Spells", statOrderKey = "708,728", statOrder = { 708, 728 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellAddedChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (15-20) to (30-35) Chaos Damage to Spells", statOrderKey = "708,728", statOrder = { 708, 728 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitLevelDespairDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Level 5 Despair on Hit", statOrderKey = "1723", statOrder = { 1723 }, level = 60, group = "CurseOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched as Life", statOrderKey = "967", statOrder = { 967 }, level = 60, group = "ChaosDamageLifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseEffectivenessDelve"] = { type = "Suffix", affix = "of the Underground", "(10-15)% increased Effect of your Curses", statOrderKey = "1799", statOrder = { 1799 }, level = 60, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalCurseOnEnemiesDelve"] = { type = "Prefix", affix = "Subterranean", "You can apply an additional Curse", statOrderKey = "1422", statOrder = { 1422 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreaseSocketedCurseGemLevelDelve_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Curse Gems", statOrderKey = "48", statOrder = { 48 }, level = 60, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseAreaOfEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(25-40)% increased Area of Effect of Curse Skills", statOrderKey = "1480", statOrder = { 1480 }, level = 60, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseDurationDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Skills have (25-40)% increased Skill Effect Duration", statOrderKey = "4186", statOrder = { 4186 }, level = 60, group = "CurseDuration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedDamagePerCurseDelve"] = { type = "Prefix", affix = "Subterranean", "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy", statOrderKey = "2196", statOrder = { 2196 }, level = 60, group = "DamageToEnemiesPerCurse", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "(30-50)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentDamageGoesToManaDelve"] = { type = "Suffix", affix = "of the Underground", "(5-8)% of Damage taken gained as Mana over 4 seconds when Hit", statOrderKey = "1660", statOrder = { 1660 }, level = 60, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "Regenerate (3-5) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumManaIncreasePercentDelve_"] = { type = "Prefix", affix = "Subterranean", "(10-15)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h3___"] = { type = "Prefix", affix = "Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamageOverTimeMultiplier2h1_"] = { type = "Prefix", affix = "Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 400, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 300, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 200, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 100, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 50, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 300, 300, 300, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 220, 220, 220, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 140, 140, 140, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 70, 70, 70, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "attack_dagger", "no_elemental_damage_mods", "no_caster_mods", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 35, 35, 35, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(8-12)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 200, 400, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(13-16)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 200, 400, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["FireDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 300, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 200, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamageOverTimeMultiplier2h5__"] = { type = "Prefix", affix = "Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "staff", "default", }, weightVal = { 0, 50, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 4, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "wand", "sceptre", "default", }, weightVal = { 0, 300, 300, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 12, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "wand", "sceptre", "default", }, weightVal = { 0, 220, 220, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 36, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "wand", "sceptre", "default", }, weightVal = { 0, 140, 140, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 64, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "wand", "sceptre", "default", }, weightVal = { 0, 70, 70, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 78, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "wand", "sceptre", "default", }, weightVal = { 0, 35, 35, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(8-12)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 200, 400, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(13-16)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 200, 400, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Physical Damage over Time Multiplier", statOrderKey = "583", statOrder = { 583 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Physical Damage over Time Multiplier", statOrderKey = "583", statOrder = { 583 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalDamageOverTimeMultiplier1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier", statOrderKey = "580", statOrder = { 580 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "quiver", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalDamageOverTimeMultiplier1h2_"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier", statOrderKey = "580", statOrder = { 580 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "quiver", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalDamageOverTimeMultiplier1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-18)% to Damage over Time Multiplier", statOrderKey = "580", statOrder = { 580 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "quiver", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalDamageOverTimeMultiplier2h1__"] = { type = "Suffix", affix = "of Acrimony", "+(16-21)% to Damage over Time Multiplier", statOrderKey = "580", statOrder = { 580 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalDamageOverTimeMultiplier2h2"] = { type = "Suffix", affix = "of Dispersion", "+(24-29)% to Damage over Time Multiplier", statOrderKey = "580", statOrder = { 580 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalDamageOverTimeMultiplier2h3___"] = { type = "Suffix", affix = "of Liquefaction", "+(31-35)% to Damage over Time Multiplier", statOrderKey = "580", statOrder = { 580 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLifeEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "2% increased maximum Life", statOrderKey = "877,879", statOrder = { 877, 879 }, level = 50, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLifeEnhancedLevel50BodyMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrderKey = "877,879", statOrder = { 877, 879 }, level = 50, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaEnhancedLevel50ModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrderKey = "884,885", statOrder = { 884, 885 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaEnhancedLevel50ModOnHit"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "+(2-3) Mana gained for each Enemy hit by your Attacks", statOrderKey = "884,1021", statOrder = { 884, 1021 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrderKey = "884,887", statOrder = { 884, 887 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaEnhancedLevel50ModReservation_"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(3-5)% reduced Mana Reserved", statOrderKey = "884,1481", statOrder = { 884, 1481 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaEnhancedLevel50ModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrderKey = "884,1144", statOrder = { 884, 1144 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_mana_cost_mod", }, }, + ["IncreasedManaEnhancedLevel50ModCostNew"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills have -(8-6) to Total Mana Cost", statOrderKey = "884,6255", statOrder = { 884, 6255 }, level = 50, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_mana_cost_mod", }, }, + ["IncreasedEnergyShieldEnhancedLevel50ModES_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "3% increased maximum Energy Shield", statOrderKey = "867,870", statOrder = { 867, 870 }, level = 50, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrderKey = "867,1832", statOrder = { 867, 1832 }, level = 50, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrderKey = "688,1206", statOrder = { 688, 1206 }, level = 50, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["AddedColdDamageEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrderKey = "695,1208", statOrder = { 695, 1208 }, level = 50, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["AddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrderKey = "704,1210", statOrder = { 704, 1210 }, level = 50, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["LocalIncreasedPhysicalDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (3-5)% of Physical Damage as Extra Chaos Damage", statOrderKey = "570,1186", statOrder = { 570, 1186 }, level = 50, group = "LocalPhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalAddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (45-61) to (91-106) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 50, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (68-91) to (137-160) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 50, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (37-50) to (74-87) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 50, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (56-75) to (112-131) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 50, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (4-13) to (158-166) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 50, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (6-19) to (237-250) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 50, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["MovementVelocityEnhancedLevel50ModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrderKey = "1070,2425", statOrder = { 1070, 2425 }, level = 50, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityEnhancedLevel50ModDodge"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(5-6)% chance to Dodge Attack Hits", statOrderKey = "1070,1417", statOrder = { 1070, 1417 }, level = 50, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityEnhancedLevel50ModSpellDodge__"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(5-6)% chance to Dodge Spell Hits", statOrderKey = "1070,1418", statOrder = { 1070, 1418 }, level = 50, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "562,5994", statOrder = { 562, 5994 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrderKey = "562,5994", statOrder = { 562, 5994 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrderKey = "534", statOrder = { 534 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrderKey = "534", statOrder = { 534 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Mine Damage", statOrderKey = "536", statOrder = { 536 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Mine Damage", statOrderKey = "536", statOrder = { 536 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrderKey = "1178", statOrder = { 1178 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Trap Throwing Speed", statOrderKey = "1178", statOrder = { 1178 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Mine Throwing Speed", statOrderKey = "1179", statOrder = { 1179 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Mine Throwing Speed", statOrderKey = "1179", statOrder = { 1179 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapCooldownRecoveryAndDurationEnhancedLevel50Mod__"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Speed for throwing Traps", statOrderKey = "1174,2642", statOrder = { 1174, 2642 }, level = 50, group = "TrapCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapCooldownRecoveryAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Trap Duration", "(21-22)% increased Cooldown Recovery Speed for throwing Traps", statOrderKey = "1174,2642", statOrder = { 1174, 2642 }, level = 50, group = "TrapCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineDetonationSpeedAndDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Mine Duration", "Mines have (14-15)% increased Detonation Speed", statOrderKey = "1175,5873", statOrder = { 1175, 5873 }, level = 50, group = "MineDetonationSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineDetonationSpeedAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Mine Duration", "Mines have (21-22)% increased Detonation Speed", statOrderKey = "1175,5873", statOrder = { 1175, 5873 }, level = 50, group = "MineDetonationSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrderKey = "2660", statOrder = { 2660 }, level = 50, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (33-37)% increased Area of Effect", statOrderKey = "2660", statOrder = { 2660 }, level = 50, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (22-25)% increased Area of Effect", statOrderKey = "5870", statOrder = { 5870 }, level = 50, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (33-37)% increased Area of Effect", statOrderKey = "5870", statOrder = { 5870 }, level = 50, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedTrapGemLevelEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap or Mine Gems", statOrderKey = "50", statOrder = { 50 }, level = 50, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnTwoHandWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (50-66)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrderKey = "1233,5915", statOrder = { 1233, 5915 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnTwoHandWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (85-94)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrderKey = "1233,5915", statOrder = { 1233, 5915 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAttackAndCastSpeedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 50, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAttackAndCastSpeedTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (36-40)% increased Attack Speed", "Minions have (36-40)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 50, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrderKey = "3798", statOrder = { 3798 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDurationTwoHandedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(27-30)% increased Minion Duration", statOrderKey = "3798", statOrder = { 3798 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreaseSocketedMinionGemLevelEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrderKey = "44", statOrder = { 44 }, level = 50, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrderKey = "686,725", statOrder = { 686, 725 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod__"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrderKey = "686,725", statOrder = { 686, 725 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrderKey = "693,726", statOrder = { 693, 726 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrderKey = "693,726", statOrder = { 693, 726 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamagePrefixOnWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrderKey = "702,727", statOrder = { 702, 727 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrderKey = "702,727", statOrder = { 702, 727 }, level = 50, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedCastSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(23-25)% increased Cast Speed", statOrderKey = "728,767", statOrder = { 728, 767 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedCastSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(35-38)% increased Cast Speed", statOrderKey = "728,767", statOrder = { 728, 767 }, level = 50, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedAttackSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrderKey = "711,734", statOrder = { 711, 734 }, level = 50, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedAttackSpeedRangedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrderKey = "711,734", statOrder = { 711, 734 }, level = 50, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (16-20) Life per second", "Regenerate 0.4% of Life per second", statOrderKey = "882,1194", statOrder = { 882, 1194 }, level = 50, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(3-5)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "923,1653", statOrder = { 923, 1653 }, level = 50, group = "FireResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["ColdResistEnhancedLevel50ModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(3-5)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "929,1654", statOrder = { 929, 1654 }, level = 50, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["LightningResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(3-5)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "934,1655", statOrder = { 934, 1655 }, level = 50, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["FireResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrderKey = "923,962", statOrder = { 923, 962 }, level = 50, group = "FireResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrderKey = "929,964", statOrder = { 929, 964 }, level = 50, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrderKey = "934,966", statOrder = { 934, 966 }, level = 50, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistEnhancedLevel50ModAilments_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrderKey = "923,6362", statOrder = { 923, 6362 }, level = 50, group = "FireResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrderKey = "929,4222", statOrder = { 929, 4222 }, level = 50, group = "ColdResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrderKey = "934,4131", statOrder = { 934, 4131 }, level = 50, group = "LightningResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosResistEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(5-7)% reduced Chaos Damage taken over time", statOrderKey = "938,1198", statOrder = { 938, 1198 }, level = 50, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDurationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrderKey = "708,2350", statOrder = { 708, 2350 }, level = 50, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToPoisonEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrderKey = "708,5167", statOrder = { 708, 5167 }, level = 50, group = "LocalChanceToPoisonOnHit", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamageEnhancedLevel50AttacksMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrderKey = "711,2361", statOrder = { 711, 2361 }, level = 50, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamageEnhancedLevel50SpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrderKey = "728,2361", statOrder = { 728, 2361 }, level = 50, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponFireAddedAsChaos1h1"] = { type = "Prefix", affix = "Acidic", "Gain (5-7)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1192", statOrder = { 1192 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 400, 400, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponFireAddedAsChaos1h2"] = { type = "Prefix", affix = "Dissolving", "Gain (8-10)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1192", statOrder = { 1192 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 200, 200, 100, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponFireAddedAsChaos1h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1192", statOrder = { 1192 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 100, 100, 50, 50, 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponColdAddedAsChaos1h1"] = { type = "Prefix", affix = "Atrophic", "Gain (5-7)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1191", statOrder = { 1191 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 400, 400, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponColdAddedAsChaos1h2"] = { type = "Prefix", affix = "Festering", "Gain (8-10)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1191", statOrder = { 1191 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 200, 200, 100, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponColdAddedAsChaos1h3_"] = { type = "Prefix", affix = "Mortifying", "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1191", statOrder = { 1191 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 100, 100, 50, 50, 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponLightningAddedAsChaos1h1"] = { type = "Prefix", affix = "Agonizing", "Gain (5-7)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1189", statOrder = { 1189 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 400, 400, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponLightningAddedAsChaos1h2"] = { type = "Prefix", affix = "Harrowing", "Gain (8-10)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1189", statOrder = { 1189 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 200, 200, 100, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponLightningAddedAsChaos1h3_"] = { type = "Prefix", affix = "Excruciating", "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1189", statOrder = { 1189 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "sceptre", "dagger", "str_int_shield", "dex_int_shield", "focus", "default", }, weightVal = { 100, 100, 50, 50, 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponPhysicalAddedAsChaos1h1____"] = { type = "Prefix", affix = "Pernicious", "Gain (5-7)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1186", statOrder = { 1186 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "wand", "dagger", "dex_int_shield", "focus", "default", }, weightVal = { 400, 600, 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponPhysicalAddedAsChaos1h2"] = { type = "Prefix", affix = "Inimical", "Gain (8-10)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1186", statOrder = { 1186 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "wand", "dagger", "dex_int_shield", "focus", "default", }, weightVal = { 200, 300, 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponPhysicalAddedAsChaos1h3_"] = { type = "Prefix", affix = "Baleful", "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1186", statOrder = { 1186 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "wand", "dagger", "dex_int_shield", "focus", "default", }, weightVal = { 100, 150, 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponFireAddedAsChaos2h1_"] = { type = "Prefix", affix = "Acidic", "Gain (10-14)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1192", statOrder = { 1192 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponFireAddedAsChaos2h2"] = { type = "Prefix", affix = "Dissolving", "Gain (15-20)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1192", statOrder = { 1192 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponFireAddedAsChaos2h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (21-26)% of Fire Damage as Extra Chaos Damage", statOrderKey = "1192", statOrder = { 1192 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponColdAddedAsChaos2h1"] = { type = "Prefix", affix = "Atrophic", "Gain (10-14)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1191", statOrder = { 1191 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponColdAddedAsChaos2h2"] = { type = "Prefix", affix = "Festering", "Gain (15-20)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1191", statOrder = { 1191 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponColdAddedAsChaos2h3"] = { type = "Prefix", affix = "Mortifying", "Gain (21-26)% of Cold Damage as Extra Chaos Damage", statOrderKey = "1191", statOrder = { 1191 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponLightningAddedAsChaos2h1"] = { type = "Prefix", affix = "Agonizing", "Gain (10-14)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1189", statOrder = { 1189 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponLightningAddedAsChaos2h2"] = { type = "Prefix", affix = "Harrowing", "Gain (15-20)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1189", statOrder = { 1189 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponLightningAddedAsChaos2h3"] = { type = "Prefix", affix = "Excruciating", "Gain (21-26)% of Lightning Damage as Extra Chaos Damage", statOrderKey = "1189", statOrder = { 1189 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponPhysicalAddedAsChaos2h1"] = { type = "Prefix", affix = "Pernicious", "Gain (10-14)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1186", statOrder = { 1186 }, level = 66, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponPhysicalAddedAsChaos2h2"] = { type = "Prefix", affix = "Inimical", "Gain (15-20)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1186", statOrder = { 1186 }, level = 72, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WeaponPhysicalAddedAsChaos2h3"] = { type = "Prefix", affix = "Baleful", "Gain (21-26)% of Physical Damage as Extra Chaos Damage", statOrderKey = "1186", statOrder = { 1186 }, level = 80, group = "NonChaosAddedAsChaos", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (10-19)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnWeapon2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (20-29)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnWeapon3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-39)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnWeapon4_"] = { type = "Prefix", affix = "Countess's", "Minions deal (40-49)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnWeapon5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (50-59)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 46, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 600, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnWeapon6"] = { type = "Prefix", affix = "Princess's", "Minions deal (60-69)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnWeapon7"] = { type = "Prefix", affix = "Queen's", "Minions deal (70-74)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 64, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 40, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnWeapon8"] = { type = "Prefix", affix = "Empress's", "Minions deal (75-79)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 84, group = "WeaponCasterDamagePrefix", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 20, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (50-56)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (57-62)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 74, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (63-69)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 82, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (15-29)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 2, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-44)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 11, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Duchess's", "Minions deal (45-59)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 23, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Queen's", "Minions deal (60-74)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 35, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (75-84)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 58, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (85-94)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 74, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (95-104)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 82, group = "WeaponCasterDamagePrefix", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Baron's", "+(17-20) to maximum Mana", "Minions deal (5-9)% increased Damage", statOrderKey = "884,1233", statOrder = { 884, 1233 }, level = 2, group = "SpellDamageAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageAndManaOnWeapon2_"] = { type = "Prefix", affix = "Viscount's", "+(21-24) to maximum Mana", "Minions deal (10-14)% increased Damage", statOrderKey = "884,1233", statOrder = { 884, 1233 }, level = 11, group = "SpellDamageAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Marquess's", "+(25-28) to maximum Mana", "Minions deal (15-19)% increased Damage", statOrderKey = "884,1233", statOrder = { 884, 1233 }, level = 23, group = "SpellDamageAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageAndManaOnWeapon4_"] = { type = "Prefix", affix = "Count's", "+(29-33) to maximum Mana", "Minions deal (20-24)% increased Damage", statOrderKey = "884,1233", statOrder = { 884, 1233 }, level = 35, group = "SpellDamageAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Duke's", "+(34-37) to maximum Mana", "Minions deal (25-29)% increased Damage", statOrderKey = "884,1233", statOrder = { 884, 1233 }, level = 46, group = "SpellDamageAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Prince's", "+(38-41) to maximum Mana", "Minions deal (30-34)% increased Damage", statOrderKey = "884,1233", statOrder = { 884, 1233 }, level = 58, group = "SpellDamageAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageAndManaOnWeapon7_"] = { type = "Prefix", affix = "King's", "+(42-45) to maximum Mana", "Minions deal (35-39)% increased Damage", statOrderKey = "884,1233", statOrder = { 884, 1233 }, level = 80, group = "SpellDamageAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of Motivation", "Minions have (5-7)% increased Attack Speed", "Minions have (5-7)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 2, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Coercion", "Minions have (8-10)% increased Attack Speed", "Minions have (8-10)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 15, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Incitation", "Minions have (11-13)% increased Attack Speed", "Minions have (11-13)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 30, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAttackAndCastSpeed4"] = { type = "Suffix", affix = "of Agitation", "Minions have (14-16)% increased Attack Speed", "Minions have (14-16)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 40, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAttackAndCastSpeed5"] = { type = "Suffix", affix = "of Instigation", "Minions have (17-19)% increased Attack Speed", "Minions have (17-19)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 55, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAttackAndCastSpeed6__"] = { type = "Suffix", affix = "of Provocation", "Minions have (20-22)% increased Attack Speed", "Minions have (20-22)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 72, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAttackAndCastSpeed7"] = { type = "Suffix", affix = "of Infuriation", "Minions have (23-25)% increased Attack Speed", "Minions have (23-25)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 83, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionGemLevel1h1"] = { type = "Prefix", affix = "Martinet's", "+1 to Level of all Minion Skill Gems", statOrderKey = "913", statOrder = { 913 }, level = 60, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeWeapon1"] = { type = "Suffix", affix = "of the Administrator", "Minions have (13-17)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 10, group = "MinionLife", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeWeapon2"] = { type = "Suffix", affix = "of the Rector", "Minions have (18-22)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 26, group = "MinionLife", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeWeapon3"] = { type = "Suffix", affix = "of the Overseer", "Minions have (23-27)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 42, group = "MinionLife", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeWeapon4__"] = { type = "Suffix", affix = "of the Taskmaster", "Minions have (28-32)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 58, group = "MinionLife", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeWeapon5"] = { type = "Suffix", affix = "of the Slavedriver", "Minions have (33-36)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 74, group = "MinionLife", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeWeapon6_"] = { type = "Suffix", affix = "of the Despot", "Minions have (37-40)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 82, group = "MinionLife", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionMovementSpeed1"] = { type = "Suffix", affix = "of Coordination", "Minions have (16-20)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 1, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionMovementSpeed2"] = { type = "Suffix", affix = "of Orchestration", "Minions have (21-25)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 23, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionMovementSpeed3"] = { type = "Suffix", affix = "of Masterminding", "Minions have (26-30)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 40, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionResistancesWeapon1_"] = { type = "Suffix", affix = "of Adjustment", "Minions have +(11-15)% to all Elemental Resistances", statOrderKey = "2090", statOrder = { 2090 }, level = 8, group = "MinionElementalResistances", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionResistancesWeapon2"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(16-20)% to all Elemental Resistances", statOrderKey = "2090", statOrder = { 2090 }, level = 20, group = "MinionElementalResistances", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionResistancesWeapon3"] = { type = "Suffix", affix = "of Adaptation", "Minions have +(21-25)% to all Elemental Resistances", statOrderKey = "2090", statOrder = { 2090 }, level = 30, group = "MinionElementalResistances", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionResistancesWeapon4"] = { type = "Suffix", affix = "of Evolution", "Minions have +(26-30)% to all Elemental Resistances", statOrderKey = "2090", statOrder = { 2090 }, level = 40, group = "MinionElementalResistances", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAccuracyRatingWeapon1_"] = { type = "Suffix", affix = "of Suggestion", "Minions have +(80-130) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 1, group = "MinionAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAccuracyRatingWeapon2"] = { type = "Suffix", affix = "of Instruction", "Minions have +(131-215) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 20, group = "MinionAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAccuracyRatingWeapon3"] = { type = "Suffix", affix = "of Tutelage", "Minions have +(216-325) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 40, group = "MinionAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAccuracyRatingWeapon4"] = { type = "Suffix", affix = "of Command", "Minions have +(326-455) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 60, group = "MinionAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAccuracyRatingWeapon5"] = { type = "Suffix", affix = "of Ultimatum", "Minions have +(456-624) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 75, group = "MinionAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapAndMineThrowSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Trap and Mine Throwing Speed", statOrderKey = "6415", statOrder = { 6415 }, level = 42, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapAndMineThrowSpeedEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-13)% increased Trap and Mine Throwing Speed", statOrderKey = "6415", statOrder = { 6415 }, level = 58, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapAndMineThrowSpeedEssence3_"] = { type = "Suffix", affix = "of the Essence", "(14-17)% increased Trap and Mine Throwing Speed", statOrderKey = "6415", statOrder = { 6415 }, level = 74, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapAndMineThrowSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(18-21)% increased Trap and Mine Throwing Speed", statOrderKey = "6415", statOrder = { 6415 }, level = 82, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["UnaffectedByShockedGroundInfluence1"] = { type = "Prefix", affix = "Crusader's", "Unaffected by Shocked Ground", statOrderKey = "6436", statOrder = { 6436 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+2 to Level of Socketed Lightning Gems", statOrderKey = "36", statOrder = { 36 }, level = 68, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumFireResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumFireResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraLightningBootsInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraLightningBootsInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (6-8)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CooldownRecoveryInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(6-10)% increased Cooldown Recovery Speed", statOrderKey = "3784", statOrder = { 3784 }, level = 75, group = "CooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CooldownRecoveryInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% increased Cooldown Recovery Speed", statOrderKey = "3784", statOrder = { 3784 }, level = 80, group = "CooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidIgniteInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 68, group = "AvoidIgnite", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidIgniteInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 70, group = "AvoidIgnite", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidIgniteInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 75, group = "AvoidIgnite", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidFreezeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 68, group = "AvoidFreeze", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidFreezeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 70, group = "AvoidFreeze", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidFreezeInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 75, group = "AvoidFreeze", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidShockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 68, group = "AvoidShock", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidShockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 70, group = "AvoidShock", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidShockInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 75, group = "AvoidShock", weightKey = { "boots_crusader", "helmet_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidProjectilesInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(6-9)% chance to avoid Projectiles", statOrderKey = "3778", statOrder = { 3778 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidProjectilesInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% chance to avoid Projectiles", statOrderKey = "3778", statOrder = { 3778 }, level = 73, group = "ChanceToAvoidProjectiles", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["UnaffectedByBurningGroundInfluence1"] = { type = "Prefix", affix = "Warlord's", "Unaffected by Burning Ground", statOrderKey = "6423", statOrder = { 6423 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+2 to Level of Socketed Fire Gems", statOrderKey = "34", statOrder = { 34 }, level = 68, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Endurance Charges", statOrderKey = "1076", statOrder = { 1076 }, level = 75, group = "MaximumEnduranceCharges", weightKey = { "boots_adjudicator", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraFireBootsInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraFireBootsInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidStunInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 68, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidStunInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(21-25)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 70, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidStunInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(26-30)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 75, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidFireDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Fire Damage from Hits", statOrderKey = "2563", statOrder = { 2563 }, level = 68, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidFireDamageInfluence2__"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Fire Damage from Hits", statOrderKey = "2563", statOrder = { 2563 }, level = 80, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidColdDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Cold Damage from Hits", statOrderKey = "2564", statOrder = { 2564 }, level = 68, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidColdDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Cold Damage from Hits", statOrderKey = "2564", statOrder = { 2564 }, level = 80, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidLightningDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 68, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidLightningDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrderKey = "2565", statOrder = { 2565 }, level = 80, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationPercentInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (0.8-1.2)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (1.3-1.5)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 73, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalPhysicalDamageReductionInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(2-4)% additional Physical Damage Reduction", statOrderKey = "1519", statOrder = { 1519 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "boots_adjudicator", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["UnaffectedByChilledGroundInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Unaffected by Chilled Ground", statOrderKey = "6425", statOrder = { 6425 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedColdGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+2 to Level of Socketed Cold Gems", statOrderKey = "35", statOrder = { 35 }, level = 68, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnduranceChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrderKey = "1819", statOrder = { 1819 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnduranceChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrderKey = "1819", statOrder = { 1819 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraColdBootsInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraColdBootsInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (6-8)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElusiveOnCriticalStrikeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(5-10)% chance to gain Elusive on Critical Strike", statOrderKey = "3454", statOrder = { 3454 }, level = 75, group = "ElusiveOnCriticalStrike", weightKey = { "boots_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToDodgeAttacksInfluence1"] = { type = "Suffix", affix = "of Redemption", "(3-5)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 68, group = "ChanceToDodge", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeAttacksInfluence2"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 73, group = "ChanceToDodge", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeAttacksInfluence3"] = { type = "Suffix", affix = "of Redemption", "(9-10)% chance to Dodge Attack Hits", statOrderKey = "1417", statOrder = { 1417 }, level = 80, group = "ChanceToDodge", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeSpellsInfluence1"] = { type = "Suffix", affix = "of Redemption", "(3-5)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 68, group = "SpellDodgePercentage", weightKey = { "spell_dodge_mod", "boots_eyrie", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeSpellsInfluence2___"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 73, group = "SpellDodgePercentage", weightKey = { "spell_dodge_mod", "boots_eyrie", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["ChanceToDodgeSpellsInfluence3"] = { type = "Suffix", affix = "of Redemption", "(9-10)% chance to Dodge Spell Hits", statOrderKey = "1418", statOrder = { 1418 }, level = 80, group = "SpellDodgePercentage", weightKey = { "spell_dodge_mod", "boots_eyrie", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "spell_dodge_mod", }, }, + ["IncreasedAilmentEffectOnEnemiesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(30-34)% increased Effect of Non-Damaging Ailments", statOrderKey = "6000", statOrder = { 6000 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedAilmentEffectOnEnemiesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(35-40)% increased Effect of Non-Damaging Ailments", statOrderKey = "6000", statOrder = { 6000 }, level = 73, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["OnslaughtOnKillInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2176", statOrder = { 2176 }, level = 75, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["OnslaughtOnKillInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2176", statOrder = { 2176 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["UnaffectedByDesecratedGroundInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Unaffected by Desecrated Ground", statOrderKey = "6428", statOrder = { 6428 }, level = 68, group = "GroundEffectEffectiveness", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedChaosGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+2 to Level of Socketed Chaos Gems", statOrderKey = "37", statOrder = { 37 }, level = 68, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalPierceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce an additional Target", statOrderKey = "1064", statOrder = { 1064 }, level = 75, group = "Pierce", weightKey = { "boots_basilisk", "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalPierceInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce 2 additional Targets", statOrderKey = "1064", statOrder = { 1064 }, level = 80, group = "Pierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageStrengthInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Strength", statOrderKey = "528", statOrder = { 528 }, level = 68, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageStrengthInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Strength", statOrderKey = "528", statOrder = { 528 }, level = 75, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidBleedAndPoisonInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% chance to Avoid being Poisoned", "(21-25)% chance to avoid Bleeding", statOrderKey = "1110,3389", statOrder = { 1110, 3389 }, level = 68, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidBleedAndPoisonInfluence2____"] = { type = "Suffix", affix = "of the Hunt", "(26-30)% chance to Avoid being Poisoned", "(26-30)% chance to avoid Bleeding", statOrderKey = "1110,3389", statOrder = { 1110, 3389 }, level = 70, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidBleedAndPoisonInfluence3"] = { type = "Suffix", affix = "of the Hunt", "(31-35)% chance to Avoid being Poisoned", "(31-35)% chance to avoid Bleeding", statOrderKey = "1110,3389", statOrder = { 1110, 3389 }, level = 75, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TailwindOnCriticalStrikeInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Tailwind if you have dealt a Critical Strike Recently", statOrderKey = "6389", statOrder = { 6389 }, level = 75, group = "TailwindOnCriticalStrike", weightKey = { "boots_basilisk", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterIgniteInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (5-7)% faster", statOrderKey = "1762", statOrder = { 1762 }, level = 68, group = "FasterDamageAilments", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterIgniteInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (8-10)% faster", statOrderKey = "1762", statOrder = { 1762 }, level = 73, group = "FasterDamageAilments", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterBleedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (5-7)% faster", statOrderKey = "4406", statOrder = { 4406 }, level = 68, group = "FasterDamageAilments", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterBleedInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (8-10)% faster", statOrderKey = "4406", statOrder = { 4406 }, level = 73, group = "FasterDamageAilments", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterPoisonInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (5-7)% faster", statOrderKey = "4407", statOrder = { 4407 }, level = 68, group = "FasterDamageAilments", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterPoisonInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (8-10)% faster", statOrderKey = "4407", statOrder = { 4407 }, level = 73, group = "FasterDamageAilments", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumColdResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumColdResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ConvertPhysicalToFireInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Fire Damage", statOrderKey = "1206", statOrder = { 1206 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["ConvertPhysicalToFireInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Fire Damage", statOrderKey = "1206", statOrder = { 1206 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["ConvertPhysicalToColdInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Cold Damage", statOrderKey = "1208", statOrder = { 1208 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["ConvertPhysicalToColdInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Cold Damage", statOrderKey = "1208", statOrder = { 1208 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["ConvertPhysicalToLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Lightning Damage", statOrderKey = "1210", statOrder = { 1210 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["ConvertPhysicalToLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrderKey = "1210", statOrder = { 1210 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["MaximumLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "10% increased Maximum total Recovery per second from Life Leech", statOrderKey = "1008", statOrder = { 1008 }, level = 75, group = "MaximumLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumEnergyShieldLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "10% increased Maximum total Recovery per second from Energy Shield Leech", statOrderKey = "1011", statOrder = { 1011 }, level = 75, group = "MaximumLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidInterruptionWhileCastingInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "1151", statOrder = { 1151 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["AvoidInterruptionWhileCastingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "1151", statOrder = { 1151 }, level = 70, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["AvoidInterruptionWhileCastingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid interruption from Stuns while Casting", statOrderKey = "1151", statOrder = { 1151 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "no_caster_mods", "gloves_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["GlobalCriticalStrikeChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalCriticalStrikeChanceInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 70, group = "CriticalStrikeChanceIncrease", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalCriticalStrikeChanceInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Frenzy Charges", statOrderKey = "1078", statOrder = { 1078 }, level = 75, group = "MaximumFrenzyCharges", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 68, group = "MeleeDamage", weightKey = { "no_attack_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 70, group = "MeleeDamage", weightKey = { "no_attack_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 73, group = "MeleeDamage", weightKey = { "no_attack_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileAttackDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileAttackDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 70, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileAttackDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 73, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 68, group = "SpellDamage", weightKey = { "no_caster_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 70, group = "SpellDamage", weightKey = { "no_caster_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 73, group = "SpellDamage", weightKey = { "no_caster_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["DamageOverTimeInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Damage over Time", statOrderKey = "550", statOrder = { 550 }, level = 68, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageOverTimeInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Damage over Time", statOrderKey = "550", statOrder = { 550 }, level = 70, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageOverTimeInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Damage over Time", statOrderKey = "550", statOrder = { 550 }, level = 73, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+2 to Melee Strike Range", statOrderKey = "1732", statOrder = { 1732 }, level = 82, group = "MeleeWeaponAndUnarmedRange", weightKey = { "no_attack_mods", "gloves_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlockPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(2-3)% Chance to Block Attack Damage", statOrderKey = "495", statOrder = { 495 }, level = 68, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlockPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(4-5)% Chance to Block Attack Damage", statOrderKey = "495", statOrder = { 495 }, level = 80, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CullingStrikeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Culling Strike", statOrderKey = "1295", statOrder = { 1295 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FrenzyChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1818", statOrder = { 1818 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FrenzyChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrderKey = "1818", statOrder = { 1818 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (4-5) to (6-8) Physical Damage if you've dealt a Critical Strike Recently", statOrderKey = "5893", statOrder = { 5893 }, level = 68, group = "AddedPhysicalDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedPhysicalDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (6-8) to (9-11) Physical Damage if you've dealt a Critical Strike Recently", statOrderKey = "5893", statOrder = { 5893 }, level = 73, group = "AddedPhysicalDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Fire Damage if you've dealt a Critical Strike Recently", statOrderKey = "5883", statOrder = { 5883 }, level = 68, group = "AddedFireDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Fire Damage if you've dealt a Critical Strike Recently", statOrderKey = "5883", statOrder = { 5883 }, level = 73, group = "AddedFireDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Cold Damage if you've dealt a Critical Strike Recently", statOrderKey = "5878", statOrder = { 5878 }, level = 68, group = "AddedColdDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Cold Damage if you've dealt a Critical Strike Recently", statOrderKey = "5878", statOrder = { 5878 }, level = 73, group = "AddedColdDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamageCritRecentlyInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (41-47) Lightning Damage if you've dealt a Critical Strike Recently", statOrderKey = "5887", statOrder = { 5887 }, level = 68, group = "AddedLightningDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (48-60) Lightning Damage if you've dealt a Critical Strike Recently", statOrderKey = "5887", statOrder = { 5887 }, level = 73, group = "AddedLightningDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-22)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 68, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (23-26)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 70, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (27-30)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 73, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedAccuracyPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Global Accuracy Rating", statOrderKey = "755", statOrder = { 755 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedAccuracyPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% increased Global Accuracy Rating", statOrderKey = "755", statOrder = { 755 }, level = 80, group = "IncreasedAccuracyPercent", weightKey = { "no_attack_mods", "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalChanceToBlindOnHitInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(8-11)% Global chance to Blind Enemies on hit", statOrderKey = "2139", statOrder = { 2139 }, level = 68, group = "BlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalChanceToBlindOnHitInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(12-15)% Global chance to Blind Enemies on hit", statOrderKey = "2139", statOrder = { 2139 }, level = 80, group = "BlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalChanceToEvadeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% chance to Evade Attack Hits", statOrderKey = "4008", statOrder = { 4008 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "gloves_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToIntimidateOnHitInfluence1"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrderKey = "4032", statOrder = { 4032 }, level = 85, group = "ChanceToIntimidateOnHit", weightKey = { "no_attack_mods", "gloves_basilisk", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToUnnerveOnHitInfluence1___"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrderKey = "4036", statOrder = { 4036 }, level = 85, group = "ChanceToUnnerveOnHit", weightKey = { "no_caster_mods", "gloves_basilisk", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StrikeSkillsAdditionalTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Strike Skills target 1 additional nearby Enemy", statOrderKey = "5847", statOrder = { 5847 }, level = 80, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_attack_mods", "gloves_basilisk", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToImpaleInfluence1"] = { type = "Prefix", affix = "Hunter's", "(8-11)% chance to Impale Enemies on Hit with Attacks", statOrderKey = "3749", statOrder = { 3749 }, level = 68, group = "ImpaleOnHit", weightKey = { "no_attack_mods", "gloves_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToImpaleInfluence2"] = { type = "Prefix", affix = "Hunter's", "(12-15)% chance to Impale Enemies on Hit with Attacks", statOrderKey = "3749", statOrder = { 3749 }, level = 80, group = "ImpaleOnHit", weightKey = { "no_attack_mods", "gloves_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AilmentDurationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(10-12)% increased Duration of Ailments on Enemies", statOrderKey = "1120", statOrder = { 1120 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AilmentDurationInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% increased Duration of Ailments on Enemies", statOrderKey = "1120", statOrder = { 1120 }, level = 80, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageDexterityInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Dexterity", statOrderKey = "529", statOrder = { 529 }, level = 68, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageDexterityInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Dexterity", statOrderKey = "529", statOrder = { 529 }, level = 75, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageOverTimeMultiplierInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "+(8-12)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(13-16)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(8-12)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["ColdDamageOverTimeMultiplierInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "+(13-16)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["ChaosDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(8-12)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(13-16)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(8-12)% to Physical Damage over Time Multiplier", statOrderKey = "583", statOrder = { 583 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(13-16)% to Physical Damage over Time Multiplier", statOrderKey = "583", statOrder = { 583 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLightningResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLightningResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumManaInfluence1"] = { type = "Prefix", affix = "Crusader's", "(9-11)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumManaInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(12-15)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 80, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysTakenAsLightningHelmInfluence1"] = { type = "Prefix", affix = "Crusader's", "(4-6)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysTakenAsLightningHelmInfluence2"] = { type = "Prefix", affix = "Crusader's", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["EnemyLightningResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "-9% to Lightning Resistance", "Nearby Enemies have -9% to Lightning Resistance", statOrderKey = "934,5113", statOrder = { 934, 5113 }, level = 85, group = "LocalDisplayNearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockPercentInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(3-4)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockPercentInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FortifyEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-20)% increased Effect of Fortify on you", statOrderKey = "2749", statOrder = { 2749 }, level = 75, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FortifyEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% increased Effect of Fortify on you", statOrderKey = "2749", statOrder = { 2749 }, level = 80, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldRegenInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1-1.5)% of Energy Shield per second", statOrderKey = "1832", statOrder = { 1832 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumPowerChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Power Charges", statOrderKey = "1080", statOrder = { 1080 }, level = 75, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysTakenAsFireHelmetInfluence1"] = { type = "Prefix", affix = "Warlord's", "(4-6)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysTakenAsFireHelmetInfluence2"] = { type = "Prefix", affix = "Warlord's", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["ElementalDamageInfluence1____"] = { type = "Prefix", affix = "Warlord's", "(12-14)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 68, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(15-18)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 70, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(19-22)% increased Elemental Damage", statOrderKey = "1240", statOrder = { 1240 }, level = 75, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnemyFireResistanceAuraInfluence1"] = { type = "Suffix", affix = "of the Conquest", "-9% to Fire Resistance", "Nearby Enemies have -9% to Fire Resistance", statOrderKey = "923,5112", statOrder = { 923, 5112 }, level = 85, group = "LocalDisplayNearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(11-13)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 70, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeMultiplierInfluence3"] = { type = "Suffix", affix = "of the Conquest", "+(17-20)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRegenerationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(41-55)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(56-70)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainAccuracyEqualToStrengthInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain Accuracy Rating equal to your Strength", statOrderKey = "4469", statOrder = { 4469 }, level = 75, group = "GainAccuracyEqualToStrength", weightKey = { "no_attack_mods", "helmet_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Minions have (21-26)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 68, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Minions have (27-30)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 70, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeInfluence3"] = { type = "Suffix", affix = "of the Conquest", "Minions have (31-35)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 75, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PowerChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Power Charge on Kill", statOrderKey = "1820", statOrder = { 1820 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PowerChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Power Charge on Kill", statOrderKey = "1820", statOrder = { 1820 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysTakenAsColdHelmetInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysTakenAsColdHelmetInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["SpellsAdditionalUnleashSealInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Skills supported by Unleash have +1 to maximum number of Seals", statOrderKey = "6509", statOrder = { 6509 }, level = 80, group = "SpellsAdditionalUnleashSeal", weightKey = { "no_caster_mods", "helmet_eyrie", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnemyColdResistanceAuraInfluence1__"] = { type = "Suffix", affix = "of Redemption", "-9% to Cold Resistance", "Nearby Enemies have -9% to Cold Resistance", statOrderKey = "929,5110", statOrder = { 929, 5110 }, level = 85, group = "LocalDisplayNearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedManaReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(2-3)% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 68, group = "ReducedManaReservationsCost", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedManaReservationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(4-5)% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IgniteChanceAndDamageInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(15-17)% increased Burning Damage", "(6-8)% chance to Ignite", statOrderKey = "1137,1282", statOrder = { 1137, 1282 }, level = 68, group = "ChanceToIgnite", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IgniteChanceAndDamageInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(18-20)% increased Burning Damage", "(6-8)% chance to Ignite", statOrderKey = "1137,1282", statOrder = { 1137, 1282 }, level = 75, group = "ChanceToIgnite", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FreezeChanceAndDurationInfluence1____"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrderKey = "1118,1285", statOrder = { 1118, 1285 }, level = 68, group = "ChanceToFreeze", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FreezeChanceAndDurationInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrderKey = "1118,1285", statOrder = { 1118, 1285 }, level = 75, group = "ChanceToFreeze", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ShockChanceAndEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(8-12)% increased Effect of Shock", statOrderKey = "1289,6217", statOrder = { 1289, 6217 }, level = 68, group = "ChanceToShock", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ShockChanceAndEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(13-15)% increased Effect of Shock", statOrderKey = "1289,6217", statOrder = { 1289, 6217 }, level = 75, group = "ChanceToShock", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedManaRegenerationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Regenerate (3-5) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedManaRegenerationInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Regenerate (6-8) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellAddedFireDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 70, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 70, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 70, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 70, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedPhysicalDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 70, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_caster_mods", "helmet_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["EnemyChaosResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "-9% to Chaos Resistance", "Nearby Enemies have -9% to Chaos Resistance", statOrderKey = "938,5109", statOrder = { 938, 5109 }, level = 85, group = "LocalDisplayNearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageIntelligenceInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Intelligence", statOrderKey = "530", statOrder = { 530 }, level = 68, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageIntelligenceInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Intelligence", statOrderKey = "530", statOrder = { 530 }, level = 75, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IgnitingConfluxInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrderKey = "4527", statOrder = { 4527 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChillingConfluxInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrderKey = "4527", statOrder = { 4527 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ShockingConfluxInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrderKey = "4527", statOrder = { 4527 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysTakenAsLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(5-10)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysTakenAsLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(11-15)% of Physical Damage from Hits taken as Lightning Damage", statOrderKey = "1655", statOrder = { 1655 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["ConsecratedGroundStationaryInfluence1_"] = { type = "Prefix", affix = "Crusader's", "You have Consecrated Ground around you while stationary", statOrderKey = "4116", statOrder = { 4116 }, level = 75, group = "ConsecratedGroundStationary", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["HolyPhysicalExplosionInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrderKey = "4342", statOrder = { 4342 }, level = 85, group = "EnemiesExplodeOnDeath", weightKey = { "body_armour_crusader", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageIntelligenceBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-8)% increased Intelligence", statOrderKey = "530", statOrder = { 530 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageIntelligenceBodyInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "(9-12)% increased Intelligence", statOrderKey = "530", statOrder = { 530 }, level = 75, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddPowerChargeOnCritInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% chance to gain a Power Charge on Critical Strike", statOrderKey = "1093", statOrder = { 1093 }, level = 80, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-4)% of Energy Shield on Kill", statOrderKey = "1027", statOrder = { 1027 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldOnKillPercentInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Recover (5-6)% of Energy Shield on Kill", statOrderKey = "1027", statOrder = { 1027 }, level = 80, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(8-11)% increased Energy Shield Recovery rate", statOrderKey = "2155", statOrder = { 2155 }, level = 68, group = "EnergyShieldRecovery", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(12-15)% increased Energy Shield Recovery rate", statOrderKey = "2155", statOrder = { 2155 }, level = 80, group = "EnergyShieldRecovery", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysTakenAsFireInfluence1"] = { type = "Prefix", affix = "Warlord's", "(5-10)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysTakenAsFireInfluence2"] = { type = "Prefix", affix = "Warlord's", "(11-15)% of Physical Damage from Hits taken as Fire Damage", statOrderKey = "1653", statOrder = { 1653 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["SocketedActiveGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of Socketed Active Skill Gems", statOrderKey = "53", statOrder = { 53 }, level = 80, group = "IncreaseSkillGemLevel", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReflectedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Warlord's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrderKey = "6076", statOrder = { 6076 }, level = 75, group = "ReflectedDamage", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllResistancesInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(10-12)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 68, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllResistancesInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(13-15)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 70, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllResistancesInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(16-18)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 75, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageStrengthBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-8)% increased Strength", statOrderKey = "528", statOrder = { 528 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageStrengthBodyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(9-12)% increased Strength", statOrderKey = "528", statOrder = { 528 }, level = 75, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnduranceChargeIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain an Endurance Charge every second if you've been Hit Recently", statOrderKey = "4491", statOrder = { 4491 }, level = 80, group = "EnduranceChargeIfHitRecently", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-4)% of Life on Kill", statOrderKey = "1026", statOrder = { 1026 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeOnKillPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Recover (5-6)% of Life on Kill", statOrderKey = "1026", statOrder = { 1026 }, level = 80, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(8-11)% increased Life Recovery rate", statOrderKey = "2153", statOrder = { 2153 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(12-15)% increased Life Recovery rate", statOrderKey = "2153", statOrder = { 2153 }, level = 80, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedAttacksManaCostInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Socketed Attacks have -15 to Total Mana Cost", statOrderKey = "263", statOrder = { 263 }, level = 85, group = "SocketedAttacksManaCost", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["PhysTakenAsColdInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(5-10)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 68, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["PhysTakenAsColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(11-15)% of Physical Damage from Hits taken as Cold Damage", statOrderKey = "1654", statOrder = { 1654 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_damage_taken_as_mod", }, }, + ["SocketedSupportGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of Socketed Support Gems", statOrderKey = "52", statOrder = { 52 }, level = 80, group = "IncreaseSpecificSocketedGemLevel", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReflectedElementalDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrderKey = "4328", statOrder = { 4328 }, level = 75, group = "ReflectedDamage", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["NearbyEnemiesAreBlindedInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Nearby Enemies are Blinded", statOrderKey = "2584", statOrder = { 2584 }, level = 75, group = "NearbyEnemiesAreBlinded", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageDexterityBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-8)% increased Dexterity", statOrderKey = "529", statOrder = { 529 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageDexterityBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(9-12)% increased Dexterity", statOrderKey = "529", statOrder = { 529 }, level = 75, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FrenzyChargeOnHitChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "10% chance to gain a Frenzy Charge on Hit", statOrderKey = "1096", statOrder = { 1096 }, level = 80, group = "FrenzyChargeOnHitChance", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaOnKillPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "Recover (3-4)% of Mana on Kill", statOrderKey = "1028", statOrder = { 1028 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaOnKillPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "Recover (5-6)% of Mana on Kill", statOrderKey = "1028", statOrder = { 1028 }, level = 80, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRecoveryRateBodyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Mana Recovery rate", statOrderKey = "2154", statOrder = { 2154 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Mana Recovery rate", statOrderKey = "2154", statOrder = { 2154 }, level = 80, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AuraEffectBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased Effect of Auras on you", statOrderKey = "1396", statOrder = { 1396 }, level = 75, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AuraEffectBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Effect of Auras on you", statOrderKey = "1396", statOrder = { 1396 }, level = 80, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLifeBodyInfluence1"] = { type = "Prefix", affix = "Hunter's", "(5-8)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLifeBodyInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(9-12)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysTakenAsChaosInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(5-10)% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1657", statOrder = { 1657 }, level = 75, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysTakenAsChaosInfluence2"] = { type = "Prefix", affix = "Hunter's", "(11-15)% of Physical Damage from Hits taken as Chaos Damage", statOrderKey = "1657", statOrder = { 1657 }, level = 83, group = "PhysicalDamageTakenAsElement", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalCurseOnEnemiesInfluence1"] = { type = "Prefix", affix = "Hunter's", "You can apply an additional Curse", statOrderKey = "1422", statOrder = { 1422 }, level = 82, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RegenerateLifeOver1SecondInfluence1"] = { type = "Prefix", affix = "Hunter's", "Every 5 seconds, Regenerate 15% of Life over one second", statOrderKey = "2966", statOrder = { 2966 }, level = 80, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["OfferingEffectInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% increased effect of Offerings", statOrderKey = "3240", statOrder = { 3240 }, level = 68, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["OfferingEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% increased effect of Offerings", statOrderKey = "3240", statOrder = { 3240 }, level = 80, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalCritWithAttacksInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(0-1)% to Critical Strike Chance", statOrderKey = "3668", statOrder = { 3668 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "no_attack_mods", "body_armour_basilisk", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalCritWithAttacksInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(1-2)% to Critical Strike Chance", statOrderKey = "3668", statOrder = { 3668 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "no_attack_mods", "body_armour_basilisk", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalCritWithSpellsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Spells have +(0-1)% to Critical Strike Chance ", statOrderKey = "6289", statOrder = { 6289 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "no_caster_mods", "body_armour_basilisk", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalCritWithSpellsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Spells have +(1-2)% to Critical Strike Chance ", statOrderKey = "6289", statOrder = { 6289 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "no_caster_mods", "body_armour_basilisk", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationPercentBodyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1-1.5)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationPercentBodyInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLightningResistanceHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield_crusader", "quiver_crusader", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLightningResistanceHighInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 80, group = "MaximumLightningResistance", weightKey = { "shield_crusader", "quiver_crusader", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLightningResistanceHighInfluence3_"] = { type = "Prefix", affix = "Crusader's", "+3% to maximum Lightning Resistance", statOrderKey = "932", statOrder = { 932 }, level = 86, group = "MaximumLightningResistance", weightKey = { "shield_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerBlockChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrderKey = "4215", statOrder = { 4215 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinimumPowerChargeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+1 to Minimum Power Charges", statOrderKey = "1079", statOrder = { 1079 }, level = 68, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinimumPowerChargeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+2 to Minimum Power Charges", statOrderKey = "1079", statOrder = { 1079 }, level = 80, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RecoverEnergyShieldPercentOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-5)% of Energy Shield when you Block", statOrderKey = "1672", statOrder = { 1672 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldRegenHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1.5-2.5)% of Energy Shield per second", statOrderKey = "1832", statOrder = { 1832 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "shield_crusader", "amulet_crusader", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToChillAttackersOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrderKey = "4064", statOrder = { 4064 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToChillAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrderKey = "4064", statOrder = { 4064 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToShockAttackersOnBlockInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrderKey = "6216", statOrder = { 6216 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToShockAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrderKey = "6216", statOrder = { 6216 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockIfBlockedSpellsInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "+(7-9)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrderKey = "6293", statOrder = { 6293 }, level = 68, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockIfBlockedSpellsInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(10-12)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrderKey = "6293", statOrder = { 6293 }, level = 75, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumFireResistanceHighInfluence1__"] = { type = "Prefix", affix = "Warlord's", "+1% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 75, group = "MaximumFireResist", weightKey = { "shield_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumFireResistanceHighInfluence2__"] = { type = "Prefix", affix = "Warlord's", "+2% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 80, group = "MaximumFireResist", weightKey = { "shield_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumFireResistanceHighInfluence3"] = { type = "Prefix", affix = "Warlord's", "+3% to maximum Fire Resistance", statOrderKey = "921", statOrder = { 921 }, level = 86, group = "MaximumFireResist", weightKey = { "shield_adjudicator", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 68, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 75, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 80, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinimumEnduranceChargeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+1 to Minimum Endurance Charges", statOrderKey = "1075", statOrder = { 1075 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinimumEnduranceChargeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+2 to Minimum Endurance Charges", statOrderKey = "1075", statOrder = { 1075 }, level = 80, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RecoverLifePercentOnBlockInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-5)% of Life when you Block", statOrderKey = "2243", statOrder = { 2243 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_adjudicator", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackBlockIfBlockedAttacksInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(5-6)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrderKey = "3924", statOrder = { 3924 }, level = 68, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackBlockIfBlockedAttacksInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(7-8)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrderKey = "3924", statOrder = { 3924 }, level = 75, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalPhysicalDamageReductionHighInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(3-5)% additional Physical Damage Reduction", statOrderKey = "1519", statOrder = { 1519 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "shield_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumColdResistanceHighInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 75, group = "MaximumColdResist", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumColdResistanceHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "+2% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 80, group = "MaximumColdResist", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumColdResistanceHighInfluence3__"] = { type = "Prefix", affix = "Redeemer's", "+3% to maximum Cold Resistance", statOrderKey = "927", statOrder = { 927 }, level = 86, group = "MaximumColdResist", weightKey = { "shield_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldDelayHighInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% faster start of Energy Shield Recharge", statOrderKey = "871", statOrder = { 871 }, level = 68, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldDelayHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% faster start of Energy Shield Recharge", statOrderKey = "871", statOrder = { 871 }, level = 75, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldDelayHighInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% faster start of Energy Shield Recharge", statOrderKey = "871", statOrder = { 871 }, level = 80, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinimumFrenzyChargeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+1 to Minimum Frenzy Charges", statOrderKey = "1077", statOrder = { 1077 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinimumFrenzyChargeInfluence2"] = { type = "Suffix", affix = "of Redemption", "+2 to Minimum Frenzy Charges", statOrderKey = "1077", statOrder = { 1077 }, level = 80, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RecoverManaPercentOnBlockInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Recover (3-5)% of your maximum Mana when you Block", statOrderKey = "5289", statOrder = { 5289 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalChanceToEvadeHighInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(3-5)% chance to Evade Attack Hits", statOrderKey = "4008", statOrder = { 4008 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "shield_eyrie", "amulet_eyrie", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to Avoid Physical Damage from Hits", statOrderKey = "2561", statOrder = { 2561 }, level = 68, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to Avoid Physical Damage from Hits", statOrderKey = "2561", statOrder = { 2561 }, level = 80, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseEffectivenessInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Effect of your Curses", statOrderKey = "1799", statOrder = { 1799 }, level = 73, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseEffectivenessInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Effect of your Curses", statOrderKey = "1799", statOrder = { 1799 }, level = 80, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AuraEffectInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Effect of Auras on you", statOrderKey = "1396", statOrder = { 1396 }, level = 73, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AuraEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Effect of Auras on you", statOrderKey = "1396", statOrder = { 1396 }, level = 80, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedAilmentEffectLowInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased Effect of Non-Damaging Ailments", statOrderKey = "6000", statOrder = { 6000 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedAilmentEffectLowInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Effect of Non-Damaging Ailments", statOrderKey = "6000", statOrder = { 6000 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumResistancesInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to all maximum Resistances", statOrderKey = "939", statOrder = { 939 }, level = 80, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumResistancesInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to all maximum Resistances", statOrderKey = "939", statOrder = { 939 }, level = 85, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumChaosResistanceHighInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to maximum Chaos Resistance", statOrderKey = "937", statOrder = { 937 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield_basilisk", "quiver_basilisk", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumChaosResistanceHighInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to maximum Chaos Resistance", statOrderKey = "937", statOrder = { 937 }, level = 80, group = "MaximumChaosResistance", weightKey = { "shield_basilisk", "quiver_basilisk", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumChaosResistanceHighInfluence3"] = { type = "Prefix", affix = "Hunter's", "+3% to maximum Chaos Resistance", statOrderKey = "937", statOrder = { 937 }, level = 86, group = "MaximumChaosResistance", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLifeInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLifeInfluence2"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["NoExtraDamageFromBleedMovingInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Moving while Bleeding doesn't cause you to take extra Damage", statOrderKey = "2372", statOrder = { 2372 }, level = 75, group = "NoExtraDamageFromBleedMoving", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GainRandomChargeOnBlockInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain an Endurance, Frenzy or Power charge when you Block", statOrderKey = "4523", statOrder = { 4523 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedGemsReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 10% reduced Mana Reservation", statOrderKey = "244", statOrder = { 244 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedGemsReducedReservationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 15% reduced Mana Reservation", statOrderKey = "244", statOrder = { 244 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DegenDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(4-6)% reduced Damage taken from Damage Over Time", statOrderKey = "1493", statOrder = { 1493 }, level = 68, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DegenDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% reduced Damage taken from Damage Over Time", statOrderKey = "1493", statOrder = { 1493 }, level = 80, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationPercentHighInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.1-1.5)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRegenerationPercentHighInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrderKey = "1194", statOrder = { 1194 }, level = 80, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (5-10)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (11-15)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalArrowInfluence1"] = { type = "Prefix", affix = "Warlord's", "Bow Attacks fire an additional Arrow", statOrderKey = "1067", statOrder = { 1067 }, level = 80, group = "AdditionalArrows", weightKey = { "no_attack_mods", "quiver_adjudicator", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraFireInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Gain (5-10)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraFireInfluence2_____"] = { type = "Prefix", affix = "Warlord's", "Gain (11-15)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaimOnHitInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to Maim on Hit", statOrderKey = "5271", statOrder = { 5271 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "no_attack_mods", "quiver_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaimOnHitInfluence2___"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 20% chance to Maim on Hit", statOrderKey = "5271", statOrder = { 5271 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_attack_mods", "quiver_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChancetoGainPhasingOnKillInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChancetoGainPhasingOnKillInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChancetoGainPhasingOnKillInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 68, group = "BleedingDamage", weightKey = { "no_attack_mods", "quiver_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedOnHitDamageInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrderKey = "1692,2349", statOrder = { 1692, 2349 }, level = 75, group = "BleedingDamage", weightKey = { "no_attack_mods", "quiver_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraColdInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityExtraInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityExtraInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaGainPerTargetInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(3-5) Mana gained for each Enemy hit by your Attacks", statOrderKey = "1021", statOrder = { 1021 }, level = 68, group = "ManaGainPerTarget", weightKey = { "no_attack_mods", "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier", statOrderKey = "583", statOrder = { 583 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Physical Damage over Time Multiplier", statOrderKey = "583", statOrder = { 583 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageOverTimeMultiplierQuiverInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 68, group = "DamageOverTimeMultiplier", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 80, group = "DamageOverTimeMultiplier", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrderKey = "2353,2361", statOrder = { 2353, 2361 }, level = 68, group = "PoisonDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonOnHitDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrderKey = "2353,2361", statOrder = { 2353, 2361 }, level = 75, group = "PoisonDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalEnergyShieldPercentInfluence1"] = { type = "Prefix", affix = "Crusader's", "(7-9)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 68, group = "EnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalEnergyShieldPercentInfluence2"] = { type = "Prefix", affix = "Crusader's", "(10-12)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 78, group = "EnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalEnergyShieldPercentInfluence3"] = { type = "Prefix", affix = "Crusader's", "(13-15)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 82, group = "EnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceShockedEnemiesInfluence1"] = { type = "Prefix", affix = "Crusader's", "(30-34)% increased Critical Strike Chance against Shocked Enemies", statOrderKey = "4131", statOrder = { 4131 }, level = 68, group = "CritChanceToShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceShockedEnemiesInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-39)% increased Critical Strike Chance against Shocked Enemies", statOrderKey = "4131", statOrder = { 4131 }, level = 75, group = "CritChanceToShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceShockedEnemiesInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(40-45)% increased Critical Strike Chance against Shocked Enemies", statOrderKey = "4131", statOrder = { 4131 }, level = 80, group = "CritChanceToShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamageInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(16-20)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 68, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "(21-25)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 75, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamageInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(26-30)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 80, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FortifyOnMeleeStunInfluence1"] = { type = "Prefix", affix = "Crusader's", "(8-12)% chance to gain Fortify when you Stun an Enemy with Melee Damage", statOrderKey = "4012", statOrder = { 4012 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "no_attack_mods", "belt_crusader", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CooldownRecoveryHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-15)% increased Cooldown Recovery Speed", statOrderKey = "3784", statOrder = { 3784 }, level = 75, group = "CooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CooldownRecoveryHighInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Cooldown Recovery Speed", statOrderKey = "3784", statOrder = { 3784 }, level = 84, group = "CooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(20-25)% increased Spell Damage during any Flask Effect", statOrderKey = "6301", statOrder = { 6301 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Spell Damage during any Flask Effect", statOrderKey = "6301", statOrder = { 6301 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Spell Damage during any Flask Effect", statOrderKey = "6301", statOrder = { 6301 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-15)% increased Energy Shield Recovery rate", statOrderKey = "2155", statOrder = { 2155 }, level = 68, group = "EnergyShieldRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Energy Shield Recovery rate", statOrderKey = "2155", statOrder = { 2155 }, level = 75, group = "EnergyShieldRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RemoveShockOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Remove Shock when you use a Flask", statOrderKey = "6186", statOrder = { 6186 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalArmourPercentInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 68, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalArmourPercentInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 78, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalArmourPercentInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 82, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageBurningEnemiesInfluence1"] = { type = "Prefix", affix = "Warlord's", "(22-27) to (41-46) added Fire Damage against Burning Enemies", statOrderKey = "6362", statOrder = { 6362 }, level = 68, group = "AddedFireDamageToBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageBurningEnemiesInfluence2"] = { type = "Prefix", affix = "Warlord's", "(28-32) to (47-51) added Fire Damage against Burning Enemies", statOrderKey = "6362", statOrder = { 6362 }, level = 75, group = "AddedFireDamageToBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageBurningEnemiesInfluence3"] = { type = "Prefix", affix = "Warlord's", "(33-39) to (52-55) added Fire Damage against Burning Enemies", statOrderKey = "6362", statOrder = { 6362 }, level = 80, group = "AddedFireDamageToBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 68, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 75, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(26-30)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 80, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedCriticalStrikeDamageTakenInfluence1"] = { type = "Prefix", affix = "Warlord's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrderKey = "833", statOrder = { 833 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedCriticalStrikeDamageTakenInfluence2_"] = { type = "Prefix", affix = "Warlord's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrderKey = "833", statOrder = { 833 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(11-15)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 75, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllDamageInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 80, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 85, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(20-25)% increased Melee Damage during any Flask Effect", statOrderKey = "5850", statOrder = { 5850 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(26-30)% increased Melee Damage during any Flask Effect", statOrderKey = "5850", statOrder = { 5850 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% increased Melee Damage during any Flask Effect", statOrderKey = "5850", statOrder = { 5850 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-15)% increased Life Recovery rate", statOrderKey = "2153", statOrder = { 2153 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% increased Life Recovery rate", statOrderKey = "2153", statOrder = { 2153 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RemoveIgniteOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Remove Ignite and Burning when you use a Flask", statOrderKey = "6182", statOrder = { 6182 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalEvasionPercentInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(7-9)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 68, group = "EvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalEvasionPercentInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(10-12)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 78, group = "EvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalEvasionPercentInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 82, group = "EvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageChilledEnemiesInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Damage with Hits against Chilled Enemies", statOrderKey = "4222", statOrder = { 4222 }, level = 68, group = "IncreasedDamageToChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageChilledEnemiesInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Damage with Hits against Chilled Enemies", statOrderKey = "4222", statOrder = { 4222 }, level = 75, group = "IncreasedDamageToChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageChilledEnemiesInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Damage with Hits against Chilled Enemies", statOrderKey = "4222", statOrder = { 4222 }, level = 80, group = "IncreasedDamageToChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskEffectInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (4-7)% increased Effect", statOrderKey = "1921", statOrder = { 1921 }, level = 75, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskEffectInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (8-10)% increased Effect", statOrderKey = "1921", statOrder = { 1921 }, level = 81, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 68, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 75, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamageInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 80, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(8-14)% increased Attack Speed during any Flask Effect", statOrderKey = "2481", statOrder = { 2481 }, level = 68, group = "SpeedDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_eyrie", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileAttackDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "6110", statOrder = { 6110 }, level = 68, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_eyrie", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileAttackDamageDuringFlaskEffectInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "6110", statOrder = { 6110 }, level = 75, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_eyrie", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileAttackDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrderKey = "6110", statOrder = { 6110 }, level = 80, group = "DamageDuringFlaskEffect", weightKey = { "no_attack_mods", "belt_eyrie", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRecoveryRateInfluence1"] = { type = "Suffix", affix = "of Redemption", "(10-15)% increased Mana Recovery rate", statOrderKey = "2154", statOrder = { 2154 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaRecoveryRateInfluence2__"] = { type = "Suffix", affix = "of Redemption", "(16-20)% increased Mana Recovery rate", statOrderKey = "2154", statOrder = { 2154 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RemoveFreezeOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of Redemption", "Remove Chill and Freeze when you use a Flask", statOrderKey = "6180", statOrder = { 6180 }, level = 75, group = "RemoveAilmentOnFlaskUse", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskChanceToNotConsumeChargesInfluence1"] = { type = "Prefix", affix = "Hunter's", "(6-10)% chance for Flasks you use to not consume Charges", statOrderKey = "3403", statOrder = { 3403 }, level = 80, group = "FlaskChargesUsed", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FlaskChargeOnCritInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain a Flask Charge when you deal a Critical Strike", statOrderKey = "2580", statOrder = { 2580 }, level = 75, group = "FlaskChargeOnCrit", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "(16-20)% increased Chaos Damage", statOrderKey = "708", statOrder = { 708 }, level = 68, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(21-25)% increased Chaos Damage", statOrderKey = "708", statOrder = { 708 }, level = 75, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "(26-30)% increased Chaos Damage", statOrderKey = "708", statOrder = { 708 }, level = 80, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageAllAttributesInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-9)% increased Attributes", statOrderKey = "527", statOrder = { 527 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentageAllAttributesInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(10-12)% increased Attributes", statOrderKey = "527", statOrder = { 527 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CastSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(8-14)% increased Cast Speed during any Flask Effect", statOrderKey = "3971", statOrder = { 3971 }, level = 68, group = "SpeedDuringFlaskEffect", weightKey = { "no_caster_mods", "belt_basilisk", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArmourPenetrationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(11-8)% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 68, group = "ArmourPenetration", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArmourPenetrationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(15-12)% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 75, group = "ArmourPenetration", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-10)% increased Movement Speed during any Flask Effect", statOrderKey = "2366", statOrder = { 2366 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAttackDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "-(35-25) Physical Damage taken from Attack Hits", statOrderKey = "1482", statOrder = { 1482 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAttackDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "-(45-36) Physical Damage taken from Attack Hits", statOrderKey = "1482", statOrder = { 1482 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToShockAddedDamageInfluence1"] = { type = "Prefix", affix = "Crusader's", "(4-6)% chance to Shock", "Adds (3-7) to (34-38) Lightning Damage against Shocked Enemies", statOrderKey = "1289,4546", statOrder = { 1289, 4546 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToShockAddedDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "(7-10)% chance to Shock", "Adds (6-10) to (41-45) Lightning Damage against Shocked Enemies", statOrderKey = "1289,4546", statOrder = { 1289, 4546 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamagePerPowerChargeInfluence1__"] = { type = "Prefix", affix = "Crusader's", "1 to (6-8) Lightning Damage per Power Charge", statOrderKey = "5888", statOrder = { 5888 }, level = 75, group = "AddedLightningDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedLightningDamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(1-2) to (9-11) Lightning Damage per Power Charge", statOrderKey = "5888", statOrder = { 5888 }, level = 80, group = "AddedLightningDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamageRingInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(15-17)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 68, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellDamageRingInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 75, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellDamageRingInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(22-25)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 80, group = "SpellDamage", weightKey = { "no_caster_mods", "ring_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["ReducedCurseEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% reduced Effect of Curses on you", statOrderKey = "1424", statOrder = { 1424 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedCurseEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(30-35)% reduced Effect of Curses on you", statOrderKey = "1424", statOrder = { 1424 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitConductivityInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Level 5 Conductivity on Hit", statOrderKey = "1722", statOrder = { 1722 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitConductivityInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Level 8 Conductivity on Hit", statOrderKey = "1722", statOrder = { 1722 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeGainedOnSpellHitInfluence1"] = { type = "Prefix", affix = "Crusader's", "+(8-12) Life gained for each Enemy hit by your Spells", statOrderKey = "1016", statOrder = { 1016 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeGainedOnSpellHitInfluence2"] = { type = "Prefix", affix = "Crusader's", "+(13-15) Life gained for each Enemy hit by your Spells", statOrderKey = "1016", statOrder = { 1016 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "no_caster_mods", "ring_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalCriticalStrikeChanceRingInfluence1___"] = { type = "Suffix", affix = "of the Crusade", "(15-17)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 68, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalCriticalStrikeChanceRingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 75, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalCriticalStrikeChanceRingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 80, group = "CriticalStrikeChanceIncrease", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToIgniteAddedDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(4-6)% chance to Ignite", "Adds (9-12) to (27-30) Fire Damage against Ignited Enemies", statOrderKey = "1282,4544", statOrder = { 1282, 4544 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToIgniteAddedDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(7-10)% chance to Ignite", "Adds (13-16) to (33-36) Fire Damage against Ignited Enemies", statOrderKey = "1282,4544", statOrder = { 1282, 4544 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamagePerEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "(2-3) to (4-5) Fire Damage per Endurance Charge", statOrderKey = "5884", statOrder = { 5884 }, level = 75, group = "AddedFireDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamagePerEnduranceChargeInfluence2__"] = { type = "Prefix", affix = "Warlord's", "(3-4) to (6-7) Fire Damage per Endurance Charge", statOrderKey = "5884", statOrder = { 5884 }, level = 80, group = "AddedFireDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageRingInfluence1"] = { type = "Prefix", affix = "Warlord's", "(15-17)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 68, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageRingInfluence2"] = { type = "Prefix", affix = "Warlord's", "(18-21)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 75, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageRingInfluence3"] = { type = "Prefix", affix = "Warlord's", "(22-25)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 80, group = "MeleeDamage", weightKey = { "no_attack_mods", "ring_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitFlammabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Level 5 Flammability on Hit", statOrderKey = "1725", statOrder = { 1725 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitFlammabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Level 8 Flammability on Hit", statOrderKey = "1725", statOrder = { 1725 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitVulnerabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Level 5 Vulnerability on Hit", statOrderKey = "1717", statOrder = { 1717 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitVulnerabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Level 8 Vulnerability on Hit", statOrderKey = "1717", statOrder = { 1717 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeMultiplierRingInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeMultiplierRingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(17-19)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeMultiplierRingInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(20-22)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedDamageAndDurationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(8-12)% increased Damage with Bleeding", "(5-6)% increased Bleeding Duration", statOrderKey = "2349,3779", statOrder = { 2349, 3779 }, level = 68, group = "BleedingDamage", weightKey = { "no_attack_mods", "ring_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedDamageAndDurationInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(13-17)% increased Damage with Bleeding", "(7-8)% increased Bleeding Duration", statOrderKey = "2349,3779", statOrder = { 2349, 3779 }, level = 75, group = "BleedingDamage", weightKey = { "no_attack_mods", "ring_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedDamageAndDurationInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(18-22)% increased Damage with Bleeding", "(9-10)% increased Bleeding Duration", statOrderKey = "2349,3779", statOrder = { 2349, 3779 }, level = 80, group = "BleedingDamage", weightKey = { "no_attack_mods", "ring_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToFreezeAddedDamageInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to Freeze", "Adds (9-12) to (27-30) Cold Damage against Chilled or Frozen Enemies", statOrderKey = "1285,4543", statOrder = { 1285, 4543 }, level = 68, group = "AilmentChanceAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToFreezeAddedDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to Freeze", "Adds (13-16) to (33-36) Cold Damage against Chilled or Frozen Enemies", statOrderKey = "1285,4543", statOrder = { 1285, 4543 }, level = 75, group = "AilmentChanceAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(2-3) to (4-5) Cold Damage per Frenzy Charge", statOrderKey = "3447", statOrder = { 3447 }, level = 75, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedColdDamagePerFrenzyChargeInfluence2__"] = { type = "Prefix", affix = "Redeemer's", "(3-4) to (6-7) Cold Damage per Frenzy Charge", statOrderKey = "3447", statOrder = { 3447 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileAttackDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-17)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_eyrie", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileAttackDamageRingInfluence2___"] = { type = "Prefix", affix = "Redeemer's", "(18-21)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_eyrie", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileAttackDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(22-25)% increased Projectile Attack Damage", statOrderKey = "1256", statOrder = { 1256 }, level = 80, group = "ProjectileAttackDamage", weightKey = { "no_attack_mods", "ring_eyrie", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (15-17)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 68, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageRingInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-21)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 75, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (22-25)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 80, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitFrostbiteInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Level 5 Frostbite on Hit", statOrderKey = "1726", statOrder = { 1726 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitFrostbiteInfluence2"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Level 8 Frostbite on Hit", statOrderKey = "1726", statOrder = { 1726 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackSpeedHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Attack Speed if you've been Hit Recently", statOrderKey = "3734", statOrder = { 3734 }, level = 75, group = "AttackSpeedHitRecently", weightKey = { "no_attack_mods", "ring_eyrie", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedExperienceGainInfluence1"] = { type = "Prefix", affix = "Hunter's", "(2-3)% increased Experience gain", statOrderKey = "902", statOrder = { 902 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_basilisk", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReflectedPhysicalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrderKey = "6076", statOrder = { 6076 }, level = 68, group = "ReflectedDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReflectedPhysicalDamageRingInfluence2_"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrderKey = "6076", statOrder = { 6076 }, level = 75, group = "ReflectedDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReflectedElementalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrderKey = "4328", statOrder = { 4328 }, level = 68, group = "ReflectedDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReflectedElementalDamageRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrderKey = "4328", statOrder = { 4328 }, level = 75, group = "ReflectedDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldDelayInfluence1"] = { type = "Prefix", affix = "Hunter's", "(15-20)% faster start of Energy Shield Recharge", statOrderKey = "871", statOrder = { 871 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldDelayInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(20-24)% faster start of Energy Shield Recharge", statOrderKey = "871", statOrder = { 871 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeGainPerTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "+(10-15) Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 68, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "ring_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LifeGainPerTargetInfluence2__"] = { type = "Prefix", affix = "Hunter's", "+(16-20) Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 75, group = "LifeGainPerTarget", weightKey = { "no_attack_mods", "ring_basilisk", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["CurseOnHitElementalWeaknessInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Level 5 Elemental Weakness on Hit", statOrderKey = "1719", statOrder = { 1719 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitElementalWeaknessInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Level 8 Elemental Weakness on Hit", statOrderKey = "1719", statOrder = { 1719 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitDespairInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Level 5 Despair on Hit", statOrderKey = "1723", statOrder = { 1723 }, level = 75, group = "CurseOnHitLevel", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitDespairInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Level 8 Despair on Hit", statOrderKey = "1723", statOrder = { 1723 }, level = 80, group = "CurseOnHitLevel", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamageAndDurationInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(5-6)% increased Poison Duration", "(8-12)% increased Damage with Poison", statOrderKey = "2350,2361", statOrder = { 2350, 2361 }, level = 68, group = "PoisonDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamageAndDurationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-8)% increased Poison Duration", "(13-17)% increased Damage with Poison", statOrderKey = "2350,2361", statOrder = { 2350, 2361 }, level = 75, group = "PoisonDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamageAndDurationInfluence3__"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Poison Duration", "(18-22)% increased Damage with Poison", statOrderKey = "2350,2361", statOrder = { 2350, 2361 }, level = 80, group = "PoisonDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrderKey = "966", statOrder = { 966 }, level = 68, group = "LightningDamageLifeLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamageESLeechInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrderKey = "3790", statOrder = { 3790 }, level = 68, group = "LightningDamageLifeLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePer15IntelligenceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 15 Intelligence", statOrderKey = "4213", statOrder = { 4213 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerPowerChargeInfluence1"] = { type = "Prefix", affix = "Crusader's", "(3-4)% increased Damage per Power Charge", statOrderKey = "4220", statOrder = { 4220 }, level = 68, group = "AllDamage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(5-6)% increased Damage per Power Charge", statOrderKey = "4220", statOrder = { 4220 }, level = 80, group = "AllDamage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+1 to Level of all Lightning Skill Gems", statOrderKey = "4735", statOrder = { 4735 }, level = 82, group = "GlobalDamageTypeGemLevel", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningPenetrationInfluence1__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (4-7)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 68, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningPenetrationInfluence2__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (8-10)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 82, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumLifeLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Recovery per second from Life Leech", statOrderKey = "1008", statOrder = { 1008 }, level = 68, group = "MaximumLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumEnergyShieldLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Recovery per second from Energy Shield Leech", statOrderKey = "1011", statOrder = { 1011 }, level = 68, group = "MaximumLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumSpellBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Chance to Block Spell Damage", statOrderKey = "1249", statOrder = { 1249 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WrathReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (20-25)% reduced Mana Reservation", statOrderKey = "3220", statOrder = { 3220 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DisciplineReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (25-30)% reduced Mana Reservation", statOrderKey = "3215", statOrder = { 3215 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PurityOfLightningReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (25-30)% reduced Mana Reservation", statOrderKey = "3218", statOrder = { 3218 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ZealotryReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (20-25)% reduced Mana Reservation", statOrderKey = "6511", statOrder = { 6511 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockAmuletInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(4-5)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockAmuletInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(6-7)% Chance to Block Spell Damage", statOrderKey = "510", statOrder = { 510 }, level = 80, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrderKey = "962", statOrder = { 962 }, level = 68, group = "FireDamageLifeLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageESLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrderKey = "3789", statOrder = { 3789 }, level = 68, group = "FireDamageLifeLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePer15StrengthInfluence1"] = { type = "Prefix", affix = "Warlord's", "1% increased Damage per 15 Strength", statOrderKey = "4214", statOrder = { 4214 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerEnduranceChargeInfluence1__"] = { type = "Prefix", affix = "Warlord's", "(3-4)% increased Damage per Endurance Charge", statOrderKey = "2378", statOrder = { 2378 }, level = 68, group = "AllDamage", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerEnduranceChargeInfluence2"] = { type = "Prefix", affix = "Warlord's", "(5-6)% increased Damage per Endurance Charge", statOrderKey = "2378", statOrder = { 2378 }, level = 80, group = "AllDamage", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Fire Skill Gems", statOrderKey = "4432", statOrder = { 4432 }, level = 82, group = "GlobalDamageTypeGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalPhysicalGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Physical Skill Gems", statOrderKey = "6077", statOrder = { 6077 }, level = 82, group = "GlobalDamageTypeGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (4-7)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 68, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (8-10)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 82, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumAttackBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+2% to maximum Chance to Block Attack Damage", statOrderKey = "1248", statOrder = { 1248 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AngerReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (20-25)% reduced Mana Reservation", statOrderKey = "2602", statOrder = { 2602 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DeterminationReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Determination has (20-25)% reduced Mana Reservation", statOrderKey = "3214", statOrder = { 3214 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PurityOfFireReducedReservationInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (25-30)% reduced Mana Reservation", statOrderKey = "3217", statOrder = { 3217 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PrideReducedReservationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Pride has (20-25)% reduced Mana Reservation", statOrderKey = "6106", statOrder = { 6106 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrderKey = "964", statOrder = { 964 }, level = 68, group = "ColdDamageLifeLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamageESLeechInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrderKey = "3787", statOrder = { 3787 }, level = 68, group = "ColdDamageLifeLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePer15DexterityInfluence1"] = { type = "Prefix", affix = "Redeemer's", "1% increased Damage per 15 Dexterity", statOrderKey = "4212", statOrder = { 4212 }, level = 80, group = "DamagePer15Attributes", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(3-4)% increased Damage per Frenzy Charge", statOrderKey = "2468", statOrder = { 2468 }, level = 68, group = "AllDamage", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerFrenzyChargeInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(5-6)% increased Damage per Frenzy Charge", statOrderKey = "2468", statOrder = { 2468 }, level = 80, group = "AllDamage", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalColdGemLevelInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of all Cold Skill Gems", statOrderKey = "4105", statOrder = { 4105 }, level = 82, group = "GlobalDamageTypeGemLevel", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdPenetrationInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (4-7)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 68, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (8-10)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 82, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumAttackDodgeChanceInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+2% to maximum Chance to Dodge Attack Hits", statOrderKey = "5824", statOrder = { 5824 }, level = 68, group = "MaximumDodgeChance", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaximumSpellDodgeChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "+2% to maximum Chance to Dodge Spell Hits", statOrderKey = "5845", statOrder = { 5845 }, level = 68, group = "MaximumDodgeChance", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["HatredReducedReservationInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Hatred has (20-25)% reduced Mana Reservation", statOrderKey = "3212", statOrder = { 3212 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GraceReducedReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (20-25)% reduced Mana Reservation", statOrderKey = "3221", statOrder = { 3221 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PurityOfIceReducedReservationInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (25-30)% reduced Mana Reservation", statOrderKey = "3213", statOrder = { 3213 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrderKey = "960", statOrder = { 960 }, level = 68, group = "PhysicalDamageLifeLeech", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosDamageLifeLeechInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrderKey = "967", statOrder = { 967 }, level = 68, group = "ChaosDamageLifeLeech", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalChaosGemLevelInfluence1__"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Chaos Skill Gems", statOrderKey = "4053", statOrder = { 4053 }, level = 82, group = "GlobalDamageTypeGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalStrengthGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Strength Skill Gems", statOrderKey = "6342", statOrder = { 6342 }, level = 82, group = "GlobalAttributeTypeGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalDexterityGemLevelInfluence1_"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Dexterity Skill Gems", statOrderKey = "4269", statOrder = { 4269 }, level = 82, group = "GlobalAttributeTypeGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["GlobalIntelligenceGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Intelligence Skill Gems", statOrderKey = "4649", statOrder = { 4649 }, level = 82, group = "GlobalAttributeTypeGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (3-4)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (5-6)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MalevolenceReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (20-25)% reduced Mana Reservation", statOrderKey = "4263", statOrder = { 4263 }, level = 75, group = "ReducedManaReservationsCost", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RandomChargeOnKillInfluence1___"] = { type = "Suffix", affix = "of the Hunt", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2788", statOrder = { 2788 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["RandomChargeOnKillInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrderKey = "2788", statOrder = { 2788 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedAttributeRequirementsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrderKey = "1750", statOrder = { 1750 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedAttributeRequirementsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrderKey = "1750", statOrder = { 1750 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrderKey = "570,946", statOrder = { 570, 946 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrderKey = "570,946", statOrder = { 570, 946 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 0, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrderKey = "570,946", statOrder = { 570, 946 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 0, 150, 150, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrderKey = "570,946", statOrder = { 570, 946 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence5_"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrderKey = "570,946", statOrder = { 570, 946 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 0, 50, 50, 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrderKey = "570,734", statOrder = { 570, 734 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrderKey = "570,734", statOrder = { 570, 734 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 0, 0, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence3"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrderKey = "570,734", statOrder = { 570, 734 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 0, 0, 150, 150, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrderKey = "570,734", statOrder = { 570, 734 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrderKey = "570,734", statOrder = { 570, 734 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 0, 0, 50, 50, 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrderKey = "570,786", statOrder = { 570, 786 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrderKey = "570,786", statOrder = { 570, 786 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 0, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrderKey = "570,786", statOrder = { 570, 786 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 0, 0, 150, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrderKey = "570,786", statOrder = { 570, 786 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 0, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrderKey = "570,786", statOrder = { 570, 786 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 0, 0, 50, 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrderKey = "570,810", statOrder = { 570, 810 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrderKey = "570,810", statOrder = { 570, 810 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 0, 0, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrderKey = "570,810", statOrder = { 570, 810 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 0, 0, 150, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrderKey = "570,810", statOrder = { 570, 810 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 0, 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrderKey = "570,810", statOrder = { 570, 810 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 0, 0, 50, 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrderKey = "570,837", statOrder = { 570, 837 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrderKey = "570,837", statOrder = { 570, 837 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 0, 0, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrderKey = "570,837", statOrder = { 570, 837 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 0, 0, 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrderKey = "570,837", statOrder = { 570, 837 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrderKey = "570,837", statOrder = { 570, 837 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 0, 0, 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrderKey = "570,1140", statOrder = { 570, 1140 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrderKey = "570,1140", statOrder = { 570, 1140 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 0, 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrderKey = "570,1140", statOrder = { 570, 1140 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 0, 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrderKey = "570,1140", statOrder = { 570, 1140 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 0, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrderKey = "570,1140", statOrder = { 570, 1140 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 0, 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrderKey = "570,1068", statOrder = { 570, 1068 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrderKey = "570,1068", statOrder = { 570, 1068 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrderKey = "570,1068", statOrder = { 570, 1068 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrderKey = "570,1068", statOrder = { 570, 1068 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrderKey = "570,1068", statOrder = { 570, 1068 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(25-34)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrderKey = "570,1064", statOrder = { 570, 1064 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence2"] = { type = "Prefix", affix = "Hunter's", "(35-44)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrderKey = "570,1064", statOrder = { 570, 1064 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 0, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence3"] = { type = "Prefix", affix = "Hunter's", "(45-54)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrderKey = "570,1064", statOrder = { 570, 1064 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 0, 150, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(55-64)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrderKey = "570,1064", statOrder = { 570, 1064 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 0, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence5_"] = { type = "Prefix", affix = "Hunter's", "(65-69)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrderKey = "570,1064", statOrder = { 570, 1064 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "no_physical_damage_mods", "no_attack_mods", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 0, 50, 50, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageAndPenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-10) to (15-18) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 68, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (12-16) to (24-28) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 71, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 74, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 77, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (26-35) to (53-61) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 80, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (13-16) to (24-29) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 68, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (19-26) to (38-45) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 71, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (27-35) to (53-62) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 74, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (34-45) to (67-78) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 77, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 0, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (42-56) to (85-98) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrderKey = "689,2941", statOrder = { 689, 2941 }, level = 80, group = "FireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (7-9) to (14-16) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 68, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-14) to (22-25) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 71, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (15-20) to (30-35) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 74, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (19-25) to (38-44) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 77, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (23-32) to (48-55) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 80, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-14) to (22-26) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 68, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (18-22) to (35-40) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 71, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Adds (24-32) to (48-56) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 74, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (30-40) to (61-70) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 77, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Redeemer's", "Adds (37-51) to (77-88) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrderKey = "696,2942", statOrder = { 696, 2942 }, level = 80, group = "ColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds 2 to (25-29) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 68, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageAndPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (40-45) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 71, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (55-63) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 74, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (70-79) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 77, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (3-8) to (89-99) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 80, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Adds 3 to (40-46) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 68, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (64-72) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 71, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (3-8) to (88-101) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 74, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 0, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (3-10) to (112-126) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 77, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 0, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (5-13) to (142-158) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrderKey = "705,2943", statOrder = { 705, 2943 }, level = 80, group = "LightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedChaosDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (5-7) to (11-13) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 68, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedChaosDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (9-11) to (17-20) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 71, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedChaosDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (12-16) to (24-28) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 74, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedChaosDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (15-20) to (30-35) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 77, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedChaosDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (18-25) to (38-44) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 80, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (8-11) to (18-21) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 68, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (28-32) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 71, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (19-25) to (38-45) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 74, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (24-32) to (49-56) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 77, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 0, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (30-41) to (62-70) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrderKey = "711,5087", statOrder = { 711, 5087 }, level = 80, group = "ChaosDamageHybrid", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 0, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["SpellAddedFireDamagePenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (6-8) to (12-14) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 68, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamagePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (10-13) to (19-22) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 71, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (13-18) to (27-31) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 74, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 77, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 80, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 0, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-11) to (17-19) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 68, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_adjudicator", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (13-17) to (26-30) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 71, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_adjudicator", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Adds (18-24) to (36-42) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 74, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_adjudicator", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (45-53) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 77, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_adjudicator", "default", }, weightVal = { 0, 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Warlord's", "Adds (28-38) to (57-66) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrderKey = "725,2166", statOrder = { 725, 2166 }, level = 80, group = "SpellAddedFireDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_adjudicator", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamagePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (5-7) to (10-12) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 68, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (16-18) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 71, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-15) to (22-25) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 74, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (14-18) to (27-32) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 77, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (34-40) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 80, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 0, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (15-18) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 68, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (12-16) to (23-27) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 71, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-22) to (33-38) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 74, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence4_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-27) to (41-48) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 77, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (26-34) to (52-60) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrderKey = "726,2167", statOrder = { 726, 2167 }, level = 80, group = "SpellAddedColdDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamagePenetrationInfluence1___"] = { type = "Prefix", affix = "Crusader's", "Adds (1-2) to (21-22) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 68, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (33-35) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 71, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (46-49) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 74, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamagePenetrationInfluence4_"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (58-61) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 77, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (73-77) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 80, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 0, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (32-34) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 68, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_crusader", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (49-52) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 71, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_crusader", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (69-73) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 74, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_crusader", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence4__"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (87-92) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 77, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_crusader", "default", }, weightVal = { 0, 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (109-115) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrderKey = "727,2168", statOrder = { 727, 2168 }, level = 80, group = "SpellAddedLightningDamageHybrid", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "staff_crusader", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["LocalWeaponFirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (9-10)% Fire Resistance", statOrderKey = "2941", statOrder = { 2941 }, level = 68, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalWeaponFirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (11-12)% Fire Resistance", statOrderKey = "2941", statOrder = { 2941 }, level = 73, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalWeaponFirePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrderKey = "2941", statOrder = { 2941 }, level = 78, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalWeaponColdPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (9-10)% Cold Resistance", statOrderKey = "2942", statOrder = { 2942 }, level = 68, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalWeaponColdPenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (11-12)% Cold Resistance", statOrderKey = "2942", statOrder = { 2942 }, level = 73, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalWeaponColdPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrderKey = "2942", statOrder = { 2942 }, level = 78, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalWeaponLightningPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (9-10)% Lightning Resistance", statOrderKey = "2943", statOrder = { 2943 }, level = 68, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalWeaponLightningPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (11-12)% Lightning Resistance", statOrderKey = "2943", statOrder = { 2943 }, level = 73, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalWeaponLightningPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrderKey = "2943", statOrder = { 2943 }, level = 78, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalWeaponChaosPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrderKey = "5087", statOrder = { 5087 }, level = 68, group = "ChaosPenetrationWithAttacks", weightKey = { "no_attack_mods", "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 = { 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalWeaponChaosPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Chaos Resistance", statOrderKey = "5087", statOrder = { 5087 }, level = 73, group = "ChaosPenetrationWithAttacks", weightKey = { "no_attack_mods", "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 = { 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalWeaponChaosPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Chaos Resistance", statOrderKey = "5087", statOrder = { 5087 }, level = 78, group = "ChaosPenetrationWithAttacks", weightKey = { "no_attack_mods", "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 = { 0, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalWeaponElementalPenetrationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrderKey = "2940", statOrder = { 2940 }, level = 68, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalWeaponElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Elemental Resistances", statOrderKey = "2940", statOrder = { 2940 }, level = 73, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalWeaponElementalPenetrationInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Elemental Resistances", statOrderKey = "2940", statOrder = { 2940 }, level = 78, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "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 = { 0, 0, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 6% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 68, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 7% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 73, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 8% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 78, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (10-11)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 68, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_adjudicator", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (12-13)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 73, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_adjudicator", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (14-15)% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 78, group = "FireResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_adjudicator", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 6% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 68, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 7% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 73, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 8% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 78, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (10-11)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 68, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_eyrie", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (12-13)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 73, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_eyrie", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistancePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (14-15)% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 78, group = "ColdResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_eyrie", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistancePenetrationInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 6% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 68, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 7% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 73, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 8% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 78, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistancePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (10-11)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 68, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_crusader", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistancePenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (12-13)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 73, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_crusader", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistancePenetrationTwoHandInfluence3__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (14-15)% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 78, group = "LightningResistancePenetration", weightKey = { "no_elemental_damage_mods", "staff_crusader", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 4% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 68, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalResistancePenetrationInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 5% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 73, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 6% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 78, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (7-8)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 68, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "staff_basilisk", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (9-10)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 73, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "staff_basilisk", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (11-12)% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 78, group = "ElementalPenetration", weightKey = { "no_elemental_damage_mods", "staff_basilisk", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraFireWeaponInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraFireWeaponInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraFireWeaponInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence1__"] = { type = "Prefix", affix = "Warlord's", "Gain (16-20)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence2__"] = { type = "Prefix", affix = "Warlord's", "Gain (21-26)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Warlord's", "Gain (27-30)% of Physical Damage as Extra Fire Damage", statOrderKey = "1183", statOrder = { 1183 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "no_elemental_damage_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraColdWeaponInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraColdWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraColdWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (16-20)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 0, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (21-26)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 0, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (27-30)% of Physical Damage as Extra Cold Damage", statOrderKey = "1184", statOrder = { 1184 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "no_elemental_damage_mods", "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 0, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraLightningWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraLightningWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraLightningWeaponInfluence3_"] = { type = "Prefix", affix = "Crusader's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (16-20)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (21-26)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Crusader's", "Gain (27-30)% of Physical Damage as Extra Lightning Damage", statOrderKey = "1185", statOrder = { 1185 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "no_elemental_damage_mods", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 0, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedFireDamagePerStrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "3721", statOrder = { 3721 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_basilisk", "axe_basilisk", "mace_basilisk", "sceptre_basilisk", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["AddedFireDamagePerStrengthTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrderKey = "3721", statOrder = { 3721 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["AddedColdDamagePerDexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "3751", statOrder = { 3751 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["AddedColdDamagePerDexterityTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrderKey = "3751", statOrder = { 3751 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "default", }, weightVal = { 0, 0, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["AddedLightningDamagePerIntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "3723", statOrder = { 3723 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 0, 0, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["AddedLightningDamagePerIntelligenceTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrderKey = "3723", statOrder = { 3723 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "no_elemental_damage_mods", "no_attack_mods", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 0, 0, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["SpellDamagePer16StrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Strength", statOrderKey = "6309", statOrder = { 6309 }, level = 68, group = "SpellDamagePerStrength", weightKey = { "no_caster_mods", "sceptre_basilisk", "default", }, weightVal = { 0, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellDamagePer16DexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Dexterity", statOrderKey = "6307", statOrder = { 6307 }, level = 68, group = "SpellDamagePerDexterity", weightKey = { "no_caster_mods", "rune_dagger_basilisk", "default", }, weightVal = { 0, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellDamagePer16IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Intelligence", statOrderKey = "6308", statOrder = { 6308 }, level = 68, group = "SpellDamagePerIntelligence", weightKey = { "no_caster_mods", "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 0, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellDamagePer10StrengthInfluence1_"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Strength", statOrderKey = "6306", statOrder = { 6306 }, level = 68, group = "SpellDamagePerStrength", weightKey = { "no_caster_mods", "staff_basilisk", "default", }, weightVal = { 0, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["SpellDamagePer10IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Intelligence", statOrderKey = "1917", statOrder = { 1917 }, level = 68, group = "SpellDamagePerIntelligence", weightKey = { "no_caster_mods", "staff_basilisk", "default", }, weightVal = { 0, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_caster_mod", }, }, + ["BurningDamagePrefixInfluence1___"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BurningDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 71, group = "WeaponCasterDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BurningDamagePrefixInfluence3"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BurningDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 78, group = "WeaponCasterDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BurningDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BurningDamagePrefixTwoHandInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 71, group = "WeaponCasterDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BurningDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BurningDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 78, group = "WeaponCasterDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedingDamagePrefixInfluence1"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedingDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 71, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 300, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedingDamagePrefixInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedingDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 78, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 100, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedingDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedingDamagePrefixTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 71, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedingDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedingDamagePrefixTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 78, group = "WeaponCasterDamagePrefix", weightKey = { "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 0, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamagePrefixInfluence1__"] = { type = "Prefix", affix = "Hunter's", "(60-69)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamagePrefixInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(70-79)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 71, group = "WeaponCasterDamagePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamagePrefixInfluence3"] = { type = "Prefix", affix = "Hunter's", "(80-89)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamagePrefixInfluence4"] = { type = "Prefix", affix = "Hunter's", "(90-94)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 78, group = "WeaponCasterDamagePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "(100-109)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 68, group = "WeaponCasterDamagePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamagePrefixTwoHandInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(110-119)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 71, group = "WeaponCasterDamagePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "(120-129)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 75, group = "WeaponCasterDamagePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(130-134)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 78, group = "WeaponCasterDamagePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterIgniteDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (8-12)% faster", statOrderKey = "1762", statOrder = { 1762 }, level = 68, group = "FasterDamageAilments", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterIgniteDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (13-15)% faster", statOrderKey = "1762", statOrder = { 1762 }, level = 73, group = "FasterDamageAilments", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterIgniteDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (18-21)% faster", statOrderKey = "1762", statOrder = { 1762 }, level = 68, group = "FasterDamageAilments", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterIgniteDamageTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (22-25)% faster", statOrderKey = "1762", statOrder = { 1762 }, level = 73, group = "FasterDamageAilments", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterBleedDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (8-12)% faster", statOrderKey = "4406", statOrder = { 4406 }, level = 68, group = "FasterDamageAilments", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterBleedDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (13-15)% faster", statOrderKey = "4406", statOrder = { 4406 }, level = 73, group = "FasterDamageAilments", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterBleedDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (18-21)% faster", statOrderKey = "4406", statOrder = { 4406 }, level = 68, group = "FasterDamageAilments", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterBleedDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (22-25)% faster", statOrderKey = "4406", statOrder = { 4406 }, level = 73, group = "FasterDamageAilments", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterPoisonDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (8-12)% faster", statOrderKey = "4407", statOrder = { 4407 }, level = 68, group = "FasterDamageAilments", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterPoisonDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (13-15)% faster", statOrderKey = "4407", statOrder = { 4407 }, level = 73, group = "FasterDamageAilments", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterPoisonDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (18-21)% faster", statOrderKey = "4407", statOrder = { 4407 }, level = 68, group = "FasterDamageAilments", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FasterPoisonDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (22-25)% faster", statOrderKey = "4407", statOrder = { 4407 }, level = 73, group = "FasterDamageAilments", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ImpaleEffectWeaponInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(7-9)% increased Impale Effect", statOrderKey = "4636", statOrder = { 4636 }, level = 68, group = "ImpaleEffect", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ImpaleEffectWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Impale Effect", statOrderKey = "4636", statOrder = { 4636 }, level = 71, group = "ImpaleEffect", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ImpaleEffectWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(13-15)% increased Impale Effect", statOrderKey = "4636", statOrder = { 4636 }, level = 75, group = "ImpaleEffect", weightKey = { "no_physical_damage_mods", "no_attack_mods", "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ImpaleEffectTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(14-16)% increased Impale Effect", statOrderKey = "4636", statOrder = { 4636 }, level = 68, group = "ImpaleEffect", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ImpaleEffectTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(17-19)% increased Impale Effect", statOrderKey = "4636", statOrder = { 4636 }, level = 71, group = "ImpaleEffect", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ImpaleEffectTwoHandWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(20-22)% increased Impale Effect", statOrderKey = "4636", statOrder = { 4636 }, level = 75, group = "ImpaleEffect", weightKey = { "no_physical_damage_mods", "no_attack_mods", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 0, 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ConvertPhysicalToFireInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Fire Damage", statOrderKey = "1206", statOrder = { 1206 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["ConvertPhysicalToFireInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Fire Damage", statOrderKey = "1206", statOrder = { 1206 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["ConvertPhysicalToColdInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Cold Damage", statOrderKey = "1208", statOrder = { 1208 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["ConvertPhysicalToColdInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Cold Damage", statOrderKey = "1208", statOrder = { 1208 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["ConvertPhysicalToLightningInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Lightning Damage", statOrderKey = "1210", statOrder = { 1210 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["ConvertPhysicalToLightningInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Lightning Damage", statOrderKey = "1210", statOrder = { 1210 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_physical_conversion_mod", }, }, + ["ConvertPhysicalToChaosInfluenceWeapon1"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1212", statOrder = { 1212 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ConvertPhysicalToChaosInfluenceWeapon2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrderKey = "1212", statOrder = { 1212 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArmourPenetrationWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(16-13)% to Total Physical Damage Reduction against this Weapon's Hits", statOrderKey = "571", statOrder = { 571 }, level = 68, group = "ArmourPenetration", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArmourPenetrationWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(20-17)% to Total Physical Damage Reduction against this Weapon's Hits", statOrderKey = "571", statOrder = { 571 }, level = 71, group = "ArmourPenetration", weightKey = { "no_attack_mods", "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArmourPenetrationTwoHandWeaponInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(16-13)% to Total Physical Damage Reduction against this Weapon's Hits", statOrderKey = "571", statOrder = { 571 }, level = 68, group = "ArmourPenetration", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArmourPenetrationTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(20-17)% to Total Physical Damage Reduction against this Weapon's Hits", statOrderKey = "571", statOrder = { 571 }, level = 71, group = "ArmourPenetration", weightKey = { "no_attack_mods", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArmourPenetrationSpellWeaponInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(8-7)% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 68, group = "ArmourPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArmourPenetrationSpellWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(10-9)% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 71, group = "ArmourPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArmourPenetrationSpellTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(16-13)% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 68, group = "ArmourPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArmourPenetrationSpellTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Enemies have -(20-17)% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 71, group = "ArmourPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireExposureOnHitWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(11-15)% chance to inflict Fire Exposure on Hit", statOrderKey = "3795", statOrder = { 3795 }, level = 75, group = "ExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to inflict Fire Exposure on Hit", statOrderKey = "3795", statOrder = { 3795 }, level = 80, group = "ExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(11-15)% chance to inflict Cold Exposure on Hit", statOrderKey = "3794", statOrder = { 3794 }, level = 75, group = "ExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% chance to inflict Cold Exposure on Hit", statOrderKey = "3794", statOrder = { 3794 }, level = 80, group = "ExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% chance to inflict Lightning Exposure on Hit", statOrderKey = "3796", statOrder = { 3796 }, level = 75, group = "ExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% chance to inflict Lightning Exposure on Hit", statOrderKey = "3796", statOrder = { 3796 }, level = 80, group = "ExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToUnnerveOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Unnerve Enemies for 4 seconds on Hit", statOrderKey = "4036", statOrder = { 4036 }, level = 78, group = "ChanceToUnnerveOnHit", weightKey = { "no_caster_mods", "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToUnnerveOnHitWeaponInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Unnerve Enemies for 4 seconds on Hit", statOrderKey = "4036", statOrder = { 4036 }, level = 81, group = "ChanceToUnnerveOnHit", weightKey = { "no_caster_mods", "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToIntimidateOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Intimidate Enemies for 4 seconds on Hit", statOrderKey = "5085", statOrder = { 5085 }, level = 78, group = "ChanceToIntimidateOnHit", weightKey = { "no_attack_mods", "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 = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToIntimidateOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit", statOrderKey = "5085", statOrder = { 5085 }, level = 81, group = "ChanceToIntimidateOnHit", weightKey = { "no_attack_mods", "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 = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageFromAurasWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrderKey = "2639", statOrder = { 2639 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageFromAurasTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrderKey = "2639", statOrder = { 2639 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalChanceToMaimPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Physical Damage", "10% chance to Maim on Hit", statOrderKey = "570,5158", statOrder = { 570, 5158 }, level = 68, group = "LocalMaimOnHit", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalChanceToMaimPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-16)% increased Physical Damage", "15% chance to Maim on Hit", statOrderKey = "570,5158", statOrder = { 570, 5158 }, level = 70, group = "LocalMaimOnHit", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LocalChanceToMaimPhysicalDamageInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Physical Damage", "20% chance to Maim on Hit", statOrderKey = "570,5158", statOrder = { 570, 5158 }, level = 73, group = "LocalMaimOnHit", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlindOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 68, group = "BlindOnHit", weightKey = { "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["BlindOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 70, group = "BlindOnHit", weightKey = { "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["BlindOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 73, group = "BlindOnHit", weightKey = { "no_attack_mods", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["OnslaugtOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2570", statOrder = { 2570 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["OnslaugtOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2570", statOrder = { 2570 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["OnslaugtOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2570", statOrder = { 2570 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhasingOnKillWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhasingOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhasingOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["UnholyMightOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2567", statOrder = { 2567 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["UnholyMightOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2567", statOrder = { 2567 }, level = 70, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["UnholyMightOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Unholy Might for 3 seconds on Kill", statOrderKey = "2567", statOrder = { 2567 }, level = 73, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlockWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlockWhileDualWieldingInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlockWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrderKey = "609", statOrder = { 609 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["PhysicalDamageWhileDualWieldingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrderKey = "609", statOrder = { 609 }, level = 70, group = "DualWieldingPhysicalDamage", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["PhysicalDamageWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrderKey = "609", statOrder = { 609 }, level = 73, group = "DualWieldingPhysicalDamage", weightKey = { "no_attack_mods", "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalMeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+2 to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 68, group = "LocalWeaponRangeUber", weightKey = { "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["LocalMeleeWeaponRangeInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+3 to Weapon Range", statOrderKey = "1923", statOrder = { 1923 }, level = 73, group = "LocalWeaponRangeUber", weightKey = { "no_attack_mods", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["MovementVelocityWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(3-6)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementVelocityWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Movement Speed", statOrderKey = "1070", statOrder = { 1070 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellsDoubleDamageChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Spells have a (4-5)% chance to deal Double Damage", statOrderKey = "6296", statOrder = { 6296 }, level = 75, group = "DoubleDamage", weightKey = { "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellsDoubleDamageChanceInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (6-7)% chance to deal Double Damage", statOrderKey = "6296", statOrder = { 6296 }, level = 80, group = "DoubleDamage", weightKey = { "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellsDoubleDamageChanceTwoHandInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Spells have a (10-11)% chance to deal Double Damage", statOrderKey = "6296", statOrder = { 6296 }, level = 75, group = "DoubleDamage", weightKey = { "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellsDoubleDamageChanceTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (12-14)% chance to deal Double Damage", statOrderKey = "6296", statOrder = { 6296 }, level = 80, group = "DoubleDamage", weightKey = { "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerEnduranceChargeWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% increased Damage per Endurance Charge", statOrderKey = "2378", statOrder = { 2378 }, level = 68, group = "AllDamage", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerEnduranceChargeWeaponInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% increased Damage per Endurance Charge", statOrderKey = "2378", statOrder = { 2378 }, level = 73, group = "AllDamage", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerFrenzyChargeWeaponInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Damage per Frenzy Charge", statOrderKey = "2468", statOrder = { 2468 }, level = 68, group = "AllDamage", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerFrenzyChargeWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Damage per Frenzy Charge", statOrderKey = "2468", statOrder = { 2468 }, level = 73, group = "AllDamage", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerPowerChargeWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(5-7)% increased Damage per Power Charge", statOrderKey = "4220", statOrder = { 4220 }, level = 68, group = "AllDamage", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerPowerChargeWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(8-10)% increased Damage per Power Charge", statOrderKey = "4220", statOrder = { 4220 }, level = 73, group = "AllDamage", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerEnduranceChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Damage per Endurance Charge", statOrderKey = "2378", statOrder = { 2378 }, level = 68, group = "AllDamage", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerEnduranceChargeTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-17)% increased Damage per Endurance Charge", statOrderKey = "2378", statOrder = { 2378 }, level = 73, group = "AllDamage", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerPowerChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-13)% increased Damage per Power Charge", statOrderKey = "4220", statOrder = { 4220 }, level = 68, group = "AllDamage", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamagePerPowerChargeTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(14-17)% increased Damage per Power Charge", statOrderKey = "4220", statOrder = { 4220 }, level = 73, group = "AllDamage", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BaseManaRegenerationInfluence1_____"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.3% of Mana per second", statOrderKey = "886", statOrder = { 886 }, level = 68, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BaseManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.4% of Mana per second", statOrderKey = "886", statOrder = { 886 }, level = 73, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BaseManaRegenerationTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.7% of Mana per second", statOrderKey = "886", statOrder = { 886 }, level = 68, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BaseManaRegenerationTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.8% of Mana per second", statOrderKey = "886", statOrder = { 886 }, level = 73, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AngerAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (28-33)% increased Aura Effect", statOrderKey = "2549", statOrder = { 2549 }, level = 75, group = "AuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AngerAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Anger has (34-40)% increased Aura Effect", statOrderKey = "2549", statOrder = { 2549 }, level = 80, group = "AuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AngerAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (48-54)% increased Aura Effect", statOrderKey = "2549", statOrder = { 2549 }, level = 75, group = "AuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AngerAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Anger has (55-60)% increased Aura Effect", statOrderKey = "2549", statOrder = { 2549 }, level = 80, group = "AuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["HatredAuraEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (28-33)% increased Aura Effect", statOrderKey = "2556", statOrder = { 2556 }, level = 75, group = "AuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["HatredAuraEffectInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (34-40)% increased Aura Effect", statOrderKey = "2556", statOrder = { 2556 }, level = 80, group = "AuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["HatredAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (48-54)% increased Aura Effect", statOrderKey = "2556", statOrder = { 2556 }, level = 75, group = "AuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["HatredAuraEffectTwoHandInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (55-60)% increased Aura Effect", statOrderKey = "2556", statOrder = { 2556 }, level = 80, group = "AuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WrathAuraEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (28-33)% increased Aura Effect", statOrderKey = "2554", statOrder = { 2554 }, level = 75, group = "AuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WrathAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (34-40)% increased Aura Effect", statOrderKey = "2554", statOrder = { 2554 }, level = 80, group = "AuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WrathAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (48-54)% increased Aura Effect", statOrderKey = "2554", statOrder = { 2554 }, level = 75, group = "AuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WrathAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (55-60)% increased Aura Effect", statOrderKey = "2554", statOrder = { 2554 }, level = 80, group = "AuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MalevolenceAuraEffectInfluence1____"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (28-33)% increased Aura Effect", statOrderKey = "4262", statOrder = { 4262 }, level = 75, group = "AuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MalevolenceAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (34-40)% increased Aura Effect", statOrderKey = "4262", statOrder = { 4262 }, level = 80, group = "AuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MalevolenceAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (48-54)% increased Aura Effect", statOrderKey = "4262", statOrder = { 4262 }, level = 75, group = "AuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MalevolenceAuraEffectTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (55-60)% increased Aura Effect", statOrderKey = "4262", statOrder = { 4262 }, level = 80, group = "AuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ZealotryAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (28-33)% increased Aura Effect", statOrderKey = "6510", statOrder = { 6510 }, level = 75, group = "AuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ZealotryAuraEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (34-40)% increased Aura Effect", statOrderKey = "6510", statOrder = { 6510 }, level = 80, group = "AuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ZealotryAuraEffectTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (48-54)% increased Aura Effect", statOrderKey = "6510", statOrder = { 6510 }, level = 75, group = "AuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ZealotryAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (55-60)% increased Aura Effect", statOrderKey = "6510", statOrder = { 6510 }, level = 80, group = "AuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageWhileLeechingWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(18-22)% increased Damage while Leeching", statOrderKey = "2246", statOrder = { 2246 }, level = 68, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageWhileLeechingWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% increased Damage while Leeching", statOrderKey = "2246", statOrder = { 2246 }, level = 70, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageWhileLeechingWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% increased Damage while Leeching", statOrderKey = "2246", statOrder = { 2246 }, level = 73, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageWhileLeechingWeaponTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(32-36)% increased Damage while Leeching", statOrderKey = "2246", statOrder = { 2246 }, level = 68, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageWhileLeechingWeaponTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(37-41)% increased Damage while Leeching", statOrderKey = "2246", statOrder = { 2246 }, level = 70, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageWhileLeechingWeaponTwoHandInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(42-45)% increased Damage while Leeching", statOrderKey = "2246", statOrder = { 2246 }, level = 73, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackSpeedWithFortifyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Attack Speed while you have Fortify", statOrderKey = "2396", statOrder = { 2396 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "no_attack_mods", "sword_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackSpeedWithFortifyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(13-15)% increased Attack Speed while you have Fortify", statOrderKey = "2396", statOrder = { 2396 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "no_attack_mods", "sword_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackSpeedWithFortifyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(20-22)% increased Attack Speed while you have Fortify", statOrderKey = "2396", statOrder = { 2396 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "no_attack_mods", "2h_sword_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackSpeedWithFortifyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-25)% increased Attack Speed while you have Fortify", statOrderKey = "2396", statOrder = { 2396 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "no_attack_mods", "2h_sword_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeWeaponRangeIfKilledRecentlyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "+2 to Melee Strike Range if you have Killed Recently", statOrderKey = "5866", statOrder = { 5866 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "no_attack_mods", "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeWeaponRangeIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+3 to Melee Strike Range if you have Killed Recently", statOrderKey = "5866", statOrder = { 5866 }, level = 73, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "no_attack_mods", "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TauntOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% chance to Taunt Enemies on Hit with Attacks", statOrderKey = "3748", statOrder = { 3748 }, level = 68, group = "TauntOnHit", weightKey = { "no_attack_mods", "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TauntOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(7-8)% chance to Taunt Enemies on Hit with Attacks", statOrderKey = "3748", statOrder = { 3748 }, level = 70, group = "TauntOnHit", weightKey = { "no_attack_mods", "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TauntOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(9-10)% chance to Taunt Enemies on Hit with Attacks", statOrderKey = "3748", statOrder = { 3748 }, level = 73, group = "TauntOnHit", weightKey = { "no_attack_mods", "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 0, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(13-16)% increased Attack Speed if you've Killed Recently", statOrderKey = "3733", statOrder = { 3733 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "no_attack_mods", "axe_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Attack Speed if you've Killed Recently", statOrderKey = "3733", statOrder = { 3733 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "no_attack_mods", "axe_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(23-26)% increased Attack Speed if you've Killed Recently", statOrderKey = "3733", statOrder = { 3733 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "no_attack_mods", "2h_axe_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(27-30)% increased Attack Speed if you've Killed Recently", statOrderKey = "3733", statOrder = { 3733 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "no_attack_mods", "2h_axe_adjudicator", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CastSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(13-16)% increased Cast Speed if you've Killed Recently", statOrderKey = "3972", statOrder = { 3972 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CastSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(17-20)% increased Cast Speed if you've Killed Recently", statOrderKey = "3972", statOrder = { 3972 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "no_caster_mods", "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 0, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CastSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(23-26)% increased Cast Speed if you've Killed Recently", statOrderKey = "3972", statOrder = { 3972 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CastSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(27-30)% increased Cast Speed if you've Killed Recently", statOrderKey = "3972", statOrder = { 3972 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "no_caster_mods", "staff_eyrie", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WarcryCooldownSpeedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Warcry Cooldown Recovery Speed", statOrderKey = "2518", statOrder = { 2518 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WarcryCooldownSpeedInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Warcry Cooldown Recovery Speed", statOrderKey = "2518", statOrder = { 2518 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WarcryCooldownSpeedTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(35-40)% increased Warcry Cooldown Recovery Speed", statOrderKey = "2518", statOrder = { 2518 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "2h_axe_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["WarcryCooldownSpeedTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(41-45)% increased Warcry Cooldown Recovery Speed", statOrderKey = "2518", statOrder = { 2518 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "2h_axe_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-40)% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "4138", statOrder = { 4138 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% increased Critical Strike Chance if you have Killed Recently", statOrderKey = "4138", statOrder = { 4138 }, level = 73, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeMultiplierIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(26-30)% to Critical Strike Multiplier if you've Killed Recently", statOrderKey = "4160", statOrder = { 4160 }, level = 68, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeMultiplierIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(31-35)% to Critical Strike Multiplier if you've Killed Recently", statOrderKey = "4160", statOrder = { 4160 }, level = 73, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeMultiplierAgainstFullLifeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(41-50)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrderKey = "2617", statOrder = { 2617 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeMultiplierAgainstFullLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(51-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrderKey = "2617", statOrder = { 2617 }, level = 73, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["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", statOrderKey = "4465", statOrder = { 4465 }, level = 68, group = "GainRareMonsterModsOnKill", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["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", statOrderKey = "4465", statOrder = { 4465 }, level = 73, group = "GainRareMonsterModsOnKill", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunDurationAndThresholdInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% reduced Enemy Stun Threshold", "(11-15)% increased Stun Duration on Enemies", statOrderKey = "837,1123", statOrder = { 837, 1123 }, level = 68, group = "StunDurationAndThreshold", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunDurationAndThresholdInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% reduced Enemy Stun Threshold", "(16-20)% increased Stun Duration on Enemies", statOrderKey = "837,1123", statOrder = { 837, 1123 }, level = 73, group = "StunDurationAndThreshold", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunDurationAndThresholdTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% reduced Enemy Stun Threshold", "(21-25)% increased Stun Duration on Enemies", statOrderKey = "837,1123", statOrder = { 837, 1123 }, level = 68, group = "StunDurationAndThreshold", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunDurationAndThresholdTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% reduced Enemy Stun Threshold", "(26-30)% increased Stun Duration on Enemies", statOrderKey = "837,1123", statOrder = { 837, 1123 }, level = 73, group = "StunDurationAndThreshold", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectIfStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Area of Effect if you have Stunned an Enemy Recently", statOrderKey = "3626", statOrder = { 3626 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectIfStunnedRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrderKey = "3626", statOrder = { 3626 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% increased Area of Effect if you have Stunned an Enemy Recently", statOrderKey = "3626", statOrder = { 3626 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased Area of Effect if you have Stunned an Enemy Recently", statOrderKey = "3626", statOrder = { 3626 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnemiesExplodeOnDeathDealingFireInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrderKey = "1886", statOrder = { 1886 }, level = 78, group = "EnemiesExplodeOnDeath", weightKey = { "mace_eyrie", "2h_mace_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceForDoubleStunDurationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-11)% chance to double Stun Duration", statOrderKey = "2739", statOrder = { 2739 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceForDoubleStunDurationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% chance to double Stun Duration", statOrderKey = "2739", statOrder = { 2739 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceForDoubleStunDurationTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(17-21)% chance to double Stun Duration", statOrderKey = "2739", statOrder = { 2739 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceForDoubleStunDurationTwoHandInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(22-25)% chance to double Stun Duration", statOrderKey = "2739", statOrder = { 2739 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementSpeedIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Movement Speed if you've Hit an Enemy Recently", statOrderKey = "5968", statOrder = { 5968 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementSpeedIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Movement Speed if you've Hit an Enemy Recently", statOrderKey = "5968", statOrder = { 5968 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementSpeedIfHitRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Movement Speed if you've Hit an Enemy Recently", statOrderKey = "5968", statOrder = { 5968 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MovementSpeedIfHitRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Movement Speed if you've Hit an Enemy Recently", statOrderKey = "5968", statOrder = { 5968 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Area of Effect if you've Killed Recently", statOrderKey = "3392", statOrder = { 3392 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Area of Effect if you've Killed Recently", statOrderKey = "3392", statOrder = { 3392 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(27-31)% increased Area of Effect if you've Killed Recently", statOrderKey = "3392", statOrder = { 3392 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaOfEffectIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(32-35)% increased Area of Effect if you've Killed Recently", statOrderKey = "3392", statOrder = { 3392 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToBlockIfDamagedRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrderKey = "2397", statOrder = { 2397 }, level = 68, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToBlockIfDamagedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrderKey = "2397", statOrder = { 2397 }, level = 73, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockChanceIfHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrderKey = "3988", statOrder = { 3988 }, level = 68, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellBlockChanceIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrderKey = "3988", statOrder = { 3988 }, level = 73, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AdditionalProjectileWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Skills fire an additional Projectile", statOrderKey = "1066", statOrder = { 1066 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedSkillsChainInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Socketed Gems Chain 1 additional times", statOrderKey = "255", statOrder = { 255 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SocketedSkillsForkInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles from Socketed Gems Fork", statOrderKey = "274", statOrder = { 274 }, level = 85, group = "DisplaySocketedSkillsFork", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileDamagePerEnemyPiercedInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (15-20)% increased Damage for each Enemy Pierced", statOrderKey = "6113", statOrder = { 6113 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileDamagePerEnemyPiercedInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (21-25)% increased Damage for each Enemy Pierced", statOrderKey = "6113", statOrder = { 6113 }, level = 70, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileDamagePerEnemyPiercedInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (26-30)% increased Damage for each Enemy Pierced", statOrderKey = "6113", statOrder = { 6113 }, level = 73, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageAddedAsRandomElementInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Gain (7-8)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "2116", statOrder = { 2116 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "bow_crusader", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageAddedAsRandomElementInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Gain (9-11)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "2116", statOrder = { 2116 }, level = 73, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "bow_crusader", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageAddedAsRandomElementInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Gain (12-15)% of Physical Damage as Extra Damage of a random Element", statOrderKey = "2116", statOrder = { 2116 }, level = 78, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "no_elemental_damage_mods", "bow_crusader", "default", }, weightVal = { 0, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArcaneSurgeOnCritInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(11-20)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrderKey = "4474", statOrder = { 4474 }, level = 75, group = "ArcaneSurgeOnCrit", weightKey = { "no_caster_mods", "wand_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArcaneSurgeOnCritInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-30)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrderKey = "4474", statOrder = { 4474 }, level = 80, group = "ArcaneSurgeOnCrit", weightKey = { "no_caster_mods", "wand_crusader", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitFlammabilityWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Level 10 Flammability on Hit", statOrderKey = "1725", statOrder = { 1725 }, level = 78, group = "CurseOnHitLevel", weightKey = { "wand_adjudicator", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitFrostbiteWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Level 10 Frostbite on Hit", statOrderKey = "1726", statOrder = { 1726 }, level = 78, group = "CurseOnHitLevel", weightKey = { "wand_eyrie", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitConductivityWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Level 10 Conductivity on Hit", statOrderKey = "1722", statOrder = { 1722 }, level = 78, group = "CurseOnHitLevel", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseOnHitDespairWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Level 10 Despair on Hit", statOrderKey = "1723", statOrder = { 1723 }, level = 78, group = "CurseOnHitDespair", weightKey = { "wand_basilisk", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, } \ No newline at end of file diff --git a/Data/3_0/ModJewel.lua b/Data/3_0/ModJewel.lua index 84d593ce9..0b319f35b 100644 --- a/Data/3_0/ModJewel.lua +++ b/Data/3_0/ModJewel.lua @@ -2,225 +2,225 @@ -- Item data (c) Grinding Gear Games return { - ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrderKey = "1313", statOrder = { 1313 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrderKey = "1132", statOrder = { 1132 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrderKey = "1134", statOrder = { 1134 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrderKey = "1135", statOrder = { 1135 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrderKey = "1133", statOrder = { 1133 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2208", statOrder = { 2208 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (3-5)% increased Critical Strike Chance against you", statOrderKey = "2312", statOrder = { 2312 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrderKey = "2277", statOrder = { 2277 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Vaal Skills deal (5-10)% increased Damage", statOrderKey = "2276", statOrder = { 2276 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrderKey = "2280", statOrder = { 2280 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrderKey = "2281", statOrder = { 2281 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrderKey = "2283", statOrder = { 2283 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2275", statOrder = { 2275 }, level = 1, group = "PlayerCurseImmunity", weightKey = { "jewel", "default", }, weightVal = { 0, 0, }, }, - ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrderKey = "3949", statOrder = { 3949 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrderKey = "6489", statOrder = { 6489 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrderKey = "6000", statOrder = { 6000 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2IncreasedDamageJewelCorrupted___"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 1, group = "IncreasedDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrderKey = "3763", statOrder = { 3763 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 1, group = "ReducedManaReservationsCost", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2275", statOrder = { 2275 }, level = 60, group = "PlayerCurseImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2FirePenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2ColdPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2LightningPenetrationJewelCorrupted__"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2ElementalPenetrationJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 1, group = "ElementalPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["V2ArmourPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Enemies have -2% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 1, group = "ArmourPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0, }, }, - ["MaceDamageJewel"] = { type = "Prefix", affix = "Brutal", "(14-16)% increased Damage with Maces or Sceptres", statOrderKey = "654", statOrder = { 654 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500, }, tags = { "mace", "specific_weapon", "melee_mod", }, }, - ["AxeDamageJewel"] = { type = "Prefix", affix = "Sinister", "(14-16)% increased Damage with Axes", statOrderKey = "630", statOrder = { 630 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0, }, tags = { "axe", "specific_weapon", "melee_mod", }, }, - ["SwordDamageJewel"] = { type = "Prefix", affix = "Vicious", "(14-16)% increased Damage with Swords", statOrderKey = "668", statOrder = { 668 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0, }, tags = { "sword", "specific_weapon", "melee_mod", }, }, - ["BowDamageJewel"] = { type = "Prefix", affix = "Fierce", "(14-16)% increased Damage with Bows", statOrderKey = "660", statOrder = { 660 }, level = 1, group = "SpecificWeaponDamage", 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, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["ClawDamageJewel"] = { type = "Prefix", affix = "Savage", "(14-16)% increased Damage with Claws", statOrderKey = "642", statOrder = { 642 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500, }, tags = { "claw", "specific_weapon", "one_handed_mod", "melee_mod", }, }, - ["DaggerDamageJewel"] = { type = "Prefix", affix = "Lethal", "(14-16)% increased Damage with Daggers", statOrderKey = "648", statOrder = { 648 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500, }, tags = { "dagger", "specific_weapon", "one_handed_mod", "melee_mod", }, }, - ["WandDamageJewel"] = { type = "Prefix", affix = "Cruel", "(14-16)% increased Damage with Wands", statOrderKey = "2127", statOrder = { 2127 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["StaffDamageJewel"] = { type = "Prefix", affix = "Judging", "(14-16)% increased Damage with Staves", statOrderKey = "637", statOrder = { 637 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500, }, tags = { "staff", "specific_weapon", "two_handed_mod", "melee_mod", }, }, - ["OneHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Soldier's", "(12-14)% increased Damage with One Handed Weapons", statOrderKey = "2524", statOrder = { 2524 }, level = 1, group = "MeleeTypeDamage", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "one_handed_mod", "melee_mod", }, }, - ["TwoHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Champion's", "(12-14)% increased Damage with Two Handed Weapons", statOrderKey = "2525", statOrder = { 2525 }, level = 1, group = "MeleeTypeDamage", weightKey = { "bow", "wand", "one_handed_mod", "dual_wielding_mod", "shield_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500, 0, }, tags = { "two_handed_mod", "melee_mod", }, }, - ["DualWieldingMeleeDamageJewel"] = { type = "Prefix", affix = "Gladiator's", "(12-14)% increased Attack Damage while Dual Wielding", statOrderKey = "608", statOrder = { 608 }, level = 1, group = "MeleeTypeDamage", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "dual_wielding_mod", }, }, - ["UnarmedMeleeDamageJewel"] = { type = "Prefix", affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrderKey = "629", statOrder = { 629 }, level = 1, group = "MeleeTypeDamage", weightKey = { "not_int", "default", }, weightVal = { 0, 0, }, }, - ["MeleeDamageJewel_"] = { type = "Suffix", affix = "of Combat", "(10-12)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 1, group = "DamageForm", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "melee_mod", }, }, - ["ProjectileDamageJewel"] = { type = "Suffix", affix = "of Archery", "(10-12)% increased Projectile Damage", statOrderKey = "1255", statOrder = { 1255 }, level = 1, group = "DamageForm", weightKey = { "not_dex", "default", }, weightVal = { 400, 500, }, }, - ["SpellDamageJewel"] = { type = "Suffix", affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 1, group = "DamageForm", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["StaffSpellDamageJewel"] = { type = "Prefix", affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrderKey = "565", statOrder = { 565 }, level = 1, group = "SpellTypeDamage", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 500, 0, 0, 0, 0, 500, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["DualWieldingSpellDamageJewel_"] = { type = "Prefix", affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrderKey = "568", statOrder = { 568 }, level = 1, group = "SpellTypeDamage", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500, }, tags = { "dual_wielding_mod", }, }, - ["ShieldSpellDamageJewel"] = { type = "Prefix", affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrderKey = "567", statOrder = { 567 }, level = 1, group = "SpellTypeDamage", weightKey = { "two_handed_mod", "dual_wielding_mod", "bow", "staff", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500, }, tags = { "shield_mod", }, }, - ["TrapDamageJewel"] = { type = "Prefix", affix = "Trapping", "(14-16)% increased Trap Damage", statOrderKey = "534", statOrder = { 534 }, level = 1, group = "DamageForm", weightKey = { "not_str", "default", }, weightVal = { 500, 0, }, }, - ["MineDamageJewel"] = { type = "Prefix", affix = "Sabotage", "(14-16)% increased Mine Damage", statOrderKey = "536", statOrder = { 536 }, level = 1, group = "DamageForm", weightKey = { "not_str", "default", }, weightVal = { 500, 0, }, }, - ["DamageJewel"] = { type = "Suffix", affix = "of Wounding", "(8-10)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 1, group = "DamageForm", weightKey = { "default", }, weightVal = { 350, }, }, - ["MinionDamageJewel"] = { type = "Prefix", affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "DamageForm", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["FireDamageJewel"] = { type = "Prefix", affix = "Flaming", "(14-16)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 1, group = "FireDamagePercentage", weightKey = { "not_str", "default", }, weightVal = { 400, 500, }, }, - ["ColdDamageJewel"] = { type = "Prefix", affix = "Chilling", "(14-16)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 1, group = "ColdDamagePercentage", weightKey = { "not_dex", "default", }, weightVal = { 400, 500, }, }, - ["LightningDamageJewel"] = { type = "Prefix", affix = "Humming", "(14-16)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 1, group = "LightningDamagePercentage", weightKey = { "not_int", "default", }, weightVal = { 400, 500, }, }, - ["PhysicalDamageJewel"] = { type = "Prefix", affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 500, }, }, - ["DamageOverTimeJewel"] = { type = "Suffix", affix = "of Entropy", "(10-12)% increased Damage over Time", statOrderKey = "550", statOrder = { 550 }, level = 1, group = "DegenerationDamage", weightKey = { "default", }, weightVal = { 500, }, }, - ["ChaosDamageJewel"] = { type = "Prefix", affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrderKey = "708", statOrder = { 708 }, level = 1, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 200, }, }, - ["AreaDamageJewel"] = { type = "Suffix", affix = "of Blasting", "(10-12)% increased Area Damage", statOrderKey = "1291", statOrder = { 1291 }, level = 1, group = "AreaDamage", weightKey = { "default", }, weightVal = { 500, }, }, - ["MaceAttackSpeedJewel"] = { type = "Prefix", affix = "Beating", "(6-8)% increased Attack Speed with Maces or Sceptres", statOrderKey = "745", statOrder = { 745 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500, }, tags = { "mace", "specific_weapon", "melee_mod", }, }, - ["AxeAttackSpeedJewel"] = { type = "Prefix", affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrderKey = "741", statOrder = { 741 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0, }, tags = { "axe", "specific_weapon", "melee_mod", }, }, - ["SwordAttackSpeedJewel"] = { type = "Prefix", affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrderKey = "747", statOrder = { 747 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0, }, tags = { "sword", "specific_weapon", "melee_mod", }, }, - ["BowAttackSpeedJewel"] = { type = "Prefix", affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrderKey = "746", statOrder = { 746 }, level = 1, group = "SpecificWeaponSpeed", 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, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["ClawAttackSpeedJewel"] = { type = "Prefix", affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrderKey = "743", statOrder = { 743 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500, }, tags = { "claw", "specific_weapon", "one_handed_mod", "melee_mod", }, }, - ["DaggerAttackSpeedJewel"] = { type = "Prefix", affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrderKey = "744", statOrder = { 744 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500, }, tags = { "dagger", "specific_weapon", "one_handed_mod", "melee_mod", }, }, - ["WandAttackSpeedJewel"] = { type = "Prefix", affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrderKey = "748", statOrder = { 748 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["StaffAttackSpeedJewel"] = { type = "Prefix", affix = "Blunt", "(6-8)% increased Attack Speed with Staves", statOrderKey = "742", statOrder = { 742 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500, }, tags = { "staff", "specific_weapon", "two_handed_mod", "melee_mod", }, }, - ["OneHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrderKey = "740", statOrder = { 740 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0, }, tags = { "one_handed_mod", "melee_mod", }, }, - ["TwoHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrderKey = "739", statOrder = { 739 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "bow", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, }, tags = { "two_handed_mod", "melee_mod", }, }, - ["DualWieldingAttackSpeedJewel"] = { type = "Prefix", affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrderKey = "736", statOrder = { 736 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "shield_mod", "two_handed_mod", "default", }, weightVal = { 0, 0, 500, }, tags = { "dual_wielding_mod", }, }, - ["DualWieldingCastSpeedJewel"] = { type = "Prefix", affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrderKey = "768", statOrder = { 768 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500, }, tags = { "dual_wielding_mod", }, }, - ["ShieldAttackSpeedJewel"] = { type = "Prefix", affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrderKey = "738", statOrder = { 738 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 400, }, tags = { "shield_mod", }, }, - ["ShieldCastSpeedJewel"] = { type = "Prefix", affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrderKey = "769", statOrder = { 769 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500, }, tags = { "shield_mod", }, }, - ["StaffCastSpeedJewel"] = { type = "Prefix", affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrderKey = "770", statOrder = { 770 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["UnarmedAttackSpeedJewel"] = { type = "Prefix", affix = "Furious", "(6-8)% increased Attack Speed with Unarmed Attacks", statOrderKey = "750", statOrder = { 750 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 0, }, }, - ["AttackSpeedJewel"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 500, }, }, - ["ProjectileSpeedJewel"] = { type = "Suffix", affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 1, group = "ProjectileSpeed", weightKey = { "not_dex", "default", }, weightVal = { 300, 500, }, }, - ["CastSpeedJewel"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["TrapThrowSpeedJewel"] = { type = "Prefix", affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrderKey = "1178", statOrder = { 1178 }, level = 1, group = "TrapThrowSpeed", weightKey = { "not_str", "default", }, weightVal = { 250, 0, }, }, - ["MineLaySpeedJewel"] = { type = "Prefix", affix = "Arming", "(6-8)% increased Mine Throwing Speed", statOrderKey = "1179", statOrder = { 1179 }, level = 1, group = "MineLaySpeed", weightKey = { "not_str", "default", }, weightVal = { 250, 0, }, }, - ["AttackAndCastSpeedJewel"] = { type = "Suffix", affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrderKey = "1303", statOrder = { 1303 }, level = 1, group = "AttackCastSpeed", weightKey = { "default", }, weightVal = { 350, }, }, - ["PhysicalDamageWhileHoldingAShield"] = { type = "Prefix", affix = "Flanking", "(12-14)% increased Attack Damage while holding a Shield", statOrderKey = "546", statOrder = { 546 }, level = 1, group = "MeleeTypeDamage", weightKey = { "bow", "wand", "dual_wielding_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, }, tags = { "shield_mod", "melee_mod", }, }, - ["FireGemCastSpeedJewel"] = { type = "Prefix", affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrderKey = "692", statOrder = { 692 }, level = 1, group = "FireCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["ColdGemCastSpeedJewel"] = { type = "Prefix", affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrderKey = "701", statOrder = { 701 }, level = 1, group = "ColdCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["LightningGemCastSpeedJewel_"] = { type = "Prefix", affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrderKey = "707", statOrder = { 707 }, level = 1, group = "LightningCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["ChaosGemCastSpeedJewel"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrderKey = "713", statOrder = { 713 }, level = 1, group = "ChaosCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseCastSpeedJewel_"] = { type = "Suffix", affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrderKey = "1475", statOrder = { 1475 }, level = 1, group = "CurseCastSpeed", weightKey = { "default", }, weightVal = { 0, }, }, - ["StrengthJewel"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrderKey = "521", statOrder = { 521 }, level = 1, group = "Strength", weightKey = { "not_str", "default", }, weightVal = { 300, 500, }, }, - ["DexterityJewel"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrderKey = "522", statOrder = { 522 }, level = 1, group = "Dexterity", weightKey = { "not_dex", "default", }, weightVal = { 300, 500, }, }, - ["IntelligenceJewel"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrderKey = "523", statOrder = { 523 }, level = 1, group = "Intelligence", weightKey = { "not_int", "default", }, weightVal = { 300, 500, }, }, - ["StrengthDexterityJewel"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrderKey = "524", statOrder = { 524 }, level = 1, group = "StrengthDexterity", weightKey = { "not_int", "default", }, weightVal = { 450, 250, }, }, - ["StrengthIntelligenceJewel"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrderKey = "525", statOrder = { 525 }, level = 1, group = "StrengthIntelligence", weightKey = { "not_dex", "default", }, weightVal = { 450, 250, }, }, - ["DexterityIntelligenceJewel"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrderKey = "526", statOrder = { 526 }, level = 1, group = "DexterityIntelligence", weightKey = { "not_str", "default", }, weightVal = { 450, 250, }, }, - ["AllAttributesJewel"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 300, }, }, - ["IncreasedLifeJewel"] = { type = "Prefix", affix = "Healthy", "+(8-12) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0, }, }, - ["PercentIncreasedLifeJewel"] = { type = "Prefix", affix = "Vivid", "(5-7)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "not_str", "default", }, weightVal = { 350, 500, }, }, - ["IncreasedManaJewel"] = { type = "Prefix", affix = "Learned", "+(8-12) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["PercentIncreasedManaJewel"] = { type = "Prefix", affix = "Enlightened", "(8-10)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "not_str", "default", }, weightVal = { 500, 250, }, }, - ["IncreasedManaRegenJewel"] = { type = "Prefix", affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 1, group = "ManaRegeneration", weightKey = { "not_int", "default", }, weightVal = { 250, 500, }, }, - ["IncreasedEnergyShieldJewel_"] = { type = "Prefix", affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["EnergyShieldJewel"] = { type = "Prefix", affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 1, group = "EnergyShieldPercent", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["IncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrderKey = "877,884", statOrder = { 877, 884 }, level = 1, group = "IncreasedLifeAndMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["PercentIncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrderKey = "879,885", statOrder = { 879, 885 }, level = 1, group = "PercentageIncreasedLifeAndMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["EnergyShieldAndManaJewel"] = { type = "Prefix", affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrderKey = "870,885", statOrder = { 870, 885 }, level = 1, group = "IncreasedEnergyShieldAndMana", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeAndEnergyShieldJewel"] = { type = "Prefix", affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrderKey = "870,879", statOrder = { 870, 879 }, level = 1, group = "IncreasedLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 1, group = "LifeLeech", weightKey = { "not_str", "default", }, weightVal = { 0, 500, }, }, - ["ManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "980", statOrder = { 980 }, level = 1, group = "ManaLeech", weightKey = { "not_dex", "default", }, weightVal = { 0, 500, }, }, - ["SpellLifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Transfusing", "0.2% of Spell Damage Leeched as Life", statOrderKey = "957", statOrder = { 957 }, level = 1, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["SpellManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Siphoning", "0.2% of Spell Damage Leeched as Mana", statOrderKey = "985", statOrder = { 985 }, level = 1, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeOnHitJewel"] = { type = "Suffix", affix = "of Rejuvenation", "+(2-3) Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 1, group = "LifeGainPerTarget", weightKey = { "not_str", "default", }, weightVal = { 0, 500, }, }, - ["ManaOnHitJewel"] = { type = "Suffix", affix = "of Absorption", "+(1-2) Mana gained for each Enemy hit by your Attacks", statOrderKey = "1021", statOrder = { 1021 }, level = 1, group = "ManaGainPerTarget", weightKey = { "not_dex", "default", }, weightVal = { 0, 500, }, }, - ["EnergyShieldOnHitJewel"] = { type = "Suffix", affix = "of Focus", "+(2-3) Energy Shield gained for each Enemy hit by your Attacks", statOrderKey = "1024", statOrder = { 1024 }, level = 1, group = "EnergyShieldGainPerTarget", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["IncreasedArmourJewel"] = { type = "Prefix", affix = "Armoured", "(14-18)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 1, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "not_str", "default", }, weightVal = { 0, 500, }, }, - ["IncreasedEvasionJewel"] = { type = "Prefix", affix = "Evasive", "(14-18)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 1, group = "EvasionRatingPercent", weightKey = { "not_dex", "default", }, weightVal = { 0, 500, }, }, - ["ArmourEvasionJewel"] = { type = "Prefix", affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrderKey = "850,859", statOrder = { 850, 859 }, level = 1, group = "ArmourEvasion", weightKey = { "default", }, weightVal = { 0, }, }, - ["ArmourEnergyShieldJewel"] = { type = "Prefix", affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrderKey = "850,870", statOrder = { 850, 870 }, level = 1, group = "ArmourEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["EvasionEnergyShieldJewel"] = { type = "Prefix", affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrderKey = "859,870", statOrder = { 859, 870 }, level = 1, group = "EvasionEnergyShield", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedDefensesJewel"] = { type = "Prefix", affix = "Defensive", "(4-6)% increased Global Defences", statOrderKey = "2016", statOrder = { 2016 }, level = 1, group = "AllDefences", weightKey = { "default", }, weightVal = { 0, }, }, - ["ItemRarityJewel"] = { type = "Suffix", affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "default", }, weightVal = { 150, }, }, - ["IncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 1, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0, }, }, - ["PercentIncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Precision", "(10-14)% increased Global Accuracy Rating", statOrderKey = "755", statOrder = { 755 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "not_dex", "default", }, weightVal = { 0, 500, }, }, - ["AccuracyAndCritsJewel"] = { type = "Suffix", affix = "of Deadliness", "(6-10)% increased Global Accuracy Rating", "(6-10)% increased Global Critical Strike Chance", statOrderKey = "755,782", statOrder = { 755, 782 }, level = 1, group = "AccuracyAndCrits", weightKey = { "not_dex", "default", }, weightVal = { 0, 150, }, }, - ["CriticalStrikeChanceJewel"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 250, }, }, - ["CriticalStrikeMultiplierJewel"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 250, }, }, - ["CritChanceWithMaceJewel"] = { type = "Prefix", affix = "of Striking FIX ME", "(12-16)% increased Critical Strike Chance with Maces or Sceptres", statOrderKey = "791", statOrder = { 791 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "mace", "specific_weapon", }, }, - ["CritChanceWithAxeJewel"] = { type = "Prefix", affix = "of Biting FIX ME", "(12-16)% increased Critical Strike Chance with Axes", statOrderKey = "794", statOrder = { 794 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "axe", "specific_weapon", }, }, - ["CritChanceWithSwordJewel"] = { type = "Prefix", affix = "of Stinging FIX ME", "(12-16)% increased Critical Strike Chance with Swords", statOrderKey = "790", statOrder = { 790 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "sword", "specific_weapon", }, }, - ["CritChanceWithBowJewel"] = { type = "Prefix", affix = "of the Sniper FIX ME", "(12-16)% increased Critical Strike Chance with Bows", statOrderKey = "787", statOrder = { 787 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["CritChanceWithClawJewel"] = { type = "Prefix", affix = "of the Eagle FIX ME", "(12-16)% increased Critical Strike Chance with Claws", statOrderKey = "788", statOrder = { 788 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["CritChanceWithDaggerJewel"] = { type = "Prefix", affix = "of Needling FIX ME", "(12-16)% increased Critical Strike Chance with Daggers", statOrderKey = "789", statOrder = { 789 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["CritChanceWithWandJewel"] = { type = "Prefix", affix = "of Divination FIX ME", "(12-16)% increased Critical Strike Chance with Wands", statOrderKey = "793", statOrder = { 793 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["CritChanceWithStaffJewel"] = { type = "Prefix", affix = "of Tyranny FIX ME", "(12-16)% increased Critical Strike Chance with Staves", statOrderKey = "792", statOrder = { 792 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["CritMultiplierWithMaceJewel"] = { type = "Prefix", affix = "of Crushing FIX ME", "+(8-10)% to Critical Strike Multiplier with Maces or Sceptres", statOrderKey = "815", statOrder = { 815 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "mace", "specific_weapon", }, }, - ["CritMultiplierWithAxeJewel"] = { type = "Prefix", affix = "of Execution FIX ME", "+(8-10)% to Critical Strike Multiplier with Axes", statOrderKey = "816", statOrder = { 816 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "axe", "specific_weapon", }, }, - ["CritMultiplierWithSwordJewel"] = { type = "Prefix", affix = "of Severing FIX ME", "+(8-10)% to Critical Strike Multiplier with Swords", statOrderKey = "818", statOrder = { 818 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "sword", "specific_weapon", }, }, - ["CritMultiplierWithBowJewel"] = { type = "Prefix", affix = "of the Hunter FIX ME", "+(8-10)% to Critical Strike Multiplier with Bows", statOrderKey = "817", statOrder = { 817 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["CritMultiplierWithClawJewel"] = { type = "Prefix", affix = "of the Bear FIX ME", "+(8-10)% to Critical Strike Multiplier with Claws", statOrderKey = "820", statOrder = { 820 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["CritMultiplierWithDaggerJewel"] = { type = "Prefix", affix = "of Assassination FIX ME", "+(8-10)% to Critical Strike Multiplier with Daggers", statOrderKey = "814", statOrder = { 814 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["CritMultiplierWithWandJewel_"] = { type = "Prefix", affix = "of Evocation FIX ME", "+(8-10)% to Critical Strike Multiplier with Wands", statOrderKey = "819", statOrder = { 819 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["CritMultiplierWithStaffJewel"] = { type = "Prefix", affix = "of Trauma FIX ME", "+(8-10)% to Critical Strike Multiplier with Staves", statOrderKey = "821", statOrder = { 821 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["OneHandedCritChanceJewel"] = { type = "Prefix", affix = "Harming", "(14-18)% increased Critical Strike Chance with One Handed Melee Weapons", statOrderKey = "800", statOrder = { 800 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "one_handed_mod", "melee_mod", }, }, - ["TwoHandedCritChanceJewel"] = { type = "Prefix", affix = "Sundering", "(14-18)% increased Critical Strike Chance with Two Handed Melee Weapons", statOrderKey = "798", statOrder = { 798 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0, }, tags = { "two_handed_mod", "melee_mod", }, }, - ["DualWieldingCritChanceJewel"] = { type = "Prefix", affix = "Technical", "(14-18)% increased Attack Critical Strike Chance while Dual Wielding", statOrderKey = "802", statOrder = { 802 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "dual_wielding_mod", }, }, - ["ShieldCritChanceJewel"] = { type = "Prefix", affix = "", "(10-14)% increased Critical Strike Chance while holding a Shield", statOrderKey = "795", statOrder = { 795 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "default", }, weightVal = { 0, }, tags = { "shield_mod", }, }, - ["MeleeCritChanceJewel"] = { type = "Suffix", affix = "of Weight", "(10-14)% increased Melee Critical Strike Chance", statOrderKey = "801", statOrder = { 801 }, level = 1, group = "FormCritChance", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "melee_mod", }, }, - ["SpellCritChanceJewel"] = { type = "Suffix", affix = "of Annihilation", "(10-14)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 1, group = "FormCritChance", weightKey = { "not_int", "default", }, weightVal = { 0, 250, }, }, - ["TrapCritChanceJewel_"] = { type = "Prefix", affix = "Inescapable", "(12-16)% increased Critical Strike Chance with Traps", statOrderKey = "796", statOrder = { 796 }, level = 1, group = "FormCritChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["MineCritChanceJewel"] = { type = "Prefix", affix = "Crippling", "(12-16)% increased Critical Strike Chance with Mines", statOrderKey = "797", statOrder = { 797 }, level = 1, group = "FormCritChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireCritChanceJewel"] = { type = "Prefix", affix = "Incinerating", "(14-18)% increased Critical Strike Chance with Fire Skills", statOrderKey = "803", statOrder = { 803 }, level = 1, group = "FireCritChance", weightKey = { "not_str", "default", }, weightVal = { 200, 250, }, }, - ["ColdCritChanceJewel"] = { type = "Prefix", affix = "Avalanching", "(14-18)% increased Critical Strike Chance with Cold Skills", statOrderKey = "805", statOrder = { 805 }, level = 1, group = "ColdCritChance", weightKey = { "not_dex", "default", }, weightVal = { 200, 250, }, }, - ["LightningCritChanceJewel"] = { type = "Prefix", affix = "Thundering", "(14-18)% increased Critical Strike Chance with Lightning Skills", statOrderKey = "804", statOrder = { 804 }, level = 1, group = "LightningCritChance", weightKey = { "not_int", "default", }, weightVal = { 200, 250, }, }, - ["ElementalCritChanceJewel"] = { type = "Suffix", affix = "of the Apocalypse", "(10-14)% increased Critical Strike Chance with Elemental Skills", statOrderKey = "806", statOrder = { 806 }, level = 1, group = "ElementalCritChance", weightKey = { "default", }, weightVal = { 100, }, }, - ["ChaosCritChanceJewel"] = { type = "Prefix", affix = "Obliterating", "(12-16)% increased Critical Strike Chance with Chaos Skills", statOrderKey = "807", statOrder = { 807 }, level = 1, group = "ChaosCritChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["OneHandCritMultiplierJewel_"] = { type = "Prefix", affix = "Piercing", "+(15-18)% to Critical Strike Multiplier with One Handed Melee Weapons", statOrderKey = "822", statOrder = { 822 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "melee_mod", "one_handed_mod", }, }, - ["TwoHandCritMultiplierJewel"] = { type = "Prefix", affix = "Rupturing", "+(15-18)% to Critical Strike Multiplier with Two Handed Melee Weapons", statOrderKey = "799", statOrder = { 799 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0, }, tags = { "two_handed_mod", "melee_mod", }, }, - ["DualWieldingCritMultiplierJewel"] = { type = "Prefix", affix = "Puncturing", "+(15-18)% to Critical Strike Multiplier while Dual Wielding", statOrderKey = "3439", statOrder = { 3439 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "dual_wielding_mod", }, }, - ["ShieldCritMultiplierJewel"] = { type = "Prefix", affix = "", "+(6-8)% to Melee Critical Strike Multiplier while holding a Shield", statOrderKey = "825", statOrder = { 825 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "default", }, weightVal = { 0, }, tags = { "shield_mod", }, }, - ["MeleeCritMultiplier"] = { type = "Suffix", affix = "of Demolishing", "+(12-15)% to Melee Critical Strike Multiplier", statOrderKey = "823", statOrder = { 823 }, level = 1, group = "FormCritMultiplier", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0, }, tags = { "melee_mod", }, }, - ["SpellCritMultiplier"] = { type = "Suffix", affix = "of Unmaking", "+(12-15)% to Critical Strike Multiplier for Spells", statOrderKey = "813", statOrder = { 813 }, level = 1, group = "FormCritMultiplier", weightKey = { "not_int", "default", }, weightVal = { 0, 250, }, }, - ["TrapCritMultiplier"] = { type = "Prefix", affix = "Debilitating", "+(8-10)% to Critical Strike Multiplier with Traps", statOrderKey = "826", statOrder = { 826 }, level = 1, group = "FormCritMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, - ["MineCritMultiplier"] = { type = "Prefix", affix = "Incapacitating", "+(8-10)% to Critical Strike Multiplier with Mines", statOrderKey = "827", statOrder = { 827 }, level = 1, group = "FormCritMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireCritMultiplier"] = { type = "Prefix", affix = "Infernal", "+(15-18)% to Critical Strike Multiplier with Fire Skills", statOrderKey = "828", statOrder = { 828 }, level = 1, group = "FireCritMultiplier", weightKey = { "not_str", "default", }, weightVal = { 200, 250, }, }, - ["ColdCritMultiplier"] = { type = "Prefix", affix = "Arctic", "+(15-18)% to Critical Strike Multiplier with Cold Skills", statOrderKey = "830", statOrder = { 830 }, level = 1, group = "ColdCritMultiplier", weightKey = { "not_dex", "default", }, weightVal = { 200, 250, }, }, - ["LightningCritMultiplier"] = { type = "Prefix", affix = "Surging", "+(15-18)% to Critical Strike Multiplier with Lightning Skills", statOrderKey = "829", statOrder = { 829 }, level = 1, group = "LightningCritMultiplier", weightKey = { "not_int", "default", }, weightVal = { 200, 250, }, }, - ["ElementalCritMultiplier"] = { type = "Suffix", affix = "of the Elements", "+(12-15)% to Critical Strike Multiplier with Elemental Skills", statOrderKey = "831", statOrder = { 831 }, level = 1, group = "ElementalCritMultiplier", weightKey = { "default", }, weightVal = { 100, }, }, - ["ChaosCritMultiplier"] = { type = "Prefix", affix = "", "+(8-10)% to Critical Strike Multiplier with Chaos Skills", statOrderKey = "832", statOrder = { 832 }, level = 1, group = "ChaosCritMultiplier", weightKey = { "default", }, weightVal = { 0, }, }, - ["FireResistanceJewel"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 1, group = "FireResistance", weightKey = { "not_str", "default", }, weightVal = { 300, 500, }, }, - ["ColdResistanceJewel"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 1, group = "ColdResistance", weightKey = { "not_dex", "default", }, weightVal = { 300, 500, }, }, - ["LightningResistanceJewel"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 1, group = "LightningResistance", weightKey = { "not_int", "default", }, weightVal = { 300, 500, }, }, - ["FireColdResistanceJewel"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrderKey = "1979", statOrder = { 1979 }, level = 1, group = "FireAndColdResistance", weightKey = { "not_int", "default", }, weightVal = { 450, 250, }, }, - ["FireLightningResistanceJewel"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrderKey = "1980", statOrder = { 1980 }, level = 1, group = "FireAndLightningResistance", weightKey = { "not_dex", "default", }, weightVal = { 450, 250, }, }, - ["ColdLightningResistanceJewel"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrderKey = "1981", statOrder = { 1981 }, level = 1, group = "ColdAndLightningResistance", weightKey = { "not_str", "default", }, weightVal = { 450, 250, }, }, - ["AllResistancesJewel"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 300, }, }, - ["ChaosResistanceJewel"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 100, }, }, - ["StunDurationJewel"] = { type = "Suffix", affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrderKey = "1123", statOrder = { 1123 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { "not_str", "default", }, weightVal = { 200, 400, }, }, - ["StunRecoveryJewel"] = { type = "Suffix", affix = "of Recovery", "(10-14)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 1, group = "StunRecovery", weightKey = { "not_str", "default", }, weightVal = { 200, 400, }, }, - ["ManaCostReductionJewel"] = { type = "Suffix", affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrderKey = "1141", statOrder = { 1141 }, level = 1, group = "ManaCostReduction", weightKey = { "default", }, weightVal = { 500, }, }, - ["AuraRadiusJewel"] = { type = "Suffix", affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrderKey = "1479", statOrder = { 1479 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["CurseRadiusJewel"] = { type = "Suffix", affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Curse Skills", statOrderKey = "1480", statOrder = { 1480 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0, }, }, - ["AvoidIgniteJewel"] = { type = "Suffix", affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0, }, }, - ["AvoidShockJewel"] = { type = "Suffix", affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 1, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0, }, }, - ["AvoidFreezeJewel"] = { type = "Suffix", affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "AvoidFreeze", weightKey = { "default", }, weightVal = { 0, }, }, - ["AvoidChillJewel"] = { type = "Suffix", affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrderKey = "1105", statOrder = { 1105 }, level = 1, group = "AvoidChill", weightKey = { "default", }, weightVal = { 0, }, }, - ["AvoidStunJewel"] = { type = "Suffix", affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToFreezeJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Freeze", statOrderKey = "1285", statOrder = { 1285 }, level = 1, group = "ChanceToFreeze", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToIgniteJewel_"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Ignite", statOrderKey = "1282", statOrder = { 1282 }, level = 1, group = "ChanceToIgnite", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToShockJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Shock", statOrderKey = "1289", statOrder = { 1289 }, level = 1, group = "ChanceToShock", weightKey = { "default", }, weightVal = { 0, }, }, - ["EnduranceChargeDurationJewel"] = { type = "Suffix", affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrderKey = "1377", statOrder = { 1377 }, level = 1, group = "EnduranceChargeDuration", weightKey = { "not_str", "default", }, weightVal = { 0, 0, }, }, - ["FrenzyChargeDurationJewel"] = { type = "Suffix", affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrderKey = "1379", statOrder = { 1379 }, level = 1, group = "FrenzyChargeDuration", weightKey = { "not_dex", "default", }, weightVal = { 0, 0, }, }, - ["PowerChargeDurationJewel_"] = { type = "Suffix", affix = "of Power", "(10-14)% increased Power Charge Duration", statOrderKey = "1393", statOrder = { 1393 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { "not_int", "default", }, weightVal = { 0, 0, }, }, - ["KnockbackChanceJewel_"] = { type = "Suffix", affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrderKey = "1254", statOrder = { 1254 }, level = 1, group = "Knockback", weightKey = { "default", }, weightVal = { 250, }, }, - ["BlockDualWieldingJewel"] = { type = "Prefix", affix = "Parrying", "+1% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, level = 1, group = "FormBlock", weightKey = { "staff", "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 0, 350, }, tags = { "dual_wielding_mod", }, }, - ["BlockShieldJewel"] = { type = "Prefix", affix = "Shielding", "+1% Chance to Block Attack Damage while holding a Shield", statOrderKey = "496", statOrder = { 496 }, level = 1, group = "FormBlock", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350, }, tags = { "shield_mod", }, }, - ["BlockStaffJewel"] = { type = "Prefix", affix = "Deflecting", "+1% Chance to Block Attack Damage while wielding a Staff", statOrderKey = "504", statOrder = { 504 }, level = 1, group = "FormBlock", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["DualWieldingSpellBlockForJewel"] = { type = "Prefix", affix = "Dissipating", "+1% Chance to Block Spell Damage while Dual Wielding", statOrderKey = "498", statOrder = { 498 }, level = 1, group = "FormSpellBlock", weightKey = { "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 350, }, tags = { "dual_wielding_mod", }, }, - ["ShieldSpellBlockJewel"] = { type = "Prefix", affix = "Thwarting", "+1% Chance to Block Spell Damage while holding a Shield", statOrderKey = "497", statOrder = { 497 }, level = 1, group = "FormSpellBlock", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350, }, tags = { "shield_mod", }, }, - ["StaffSpellBlockJewel"] = { type = "Prefix", affix = "Halting", "+1% Chance to Block Spell Damage while wielding a Staff", statOrderKey = "501", statOrder = { 501 }, level = 1, group = "FormSpellBlock", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["FreezeDurationJewel"] = { type = "Suffix", affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrderKey = "4063", statOrder = { 4063 }, level = 1, group = "FreezeDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ShockDurationJewel"] = { type = "Suffix", affix = "of the Storm", "(12-16)% increased Shock Duration on Enemies", statOrderKey = "1117", statOrder = { 1117 }, level = 1, group = "ShockDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["IgniteDurationJewel"] = { type = "Suffix", affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrderKey = "1119", statOrder = { 1119 }, level = 1, group = "BurnDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["FreezeChanceAndDurationJewel"] = { type = "Suffix", affix = "of Freezing", "(12-16)% increased Freeze Duration on Enemies", "(3-5)% chance to Freeze", statOrderKey = "1118,1285", statOrder = { 1118, 1285 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_dex", "default", }, weightVal = { 250, 350, }, }, - ["ShockChanceAndDurationJewel"] = { type = "Suffix", affix = "of Shocking", "(12-16)% increased Shock Duration on Enemies", "(3-5)% chance to Shock", statOrderKey = "1117,1289", statOrder = { 1117, 1289 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_int", "default", }, weightVal = { 250, 350, }, }, - ["IgniteChanceAndDurationJewel"] = { type = "Suffix", affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", "(3-5)% chance to Ignite", statOrderKey = "1119,1282", statOrder = { 1119, 1282 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_str", "default", }, weightVal = { 250, 350, }, }, - ["PoisonChanceAndDurationForJewel"] = { type = "Suffix", affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrderKey = "2350,2353", statOrder = { 2350, 2353 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_dex", "default", }, weightVal = { 250, 350, }, }, - ["BleedChanceAndDurationForJewel__"] = { type = "Suffix", affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrderKey = "1692,3779", statOrder = { 1692, 3779 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_str", "default", }, weightVal = { 250, 350, }, }, - ["PoisonDamageForJewel"] = { type = "Suffix", affix = "of Venom", "(16-20)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 1, group = "PoisonDamage", weightKey = { "not_dex", "default", }, weightVal = { 250, 500, }, }, - ["BleedDamageForJewel"] = { type = "Suffix", affix = "of Haemophilia", "(16-20)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 1, group = "BleedingDamage", weightKey = { "not_str", "default", }, weightVal = { 250, 500, }, }, - ["BurningDamageForJewel"] = { type = "Suffix", affix = "of Combusting", "(16-20)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 1, group = "BurnDamage", weightKey = { "default", }, weightVal = { 500, }, }, - ["EnergyShieldDelayJewel"] = { type = "Prefix", affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrderKey = "871", statOrder = { 871 }, level = 1, group = "EnergyShieldDelay", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["EnergyShieldRateJewel"] = { type = "Prefix", affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrderKey = "874", statOrder = { 874 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "not_int", "default", }, weightVal = { 0, 500, }, }, - ["MinionBlockJewel"] = { type = "Suffix", affix = "of the Wall", "Minions have +(2-4)% Chance to Block Attack Damage", statOrderKey = "2081", statOrder = { 2081 }, level = 1, group = "MinionBlockChance", weightKey = { "not_int", "default", }, weightVal = { 0, 0, }, }, - ["MinionLifeJewel"] = { type = "Prefix", affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 1, group = "MinionLife", weightKey = { "not_int", "default", }, weightVal = { 0, 350, }, }, - ["MinionElementalResistancesJewel"] = { type = "Suffix", affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrderKey = "2090", statOrder = { 2090 }, level = 1, group = "MinionElementalResistances", weightKey = { "not_int", "default", }, weightVal = { 0, 350, }, }, - ["MinionAccuracyRatingJewel"] = { type = "Suffix", affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrderKey = "5906", statOrder = { 5906 }, level = 1, group = "MinionAccuracyRating", weightKey = { "not_int", "default", }, weightVal = { 0, 350, }, }, - ["TotemDamageJewel"] = { type = "Prefix", affix = "Shaman's", "(12-16)% increased Totem Damage", statOrderKey = "533", statOrder = { 533 }, level = 1, group = "TotemDamage", weightKey = { "not_str", "default", }, weightVal = { 250, 350, }, }, - ["TotemLifeJewel"] = { type = "Prefix", affix = "Carved", "(8-12)% increased Totem Life", statOrderKey = "1048", statOrder = { 1048 }, level = 1, group = "IncreasedTotemLife", weightKey = { "not_str", "default", }, weightVal = { 250, 350, }, }, - ["TotemElementalResistancesJewel"] = { type = "Suffix", affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrderKey = "1970", statOrder = { 1970 }, level = 1, group = "TotemElementalResistances", weightKey = { "not_str", "default", }, weightVal = { 250, 350, }, }, - ["JewelChaosNonAilmentDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Atrophy", "+(3-4)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 1, group = "DamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0, }, }, - ["JewelColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Gelidity", "+(3-4)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 1, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "not_str", "default", }, weightVal = { 0, 0, 300, 0, }, tags = { "has_caster_mod", }, }, - ["JewelFireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Zealousness", "+(3-4)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 1, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "not_dex", "default", }, weightVal = { 0, 300, 0, }, }, - ["JewelPhysicalDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Exsanguinating", "+(3-4)% to Physical Damage over Time Multiplier", statOrderKey = "583", statOrder = { 583 }, level = 1, group = "DamageOverTimeMultiplier", weightKey = { "not_int", "default", }, weightVal = { 300, 0, }, }, + ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrderKey = "1313", statOrder = { 1313 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrderKey = "1132", statOrder = { 1132 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrderKey = "1134", statOrder = { 1134 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrderKey = "1135", statOrder = { 1135 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrderKey = "1133", statOrder = { 1133 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2208", statOrder = { 2208 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (3-5)% increased Critical Strike Chance against you", statOrderKey = "2312", statOrder = { 2312 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrderKey = "2277", statOrder = { 2277 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Vaal Skills deal (5-10)% increased Damage", statOrderKey = "2276", statOrder = { 2276 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrderKey = "2280", statOrder = { 2280 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrderKey = "2281", statOrder = { 2281 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrderKey = "2283", statOrder = { 2283 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2275", statOrder = { 2275 }, level = 1, group = "PlayerCurseImmunity", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrderKey = "3949", statOrder = { 3949 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrderKey = "6489", statOrder = { 6489 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrderKey = "6000", statOrder = { 6000 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedDamageJewelCorrupted___"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 1, group = "IncreasedDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrderKey = "3763", statOrder = { 3763 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 1, group = "ReducedManaReservationsCost", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2275", statOrder = { 2275 }, level = 60, group = "PlayerCurseImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2FirePenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ColdPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2LightningPenetrationJewelCorrupted__"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ElementalPenetrationJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 1, group = "ElementalPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ArmourPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Enemies have -2% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 1, group = "ArmourPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaceDamageJewel"] = { type = "Prefix", affix = "Brutal", "(14-16)% increased Damage with Maces or Sceptres", statOrderKey = "654", statOrder = { 654 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", "melee_mod", }, }, + ["AxeDamageJewel"] = { type = "Prefix", affix = "Sinister", "(14-16)% increased Damage with Axes", statOrderKey = "630", statOrder = { 630 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", "melee_mod", }, }, + ["SwordDamageJewel"] = { type = "Prefix", affix = "Vicious", "(14-16)% increased Damage with Swords", statOrderKey = "668", statOrder = { 668 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", "melee_mod", }, }, + ["BowDamageJewel"] = { type = "Prefix", affix = "Fierce", "(14-16)% increased Damage with Bows", statOrderKey = "660", statOrder = { 660 }, level = 1, group = "SpecificWeaponDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["ClawDamageJewel"] = { type = "Prefix", affix = "Savage", "(14-16)% increased Damage with Claws", statOrderKey = "642", statOrder = { 642 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", "melee_mod", }, }, + ["DaggerDamageJewel"] = { type = "Prefix", affix = "Lethal", "(14-16)% increased Damage with Daggers", statOrderKey = "648", statOrder = { 648 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", "melee_mod", }, }, + ["WandDamageJewel"] = { type = "Prefix", affix = "Cruel", "(14-16)% increased Damage with Wands", statOrderKey = "2127", statOrder = { 2127 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["StaffDamageJewel"] = { type = "Prefix", affix = "Judging", "(14-16)% increased Damage with Staves", statOrderKey = "637", statOrder = { 637 }, level = 1, group = "SpecificWeaponDamage", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", "melee_mod", }, }, + ["OneHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Soldier's", "(12-14)% increased Damage with One Handed Weapons", statOrderKey = "2524", statOrder = { 2524 }, level = 1, group = "MeleeTypeDamage", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "one_handed_mod", "melee_mod", }, }, + ["TwoHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Champion's", "(12-14)% increased Damage with Two Handed Weapons", statOrderKey = "2525", statOrder = { 2525 }, level = 1, group = "MeleeTypeDamage", weightKey = { "bow", "wand", "one_handed_mod", "dual_wielding_mod", "shield_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "melee_mod", }, }, + ["DualWieldingMeleeDamageJewel"] = { type = "Prefix", affix = "Gladiator's", "(12-14)% increased Attack Damage while Dual Wielding", statOrderKey = "608", statOrder = { 608 }, level = 1, group = "MeleeTypeDamage", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", }, }, + ["UnarmedMeleeDamageJewel"] = { type = "Prefix", affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrderKey = "629", statOrder = { 629 }, level = 1, group = "MeleeTypeDamage", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MeleeDamageJewel_"] = { type = "Suffix", affix = "of Combat", "(10-12)% increased Melee Damage", statOrderKey = "572", statOrder = { 572 }, level = 1, group = "DamageForm", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "melee_mod", }, }, + ["ProjectileDamageJewel"] = { type = "Suffix", affix = "of Archery", "(10-12)% increased Projectile Damage", statOrderKey = "1255", statOrder = { 1255 }, level = 1, group = "DamageForm", weightKey = { "not_dex", "default", }, weightVal = { 400, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellDamageJewel"] = { type = "Suffix", affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrderKey = "562", statOrder = { 562 }, level = 1, group = "DamageForm", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StaffSpellDamageJewel"] = { type = "Prefix", affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrderKey = "565", statOrder = { 565 }, level = 1, group = "SpellTypeDamage", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 500, 0, 0, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["DualWieldingSpellDamageJewel_"] = { type = "Prefix", affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrderKey = "568", statOrder = { 568 }, level = 1, group = "SpellTypeDamage", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", }, }, + ["ShieldSpellDamageJewel"] = { type = "Prefix", affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrderKey = "567", statOrder = { 567 }, level = 1, group = "SpellTypeDamage", weightKey = { "two_handed_mod", "dual_wielding_mod", "bow", "staff", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", }, }, + ["TrapDamageJewel"] = { type = "Prefix", affix = "Trapping", "(14-16)% increased Trap Damage", statOrderKey = "534", statOrder = { 534 }, level = 1, group = "DamageForm", weightKey = { "not_str", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineDamageJewel"] = { type = "Prefix", affix = "Sabotage", "(14-16)% increased Mine Damage", statOrderKey = "536", statOrder = { 536 }, level = 1, group = "DamageForm", weightKey = { "not_str", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageJewel"] = { type = "Suffix", affix = "of Wounding", "(8-10)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 1, group = "DamageForm", weightKey = { "default", }, weightVal = { 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionDamageJewel"] = { type = "Prefix", affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "DamageForm", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireDamageJewel"] = { type = "Prefix", affix = "Flaming", "(14-16)% increased Fire Damage", statOrderKey = "686", statOrder = { 686 }, level = 1, group = "FireDamagePercentage", weightKey = { "not_str", "default", }, weightVal = { 400, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdDamageJewel"] = { type = "Prefix", affix = "Chilling", "(14-16)% increased Cold Damage", statOrderKey = "693", statOrder = { 693 }, level = 1, group = "ColdDamagePercentage", weightKey = { "not_dex", "default", }, weightVal = { 400, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningDamageJewel"] = { type = "Prefix", affix = "Humming", "(14-16)% increased Lightning Damage", statOrderKey = "702", statOrder = { 702 }, level = 1, group = "LightningDamagePercentage", weightKey = { "not_int", "default", }, weightVal = { 400, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageJewel"] = { type = "Prefix", affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrderKey = "569", statOrder = { 569 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageOverTimeJewel"] = { type = "Suffix", affix = "of Entropy", "(10-12)% increased Damage over Time", statOrderKey = "550", statOrder = { 550 }, level = 1, group = "DegenerationDamage", weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosDamageJewel"] = { type = "Prefix", affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrderKey = "708", statOrder = { 708 }, level = 1, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 200 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AreaDamageJewel"] = { type = "Suffix", affix = "of Blasting", "(10-12)% increased Area Damage", statOrderKey = "1291", statOrder = { 1291 }, level = 1, group = "AreaDamage", weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MaceAttackSpeedJewel"] = { type = "Prefix", affix = "Beating", "(6-8)% increased Attack Speed with Maces or Sceptres", statOrderKey = "745", statOrder = { 745 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", "melee_mod", }, }, + ["AxeAttackSpeedJewel"] = { type = "Prefix", affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrderKey = "741", statOrder = { 741 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", "melee_mod", }, }, + ["SwordAttackSpeedJewel"] = { type = "Prefix", affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrderKey = "747", statOrder = { 747 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", "melee_mod", }, }, + ["BowAttackSpeedJewel"] = { type = "Prefix", affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrderKey = "746", statOrder = { 746 }, level = 1, group = "SpecificWeaponSpeed", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["ClawAttackSpeedJewel"] = { type = "Prefix", affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrderKey = "743", statOrder = { 743 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", "melee_mod", }, }, + ["DaggerAttackSpeedJewel"] = { type = "Prefix", affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrderKey = "744", statOrder = { 744 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", "melee_mod", }, }, + ["WandAttackSpeedJewel"] = { type = "Prefix", affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrderKey = "748", statOrder = { 748 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["StaffAttackSpeedJewel"] = { type = "Prefix", affix = "Blunt", "(6-8)% increased Attack Speed with Staves", statOrderKey = "742", statOrder = { 742 }, level = 1, group = "SpecificWeaponSpeed", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", "melee_mod", }, }, + ["OneHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrderKey = "740", statOrder = { 740 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "one_handed_mod", "melee_mod", }, }, + ["TwoHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrderKey = "739", statOrder = { 739 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "bow", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "melee_mod", }, }, + ["DualWieldingAttackSpeedJewel"] = { type = "Prefix", affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrderKey = "736", statOrder = { 736 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "shield_mod", "two_handed_mod", "default", }, weightVal = { 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", }, }, + ["DualWieldingCastSpeedJewel"] = { type = "Prefix", affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrderKey = "768", statOrder = { 768 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", }, }, + ["ShieldAttackSpeedJewel"] = { type = "Prefix", affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrderKey = "738", statOrder = { 738 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 400 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", }, }, + ["ShieldCastSpeedJewel"] = { type = "Prefix", affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrderKey = "769", statOrder = { 769 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", }, }, + ["StaffCastSpeedJewel"] = { type = "Prefix", affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrderKey = "770", statOrder = { 770 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["UnarmedAttackSpeedJewel"] = { type = "Prefix", affix = "Furious", "(6-8)% increased Attack Speed with Unarmed Attacks", statOrderKey = "750", statOrder = { 750 }, level = 1, group = "MeleeTypeSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackSpeedJewel"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ProjectileSpeedJewel"] = { type = "Suffix", affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrderKey = "1068", statOrder = { 1068 }, level = 1, group = "ProjectileSpeed", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CastSpeedJewel"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapThrowSpeedJewel"] = { type = "Prefix", affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrderKey = "1178", statOrder = { 1178 }, level = 1, group = "TrapThrowSpeed", weightKey = { "not_str", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineLaySpeedJewel"] = { type = "Prefix", affix = "Arming", "(6-8)% increased Mine Throwing Speed", statOrderKey = "1179", statOrder = { 1179 }, level = 1, group = "MineLaySpeed", weightKey = { "not_str", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AttackAndCastSpeedJewel"] = { type = "Suffix", affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrderKey = "1303", statOrder = { 1303 }, level = 1, group = "AttackCastSpeed", weightKey = { "default", }, weightVal = { 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PhysicalDamageWhileHoldingAShield"] = { type = "Prefix", affix = "Flanking", "(12-14)% increased Attack Damage while holding a Shield", statOrderKey = "546", statOrder = { 546 }, level = 1, group = "MeleeTypeDamage", weightKey = { "bow", "wand", "dual_wielding_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "melee_mod", }, }, + ["FireGemCastSpeedJewel"] = { type = "Prefix", affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrderKey = "692", statOrder = { 692 }, level = 1, group = "FireCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdGemCastSpeedJewel"] = { type = "Prefix", affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrderKey = "701", statOrder = { 701 }, level = 1, group = "ColdCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningGemCastSpeedJewel_"] = { type = "Prefix", affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrderKey = "707", statOrder = { 707 }, level = 1, group = "LightningCastSpeed", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosGemCastSpeedJewel"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrderKey = "713", statOrder = { 713 }, level = 1, group = "ChaosCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseCastSpeedJewel_"] = { type = "Suffix", affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrderKey = "1475", statOrder = { 1475 }, level = 1, group = "CurseCastSpeed", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StrengthJewel"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrderKey = "521", statOrder = { 521 }, level = 1, group = "Strength", weightKey = { "not_str", "default", }, weightVal = { 300, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DexterityJewel"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrderKey = "522", statOrder = { 522 }, level = 1, group = "Dexterity", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IntelligenceJewel"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrderKey = "523", statOrder = { 523 }, level = 1, group = "Intelligence", weightKey = { "not_int", "default", }, weightVal = { 300, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StrengthDexterityJewel"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrderKey = "524", statOrder = { 524 }, level = 1, group = "StrengthDexterity", weightKey = { "not_int", "default", }, weightVal = { 450, 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StrengthIntelligenceJewel"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrderKey = "525", statOrder = { 525 }, level = 1, group = "StrengthIntelligence", weightKey = { "not_dex", "default", }, weightVal = { 450, 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DexterityIntelligenceJewel"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrderKey = "526", statOrder = { 526 }, level = 1, group = "DexterityIntelligence", weightKey = { "not_str", "default", }, weightVal = { 450, 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllAttributesJewel"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 300 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLifeJewel"] = { type = "Prefix", affix = "Healthy", "+(8-12) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentIncreasedLifeJewel"] = { type = "Prefix", affix = "Vivid", "(5-7)% increased maximum Life", statOrderKey = "879", statOrder = { 879 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "not_str", "default", }, weightVal = { 350, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaJewel"] = { type = "Prefix", affix = "Learned", "+(8-12) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 1, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentIncreasedManaJewel"] = { type = "Prefix", affix = "Enlightened", "(8-10)% increased maximum Mana", statOrderKey = "885", statOrder = { 885 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "not_str", "default", }, weightVal = { 500, 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedManaRegenJewel"] = { type = "Prefix", affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrderKey = "888", statOrder = { 888 }, level = 1, group = "ManaRegeneration", weightKey = { "not_int", "default", }, weightVal = { 250, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEnergyShieldJewel_"] = { type = "Prefix", affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldJewel"] = { type = "Prefix", affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrderKey = "870", statOrder = { 870 }, level = 1, group = "EnergyShieldPercent", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrderKey = "877,884", statOrder = { 877, 884 }, level = 1, group = "IncreasedLifeAndMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentIncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrderKey = "879,885", statOrder = { 879, 885 }, level = 1, group = "PercentageIncreasedLifeAndMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldAndManaJewel"] = { type = "Prefix", affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrderKey = "870,885", statOrder = { 870, 885 }, level = 1, group = "IncreasedEnergyShieldAndMana", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeAndEnergyShieldJewel"] = { type = "Prefix", affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrderKey = "870,879", statOrder = { 870, 879 }, level = 1, group = "IncreasedLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrderKey = "944", statOrder = { 944 }, level = 1, group = "LifeLeech", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrderKey = "980", statOrder = { 980 }, level = 1, group = "ManaLeech", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellLifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Transfusing", "0.2% of Spell Damage Leeched as Life", statOrderKey = "957", statOrder = { 957 }, level = 1, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SpellManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Siphoning", "0.2% of Spell Damage Leeched as Mana", statOrderKey = "985", statOrder = { 985 }, level = 1, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeOnHitJewel"] = { type = "Suffix", affix = "of Rejuvenation", "+(2-3) Life gained for each Enemy hit by your Attacks", statOrderKey = "1017", statOrder = { 1017 }, level = 1, group = "LifeGainPerTarget", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaOnHitJewel"] = { type = "Suffix", affix = "of Absorption", "+(1-2) Mana gained for each Enemy hit by your Attacks", statOrderKey = "1021", statOrder = { 1021 }, level = 1, group = "ManaGainPerTarget", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldOnHitJewel"] = { type = "Suffix", affix = "of Focus", "+(2-3) Energy Shield gained for each Enemy hit by your Attacks", statOrderKey = "1024", statOrder = { 1024 }, level = 1, group = "EnergyShieldGainPerTarget", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedArmourJewel"] = { type = "Prefix", affix = "Armoured", "(14-18)% increased Armour", statOrderKey = "850", statOrder = { 850 }, level = 1, group = "IncreasedPhysicalDamageReductionRatingPercent", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedEvasionJewel"] = { type = "Prefix", affix = "Evasive", "(14-18)% increased Evasion Rating", statOrderKey = "859", statOrder = { 859 }, level = 1, group = "EvasionRatingPercent", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArmourEvasionJewel"] = { type = "Prefix", affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrderKey = "850,859", statOrder = { 850, 859 }, level = 1, group = "ArmourEvasion", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ArmourEnergyShieldJewel"] = { type = "Prefix", affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrderKey = "850,870", statOrder = { 850, 870 }, level = 1, group = "ArmourEnergyShield", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EvasionEnergyShieldJewel"] = { type = "Prefix", affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrderKey = "859,870", statOrder = { 859, 870 }, level = 1, group = "EvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedDefensesJewel"] = { type = "Prefix", affix = "Defensive", "(4-6)% increased Global Defences", statOrderKey = "2016", statOrder = { 2016 }, level = 1, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ItemRarityJewel"] = { type = "Suffix", affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrderKey = "896", statOrder = { 896 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "default", }, weightVal = { 150 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 1, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PercentIncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Precision", "(10-14)% increased Global Accuracy Rating", statOrderKey = "755", statOrder = { 755 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AccuracyAndCritsJewel"] = { type = "Suffix", affix = "of Deadliness", "(6-10)% increased Global Accuracy Rating", "(6-10)% increased Global Critical Strike Chance", statOrderKey = "755,782", statOrder = { 755, 782 }, level = 1, group = "AccuracyAndCrits", weightKey = { "not_dex", "default", }, weightVal = { 0, 150 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeChanceJewel"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CriticalStrikeMultiplierJewel"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CritChanceWithMaceJewel"] = { type = "Prefix", affix = "of Striking FIX ME", "(12-16)% increased Critical Strike Chance with Maces or Sceptres", statOrderKey = "791", statOrder = { 791 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["CritChanceWithAxeJewel"] = { type = "Prefix", affix = "of Biting FIX ME", "(12-16)% increased Critical Strike Chance with Axes", statOrderKey = "794", statOrder = { 794 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["CritChanceWithSwordJewel"] = { type = "Prefix", affix = "of Stinging FIX ME", "(12-16)% increased Critical Strike Chance with Swords", statOrderKey = "790", statOrder = { 790 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["CritChanceWithBowJewel"] = { type = "Prefix", affix = "of the Sniper FIX ME", "(12-16)% increased Critical Strike Chance with Bows", statOrderKey = "787", statOrder = { 787 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["CritChanceWithClawJewel"] = { type = "Prefix", affix = "of the Eagle FIX ME", "(12-16)% increased Critical Strike Chance with Claws", statOrderKey = "788", statOrder = { 788 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["CritChanceWithDaggerJewel"] = { type = "Prefix", affix = "of Needling FIX ME", "(12-16)% increased Critical Strike Chance with Daggers", statOrderKey = "789", statOrder = { 789 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["CritChanceWithWandJewel"] = { type = "Prefix", affix = "of Divination FIX ME", "(12-16)% increased Critical Strike Chance with Wands", statOrderKey = "793", statOrder = { 793 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["CritChanceWithStaffJewel"] = { type = "Prefix", affix = "of Tyranny FIX ME", "(12-16)% increased Critical Strike Chance with Staves", statOrderKey = "792", statOrder = { 792 }, level = 1, group = "SpecificWeaponCritChance", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["CritMultiplierWithMaceJewel"] = { type = "Prefix", affix = "of Crushing FIX ME", "+(8-10)% to Critical Strike Multiplier with Maces or Sceptres", statOrderKey = "815", statOrder = { 815 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["CritMultiplierWithAxeJewel"] = { type = "Prefix", affix = "of Execution FIX ME", "+(8-10)% to Critical Strike Multiplier with Axes", statOrderKey = "816", statOrder = { 816 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["CritMultiplierWithSwordJewel"] = { type = "Prefix", affix = "of Severing FIX ME", "+(8-10)% to Critical Strike Multiplier with Swords", statOrderKey = "818", statOrder = { 818 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["CritMultiplierWithBowJewel"] = { type = "Prefix", affix = "of the Hunter FIX ME", "+(8-10)% to Critical Strike Multiplier with Bows", statOrderKey = "817", statOrder = { 817 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["CritMultiplierWithClawJewel"] = { type = "Prefix", affix = "of the Bear FIX ME", "+(8-10)% to Critical Strike Multiplier with Claws", statOrderKey = "820", statOrder = { 820 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["CritMultiplierWithDaggerJewel"] = { type = "Prefix", affix = "of Assassination FIX ME", "+(8-10)% to Critical Strike Multiplier with Daggers", statOrderKey = "814", statOrder = { 814 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["CritMultiplierWithWandJewel_"] = { type = "Prefix", affix = "of Evocation FIX ME", "+(8-10)% to Critical Strike Multiplier with Wands", statOrderKey = "819", statOrder = { 819 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["CritMultiplierWithStaffJewel"] = { type = "Prefix", affix = "of Trauma FIX ME", "+(8-10)% to Critical Strike Multiplier with Staves", statOrderKey = "821", statOrder = { 821 }, level = 1, group = "SpecificWeaponCritMultiplier", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["OneHandedCritChanceJewel"] = { type = "Prefix", affix = "Harming", "(14-18)% increased Critical Strike Chance with One Handed Melee Weapons", statOrderKey = "800", statOrder = { 800 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "one_handed_mod", "melee_mod", }, }, + ["TwoHandedCritChanceJewel"] = { type = "Prefix", affix = "Sundering", "(14-18)% increased Critical Strike Chance with Two Handed Melee Weapons", statOrderKey = "798", statOrder = { 798 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "melee_mod", }, }, + ["DualWieldingCritChanceJewel"] = { type = "Prefix", affix = "Technical", "(14-18)% increased Attack Critical Strike Chance while Dual Wielding", statOrderKey = "802", statOrder = { 802 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", }, }, + ["ShieldCritChanceJewel"] = { type = "Prefix", affix = "", "(10-14)% increased Critical Strike Chance while holding a Shield", statOrderKey = "795", statOrder = { 795 }, level = 1, group = "MeleeTypeCritChance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", }, }, + ["MeleeCritChanceJewel"] = { type = "Suffix", affix = "of Weight", "(10-14)% increased Melee Critical Strike Chance", statOrderKey = "801", statOrder = { 801 }, level = 1, group = "FormCritChance", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "melee_mod", }, }, + ["SpellCritChanceJewel"] = { type = "Suffix", affix = "of Annihilation", "(10-14)% increased Critical Strike Chance for Spells", statOrderKey = "781", statOrder = { 781 }, level = 1, group = "FormCritChance", weightKey = { "not_int", "default", }, weightVal = { 0, 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapCritChanceJewel_"] = { type = "Prefix", affix = "Inescapable", "(12-16)% increased Critical Strike Chance with Traps", statOrderKey = "796", statOrder = { 796 }, level = 1, group = "FormCritChance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineCritChanceJewel"] = { type = "Prefix", affix = "Crippling", "(12-16)% increased Critical Strike Chance with Mines", statOrderKey = "797", statOrder = { 797 }, level = 1, group = "FormCritChance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireCritChanceJewel"] = { type = "Prefix", affix = "Incinerating", "(14-18)% increased Critical Strike Chance with Fire Skills", statOrderKey = "803", statOrder = { 803 }, level = 1, group = "FireCritChance", weightKey = { "not_str", "default", }, weightVal = { 200, 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdCritChanceJewel"] = { type = "Prefix", affix = "Avalanching", "(14-18)% increased Critical Strike Chance with Cold Skills", statOrderKey = "805", statOrder = { 805 }, level = 1, group = "ColdCritChance", weightKey = { "not_dex", "default", }, weightVal = { 200, 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningCritChanceJewel"] = { type = "Prefix", affix = "Thundering", "(14-18)% increased Critical Strike Chance with Lightning Skills", statOrderKey = "804", statOrder = { 804 }, level = 1, group = "LightningCritChance", weightKey = { "not_int", "default", }, weightVal = { 200, 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalCritChanceJewel"] = { type = "Suffix", affix = "of the Apocalypse", "(10-14)% increased Critical Strike Chance with Elemental Skills", statOrderKey = "806", statOrder = { 806 }, level = 1, group = "ElementalCritChance", weightKey = { "default", }, weightVal = { 100 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosCritChanceJewel"] = { type = "Prefix", affix = "Obliterating", "(12-16)% increased Critical Strike Chance with Chaos Skills", statOrderKey = "807", statOrder = { 807 }, level = 1, group = "ChaosCritChance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["OneHandCritMultiplierJewel_"] = { type = "Prefix", affix = "Piercing", "+(15-18)% to Critical Strike Multiplier with One Handed Melee Weapons", statOrderKey = "822", statOrder = { 822 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "melee_mod", "one_handed_mod", }, }, + ["TwoHandCritMultiplierJewel"] = { type = "Prefix", affix = "Rupturing", "+(15-18)% to Critical Strike Multiplier with Two Handed Melee Weapons", statOrderKey = "799", statOrder = { 799 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "melee_mod", }, }, + ["DualWieldingCritMultiplierJewel"] = { type = "Prefix", affix = "Puncturing", "+(15-18)% to Critical Strike Multiplier while Dual Wielding", statOrderKey = "3439", statOrder = { 3439 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", }, }, + ["ShieldCritMultiplierJewel"] = { type = "Prefix", affix = "", "+(6-8)% to Melee Critical Strike Multiplier while holding a Shield", statOrderKey = "825", statOrder = { 825 }, level = 1, group = "MeleeTypeCritMultiplier", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", }, }, + ["MeleeCritMultiplier"] = { type = "Suffix", affix = "of Demolishing", "+(12-15)% to Melee Critical Strike Multiplier", statOrderKey = "823", statOrder = { 823 }, level = 1, group = "FormCritMultiplier", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "melee_mod", }, }, + ["SpellCritMultiplier"] = { type = "Suffix", affix = "of Unmaking", "+(12-15)% to Critical Strike Multiplier for Spells", statOrderKey = "813", statOrder = { 813 }, level = 1, group = "FormCritMultiplier", weightKey = { "not_int", "default", }, weightVal = { 0, 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TrapCritMultiplier"] = { type = "Prefix", affix = "Debilitating", "+(8-10)% to Critical Strike Multiplier with Traps", statOrderKey = "826", statOrder = { 826 }, level = 1, group = "FormCritMultiplier", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MineCritMultiplier"] = { type = "Prefix", affix = "Incapacitating", "+(8-10)% to Critical Strike Multiplier with Mines", statOrderKey = "827", statOrder = { 827 }, level = 1, group = "FormCritMultiplier", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireCritMultiplier"] = { type = "Prefix", affix = "Infernal", "+(15-18)% to Critical Strike Multiplier with Fire Skills", statOrderKey = "828", statOrder = { 828 }, level = 1, group = "FireCritMultiplier", weightKey = { "not_str", "default", }, weightVal = { 200, 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdCritMultiplier"] = { type = "Prefix", affix = "Arctic", "+(15-18)% to Critical Strike Multiplier with Cold Skills", statOrderKey = "830", statOrder = { 830 }, level = 1, group = "ColdCritMultiplier", weightKey = { "not_dex", "default", }, weightVal = { 200, 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningCritMultiplier"] = { type = "Prefix", affix = "Surging", "+(15-18)% to Critical Strike Multiplier with Lightning Skills", statOrderKey = "829", statOrder = { 829 }, level = 1, group = "LightningCritMultiplier", weightKey = { "not_int", "default", }, weightVal = { 200, 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ElementalCritMultiplier"] = { type = "Suffix", affix = "of the Elements", "+(12-15)% to Critical Strike Multiplier with Elemental Skills", statOrderKey = "831", statOrder = { 831 }, level = 1, group = "ElementalCritMultiplier", weightKey = { "default", }, weightVal = { 100 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosCritMultiplier"] = { type = "Prefix", affix = "", "+(8-10)% to Critical Strike Multiplier with Chaos Skills", statOrderKey = "832", statOrder = { 832 }, level = 1, group = "ChaosCritMultiplier", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireResistanceJewel"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 1, group = "FireResistance", weightKey = { "not_str", "default", }, weightVal = { 300, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdResistanceJewel"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 1, group = "ColdResistance", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LightningResistanceJewel"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 1, group = "LightningResistance", weightKey = { "not_int", "default", }, weightVal = { 300, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireColdResistanceJewel"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrderKey = "1979", statOrder = { 1979 }, level = 1, group = "FireAndColdResistance", weightKey = { "not_int", "default", }, weightVal = { 450, 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FireLightningResistanceJewel"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrderKey = "1980", statOrder = { 1980 }, level = 1, group = "FireAndLightningResistance", weightKey = { "not_dex", "default", }, weightVal = { 450, 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ColdLightningResistanceJewel"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrderKey = "1981", statOrder = { 1981 }, level = 1, group = "ColdAndLightningResistance", weightKey = { "not_str", "default", }, weightVal = { 450, 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AllResistancesJewel"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 300 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosResistanceJewel"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 100 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunDurationJewel"] = { type = "Suffix", affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrderKey = "1123", statOrder = { 1123 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { "not_str", "default", }, weightVal = { 200, 400 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["StunRecoveryJewel"] = { type = "Suffix", affix = "of Recovery", "(10-14)% increased Stun and Block Recovery", statOrderKey = "1153", statOrder = { 1153 }, level = 1, group = "StunRecovery", weightKey = { "not_str", "default", }, weightVal = { 200, 400 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaCostReductionJewel"] = { type = "Suffix", affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrderKey = "1141", statOrder = { 1141 }, level = 1, group = "ManaCostReduction", weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AuraRadiusJewel"] = { type = "Suffix", affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrderKey = "1479", statOrder = { 1479 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["CurseRadiusJewel"] = { type = "Suffix", affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Curse Skills", statOrderKey = "1480", statOrder = { 1480 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidIgniteJewel"] = { type = "Suffix", affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidShockJewel"] = { type = "Suffix", affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 1, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidFreezeJewel"] = { type = "Suffix", affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrderKey = "1106", statOrder = { 1106 }, level = 1, group = "AvoidFreeze", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidChillJewel"] = { type = "Suffix", affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrderKey = "1105", statOrder = { 1105 }, level = 1, group = "AvoidChill", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AvoidStunJewel"] = { type = "Suffix", affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToFreezeJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Freeze", statOrderKey = "1285", statOrder = { 1285 }, level = 1, group = "ChanceToFreeze", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToIgniteJewel_"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Ignite", statOrderKey = "1282", statOrder = { 1282 }, level = 1, group = "ChanceToIgnite", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToShockJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Shock", statOrderKey = "1289", statOrder = { 1289 }, level = 1, group = "ChanceToShock", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnduranceChargeDurationJewel"] = { type = "Suffix", affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrderKey = "1377", statOrder = { 1377 }, level = 1, group = "EnduranceChargeDuration", weightKey = { "not_str", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FrenzyChargeDurationJewel"] = { type = "Suffix", affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrderKey = "1379", statOrder = { 1379 }, level = 1, group = "FrenzyChargeDuration", weightKey = { "not_dex", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PowerChargeDurationJewel_"] = { type = "Suffix", affix = "of Power", "(10-14)% increased Power Charge Duration", statOrderKey = "1393", statOrder = { 1393 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["KnockbackChanceJewel_"] = { type = "Suffix", affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrderKey = "1254", statOrder = { 1254 }, level = 1, group = "Knockback", weightKey = { "default", }, weightVal = { 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BlockDualWieldingJewel"] = { type = "Prefix", affix = "Parrying", "+1% Chance to Block Attack Damage while Dual Wielding", statOrderKey = "511", statOrder = { 511 }, level = 1, group = "FormBlock", weightKey = { "staff", "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 0, 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", }, }, + ["BlockShieldJewel"] = { type = "Prefix", affix = "Shielding", "+1% Chance to Block Attack Damage while holding a Shield", statOrderKey = "496", statOrder = { 496 }, level = 1, group = "FormBlock", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", }, }, + ["BlockStaffJewel"] = { type = "Prefix", affix = "Deflecting", "+1% Chance to Block Attack Damage while wielding a Staff", statOrderKey = "504", statOrder = { 504 }, level = 1, group = "FormBlock", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["DualWieldingSpellBlockForJewel"] = { type = "Prefix", affix = "Dissipating", "+1% Chance to Block Spell Damage while Dual Wielding", statOrderKey = "498", statOrder = { 498 }, level = 1, group = "FormSpellBlock", weightKey = { "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", }, }, + ["ShieldSpellBlockJewel"] = { type = "Prefix", affix = "Thwarting", "+1% Chance to Block Spell Damage while holding a Shield", statOrderKey = "497", statOrder = { 497 }, level = 1, group = "FormSpellBlock", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", }, }, + ["StaffSpellBlockJewel"] = { type = "Prefix", affix = "Halting", "+1% Chance to Block Spell Damage while wielding a Staff", statOrderKey = "501", statOrder = { 501 }, level = 1, group = "FormSpellBlock", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["FreezeDurationJewel"] = { type = "Suffix", affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrderKey = "4063", statOrder = { 4063 }, level = 1, group = "FreezeDuration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ShockDurationJewel"] = { type = "Suffix", affix = "of the Storm", "(12-16)% increased Shock Duration on Enemies", statOrderKey = "1117", statOrder = { 1117 }, level = 1, group = "ShockDuration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IgniteDurationJewel"] = { type = "Suffix", affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrderKey = "1119", statOrder = { 1119 }, level = 1, group = "BurnDuration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["FreezeChanceAndDurationJewel"] = { type = "Suffix", affix = "of Freezing", "(12-16)% increased Freeze Duration on Enemies", "(3-5)% chance to Freeze", statOrderKey = "1118,1285", statOrder = { 1118, 1285 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ShockChanceAndDurationJewel"] = { type = "Suffix", affix = "of Shocking", "(12-16)% increased Shock Duration on Enemies", "(3-5)% chance to Shock", statOrderKey = "1117,1289", statOrder = { 1117, 1289 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_int", "default", }, weightVal = { 250, 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IgniteChanceAndDurationJewel"] = { type = "Suffix", affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", "(3-5)% chance to Ignite", statOrderKey = "1119,1282", statOrder = { 1119, 1282 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonChanceAndDurationForJewel"] = { type = "Suffix", affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrderKey = "2350,2353", statOrder = { 2350, 2353 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedChanceAndDurationForJewel__"] = { type = "Suffix", affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrderKey = "1692,3779", statOrder = { 1692, 3779 }, level = 1, group = "AilmentChanceAndDuration", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["PoisonDamageForJewel"] = { type = "Suffix", affix = "of Venom", "(16-20)% increased Damage with Poison", statOrderKey = "2361", statOrder = { 2361 }, level = 1, group = "PoisonDamage", weightKey = { "not_dex", "default", }, weightVal = { 250, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BleedDamageForJewel"] = { type = "Suffix", affix = "of Haemophilia", "(16-20)% increased Damage with Bleeding", statOrderKey = "2349", statOrder = { 2349 }, level = 1, group = "BleedingDamage", weightKey = { "not_str", "default", }, weightVal = { 250, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["BurningDamageForJewel"] = { type = "Suffix", affix = "of Combusting", "(16-20)% increased Burning Damage", statOrderKey = "1137", statOrder = { 1137 }, level = 1, group = "BurnDamage", weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldDelayJewel"] = { type = "Prefix", affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrderKey = "871", statOrder = { 871 }, level = 1, group = "EnergyShieldDelay", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["EnergyShieldRateJewel"] = { type = "Prefix", affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrderKey = "874", statOrder = { 874 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionBlockJewel"] = { type = "Suffix", affix = "of the Wall", "Minions have +(2-4)% Chance to Block Attack Damage", statOrderKey = "2081", statOrder = { 2081 }, level = 1, group = "MinionBlockChance", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionLifeJewel"] = { type = "Prefix", affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 1, group = "MinionLife", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionElementalResistancesJewel"] = { type = "Suffix", affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrderKey = "2090", statOrder = { 2090 }, level = 1, group = "MinionElementalResistances", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["MinionAccuracyRatingJewel"] = { type = "Suffix", affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrderKey = "5906", statOrder = { 5906 }, level = 1, group = "MinionAccuracyRating", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TotemDamageJewel"] = { type = "Prefix", affix = "Shaman's", "(12-16)% increased Totem Damage", statOrderKey = "533", statOrder = { 533 }, level = 1, group = "TotemDamage", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TotemLifeJewel"] = { type = "Prefix", affix = "Carved", "(8-12)% increased Totem Life", statOrderKey = "1048", statOrder = { 1048 }, level = 1, group = "IncreasedTotemLife", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["TotemElementalResistancesJewel"] = { type = "Suffix", affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrderKey = "1970", statOrder = { 1970 }, level = 1, group = "TotemElementalResistances", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["JewelChaosNonAilmentDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Atrophy", "+(3-4)% to Chaos Damage over Time Multiplier", statOrderKey = "593", statOrder = { 593 }, level = 1, group = "DamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["JewelColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Gelidity", "+(3-4)% to Cold Damage over Time Multiplier", statOrderKey = "590", statOrder = { 590 }, level = 1, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "no_caster_mods", "not_str", "default", }, weightVal = { 0, 0, 300, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, tags = { "has_caster_mod", }, }, + ["JewelFireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Zealousness", "+(3-4)% to Fire Damage over Time Multiplier", statOrderKey = "586", statOrder = { 586 }, level = 1, group = "DamageOverTimeMultiplier", weightKey = { "no_elemental_damage_mods", "not_dex", "default", }, weightVal = { 0, 300, 0 }, weightMultiplierKey = { "has_caster_mod", "has_attack_mod", "default", }, weightMultiplierVal = { 100, 50, 100 }, }, + ["JewelPhysicalDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Exsanguinating", "+(3-4)% to Physical Damage over Time Multiplier", statOrderKey = "583", statOrder = { 583 }, level = 1, group = "DamageOverTimeMultiplier", weightKey = { "not_int", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, } \ No newline at end of file diff --git a/Data/3_0/ModJewelAbyss.lua b/Data/3_0/ModJewelAbyss.lua index 5a6784894..d99c64663 100644 --- a/Data/3_0/ModJewelAbyss.lua +++ b/Data/3_0/ModJewelAbyss.lua @@ -2,498 +2,498 @@ -- Item data (c) Grinding Gear Games return { - ["ChaosResistAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedCharacterSizeAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrderKey = "1313", statOrder = { 1313 }, level = 1, group = "ActorSize", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedChillDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrderKey = "1132", statOrder = { 1132 }, level = 1, group = "ReducedChillDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedFreezeDurationAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrderKey = "1134", statOrder = { 1134 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedIgniteDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrderKey = "1135", statOrder = { 1135 }, level = 1, group = "ReducedBurnDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["ReducedShockDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrderKey = "1133", statOrder = { 1133 }, level = 1, group = "ReducedShockDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["IncreasedChargeDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2208", statOrder = { 2208 }, level = 1, group = "ChargeDuration", weightKey = { "default", }, weightVal = { 0, }, }, - ["AddedChaosDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 1, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChanceToBeCritAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "Hits have (3-5)% increased Critical Strike Chance against you", statOrderKey = "2312", statOrder = { 2312 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "default", }, weightVal = { 0, }, }, - ["DamageWhileDeadAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrderKey = "2277", statOrder = { 2277 }, level = 1, group = "DamageWhileDead", weightKey = { "default", }, weightVal = { 0, }, }, - ["VaalSkillDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "Vaal Skills deal (5-10)% increased Damage", statOrderKey = "2276", statOrder = { 2276 }, level = 1, group = "VaalSkillDamage", weightKey = { "default", }, weightVal = { 0, }, }, - ["ChaosDamagePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrderKey = "2280", statOrder = { 2280 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "default", }, weightVal = { 0, }, }, - ["LifeLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrderKey = "2281", statOrder = { 2281 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "default", }, weightVal = { 0, }, }, - ["ManaLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrderKey = "2283", statOrder = { 2283 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "default", }, weightVal = { 0, }, }, - ["SilenceImmunityAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2275", statOrder = { 2275 }, level = 1, group = "PlayerCurseImmunity", weightKey = { "default", }, weightVal = { 0, }, }, - ["V2CorruptedBloodImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrderKey = "3949", statOrder = { 3949 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2HinderImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrderKey = "6489", statOrder = { 6489 }, level = 40, group = "YouCannotBeHindered", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2IncreasedAilmentEffectOnEnemiesAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrderKey = "6000", statOrder = { 6000 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2IncreasedAreaOfEffectAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 1, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2IncreasedCriticalStrikeChanceAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2IncreasedDamageAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 1, group = "IncreasedDamage", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2MaimImmunityCorrupted_"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrderKey = "3763", statOrder = { 3763 }, level = 40, group = "AvoidMaimChance", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2MinionDamageCorrupted__"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "MinionDamage", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2ReducedManaReservationCorrupted_"] = { type = "Corrupted", affix = "", "1% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 1, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2SilenceImmunityJewelCorrupted__"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2275", statOrder = { 2275 }, level = 60, group = "PlayerCurseImmunity", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2FirePenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 1, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2ColdPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 1, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2LightningPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 1, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2ElementalPenetrationAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 1000, }, }, - ["V2ArmourPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Enemies have -2% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 1, group = "ArmourPenetration", weightKey = { "default", }, weightVal = { 1000, }, }, - ["AbyssJewelAddedLife1"] = { type = "Prefix", affix = "Hale", "+(21-25) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 1, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000, }, }, - ["AbyssJewelAddedLife2"] = { type = "Prefix", affix = "Healthy", "+(26-30) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 35, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000, }, }, - ["AbyssJewelAddedLife3"] = { type = "Prefix", affix = "Sanguine", "+(31-35) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 74, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 1000, }, }, - ["AbyssJewelAddedLife4"] = { type = "Prefix", affix = "Stalwart", "+(36-40) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 82, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 500, }, }, - ["AbyssJewelAddedMana1"] = { type = "Prefix", affix = "Beryl", "+(21-25) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 1, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000, }, }, - ["AbyssJewelAddedMana2"] = { type = "Prefix", affix = "Cobalt", "+(26-30) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 40, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000, }, }, - ["AbyssJewelAddedMana3"] = { type = "Prefix", affix = "Azure", "+(31-35) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 75, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000, }, }, - ["AbyssJewelAddedMana4"] = { type = "Prefix", affix = "Sapphire", "+(36-40) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 83, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 500, }, }, - ["AbyssJewelChillEffect1_"] = { type = "Suffix", affix = "of Chilling", "(6-10)% increased Effect of Chill", statOrderKey = "4066", statOrder = { 4066 }, level = 30, group = "AbyssJewelChillEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500, }, }, - ["AbyssJewelShockEffect1"] = { type = "Suffix", affix = "of Shocking", "(6-10)% increased Effect of Shock", statOrderKey = "6217", statOrder = { 6217 }, level = 30, group = "AbyssJewelShockEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500, }, }, - ["AbyssStrengthJewel1_"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrderKey = "521", statOrder = { 521 }, level = 1, group = "Strength", weightKey = { "default", }, weightVal = { 500, }, }, - ["AbyssDexterityJewel1_"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrderKey = "522", statOrder = { 522 }, level = 1, group = "Dexterity", weightKey = { "default", }, weightVal = { 500, }, }, - ["AbyssIntelligenceJewel1"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrderKey = "523", statOrder = { 523 }, level = 1, group = "Intelligence", weightKey = { "default", }, weightVal = { 500, }, }, - ["AbyssStrengthDexterityJewel1"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrderKey = "524", statOrder = { 524 }, level = 1, group = "StrengthDexterity", weightKey = { "default", }, weightVal = { 500, }, }, - ["AbyssStrengthIntelligenceJewel1_"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrderKey = "525", statOrder = { 525 }, level = 1, group = "StrengthIntelligence", weightKey = { "default", }, weightVal = { 500, }, }, - ["AbyssDexterityIntelligenceJewel1"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrderKey = "526", statOrder = { 526 }, level = 1, group = "DexterityIntelligence", weightKey = { "default", }, weightVal = { 500, }, }, - ["AbyssAllAttributesJewel1"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 250, }, }, - ["AbyssFireResistanceJewel1"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 400, }, }, - ["AbyssColdResistanceJewel1"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 400, }, }, - ["AbyssLightningResistanceJewel1"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 400, }, }, - ["AbyssFireColdResistanceJewel1"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrderKey = "1979", statOrder = { 1979 }, level = 1, group = "FireAndColdResistance", weightKey = { "default", }, weightVal = { 250, }, }, - ["AbyssFireLightningResistanceJewel1"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrderKey = "1980", statOrder = { 1980 }, level = 1, group = "FireAndLightningResistance", weightKey = { "default", }, weightVal = { 250, }, }, - ["AbyssColdLightningResistanceJewel1"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrderKey = "1981", statOrder = { 1981 }, level = 1, group = "ColdAndLightningResistance", weightKey = { "default", }, weightVal = { 250, }, }, - ["AbyssAllResistancesJewel1"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 200, }, }, - ["AbyssChaosResistanceJewel1"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 100, }, }, - ["AbyssAttackSpeedJewel1_"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssCastSpeedJewel1"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 1400, }, }, - ["AbyssCriticalStrikeMultiplierJewel1"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900, }, }, - ["AbyssDamageOverTimeWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while Dual Wielding", statOrderKey = "1386", statOrder = { 1386 }, level = 1, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 800, 400, }, tags = { "dual_wielding_mod", "one_handed_mod", }, }, - ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while wielding a Two Handed Weapon", statOrderKey = "1388", statOrder = { 1388 }, level = 1, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 1200, 600, }, tags = { "two_handed_mod", }, }, - ["AbyssDamageOverTimeWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while holding a Shield", statOrderKey = "1387", statOrder = { 1387 }, level = 1, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 800, 400, }, tags = { "shield_mod", "one_handed_mod", }, }, - ["AbyssMinionAddedFireDamageJewel1"] = { type = "Prefix", affix = "Heated", "Minions deal (1-2) to (3-5) additional Fire Damage", statOrderKey = "2952", statOrder = { 2952 }, level = 1, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedFireDamageJewel2"] = { type = "Prefix", affix = "Flaming", "Minions deal (3-5) to (7-9) additional Fire Damage", statOrderKey = "2952", statOrder = { 2952 }, level = 40, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedFireDamageJewel3"] = { type = "Prefix", affix = "Scorching", "Minions deal (6-8) to (10-12) additional Fire Damage", statOrderKey = "2952", statOrder = { 2952 }, level = 52, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedFireDamageJewel4_"] = { type = "Prefix", affix = "Incinerating", "Minions deal (9-11) to (13-15) additional Fire Damage", statOrderKey = "2952", statOrder = { 2952 }, level = 62, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedFireDamageJewel5"] = { type = "Prefix", affix = "Blasting", "Minions deal (12-14) to (16-18) additional Fire Damage", statOrderKey = "2952", statOrder = { 2952 }, level = 70, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0, }, }, - ["AbyssMinionAddedFireDamageJewel6_"] = { type = "Prefix", affix = "Cremating", "Minions deal (15-17) to (22-26) additional Fire Damage", statOrderKey = "2952", statOrder = { 2952 }, level = 81, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0, }, }, - ["AbyssMinionAddedColdDamageJewel1"] = { type = "Prefix", affix = "Frosted", "Minions deal (1-2) to (3-5) additional Cold Damage", statOrderKey = "2951", statOrder = { 2951 }, level = 1, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedColdDamageJewel2"] = { type = "Prefix", affix = "Freezing", "Minions deal (3-5) to (7-9) additional Cold Damage", statOrderKey = "2951", statOrder = { 2951 }, level = 38, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedColdDamageJewel3"] = { type = "Prefix", affix = "Frozen", "Minions deal (6-8) to (10-12) additional Cold Damage", statOrderKey = "2951", statOrder = { 2951 }, level = 47, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedColdDamageJewel4"] = { type = "Prefix", affix = "Glaciated", "Minions deal (9-11) to (13-15) additional Cold Damage", statOrderKey = "2951", statOrder = { 2951 }, level = 56, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedColdDamageJewel5"] = { type = "Prefix", affix = "Polar", "Minions deal (12-14) to (16-18) additional Cold Damage", statOrderKey = "2951", statOrder = { 2951 }, level = 68, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0, }, }, - ["AbyssMinionAddedColdDamageJewel6_"] = { type = "Prefix", affix = "Entombing", "Minions deal (15-17) to (22-26) additional Cold Damage", statOrderKey = "2951", statOrder = { 2951 }, level = 80, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0, }, }, - ["AbyssMinionAddedLightningDamageJewel1_"] = { type = "Prefix", affix = "Humming", "Minions deal 1 to (3-5) additional Lightning Damage", statOrderKey = "2953", statOrder = { 2953 }, level = 1, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedLightningDamageJewel2"] = { type = "Prefix", affix = "Sparking", "Minions deal (1-2) to (8-12) additional Lightning Damage", statOrderKey = "2953", statOrder = { 2953 }, level = 39, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedLightningDamageJewel3_"] = { type = "Prefix", affix = "Arcing", "Minions deal (1-3) to (13-17) additional Lightning Damage", statOrderKey = "2953", statOrder = { 2953 }, level = 48, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedLightningDamageJewel4"] = { type = "Prefix", affix = "Shocking", "Minions deal (2-5) to (18-22) additional Lightning Damage", statOrderKey = "2953", statOrder = { 2953 }, level = 58, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedLightningDamageJewel5"] = { type = "Prefix", affix = "Discharging", "Minions deal (2-6) to (23-29) additional Lightning Damage", statOrderKey = "2953", statOrder = { 2953 }, level = 70, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0, }, }, - ["AbyssMinionAddedLightningDamageJewel6"] = { type = "Prefix", affix = "Electrocuting", "Minions deal (3-9) to (30-36) additional Lightning Damage", statOrderKey = "2953", statOrder = { 2953 }, level = 82, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0, }, }, - ["AbyssMinionAddedPhysicalDamageJewel1"] = { type = "Prefix", affix = "Glinting", "Minions deal (1-2) to (3-5) additional Physical Damage", statOrderKey = "2954", statOrder = { 2954 }, level = 1, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedPhysicalDamageJewel2"] = { type = "Prefix", affix = "Gleaming", "Minions deal (3-5) to (7-9) additional Physical Damage", statOrderKey = "2954", statOrder = { 2954 }, level = 42, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedPhysicalDamageJewel3"] = { type = "Prefix", affix = "Annealed", "Minions deal (6-8) to (10-12) additional Physical Damage", statOrderKey = "2954", statOrder = { 2954 }, level = 54, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedPhysicalDamageJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Minions deal (9-11) to (13-15) additional Physical Damage", statOrderKey = "2954", statOrder = { 2954 }, level = 63, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedPhysicalDamageJewel5"] = { type = "Prefix", affix = "Tempered", "Minions deal (12-14) to (16-18) additional Physical Damage", statOrderKey = "2954", statOrder = { 2954 }, level = 72, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0, }, }, - ["AbyssMinionAddedPhysicalDamageJewel6"] = { type = "Prefix", affix = "Flaring", "Minions deal (15-17) to (22-26) additional Physical Damage", statOrderKey = "2954", statOrder = { 2954 }, level = 83, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0, }, }, - ["AbyssMinionAddedChaosDamageJewel1"] = { type = "Prefix", affix = "Tainted", "Minions deal (1-2) to (3-5) additional Chaos Damage", statOrderKey = "2950", statOrder = { 2950 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedChaosDamageJewel2_"] = { type = "Prefix", affix = "Clouded", "Minions deal (3-5) to (7-9) additional Chaos Damage", statOrderKey = "2950", statOrder = { 2950 }, level = 42, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedChaosDamageJewel3"] = { type = "Prefix", affix = "Darkened", "Minions deal (6-8) to (10-12) additional Chaos Damage", statOrderKey = "2950", statOrder = { 2950 }, level = 54, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedChaosDamageJewel4"] = { type = "Prefix", affix = "Malignant", "Minions deal (9-11) to (13-15) additional Chaos Damage", statOrderKey = "2950", statOrder = { 2950 }, level = 65, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0, }, }, - ["AbyssMinionAddedChaosDamageJewel5_"] = { type = "Prefix", affix = "Vile", "Minions deal (12-14) to (16-18) additional Chaos Damage", statOrderKey = "2950", statOrder = { 2950 }, level = 75, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0, }, }, - ["AbyssMinionAddedChaosDamageJewel6"] = { type = "Prefix", affix = "Malicious", "Minions deal (15-17) to (22-26) additional Chaos Damage", statOrderKey = "2950", statOrder = { 2950 }, level = 84, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0, }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage to Spells while Dual Wielding", statOrderKey = "1364", statOrder = { 1364 }, level = 1, group = "WeaponClassFireDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-9) to (11-13) Fire Damage to Spells while Dual Wielding", statOrderKey = "1364", statOrder = { 1364 }, level = 40, group = "WeaponClassFireDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (10-12) to (14-16) Fire Damage to Spells while Dual Wielding", statOrderKey = "1364", statOrder = { 1364 }, level = 52, group = "WeaponClassFireDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-15) to (17-21) Fire Damage to Spells while Dual Wielding", statOrderKey = "1364", statOrder = { 1364 }, level = 62, group = "WeaponClassFireDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (16-18) to (22-24) Fire Damage to Spells while Dual Wielding", statOrderKey = "1364", statOrder = { 1364 }, level = 70, group = "WeaponClassFireDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (26-34) Fire Damage to Spells while Dual Wielding", statOrderKey = "1364", statOrder = { 1364 }, level = 81, group = "WeaponClassFireDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (2-4) to (5-7) Cold Damage to Spells while Dual Wielding", statOrderKey = "1361", statOrder = { 1361 }, level = 1, group = "WeaponClassColdDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (7-9) to (11-13) Cold Damage to Spells while Dual Wielding", statOrderKey = "1361", statOrder = { 1361 }, level = 38, group = "WeaponClassColdDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-12) to (14-16) Cold Damage to Spells while Dual Wielding", statOrderKey = "1361", statOrder = { 1361 }, level = 47, group = "WeaponClassColdDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel4__"] = { type = "Prefix", affix = "Glaciated", "Adds (13-15) to (17-21) Cold Damage to Spells while Dual Wielding", statOrderKey = "1361", statOrder = { 1361 }, level = 56, group = "WeaponClassColdDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Polar", "Adds (16-18) to (22-24) Cold Damage to Spells while Dual Wielding", statOrderKey = "1361", statOrder = { 1361 }, level = 68, group = "WeaponClassColdDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (19-25) to (26-34) Cold Damage to Spells while Dual Wielding", statOrderKey = "1361", statOrder = { 1361 }, level = 80, group = "WeaponClassColdDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-10) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1367", statOrder = { 1367 }, level = 1, group = "WeaponClassLightningDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (17-21) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1367", statOrder = { 1367 }, level = 39, group = "WeaponClassLightningDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (22-26) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1367", statOrder = { 1367 }, level = 48, group = "WeaponClassLightningDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (29-33) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1367", statOrder = { 1367 }, level = 58, group = "WeaponClassLightningDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Discharging", "Adds (1-5) to (34-36) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1367", statOrder = { 1367 }, level = 70, group = "WeaponClassLightningDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-6) to (43-51) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1367", statOrder = { 1367 }, level = 82, group = "WeaponClassLightningDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-5) Physical Damage to Spells while Dual Wielding", statOrderKey = "1370", statOrder = { 1370 }, level = 1, group = "WeaponClassPhysicalDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-5) to (7-9) Physical Damage to Spells while Dual Wielding", statOrderKey = "1370", statOrder = { 1370 }, level = 42, group = "WeaponClassPhysicalDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Annealed", "Adds (6-8) to (10-12) Physical Damage to Spells while Dual Wielding", statOrderKey = "1370", statOrder = { 1370 }, level = 54, group = "WeaponClassPhysicalDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Adds (9-11) to (13-15) Physical Damage to Spells while Dual Wielding", statOrderKey = "1370", statOrder = { 1370 }, level = 63, group = "WeaponClassPhysicalDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Tempered", "Adds (12-14) to (15-17) Physical Damage to Spells while Dual Wielding", statOrderKey = "1370", statOrder = { 1370 }, level = 72, group = "WeaponClassPhysicalDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Flaring", "Adds (15-17) to (20-24) Physical Damage to Spells while Dual Wielding", statOrderKey = "1370", statOrder = { 1370 }, level = 83, group = "WeaponClassPhysicalDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Tainted", "Adds (1-2) to (3-5) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1358", statOrder = { 1358 }, level = 1, group = "WeaponClassChaosDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Clouded", "Adds (3-5) to (7-9) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1358", statOrder = { 1358 }, level = 42, group = "WeaponClassChaosDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Darkened", "Adds (6-8) to (10-12) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1358", statOrder = { 1358 }, level = 54, group = "WeaponClassChaosDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Malignant", "Adds (9-11) to (13-15) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1358", statOrder = { 1358 }, level = 65, group = "WeaponClassChaosDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Vile", "Adds (12-14) to (15-17) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1358", statOrder = { 1358 }, level = 75, group = "WeaponClassChaosDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Malicious", "Adds (15-17) to (20-24) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1358", statOrder = { 1358 }, level = 84, group = "WeaponClassChaosDamage", 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, }, tags = { "dual_wielding_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1366", statOrder = { 1366 }, level = 1, group = "WeaponClassFireDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-9) to (11-13) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1366", statOrder = { 1366 }, level = 40, group = "WeaponClassFireDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel3_"] = { type = "Prefix", affix = "Scorching", "Adds (10-12) to (14-16) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1366", statOrder = { 1366 }, level = 52, group = "WeaponClassFireDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-15) to (17-21) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1366", statOrder = { 1366 }, level = 62, group = "WeaponClassFireDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (16-18) to (22-24) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1366", statOrder = { 1366 }, level = 70, group = "WeaponClassFireDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (26-34) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1366", statOrder = { 1366 }, level = 81, group = "WeaponClassFireDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (2-4) to (5-7) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1363", statOrder = { 1363 }, level = 1, group = "WeaponClassColdDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (7-9) to (11-13) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1363", statOrder = { 1363 }, level = 38, group = "WeaponClassColdDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-12) to (14-16) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1363", statOrder = { 1363 }, level = 47, group = "WeaponClassColdDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (13-15) to (17-21) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1363", statOrder = { 1363 }, level = 56, group = "WeaponClassColdDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Polar", "Adds (16-18) to (22-24) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1363", statOrder = { 1363 }, level = 68, group = "WeaponClassColdDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (19-25) to (26-34) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1363", statOrder = { 1363 }, level = 80, group = "WeaponClassColdDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-10) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1369", statOrder = { 1369 }, level = 1, group = "WeaponClassLightningDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (17-21) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1369", statOrder = { 1369 }, level = 39, group = "WeaponClassLightningDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (22-26) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1369", statOrder = { 1369 }, level = 48, group = "WeaponClassLightningDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (29-33) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1369", statOrder = { 1369 }, level = 58, group = "WeaponClassLightningDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel5_"] = { type = "Prefix", affix = "Discharging", "Adds (1-5) to (34-36) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1369", statOrder = { 1369 }, level = 70, group = "WeaponClassLightningDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel6_"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-6) to (43-51) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1369", statOrder = { 1369 }, level = 82, group = "WeaponClassLightningDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-5) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1372", statOrder = { 1372 }, level = 1, group = "WeaponClassPhysicalDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-5) to (7-9) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1372", statOrder = { 1372 }, level = 42, group = "WeaponClassPhysicalDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Annealed", "Adds (6-8) to (10-12) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1372", statOrder = { 1372 }, level = 54, group = "WeaponClassPhysicalDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Adds (9-11) to (13-15) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1372", statOrder = { 1372 }, level = 63, group = "WeaponClassPhysicalDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Tempered", "Adds (12-14) to (15-17) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1372", statOrder = { 1372 }, level = 72, group = "WeaponClassPhysicalDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Flaring", "Adds (15-17) to (20-24) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1372", statOrder = { 1372 }, level = 83, group = "WeaponClassPhysicalDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Tainted", "Adds (1-2) to (3-5) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1360", statOrder = { 1360 }, level = 1, group = "WeaponClassChaosDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Clouded", "Adds (3-5) to (7-9) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1360", statOrder = { 1360 }, level = 42, group = "WeaponClassChaosDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Darkened", "Adds (6-8) to (10-12) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1360", statOrder = { 1360 }, level = 54, group = "WeaponClassChaosDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Malignant", "Adds (9-11) to (13-15) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1360", statOrder = { 1360 }, level = 65, group = "WeaponClassChaosDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Vile", "Adds (12-14) to (15-17) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1360", statOrder = { 1360 }, level = 75, group = "WeaponClassChaosDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Malicious", "Adds (15-17) to (20-24) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1360", statOrder = { 1360 }, level = 84, group = "WeaponClassChaosDamage", 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, }, tags = { "two_handed_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage to Spells while holding a Shield", statOrderKey = "1365", statOrder = { 1365 }, level = 1, group = "WeaponClassFireDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-9) to (11-13) Fire Damage to Spells while holding a Shield", statOrderKey = "1365", statOrder = { 1365 }, level = 40, group = "WeaponClassFireDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (10-12) to (14-16) Fire Damage to Spells while holding a Shield", statOrderKey = "1365", statOrder = { 1365 }, level = 52, group = "WeaponClassFireDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel4_"] = { type = "Prefix", affix = "Incinerating", "Adds (13-15) to (17-21) Fire Damage to Spells while holding a Shield", statOrderKey = "1365", statOrder = { 1365 }, level = 62, group = "WeaponClassFireDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (16-18) to (22-24) Fire Damage to Spells while holding a Shield", statOrderKey = "1365", statOrder = { 1365 }, level = 70, group = "WeaponClassFireDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel6__"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (26-34) Fire Damage to Spells while holding a Shield", statOrderKey = "1365", statOrder = { 1365 }, level = 81, group = "WeaponClassFireDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Frosted", "Adds (2-4) to (5-7) Cold Damage to Spells while holding a Shield", statOrderKey = "1362", statOrder = { 1362 }, level = 1, group = "WeaponClassColdDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (7-9) to (11-13) Cold Damage to Spells while holding a Shield", statOrderKey = "1362", statOrder = { 1362 }, level = 38, group = "WeaponClassColdDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-12) to (14-16) Cold Damage to Spells while holding a Shield", statOrderKey = "1362", statOrder = { 1362 }, level = 47, group = "WeaponClassColdDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (13-15) to (17-21) Cold Damage to Spells while holding a Shield", statOrderKey = "1362", statOrder = { 1362 }, level = 56, group = "WeaponClassColdDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel5_"] = { type = "Prefix", affix = "Polar", "Adds (16-18) to (22-24) Cold Damage to Spells while holding a Shield", statOrderKey = "1362", statOrder = { 1362 }, level = 68, group = "WeaponClassColdDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (19-25) to (26-34) Cold Damage to Spells while holding a Shield", statOrderKey = "1362", statOrder = { 1362 }, level = 80, group = "WeaponClassColdDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-10) Lightning Damage to Spells while holding a Shield", statOrderKey = "1368", statOrder = { 1368 }, level = 1, group = "WeaponClassLightningDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (17-21) Lightning Damage to Spells while holding a Shield", statOrderKey = "1368", statOrder = { 1368 }, level = 39, group = "WeaponClassLightningDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (22-26) Lightning Damage to Spells while holding a Shield", statOrderKey = "1368", statOrder = { 1368 }, level = 48, group = "WeaponClassLightningDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (29-33) Lightning Damage to Spells while holding a Shield", statOrderKey = "1368", statOrder = { 1368 }, level = 58, group = "WeaponClassLightningDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (1-5) to (34-36) Lightning Damage to Spells while holding a Shield", statOrderKey = "1368", statOrder = { 1368 }, level = 70, group = "WeaponClassLightningDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-6) to (43-51) Lightning Damage to Spells while holding a Shield", statOrderKey = "1368", statOrder = { 1368 }, level = 82, group = "WeaponClassLightningDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-5) Physical Damage to Spells while holding a Shield", statOrderKey = "1371", statOrder = { 1371 }, level = 1, group = "WeaponClassPhysicalDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-5) to (7-9) Physical Damage to Spells while holding a Shield", statOrderKey = "1371", statOrder = { 1371 }, level = 42, group = "WeaponClassPhysicalDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Annealed", "Adds (6-8) to (10-12) Physical Damage to Spells while holding a Shield", statOrderKey = "1371", statOrder = { 1371 }, level = 54, group = "WeaponClassPhysicalDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Adds (9-11) to (13-15) Physical Damage to Spells while holding a Shield", statOrderKey = "1371", statOrder = { 1371 }, level = 63, group = "WeaponClassPhysicalDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Tempered", "Adds (12-14) to (15-17) Physical Damage to Spells while holding a Shield", statOrderKey = "1371", statOrder = { 1371 }, level = 72, group = "WeaponClassPhysicalDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Flaring", "Adds (15-17) to (20-24) Physical Damage to Spells while holding a Shield", statOrderKey = "1371", statOrder = { 1371 }, level = 83, group = "WeaponClassPhysicalDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Tainted", "Adds (1-2) to (3-5) Chaos Damage to Spells while holding a Shield", statOrderKey = "1359", statOrder = { 1359 }, level = 1, group = "WeaponClassChaosDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Clouded", "Adds (3-5) to (7-9) Chaos Damage to Spells while holding a Shield", statOrderKey = "1359", statOrder = { 1359 }, level = 42, group = "WeaponClassChaosDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel3__"] = { type = "Prefix", affix = "Darkened", "Adds (6-8) to (10-12) Chaos Damage to Spells while holding a Shield", statOrderKey = "1359", statOrder = { 1359 }, level = 54, group = "WeaponClassChaosDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Malignant", "Adds (9-11) to (13-15) Chaos Damage to Spells while holding a Shield", statOrderKey = "1359", statOrder = { 1359 }, level = 65, group = "WeaponClassChaosDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Vile", "Adds (12-14) to (15-17) Chaos Damage to Spells while holding a Shield", statOrderKey = "1359", statOrder = { 1359 }, level = 75, group = "WeaponClassChaosDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Malicious", "Adds (15-17) to (20-24) Chaos Damage to Spells while holding a Shield", statOrderKey = "1359", statOrder = { 1359 }, level = 84, group = "WeaponClassChaosDamage", 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, }, tags = { "shield_mod", "specific_weapon", }, }, - ["AbyssSpellAddedFireDamageJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (6-8) to (9-11) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 30, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedFireDamageJewel2_"] = { type = "Suffix", affix = "of Cinders", "Adds (9-11) to (12-14) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 43, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedFireDamageJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (12-14) to (15-19) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 55, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedFireDamageJewel4"] = { type = "Suffix", affix = "of Immolation", "Adds (15-17) to (20-23) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 66, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0, }, }, - ["AbyssSpellAddedFireDamageJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (19-23) to (24-32) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 77, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0, }, }, - ["AbyssSpellAddedColdDamageJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (6-8) to (9-11) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 29, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedColdDamageJewel2"] = { type = "Suffix", affix = "of Ice", "Adds (9-11) to (12-14) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 43, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedColdDamageJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (12-14) to (15-19) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 52, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedColdDamageJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (15-17) to (20-23) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 63, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0, }, }, - ["AbyssSpellAddedColdDamageJewel5"] = { type = "Suffix", affix = "of Glaciation", "Adds (19-23) to (24-32) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 76, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0, }, }, - ["AbyssSpellAddedLightningDamageJewel1__"] = { type = "Suffix", affix = "of Static", "Adds (1-2) to (15-19) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 28, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedLightningDamageJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-3) to (20-24) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 44, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedLightningDamageJewel3__"] = { type = "Suffix", affix = "of Voltage", "Adds (1-4) to (25-29) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 54, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedLightningDamageJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-5) to (30-32) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 65, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0, }, }, - ["AbyssSpellAddedLightningDamageJewel5_"] = { type = "Suffix", affix = "of Arcing", "Adds (1-6) to (37-45) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 75, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0, }, }, - ["AbyssSpellAddedPhysicalDamageJewel1"] = { type = "Suffix", affix = "of Heft", "Adds (3-4) to (6-7) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 32, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedPhysicalDamageJewel2"] = { type = "Suffix", affix = "of Force", "Adds (5-7) to (8-10) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 45, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedPhysicalDamageJewel3"] = { type = "Suffix", affix = "of Weight", "Adds (8-10) to (11-13) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 56, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedPhysicalDamageJewel4"] = { type = "Suffix", affix = "of Impact", "Adds (11-13) to (14-16) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 65, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0, }, }, - ["AbyssSpellAddedPhysicalDamageJewel5__"] = { type = "Suffix", affix = "of Collision", "Adds (14-16) to (18-22) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 78, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0, }, }, - ["AbyssSpellAddedChaosDamageJewel1"] = { type = "Suffix", affix = "of Dishonour", "Adds (3-4) to (6-7) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 33, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedChaosDamageJewel2"] = { type = "Suffix", affix = "of Harm", "Adds (5-7) to (8-10) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 48, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedChaosDamageJewel3"] = { type = "Suffix", affix = "of Malevolence", "Adds (8-10) to (11-13) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 57, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0, }, }, - ["AbyssSpellAddedChaosDamageJewel4"] = { type = "Suffix", affix = "of Malice", "Adds (11-13) to (14-16) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 68, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0, }, }, - ["AbyssSpellAddedChaosDamageJewel5"] = { type = "Suffix", affix = "of Sin", "Adds (14-16) to (18-22) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 79, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0, }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Wand Attacks", statOrderKey = "1357", statOrder = { 1357 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Wand Attacks", statOrderKey = "1357", statOrder = { 1357 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Wand Attacks", statOrderKey = "1357", statOrder = { 1357 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Wand Attacks", statOrderKey = "1357", statOrder = { 1357 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 150, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Dagger Attacks", statOrderKey = "1353", statOrder = { 1353 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Dagger Attacks", statOrderKey = "1353", statOrder = { 1353 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel3_"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Dagger Attacks", statOrderKey = "1353", statOrder = { 1353 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Dagger Attacks", statOrderKey = "1353", statOrder = { 1353 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Claw Attacks", statOrderKey = "1352", statOrder = { 1352 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Claw Attacks", statOrderKey = "1352", statOrder = { 1352 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel3"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Claw Attacks", statOrderKey = "1352", statOrder = { 1352 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Claw Attacks", statOrderKey = "1352", statOrder = { 1352 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Sword Attacks", statOrderKey = "1356", statOrder = { 1356 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Sword Attacks", statOrderKey = "1356", statOrder = { 1356 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Sword Attacks", statOrderKey = "1356", statOrder = { 1356 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Sword Attacks", statOrderKey = "1356", statOrder = { 1356 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Axe Attacks", statOrderKey = "1351", statOrder = { 1351 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Axe Attacks", statOrderKey = "1351", statOrder = { 1351 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel3"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Axe Attacks", statOrderKey = "1351", statOrder = { 1351 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Axe Attacks", statOrderKey = "1351", statOrder = { 1351 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Mace or Sceptre Attacks", statOrderKey = "1354", statOrder = { 1354 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Mace or Sceptre Attacks", statOrderKey = "1354", statOrder = { 1354 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel3"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Mace or Sceptre Attacks", statOrderKey = "1354", statOrder = { 1354 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Mace or Sceptre Attacks", statOrderKey = "1354", statOrder = { 1354 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Staff Attacks", statOrderKey = "1355", statOrder = { 1355 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Staff Attacks", statOrderKey = "1355", statOrder = { 1355 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Staff Attacks", statOrderKey = "1355", statOrder = { 1355 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Staff Attacks", statOrderKey = "1355", statOrder = { 1355 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Bow Attacks", statOrderKey = "1327", statOrder = { 1327 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Bow Attacks", statOrderKey = "1327", statOrder = { 1327 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel3"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Bow Attacks", statOrderKey = "1327", statOrder = { 1327 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel4_"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Bow Attacks", statOrderKey = "1327", statOrder = { 1327 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 250, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Wand Attacks", statOrderKey = "1324", statOrder = { 1324 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithWandsJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Wand Attacks", statOrderKey = "1324", statOrder = { 1324 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithWandsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Wand Attacks", statOrderKey = "1324", statOrder = { 1324 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithWandsJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Wand Attacks", statOrderKey = "1324", statOrder = { 1324 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithWandsJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Wand Attacks", statOrderKey = "1324", statOrder = { 1324 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithWandsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Wand Attacks", statOrderKey = "1324", statOrder = { 1324 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Dagger Attacks", statOrderKey = "1345", statOrder = { 1345 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Dagger Attacks", statOrderKey = "1345", statOrder = { 1345 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Dagger Attacks", statOrderKey = "1345", statOrder = { 1345 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Dagger Attacks", statOrderKey = "1345", statOrder = { 1345 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Dagger Attacks", statOrderKey = "1345", statOrder = { 1345 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Dagger Attacks", statOrderKey = "1345", statOrder = { 1345 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithClawsJewel1__"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Claw Attacks", statOrderKey = "1344", statOrder = { 1344 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithClawsJewel2_"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Claw Attacks", statOrderKey = "1344", statOrder = { 1344 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithClawsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Claw Attacks", statOrderKey = "1344", statOrder = { 1344 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithClawsJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Claw Attacks", statOrderKey = "1344", statOrder = { 1344 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithClawsJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Claw Attacks", statOrderKey = "1344", statOrder = { 1344 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithClawsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Claw Attacks", statOrderKey = "1344", statOrder = { 1344 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedLightningDamageWithBowsJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithBowsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithBowsJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithBowsJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithBowsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 625, 0, 0, 175, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Sword Attacks", statOrderKey = "1348", statOrder = { 1348 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithSwordsJewel2__"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Sword Attacks", statOrderKey = "1348", statOrder = { 1348 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Sword Attacks", statOrderKey = "1348", statOrder = { 1348 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithSwordsJewel4_"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Sword Attacks", statOrderKey = "1348", statOrder = { 1348 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Sword Attacks", statOrderKey = "1348", statOrder = { 1348 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Sword Attacks", statOrderKey = "1348", statOrder = { 1348 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithAxesJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Axe Attacks", statOrderKey = "1342", statOrder = { 1342 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithAxesJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Axe Attacks", statOrderKey = "1342", statOrder = { 1342 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithAxesJewel3_"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Axe Attacks", statOrderKey = "1342", statOrder = { 1342 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithAxesJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Axe Attacks", statOrderKey = "1342", statOrder = { 1342 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithAxesJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Axe Attacks", statOrderKey = "1342", statOrder = { 1342 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithAxesJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Axe Attacks", statOrderKey = "1342", statOrder = { 1342 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithMacesJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Mace or Sceptre Attacks", statOrderKey = "1346", statOrder = { 1346 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithMacesJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Mace or Sceptre Attacks", statOrderKey = "1346", statOrder = { 1346 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithMacesJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Mace or Sceptre Attacks", statOrderKey = "1346", statOrder = { 1346 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Mace or Sceptre Attacks", statOrderKey = "1346", statOrder = { 1346 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithMacesJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Mace or Sceptre Attacks", statOrderKey = "1346", statOrder = { 1346 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithMacesJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Mace or Sceptre Attacks", statOrderKey = "1346", statOrder = { 1346 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedLightningDamageWithStavesJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Staff Attacks", statOrderKey = "1347", statOrder = { 1347 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithStavesJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Staff Attacks", statOrderKey = "1347", statOrder = { 1347 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithStavesJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Staff Attacks", statOrderKey = "1347", statOrder = { 1347 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithStavesJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Staff Attacks", statOrderKey = "1347", statOrder = { 1347 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithStavesJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Staff Attacks", statOrderKey = "1347", statOrder = { 1347 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedLightningDamageWithStavesJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Staff Attacks", statOrderKey = "1347", statOrder = { 1347 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedFireDamageWithWandsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Wand Attacks", statOrderKey = "1325", statOrder = { 1325 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithWandsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Wand Attacks", statOrderKey = "1325", statOrder = { 1325 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithWandsJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Wand Attacks", statOrderKey = "1325", statOrder = { 1325 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithWandsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Wand Attacks", statOrderKey = "1325", statOrder = { 1325 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithWandsJewel5__"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Wand Attacks", statOrderKey = "1325", statOrder = { 1325 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithWandsJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Wand Attacks", statOrderKey = "1325", statOrder = { 1325 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Dagger Attacks", statOrderKey = "1338", statOrder = { 1338 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Dagger Attacks", statOrderKey = "1338", statOrder = { 1338 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Dagger Attacks", statOrderKey = "1338", statOrder = { 1338 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Dagger Attacks", statOrderKey = "1338", statOrder = { 1338 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Dagger Attacks", statOrderKey = "1338", statOrder = { 1338 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Dagger Attacks", statOrderKey = "1338", statOrder = { 1338 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithClawsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Claw Attacks", statOrderKey = "1337", statOrder = { 1337 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithClawsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Claw Attacks", statOrderKey = "1337", statOrder = { 1337 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithClawsJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Claw Attacks", statOrderKey = "1337", statOrder = { 1337 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithClawsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Claw Attacks", statOrderKey = "1337", statOrder = { 1337 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithClawsJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Claw Attacks", statOrderKey = "1337", statOrder = { 1337 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithClawsJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Claw Attacks", statOrderKey = "1337", statOrder = { 1337 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedFireDamageWithBowsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithBowsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithBowsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithBowsJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithBowsJewel6_"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0, }, tags = { "bow", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Sword Attacks", statOrderKey = "1341", statOrder = { 1341 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Sword Attacks", statOrderKey = "1341", statOrder = { 1341 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithSwordsJewel3___"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Sword Attacks", statOrderKey = "1341", statOrder = { 1341 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Sword Attacks", statOrderKey = "1341", statOrder = { 1341 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Sword Attacks", statOrderKey = "1341", statOrder = { 1341 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Sword Attacks", statOrderKey = "1341", statOrder = { 1341 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithAxesJewel1_"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Axe Attacks", statOrderKey = "1335", statOrder = { 1335 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithAxesJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Axe Attacks", statOrderKey = "1335", statOrder = { 1335 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithAxesJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Axe Attacks", statOrderKey = "1335", statOrder = { 1335 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithAxesJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Axe Attacks", statOrderKey = "1335", statOrder = { 1335 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithAxesJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Axe Attacks", statOrderKey = "1335", statOrder = { 1335 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithAxesJewel6_"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Axe Attacks", statOrderKey = "1335", statOrder = { 1335 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithMacesJewel1"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Mace or Sceptre Attacks", statOrderKey = "1339", statOrder = { 1339 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithMacesJewel2_"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Mace or Sceptre Attacks", statOrderKey = "1339", statOrder = { 1339 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithMacesJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Mace or Sceptre Attacks", statOrderKey = "1339", statOrder = { 1339 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithMacesJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Mace or Sceptre Attacks", statOrderKey = "1339", statOrder = { 1339 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Mace or Sceptre Attacks", statOrderKey = "1339", statOrder = { 1339 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithMacesJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Mace or Sceptre Attacks", statOrderKey = "1339", statOrder = { 1339 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedFireDamageWithStavesJewel1_"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Staff Attacks", statOrderKey = "1340", statOrder = { 1340 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedFireDamageWithStavesJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Staff Attacks", statOrderKey = "1340", statOrder = { 1340 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedFireDamageWithStavesJewel3__"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Staff Attacks", statOrderKey = "1340", statOrder = { 1340 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedFireDamageWithStavesJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Staff Attacks", statOrderKey = "1340", statOrder = { 1340 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedFireDamageWithStavesJewel5__"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Staff Attacks", statOrderKey = "1340", statOrder = { 1340 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedFireDamageWithStavesJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Staff Attacks", statOrderKey = "1340", statOrder = { 1340 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithWandsJewel1__"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Wand Attacks", statOrderKey = "1326", statOrder = { 1326 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithWandsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Wand Attacks", statOrderKey = "1326", statOrder = { 1326 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Wand Attacks", statOrderKey = "1326", statOrder = { 1326 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithWandsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Wand Attacks", statOrderKey = "1326", statOrder = { 1326 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithWandsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Wand Attacks", statOrderKey = "1326", statOrder = { 1326 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithWandsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Wand Attacks", statOrderKey = "1326", statOrder = { 1326 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0, }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Dagger Attacks", statOrderKey = "1331", statOrder = { 1331 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Dagger Attacks", statOrderKey = "1331", statOrder = { 1331 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Dagger Attacks", statOrderKey = "1331", statOrder = { 1331 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Dagger Attacks", statOrderKey = "1331", statOrder = { 1331 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Dagger Attacks", statOrderKey = "1331", statOrder = { 1331 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Dagger Attacks", statOrderKey = "1331", statOrder = { 1331 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0, }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithClawsJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Claw Attacks", statOrderKey = "1330", statOrder = { 1330 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithClawsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Claw Attacks", statOrderKey = "1330", statOrder = { 1330 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithClawsJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Claw Attacks", statOrderKey = "1330", statOrder = { 1330 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithClawsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Claw Attacks", statOrderKey = "1330", statOrder = { 1330 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithClawsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Claw Attacks", statOrderKey = "1330", statOrder = { 1330 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithClawsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Claw Attacks", statOrderKey = "1330", statOrder = { 1330 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0, }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, - ["AbyssAddedColdDamageWithBowsJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithBowsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithBowsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithBowsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithBowsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0, }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Sword Attacks", statOrderKey = "1334", statOrder = { 1334 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Sword Attacks", statOrderKey = "1334", statOrder = { 1334 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Sword Attacks", statOrderKey = "1334", statOrder = { 1334 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Sword Attacks", statOrderKey = "1334", statOrder = { 1334 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Sword Attacks", statOrderKey = "1334", statOrder = { 1334 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Sword Attacks", statOrderKey = "1334", statOrder = { 1334 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0, }, tags = { "sword", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithAxesJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Axe Attacks", statOrderKey = "1328", statOrder = { 1328 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithAxesJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Axe Attacks", statOrderKey = "1328", statOrder = { 1328 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithAxesJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Axe Attacks", statOrderKey = "1328", statOrder = { 1328 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithAxesJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Axe Attacks", statOrderKey = "1328", statOrder = { 1328 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithAxesJewel5"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Axe Attacks", statOrderKey = "1328", statOrder = { 1328 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithAxesJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Axe Attacks", statOrderKey = "1328", statOrder = { 1328 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0, }, tags = { "axe", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithMacesJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Mace or Sceptre Attacks", statOrderKey = "1332", statOrder = { 1332 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithMacesJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Mace or Sceptre Attacks", statOrderKey = "1332", statOrder = { 1332 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithMacesJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Mace or Sceptre Attacks", statOrderKey = "1332", statOrder = { 1332 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithMacesJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Mace or Sceptre Attacks", statOrderKey = "1332", statOrder = { 1332 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Mace or Sceptre Attacks", statOrderKey = "1332", statOrder = { 1332 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithMacesJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Mace or Sceptre Attacks", statOrderKey = "1332", statOrder = { 1332 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0, }, tags = { "mace", "specific_weapon", }, }, - ["AbyssAddedColdDamageWithStavesJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Staff Attacks", statOrderKey = "1333", statOrder = { 1333 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithStavesJewel2_"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Staff Attacks", statOrderKey = "1333", statOrder = { 1333 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Staff Attacks", statOrderKey = "1333", statOrder = { 1333 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithStavesJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Staff Attacks", statOrderKey = "1333", statOrder = { 1333 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithStavesJewel5"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Staff Attacks", statOrderKey = "1333", statOrder = { 1333 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedColdDamageWithStavesJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Staff Attacks", statOrderKey = "1333", statOrder = { 1333 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0, }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, - ["AbyssAddedFireSuffixJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (4-5) to (10-12) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 35, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedFireSuffixJewel2"] = { type = "Suffix", affix = "of Cinders", "Adds (6-7) to (13-16) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 44, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedFireSuffixJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (8-9) to (17-20) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 52, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedFireSuffixJewel4_"] = { type = "Suffix", affix = "of Immolation", "Adds (10-12) to (21-24) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 64, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0, }, }, - ["AbyssAddedFireSuffixJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (13-15) to (25-28) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 76, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 188, 188, 0, }, }, - ["AbyssAddedColdSuffixJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (4-5) to (8-10) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 36, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedColdSuffixJewel2_"] = { type = "Suffix", affix = "of Ice", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 45, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedColdSuffixJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (8-9) to (14-17) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 53, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedColdSuffixJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (10-11) to (18-21) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 65, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0, }, }, - ["AbyssAddedColdSuffixJewel5_"] = { type = "Suffix", affix = "of Glaciation", "Adds (12-13) to (22-26) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 77, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 188, 188, 0, }, }, - ["AbyssAddedLightningSuffixJewel1"] = { type = "Suffix", affix = "of Static", "Adds 1 to (19-20) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 35, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedLightningSuffixJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-2) to (25-27) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 44, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedLightningSuffixJewel3"] = { type = "Suffix", affix = "of Voltage", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 52, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedLightningSuffixJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-4) to (36-39) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 64, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0, }, }, - ["AbyssAddedLightningSuffixJewel5"] = { type = "Suffix", affix = "of Arcing", "Adds (1-4) to (43-48) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 76, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 188, 188, 0, }, }, - ["AbyssAddedPhysicalSuffixJewel1"] = { type = "Suffix", affix = "of Weight", "Adds 1 to 3 Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 34, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedPhysicalSuffixJewel2"] = { type = "Suffix", affix = "of Impact", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 45, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedPhysicalSuffixJewel3"] = { type = "Suffix", affix = "of Collision", "Adds (4-5) to (6-7) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 61, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0, }, }, - ["AbyssAddedChaosSuffixJewel1"] = { type = "Suffix", affix = "of Malevolence", "Adds 1 to 3 Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 36, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedChaosSuffixJewel2"] = { type = "Suffix", affix = "of Malice", "Adds (2-3) to (4-5) Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 48, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0, }, }, - ["AbyssAddedChaosSuffixJewel3"] = { type = "Suffix", affix = "of Sin", "Adds (4-5) to (6-7) Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 64, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0, }, }, - ["AbyssFlatMinionLifeRegenerationJewel1"] = { type = "Prefix", affix = "Fuelling", "Minions Regenerate (2-4) Life per second", statOrderKey = "5932", statOrder = { 5932 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0, }, }, - ["AbyssFlatMinionLifeRegenerationJewel2"] = { type = "Prefix", affix = "Lively", "Minions Regenerate (5-8) Life per second", statOrderKey = "5932", statOrder = { 5932 }, level = 30, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0, }, }, - ["AbyssFlatMinionLifeRegenerationJewel3"] = { type = "Prefix", affix = "Exuberant", "Minions Regenerate (9-12) Life per second", statOrderKey = "5932", statOrder = { 5932 }, level = 60, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0, }, }, - ["AbyssFlatEnergyShieldRegenerationJewel1"] = { type = "Prefix", affix = "Captivating", "Regenerate (2-4) Energy Shield per second", statOrderKey = "4381", statOrder = { 4381 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0, }, }, - ["AbyssFlatEnergyShieldRegenerationJewel2"] = { type = "Prefix", affix = "Beautiful", "Regenerate (5-8) Energy Shield per second", statOrderKey = "4381", statOrder = { 4381 }, level = 30, group = "EnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0, }, }, - ["AbyssFlatEnergyShieldRegenerationJewel3"] = { type = "Prefix", affix = "Breathtaking", "Regenerate (9-12) Energy Shield per second", statOrderKey = "4381", statOrder = { 4381 }, level = 60, group = "EnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0, }, }, - ["AbyssFlatLifeRegenerationJewel1"] = { type = "Prefix", affix = "Youthful", "Regenerate (2-4) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 1, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0, }, }, - ["AbyssFlatLifeRegenerationJewel2"] = { type = "Prefix", affix = "Spirited", "Regenerate (5-8) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 40, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0, }, }, - ["AbyssFlatLifeRegenerationJewel3_"] = { type = "Prefix", affix = "Vivacious", "Regenerate (9-12) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 80, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0, }, }, - ["AbyssFlatManaShieldRegenerationJewel1"] = { type = "Prefix", affix = "Energising", "Regenerate (0.5-1) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 1, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 350, }, }, - ["AbyssFlatManaShieldRegenerationJewel2"] = { type = "Prefix", affix = "Inspirational", "Regenerate (1.1-2) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 40, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 350, }, }, - ["AbyssFlatManaShieldRegenerationJewel3"] = { type = "Prefix", affix = "Resonating", "Regenerate (2.1-3) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 75, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 350, }, }, - ["AbyssAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Blinding", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 32, group = "BlindOnHit", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 800, 800, 0, }, tags = { "has_attack_mod", }, }, - ["AbyssAttacksBlindOnHitChanceJewel2___"] = { type = "Suffix", affix = "of Blinding", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 65, group = "BlindOnHit", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 400, 400, 0, }, tags = { "has_attack_mod", }, }, - ["AbyssAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Taunting", "(3-5)% chance to Taunt Enemies on Hit with Attacks", statOrderKey = "3748", statOrder = { 3748 }, level = 32, group = "TauntOnHit", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 800, 0, }, }, - ["AbyssAttacksTauntOnHitChanceJewel2"] = { type = "Suffix", affix = "of Taunting", "(6-8)% chance to Taunt Enemies on Hit with Attacks", statOrderKey = "3748", statOrder = { 3748 }, level = 65, group = "TauntOnHit", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 400, 0, }, }, - ["AbyssSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Hindering", "(3-5)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "6316", statOrder = { 6316 }, level = 32, group = "HinderOnHit", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 800, 0, }, }, - ["AbyssSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Hindering", "(6-8)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "6316", statOrder = { 6316 }, level = 65, group = "HinderOnHit", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 400, 0, }, }, - ["AbyssMinionAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Stifling", "Minions have (3-4)% chance to Blind on Hit with Attacks", statOrderKey = "5914", statOrder = { 5914 }, level = 32, group = "BlindOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionAttacksBlindOnHitChanceJewel2"] = { type = "Suffix", affix = "of Stifling", "Minions have (5-6)% chance to Blind on Hit with Attacks", statOrderKey = "5914", statOrder = { 5914 }, level = 65, group = "BlindOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0, }, }, - ["AbyssMinionAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Distraction", "Minions have (3-5)% chance to Taunt on Hit with Attacks", statOrderKey = "2615", statOrder = { 2615 }, level = 32, group = "TauntOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionAttacksTauntOnHitChanceJewel2_"] = { type = "Suffix", affix = "of Distraction", "Minions have (6-8)% chance to Taunt on Hit with Attacks", statOrderKey = "2615", statOrder = { 2615 }, level = 65, group = "TauntOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0, }, }, - ["AbyssMinionSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Delaying", "Minions have (3-5)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "5943", statOrder = { 5943 }, level = 32, group = "HinderOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Delaying", "Minions have (6-8)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "5943", statOrder = { 5943 }, level = 65, group = "HinderOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0, }, }, - ["AbyssDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Banishing", "(30-40)% increased Damage against Abyssal Monsters", statOrderKey = "4221", statOrder = { 4221 }, level = 1, group = "DamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 1000, }, }, - ["AbyssMinionDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Marshalling", "Minions deal (30-40)% increased Damage against Abyssal Monsters", statOrderKey = "5925", statOrder = { 5925 }, level = 1, group = "MinionDamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0, }, }, - ["AbyssReducedPhysicalDamageTakenVsAbyssMonsterJewel1"] = { type = "Suffix", affix = "of Warding", "(4-6)% additional Physical Damage Reduction against Abyssal Monsters", statOrderKey = "3592", statOrder = { 3592 }, level = 1, group = "MinionDamageVSAbyssMonsters", weightKey = { "default", }, weightVal = { 1000, }, }, - ["AbyssAvoidIgniteJewel1_"] = { type = "Suffix", affix = "of Extinguishing", "(6-8)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 300, }, }, - ["AbyssAvoidIgniteJewel2"] = { type = "Suffix", affix = "of Extinguishing", "(9-10)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 30, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 150, }, }, - ["AbyssAvoidFreezeAndChillJewel1"] = { type = "Suffix", affix = "of Warming", "(6-8)% chance to Avoid being Chilled", "(6-8)% chance to Avoid being Frozen", statOrderKey = "1105,1106", statOrder = { 1105, 1106 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 300, }, }, - ["AbyssAvoidFreezeAndChillJewel2"] = { type = "Suffix", affix = "of Warming", "(9-10)% chance to Avoid being Chilled", "(9-10)% chance to Avoid being Frozen", statOrderKey = "1105,1106", statOrder = { 1105, 1106 }, level = 30, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 150, }, }, - ["AbyssAvoidShockJewel1"] = { type = "Suffix", affix = "of Insulating", "(6-8)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 1, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 300, }, }, - ["AbyssAvoidShockJewel2"] = { type = "Suffix", affix = "of Insulating", "(9-10)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 30, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 150, }, }, - ["AbyssAvoidPoisonJewel1__"] = { type = "Suffix", affix = "of Tolerance", "(6-8)% chance to Avoid being Poisoned", statOrderKey = "1110", statOrder = { 1110 }, level = 20, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 300, }, }, - ["AbyssAvoidPoisonJewel2__"] = { type = "Suffix", affix = "of Tolerance", "(9-10)% chance to Avoid being Poisoned", statOrderKey = "1110", statOrder = { 1110 }, level = 50, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 150, }, }, - ["AbyssAvoidBleedingJewel1"] = { type = "Suffix", affix = "of Mending", "(6-8)% chance to avoid Bleeding", statOrderKey = "3389", statOrder = { 3389 }, level = 20, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 300, }, }, - ["AbyssAvoidBleedingJewel2"] = { type = "Suffix", affix = "of Mending", "(9-10)% chance to avoid Bleeding", statOrderKey = "3389", statOrder = { 3389 }, level = 50, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 150, }, }, - ["AbyssAvoidStunJewel1"] = { type = "Suffix", affix = "of Unwavering", "(6-8)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 300, }, }, - ["AbyssAvoidStunJewel2"] = { type = "Suffix", affix = "of Unwavering", "(9-10)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 20, group = "AvoidStun", weightKey = { "default", }, weightVal = { 150, }, }, - ["AbyssAccuracyRatingJewel1"] = { type = "Suffix", affix = "of Calm", "+(10-30) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0, }, tags = { "has_attack_mod", }, }, - ["AbyssAccuracyRatingJewel2"] = { type = "Suffix", affix = "of Steadiness", "+(31-60) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["AbyssAccuracyRatingJewel3"] = { type = "Suffix", affix = "of the Marksman", "+(61-120) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 52, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["AbyssAccuracyRatingJewel4"] = { type = "Suffix", affix = "of the Ranger", "+(121-240) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 78, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0, }, tags = { "has_attack_mod", }, }, - ["AbyssMinionAttackAndCastSpeedJewel1"] = { type = "Suffix", affix = "of Training", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionLifeRegenerationJewel1"] = { type = "Suffix", affix = "of Longevity", "Minions Regenerate (0.4-0.8)% of Life per second", statOrderKey = "2089", statOrder = { 2089 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionLifeLeechJewel1"] = { type = "Suffix", affix = "of Vampirism", "Minions Leech (0.3-0.5)% of Damage as Life", statOrderKey = "2088", statOrder = { 2088 }, level = 1, group = "MinionLifeLeech", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionMovementSpeedJewel1"] = { type = "Suffix", affix = "of Orchestration", "Minions have (6-10)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 1, group = "MinionMovementSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionLifeJewel1_"] = { type = "Suffix", affix = "of Fortitude", "Minions have (8-12)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 1, group = "MinionLife", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssFlatMinionAccuracy1"] = { type = "Suffix", affix = "of Suggestion", "Minions have +(95-125) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 1, group = "MinionAccuracyRating", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssFlatMinionAccuracy2_"] = { type = "Suffix", affix = "of Instruction", "Minions have +(126-180) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 1, group = "MinionAccuracyRating", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssFlatMinionAccuracy3"] = { type = "Suffix", affix = "of Command", "Minions have +(181-250) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 1, group = "MinionAccuracyRating", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionElementalResistancesJewel1"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(6-10)% to all Elemental Resistances", statOrderKey = "2090", statOrder = { 2090 }, level = 1, group = "MinionElementalResistances", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssMinionChaosResistanceJewel1"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-11)% to Chaos Resistance", statOrderKey = "2091", statOrder = { 2091 }, level = 1, group = "MinionChaosResistance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0, }, }, - ["AbyssFlatArmourJewel1"] = { type = "Prefix", affix = "Lacquered", "+(36-60) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 1, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatArmourJewel2"] = { type = "Prefix", affix = "Fortified", "+(61-100) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 40, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatArmourJewel3"] = { type = "Prefix", affix = "Carapaced", "+(101-180) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 75, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 300, }, }, - ["AbyssFlatEvasionJewel1"] = { type = "Prefix", affix = "Agile", "+(36-60) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 1, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatEvasionJewel2"] = { type = "Prefix", affix = "Fleet", "+(61-100) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 40, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatEvasionJewel3"] = { type = "Prefix", affix = "Vaporous", "+(101-180) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 75, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 300, }, }, - ["AbyssFlatEnergyShieldJewel1"] = { type = "Prefix", affix = "Shining", "+(21-25) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatEnergyShieldJewel2"] = { type = "Prefix", affix = "Seething", "+(26-30) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 40, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatEnergyShieldJewel3"] = { type = "Prefix", affix = "Incandescent", "+(31-35) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 75, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 600, }, }, - ["AbyssFlatEnergyShieldJewel4"] = { type = "Prefix", affix = "Resplendent", "+(36-40) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 83, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 300, }, }, - ["AbyssSpellBlockChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Instinct", "+2% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrderKey = "3988", statOrder = { 3988 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 500, 0, }, }, - ["AbyssReducedPhysicalDamageTakenIfNotHitRecentlyJewel1"] = { type = "Suffix", affix = "of Confidence", "2% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", statOrderKey = "3588", statOrder = { 3588 }, level = 1, group = "ReducedPhysicalDamageTakenIfNotHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 500, 0, }, }, - ["AbyssMovementSpeedIfNotDamagedRecentlyJewel1"] = { type = "Suffix", affix = "of Momentum", "(3-4)% increased Movement Speed if you haven't taken Damage Recently", statOrderKey = "5970", statOrder = { 5970 }, level = 1, group = "MovementSpeedIfNotDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 500, 0, }, }, - ["AbyssDamageIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Slayer", "(15-20)% increased Damage if you've Killed Recently", statOrderKey = "4205", statOrder = { 4205 }, level = 1, group = "DamageIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 0, 0, }, }, - ["AbyssCriticalStrikeMultiplierIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Assassin", "+(8-14)% to Critical Strike Multiplier if you've Killed Recently", statOrderKey = "4160", statOrder = { 4160 }, level = 25, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0, }, }, - ["AbyssIncreasedArmourIfNoEnemySlainRecentlyJewel1__"] = { type = "Suffix", affix = "of the Guardian", "(20-30)% increased Armour if you haven't Killed Recently", statOrderKey = "3650", statOrder = { 3650 }, level = 1, group = "IncreasedArmourIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 0, 0, }, }, - ["AbyssAccuracyIfNoEnemySlainRecentlyJewel1_"] = { type = "Suffix", affix = "of the Deadeye", "(20-30)% increased Accuracy Rating if you haven't Killed Recently", statOrderKey = "3557", statOrder = { 3557 }, level = 1, group = "AccuracyIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 0, 0, 0, }, }, - ["AbyssDamagePenetratesElementalResistancesIfNoEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Inquisitor", "Damage Penetrates 2% Elemental Resistance if you haven't Killed Recently", statOrderKey = "4197", statOrder = { 4197 }, level = 1, group = "DamagePenetratesElementalResistancesIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0, }, }, - ["AbyssCastSpeedIfMinionKilledRecentlyJewel1"] = { type = "Suffix", affix = "of Retaliation", "(7-10)% increased Cast Speed if a Minion has been Killed Recently", statOrderKey = "3974", statOrder = { 3974 }, level = 30, group = "CastSpeedIfMinionKilledRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0, }, }, - ["AbyssMinionDamageIfMinionSkillUsedRecentlyJewel1"] = { type = "Suffix", affix = "of Authority", "Minions deal (15-20)% increased Damage if you've used a Minion Skill Recently", statOrderKey = "1234", statOrder = { 1234 }, level = 1, group = "MinionDamageIfMinionSkillUsedRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0, }, }, - ["AbyssEvasionRatingWhileMovingJewel1"] = { type = "Suffix", affix = "of Maneuvering", "(25-35)% increased Evasion Rating while moving", statOrderKey = "4398", statOrder = { 4398 }, level = 1, group = "EvasionRatingWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 500, 0, }, }, - ["AbyssManaRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Praxis", "(20-25)% increased Mana Regeneration Rate while moving", statOrderKey = "5310", statOrder = { 5310 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 500, 0, }, }, - ["AbyssLifeRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Vivaciousness", "Regenerate (0.5-1)% of Life per second while moving", statOrderKey = "4712", statOrder = { 4712 }, level = 1, group = "LifeRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 500, 0, }, }, - ["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", statOrderKey = "6046", statOrder = { 6046 }, level = 40, group = "PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 600, 300, 300, 0, 0, }, }, - ["AbyssAttackSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Opportunity", "(6-8)% increased Attack Speed if you've dealt a Critical Strike Recently", statOrderKey = "3736", statOrder = { 3736 }, level = 25, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 1000, 500, 0, 0, }, }, - ["AbyssCastSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Abuse", "(5-7)% increased Cast Speed if you've dealt a Critical Strike Recently", statOrderKey = "3973", statOrder = { 3973 }, level = 25, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0, }, }, - ["AbyssCriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Preparation", "(20-30)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrderKey = "4139", statOrder = { 4139 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0, }, }, - ["AbyssMinionAttackAndCastSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of Rallying", "Minions have (6-8)% increased Attack and Cast Speed if you or your Minions have Killed Recently", statOrderKey = "5909", statOrder = { 5909 }, level = 1, group = "MinionAttackAndCastSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0, }, }, - ["AbyssSpellDodgeAndDodgeChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Readiness", "2% chance to Dodge Attack and Spell Hits if you've", "been Hit Recently", statOrderKey = "4284,4284.1", statOrder = { 4284, 4284.1 }, level = 1, group = "SpellDodgeAndDodgeChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 500, 0, }, }, - ["AbyssMovementSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Raider", "(2-4)% increased Movement Speed if you've Killed Recently", statOrderKey = "3436", statOrder = { 3436 }, level = 1, group = "MovementSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 0, 0, }, }, - ["AbyssChanceToBlockIfDamagedRecentlyJewel1_"] = { type = "Suffix", affix = "of Guarding", "+2% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrderKey = "2397", statOrder = { 2397 }, level = 1, group = "ChanceToBlockIfDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 500, 0, }, }, - ["AbyssChanceToGainOnslaughtOnKillJewel1"] = { type = "Suffix", affix = "of Onslaught", "(3-5)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2176", statOrder = { 2176 }, level = 10, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["AbyssChanceToGainOnslaughtOnKillJewel2"] = { type = "Suffix", affix = "of Onslaught", "(6-8)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2176", statOrder = { 2176 }, level = 50, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0, }, }, - ["AbyssChancetoGainPhasingOnKillJewel1"] = { type = "Suffix", affix = "of Phasing", "(3-5)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 10, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 1000, 1000, 0, }, }, - ["AbyssChancetoGainPhasingOnKillJewel2"] = { type = "Suffix", affix = "of Phasing", "(6-8)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 50, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 500, 500, 0, }, }, - ["AbyssChanceToGainUnholyMightOnKillAbyssJewel1"] = { type = "Suffix", affix = "of Unholy Might", "(2-3)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrderKey = "2264", statOrder = { 2264 }, level = 40, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, }, }, - ["AbyssChanceToGainUnholyMightOnKillAbyssJewel2_"] = { type = "Suffix", affix = "of Unholy Might", "(4-5)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrderKey = "2264", statOrder = { 2264 }, level = 80, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 500, 0, }, }, + ["ChaosResistAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedCharacterSizeAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrderKey = "1313", statOrder = { 1313 }, level = 1, group = "ActorSize", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedChillDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrderKey = "1132", statOrder = { 1132 }, level = 1, group = "ReducedChillDuration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedFreezeDurationAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrderKey = "1134", statOrder = { 1134 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedIgniteDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrderKey = "1135", statOrder = { 1135 }, level = 1, group = "ReducedBurnDuration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ReducedShockDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrderKey = "1133", statOrder = { 1133 }, level = 1, group = "ReducedShockDuration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["IncreasedChargeDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrderKey = "2208", statOrder = { 2208 }, level = 1, group = "ChargeDuration", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AddedChaosDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 1, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChanceToBeCritAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "Hits have (3-5)% increased Critical Strike Chance against you", statOrderKey = "2312", statOrder = { 2312 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["DamageWhileDeadAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrderKey = "2277", statOrder = { 2277 }, level = 1, group = "DamageWhileDead", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["VaalSkillDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "Vaal Skills deal (5-10)% increased Damage", statOrderKey = "2276", statOrder = { 2276 }, level = 1, group = "VaalSkillDamage", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ChaosDamagePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrderKey = "2280", statOrder = { 2280 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["LifeLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrderKey = "2281", statOrder = { 2281 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["ManaLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrderKey = "2283", statOrder = { 2283 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["SilenceImmunityAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2275", statOrder = { 2275 }, level = 1, group = "PlayerCurseImmunity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2CorruptedBloodImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrderKey = "3949", statOrder = { 3949 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2HinderImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrderKey = "6489", statOrder = { 6489 }, level = 40, group = "YouCannotBeHindered", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAilmentEffectOnEnemiesAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrderKey = "6000", statOrder = { 6000 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedAreaOfEffectAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrderKey = "1140", statOrder = { 1140 }, level = 1, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedCriticalStrikeChanceAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2IncreasedDamageAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrderKey = "531", statOrder = { 531 }, level = 1, group = "IncreasedDamage", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2MaimImmunityCorrupted_"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrderKey = "3763", statOrder = { 3763 }, level = 40, group = "AvoidMaimChance", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2MinionDamageCorrupted__"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrderKey = "1233", statOrder = { 1233 }, level = 1, group = "MinionDamage", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ReducedManaReservationCorrupted_"] = { type = "Corrupted", affix = "", "1% reduced Mana Reserved", statOrderKey = "1481", statOrder = { 1481 }, level = 1, group = "ReducedManaReservationsCost", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2SilenceImmunityJewelCorrupted__"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrderKey = "2275", statOrder = { 2275 }, level = 60, group = "PlayerCurseImmunity", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2FirePenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrderKey = "2166", statOrder = { 2166 }, level = 1, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ColdPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrderKey = "2167", statOrder = { 2167 }, level = 1, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2LightningPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrderKey = "2168", statOrder = { 2168 }, level = 1, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ElementalPenetrationAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrderKey = "2165", statOrder = { 2165 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["V2ArmourPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Enemies have -2% to Total Physical Damage Reduction against your Hits", statOrderKey = "2163", statOrder = { 2163 }, level = 1, group = "ArmourPenetration", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssJewelAddedLife1"] = { type = "Prefix", affix = "Hale", "+(21-25) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 1, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssJewelAddedLife2"] = { type = "Prefix", affix = "Healthy", "+(26-30) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 35, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssJewelAddedLife3"] = { type = "Prefix", affix = "Sanguine", "+(31-35) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 74, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssJewelAddedLife4"] = { type = "Prefix", affix = "Stalwart", "+(36-40) to maximum Life", statOrderKey = "877", statOrder = { 877 }, level = 82, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssJewelAddedMana1"] = { type = "Prefix", affix = "Beryl", "+(21-25) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 1, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssJewelAddedMana2"] = { type = "Prefix", affix = "Cobalt", "+(26-30) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 40, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssJewelAddedMana3"] = { type = "Prefix", affix = "Azure", "+(31-35) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 75, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssJewelAddedMana4"] = { type = "Prefix", affix = "Sapphire", "+(36-40) to maximum Mana", statOrderKey = "884", statOrder = { 884 }, level = 83, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssJewelChillEffect1_"] = { type = "Suffix", affix = "of Chilling", "(6-10)% increased Effect of Chill", statOrderKey = "4066", statOrder = { 4066 }, level = 30, group = "AbyssJewelChillEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssJewelShockEffect1"] = { type = "Suffix", affix = "of Shocking", "(6-10)% increased Effect of Shock", statOrderKey = "6217", statOrder = { 6217 }, level = 30, group = "AbyssJewelShockEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssStrengthJewel1_"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrderKey = "521", statOrder = { 521 }, level = 1, group = "Strength", weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssDexterityJewel1_"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrderKey = "522", statOrder = { 522 }, level = 1, group = "Dexterity", weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssIntelligenceJewel1"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrderKey = "523", statOrder = { 523 }, level = 1, group = "Intelligence", weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssStrengthDexterityJewel1"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrderKey = "524", statOrder = { 524 }, level = 1, group = "StrengthDexterity", weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssStrengthIntelligenceJewel1_"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrderKey = "525", statOrder = { 525 }, level = 1, group = "StrengthIntelligence", weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssDexterityIntelligenceJewel1"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrderKey = "526", statOrder = { 526 }, level = 1, group = "DexterityIntelligence", weightKey = { "default", }, weightVal = { 500 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAllAttributesJewel1"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrderKey = "520", statOrder = { 520 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFireResistanceJewel1"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrderKey = "923", statOrder = { 923 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 400 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssColdResistanceJewel1"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrderKey = "929", statOrder = { 929 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 400 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssLightningResistanceJewel1"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrderKey = "934", statOrder = { 934 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 400 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFireColdResistanceJewel1"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrderKey = "1979", statOrder = { 1979 }, level = 1, group = "FireAndColdResistance", weightKey = { "default", }, weightVal = { 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFireLightningResistanceJewel1"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrderKey = "1980", statOrder = { 1980 }, level = 1, group = "FireAndLightningResistance", weightKey = { "default", }, weightVal = { 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssColdLightningResistanceJewel1"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrderKey = "1981", statOrder = { 1981 }, level = 1, group = "ColdAndLightningResistance", weightKey = { "default", }, weightVal = { 250 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAllResistancesJewel1"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrderKey = "917", statOrder = { 917 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 200 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssChaosResistanceJewel1"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrderKey = "938", statOrder = { 938 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 100 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAttackSpeedJewel1_"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrderKey = "731", statOrder = { 731 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssCastSpeedJewel1"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrderKey = "767", statOrder = { 767 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrderKey = "782", statOrder = { 782 }, level = 1, group = "CriticalStrikeChanceIncrease", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 1400 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssCriticalStrikeMultiplierJewel1"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrderKey = "810", statOrder = { 810 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssDamageOverTimeWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while Dual Wielding", statOrderKey = "1386", statOrder = { 1386 }, level = 1, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 800, 400 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "one_handed_mod", }, }, + ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while wielding a Two Handed Weapon", statOrderKey = "1388", statOrder = { 1388 }, level = 1, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 1200, 600 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", }, }, + ["AbyssDamageOverTimeWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while holding a Shield", statOrderKey = "1387", statOrder = { 1387 }, level = 1, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 800, 400 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "one_handed_mod", }, }, + ["AbyssMinionAddedFireDamageJewel1"] = { type = "Prefix", affix = "Heated", "Minions deal (1-2) to (3-5) additional Fire Damage", statOrderKey = "2952", statOrder = { 2952 }, level = 1, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedFireDamageJewel2"] = { type = "Prefix", affix = "Flaming", "Minions deal (3-5) to (7-9) additional Fire Damage", statOrderKey = "2952", statOrder = { 2952 }, level = 40, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedFireDamageJewel3"] = { type = "Prefix", affix = "Scorching", "Minions deal (6-8) to (10-12) additional Fire Damage", statOrderKey = "2952", statOrder = { 2952 }, level = 52, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedFireDamageJewel4_"] = { type = "Prefix", affix = "Incinerating", "Minions deal (9-11) to (13-15) additional Fire Damage", statOrderKey = "2952", statOrder = { 2952 }, level = 62, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedFireDamageJewel5"] = { type = "Prefix", affix = "Blasting", "Minions deal (12-14) to (16-18) additional Fire Damage", statOrderKey = "2952", statOrder = { 2952 }, level = 70, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedFireDamageJewel6_"] = { type = "Prefix", affix = "Cremating", "Minions deal (15-17) to (22-26) additional Fire Damage", statOrderKey = "2952", statOrder = { 2952 }, level = 81, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedColdDamageJewel1"] = { type = "Prefix", affix = "Frosted", "Minions deal (1-2) to (3-5) additional Cold Damage", statOrderKey = "2951", statOrder = { 2951 }, level = 1, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedColdDamageJewel2"] = { type = "Prefix", affix = "Freezing", "Minions deal (3-5) to (7-9) additional Cold Damage", statOrderKey = "2951", statOrder = { 2951 }, level = 38, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedColdDamageJewel3"] = { type = "Prefix", affix = "Frozen", "Minions deal (6-8) to (10-12) additional Cold Damage", statOrderKey = "2951", statOrder = { 2951 }, level = 47, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedColdDamageJewel4"] = { type = "Prefix", affix = "Glaciated", "Minions deal (9-11) to (13-15) additional Cold Damage", statOrderKey = "2951", statOrder = { 2951 }, level = 56, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedColdDamageJewel5"] = { type = "Prefix", affix = "Polar", "Minions deal (12-14) to (16-18) additional Cold Damage", statOrderKey = "2951", statOrder = { 2951 }, level = 68, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedColdDamageJewel6_"] = { type = "Prefix", affix = "Entombing", "Minions deal (15-17) to (22-26) additional Cold Damage", statOrderKey = "2951", statOrder = { 2951 }, level = 80, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedLightningDamageJewel1_"] = { type = "Prefix", affix = "Humming", "Minions deal 1 to (3-5) additional Lightning Damage", statOrderKey = "2953", statOrder = { 2953 }, level = 1, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedLightningDamageJewel2"] = { type = "Prefix", affix = "Sparking", "Minions deal (1-2) to (8-12) additional Lightning Damage", statOrderKey = "2953", statOrder = { 2953 }, level = 39, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedLightningDamageJewel3_"] = { type = "Prefix", affix = "Arcing", "Minions deal (1-3) to (13-17) additional Lightning Damage", statOrderKey = "2953", statOrder = { 2953 }, level = 48, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedLightningDamageJewel4"] = { type = "Prefix", affix = "Shocking", "Minions deal (2-5) to (18-22) additional Lightning Damage", statOrderKey = "2953", statOrder = { 2953 }, level = 58, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedLightningDamageJewel5"] = { type = "Prefix", affix = "Discharging", "Minions deal (2-6) to (23-29) additional Lightning Damage", statOrderKey = "2953", statOrder = { 2953 }, level = 70, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedLightningDamageJewel6"] = { type = "Prefix", affix = "Electrocuting", "Minions deal (3-9) to (30-36) additional Lightning Damage", statOrderKey = "2953", statOrder = { 2953 }, level = 82, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedPhysicalDamageJewel1"] = { type = "Prefix", affix = "Glinting", "Minions deal (1-2) to (3-5) additional Physical Damage", statOrderKey = "2954", statOrder = { 2954 }, level = 1, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedPhysicalDamageJewel2"] = { type = "Prefix", affix = "Gleaming", "Minions deal (3-5) to (7-9) additional Physical Damage", statOrderKey = "2954", statOrder = { 2954 }, level = 42, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedPhysicalDamageJewel3"] = { type = "Prefix", affix = "Annealed", "Minions deal (6-8) to (10-12) additional Physical Damage", statOrderKey = "2954", statOrder = { 2954 }, level = 54, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedPhysicalDamageJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Minions deal (9-11) to (13-15) additional Physical Damage", statOrderKey = "2954", statOrder = { 2954 }, level = 63, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedPhysicalDamageJewel5"] = { type = "Prefix", affix = "Tempered", "Minions deal (12-14) to (16-18) additional Physical Damage", statOrderKey = "2954", statOrder = { 2954 }, level = 72, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedPhysicalDamageJewel6"] = { type = "Prefix", affix = "Flaring", "Minions deal (15-17) to (22-26) additional Physical Damage", statOrderKey = "2954", statOrder = { 2954 }, level = 83, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedChaosDamageJewel1"] = { type = "Prefix", affix = "Tainted", "Minions deal (1-2) to (3-5) additional Chaos Damage", statOrderKey = "2950", statOrder = { 2950 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedChaosDamageJewel2_"] = { type = "Prefix", affix = "Clouded", "Minions deal (3-5) to (7-9) additional Chaos Damage", statOrderKey = "2950", statOrder = { 2950 }, level = 42, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedChaosDamageJewel3"] = { type = "Prefix", affix = "Darkened", "Minions deal (6-8) to (10-12) additional Chaos Damage", statOrderKey = "2950", statOrder = { 2950 }, level = 54, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedChaosDamageJewel4"] = { type = "Prefix", affix = "Malignant", "Minions deal (9-11) to (13-15) additional Chaos Damage", statOrderKey = "2950", statOrder = { 2950 }, level = 65, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedChaosDamageJewel5_"] = { type = "Prefix", affix = "Vile", "Minions deal (12-14) to (16-18) additional Chaos Damage", statOrderKey = "2950", statOrder = { 2950 }, level = 75, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAddedChaosDamageJewel6"] = { type = "Prefix", affix = "Malicious", "Minions deal (15-17) to (22-26) additional Chaos Damage", statOrderKey = "2950", statOrder = { 2950 }, level = 84, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage to Spells while Dual Wielding", statOrderKey = "1364", statOrder = { 1364 }, level = 1, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-9) to (11-13) Fire Damage to Spells while Dual Wielding", statOrderKey = "1364", statOrder = { 1364 }, level = 40, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (10-12) to (14-16) Fire Damage to Spells while Dual Wielding", statOrderKey = "1364", statOrder = { 1364 }, level = 52, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-15) to (17-21) Fire Damage to Spells while Dual Wielding", statOrderKey = "1364", statOrder = { 1364 }, level = 62, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (16-18) to (22-24) Fire Damage to Spells while Dual Wielding", statOrderKey = "1364", statOrder = { 1364 }, level = 70, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (26-34) Fire Damage to Spells while Dual Wielding", statOrderKey = "1364", statOrder = { 1364 }, level = 81, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (2-4) to (5-7) Cold Damage to Spells while Dual Wielding", statOrderKey = "1361", statOrder = { 1361 }, level = 1, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (7-9) to (11-13) Cold Damage to Spells while Dual Wielding", statOrderKey = "1361", statOrder = { 1361 }, level = 38, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-12) to (14-16) Cold Damage to Spells while Dual Wielding", statOrderKey = "1361", statOrder = { 1361 }, level = 47, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel4__"] = { type = "Prefix", affix = "Glaciated", "Adds (13-15) to (17-21) Cold Damage to Spells while Dual Wielding", statOrderKey = "1361", statOrder = { 1361 }, level = 56, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Polar", "Adds (16-18) to (22-24) Cold Damage to Spells while Dual Wielding", statOrderKey = "1361", statOrder = { 1361 }, level = 68, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (19-25) to (26-34) Cold Damage to Spells while Dual Wielding", statOrderKey = "1361", statOrder = { 1361 }, level = 80, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-10) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1367", statOrder = { 1367 }, level = 1, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (17-21) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1367", statOrder = { 1367 }, level = 39, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (22-26) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1367", statOrder = { 1367 }, level = 48, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (29-33) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1367", statOrder = { 1367 }, level = 58, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Discharging", "Adds (1-5) to (34-36) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1367", statOrder = { 1367 }, level = 70, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-6) to (43-51) Lightning Damage to Spells while Dual Wielding", statOrderKey = "1367", statOrder = { 1367 }, level = 82, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-5) Physical Damage to Spells while Dual Wielding", statOrderKey = "1370", statOrder = { 1370 }, level = 1, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-5) to (7-9) Physical Damage to Spells while Dual Wielding", statOrderKey = "1370", statOrder = { 1370 }, level = 42, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Annealed", "Adds (6-8) to (10-12) Physical Damage to Spells while Dual Wielding", statOrderKey = "1370", statOrder = { 1370 }, level = 54, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Adds (9-11) to (13-15) Physical Damage to Spells while Dual Wielding", statOrderKey = "1370", statOrder = { 1370 }, level = 63, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Tempered", "Adds (12-14) to (15-17) Physical Damage to Spells while Dual Wielding", statOrderKey = "1370", statOrder = { 1370 }, level = 72, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Flaring", "Adds (15-17) to (20-24) Physical Damage to Spells while Dual Wielding", statOrderKey = "1370", statOrder = { 1370 }, level = 83, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Tainted", "Adds (1-2) to (3-5) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1358", statOrder = { 1358 }, level = 1, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Clouded", "Adds (3-5) to (7-9) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1358", statOrder = { 1358 }, level = 42, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Darkened", "Adds (6-8) to (10-12) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1358", statOrder = { 1358 }, level = 54, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Malignant", "Adds (9-11) to (13-15) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1358", statOrder = { 1358 }, level = 65, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Vile", "Adds (12-14) to (15-17) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1358", statOrder = { 1358 }, level = 75, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Malicious", "Adds (15-17) to (20-24) Chaos Damage to Spells while Dual Wielding", statOrderKey = "1358", statOrder = { 1358 }, level = 84, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dual_wielding_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1366", statOrder = { 1366 }, level = 1, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-9) to (11-13) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1366", statOrder = { 1366 }, level = 40, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel3_"] = { type = "Prefix", affix = "Scorching", "Adds (10-12) to (14-16) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1366", statOrder = { 1366 }, level = 52, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (13-15) to (17-21) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1366", statOrder = { 1366 }, level = 62, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (16-18) to (22-24) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1366", statOrder = { 1366 }, level = 70, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (26-34) Fire Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1366", statOrder = { 1366 }, level = 81, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (2-4) to (5-7) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1363", statOrder = { 1363 }, level = 1, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (7-9) to (11-13) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1363", statOrder = { 1363 }, level = 38, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-12) to (14-16) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1363", statOrder = { 1363 }, level = 47, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (13-15) to (17-21) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1363", statOrder = { 1363 }, level = 56, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Polar", "Adds (16-18) to (22-24) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1363", statOrder = { 1363 }, level = 68, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (19-25) to (26-34) Cold Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1363", statOrder = { 1363 }, level = 80, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-10) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1369", statOrder = { 1369 }, level = 1, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (17-21) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1369", statOrder = { 1369 }, level = 39, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (22-26) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1369", statOrder = { 1369 }, level = 48, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (29-33) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1369", statOrder = { 1369 }, level = 58, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel5_"] = { type = "Prefix", affix = "Discharging", "Adds (1-5) to (34-36) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1369", statOrder = { 1369 }, level = 70, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel6_"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-6) to (43-51) Lightning Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1369", statOrder = { 1369 }, level = 82, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-5) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1372", statOrder = { 1372 }, level = 1, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-5) to (7-9) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1372", statOrder = { 1372 }, level = 42, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Annealed", "Adds (6-8) to (10-12) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1372", statOrder = { 1372 }, level = 54, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Adds (9-11) to (13-15) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1372", statOrder = { 1372 }, level = 63, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Tempered", "Adds (12-14) to (15-17) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1372", statOrder = { 1372 }, level = 72, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Flaring", "Adds (15-17) to (20-24) Physical Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1372", statOrder = { 1372 }, level = 83, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Tainted", "Adds (1-2) to (3-5) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1360", statOrder = { 1360 }, level = 1, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Clouded", "Adds (3-5) to (7-9) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1360", statOrder = { 1360 }, level = 42, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Darkened", "Adds (6-8) to (10-12) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1360", statOrder = { 1360 }, level = 54, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Malignant", "Adds (9-11) to (13-15) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1360", statOrder = { 1360 }, level = 65, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Vile", "Adds (12-14) to (15-17) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1360", statOrder = { 1360 }, level = 75, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Malicious", "Adds (15-17) to (20-24) Chaos Damage to Spells while wielding a Two Handed Weapon", statOrderKey = "1360", statOrder = { 1360 }, level = 84, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "two_handed_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage to Spells while holding a Shield", statOrderKey = "1365", statOrder = { 1365 }, level = 1, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-9) to (11-13) Fire Damage to Spells while holding a Shield", statOrderKey = "1365", statOrder = { 1365 }, level = 40, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (10-12) to (14-16) Fire Damage to Spells while holding a Shield", statOrderKey = "1365", statOrder = { 1365 }, level = 52, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel4_"] = { type = "Prefix", affix = "Incinerating", "Adds (13-15) to (17-21) Fire Damage to Spells while holding a Shield", statOrderKey = "1365", statOrder = { 1365 }, level = 62, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (16-18) to (22-24) Fire Damage to Spells while holding a Shield", statOrderKey = "1365", statOrder = { 1365 }, level = 70, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel6__"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (26-34) Fire Damage to Spells while holding a Shield", statOrderKey = "1365", statOrder = { 1365 }, level = 81, group = "WeaponClassFireDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Frosted", "Adds (2-4) to (5-7) Cold Damage to Spells while holding a Shield", statOrderKey = "1362", statOrder = { 1362 }, level = 1, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (7-9) to (11-13) Cold Damage to Spells while holding a Shield", statOrderKey = "1362", statOrder = { 1362 }, level = 38, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (10-12) to (14-16) Cold Damage to Spells while holding a Shield", statOrderKey = "1362", statOrder = { 1362 }, level = 47, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (13-15) to (17-21) Cold Damage to Spells while holding a Shield", statOrderKey = "1362", statOrder = { 1362 }, level = 56, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel5_"] = { type = "Prefix", affix = "Polar", "Adds (16-18) to (22-24) Cold Damage to Spells while holding a Shield", statOrderKey = "1362", statOrder = { 1362 }, level = 68, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (19-25) to (26-34) Cold Damage to Spells while holding a Shield", statOrderKey = "1362", statOrder = { 1362 }, level = 80, group = "WeaponClassColdDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-10) Lightning Damage to Spells while holding a Shield", statOrderKey = "1368", statOrder = { 1368 }, level = 1, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (17-21) Lightning Damage to Spells while holding a Shield", statOrderKey = "1368", statOrder = { 1368 }, level = 39, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (22-26) Lightning Damage to Spells while holding a Shield", statOrderKey = "1368", statOrder = { 1368 }, level = 48, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (29-33) Lightning Damage to Spells while holding a Shield", statOrderKey = "1368", statOrder = { 1368 }, level = 58, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (1-5) to (34-36) Lightning Damage to Spells while holding a Shield", statOrderKey = "1368", statOrder = { 1368 }, level = 70, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-6) to (43-51) Lightning Damage to Spells while holding a Shield", statOrderKey = "1368", statOrder = { 1368 }, level = 82, group = "WeaponClassLightningDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (3-5) Physical Damage to Spells while holding a Shield", statOrderKey = "1371", statOrder = { 1371 }, level = 1, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds (3-5) to (7-9) Physical Damage to Spells while holding a Shield", statOrderKey = "1371", statOrder = { 1371 }, level = 42, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Annealed", "Adds (6-8) to (10-12) Physical Damage to Spells while holding a Shield", statOrderKey = "1371", statOrder = { 1371 }, level = 54, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Adds (9-11) to (13-15) Physical Damage to Spells while holding a Shield", statOrderKey = "1371", statOrder = { 1371 }, level = 63, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Tempered", "Adds (12-14) to (15-17) Physical Damage to Spells while holding a Shield", statOrderKey = "1371", statOrder = { 1371 }, level = 72, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Flaring", "Adds (15-17) to (20-24) Physical Damage to Spells while holding a Shield", statOrderKey = "1371", statOrder = { 1371 }, level = 83, group = "WeaponClassPhysicalDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Tainted", "Adds (1-2) to (3-5) Chaos Damage to Spells while holding a Shield", statOrderKey = "1359", statOrder = { 1359 }, level = 1, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Clouded", "Adds (3-5) to (7-9) Chaos Damage to Spells while holding a Shield", statOrderKey = "1359", statOrder = { 1359 }, level = 42, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel3__"] = { type = "Prefix", affix = "Darkened", "Adds (6-8) to (10-12) Chaos Damage to Spells while holding a Shield", statOrderKey = "1359", statOrder = { 1359 }, level = 54, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Malignant", "Adds (9-11) to (13-15) Chaos Damage to Spells while holding a Shield", statOrderKey = "1359", statOrder = { 1359 }, level = 65, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Vile", "Adds (12-14) to (15-17) Chaos Damage to Spells while holding a Shield", statOrderKey = "1359", statOrder = { 1359 }, level = 75, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Malicious", "Adds (15-17) to (20-24) Chaos Damage to Spells while holding a Shield", statOrderKey = "1359", statOrder = { 1359 }, level = 84, group = "WeaponClassChaosDamage", 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "shield_mod", "specific_weapon", }, }, + ["AbyssSpellAddedFireDamageJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (6-8) to (9-11) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 30, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedFireDamageJewel2_"] = { type = "Suffix", affix = "of Cinders", "Adds (9-11) to (12-14) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 43, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedFireDamageJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (12-14) to (15-19) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 55, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedFireDamageJewel4"] = { type = "Suffix", affix = "of Immolation", "Adds (15-17) to (20-23) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 66, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedFireDamageJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (19-23) to (24-32) Fire Damage to Spells", statOrderKey = "725", statOrder = { 725 }, level = 77, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedColdDamageJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (6-8) to (9-11) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 29, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedColdDamageJewel2"] = { type = "Suffix", affix = "of Ice", "Adds (9-11) to (12-14) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 43, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedColdDamageJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (12-14) to (15-19) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 52, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedColdDamageJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (15-17) to (20-23) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 63, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedColdDamageJewel5"] = { type = "Suffix", affix = "of Glaciation", "Adds (19-23) to (24-32) Cold Damage to Spells", statOrderKey = "726", statOrder = { 726 }, level = 76, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedLightningDamageJewel1__"] = { type = "Suffix", affix = "of Static", "Adds (1-2) to (15-19) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 28, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedLightningDamageJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-3) to (20-24) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 44, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedLightningDamageJewel3__"] = { type = "Suffix", affix = "of Voltage", "Adds (1-4) to (25-29) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 54, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedLightningDamageJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-5) to (30-32) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 65, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedLightningDamageJewel5_"] = { type = "Suffix", affix = "of Arcing", "Adds (1-6) to (37-45) Lightning Damage to Spells", statOrderKey = "727", statOrder = { 727 }, level = 75, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedPhysicalDamageJewel1"] = { type = "Suffix", affix = "of Heft", "Adds (3-4) to (6-7) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 32, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedPhysicalDamageJewel2"] = { type = "Suffix", affix = "of Force", "Adds (5-7) to (8-10) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 45, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedPhysicalDamageJewel3"] = { type = "Suffix", affix = "of Weight", "Adds (8-10) to (11-13) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 56, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedPhysicalDamageJewel4"] = { type = "Suffix", affix = "of Impact", "Adds (11-13) to (14-16) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 65, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedPhysicalDamageJewel5__"] = { type = "Suffix", affix = "of Collision", "Adds (14-16) to (18-22) Physical Damage to Spells", statOrderKey = "724", statOrder = { 724 }, level = 78, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedChaosDamageJewel1"] = { type = "Suffix", affix = "of Dishonour", "Adds (3-4) to (6-7) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 33, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedChaosDamageJewel2"] = { type = "Suffix", affix = "of Harm", "Adds (5-7) to (8-10) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 48, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedChaosDamageJewel3"] = { type = "Suffix", affix = "of Malevolence", "Adds (8-10) to (11-13) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 57, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedChaosDamageJewel4"] = { type = "Suffix", affix = "of Malice", "Adds (11-13) to (14-16) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 68, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellAddedChaosDamageJewel5"] = { type = "Suffix", affix = "of Sin", "Adds (14-16) to (18-22) Chaos Damage to Spells", statOrderKey = "728", statOrder = { 728 }, level = 79, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Wand Attacks", statOrderKey = "1357", statOrder = { 1357 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Wand Attacks", statOrderKey = "1357", statOrder = { 1357 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Wand Attacks", statOrderKey = "1357", statOrder = { 1357 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Wand Attacks", statOrderKey = "1357", statOrder = { 1357 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 150, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Dagger Attacks", statOrderKey = "1353", statOrder = { 1353 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Dagger Attacks", statOrderKey = "1353", statOrder = { 1353 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel3_"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Dagger Attacks", statOrderKey = "1353", statOrder = { 1353 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Dagger Attacks", statOrderKey = "1353", statOrder = { 1353 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Claw Attacks", statOrderKey = "1352", statOrder = { 1352 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Claw Attacks", statOrderKey = "1352", statOrder = { 1352 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel3"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Claw Attacks", statOrderKey = "1352", statOrder = { 1352 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Claw Attacks", statOrderKey = "1352", statOrder = { 1352 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Sword Attacks", statOrderKey = "1356", statOrder = { 1356 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Sword Attacks", statOrderKey = "1356", statOrder = { 1356 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Sword Attacks", statOrderKey = "1356", statOrder = { 1356 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Sword Attacks", statOrderKey = "1356", statOrder = { 1356 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Axe Attacks", statOrderKey = "1351", statOrder = { 1351 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Axe Attacks", statOrderKey = "1351", statOrder = { 1351 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel3"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Axe Attacks", statOrderKey = "1351", statOrder = { 1351 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Axe Attacks", statOrderKey = "1351", statOrder = { 1351 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Mace or Sceptre Attacks", statOrderKey = "1354", statOrder = { 1354 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Mace or Sceptre Attacks", statOrderKey = "1354", statOrder = { 1354 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel3"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Mace or Sceptre Attacks", statOrderKey = "1354", statOrder = { 1354 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Mace or Sceptre Attacks", statOrderKey = "1354", statOrder = { 1354 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Staff Attacks", statOrderKey = "1355", statOrder = { 1355 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel2"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Staff Attacks", statOrderKey = "1355", statOrder = { 1355 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Staff Attacks", statOrderKey = "1355", statOrder = { 1355 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel4"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Staff Attacks", statOrderKey = "1355", statOrder = { 1355 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to 3 Physical Damage to Bow Attacks", statOrderKey = "1327", statOrder = { 1327 }, level = 1, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Gleaming", "Adds 3 to 4 Physical Damage to Bow Attacks", statOrderKey = "1327", statOrder = { 1327 }, level = 42, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel3"] = { type = "Prefix", affix = "Tempered", "Adds 4 to (5-6) Physical Damage to Bow Attacks", statOrderKey = "1327", statOrder = { 1327 }, level = 64, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel4_"] = { type = "Prefix", affix = "Flaring", "Adds (5-6) to (7-8) Physical Damage to Bow Attacks", statOrderKey = "1327", statOrder = { 1327 }, level = 83, group = "SpecificWeaponPhysicalDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Wand Attacks", statOrderKey = "1324", statOrder = { 1324 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithWandsJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Wand Attacks", statOrderKey = "1324", statOrder = { 1324 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithWandsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Wand Attacks", statOrderKey = "1324", statOrder = { 1324 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithWandsJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Wand Attacks", statOrderKey = "1324", statOrder = { 1324 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithWandsJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Wand Attacks", statOrderKey = "1324", statOrder = { 1324 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithWandsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Wand Attacks", statOrderKey = "1324", statOrder = { 1324 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Dagger Attacks", statOrderKey = "1345", statOrder = { 1345 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Dagger Attacks", statOrderKey = "1345", statOrder = { 1345 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Dagger Attacks", statOrderKey = "1345", statOrder = { 1345 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Dagger Attacks", statOrderKey = "1345", statOrder = { 1345 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Dagger Attacks", statOrderKey = "1345", statOrder = { 1345 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Dagger Attacks", statOrderKey = "1345", statOrder = { 1345 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithClawsJewel1__"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Claw Attacks", statOrderKey = "1344", statOrder = { 1344 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithClawsJewel2_"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Claw Attacks", statOrderKey = "1344", statOrder = { 1344 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithClawsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Claw Attacks", statOrderKey = "1344", statOrder = { 1344 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithClawsJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Claw Attacks", statOrderKey = "1344", statOrder = { 1344 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithClawsJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Claw Attacks", statOrderKey = "1344", statOrder = { 1344 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithClawsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Claw Attacks", statOrderKey = "1344", statOrder = { 1344 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedLightningDamageWithBowsJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithBowsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithBowsJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithBowsJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithBowsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Bow Attacks", statOrderKey = "1343", statOrder = { 1343 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 625, 0, 0, 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Sword Attacks", statOrderKey = "1348", statOrder = { 1348 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithSwordsJewel2__"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Sword Attacks", statOrderKey = "1348", statOrder = { 1348 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Sword Attacks", statOrderKey = "1348", statOrder = { 1348 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithSwordsJewel4_"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Sword Attacks", statOrderKey = "1348", statOrder = { 1348 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Sword Attacks", statOrderKey = "1348", statOrder = { 1348 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Sword Attacks", statOrderKey = "1348", statOrder = { 1348 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithAxesJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Axe Attacks", statOrderKey = "1342", statOrder = { 1342 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithAxesJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Axe Attacks", statOrderKey = "1342", statOrder = { 1342 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithAxesJewel3_"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Axe Attacks", statOrderKey = "1342", statOrder = { 1342 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithAxesJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Axe Attacks", statOrderKey = "1342", statOrder = { 1342 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithAxesJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Axe Attacks", statOrderKey = "1342", statOrder = { 1342 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithAxesJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Axe Attacks", statOrderKey = "1342", statOrder = { 1342 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithMacesJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Mace or Sceptre Attacks", statOrderKey = "1346", statOrder = { 1346 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithMacesJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Mace or Sceptre Attacks", statOrderKey = "1346", statOrder = { 1346 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithMacesJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Mace or Sceptre Attacks", statOrderKey = "1346", statOrder = { 1346 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Mace or Sceptre Attacks", statOrderKey = "1346", statOrder = { 1346 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithMacesJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Mace or Sceptre Attacks", statOrderKey = "1346", statOrder = { 1346 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithMacesJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Mace or Sceptre Attacks", statOrderKey = "1346", statOrder = { 1346 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedLightningDamageWithStavesJewel1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (19-20) Lightning Damage to Staff Attacks", statOrderKey = "1347", statOrder = { 1347 }, level = 1, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithStavesJewel2"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (23-24) Lightning Damage to Staff Attacks", statOrderKey = "1347", statOrder = { 1347 }, level = 37, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithStavesJewel3"] = { type = "Prefix", affix = "Arcing", "Adds (1-3) to (28-30) Lightning Damage to Staff Attacks", statOrderKey = "1347", statOrder = { 1347 }, level = 48, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithStavesJewel4"] = { type = "Prefix", affix = "Shocking", "Adds (1-4) to (33-35) Lightning Damage to Staff Attacks", statOrderKey = "1347", statOrder = { 1347 }, level = 60, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithStavesJewel5"] = { type = "Prefix", affix = "Discharging", "Adds (2-4) to (40-43) Lightning Damage to Staff Attacks", statOrderKey = "1347", statOrder = { 1347 }, level = 70, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedLightningDamageWithStavesJewel6"] = { type = "Prefix", affix = "Electrocuting", "Adds (2-5) to (48-50) Lightning Damage to Staff Attacks", statOrderKey = "1347", statOrder = { 1347 }, level = 82, group = "SpecificWeaponLightningDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedFireDamageWithWandsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Wand Attacks", statOrderKey = "1325", statOrder = { 1325 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithWandsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Wand Attacks", statOrderKey = "1325", statOrder = { 1325 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithWandsJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Wand Attacks", statOrderKey = "1325", statOrder = { 1325 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithWandsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Wand Attacks", statOrderKey = "1325", statOrder = { 1325 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithWandsJewel5__"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Wand Attacks", statOrderKey = "1325", statOrder = { 1325 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithWandsJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Wand Attacks", statOrderKey = "1325", statOrder = { 1325 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Dagger Attacks", statOrderKey = "1338", statOrder = { 1338 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Dagger Attacks", statOrderKey = "1338", statOrder = { 1338 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Dagger Attacks", statOrderKey = "1338", statOrder = { 1338 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Dagger Attacks", statOrderKey = "1338", statOrder = { 1338 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Dagger Attacks", statOrderKey = "1338", statOrder = { 1338 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Dagger Attacks", statOrderKey = "1338", statOrder = { 1338 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithClawsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Claw Attacks", statOrderKey = "1337", statOrder = { 1337 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithClawsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Claw Attacks", statOrderKey = "1337", statOrder = { 1337 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithClawsJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Claw Attacks", statOrderKey = "1337", statOrder = { 1337 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithClawsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Claw Attacks", statOrderKey = "1337", statOrder = { 1337 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithClawsJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Claw Attacks", statOrderKey = "1337", statOrder = { 1337 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithClawsJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Claw Attacks", statOrderKey = "1337", statOrder = { 1337 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedFireDamageWithBowsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithBowsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithBowsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithBowsJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithBowsJewel6_"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Bow Attacks", statOrderKey = "1336", statOrder = { 1336 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Sword Attacks", statOrderKey = "1341", statOrder = { 1341 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Sword Attacks", statOrderKey = "1341", statOrder = { 1341 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithSwordsJewel3___"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Sword Attacks", statOrderKey = "1341", statOrder = { 1341 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Sword Attacks", statOrderKey = "1341", statOrder = { 1341 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Sword Attacks", statOrderKey = "1341", statOrder = { 1341 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Sword Attacks", statOrderKey = "1341", statOrder = { 1341 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithAxesJewel1_"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Axe Attacks", statOrderKey = "1335", statOrder = { 1335 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithAxesJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Axe Attacks", statOrderKey = "1335", statOrder = { 1335 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithAxesJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Axe Attacks", statOrderKey = "1335", statOrder = { 1335 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithAxesJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Axe Attacks", statOrderKey = "1335", statOrder = { 1335 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithAxesJewel5"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Axe Attacks", statOrderKey = "1335", statOrder = { 1335 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithAxesJewel6_"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Axe Attacks", statOrderKey = "1335", statOrder = { 1335 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithMacesJewel1"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Mace or Sceptre Attacks", statOrderKey = "1339", statOrder = { 1339 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithMacesJewel2_"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Mace or Sceptre Attacks", statOrderKey = "1339", statOrder = { 1339 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithMacesJewel3"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Mace or Sceptre Attacks", statOrderKey = "1339", statOrder = { 1339 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithMacesJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Mace or Sceptre Attacks", statOrderKey = "1339", statOrder = { 1339 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Mace or Sceptre Attacks", statOrderKey = "1339", statOrder = { 1339 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithMacesJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Mace or Sceptre Attacks", statOrderKey = "1339", statOrder = { 1339 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedFireDamageWithStavesJewel1_"] = { type = "Prefix", affix = "Heated", "Adds (5-6) to (11-12) Fire Damage to Staff Attacks", statOrderKey = "1340", statOrder = { 1340 }, level = 1, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedFireDamageWithStavesJewel2"] = { type = "Prefix", affix = "Flaming", "Adds (7-8) to (13-15) Fire Damage to Staff Attacks", statOrderKey = "1340", statOrder = { 1340 }, level = 40, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedFireDamageWithStavesJewel3__"] = { type = "Prefix", affix = "Scorching", "Adds (9-11) to (16-19) Fire Damage to Staff Attacks", statOrderKey = "1340", statOrder = { 1340 }, level = 51, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedFireDamageWithStavesJewel4"] = { type = "Prefix", affix = "Incinerating", "Adds (12-13) to (20-22) Fire Damage to Staff Attacks", statOrderKey = "1340", statOrder = { 1340 }, level = 62, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedFireDamageWithStavesJewel5__"] = { type = "Prefix", affix = "Blasting", "Adds (14-15) to (23-26) Fire Damage to Staff Attacks", statOrderKey = "1340", statOrder = { 1340 }, level = 72, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedFireDamageWithStavesJewel6"] = { type = "Prefix", affix = "Cremating", "Adds (16-18) to (27-32) Fire Damage to Staff Attacks", statOrderKey = "1340", statOrder = { 1340 }, level = 84, group = "SpecificWeaponFireDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithWandsJewel1__"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Wand Attacks", statOrderKey = "1326", statOrder = { 1326 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithWandsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Wand Attacks", statOrderKey = "1326", statOrder = { 1326 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Wand Attacks", statOrderKey = "1326", statOrder = { 1326 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithWandsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Wand Attacks", statOrderKey = "1326", statOrder = { 1326 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithWandsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Wand Attacks", statOrderKey = "1326", statOrder = { 1326 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithWandsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Wand Attacks", statOrderKey = "1326", statOrder = { 1326 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "wand", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Dagger Attacks", statOrderKey = "1331", statOrder = { 1331 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Dagger Attacks", statOrderKey = "1331", statOrder = { 1331 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Dagger Attacks", statOrderKey = "1331", statOrder = { 1331 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Dagger Attacks", statOrderKey = "1331", statOrder = { 1331 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Dagger Attacks", statOrderKey = "1331", statOrder = { 1331 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Dagger Attacks", statOrderKey = "1331", statOrder = { 1331 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "dagger", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithClawsJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Claw Attacks", statOrderKey = "1330", statOrder = { 1330 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithClawsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Claw Attacks", statOrderKey = "1330", statOrder = { 1330 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithClawsJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Claw Attacks", statOrderKey = "1330", statOrder = { 1330 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithClawsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Claw Attacks", statOrderKey = "1330", statOrder = { 1330 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithClawsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Claw Attacks", statOrderKey = "1330", statOrder = { 1330 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithClawsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Claw Attacks", statOrderKey = "1330", statOrder = { 1330 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "claw", "specific_weapon", "one_handed_mod", }, }, + ["AbyssAddedColdDamageWithBowsJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithBowsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithBowsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithBowsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithBowsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Bow Attacks", statOrderKey = "1329", statOrder = { 1329 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "bow", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Sword Attacks", statOrderKey = "1334", statOrder = { 1334 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Sword Attacks", statOrderKey = "1334", statOrder = { 1334 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Sword Attacks", statOrderKey = "1334", statOrder = { 1334 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Sword Attacks", statOrderKey = "1334", statOrder = { 1334 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Sword Attacks", statOrderKey = "1334", statOrder = { 1334 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Sword Attacks", statOrderKey = "1334", statOrder = { 1334 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "sword", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithAxesJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Axe Attacks", statOrderKey = "1328", statOrder = { 1328 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithAxesJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Axe Attacks", statOrderKey = "1328", statOrder = { 1328 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithAxesJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Axe Attacks", statOrderKey = "1328", statOrder = { 1328 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithAxesJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Axe Attacks", statOrderKey = "1328", statOrder = { 1328 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithAxesJewel5"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Axe Attacks", statOrderKey = "1328", statOrder = { 1328 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithAxesJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Axe Attacks", statOrderKey = "1328", statOrder = { 1328 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "axe", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithMacesJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Mace or Sceptre Attacks", statOrderKey = "1332", statOrder = { 1332 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithMacesJewel2"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Mace or Sceptre Attacks", statOrderKey = "1332", statOrder = { 1332 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithMacesJewel3"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Mace or Sceptre Attacks", statOrderKey = "1332", statOrder = { 1332 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithMacesJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Mace or Sceptre Attacks", statOrderKey = "1332", statOrder = { 1332 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Mace or Sceptre Attacks", statOrderKey = "1332", statOrder = { 1332 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithMacesJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Mace or Sceptre Attacks", statOrderKey = "1332", statOrder = { 1332 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "mace", "specific_weapon", }, }, + ["AbyssAddedColdDamageWithStavesJewel1"] = { type = "Prefix", affix = "Frosted", "Adds (4-5) to (9-10) Cold Damage to Staff Attacks", statOrderKey = "1333", statOrder = { 1333 }, level = 1, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithStavesJewel2_"] = { type = "Prefix", affix = "Freezing", "Adds (6-7) to (11-13) Cold Damage to Staff Attacks", statOrderKey = "1333", statOrder = { 1333 }, level = 38, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Frozen", "Adds (8-9) to (14-16) Cold Damage to Staff Attacks", statOrderKey = "1333", statOrder = { 1333 }, level = 47, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithStavesJewel4"] = { type = "Prefix", affix = "Glaciated", "Adds (10-11) to (17-20) Cold Damage to Staff Attacks", statOrderKey = "1333", statOrder = { 1333 }, level = 59, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithStavesJewel5"] = { type = "Prefix", affix = "Polar", "Adds (12-13) to (21-24) Cold Damage to Staff Attacks", statOrderKey = "1333", statOrder = { 1333 }, level = 68, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedColdDamageWithStavesJewel6"] = { type = "Prefix", affix = "Entombing", "Adds (14-15) to (25-28) Cold Damage to Staff Attacks", statOrderKey = "1333", statOrder = { 1333 }, level = 83, group = "SpecificWeaponColdDamage", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "staff", "specific_weapon", "two_handed_mod", }, }, + ["AbyssAddedFireSuffixJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (4-5) to (10-12) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 35, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedFireSuffixJewel2"] = { type = "Suffix", affix = "of Cinders", "Adds (6-7) to (13-16) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 44, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedFireSuffixJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (8-9) to (17-20) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 52, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedFireSuffixJewel4_"] = { type = "Suffix", affix = "of Immolation", "Adds (10-12) to (21-24) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 64, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedFireSuffixJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (13-15) to (25-28) Fire Damage to Attacks", statOrderKey = "688", statOrder = { 688 }, level = 76, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 188, 188, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedColdSuffixJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (4-5) to (8-10) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 36, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedColdSuffixJewel2_"] = { type = "Suffix", affix = "of Ice", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 45, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedColdSuffixJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (8-9) to (14-17) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 53, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedColdSuffixJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (10-11) to (18-21) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 65, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedColdSuffixJewel5_"] = { type = "Suffix", affix = "of Glaciation", "Adds (12-13) to (22-26) Cold Damage to Attacks", statOrderKey = "695", statOrder = { 695 }, level = 77, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 188, 188, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedLightningSuffixJewel1"] = { type = "Suffix", affix = "of Static", "Adds 1 to (19-20) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 35, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedLightningSuffixJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-2) to (25-27) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 44, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedLightningSuffixJewel3"] = { type = "Suffix", affix = "of Voltage", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 52, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedLightningSuffixJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-4) to (36-39) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 64, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedLightningSuffixJewel5"] = { type = "Suffix", affix = "of Arcing", "Adds (1-4) to (43-48) Lightning Damage to Attacks", statOrderKey = "704", statOrder = { 704 }, level = 76, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 188, 188, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedPhysicalSuffixJewel1"] = { type = "Suffix", affix = "of Weight", "Adds 1 to 3 Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 34, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedPhysicalSuffixJewel2"] = { type = "Suffix", affix = "of Impact", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 45, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedPhysicalSuffixJewel3"] = { type = "Suffix", affix = "of Collision", "Adds (4-5) to (6-7) Physical Damage to Attacks", statOrderKey = "598", statOrder = { 598 }, level = 61, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedChaosSuffixJewel1"] = { type = "Suffix", affix = "of Malevolence", "Adds 1 to 3 Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 36, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedChaosSuffixJewel2"] = { type = "Suffix", affix = "of Malice", "Adds (2-3) to (4-5) Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 48, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAddedChaosSuffixJewel3"] = { type = "Suffix", affix = "of Sin", "Adds (4-5) to (6-7) Chaos Damage to Attacks", statOrderKey = "710", statOrder = { 710 }, level = 64, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatMinionLifeRegenerationJewel1"] = { type = "Prefix", affix = "Fuelling", "Minions Regenerate (2-4) Life per second", statOrderKey = "5932", statOrder = { 5932 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatMinionLifeRegenerationJewel2"] = { type = "Prefix", affix = "Lively", "Minions Regenerate (5-8) Life per second", statOrderKey = "5932", statOrder = { 5932 }, level = 30, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatMinionLifeRegenerationJewel3"] = { type = "Prefix", affix = "Exuberant", "Minions Regenerate (9-12) Life per second", statOrderKey = "5932", statOrder = { 5932 }, level = 60, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatEnergyShieldRegenerationJewel1"] = { type = "Prefix", affix = "Captivating", "Regenerate (2-4) Energy Shield per second", statOrderKey = "4381", statOrder = { 4381 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatEnergyShieldRegenerationJewel2"] = { type = "Prefix", affix = "Beautiful", "Regenerate (5-8) Energy Shield per second", statOrderKey = "4381", statOrder = { 4381 }, level = 30, group = "EnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatEnergyShieldRegenerationJewel3"] = { type = "Prefix", affix = "Breathtaking", "Regenerate (9-12) Energy Shield per second", statOrderKey = "4381", statOrder = { 4381 }, level = 60, group = "EnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatLifeRegenerationJewel1"] = { type = "Prefix", affix = "Youthful", "Regenerate (2-4) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 1, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatLifeRegenerationJewel2"] = { type = "Prefix", affix = "Spirited", "Regenerate (5-8) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 40, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatLifeRegenerationJewel3_"] = { type = "Prefix", affix = "Vivacious", "Regenerate (9-12) Life per second", statOrderKey = "882", statOrder = { 882 }, level = 80, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatManaShieldRegenerationJewel1"] = { type = "Prefix", affix = "Energising", "Regenerate (0.5-1) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 1, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatManaShieldRegenerationJewel2"] = { type = "Prefix", affix = "Inspirational", "Regenerate (1.1-2) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 40, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatManaShieldRegenerationJewel3"] = { type = "Prefix", affix = "Resonating", "Regenerate (2.1-3) Mana per second", statOrderKey = "887", statOrder = { 887 }, level = 75, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Blinding", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 32, group = "BlindOnHit", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 800, 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["AbyssAttacksBlindOnHitChanceJewel2___"] = { type = "Suffix", affix = "of Blinding", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrderKey = "3747", statOrder = { 3747 }, level = 65, group = "BlindOnHit", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 400, 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["AbyssAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Taunting", "(3-5)% chance to Taunt Enemies on Hit with Attacks", statOrderKey = "3748", statOrder = { 3748 }, level = 32, group = "TauntOnHit", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAttacksTauntOnHitChanceJewel2"] = { type = "Suffix", affix = "of Taunting", "(6-8)% chance to Taunt Enemies on Hit with Attacks", statOrderKey = "3748", statOrder = { 3748 }, level = 65, group = "TauntOnHit", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Hindering", "(3-5)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "6316", statOrder = { 6316 }, level = 32, group = "HinderOnHit", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Hindering", "(6-8)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "6316", statOrder = { 6316 }, level = 65, group = "HinderOnHit", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Stifling", "Minions have (3-4)% chance to Blind on Hit with Attacks", statOrderKey = "5914", statOrder = { 5914 }, level = 32, group = "BlindOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAttacksBlindOnHitChanceJewel2"] = { type = "Suffix", affix = "of Stifling", "Minions have (5-6)% chance to Blind on Hit with Attacks", statOrderKey = "5914", statOrder = { 5914 }, level = 65, group = "BlindOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Distraction", "Minions have (3-5)% chance to Taunt on Hit with Attacks", statOrderKey = "2615", statOrder = { 2615 }, level = 32, group = "TauntOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAttacksTauntOnHitChanceJewel2_"] = { type = "Suffix", affix = "of Distraction", "Minions have (6-8)% chance to Taunt on Hit with Attacks", statOrderKey = "2615", statOrder = { 2615 }, level = 65, group = "TauntOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Delaying", "Minions have (3-5)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "5943", statOrder = { 5943 }, level = 32, group = "HinderOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Delaying", "Minions have (6-8)% chance to Hinder Enemies on Hit with Spells, with 30% reduced Movement Speed", statOrderKey = "5943", statOrder = { 5943 }, level = 65, group = "HinderOnHit", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Banishing", "(30-40)% increased Damage against Abyssal Monsters", statOrderKey = "4221", statOrder = { 4221 }, level = 1, group = "DamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Marshalling", "Minions deal (30-40)% increased Damage against Abyssal Monsters", statOrderKey = "5925", statOrder = { 5925 }, level = 1, group = "MinionDamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssReducedPhysicalDamageTakenVsAbyssMonsterJewel1"] = { type = "Suffix", affix = "of Warding", "(4-6)% additional Physical Damage Reduction against Abyssal Monsters", statOrderKey = "3592", statOrder = { 3592 }, level = 1, group = "MinionDamageVSAbyssMonsters", weightKey = { "default", }, weightVal = { 1000 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAvoidIgniteJewel1_"] = { type = "Suffix", affix = "of Extinguishing", "(6-8)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 300 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAvoidIgniteJewel2"] = { type = "Suffix", affix = "of Extinguishing", "(9-10)% chance to Avoid being Ignited", statOrderKey = "1107", statOrder = { 1107 }, level = 30, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 150 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAvoidFreezeAndChillJewel1"] = { type = "Suffix", affix = "of Warming", "(6-8)% chance to Avoid being Chilled", "(6-8)% chance to Avoid being Frozen", statOrderKey = "1105,1106", statOrder = { 1105, 1106 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 300 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAvoidFreezeAndChillJewel2"] = { type = "Suffix", affix = "of Warming", "(9-10)% chance to Avoid being Chilled", "(9-10)% chance to Avoid being Frozen", statOrderKey = "1105,1106", statOrder = { 1105, 1106 }, level = 30, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 150 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAvoidShockJewel1"] = { type = "Suffix", affix = "of Insulating", "(6-8)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 1, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 300 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAvoidShockJewel2"] = { type = "Suffix", affix = "of Insulating", "(9-10)% chance to Avoid being Shocked", statOrderKey = "1109", statOrder = { 1109 }, level = 30, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 150 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAvoidPoisonJewel1__"] = { type = "Suffix", affix = "of Tolerance", "(6-8)% chance to Avoid being Poisoned", statOrderKey = "1110", statOrder = { 1110 }, level = 20, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 300 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAvoidPoisonJewel2__"] = { type = "Suffix", affix = "of Tolerance", "(9-10)% chance to Avoid being Poisoned", statOrderKey = "1110", statOrder = { 1110 }, level = 50, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 150 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAvoidBleedingJewel1"] = { type = "Suffix", affix = "of Mending", "(6-8)% chance to avoid Bleeding", statOrderKey = "3389", statOrder = { 3389 }, level = 20, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 300 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAvoidBleedingJewel2"] = { type = "Suffix", affix = "of Mending", "(9-10)% chance to avoid Bleeding", statOrderKey = "3389", statOrder = { 3389 }, level = 50, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 150 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAvoidStunJewel1"] = { type = "Suffix", affix = "of Unwavering", "(6-8)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 300 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAvoidStunJewel2"] = { type = "Suffix", affix = "of Unwavering", "(9-10)% chance to Avoid being Stunned", statOrderKey = "1112", statOrder = { 1112 }, level = 20, group = "AvoidStun", weightKey = { "default", }, weightVal = { 150 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAccuracyRatingJewel1"] = { type = "Suffix", affix = "of Calm", "+(10-30) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["AbyssAccuracyRatingJewel2"] = { type = "Suffix", affix = "of Steadiness", "+(31-60) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["AbyssAccuracyRatingJewel3"] = { type = "Suffix", affix = "of the Marksman", "+(61-120) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 52, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["AbyssAccuracyRatingJewel4"] = { type = "Suffix", affix = "of the Ranger", "+(121-240) to Accuracy Rating", statOrderKey = "754", statOrder = { 754 }, level = 78, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, tags = { "has_attack_mod", }, }, + ["AbyssMinionAttackAndCastSpeedJewel1"] = { type = "Suffix", affix = "of Training", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrderKey = "2085,2086", statOrder = { 2085, 2086 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionLifeRegenerationJewel1"] = { type = "Suffix", affix = "of Longevity", "Minions Regenerate (0.4-0.8)% of Life per second", statOrderKey = "2089", statOrder = { 2089 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionLifeLeechJewel1"] = { type = "Suffix", affix = "of Vampirism", "Minions Leech (0.3-0.5)% of Damage as Life", statOrderKey = "2088", statOrder = { 2088 }, level = 1, group = "MinionLifeLeech", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionMovementSpeedJewel1"] = { type = "Suffix", affix = "of Orchestration", "Minions have (6-10)% increased Movement Speed", statOrderKey = "1043", statOrder = { 1043 }, level = 1, group = "MinionMovementSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionLifeJewel1_"] = { type = "Suffix", affix = "of Fortitude", "Minions have (8-12)% increased maximum Life", statOrderKey = "1040", statOrder = { 1040 }, level = 1, group = "MinionLife", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatMinionAccuracy1"] = { type = "Suffix", affix = "of Suggestion", "Minions have +(95-125) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 1, group = "MinionAccuracyRating", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatMinionAccuracy2_"] = { type = "Suffix", affix = "of Instruction", "Minions have +(126-180) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 1, group = "MinionAccuracyRating", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatMinionAccuracy3"] = { type = "Suffix", affix = "of Command", "Minions have +(181-250) to Accuracy Rating", statOrderKey = "5904", statOrder = { 5904 }, level = 1, group = "MinionAccuracyRating", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionElementalResistancesJewel1"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(6-10)% to all Elemental Resistances", statOrderKey = "2090", statOrder = { 2090 }, level = 1, group = "MinionElementalResistances", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionChaosResistanceJewel1"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-11)% to Chaos Resistance", statOrderKey = "2091", statOrder = { 2091 }, level = 1, group = "MinionChaosResistance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatArmourJewel1"] = { type = "Prefix", affix = "Lacquered", "+(36-60) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 1, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatArmourJewel2"] = { type = "Prefix", affix = "Fortified", "+(61-100) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 40, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatArmourJewel3"] = { type = "Prefix", affix = "Carapaced", "+(101-180) to Armour", statOrderKey = "848", statOrder = { 848 }, level = 75, group = "IncreasedPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 300 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatEvasionJewel1"] = { type = "Prefix", affix = "Agile", "+(36-60) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 1, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 600 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatEvasionJewel2"] = { type = "Prefix", affix = "Fleet", "+(61-100) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 40, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 600 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatEvasionJewel3"] = { type = "Prefix", affix = "Vaporous", "+(101-180) to Evasion Rating", statOrderKey = "854", statOrder = { 854 }, level = 75, group = "IncreasedEvasionRating", weightKey = { "default", }, weightVal = { 300 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatEnergyShieldJewel1"] = { type = "Prefix", affix = "Shining", "+(21-25) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 1, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 600 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatEnergyShieldJewel2"] = { type = "Prefix", affix = "Seething", "+(26-30) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 40, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 600 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatEnergyShieldJewel3"] = { type = "Prefix", affix = "Incandescent", "+(31-35) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 75, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 600 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssFlatEnergyShieldJewel4"] = { type = "Prefix", affix = "Resplendent", "+(36-40) to maximum Energy Shield", statOrderKey = "867", statOrder = { 867 }, level = 83, group = "IncreasedEnergyShield", weightKey = { "default", }, weightVal = { 300 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellBlockChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Instinct", "+2% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrderKey = "3988", statOrder = { 3988 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssReducedPhysicalDamageTakenIfNotHitRecentlyJewel1"] = { type = "Suffix", affix = "of Confidence", "2% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", statOrderKey = "3588", statOrder = { 3588 }, level = 1, group = "ReducedPhysicalDamageTakenIfNotHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMovementSpeedIfNotDamagedRecentlyJewel1"] = { type = "Suffix", affix = "of Momentum", "(3-4)% increased Movement Speed if you haven't taken Damage Recently", statOrderKey = "5970", statOrder = { 5970 }, level = 1, group = "MovementSpeedIfNotDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssDamageIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Slayer", "(15-20)% increased Damage if you've Killed Recently", statOrderKey = "4205", statOrder = { 4205 }, level = 1, group = "DamageIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssCriticalStrikeMultiplierIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Assassin", "+(8-14)% to Critical Strike Multiplier if you've Killed Recently", statOrderKey = "4160", statOrder = { 4160 }, level = 25, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssIncreasedArmourIfNoEnemySlainRecentlyJewel1__"] = { type = "Suffix", affix = "of the Guardian", "(20-30)% increased Armour if you haven't Killed Recently", statOrderKey = "3650", statOrder = { 3650 }, level = 1, group = "IncreasedArmourIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAccuracyIfNoEnemySlainRecentlyJewel1_"] = { type = "Suffix", affix = "of the Deadeye", "(20-30)% increased Accuracy Rating if you haven't Killed Recently", statOrderKey = "3557", statOrder = { 3557 }, level = 1, group = "AccuracyIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 0, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssDamagePenetratesElementalResistancesIfNoEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Inquisitor", "Damage Penetrates 2% Elemental Resistance if you haven't Killed Recently", statOrderKey = "4197", statOrder = { 4197 }, level = 1, group = "DamagePenetratesElementalResistancesIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssCastSpeedIfMinionKilledRecentlyJewel1"] = { type = "Suffix", affix = "of Retaliation", "(7-10)% increased Cast Speed if a Minion has been Killed Recently", statOrderKey = "3974", statOrder = { 3974 }, level = 30, group = "CastSpeedIfMinionKilledRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionDamageIfMinionSkillUsedRecentlyJewel1"] = { type = "Suffix", affix = "of Authority", "Minions deal (15-20)% increased Damage if you've used a Minion Skill Recently", statOrderKey = "1234", statOrder = { 1234 }, level = 1, group = "MinionDamageIfMinionSkillUsedRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssEvasionRatingWhileMovingJewel1"] = { type = "Suffix", affix = "of Maneuvering", "(25-35)% increased Evasion Rating while moving", statOrderKey = "4398", statOrder = { 4398 }, level = 1, group = "EvasionRatingWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssManaRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Praxis", "(20-25)% increased Mana Regeneration Rate while moving", statOrderKey = "5310", statOrder = { 5310 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssLifeRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Vivaciousness", "Regenerate (0.5-1)% of Life per second while moving", statOrderKey = "4712", statOrder = { 4712 }, level = 1, group = "LifeRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["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", statOrderKey = "6046", statOrder = { 6046 }, level = 40, group = "PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 600, 300, 300, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssAttackSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Opportunity", "(6-8)% increased Attack Speed if you've dealt a Critical Strike Recently", statOrderKey = "3736", statOrder = { 3736 }, level = 25, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 1000, 500, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssCastSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Abuse", "(5-7)% increased Cast Speed if you've dealt a Critical Strike Recently", statOrderKey = "3973", statOrder = { 3973 }, level = 25, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssCriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Preparation", "(20-30)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrderKey = "4139", statOrder = { 4139 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 1000, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMinionAttackAndCastSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of Rallying", "Minions have (6-8)% increased Attack and Cast Speed if you or your Minions have Killed Recently", statOrderKey = "5909", statOrder = { 5909 }, level = 1, group = "MinionAttackAndCastSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssSpellDodgeAndDodgeChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Readiness", "2% chance to Dodge Attack and Spell Hits if you've", "been Hit Recently", statOrderKey = "4284,4284.1", statOrder = { 4284, 4284.1 }, level = 1, group = "SpellDodgeAndDodgeChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssMovementSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Raider", "(2-4)% increased Movement Speed if you've Killed Recently", statOrderKey = "3436", statOrder = { 3436 }, level = 1, group = "MovementSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 1000, 500, 0, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssChanceToBlockIfDamagedRecentlyJewel1_"] = { type = "Suffix", affix = "of Guarding", "+2% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrderKey = "2397", statOrder = { 2397 }, level = 1, group = "ChanceToBlockIfDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 1000, 500, 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssChanceToGainOnslaughtOnKillJewel1"] = { type = "Suffix", affix = "of Onslaught", "(3-5)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2176", statOrder = { 2176 }, level = 10, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssChanceToGainOnslaughtOnKillJewel2"] = { type = "Suffix", affix = "of Onslaught", "(6-8)% chance to gain Onslaught for 4 seconds on Kill", statOrderKey = "2176", statOrder = { 2176 }, level = 50, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssChancetoGainPhasingOnKillJewel1"] = { type = "Suffix", affix = "of Phasing", "(3-5)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 10, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 1000, 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssChancetoGainPhasingOnKillJewel2"] = { type = "Suffix", affix = "of Phasing", "(6-8)% chance to gain Phasing for 4 seconds on Kill", statOrderKey = "2646", statOrder = { 2646 }, level = 50, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssChanceToGainUnholyMightOnKillAbyssJewel1"] = { type = "Suffix", affix = "of Unholy Might", "(2-3)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrderKey = "2264", statOrder = { 2264 }, level = 40, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AbyssChanceToGainUnholyMightOnKillAbyssJewel2_"] = { type = "Suffix", affix = "of Unholy Might", "(4-5)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrderKey = "2264", statOrder = { 2264 }, level = 80, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, } \ No newline at end of file diff --git a/Data/3_0/ModJewelCluster.lua b/Data/3_0/ModJewelCluster.lua index 3f7139d5e..70fafb86f 100644 --- a/Data/3_0/ModJewelCluster.lua +++ b/Data/3_0/ModJewelCluster.lua @@ -2,501 +2,501 @@ -- Item data (c) Grinding Gear Games return { - ["JewelExpansionJewelNodesLarge1"] = { type = "Suffix", affix = "of Potential", "1 Added Passive Skill is a Jewel Socket", statOrderKey = "5141", statOrder = { 5141 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { "expansion_jewel_large", "default", }, weightVal = { 5000, 0, }, }, - ["JewelExpansionJewelNodesLarge2___"] = { type = "Suffix", affix = "of Possibility", "2 Added Passive Skills are Jewel Sockets", statOrderKey = "5141", statOrder = { 5141 }, level = 75, group = "JewelExpansionJewelNodes", weightKey = { "expansion_jewel_large", "default", }, weightVal = { 2500, 0, }, }, - ["JewelExpansionJewelNodesMedium"] = { type = "Suffix", affix = "of Potential", "1 Added Passive Skill is a Jewel Socket", statOrderKey = "5141", statOrder = { 5141 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { "expansion_jewel_medium", "default", }, weightVal = { 7500, 0, }, }, - ["AfflictionNotableProdigiousDefense__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prodigious Defence", statOrderKey = "4973", statOrder = { 4973 }, level = 1, group = "AfflictionNotableProdigiousDefense", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 2162, 1159, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAdvanceGuard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Advance Guard", statOrderKey = "4792", statOrder = { 4792 }, level = 1, group = "AfflictionNotableAdvanceGuard", weightKey = { "no_attack_mods", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 0, 1081, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableGladiatorialCombat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiatorial Combat", statOrderKey = "4904", statOrder = { 4904 }, level = 1, group = "AfflictionNotableGladiatorialCombat", weightKey = { "no_attack_mods", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 0, 541, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableStrikeLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Strike Leader", statOrderKey = "5028", statOrder = { 5028 }, level = 1, group = "AfflictionNotableStrikeLeader", weightKey = { "no_attack_mods", "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 0, 2162, 1159, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePowerfulWard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Ward", statOrderKey = "4963", statOrder = { 4963 }, level = 1, group = "AfflictionNotablePowerfulWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 290, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableEnduringWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Ward", statOrderKey = "4875", statOrder = { 4875 }, level = 1, group = "AfflictionNotableEnduringWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 290, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableGladiatorsFortitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiator's Fortitude", statOrderKey = "4905", statOrder = { 4905 }, level = 1, group = "AfflictionNotableGladiatorsFortitude", weightKey = { "no_attack_mods", "affliction_attack_damage_while_holding_a_shield", "affliction_maximum_life", "default", }, weightVal = { 0, 541, 278, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePreciseRetaliation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Retaliation", statOrderKey = "4967", statOrder = { 4967 }, level = 1, group = "AfflictionNotablePreciseRetaliation", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_critical_chance", "default", }, weightVal = { 1081, 741, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableVeteranDefender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Veteran Defender", statOrderKey = "5049", statOrder = { 5049 }, level = 1, group = "AfflictionNotableVeteranDefender", weightKey = { "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 2162, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableIronBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Iron Breaker", statOrderKey = "4927", statOrder = { 4927 }, level = 1, group = "AfflictionNotableIronBreaker", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "default", }, weightVal = { 0, 2667, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDeepCuts"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Cuts", statOrderKey = "4858", statOrder = { 4858 }, level = 1, group = "AfflictionNotableDeepCuts", weightKey = { "no_attack_mods", "no_physical_damage_mods", "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_", "default", }, weightVal = { 0, 0, 208, 169, 169, 182, 156, 161, 122, 125, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMastertheFundamentals_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master the Fundamentals", statOrderKey = "4942", statOrder = { 4942 }, level = 1, group = "AfflictionNotableMastertheFundamentals", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "default", }, weightVal = { 0, 1333, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableForceMultiplier"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Force Multiplier", statOrderKey = "4900", statOrder = { 4900 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "default", }, weightVal = { 0, 1333, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableFuriousAssault"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Furious Assault", statOrderKey = "4902", statOrder = { 4902 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "default", }, weightVal = { 0, 2667, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableViciousSkewering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Skewering", statOrderKey = "5052", statOrder = { 5052 }, level = 1, group = "AfflictionNotableViciousSkewering", weightKey = { "no_attack_mods", "no_physical_damage_mods", "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_", "default", }, weightVal = { 0, 0, 417, 339, 339, 364, 313, 323, 244, 250, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableGrimOath"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Grim Oath", statOrderKey = "4908", statOrder = { 4908 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "affliction_chaos_damage", "default", }, weightVal = { 0, 667, 571, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBattleHardened_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battle-Hardened", statOrderKey = "4812", statOrder = { 4812 }, level = 1, group = "AfflictionNotableBattleHardened", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "affliction_armour", "affliction_evasion", "default", }, weightVal = { 0, 1333, 1053, 1053, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableReplenishingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Replenishing Presence", statOrderKey = "4991", statOrder = { 4991 }, level = 1, group = "AfflictionNotableReplenishingPresence", weightKey = { "affliction_aura_effect", "default", }, weightVal = { 816, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMasterofCommand__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Command", statOrderKey = "4939", statOrder = { 4939 }, level = 1, group = "AfflictionNotableMasterofCommand", weightKey = { "affliction_aura_effect", "default", }, weightVal = { 408, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableFirstAmongEquals__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is First Among Equals", statOrderKey = "4896", statOrder = { 4896 }, level = 1, group = "AfflictionNotableFirstAmongEquals", weightKey = { "affliction_aura_effect", "default", }, weightVal = { 1633, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePurposefulHarbinger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Purposeful Harbinger", statOrderKey = "4980", statOrder = { 4980 }, level = 1, group = "AfflictionNotablePurposefulHarbinger", weightKey = { "affliction_aura_effect", "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 204, 357, 476, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePreciseCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Commander", statOrderKey = "4965", statOrder = { 4965 }, level = 1, group = "AfflictionNotablePreciseCommander", weightKey = { "affliction_aura_effect", "affliction_critical_chance", "default", }, weightVal = { 408, 370, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePureCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Commander", statOrderKey = "4977", statOrder = { 4977 }, level = 1, group = "AfflictionNotablePureCommander", weightKey = { "affliction_aura_effect", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 1633, 1600, 1600, 1538, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableStalwartCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stalwart Commander", statOrderKey = "5021", statOrder = { 5021 }, level = 1, group = "AfflictionNotableStalwartCommander", weightKey = { "affliction_aura_effect", "affliction_armour", "affliction_evasion", "affliction_maximum_energy_shield", "default", }, weightVal = { 1633, 2105, 2105, 1569, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableVengefulCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vengeful Commander", statOrderKey = "5048", statOrder = { 5048 }, level = 1, group = "AfflictionNotableVengefulCommander", weightKey = { "no_elemental_damage_mods", "affliction_aura_effect", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 0, 1633, 2353, 1212, 1379, 1739, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSkullbreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skullbreaker", statOrderKey = "5012", statOrder = { 5012 }, level = 1, group = "AfflictionNotableSkullbreaker", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 370, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePressurePoints__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pressure Points", statOrderKey = "4968", statOrder = { 4968 }, level = 1, group = "AfflictionNotablePressurePoints", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 741, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableOverwhelmingMalice"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overwhelming Malice", statOrderKey = "4958", statOrder = { 4958 }, level = 1, group = "AfflictionNotableOverwhelmingMalice", weightKey = { "no_physical_damage_mods", "affliction_critical_chance", "affliction_chaos_damage", "default", }, weightVal = { 0, 370, 571, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMagnifier"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Magnifier", statOrderKey = "4935", statOrder = { 4935 }, level = 1, group = "AfflictionNotableMagnifier", weightKey = { "affliction_critical_chance", "affliction_area_damage", "default", }, weightVal = { 1481, 2857, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSavageResponse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savage Response", statOrderKey = "5000", statOrder = { 5000 }, level = 1, group = "AfflictionNotableSavageResponse", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 741, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableEyeoftheStorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye of the Storm", statOrderKey = "4885", statOrder = { 4885 }, level = 1, group = "AfflictionNotableEyeoftheStorm", weightKey = { "no_elemental_damage_mods", "affliction_critical_chance", "affliction_fire_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 0, 741, 533, 1176, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBasicsofPain"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Basics of Pain", statOrderKey = "4811", statOrder = { 4811 }, level = 1, group = "AfflictionNotableBasicsofPain", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 1481, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableQuickGetaway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick Getaway", statOrderKey = "4982", statOrder = { 4982 }, level = 1, group = "AfflictionNotableQuickGetaway", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 1481, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAssertDominance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Assert Dominance", statOrderKey = "4809", statOrder = { 4809 }, level = 1, group = "AfflictionNotableAssertDominance", weightKey = { "affliction_area_damage", "default", }, weightVal = { 714, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableVastPower"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vast Power", statOrderKey = "5047", statOrder = { 5047 }, level = 1, group = "AfflictionNotableVastPower", weightKey = { "affliction_area_damage", "default", }, weightVal = { 1429, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePowerfulAssault_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Assault", statOrderKey = "4962", statOrder = { 4962 }, level = 1, group = "AfflictionNotablePowerfulAssault", weightKey = { "affliction_area_damage", "default", }, weightVal = { 1429, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableIntensity"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Intensity", statOrderKey = "4925", statOrder = { 4925 }, level = 1, group = "AfflictionNotableIntensity", weightKey = { "affliction_area_damage", "default", }, weightVal = { 714, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableTitanicSwings_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Titanic Swings", statOrderKey = "5039", statOrder = { 5039 }, level = 1, group = "AfflictionNotableTitanicSwings", weightKey = { "affliction_area_damage", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 1429, 488, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableToweringThreat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Towering Threat", statOrderKey = "5041", statOrder = { 5041 }, level = 1, group = "AfflictionNotableToweringThreat", weightKey = { "affliction_area_damage", "affliction_maximum_life", "default", }, weightVal = { 714, 278, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAncestralEcho"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Echo", statOrderKey = "4797", statOrder = { 4797 }, level = 1, group = "AfflictionNotableAncestralEcho", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 2353, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAncestralReach"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Reach", statOrderKey = "4802", statOrder = { 4802 }, level = 1, group = "AfflictionNotableAncestralReach", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 2353, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAncestralMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Might", statOrderKey = "4800", statOrder = { 4800 }, level = 1, group = "AfflictionNotableAncestralMight", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1176, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAncestralPreservation__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Preservation", statOrderKey = "4801", statOrder = { 4801 }, level = 1, group = "AfflictionNotableAncestralPreservation", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 588, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSnaringSpirits"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snaring Spirits", statOrderKey = "5016", statOrder = { 5016 }, level = 1, group = "AfflictionNotableSnaringSpirits", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1176, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSleeplessSentries"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sleepless Sentries", statOrderKey = "5013", statOrder = { 5013 }, level = 1, group = "AfflictionNotableSleeplessSentries", weightKey = { "no_attack_mods", "affliction_totem_damage", "default", }, weightVal = { 0, 588, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAncestralGuidance_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Guidance", statOrderKey = "4798", statOrder = { 4798 }, level = 1, group = "AfflictionNotableAncestralGuidance", weightKey = { "no_attack_mods", "affliction_totem_damage", "default", }, weightVal = { 0, 1176, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAncestralInspiration__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Inspiration", statOrderKey = "4799", statOrder = { 4799 }, level = 1, group = "AfflictionNotableAncestralInspiration", weightKey = { "no_caster_mods", "affliction_totem_damage", "affliction_spell_damage", "default", }, weightVal = { 0, 588, 571, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableVitalFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vital Focus", statOrderKey = "5055", statOrder = { 5055 }, level = 1, group = "AfflictionNotableVitalFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 2759, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableRapidInfusion_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rapid Infusion", statOrderKey = "4983", statOrder = { 4983 }, level = 1, group = "AfflictionNotableRapidInfusion", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 690, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableUnwaveringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwavering Focus", statOrderKey = "5045", statOrder = { 5045 }, level = 1, group = "AfflictionNotableUnwaveringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 1379, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableEnduringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Focus", statOrderKey = "4874", statOrder = { 4874 }, level = 1, group = "AfflictionNotableEnduringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 345, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePreciseFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Focus", statOrderKey = "4966", statOrder = { 4966 }, level = 1, group = "AfflictionNotablePreciseFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 1379, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableStoicFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stoic Focus", statOrderKey = "5023", statOrder = { 5023 }, level = 1, group = "AfflictionNotableStoicFocus", weightKey = { "affliction_channelling_skill_damage", "affliction_chance_to_block", "default", }, weightVal = { 2759, 1159, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableHexBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hex Breaker", statOrderKey = "4915", statOrder = { 4915 }, level = 1, group = "AfflictionNotableHexBreaker", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 690, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableArcaneAdept_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Adept", statOrderKey = "4805", statOrder = { 4805 }, level = 1, group = "AfflictionNotableArcaneAdept", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 571, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDistilledPerfection_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Distilled Perfection", statOrderKey = "4864", statOrder = { 4864 }, level = 1, group = "AfflictionNotableDistilledPerfection", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1538, 2353, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSpikedConcoction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spiked Concoction", statOrderKey = "5019", statOrder = { 5019 }, level = 1, group = "AfflictionNotableSpikedConcoction", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 769, 1176, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableFasting"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fasting", statOrderKey = "4889", statOrder = { 4889 }, level = 1, group = "AfflictionNotableFasting", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 769, 1176, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMendersWellspring__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mender's Wellspring", statOrderKey = "4943", statOrder = { 4943 }, level = 1, group = "AfflictionNotableMendersWellspring", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 385, 588, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSpecialReserve"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Special Reserve", statOrderKey = "5018", statOrder = { 5018 }, level = 1, group = "AfflictionNotableSpecialReserve", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1538, 2353, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableNumbingElixir"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Numbing Elixir", statOrderKey = "4952", statOrder = { 4952 }, level = 1, group = "AfflictionNotableNumbingElixir", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1538, 2353, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMobMentality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mob Mentality", statOrderKey = "4946", statOrder = { 4946 }, level = 1, group = "AfflictionNotableMobMentality", weightKey = { "no_attack_mods", "affliction_warcry_buff_effect", "default", }, weightVal = { 0, 345, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableCryWolf__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cry Wolf", statOrderKey = "4849", statOrder = { 4849 }, level = 1, group = "AfflictionNotableCryWolf", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 690, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableHauntingShout"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haunting Shout", statOrderKey = "4911", statOrder = { 4911 }, level = 1, group = "AfflictionNotableHauntingShout", weightKey = { "no_attack_mods", "no_caster_mods", "affliction_warcry_buff_effect", "default", }, weightVal = { 0, 0, 1379, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableLeadByExample__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lead By Example", statOrderKey = "4929", statOrder = { 4929 }, level = 1, group = "AfflictionNotableLeadByExample", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 2759, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableProvocateur"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Provocateur", statOrderKey = "4974", statOrder = { 4974 }, level = 1, group = "AfflictionNotableProvocateur", weightKey = { "affliction_warcry_buff_effect", "affliction_critical_chance", "default", }, weightVal = { 1379, 741, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableWarningCall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Warning Call", statOrderKey = "5059", statOrder = { 5059 }, level = 1, group = "AfflictionNotableWarningCall", weightKey = { "no_attack_mods", "affliction_warcry_buff_effect", "default", }, weightVal = { 0, 690, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableRattlingBellow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rattling Bellow", statOrderKey = "4984", statOrder = { 4984 }, level = 1, group = "AfflictionNotableRattlingBellow", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 2759, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBloodscent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bloodscent", statOrderKey = "4819", statOrder = { 4819 }, level = 1, group = "AfflictionNotableBloodscent", weightKey = { "no_attack_mods", "affliction_axe_and_sword_damage", "default", }, weightVal = { 0, 169, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableRunThrough"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Run Through", statOrderKey = "4996", statOrder = { 4996 }, level = 1, group = "AfflictionNotableRunThrough", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_axe_and_sword_damage", "default", }, weightVal = { 0, 0, 339, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableWoundAggravation____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wound Aggravation", statOrderKey = "5070", statOrder = { 5070 }, level = 1, group = "AfflictionNotableWoundAggravation", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_axe_and_sword_damage", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 0, 0, 1356, 1111, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableOverlord"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overlord", statOrderKey = "4956", statOrder = { 4956 }, level = 1, group = "AfflictionNotableOverlord", weightKey = { "no_attack_mods", "affliction_mace_and_staff_damage", "default", }, weightVal = { 0, 169, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableExpansiveMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expansive Might", statOrderKey = "4880", statOrder = { 4880 }, level = 1, group = "AfflictionNotableExpansiveMight", weightKey = { "no_attack_mods", "affliction_mace_and_staff_damage", "affliction_area_damage", "default", }, weightVal = { 0, 339, 714, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableWeightAdvantage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Weight Advantage", statOrderKey = "5061", statOrder = { 5061 }, level = 1, group = "AfflictionNotableWeightAdvantage", weightKey = { "no_attack_mods", "affliction_mace_and_staff_damage", "default", }, weightVal = { 0, 1356, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableWindup_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wind-up", statOrderKey = "5066", statOrder = { 5066 }, level = 1, group = "AfflictionNotableWindup", weightKey = { "no_attack_mods", "affliction_dagger_and_claw_damage", "default", }, weightVal = { 0, 364, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableFanofBlades_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan of Blades", statOrderKey = "4887", statOrder = { 4887 }, level = 1, group = "AfflictionNotableFanofBlades", weightKey = { "no_attack_mods", "affliction_dagger_and_claw_damage", "default", }, weightVal = { 0, 182, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDiseaseVector"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disease Vector", statOrderKey = "4861", statOrder = { 4861 }, level = 1, group = "AfflictionNotableDiseaseVector", weightKey = { "no_attack_mods", "affliction_dagger_and_claw_damage", "default", }, weightVal = { 0, 727, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableArcingShot__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcing Shot", statOrderKey = "4808", statOrder = { 4808 }, level = 1, group = "AfflictionNotableArcingShot", weightKey = { "no_attack_mods", "affliction_bow_damage", "default", }, weightVal = { 0, 625, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableTemperedArrowheads"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Tempered Arrowheads", statOrderKey = "5036", statOrder = { 5036 }, level = 1, group = "AfflictionNotableTemperedArrowheads", weightKey = { "no_attack_mods", "affliction_bow_damage", "default", }, weightVal = { 0, 625, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBroadside_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Broadside", statOrderKey = "4825", statOrder = { 4825 }, level = 1, group = "AfflictionNotableBroadside", weightKey = { "no_attack_mods", "affliction_bow_damage", "default", }, weightVal = { 0, 1250, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableExplosiveForce"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Explosive Force", statOrderKey = "4883", statOrder = { 4883 }, level = 1, group = "AfflictionNotableExplosiveForce", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_wand_damage", "default", }, weightVal = { 0, 0, 323, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableOpportunisticFusilade_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Opportunistic Fusilade", statOrderKey = "4955", statOrder = { 4955 }, level = 1, group = "AfflictionNotableOpportunisticFusilade", weightKey = { "no_attack_mods", "affliction_wand_damage", "default", }, weightVal = { 0, 1290, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableStormsHand"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm's Hand", statOrderKey = "5026", statOrder = { 5026 }, level = 1, group = "AfflictionNotableStormsHand", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_wand_damage", "default", }, weightVal = { 0, 0, 645, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBattlefieldDominator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battlefield Dominator", statOrderKey = "4813", statOrder = { 4813 }, level = 1, group = "AfflictionNotableBattlefieldDominator", weightKey = { "no_attack_mods", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 0, 976, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMartialMastery"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Mastery", statOrderKey = "4936", statOrder = { 4936 }, level = 1, group = "AfflictionNotableMartialMastery", weightKey = { "no_attack_mods", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 0, 488, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSurefootedStriker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surefooted Striker", statOrderKey = "5033", statOrder = { 5033 }, level = 1, group = "AfflictionNotableSurefootedStriker", weightKey = { "no_attack_mods", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 0, 488, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableGracefulExecution_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Graceful Execution", statOrderKey = "4906", statOrder = { 4906 }, level = 1, group = "AfflictionNotableGracefulExecution", weightKey = { "no_attack_mods", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 0, 976, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBrutalInfamy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brutal Infamy", statOrderKey = "4827", statOrder = { 4827 }, level = 1, group = "AfflictionNotableBrutalInfamy", weightKey = { "no_attack_mods", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 0, 488, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableFearsomeWarrior"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fearsome Warrior", statOrderKey = "4890", statOrder = { 4890 }, level = 1, group = "AfflictionNotableFearsomeWarrior", weightKey = { "no_attack_mods", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 0, 244, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableCombatRhythm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Combat Rhythm", statOrderKey = "4841", statOrder = { 4841 }, level = 1, group = "AfflictionNotableCombatRhythm", weightKey = { "no_attack_mods", "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableHitandRun"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hit and Run", statOrderKey = "4917", statOrder = { 4917 }, level = 1, group = "AfflictionNotableHitandRun", weightKey = { "no_attack_mods", "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 0, 1000, 2353, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableInsatiableKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insatiable Killer", statOrderKey = "4922", statOrder = { 4922 }, level = 1, group = "AfflictionNotableInsatiableKiller", weightKey = { "no_attack_mods", "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMageBane__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Bane", statOrderKey = "4933", statOrder = { 4933 }, level = 1, group = "AfflictionNotableMageBane", weightKey = { "no_attack_mods", "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_block", "default", }, weightVal = { 0, 250, 290, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMartialMomentum"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Momentum", statOrderKey = "4937", statOrder = { 4937 }, level = 1, group = "AfflictionNotableMartialMomentum", weightKey = { "no_attack_mods", "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 0, 500, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDeadlyRepartee"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deadly Repartee", statOrderKey = "4856", statOrder = { 4856 }, level = 1, group = "AfflictionNotableDeadlyRepartee", weightKey = { "no_attack_mods", "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 0, 1000, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableQuickandDeadly_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick and Deadly", statOrderKey = "4981", statOrder = { 4981 }, level = 1, group = "AfflictionNotableQuickandDeadly", weightKey = { "no_attack_mods", "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 0, 250, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSmitetheWeak"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Smite the Weak", statOrderKey = "5014", statOrder = { 5014 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_attack_mods", "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_", "default", }, weightVal = { 0, 1667, 1356, 1356, 1455, 1250, 1290, 976, 1000, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableHeavyHitter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Heavy Hitter", statOrderKey = "4913", statOrder = { 4913 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_attack_mods", "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_", "default", }, weightVal = { 0, 833, 678, 678, 727, 625, 645, 488, 500, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMartialProwess"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Martial Prowess", statOrderKey = "4938", statOrder = { 4938 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_attack_mods", "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_", "default", }, weightVal = { 0, 1667, 1356, 1356, 1455, 1250, 1290, 976, 1000, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableCalamitous"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Calamitous", statOrderKey = "4830", statOrder = { 4830 }, level = 1, group = "AfflictionNotableCalamitous", weightKey = { "no_attack_mods", "no_elemental_damage_mods", "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_", "default", }, weightVal = { 0, 0, 833, 678, 678, 727, 625, 645, 488, 500, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDevastator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Devastator", statOrderKey = "4859", statOrder = { 4859 }, level = 1, group = "AfflictionNotableDevastator", weightKey = { "no_attack_mods", "no_physical_damage_mods", "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_", "default", }, weightVal = { 0, 0, 208, 169, 169, 182, 156, 161, 122, 125, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableFueltheFight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fuel the Fight", statOrderKey = "4901", statOrder = { 4901 }, level = 1, group = "AfflictionNotableFueltheFight", weightKey = { "no_attack_mods", "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_", "default", }, weightVal = { 0, 1667, 1356, 1356, 1455, 1250, 1290, 976, 1000, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDrivetheDestruction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Drive the Destruction", statOrderKey = "4868", statOrder = { 4868 }, level = 1, group = "AfflictionNotableDrivetheDestruction", weightKey = { "no_attack_mods", "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_", "default", }, weightVal = { 0, 1667, 1356, 1356, 1455, 1250, 1290, 976, 1000, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableFeedtheFury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feed the Fury", statOrderKey = "4893", statOrder = { 4893 }, level = 1, group = "AfflictionNotableFeedtheFury", weightKey = { "no_attack_mods", "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_", "default", }, weightVal = { 0, 833, 678, 678, 727, 625, 645, 488, 500, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSealMender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seal Mender", statOrderKey = "5003", statOrder = { 5003 }, level = 1, group = "AfflictionNotableSealMender", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 286, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableConjuredWall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conjured Wall", statOrderKey = "4844", statOrder = { 4844 }, level = 1, group = "AfflictionNotableConjuredWall", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 1143, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableArcaneHeroism_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Heroism", statOrderKey = "4806", statOrder = { 4806 }, level = 1, group = "AfflictionNotableArcaneHeroism", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 571, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePracticedCaster"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Practiced Caster", statOrderKey = "4964", statOrder = { 4964 }, level = 1, group = "AfflictionNotablePracticedCaster", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 2286, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBurdenProjection"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burden Projection", statOrderKey = "4828", statOrder = { 4828 }, level = 1, group = "AfflictionNotableBurdenProjection", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 1143, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableThaumophage"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Thaumophage", statOrderKey = "5037", statOrder = { 5037 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 1143, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableEssenceRush"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Essence Rush", statOrderKey = "4877", statOrder = { 4877 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 1143, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSapPsyche"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Sap Psyche", statOrderKey = "4999", statOrder = { 4999 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 571, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSadist_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sadist", statOrderKey = "4997", statOrder = { 4997 }, level = 1, group = "AfflictionNotableSadist", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 0, 588, 303, 345, 435, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableCorrosiveElements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Corrosive Elements", statOrderKey = "4847", statOrder = { 4847 }, level = 1, group = "AfflictionNotableCorrosiveElements", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 0, 294, 152, 172, 217, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDoryanisLesson_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Doryani's Lesson", statOrderKey = "4865", statOrder = { 4865 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 0, 588, 303, 345, 435, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDisorientingDisplay____"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Disorienting Display", statOrderKey = "4862", statOrder = { 4862 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 0, 1176, 606, 690, 870, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePrismaticHeart__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Heart", statOrderKey = "4972", statOrder = { 4972 }, level = 1, group = "AfflictionNotablePrismaticHeart", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 0, 2353, 1212, 1379, 1739, 1600, 1600, 1538, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableWidespreadDestruction"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Widespread Destruction", statOrderKey = "5064", statOrder = { 5064 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 0, 2353, 1212, 1379, 1739, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMasterofFire"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fire", statOrderKey = "4941", statOrder = { 4941 }, level = 1, group = "AfflictionNotableMasterofFire", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 0, 217, 133, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSmokingRemains"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Smoking Remains", statOrderKey = "5015", statOrder = { 5015 }, level = 1, group = "AfflictionNotableSmokingRemains", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 0, 870, 533, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableCremator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cremator", statOrderKey = "4848", statOrder = { 4848 }, level = 1, group = "AfflictionNotableCremator", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 0, 870, 533, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSnowstorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snowstorm", statOrderKey = "5017", statOrder = { 5017 }, level = 1, group = "AfflictionNotableSnowstorm", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 0, 606, 690, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableStormDrinker___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm Drinker", statOrderKey = "5024", statOrder = { 5024 }, level = 1, group = "AfflictionNotableStormDrinker", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "default", }, weightVal = { 0, 1212, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableParalysis"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Paralysis", statOrderKey = "4959", statOrder = { 4959 }, level = 1, group = "AfflictionNotableParalysis", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "default", }, weightVal = { 0, 606, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSupercharge"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Supercharge", statOrderKey = "5032", statOrder = { 5032 }, level = 1, group = "AfflictionNotableSupercharge", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "default", }, weightVal = { 0, 303, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBlanketedSnow_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blanketed Snow", statOrderKey = "4815", statOrder = { 4815 }, level = 1, group = "AfflictionNotableBlanketedSnow", weightKey = { "no_elemental_damage_mods", "affliction_cold_damage", "default", }, weightVal = { 0, 345, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableColdtotheCore"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold to the Core", statOrderKey = "4840", statOrder = { 4840 }, level = 1, group = "AfflictionNotableColdtotheCore", weightKey = { "no_elemental_damage_mods", "affliction_cold_damage", "default", }, weightVal = { 0, 345, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableColdBloodedKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold-Blooded Killer", statOrderKey = "4838", statOrder = { 4838 }, level = 1, group = "AfflictionNotableColdBloodedKiller", weightKey = { "no_elemental_damage_mods", "affliction_cold_damage", "affliction_maximum_life", "default", }, weightVal = { 0, 690, 556, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableTouchofCruelty_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Touch of Cruelty", statOrderKey = "5040", statOrder = { 5040 }, level = 1, group = "AfflictionNotableTouchofCruelty", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 2286, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableUnwaveringlyEvil"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwaveringly Evil", statOrderKey = "5046", statOrder = { 5046 }, level = 1, group = "AfflictionNotableUnwaveringlyEvil", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 2286, 1111, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableUnspeakableGifts"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unspeakable Gifts", statOrderKey = "5043", statOrder = { 5043 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 286, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDarkIdeation"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Ideation", statOrderKey = "4853", statOrder = { 4853 }, level = 1, group = "AfflictionNotableDarkIdeation", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 571, 278, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableUnholyGrace_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unholy Grace", statOrderKey = "5042", statOrder = { 5042 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 2286, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableWickedPall_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wicked Pall", statOrderKey = "5063", statOrder = { 5063 }, level = 1, group = "AfflictionNotableWickedPall", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 1143, 556, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableRenewal"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Renewal", statOrderKey = "4989", statOrder = { 4989 }, level = 1, group = "AfflictionNotableRenewal", weightKey = { "affliction_minion_damage", "affliction_minion_life", "default", }, weightVal = { 1290, 1176, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableRazeandPillage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Raze and Pillage", statOrderKey = "4985", statOrder = { 4985 }, level = 1, group = "AfflictionNotableRazeandPillage", weightKey = { "no_physical_damage_mods", "no_elemental_damage_mods", "affliction_minion_damage", "default", }, weightVal = { 0, 0, 645, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableRottenClaws"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rotten Claws", statOrderKey = "4995", statOrder = { 4995 }, level = 1, group = "AfflictionNotableRottenClaws", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_minion_damage", "default", }, weightVal = { 0, 0, 1290, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableCalltotheSlaughter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Call to the Slaughter", statOrderKey = "4831", statOrder = { 4831 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 2581, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSkeletalAtrophy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skeletal Atrophy", statOrderKey = "5011", statOrder = { 5011 }, level = 1, group = "AfflictionNotableSkeletalAtrophy", weightKey = { "no_physical_damage_mods", "affliction_minion_damage", "default", }, weightVal = { 0, 645, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableHulkingCorpses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hulking Corpses", statOrderKey = "4920", statOrder = { 4920 }, level = 1, group = "AfflictionNotableHulkingCorpses", weightKey = { "affliction_minion_life", "default", }, weightVal = { 1176, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableViciousBite"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Vicious Bite", statOrderKey = "5050", statOrder = { 5050 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 323, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePrimordialBond"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Primordial Bond", statOrderKey = "4969", statOrder = { 4969 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 645, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBlowback"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blowback", statOrderKey = "4820", statOrder = { 4820 }, level = 1, group = "AfflictionNotableBlowback", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 0, 533, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableFantheFlames_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan the Flames", statOrderKey = "4888", statOrder = { 4888 }, level = 1, group = "AfflictionNotableFantheFlames", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 0, 267, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableCookedAlive"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cooked Alive", statOrderKey = "4846", statOrder = { 4846 }, level = 1, group = "AfflictionNotableCookedAlive", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 0, 1067, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBurningBright"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burning Bright", statOrderKey = "4829", statOrder = { 4829 }, level = 1, group = "AfflictionNotableBurningBright", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage_over_time_multiplier", "affliction_fire_damage", "default", }, weightVal = { 0, 533, 870, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableWrappedinFlame_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wrapped in Flame", statOrderKey = "5071", statOrder = { 5071 }, level = 1, group = "AfflictionNotableWrappedinFlame", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 0, 267, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableVividHues"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vivid Hues", statOrderKey = "5056", statOrder = { 5056 }, level = 1, group = "AfflictionNotableVividHues", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 0, 0, 556, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableRend"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rend", statOrderKey = "4988", statOrder = { 4988 }, level = 1, group = "AfflictionNotableRend", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 0, 0, 556, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDisorientingWounds"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disorienting Wounds", statOrderKey = "4863", statOrder = { 4863 }, level = 1, group = "AfflictionNotableDisorientingWounds", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 0, 0, 1111, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableCompoundInjury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Compound Injury", statOrderKey = "4842", statOrder = { 4842 }, level = 1, group = "AfflictionNotableCompoundInjury", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 0, 0, 556, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSepticSpells"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Septic Spells", statOrderKey = "5007", statOrder = { 5007 }, level = 1, group = "AfflictionNotableSepticSpells", weightKey = { "no_caster_mods", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 0, 556, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableLowTolerance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Low Tolerance", statOrderKey = "4932", statOrder = { 4932 }, level = 1, group = "AfflictionNotableLowTolerance", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 278, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSteadyTorment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Steady Torment", statOrderKey = "5022", statOrder = { 5022 }, level = 1, group = "AfflictionNotableSteadyTorment", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 278, 278, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableEternalSuffering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eternal Suffering", statOrderKey = "4878", statOrder = { 4878 }, level = 1, group = "AfflictionNotableEternalSuffering", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 556, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableEldritchInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eldritch Inspiration", statOrderKey = "4869", statOrder = { 4869 }, level = 1, group = "AfflictionNotableEldritchInspiration", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_mana", "default", }, weightVal = { 556, 714, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableWastingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wasting Affliction", statOrderKey = "5060", statOrder = { 5060 }, level = 1, 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 = { 476, 500, 278, 267, 278, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableHaemorrhage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haemorrhage", statOrderKey = "4910", statOrder = { 4910 }, level = 1, 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 = { 952, 1000, 556, 533, 556, 741, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableFlowofLife_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flow of Life", statOrderKey = "4898", statOrder = { 4898 }, level = 1, 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 = { 476, 500, 278, 267, 278, 278, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableExposureTherapy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Exposure Therapy", statOrderKey = "4884", statOrder = { 4884 }, 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 = { 1905, 2000, 1111, 1067, 1111, 2857, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBrushwithDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brush with Death", statOrderKey = "4826", statOrder = { 4826 }, level = 1, 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 = { 476, 500, 278, 267, 278, 278, 392, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableVileReinvigoration_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vile Reinvigoration", statOrderKey = "5054", statOrder = { 5054 }, level = 1, 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 = { 952, 1000, 556, 533, 556, 784, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableCirclingOblivion"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Circling Oblivion", statOrderKey = "4836", statOrder = { 4836 }, 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 = { 1905, 2000, 1111, 1067, 1111, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBrewedforPotency"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brewed for Potency", statOrderKey = "4824", statOrder = { 4824 }, 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 = { 1905, 2000, 1111, 1067, 1111, 1538, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAstonishingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Astonishing Affliction", statOrderKey = "4810", statOrder = { 4810 }, level = 1, group = "AfflictionNotableAstonishingAffliction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 2353, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableColdConduction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold Conduction", statOrderKey = "4839", statOrder = { 4839 }, level = 1, group = "AfflictionNotableColdConduction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 1176, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableInspiredOppression"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Inspired Oppression", statOrderKey = "4923", statOrder = { 4923 }, level = 1, group = "AfflictionNotableInspiredOppression", weightKey = { "no_elemental_damage_mods", "affliction_effect_of_non-damaging_ailments", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 0, 294, 294, 152, 172, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableChillingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chilling Presence", statOrderKey = "4834", statOrder = { 4834 }, level = 1, group = "AfflictionNotableChillingPresence", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 294, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDeepChill"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Chill", statOrderKey = "4857", statOrder = { 4857 }, level = 1, group = "AfflictionNotableDeepChill", weightKey = { "no_elemental_damage_mods", "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "default", }, weightVal = { 0, 2353, 1379, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBlastFreeze_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blast-Freeze", statOrderKey = "4816", statOrder = { 4816 }, level = 1, group = "AfflictionNotableBlastFreeze", weightKey = { "no_elemental_damage_mods", "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 0, 345, 500, 588, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableThunderstruck"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Thunderstruck", statOrderKey = "5038", statOrder = { 5038 }, level = 1, group = "AfflictionNotableThunderstruck", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "default", }, weightVal = { 0, 606, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableStormrider"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stormrider", statOrderKey = "5025", statOrder = { 5025 }, level = 1, group = "AfflictionNotableStormrider", weightKey = { "no_elemental_damage_mods", "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "affliction_lightning_damage", "default", }, weightVal = { 0, 588, 345, 303, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableOvershock"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overshock", statOrderKey = "4957", statOrder = { 4957 }, level = 1, group = "AfflictionNotableOvershock", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 0, 606, 1176, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableEvilEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Evil Eye", statOrderKey = "4879", statOrder = { 4879 }, level = 1, group = "AfflictionNotableEvilEye", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 2500, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableWhispersofDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Whispers of Death", statOrderKey = "5062", statOrder = { 5062 }, level = 1, group = "AfflictionNotableWhispersofDeath", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 2500, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableWardbreaker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Forbidden Words", statOrderKey = "5058", statOrder = { 5058 }, level = 1, group = "AfflictionNotableWardbreaker", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 625, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDarkDiscourse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Discourse", statOrderKey = "4852", statOrder = { 4852 }, level = 1, group = "AfflictionNotableDarkDiscourse", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 1250, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableVictimMaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Victim Maker", statOrderKey = "5053", statOrder = { 5053 }, level = 1, group = "AfflictionNotableVictimMaker", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 1250, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMasterofFear"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fear", statOrderKey = "4940", statOrder = { 4940 }, level = 1, group = "AfflictionNotableMasterofFear", weightKey = { "no_attack_mods", "no_caster_mods", "affliction_curse_effect", "default", }, weightVal = { 0, 0, 625, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableWishforDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wish for Death", statOrderKey = "5068", statOrder = { 5068 }, level = 1, group = "AfflictionNotableWishforDeath", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 1250, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableHeraldry"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heraldry", statOrderKey = "4914", statOrder = { 4914 }, level = 1, group = "AfflictionNotableHeraldry", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 357, 476, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableEndbringer"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Endbringer", statOrderKey = "4872", statOrder = { 4872 }, level = 1, group = "AfflictionNotableEndbringer", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 714, 952, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableCultLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cult-Leader", statOrderKey = "4850", statOrder = { 4850 }, level = 1, group = "AfflictionNotableCultLeader", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 3810, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableEmpoweredEnvoy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Empowered Envoy", statOrderKey = "4871", statOrder = { 4871 }, level = 1, group = "AfflictionNotableEmpoweredEnvoy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 2857, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDarkMessenger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Messenger", statOrderKey = "4854", statOrder = { 4854 }, level = 1, group = "AfflictionNotableDarkMessenger", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 1429, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAgentofDestruction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Agent of Destruction", statOrderKey = "4795", statOrder = { 4795 }, level = 1, group = "AfflictionNotableAgentofDestruction", weightKey = { "no_elemental_damage_mods", "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 0, 2857, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableLastingImpression_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lasting Impression", statOrderKey = "4928", statOrder = { 4928 }, level = 1, group = "AfflictionNotableLastingImpression", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 714, 952, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSelfFulfillingProphecy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Self-Fulfilling Prophecy", statOrderKey = "5006", statOrder = { 5006 }, level = 1, group = "AfflictionNotableSelfFulfillingProphecy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 714, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableInvigoratingPortents"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Invigorating Portents", statOrderKey = "4926", statOrder = { 4926 }, level = 1, group = "AfflictionNotableInvigoratingPortents", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 1905, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePureAgony_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Agony", statOrderKey = "4975", statOrder = { 4975 }, level = 1, group = "AfflictionNotablePureAgony", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 476, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDisciples_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disciples", statOrderKey = "4860", statOrder = { 4860 }, level = 1, group = "AfflictionNotableDisciples", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 952, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDreadMarch_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dread March", statOrderKey = "4867", statOrder = { 4867 }, level = 1, group = "AfflictionNotableDreadMarch", weightKey = { "affliction_minion_life", "default", }, weightVal = { 2353, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBlessedRebirth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed Rebirth", statOrderKey = "4818", statOrder = { 4818 }, level = 1, group = "AfflictionNotableBlessedRebirth", weightKey = { "affliction_minion_life", "default", }, weightVal = { 588, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableLifefromDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Life from Death", statOrderKey = "4930", statOrder = { 4930 }, level = 1, group = "AfflictionNotableLifefromDeath", weightKey = { "affliction_minion_life", "default", }, weightVal = { 1176, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableFeastingFiends"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feasting Fiends", statOrderKey = "4892", statOrder = { 4892 }, level = 1, group = "AfflictionNotableFeastingFiends", weightKey = { "affliction_minion_life", "affliction_minion_damage", "default", }, weightVal = { 2353, 2581, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBodyguards"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bodyguards", statOrderKey = "4821", statOrder = { 4821 }, level = 1, group = "AfflictionNotableBodyguards", weightKey = { "affliction_minion_life", "default", }, weightVal = { 1176, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableFollowThrough_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Follow-Through", statOrderKey = "4899", statOrder = { 4899 }, level = 1, group = "AfflictionNotableFollowThrough", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 714, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableStreamlined"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Streamlined", statOrderKey = "5027", statOrder = { 5027 }, level = 1, group = "AfflictionNotableStreamlined", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 2857, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableShriekingBolts_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shrieking Bolts", statOrderKey = "5010", statOrder = { 5010 }, level = 1, group = "AfflictionNotableShriekingBolts", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1429, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableEyetoEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye to Eye", statOrderKey = "4886", statOrder = { 4886 }, level = 1, group = "AfflictionNotableEyetoEye", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1429, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableRepeater"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Repeater", statOrderKey = "4990", statOrder = { 4990 }, level = 1, group = "AfflictionNotableRepeater", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 2857, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAerodynamics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerodynamics", statOrderKey = "4794", statOrder = { 4794 }, level = 1, group = "AfflictionNotableAerodynamics", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 714, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableChipAway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chip Away", statOrderKey = "4835", statOrder = { 4835 }, level = 1, group = "AfflictionNotableChipAway", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1667, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSeekerRunes"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seeker Runes", statOrderKey = "5005", statOrder = { 5005 }, level = 1, group = "AfflictionNotableSeekerRunes", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 833, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableRemarkable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Remarkable", statOrderKey = "4987", statOrder = { 4987 }, level = 1, group = "AfflictionNotableRemarkable", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1667, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBrandLoyalty"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brand Loyalty", statOrderKey = "4823", statOrder = { 4823 }, level = 1, group = "AfflictionNotableBrandLoyalty", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 3333, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableHolyConquest"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holy Conquest", statOrderKey = "4919", statOrder = { 4919 }, level = 1, group = "AfflictionNotableHolyConquest", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1667, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableGrandDesign_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Grand Design", statOrderKey = "4907", statOrder = { 4907 }, level = 1, group = "AfflictionNotableGrandDesign", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 833, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSetandForget_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Set and Forget", statOrderKey = "5008", statOrder = { 5008 }, level = 1, group = "AfflictionNotableSetandForget", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 1538, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableExpertSabotage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expert Sabotage", statOrderKey = "4882", statOrder = { 4882 }, level = 1, group = "AfflictionNotableExpertSabotage", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 1538, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableGuerillaTactics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Guerilla Tactics", statOrderKey = "4909", statOrder = { 4909 }, level = 1, group = "AfflictionNotableGuerillaTactics", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 3077, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableExpendability"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expendability", statOrderKey = "4881", statOrder = { 4881 }, level = 1, group = "AfflictionNotableExpendability", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 769, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableArcanePyrotechnics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Pyrotechnics", statOrderKey = "4807", statOrder = { 4807 }, level = 1, group = "AfflictionNotableArcanePyrotechnics", weightKey = { "no_caster_mods", "affliction_trap_and_mine_damage", "default", }, weightVal = { 0, 769, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSurpriseSabotage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surprise Sabotage", statOrderKey = "5035", statOrder = { 5035 }, level = 1, group = "AfflictionNotableSurpriseSabotage", weightKey = { "no_elemental_damage_mods", "affliction_trap_and_mine_damage", "default", }, weightVal = { 0, 1538, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableCarefulHandling"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Careful Handling", statOrderKey = "4833", statOrder = { 4833 }, level = 1, group = "AfflictionNotableCarefulHandling", weightKey = { "affliction_trap_and_mine_damage", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 769, 357, 278, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePeakVigour"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peak Vigour", statOrderKey = "4961", statOrder = { 4961 }, level = 1, group = "AfflictionNotablePeakVigour", weightKey = { "affliction_maximum_life", "affliction_flask_duration", "default", }, weightVal = { 1111, 1538, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableFettle"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fettle", statOrderKey = "4894", statOrder = { 4894 }, level = 1, group = "AfflictionNotableFettle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 139, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableFeastofFlesh"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feast of Flesh", statOrderKey = "4891", statOrder = { 4891 }, level = 1, group = "AfflictionNotableFeastofFlesh", weightKey = { "no_attack_mods", "affliction_maximum_life", "default", }, weightVal = { 0, 278, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSublimeSensation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sublime Sensation", statOrderKey = "5031", statOrder = { 5031 }, level = 1, group = "AfflictionNotableSublimeSensation", weightKey = { "affliction_maximum_life", "affliction_maximum_energy_shield", "default", }, weightVal = { 556, 784, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSurgingVitality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surging Vitality", statOrderKey = "5034", statOrder = { 5034 }, level = 1, group = "AfflictionNotableSurgingVitality", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 1111, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePeaceAmidstChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peace Amidst Chaos", statOrderKey = "4960", statOrder = { 4960 }, level = 1, group = "AfflictionNotablePeaceAmidstChaos", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 556, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAdrenaline_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Adrenaline", statOrderKey = "4791", statOrder = { 4791 }, level = 1, group = "AfflictionNotableAdrenaline", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 278, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableWallofMuscle_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wall of Muscle", statOrderKey = "5057", statOrder = { 5057 }, level = 1, group = "AfflictionNotableWallofMuscle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 139, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMindfulness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mindfulness", statOrderKey = "4945", statOrder = { 4945 }, level = 1, group = "AfflictionNotableMindfulness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 714, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableLiquidInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Liquid Inspiration", statOrderKey = "4931", statOrder = { 4931 }, level = 1, group = "AfflictionNotableLiquidInspiration", weightKey = { "affliction_maximum_mana", "affliction_flask_duration", "default", }, weightVal = { 357, 385, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableOpenness__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Openness", statOrderKey = "4954", statOrder = { 4954 }, level = 1, group = "AfflictionNotableOpenness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 1429, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDaringIdeas"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Daring Ideas", statOrderKey = "4851", statOrder = { 4851 }, level = 1, group = "AfflictionNotableDaringIdeas", weightKey = { "no_attack_mods", "affliction_maximum_mana", "default", }, weightVal = { 0, 714, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableClarityofPurpose"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Clarity of Purpose", statOrderKey = "4837", statOrder = { 4837 }, level = 1, group = "AfflictionNotableClarityofPurpose", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 1429, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableScintillatingIdea_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Scintillating Idea", statOrderKey = "5002", statOrder = { 5002 }, level = 1, group = "AfflictionNotableScintillatingIdea", weightKey = { "no_elemental_damage_mods", "affliction_maximum_mana", "affliction_lightning_damage", "default", }, weightVal = { 0, 714, 606, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableHolisticHealth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holistic Health", statOrderKey = "4918", statOrder = { 4918 }, level = 1, group = "AfflictionNotableHolisticHealth", weightKey = { "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 357, 278, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableGenius"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Genius", statOrderKey = "4903", statOrder = { 4903 }, level = 1, group = "AfflictionNotableGenius", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 179, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableImprovisor"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Improvisor", statOrderKey = "4921", statOrder = { 4921 }, level = 1, group = "AfflictionNotableImprovisor", weightKey = { "no_attack_mods", "affliction_maximum_mana", "default", }, weightVal = { 0, 357, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableStubbornStudent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stubborn Student", statOrderKey = "5029", statOrder = { 5029 }, level = 1, group = "AfflictionNotableStubbornStudent", weightKey = { "affliction_maximum_mana", "affliction_armour", "default", }, weightVal = { 357, 526, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSavourtheMoment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savour the Moment", statOrderKey = "5001", statOrder = { 5001 }, level = 1, group = "AfflictionNotableSavourtheMoment", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1569, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableEnergyFromNaught"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Energy From Naught", statOrderKey = "4876", statOrder = { 4876 }, level = 1, group = "AfflictionNotableEnergyFromNaught", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 784, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableWillShaper"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Will Shaper", statOrderKey = "5065", statOrder = { 5065 }, level = 1, group = "AfflictionNotableWillShaper", weightKey = { "affliction_maximum_energy_shield", "affliction_maximum_mana", "default", }, weightVal = { 196, 179, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSpringBack_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spring Back", statOrderKey = "5020", statOrder = { 5020 }, level = 1, group = "AfflictionNotableSpringBack", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1569, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableConservationofEnergy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conservation of Energy", statOrderKey = "4845", statOrder = { 4845 }, level = 1, group = "AfflictionNotableConservationofEnergy", weightKey = { "no_caster_mods", "affliction_maximum_energy_shield", "default", }, weightVal = { 0, 784, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableHeartofIron"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heart of Iron", statOrderKey = "4912", statOrder = { 4912 }, level = 1, group = "AfflictionNotableHeartofIron", weightKey = { "affliction_maximum_life", "affliction_armour", "default", }, weightVal = { 278, 526, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePrismaticCarapace_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Carapace", statOrderKey = "4970", statOrder = { 4970 }, level = 1, group = "AfflictionNotablePrismaticCarapace", weightKey = { "affliction_armour", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 526, 400, 400, 385, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMilitarism"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Militarism", statOrderKey = "4944", statOrder = { 4944 }, level = 1, group = "AfflictionNotableMilitarism", weightKey = { "affliction_armour", "default", }, weightVal = { 1053, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSecondSkin"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Second Skin", statOrderKey = "5004", statOrder = { 5004 }, level = 1, group = "AfflictionNotableSecondSkin", weightKey = { "affliction_armour", "affliction_chance_to_block", "default", }, weightVal = { 2105, 1159, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDragonHunter__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dragon Hunter", statOrderKey = "4866", statOrder = { 4866 }, level = 1, group = "AfflictionNotableDragonHunter", weightKey = { "affliction_armour", "affliction_fire_resistance", "default", }, weightVal = { 1053, 769, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableEnduringComposure"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Composure", statOrderKey = "4873", statOrder = { 4873 }, level = 1, group = "AfflictionNotableEnduringComposure", weightKey = { "affliction_armour", "default", }, weightVal = { 526, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePrismaticDance____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Dance", statOrderKey = "4971", statOrder = { 4971 }, level = 1, group = "AfflictionNotablePrismaticDance", weightKey = { "affliction_evasion", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 526, 400, 400, 385, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableNaturalVigour_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Natural Vigour", statOrderKey = "4949", statOrder = { 4949 }, level = 1, group = "AfflictionNotableNaturalVigour", weightKey = { "affliction_evasion", "affliction_maximum_life", "default", }, weightVal = { 1053, 556, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableUntouchable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Untouchable", statOrderKey = "5044", statOrder = { 5044 }, level = 1, group = "AfflictionNotableUntouchable", weightKey = { "affliction_evasion", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 2105, 2353, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableShiftingShadow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shifting Shadow", statOrderKey = "5009", statOrder = { 5009 }, level = 1, group = "AfflictionNotableShiftingShadow", weightKey = { "affliction_evasion", "default", }, weightVal = { 1053, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableReadiness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Readiness", statOrderKey = "4986", statOrder = { 4986 }, level = 1, group = "AfflictionNotableReadiness", weightKey = { "affliction_evasion", "default", }, weightVal = { 2105, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableConfidentCombatant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Confident Combatant", statOrderKey = "4843", statOrder = { 4843 }, level = 1, group = "AfflictionNotableConfidentCombatant", weightKey = { "no_attack_mods", "affliction_chance_to_block", "default", }, weightVal = { 0, 290, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableFlexibleSentry___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flexible Sentry", statOrderKey = "4897", statOrder = { 4897 }, level = 1, group = "AfflictionNotableFlexibleSentry", weightKey = { "affliction_chance_to_block", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 580, 800, 800, 769, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableViciousGuard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Guard", statOrderKey = "5051", statOrder = { 5051 }, level = 1, group = "AfflictionNotableViciousGuard", weightKey = { "no_attack_mods", "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 0, 1159, 1111, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMysticalWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mystical Ward", statOrderKey = "4948", statOrder = { 4948 }, level = 1, group = "AfflictionNotableMysticalWard", weightKey = { "no_caster_mods", "affliction_chance_to_block", "affliction_maximum_energy_shield", "default", }, weightVal = { 0, 1159, 1569, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableRoteReinforcement"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rote Reinforcement", statOrderKey = "4994", statOrder = { 4994 }, level = 1, group = "AfflictionNotableRoteReinforcement", weightKey = { "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 290, 278, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMageHunter___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Hunter", statOrderKey = "4934", statOrder = { 4934 }, level = 1, group = "AfflictionNotableMageHunter", weightKey = { "no_caster_mods", "affliction_chance_to_block", "affliction_spell_damage", "default", }, weightVal = { 0, 290, 571, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableRiotQueller"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Riot Queller", statOrderKey = "4992", statOrder = { 4992 }, level = 1, group = "AfflictionNotableRiotQueller", weightKey = { "affliction_chance_to_block", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 145, 270, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableOnewiththeShield_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is One with the Shield", statOrderKey = "4953", statOrder = { 4953 }, level = 1, group = "AfflictionNotableOnewiththeShield", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 580, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAerialist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerialist", statOrderKey = "4793", statOrder = { 4793 }, level = 1, group = "AfflictionNotableAerialist", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 294, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableElegantForm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Elegant Form", statOrderKey = "4870", statOrder = { 4870 }, level = 1, group = "AfflictionNotableElegantForm", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 2353, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableDartingMovements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Darting Movements", statOrderKey = "4855", statOrder = { 4855 }, level = 1, group = "AfflictionNotableDartingMovements", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 2353, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableNoWitnesses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is No Witnesses", statOrderKey = "4950", statOrder = { 4950 }, level = 1, group = "AfflictionNotableNoWitnesses", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 294, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableMoltenOnesMark_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Molten One's Mark", statOrderKey = "4947", statOrder = { 4947 }, level = 1, group = "AfflictionNotableMoltenOnesMark", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 385, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableFireAttunement_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fire Attunement", statOrderKey = "4895", statOrder = { 4895 }, level = 1, group = "AfflictionNotableFireAttunement", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 1538, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePureMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Might", statOrderKey = "4979", statOrder = { 4979 }, level = 1, group = "AfflictionNotablePureMight", weightKey = { "affliction_fire_resistance", "affliction_aura_effect", "default", }, weightVal = { 1538, 1633, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBlacksmith_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blacksmith", statOrderKey = "4814", statOrder = { 4814 }, level = 1, group = "AfflictionNotableBlacksmith", weightKey = { "affliction_fire_resistance", "affliction_armour", "default", }, weightVal = { 385, 526, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableNonFlammable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Non-Flammable", statOrderKey = "4951", statOrder = { 4951 }, level = 1, group = "AfflictionNotableNonFlammable", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 769, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableWinterProwler"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Winter Prowler", statOrderKey = "5067", statOrder = { 5067 }, level = 1, group = "AfflictionNotableWinterProwler", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 400, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableHibernator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hibernator", statOrderKey = "4916", statOrder = { 4916 }, level = 1, group = "AfflictionNotableHibernator", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 800, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePureGuile"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Guile", statOrderKey = "4978", statOrder = { 4978 }, level = 1, group = "AfflictionNotablePureGuile", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 1600, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAlchemist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Alchemist", statOrderKey = "4796", statOrder = { 4796 }, level = 1, group = "AfflictionNotableAlchemist", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 1600, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAntifreeze"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antifreeze", statOrderKey = "4803", statOrder = { 4803 }, level = 1, group = "AfflictionNotableAntifreeze", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 800, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableWizardry_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wizardry", statOrderKey = "5069", statOrder = { 5069 }, level = 1, group = "AfflictionNotableWizardry", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "default", }, weightVal = { 400, 357, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableCapacitor____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Capacitor", statOrderKey = "4832", statOrder = { 4832 }, level = 1, group = "AfflictionNotableCapacitor", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 800, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotablePureAptitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Aptitude", statOrderKey = "4976", statOrder = { 4976 }, level = 1, group = "AfflictionNotablePureAptitude", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 1600, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableSage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sage", statOrderKey = "4998", statOrder = { 4998 }, level = 1, group = "AfflictionNotableSage", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 1600, 1429, 1111, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableInsulated"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insulated", statOrderKey = "4924", statOrder = { 4924 }, level = 1, group = "AfflictionNotableInsulated", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 800, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBornofChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Born of Chaos", statOrderKey = "4822", statOrder = { 4822 }, level = 1, group = "AfflictionNotableBornofChaos", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 714, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableAntivenom"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antivenom", statOrderKey = "4804", statOrder = { 4804 }, level = 1, group = "AfflictionNotableAntivenom", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 1429, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableRotResistant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rot-Resistant", statOrderKey = "4993", statOrder = { 4993 }, level = 1, group = "AfflictionNotableRotResistant", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 2857, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableBlessed"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed", statOrderKey = "4817", statOrder = { 4817 }, level = 1, group = "AfflictionNotableBlessed", weightKey = { "affliction_chaos_resistance", "affliction_maximum_life", "affliction_maximum_mana", "default", }, weightVal = { 714, 278, 357, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionNotableStudentofDecay"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Student of Decay", statOrderKey = "5030", statOrder = { 5030 }, level = 1, 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 = { 1429, 952, 556, 533, 556, 0, }, tags = { "has_affliction_notable", }, }, - ["AfflictionJewelSmallPassivesGrantLife_"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLife2_"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLife3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantMana"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantMana2"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantMana3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantES"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantES2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantES3"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantArmour"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantArmour2"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantArmour3_"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantEvasion"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantEvasion2__"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantEvasion3"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantStr"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantStr2_"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantStr3_"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDex_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDex2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDex3_"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantInt_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantInt2_"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantInt3"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantAttributes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantAttributes2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantAttributes3"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantManaRegen"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantManaRegen2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantManaRegen3_"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegen___"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegen2_"] = { type = "Suffix", affix = "of the Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegen3"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantFireRes"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantFireRes2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantFireRes3"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantColdRes_"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantColdRes2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantColdRes3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLightningRes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLightningRes2_"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLightningRes3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantElementalRes"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantElementalRes2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantElementalRes3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantChaosRes"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantChaosRes2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantChaosRes3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDamage_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDamage2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDamage3"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLifeSmall"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLifeSmall2"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLifeSmall3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLifeSmall4"] = { type = "Prefix", affix = "Stalwart", "Added Small Passive Skills also grant: +(11-13) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLifeSmall5_"] = { type = "Prefix", affix = "Stout", "Added Small Passive Skills also grant: +(14-16) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantManaSmall"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantManaSmall2_"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantManaSmall3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 73, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantManaSmall4_"] = { type = "Prefix", affix = "Sapphire", "Added Small Passive Skills also grant: +(11-13) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 78, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantManaSmall5_"] = { type = "Prefix", affix = "Cerulean", "Added Small Passive Skills also grant: +(14-16) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantESSmall"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantESSmall2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantESSmall3_"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 73, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantESSmall4"] = { type = "Prefix", affix = "Radiating", "Added Small Passive Skills also grant: +(13-16) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 78, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantESSmall5"] = { type = "Prefix", affix = "Pulsing", "Added Small Passive Skills also grant: +(17-20) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantArmourSmall__"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantArmourSmall2__"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantArmourSmall3"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 73, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantArmourSmall4___"] = { type = "Prefix", affix = "Fortified", "Added Small Passive Skills also grant: +(41-53) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 78, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantArmourSmall5"] = { type = "Prefix", affix = "Plated", "Added Small Passive Skills also grant: +(54-66) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall2_"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall3___"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 73, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall4_"] = { type = "Prefix", affix = "Fleet", "Added Small Passive Skills also grant: +(41-53) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 78, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall5"] = { type = "Prefix", affix = "Blurred", "Added Small Passive Skills also grant: +(54-66) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantStrSmall_"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantStrSmall2"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantStrSmall3"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 73, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantStrSmall4_"] = { type = "Suffix", affix = "of the Lion", "Added Small Passive Skills also grant: +(9-11) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 78, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantStrSmall5"] = { type = "Suffix", affix = "of the Gorilla", "Added Small Passive Skills also grant: +(12-14) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDexSmall_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDexSmall2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDexSmall3"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDexSmall4_"] = { type = "Suffix", affix = "of the Falcon", "Added Small Passive Skills also grant: +(9-11) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDexSmall5"] = { type = "Suffix", affix = "of the Panther", "Added Small Passive Skills also grant: +(12-14) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantIntSmall_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantIntSmall2"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantIntSmall3______"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 73, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantIntSmall4_"] = { type = "Suffix", affix = "of the Augur", "Added Small Passive Skills also grant: +(9-11) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 78, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantIntSmall5"] = { type = "Suffix", affix = "of the Philosopher", "Added Small Passive Skills also grant: +(12-14) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall3_"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 73, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall4"] = { type = "Suffix", affix = "of the Comet", "Added Small Passive Skills also grant: +5 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 78, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall5"] = { type = "Suffix", affix = "of the Heavens", "Added Small Passive Skills also grant: +6 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall_"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall3"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 73, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall4"] = { type = "Suffix", affix = "of Bliss", "Added Small Passive Skills also grant: (7-8)% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 78, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall5"] = { type = "Suffix", affix = "of Euphoria", "Added Small Passive Skills also grant: (9-10)% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall2_"] = { type = "Suffix", affix = "ofthe Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall3_"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall4_"] = { type = "Suffix", affix = "of the Starfish", "Added Small Passive Skills also grant: Regenerate 0.25% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall5"] = { type = "Suffix", affix = "of the Hydra", "Added Small Passive Skills also grant: Regenerate 0.3% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantFireResSmall"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantFireResSmall2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantFireResSmall3_"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 73, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantFireResSmall4"] = { type = "Suffix", affix = "of the Kiln", "Added Small Passive Skills also grant: +(8-9)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 78, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantFireResSmall5"] = { type = "Suffix", affix = "of the Furnace", "Added Small Passive Skills also grant: +(10-11)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantColdResSmall"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantColdResSmall2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantColdResSmall3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 73, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantColdResSmall4"] = { type = "Suffix", affix = "of the Yeti", "Added Small Passive Skills also grant: +(8-9)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 78, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantColdResSmall5_"] = { type = "Suffix", affix = "of the Walrus", "Added Small Passive Skills also grant: +(10-11)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall2__"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall4_"] = { type = "Suffix", affix = "of the Thunderhead", "Added Small Passive Skills also grant: +(8-9)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall5"] = { type = "Suffix", affix = "of the Tempest", "Added Small Passive Skills also grant: +(10-11)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 73, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall4"] = { type = "Suffix", affix = "of Variegation", "Added Small Passive Skills also grant: +5% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 78, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall5"] = { type = "Suffix", affix = "of the Rainbow", "Added Small Passive Skills also grant: +6% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 73, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall4"] = { type = "Suffix", affix = "of Expulsion", "Added Small Passive Skills also grant: +6% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 78, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall5"] = { type = "Suffix", affix = "of Exile", "Added Small Passive Skills also grant: +(7-8)% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDamageSmall_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDamageSmall2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDamageSmall3_"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDamageSmall4_"] = { type = "Prefix", affix = "Destructive", "Added Small Passive Skills also grant: 5% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDamageSmall5"] = { type = "Prefix", affix = "Deadly", "Added Small Passive Skills also grant: 6% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0, }, }, - ["AfflictionJewelSmallPassivesHaveIncreasedEffect"] = { type = "Prefix", affix = "Potent", "Added Small Passive Skills have 25% increased Effect", statOrderKey = "4790", statOrder = { 4790 }, level = 1, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 300, }, }, - ["AfflictionJewelSmallPassivesHaveIncreasedEffect2"] = { type = "Prefix", affix = "Powerful", "Added Small Passive Skills have 35% increased Effect", statOrderKey = "4790", statOrder = { 4790 }, level = 84, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 100, }, }, - ["AfflictionJewelSmallPassivesGrantAttackSpeed"] = { type = "Suffix", affix = "of Skill", "Added Small Passive Skills also grant: 1% increased Attack Speed", statOrderKey = "4758", statOrder = { 4758 }, 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, }, }, - ["AfflictionJewelSmallPassivesGrantAttackSpeed2_"] = { type = "Suffix", affix = "of Ease", "Added Small Passive Skills also grant: 2% increased Attack Speed", statOrderKey = "4758", statOrder = { 4758 }, 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, }, }, - ["AfflictionJewelSmallPassivesGrantAttackSpeed3__"] = { type = "Suffix", affix = "of Mastery", "Added Small Passive Skills also grant: 3% increased Attack Speed", statOrderKey = "4758", statOrder = { 4758 }, 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, }, }, - ["AfflictionJewelSmallPassivesGrantCastSpeed"] = { type = "Suffix", affix = "of Talent", "Added Small Passive Skills also grant: 1% increased Cast Speed", statOrderKey = "4760", statOrder = { 4760 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Added Small Passive Skills also grant: 2% increased Cast Speed", statOrderKey = "4760", statOrder = { 4760 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantCastSpeed3_"] = { type = "Suffix", affix = "of Expertise", "Added Small Passive Skills also grant: 3% increased Cast Speed", statOrderKey = "4760", statOrder = { 4760 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantDamageOverTime"] = { type = "Suffix", affix = "of Decline", "Added Small Passive Skills also grant: 1% increased Damage over Time", statOrderKey = "4769", statOrder = { 4769 }, 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, }, }, - ["AfflictionJewelSmallPassivesGrantDamageOverTime2"] = { type = "Suffix", affix = "of Degeneration", "Added Small Passive Skills also grant: 2% increased Damage over Time", statOrderKey = "4769", statOrder = { 4769 }, 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, }, }, - ["AfflictionJewelSmallPassivesGrantDamageOverTime3"] = { type = "Suffix", affix = "of Disintegration", "Added Small Passive Skills also grant: 3% increased Damage over Time", statOrderKey = "4769", statOrder = { 4769 }, 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, }, }, - ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration_"] = { type = "Suffix", affix = "of Tumult", "Added Small Passive Skills also grant: 3% increased Duration of Elemental Ailments on Enemies", statOrderKey = "4762", statOrder = { 4762 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration2"] = { type = "Suffix", affix = "of Turbulence", "Added Small Passive Skills also grant: 4% increased Duration of Elemental Ailments on Enemies", statOrderKey = "4762", statOrder = { 4762 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration3"] = { type = "Suffix", affix = "of Disturbance", "Added Small Passive Skills also grant: 5% increased Duration of Elemental Ailments on Enemies", statOrderKey = "4762", statOrder = { 4762 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect__"] = { type = "Suffix", affix = "of Outreach", "Added Small Passive Skills also grant: 2% increased Area of Effect of Aura Skills", statOrderKey = "4759", statOrder = { 4759 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "affliction_aura_effect", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect2"] = { type = "Suffix", affix = "of Influence", "Added Small Passive Skills also grant: 4% increased Area of Effect of Aura Skills", statOrderKey = "4759", statOrder = { 4759 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "affliction_aura_effect", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect3"] = { type = "Suffix", affix = "of Guidance", "Added Small Passive Skills also grant: 6% increased Area of Effect of Aura Skills", statOrderKey = "4759", statOrder = { 4759 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "affliction_aura_effect", "default", }, weightVal = { 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect"] = { type = "Suffix", affix = "of Clout", "Added Small Passive Skills also grant: 1% increased Area of Effect of Curse Skills", statOrderKey = "4768", statOrder = { 4768 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect2"] = { type = "Suffix", affix = "of Dominance", "Added Small Passive Skills also grant: 2% increased Area of Effect of Curse Skills", statOrderKey = "4768", statOrder = { 4768 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect3"] = { type = "Suffix", affix = "of Suppression", "Added Small Passive Skills also grant: 3% increased Area of Effect of Curse Skills", statOrderKey = "4768", statOrder = { 4768 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantWarcryDuration"] = { type = "Suffix", affix = "of Yelling", "Added Small Passive Skills also grant: 2% increased Warcry Duration", statOrderKey = "4789", statOrder = { 4789 }, level = 1, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantWarcryDuration2"] = { type = "Suffix", affix = "of Shouting", "Added Small Passive Skills also grant: 3% increased Warcry Duration", statOrderKey = "4789", statOrder = { 4789 }, level = 68, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantWarcryDuration3"] = { type = "Suffix", affix = "of Bellowing", "Added Small Passive Skills also grant: 4% increased Warcry Duration", statOrderKey = "4789", statOrder = { 4789 }, level = 84, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Ire", "Added Small Passive Skills also grant: +1% to Critical Strike Multiplier", statOrderKey = "4761", statOrder = { 4761 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier2_"] = { type = "Suffix", affix = "of Anger", "Added Small Passive Skills also grant: +2% to Critical Strike Multiplier", statOrderKey = "4761", statOrder = { 4761 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "Added Small Passive Skills also grant: +3% to Critical Strike Multiplier", statOrderKey = "4761", statOrder = { 4761 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantMinionLifeRegen"] = { type = "Suffix", affix = "of Fostering", "Added Small Passive Skills also grant: Minions Regenerate 0.1% of Life per Second", statOrderKey = "4783", statOrder = { 4783 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantMinionLifeRegen2"] = { type = "Suffix", affix = "of Nurturing", "Added Small Passive Skills also grant: Minions Regenerate 0.15% of Life per Second", statOrderKey = "4783", statOrder = { 4783 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantMinionLifeRegen3"] = { type = "Suffix", affix = "of Motherhood", "Added Small Passive Skills also grant: Minions Regenerate 0.2% of Life per Second", statOrderKey = "4783", statOrder = { 4783 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantAreaOfEffect_"] = { type = "Suffix", affix = "of Reach", "Added Small Passive Skills also grant: 1% increased Area of Effect", statOrderKey = "4764", statOrder = { 4764 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantAreaOfEffect2"] = { type = "Suffix", affix = "of Range", "Added Small Passive Skills also grant: 2% increased Area of Effect", statOrderKey = "4764", statOrder = { 4764 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantAreaOfEffect3"] = { type = "Suffix", affix = "of Horizons", "Added Small Passive Skills also grant: 3% increased Area of Effect", statOrderKey = "4764", statOrder = { 4764 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantProjectileSpeed"] = { type = "Suffix", affix = "of Darting", "Added Small Passive Skills also grant: 2% increased Projectile Speed", statOrderKey = "4763", statOrder = { 4763 }, level = 1, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "Added Small Passive Skills also grant: 3% increased Projectile Speed", statOrderKey = "4763", statOrder = { 4763 }, level = 68, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "Added Small Passive Skills also grant: 4% increased Projectile Speed", statOrderKey = "4763", statOrder = { 4763 }, level = 84, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed_"] = { type = "Suffix", affix = "of Tinkering", "Added Small Passive Skills also grant: 1% increased Trap and Mine Throwing Speed", statOrderKey = "4788", statOrder = { 4788 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed2"] = { type = "Suffix", affix = "of Assembly", "Added Small Passive Skills also grant: 2% increased Trap and Mine Throwing Speed", statOrderKey = "4788", statOrder = { 4788 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed3_"] = { type = "Suffix", affix = "of Deployment", "Added Small Passive Skills also grant: 3% increased Trap and Mine Throwing Speed", statOrderKey = "4788", statOrder = { 4788 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed"] = { type = "Suffix", affix = "of the Karui", "Added Small Passive Skills also grant: 1% increased Totem Placement speed", statOrderKey = "4787", statOrder = { 4787 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed2"] = { type = "Suffix", affix = "of the Ancestors", "Added Small Passive Skills also grant: 2% increased Totem Placement speed", statOrderKey = "4787", statOrder = { 4787 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed3"] = { type = "Suffix", affix = "of The Way", "Added Small Passive Skills also grant: 3% increased Totem Placement speed", statOrderKey = "4787", statOrder = { 4787 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange_"] = { type = "Suffix", affix = "of Gripping", "Added Small Passive Skills also grant: 1% increased Brand Attachment range", statOrderKey = "4785", statOrder = { 4785 }, level = 1, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange2"] = { type = "Suffix", affix = "of Grasping", "Added Small Passive Skills also grant: 2% increased Brand Attachment range", statOrderKey = "4785", statOrder = { 4785 }, level = 68, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange3____"] = { type = "Suffix", affix = "of Latching", "Added Small Passive Skills also grant: 3% increased Brand Attachment range", statOrderKey = "4785", statOrder = { 4785 }, level = 84, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed"] = { type = "Suffix", affix = "of Attention", "Added Small Passive Skills also grant: Channelling Skills have 1% increased Attack and Cast Speed", statOrderKey = "4751", statOrder = { 4751 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Concentration", "Added Small Passive Skills also grant: Channelling Skills have 2% increased Attack and Cast Speed", statOrderKey = "4751", statOrder = { 4751 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Forethought", "Added Small Passive Skills also grant: Channelling Skills have 3% increased Attack and Cast Speed", statOrderKey = "4751", statOrder = { 4751 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantFlaskChargesGained"] = { type = "Suffix", affix = "of Refilling", "Added Small Passive Skills also grant: 1% increased Flask Charges gained", statOrderKey = "4766", statOrder = { 4766 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantFlaskChargesGained2_"] = { type = "Suffix", affix = "of Brimming", "Added Small Passive Skills also grant: 2% increased Flask Charges gained", statOrderKey = "4766", statOrder = { 4766 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantFlaskChargesGained3"] = { type = "Suffix", affix = "of Overflowing", "Added Small Passive Skills also grant: 3% increased Flask Charges gained", statOrderKey = "4766", statOrder = { 4766 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 250, 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Kindling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Fire Skills", statOrderKey = "4755", statOrder = { 4755 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage", "default", }, weightVal = { 0, 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Smoke", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Fire Skills", statOrderKey = "4755", statOrder = { 4755 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage", "default", }, weightVal = { 0, 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Flashfires", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Fire Skills", statOrderKey = "4755", statOrder = { 4755 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage", "default", }, weightVal = { 0, 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Cooling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Cold Skills", statOrderKey = "4753", statOrder = { 4753 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_cold_damage", "default", }, weightVal = { 0, 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Frigidity", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Cold Skills", statOrderKey = "4753", statOrder = { 4753 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_cold_damage", "default", }, weightVal = { 0, 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Avalanche", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Cold Skills", statOrderKey = "4753", statOrder = { 4753 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_cold_damage", "default", }, weightVal = { 0, 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Gathering Clouds", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Lightning Skills", statOrderKey = "4756", statOrder = { 4756 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "default", }, weightVal = { 0, 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Sudden Storms", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Lightning Skills", statOrderKey = "4756", statOrder = { 4756 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "default", }, weightVal = { 0, 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Strike", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Lightning Skills", statOrderKey = "4756", statOrder = { 4756 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "default", }, weightVal = { 0, 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Dusk", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Chaos Skills", statOrderKey = "4752", statOrder = { 4752 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed2____"] = { type = "Suffix", affix = "of Midnight", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Chaos Skills", statOrderKey = "4752", statOrder = { 4752 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Eclipse", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Chaos Skills", statOrderKey = "4752", statOrder = { 4752 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Rumbling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Physical Skills", statOrderKey = "4757", statOrder = { 4757 }, level = 1, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "default", }, weightVal = { 0, 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Tremors", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Physical Skills", statOrderKey = "4757", statOrder = { 4757 }, level = 68, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "default", }, weightVal = { 0, 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of the Earthquake", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Physical Skills", statOrderKey = "4757", statOrder = { 4757 }, level = 84, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "default", }, weightVal = { 0, 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Coaxing", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Elemental Skills", statOrderKey = "4754", statOrder = { 4754 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "default", }, weightVal = { 0, 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Evoking", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Elemental Skills", statOrderKey = "4754", statOrder = { 4754 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "default", }, weightVal = { 0, 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Manifesting", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Elemental Skills", statOrderKey = "4754", statOrder = { 4754 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "default", }, weightVal = { 0, 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed"] = { type = "Suffix", affix = "of Pillaging", "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed", statOrderKey = "4781", statOrder = { 4781 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Ravaging", "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed", statOrderKey = "4781", statOrder = { 4781 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Razing", "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed", statOrderKey = "4781", statOrder = { 4781 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 250, 0, }, }, - ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed"] = { type = "Suffix", affix = "of the Courier", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed while affected by a Herald", statOrderKey = "4750", statOrder = { 4750 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of the Messenger", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed while affected by a Herald", statOrderKey = "4750", statOrder = { 4750 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0, }, }, - ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Herald", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed while affected by a Herald", statOrderKey = "4750", statOrder = { 4750 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0, }, }, - ["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", statOrderKey = "4782", statOrder = { 4782 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0, }, }, - ["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", statOrderKey = "4782", statOrder = { 4782 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0, }, }, - ["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", statOrderKey = "4782", statOrder = { 4782 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0, }, }, + ["JewelExpansionJewelNodesLarge1"] = { type = "Suffix", affix = "of Potential", "1 Added Passive Skill is a Jewel Socket", statOrderKey = "5141", statOrder = { 5141 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { "expansion_jewel_large", "default", }, weightVal = { 5000, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["JewelExpansionJewelNodesLarge2___"] = { type = "Suffix", affix = "of Possibility", "2 Added Passive Skills are Jewel Sockets", statOrderKey = "5141", statOrder = { 5141 }, level = 75, group = "JewelExpansionJewelNodes", weightKey = { "expansion_jewel_large", "default", }, weightVal = { 2500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["JewelExpansionJewelNodesMedium"] = { type = "Suffix", affix = "of Potential", "1 Added Passive Skill is a Jewel Socket", statOrderKey = "5141", statOrder = { 5141 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { "expansion_jewel_medium", "default", }, weightVal = { 7500, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionNotableProdigiousDefense__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prodigious Defence", statOrderKey = "4973", statOrder = { 4973 }, level = 1, group = "AfflictionNotableProdigiousDefense", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 2162, 1159, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAdvanceGuard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Advance Guard", statOrderKey = "4792", statOrder = { 4792 }, level = 1, group = "AfflictionNotableAdvanceGuard", weightKey = { "no_attack_mods", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 0, 1081, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableGladiatorialCombat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiatorial Combat", statOrderKey = "4904", statOrder = { 4904 }, level = 1, group = "AfflictionNotableGladiatorialCombat", weightKey = { "no_attack_mods", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 0, 541, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableStrikeLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Strike Leader", statOrderKey = "5028", statOrder = { 5028 }, level = 1, group = "AfflictionNotableStrikeLeader", weightKey = { "no_attack_mods", "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 0, 2162, 1159, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePowerfulWard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Ward", statOrderKey = "4963", statOrder = { 4963 }, level = 1, group = "AfflictionNotablePowerfulWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 290, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableEnduringWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Ward", statOrderKey = "4875", statOrder = { 4875 }, level = 1, group = "AfflictionNotableEnduringWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 290, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableGladiatorsFortitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiator's Fortitude", statOrderKey = "4905", statOrder = { 4905 }, level = 1, group = "AfflictionNotableGladiatorsFortitude", weightKey = { "no_attack_mods", "affliction_attack_damage_while_holding_a_shield", "affliction_maximum_life", "default", }, weightVal = { 0, 541, 278, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePreciseRetaliation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Retaliation", statOrderKey = "4967", statOrder = { 4967 }, level = 1, group = "AfflictionNotablePreciseRetaliation", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_critical_chance", "default", }, weightVal = { 1081, 741, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableVeteranDefender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Veteran Defender", statOrderKey = "5049", statOrder = { 5049 }, level = 1, group = "AfflictionNotableVeteranDefender", weightKey = { "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 2162, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableIronBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Iron Breaker", statOrderKey = "4927", statOrder = { 4927 }, level = 1, group = "AfflictionNotableIronBreaker", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "default", }, weightVal = { 0, 2667, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableDeepCuts"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Cuts", statOrderKey = "4858", statOrder = { 4858 }, level = 1, group = "AfflictionNotableDeepCuts", weightKey = { "no_attack_mods", "no_physical_damage_mods", "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_", "default", }, weightVal = { 0, 0, 208, 169, 169, 182, 156, 161, 122, 125, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableMastertheFundamentals_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master the Fundamentals", statOrderKey = "4942", statOrder = { 4942 }, level = 1, group = "AfflictionNotableMastertheFundamentals", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "default", }, weightVal = { 0, 1333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableForceMultiplier"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Force Multiplier", statOrderKey = "4900", statOrder = { 4900 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "default", }, weightVal = { 0, 1333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableFuriousAssault"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Furious Assault", statOrderKey = "4902", statOrder = { 4902 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "default", }, weightVal = { 0, 2667, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableViciousSkewering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Skewering", statOrderKey = "5052", statOrder = { 5052 }, level = 1, group = "AfflictionNotableViciousSkewering", weightKey = { "no_attack_mods", "no_physical_damage_mods", "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_", "default", }, weightVal = { 0, 0, 417, 339, 339, 364, 313, 323, 244, 250, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableGrimOath"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Grim Oath", statOrderKey = "4908", statOrder = { 4908 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "affliction_chaos_damage", "default", }, weightVal = { 0, 667, 571, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBattleHardened_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battle-Hardened", statOrderKey = "4812", statOrder = { 4812 }, level = 1, group = "AfflictionNotableBattleHardened", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "affliction_armour", "affliction_evasion", "default", }, weightVal = { 0, 1333, 1053, 1053, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableReplenishingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Replenishing Presence", statOrderKey = "4991", statOrder = { 4991 }, level = 1, group = "AfflictionNotableReplenishingPresence", weightKey = { "affliction_aura_effect", "default", }, weightVal = { 816, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableMasterofCommand__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Command", statOrderKey = "4939", statOrder = { 4939 }, level = 1, group = "AfflictionNotableMasterofCommand", weightKey = { "affliction_aura_effect", "default", }, weightVal = { 408, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableFirstAmongEquals__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is First Among Equals", statOrderKey = "4896", statOrder = { 4896 }, level = 1, group = "AfflictionNotableFirstAmongEquals", weightKey = { "affliction_aura_effect", "default", }, weightVal = { 1633, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePurposefulHarbinger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Purposeful Harbinger", statOrderKey = "4980", statOrder = { 4980 }, level = 1, group = "AfflictionNotablePurposefulHarbinger", weightKey = { "affliction_aura_effect", "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 204, 357, 476, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePreciseCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Commander", statOrderKey = "4965", statOrder = { 4965 }, level = 1, group = "AfflictionNotablePreciseCommander", weightKey = { "affliction_aura_effect", "affliction_critical_chance", "default", }, weightVal = { 408, 370, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePureCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Commander", statOrderKey = "4977", statOrder = { 4977 }, level = 1, group = "AfflictionNotablePureCommander", weightKey = { "affliction_aura_effect", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 1633, 1600, 1600, 1538, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableStalwartCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stalwart Commander", statOrderKey = "5021", statOrder = { 5021 }, level = 1, group = "AfflictionNotableStalwartCommander", weightKey = { "affliction_aura_effect", "affliction_armour", "affliction_evasion", "affliction_maximum_energy_shield", "default", }, weightVal = { 1633, 2105, 2105, 1569, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableVengefulCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vengeful Commander", statOrderKey = "5048", statOrder = { 5048 }, level = 1, group = "AfflictionNotableVengefulCommander", weightKey = { "no_elemental_damage_mods", "affliction_aura_effect", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 0, 1633, 2353, 1212, 1379, 1739, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSkullbreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skullbreaker", statOrderKey = "5012", statOrder = { 5012 }, level = 1, group = "AfflictionNotableSkullbreaker", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 370, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePressurePoints__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pressure Points", statOrderKey = "4968", statOrder = { 4968 }, level = 1, group = "AfflictionNotablePressurePoints", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 741, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableOverwhelmingMalice"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overwhelming Malice", statOrderKey = "4958", statOrder = { 4958 }, level = 1, group = "AfflictionNotableOverwhelmingMalice", weightKey = { "no_physical_damage_mods", "affliction_critical_chance", "affliction_chaos_damage", "default", }, weightVal = { 0, 370, 571, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableMagnifier"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Magnifier", statOrderKey = "4935", statOrder = { 4935 }, level = 1, group = "AfflictionNotableMagnifier", weightKey = { "affliction_critical_chance", "affliction_area_damage", "default", }, weightVal = { 1481, 2857, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSavageResponse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savage Response", statOrderKey = "5000", statOrder = { 5000 }, level = 1, group = "AfflictionNotableSavageResponse", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 741, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableEyeoftheStorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye of the Storm", statOrderKey = "4885", statOrder = { 4885 }, level = 1, group = "AfflictionNotableEyeoftheStorm", weightKey = { "no_elemental_damage_mods", "affliction_critical_chance", "affliction_fire_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 0, 741, 533, 1176, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBasicsofPain"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Basics of Pain", statOrderKey = "4811", statOrder = { 4811 }, level = 1, group = "AfflictionNotableBasicsofPain", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 1481, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableQuickGetaway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick Getaway", statOrderKey = "4982", statOrder = { 4982 }, level = 1, group = "AfflictionNotableQuickGetaway", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 1481, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAssertDominance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Assert Dominance", statOrderKey = "4809", statOrder = { 4809 }, level = 1, group = "AfflictionNotableAssertDominance", weightKey = { "affliction_area_damage", "default", }, weightVal = { 714, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableVastPower"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vast Power", statOrderKey = "5047", statOrder = { 5047 }, level = 1, group = "AfflictionNotableVastPower", weightKey = { "affliction_area_damage", "default", }, weightVal = { 1429, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePowerfulAssault_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Assault", statOrderKey = "4962", statOrder = { 4962 }, level = 1, group = "AfflictionNotablePowerfulAssault", weightKey = { "affliction_area_damage", "default", }, weightVal = { 1429, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableIntensity"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Intensity", statOrderKey = "4925", statOrder = { 4925 }, level = 1, group = "AfflictionNotableIntensity", weightKey = { "affliction_area_damage", "default", }, weightVal = { 714, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableTitanicSwings_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Titanic Swings", statOrderKey = "5039", statOrder = { 5039 }, level = 1, group = "AfflictionNotableTitanicSwings", weightKey = { "affliction_area_damage", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 1429, 488, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableToweringThreat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Towering Threat", statOrderKey = "5041", statOrder = { 5041 }, level = 1, group = "AfflictionNotableToweringThreat", weightKey = { "affliction_area_damage", "affliction_maximum_life", "default", }, weightVal = { 714, 278, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAncestralEcho"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Echo", statOrderKey = "4797", statOrder = { 4797 }, level = 1, group = "AfflictionNotableAncestralEcho", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 2353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAncestralReach"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Reach", statOrderKey = "4802", statOrder = { 4802 }, level = 1, group = "AfflictionNotableAncestralReach", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 2353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAncestralMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Might", statOrderKey = "4800", statOrder = { 4800 }, level = 1, group = "AfflictionNotableAncestralMight", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1176, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAncestralPreservation__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Preservation", statOrderKey = "4801", statOrder = { 4801 }, level = 1, group = "AfflictionNotableAncestralPreservation", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 588, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSnaringSpirits"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snaring Spirits", statOrderKey = "5016", statOrder = { 5016 }, level = 1, group = "AfflictionNotableSnaringSpirits", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1176, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSleeplessSentries"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sleepless Sentries", statOrderKey = "5013", statOrder = { 5013 }, level = 1, group = "AfflictionNotableSleeplessSentries", weightKey = { "no_attack_mods", "affliction_totem_damage", "default", }, weightVal = { 0, 588, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAncestralGuidance_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Guidance", statOrderKey = "4798", statOrder = { 4798 }, level = 1, group = "AfflictionNotableAncestralGuidance", weightKey = { "no_attack_mods", "affliction_totem_damage", "default", }, weightVal = { 0, 1176, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAncestralInspiration__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Inspiration", statOrderKey = "4799", statOrder = { 4799 }, level = 1, group = "AfflictionNotableAncestralInspiration", weightKey = { "no_caster_mods", "affliction_totem_damage", "affliction_spell_damage", "default", }, weightVal = { 0, 588, 571, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableVitalFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vital Focus", statOrderKey = "5055", statOrder = { 5055 }, level = 1, group = "AfflictionNotableVitalFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 2759, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableRapidInfusion_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rapid Infusion", statOrderKey = "4983", statOrder = { 4983 }, level = 1, group = "AfflictionNotableRapidInfusion", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 690, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableUnwaveringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwavering Focus", statOrderKey = "5045", statOrder = { 5045 }, level = 1, group = "AfflictionNotableUnwaveringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 1379, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableEnduringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Focus", statOrderKey = "4874", statOrder = { 4874 }, level = 1, group = "AfflictionNotableEnduringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 345, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePreciseFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Focus", statOrderKey = "4966", statOrder = { 4966 }, level = 1, group = "AfflictionNotablePreciseFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 1379, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableStoicFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stoic Focus", statOrderKey = "5023", statOrder = { 5023 }, level = 1, group = "AfflictionNotableStoicFocus", weightKey = { "affliction_channelling_skill_damage", "affliction_chance_to_block", "default", }, weightVal = { 2759, 1159, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableHexBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hex Breaker", statOrderKey = "4915", statOrder = { 4915 }, level = 1, group = "AfflictionNotableHexBreaker", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 690, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableArcaneAdept_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Adept", statOrderKey = "4805", statOrder = { 4805 }, level = 1, group = "AfflictionNotableArcaneAdept", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 571, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableDistilledPerfection_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Distilled Perfection", statOrderKey = "4864", statOrder = { 4864 }, level = 1, group = "AfflictionNotableDistilledPerfection", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1538, 2353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSpikedConcoction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spiked Concoction", statOrderKey = "5019", statOrder = { 5019 }, level = 1, group = "AfflictionNotableSpikedConcoction", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 769, 1176, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableFasting"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fasting", statOrderKey = "4889", statOrder = { 4889 }, level = 1, group = "AfflictionNotableFasting", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 769, 1176, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableMendersWellspring__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mender's Wellspring", statOrderKey = "4943", statOrder = { 4943 }, level = 1, group = "AfflictionNotableMendersWellspring", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 385, 588, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSpecialReserve"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Special Reserve", statOrderKey = "5018", statOrder = { 5018 }, level = 1, group = "AfflictionNotableSpecialReserve", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1538, 2353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableNumbingElixir"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Numbing Elixir", statOrderKey = "4952", statOrder = { 4952 }, level = 1, group = "AfflictionNotableNumbingElixir", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1538, 2353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableMobMentality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mob Mentality", statOrderKey = "4946", statOrder = { 4946 }, level = 1, group = "AfflictionNotableMobMentality", weightKey = { "no_attack_mods", "affliction_warcry_buff_effect", "default", }, weightVal = { 0, 345, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableCryWolf__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cry Wolf", statOrderKey = "4849", statOrder = { 4849 }, level = 1, group = "AfflictionNotableCryWolf", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 690, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableHauntingShout"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haunting Shout", statOrderKey = "4911", statOrder = { 4911 }, level = 1, group = "AfflictionNotableHauntingShout", weightKey = { "no_attack_mods", "no_caster_mods", "affliction_warcry_buff_effect", "default", }, weightVal = { 0, 0, 1379, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableLeadByExample__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lead By Example", statOrderKey = "4929", statOrder = { 4929 }, level = 1, group = "AfflictionNotableLeadByExample", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 2759, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableProvocateur"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Provocateur", statOrderKey = "4974", statOrder = { 4974 }, level = 1, group = "AfflictionNotableProvocateur", weightKey = { "affliction_warcry_buff_effect", "affliction_critical_chance", "default", }, weightVal = { 1379, 741, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableWarningCall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Warning Call", statOrderKey = "5059", statOrder = { 5059 }, level = 1, group = "AfflictionNotableWarningCall", weightKey = { "no_attack_mods", "affliction_warcry_buff_effect", "default", }, weightVal = { 0, 690, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableRattlingBellow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rattling Bellow", statOrderKey = "4984", statOrder = { 4984 }, level = 1, group = "AfflictionNotableRattlingBellow", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 2759, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBloodscent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bloodscent", statOrderKey = "4819", statOrder = { 4819 }, level = 1, group = "AfflictionNotableBloodscent", weightKey = { "no_attack_mods", "affliction_axe_and_sword_damage", "default", }, weightVal = { 0, 169, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableRunThrough"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Run Through", statOrderKey = "4996", statOrder = { 4996 }, level = 1, group = "AfflictionNotableRunThrough", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_axe_and_sword_damage", "default", }, weightVal = { 0, 0, 339, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableWoundAggravation____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wound Aggravation", statOrderKey = "5070", statOrder = { 5070 }, level = 1, group = "AfflictionNotableWoundAggravation", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_axe_and_sword_damage", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 0, 0, 1356, 1111, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableOverlord"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overlord", statOrderKey = "4956", statOrder = { 4956 }, level = 1, group = "AfflictionNotableOverlord", weightKey = { "no_attack_mods", "affliction_mace_and_staff_damage", "default", }, weightVal = { 0, 169, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableExpansiveMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expansive Might", statOrderKey = "4880", statOrder = { 4880 }, level = 1, group = "AfflictionNotableExpansiveMight", weightKey = { "no_attack_mods", "affliction_mace_and_staff_damage", "affliction_area_damage", "default", }, weightVal = { 0, 339, 714, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableWeightAdvantage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Weight Advantage", statOrderKey = "5061", statOrder = { 5061 }, level = 1, group = "AfflictionNotableWeightAdvantage", weightKey = { "no_attack_mods", "affliction_mace_and_staff_damage", "default", }, weightVal = { 0, 1356, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableWindup_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wind-up", statOrderKey = "5066", statOrder = { 5066 }, level = 1, group = "AfflictionNotableWindup", weightKey = { "no_attack_mods", "affliction_dagger_and_claw_damage", "default", }, weightVal = { 0, 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", }, }, + ["AfflictionNotableFanofBlades_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan of Blades", statOrderKey = "4887", statOrder = { 4887 }, level = 1, group = "AfflictionNotableFanofBlades", weightKey = { "no_attack_mods", "affliction_dagger_and_claw_damage", "default", }, weightVal = { 0, 182, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableDiseaseVector"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disease Vector", statOrderKey = "4861", statOrder = { 4861 }, level = 1, group = "AfflictionNotableDiseaseVector", weightKey = { "no_attack_mods", "affliction_dagger_and_claw_damage", "default", }, weightVal = { 0, 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", }, }, + ["AfflictionNotableArcingShot__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcing Shot", statOrderKey = "4808", statOrder = { 4808 }, level = 1, group = "AfflictionNotableArcingShot", weightKey = { "no_attack_mods", "affliction_bow_damage", "default", }, weightVal = { 0, 625, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableTemperedArrowheads"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Tempered Arrowheads", statOrderKey = "5036", statOrder = { 5036 }, level = 1, group = "AfflictionNotableTemperedArrowheads", weightKey = { "no_attack_mods", "affliction_bow_damage", "default", }, weightVal = { 0, 625, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBroadside_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Broadside", statOrderKey = "4825", statOrder = { 4825 }, level = 1, group = "AfflictionNotableBroadside", weightKey = { "no_attack_mods", "affliction_bow_damage", "default", }, weightVal = { 0, 1250, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableExplosiveForce"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Explosive Force", statOrderKey = "4883", statOrder = { 4883 }, level = 1, group = "AfflictionNotableExplosiveForce", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_wand_damage", "default", }, weightVal = { 0, 0, 323, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableOpportunisticFusilade_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Opportunistic Fusilade", statOrderKey = "4955", statOrder = { 4955 }, level = 1, group = "AfflictionNotableOpportunisticFusilade", weightKey = { "no_attack_mods", "affliction_wand_damage", "default", }, weightVal = { 0, 1290, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableStormsHand"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm's Hand", statOrderKey = "5026", statOrder = { 5026 }, level = 1, group = "AfflictionNotableStormsHand", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_wand_damage", "default", }, weightVal = { 0, 0, 645, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBattlefieldDominator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battlefield Dominator", statOrderKey = "4813", statOrder = { 4813 }, level = 1, group = "AfflictionNotableBattlefieldDominator", weightKey = { "no_attack_mods", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 0, 976, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableMartialMastery"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Mastery", statOrderKey = "4936", statOrder = { 4936 }, level = 1, group = "AfflictionNotableMartialMastery", weightKey = { "no_attack_mods", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 0, 488, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSurefootedStriker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surefooted Striker", statOrderKey = "5033", statOrder = { 5033 }, level = 1, group = "AfflictionNotableSurefootedStriker", weightKey = { "no_attack_mods", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 0, 488, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableGracefulExecution_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Graceful Execution", statOrderKey = "4906", statOrder = { 4906 }, level = 1, group = "AfflictionNotableGracefulExecution", weightKey = { "no_attack_mods", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 0, 976, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBrutalInfamy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brutal Infamy", statOrderKey = "4827", statOrder = { 4827 }, level = 1, group = "AfflictionNotableBrutalInfamy", weightKey = { "no_attack_mods", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 0, 488, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableFearsomeWarrior"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fearsome Warrior", statOrderKey = "4890", statOrder = { 4890 }, level = 1, group = "AfflictionNotableFearsomeWarrior", weightKey = { "no_attack_mods", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 0, 244, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableCombatRhythm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Combat Rhythm", statOrderKey = "4841", statOrder = { 4841 }, level = 1, group = "AfflictionNotableCombatRhythm", weightKey = { "no_attack_mods", "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 0, 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", }, }, + ["AfflictionNotableHitandRun"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hit and Run", statOrderKey = "4917", statOrder = { 4917 }, level = 1, group = "AfflictionNotableHitandRun", weightKey = { "no_attack_mods", "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 0, 1000, 2353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableInsatiableKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insatiable Killer", statOrderKey = "4922", statOrder = { 4922 }, level = 1, group = "AfflictionNotableInsatiableKiller", weightKey = { "no_attack_mods", "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 0, 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", }, }, + ["AfflictionNotableMageBane__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Bane", statOrderKey = "4933", statOrder = { 4933 }, level = 1, group = "AfflictionNotableMageBane", weightKey = { "no_attack_mods", "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_block", "default", }, weightVal = { 0, 250, 290, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableMartialMomentum"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Momentum", statOrderKey = "4937", statOrder = { 4937 }, level = 1, group = "AfflictionNotableMartialMomentum", weightKey = { "no_attack_mods", "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 0, 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", }, }, + ["AfflictionNotableDeadlyRepartee"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deadly Repartee", statOrderKey = "4856", statOrder = { 4856 }, level = 1, group = "AfflictionNotableDeadlyRepartee", weightKey = { "no_attack_mods", "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 0, 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", }, }, + ["AfflictionNotableQuickandDeadly_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick and Deadly", statOrderKey = "4981", statOrder = { 4981 }, level = 1, group = "AfflictionNotableQuickandDeadly", weightKey = { "no_attack_mods", "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSmitetheWeak"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Smite the Weak", statOrderKey = "5014", statOrder = { 5014 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_attack_mods", "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_", "default", }, weightVal = { 0, 1667, 1356, 1356, 1455, 1250, 1290, 976, 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", }, }, + ["AfflictionNotableHeavyHitter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Heavy Hitter", statOrderKey = "4913", statOrder = { 4913 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_attack_mods", "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_", "default", }, weightVal = { 0, 833, 678, 678, 727, 625, 645, 488, 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", }, }, + ["AfflictionNotableMartialProwess"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Martial Prowess", statOrderKey = "4938", statOrder = { 4938 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_attack_mods", "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_", "default", }, weightVal = { 0, 1667, 1356, 1356, 1455, 1250, 1290, 976, 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", }, }, + ["AfflictionNotableCalamitous"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Calamitous", statOrderKey = "4830", statOrder = { 4830 }, level = 1, group = "AfflictionNotableCalamitous", weightKey = { "no_attack_mods", "no_elemental_damage_mods", "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_", "default", }, weightVal = { 0, 0, 833, 678, 678, 727, 625, 645, 488, 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", }, }, + ["AfflictionNotableDevastator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Devastator", statOrderKey = "4859", statOrder = { 4859 }, level = 1, group = "AfflictionNotableDevastator", weightKey = { "no_attack_mods", "no_physical_damage_mods", "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_", "default", }, weightVal = { 0, 0, 208, 169, 169, 182, 156, 161, 122, 125, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableFueltheFight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fuel the Fight", statOrderKey = "4901", statOrder = { 4901 }, level = 1, group = "AfflictionNotableFueltheFight", weightKey = { "no_attack_mods", "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_", "default", }, weightVal = { 0, 1667, 1356, 1356, 1455, 1250, 1290, 976, 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", }, }, + ["AfflictionNotableDrivetheDestruction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Drive the Destruction", statOrderKey = "4868", statOrder = { 4868 }, level = 1, group = "AfflictionNotableDrivetheDestruction", weightKey = { "no_attack_mods", "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_", "default", }, weightVal = { 0, 1667, 1356, 1356, 1455, 1250, 1290, 976, 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", }, }, + ["AfflictionNotableFeedtheFury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feed the Fury", statOrderKey = "4893", statOrder = { 4893 }, level = 1, group = "AfflictionNotableFeedtheFury", weightKey = { "no_attack_mods", "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_", "default", }, weightVal = { 0, 833, 678, 678, 727, 625, 645, 488, 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", }, }, + ["AfflictionNotableSealMender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seal Mender", statOrderKey = "5003", statOrder = { 5003 }, level = 1, group = "AfflictionNotableSealMender", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 286, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableConjuredWall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conjured Wall", statOrderKey = "4844", statOrder = { 4844 }, level = 1, group = "AfflictionNotableConjuredWall", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 1143, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableArcaneHeroism_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Heroism", statOrderKey = "4806", statOrder = { 4806 }, level = 1, group = "AfflictionNotableArcaneHeroism", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 571, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePracticedCaster"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Practiced Caster", statOrderKey = "4964", statOrder = { 4964 }, level = 1, group = "AfflictionNotablePracticedCaster", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 2286, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBurdenProjection"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burden Projection", statOrderKey = "4828", statOrder = { 4828 }, level = 1, group = "AfflictionNotableBurdenProjection", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 1143, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableThaumophage"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Thaumophage", statOrderKey = "5037", statOrder = { 5037 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 1143, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableEssenceRush"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Essence Rush", statOrderKey = "4877", statOrder = { 4877 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 1143, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSapPsyche"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Sap Psyche", statOrderKey = "4999", statOrder = { 4999 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_caster_mods", "affliction_spell_damage", "default", }, weightVal = { 0, 571, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSadist_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sadist", statOrderKey = "4997", statOrder = { 4997 }, level = 1, group = "AfflictionNotableSadist", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 0, 588, 303, 345, 435, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableCorrosiveElements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Corrosive Elements", statOrderKey = "4847", statOrder = { 4847 }, level = 1, group = "AfflictionNotableCorrosiveElements", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 0, 294, 152, 172, 217, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableDoryanisLesson_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Doryani's Lesson", statOrderKey = "4865", statOrder = { 4865 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 0, 588, 303, 345, 435, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableDisorientingDisplay____"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Disorienting Display", statOrderKey = "4862", statOrder = { 4862 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 0, 1176, 606, 690, 870, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePrismaticHeart__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Heart", statOrderKey = "4972", statOrder = { 4972 }, level = 1, group = "AfflictionNotablePrismaticHeart", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 0, 2353, 1212, 1379, 1739, 1600, 1600, 1538, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableWidespreadDestruction"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Widespread Destruction", statOrderKey = "5064", statOrder = { 5064 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 0, 2353, 1212, 1379, 1739, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableMasterofFire"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fire", statOrderKey = "4941", statOrder = { 4941 }, level = 1, group = "AfflictionNotableMasterofFire", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 0, 217, 133, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSmokingRemains"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Smoking Remains", statOrderKey = "5015", statOrder = { 5015 }, level = 1, group = "AfflictionNotableSmokingRemains", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 0, 870, 533, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableCremator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cremator", statOrderKey = "4848", statOrder = { 4848 }, level = 1, group = "AfflictionNotableCremator", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 0, 870, 533, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSnowstorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snowstorm", statOrderKey = "5017", statOrder = { 5017 }, level = 1, group = "AfflictionNotableSnowstorm", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 0, 606, 690, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableStormDrinker___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm Drinker", statOrderKey = "5024", statOrder = { 5024 }, level = 1, group = "AfflictionNotableStormDrinker", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "default", }, weightVal = { 0, 1212, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableParalysis"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Paralysis", statOrderKey = "4959", statOrder = { 4959 }, level = 1, group = "AfflictionNotableParalysis", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "default", }, weightVal = { 0, 606, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSupercharge"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Supercharge", statOrderKey = "5032", statOrder = { 5032 }, level = 1, group = "AfflictionNotableSupercharge", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "default", }, weightVal = { 0, 303, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBlanketedSnow_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blanketed Snow", statOrderKey = "4815", statOrder = { 4815 }, level = 1, group = "AfflictionNotableBlanketedSnow", weightKey = { "no_elemental_damage_mods", "affliction_cold_damage", "default", }, weightVal = { 0, 345, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableColdtotheCore"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold to the Core", statOrderKey = "4840", statOrder = { 4840 }, level = 1, group = "AfflictionNotableColdtotheCore", weightKey = { "no_elemental_damage_mods", "affliction_cold_damage", "default", }, weightVal = { 0, 345, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableColdBloodedKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold-Blooded Killer", statOrderKey = "4838", statOrder = { 4838 }, level = 1, group = "AfflictionNotableColdBloodedKiller", weightKey = { "no_elemental_damage_mods", "affliction_cold_damage", "affliction_maximum_life", "default", }, weightVal = { 0, 690, 556, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableTouchofCruelty_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Touch of Cruelty", statOrderKey = "5040", statOrder = { 5040 }, level = 1, group = "AfflictionNotableTouchofCruelty", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 2286, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableUnwaveringlyEvil"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwaveringly Evil", statOrderKey = "5046", statOrder = { 5046 }, level = 1, group = "AfflictionNotableUnwaveringlyEvil", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 2286, 1111, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableUnspeakableGifts"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unspeakable Gifts", statOrderKey = "5043", statOrder = { 5043 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 286, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableDarkIdeation"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Ideation", statOrderKey = "4853", statOrder = { 4853 }, level = 1, group = "AfflictionNotableDarkIdeation", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 571, 278, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableUnholyGrace_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unholy Grace", statOrderKey = "5042", statOrder = { 5042 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 2286, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableWickedPall_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wicked Pall", statOrderKey = "5063", statOrder = { 5063 }, level = 1, group = "AfflictionNotableWickedPall", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 1143, 556, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableRenewal"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Renewal", statOrderKey = "4989", statOrder = { 4989 }, level = 1, group = "AfflictionNotableRenewal", weightKey = { "affliction_minion_damage", "affliction_minion_life", "default", }, weightVal = { 1290, 1176, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableRazeandPillage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Raze and Pillage", statOrderKey = "4985", statOrder = { 4985 }, level = 1, group = "AfflictionNotableRazeandPillage", weightKey = { "no_physical_damage_mods", "no_elemental_damage_mods", "affliction_minion_damage", "default", }, weightVal = { 0, 0, 645, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableRottenClaws"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rotten Claws", statOrderKey = "4995", statOrder = { 4995 }, level = 1, group = "AfflictionNotableRottenClaws", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_minion_damage", "default", }, weightVal = { 0, 0, 1290, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableCalltotheSlaughter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Call to the Slaughter", statOrderKey = "4831", statOrder = { 4831 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 2581, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSkeletalAtrophy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skeletal Atrophy", statOrderKey = "5011", statOrder = { 5011 }, level = 1, group = "AfflictionNotableSkeletalAtrophy", weightKey = { "no_physical_damage_mods", "affliction_minion_damage", "default", }, weightVal = { 0, 645, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableHulkingCorpses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hulking Corpses", statOrderKey = "4920", statOrder = { 4920 }, level = 1, group = "AfflictionNotableHulkingCorpses", weightKey = { "affliction_minion_life", "default", }, weightVal = { 1176, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableViciousBite"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Vicious Bite", statOrderKey = "5050", statOrder = { 5050 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 323, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePrimordialBond"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Primordial Bond", statOrderKey = "4969", statOrder = { 4969 }, level = 1, group = "AfflictionNotableLargeSuffix", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 645, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBlowback"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blowback", statOrderKey = "4820", statOrder = { 4820 }, level = 1, group = "AfflictionNotableBlowback", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 0, 533, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableFantheFlames_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan the Flames", statOrderKey = "4888", statOrder = { 4888 }, level = 1, group = "AfflictionNotableFantheFlames", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 0, 267, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableCookedAlive"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cooked Alive", statOrderKey = "4846", statOrder = { 4846 }, level = 1, group = "AfflictionNotableCookedAlive", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 0, 1067, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBurningBright"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burning Bright", statOrderKey = "4829", statOrder = { 4829 }, level = 1, group = "AfflictionNotableBurningBright", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage_over_time_multiplier", "affliction_fire_damage", "default", }, weightVal = { 0, 533, 870, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableWrappedinFlame_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wrapped in Flame", statOrderKey = "5071", statOrder = { 5071 }, level = 1, group = "AfflictionNotableWrappedinFlame", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 0, 267, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableVividHues"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vivid Hues", statOrderKey = "5056", statOrder = { 5056 }, level = 1, group = "AfflictionNotableVividHues", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 0, 0, 556, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableRend"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rend", statOrderKey = "4988", statOrder = { 4988 }, level = 1, group = "AfflictionNotableRend", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 0, 0, 556, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableDisorientingWounds"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disorienting Wounds", statOrderKey = "4863", statOrder = { 4863 }, level = 1, group = "AfflictionNotableDisorientingWounds", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 0, 0, 1111, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableCompoundInjury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Compound Injury", statOrderKey = "4842", statOrder = { 4842 }, level = 1, group = "AfflictionNotableCompoundInjury", weightKey = { "no_attack_mods", "no_physical_damage_mods", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 0, 0, 556, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSepticSpells"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Septic Spells", statOrderKey = "5007", statOrder = { 5007 }, level = 1, group = "AfflictionNotableSepticSpells", weightKey = { "no_caster_mods", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 0, 556, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableLowTolerance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Low Tolerance", statOrderKey = "4932", statOrder = { 4932 }, level = 1, group = "AfflictionNotableLowTolerance", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 278, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSteadyTorment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Steady Torment", statOrderKey = "5022", statOrder = { 5022 }, level = 1, group = "AfflictionNotableSteadyTorment", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 278, 278, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableEternalSuffering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eternal Suffering", statOrderKey = "4878", statOrder = { 4878 }, level = 1, group = "AfflictionNotableEternalSuffering", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 556, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableEldritchInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eldritch Inspiration", statOrderKey = "4869", statOrder = { 4869 }, level = 1, group = "AfflictionNotableEldritchInspiration", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_mana", "default", }, weightVal = { 556, 714, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableWastingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wasting Affliction", statOrderKey = "5060", statOrder = { 5060 }, level = 1, 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 = { 476, 500, 278, 267, 278, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableHaemorrhage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haemorrhage", statOrderKey = "4910", statOrder = { 4910 }, level = 1, 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 = { 952, 1000, 556, 533, 556, 741, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableFlowofLife_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flow of Life", statOrderKey = "4898", statOrder = { 4898 }, level = 1, 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 = { 476, 500, 278, 267, 278, 278, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableExposureTherapy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Exposure Therapy", statOrderKey = "4884", statOrder = { 4884 }, 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 = { 1905, 2000, 1111, 1067, 1111, 2857, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBrushwithDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brush with Death", statOrderKey = "4826", statOrder = { 4826 }, level = 1, 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 = { 476, 500, 278, 267, 278, 278, 392, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableVileReinvigoration_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vile Reinvigoration", statOrderKey = "5054", statOrder = { 5054 }, level = 1, 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 = { 952, 1000, 556, 533, 556, 784, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableCirclingOblivion"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Circling Oblivion", statOrderKey = "4836", statOrder = { 4836 }, 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 = { 1905, 2000, 1111, 1067, 1111, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBrewedforPotency"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brewed for Potency", statOrderKey = "4824", statOrder = { 4824 }, 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 = { 1905, 2000, 1111, 1067, 1111, 1538, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAstonishingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Astonishing Affliction", statOrderKey = "4810", statOrder = { 4810 }, level = 1, group = "AfflictionNotableAstonishingAffliction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 2353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableColdConduction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold Conduction", statOrderKey = "4839", statOrder = { 4839 }, level = 1, group = "AfflictionNotableColdConduction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 1176, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableInspiredOppression"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Inspired Oppression", statOrderKey = "4923", statOrder = { 4923 }, level = 1, group = "AfflictionNotableInspiredOppression", weightKey = { "no_elemental_damage_mods", "affliction_effect_of_non-damaging_ailments", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 0, 294, 294, 152, 172, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableChillingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chilling Presence", statOrderKey = "4834", statOrder = { 4834 }, level = 1, group = "AfflictionNotableChillingPresence", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 294, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableDeepChill"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Chill", statOrderKey = "4857", statOrder = { 4857 }, level = 1, group = "AfflictionNotableDeepChill", weightKey = { "no_elemental_damage_mods", "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "default", }, weightVal = { 0, 2353, 1379, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBlastFreeze_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blast-Freeze", statOrderKey = "4816", statOrder = { 4816 }, level = 1, group = "AfflictionNotableBlastFreeze", weightKey = { "no_elemental_damage_mods", "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 0, 345, 500, 588, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableThunderstruck"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Thunderstruck", statOrderKey = "5038", statOrder = { 5038 }, level = 1, group = "AfflictionNotableThunderstruck", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "default", }, weightVal = { 0, 606, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableStormrider"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stormrider", statOrderKey = "5025", statOrder = { 5025 }, level = 1, group = "AfflictionNotableStormrider", weightKey = { "no_elemental_damage_mods", "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "affliction_lightning_damage", "default", }, weightVal = { 0, 588, 345, 303, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableOvershock"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overshock", statOrderKey = "4957", statOrder = { 4957 }, level = 1, group = "AfflictionNotableOvershock", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 0, 606, 1176, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableEvilEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Evil Eye", statOrderKey = "4879", statOrder = { 4879 }, level = 1, group = "AfflictionNotableEvilEye", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 2500, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableWhispersofDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Whispers of Death", statOrderKey = "5062", statOrder = { 5062 }, level = 1, group = "AfflictionNotableWhispersofDeath", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 2500, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableWardbreaker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Forbidden Words", statOrderKey = "5058", statOrder = { 5058 }, level = 1, group = "AfflictionNotableWardbreaker", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 625, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableDarkDiscourse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Discourse", statOrderKey = "4852", statOrder = { 4852 }, level = 1, group = "AfflictionNotableDarkDiscourse", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 1250, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableVictimMaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Victim Maker", statOrderKey = "5053", statOrder = { 5053 }, level = 1, group = "AfflictionNotableVictimMaker", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 1250, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableMasterofFear"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fear", statOrderKey = "4940", statOrder = { 4940 }, level = 1, group = "AfflictionNotableMasterofFear", weightKey = { "no_attack_mods", "no_caster_mods", "affliction_curse_effect", "default", }, weightVal = { 0, 0, 625, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableWishforDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wish for Death", statOrderKey = "5068", statOrder = { 5068 }, level = 1, group = "AfflictionNotableWishforDeath", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 1250, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableHeraldry"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heraldry", statOrderKey = "4914", statOrder = { 4914 }, level = 1, group = "AfflictionNotableHeraldry", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 357, 476, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableEndbringer"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Endbringer", statOrderKey = "4872", statOrder = { 4872 }, level = 1, group = "AfflictionNotableEndbringer", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 714, 952, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableCultLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cult-Leader", statOrderKey = "4850", statOrder = { 4850 }, level = 1, group = "AfflictionNotableCultLeader", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 3810, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableEmpoweredEnvoy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Empowered Envoy", statOrderKey = "4871", statOrder = { 4871 }, level = 1, group = "AfflictionNotableEmpoweredEnvoy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 2857, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableDarkMessenger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Messenger", statOrderKey = "4854", statOrder = { 4854 }, level = 1, group = "AfflictionNotableDarkMessenger", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 1429, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAgentofDestruction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Agent of Destruction", statOrderKey = "4795", statOrder = { 4795 }, level = 1, group = "AfflictionNotableAgentofDestruction", weightKey = { "no_elemental_damage_mods", "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 0, 2857, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableLastingImpression_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lasting Impression", statOrderKey = "4928", statOrder = { 4928 }, level = 1, group = "AfflictionNotableLastingImpression", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 714, 952, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSelfFulfillingProphecy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Self-Fulfilling Prophecy", statOrderKey = "5006", statOrder = { 5006 }, level = 1, group = "AfflictionNotableSelfFulfillingProphecy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 714, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableInvigoratingPortents"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Invigorating Portents", statOrderKey = "4926", statOrder = { 4926 }, level = 1, group = "AfflictionNotableInvigoratingPortents", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 1905, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePureAgony_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Agony", statOrderKey = "4975", statOrder = { 4975 }, level = 1, group = "AfflictionNotablePureAgony", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 476, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableDisciples_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disciples", statOrderKey = "4860", statOrder = { 4860 }, level = 1, group = "AfflictionNotableDisciples", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 952, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableDreadMarch_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dread March", statOrderKey = "4867", statOrder = { 4867 }, level = 1, group = "AfflictionNotableDreadMarch", weightKey = { "affliction_minion_life", "default", }, weightVal = { 2353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBlessedRebirth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed Rebirth", statOrderKey = "4818", statOrder = { 4818 }, level = 1, group = "AfflictionNotableBlessedRebirth", weightKey = { "affliction_minion_life", "default", }, weightVal = { 588, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableLifefromDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Life from Death", statOrderKey = "4930", statOrder = { 4930 }, level = 1, group = "AfflictionNotableLifefromDeath", weightKey = { "affliction_minion_life", "default", }, weightVal = { 1176, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableFeastingFiends"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feasting Fiends", statOrderKey = "4892", statOrder = { 4892 }, level = 1, group = "AfflictionNotableFeastingFiends", weightKey = { "affliction_minion_life", "affliction_minion_damage", "default", }, weightVal = { 2353, 2581, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBodyguards"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bodyguards", statOrderKey = "4821", statOrder = { 4821 }, level = 1, group = "AfflictionNotableBodyguards", weightKey = { "affliction_minion_life", "default", }, weightVal = { 1176, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableFollowThrough_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Follow-Through", statOrderKey = "4899", statOrder = { 4899 }, level = 1, group = "AfflictionNotableFollowThrough", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 714, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableStreamlined"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Streamlined", statOrderKey = "5027", statOrder = { 5027 }, level = 1, group = "AfflictionNotableStreamlined", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 2857, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableShriekingBolts_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shrieking Bolts", statOrderKey = "5010", statOrder = { 5010 }, level = 1, group = "AfflictionNotableShriekingBolts", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1429, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableEyetoEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye to Eye", statOrderKey = "4886", statOrder = { 4886 }, level = 1, group = "AfflictionNotableEyetoEye", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1429, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableRepeater"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Repeater", statOrderKey = "4990", statOrder = { 4990 }, level = 1, group = "AfflictionNotableRepeater", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 2857, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAerodynamics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerodynamics", statOrderKey = "4794", statOrder = { 4794 }, level = 1, group = "AfflictionNotableAerodynamics", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 714, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableChipAway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chip Away", statOrderKey = "4835", statOrder = { 4835 }, level = 1, group = "AfflictionNotableChipAway", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1667, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSeekerRunes"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seeker Runes", statOrderKey = "5005", statOrder = { 5005 }, level = 1, group = "AfflictionNotableSeekerRunes", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 833, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableRemarkable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Remarkable", statOrderKey = "4987", statOrder = { 4987 }, level = 1, group = "AfflictionNotableRemarkable", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1667, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBrandLoyalty"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brand Loyalty", statOrderKey = "4823", statOrder = { 4823 }, level = 1, group = "AfflictionNotableBrandLoyalty", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 3333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableHolyConquest"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holy Conquest", statOrderKey = "4919", statOrder = { 4919 }, level = 1, group = "AfflictionNotableHolyConquest", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1667, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableGrandDesign_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Grand Design", statOrderKey = "4907", statOrder = { 4907 }, level = 1, group = "AfflictionNotableGrandDesign", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 833, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSetandForget_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Set and Forget", statOrderKey = "5008", statOrder = { 5008 }, level = 1, group = "AfflictionNotableSetandForget", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 1538, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableExpertSabotage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expert Sabotage", statOrderKey = "4882", statOrder = { 4882 }, level = 1, group = "AfflictionNotableExpertSabotage", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 1538, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableGuerillaTactics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Guerilla Tactics", statOrderKey = "4909", statOrder = { 4909 }, level = 1, group = "AfflictionNotableGuerillaTactics", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 3077, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableExpendability"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expendability", statOrderKey = "4881", statOrder = { 4881 }, level = 1, group = "AfflictionNotableExpendability", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 769, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableArcanePyrotechnics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Pyrotechnics", statOrderKey = "4807", statOrder = { 4807 }, level = 1, group = "AfflictionNotableArcanePyrotechnics", weightKey = { "no_caster_mods", "affliction_trap_and_mine_damage", "default", }, weightVal = { 0, 769, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSurpriseSabotage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surprise Sabotage", statOrderKey = "5035", statOrder = { 5035 }, level = 1, group = "AfflictionNotableSurpriseSabotage", weightKey = { "no_elemental_damage_mods", "affliction_trap_and_mine_damage", "default", }, weightVal = { 0, 1538, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableCarefulHandling"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Careful Handling", statOrderKey = "4833", statOrder = { 4833 }, level = 1, group = "AfflictionNotableCarefulHandling", weightKey = { "affliction_trap_and_mine_damage", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 769, 357, 278, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePeakVigour"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peak Vigour", statOrderKey = "4961", statOrder = { 4961 }, level = 1, group = "AfflictionNotablePeakVigour", weightKey = { "affliction_maximum_life", "affliction_flask_duration", "default", }, weightVal = { 1111, 1538, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableFettle"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fettle", statOrderKey = "4894", statOrder = { 4894 }, level = 1, group = "AfflictionNotableFettle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 139, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableFeastofFlesh"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feast of Flesh", statOrderKey = "4891", statOrder = { 4891 }, level = 1, group = "AfflictionNotableFeastofFlesh", weightKey = { "no_attack_mods", "affliction_maximum_life", "default", }, weightVal = { 0, 278, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSublimeSensation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sublime Sensation", statOrderKey = "5031", statOrder = { 5031 }, level = 1, group = "AfflictionNotableSublimeSensation", weightKey = { "affliction_maximum_life", "affliction_maximum_energy_shield", "default", }, weightVal = { 556, 784, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSurgingVitality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surging Vitality", statOrderKey = "5034", statOrder = { 5034 }, level = 1, group = "AfflictionNotableSurgingVitality", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 1111, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePeaceAmidstChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peace Amidst Chaos", statOrderKey = "4960", statOrder = { 4960 }, level = 1, group = "AfflictionNotablePeaceAmidstChaos", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 556, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAdrenaline_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Adrenaline", statOrderKey = "4791", statOrder = { 4791 }, level = 1, group = "AfflictionNotableAdrenaline", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 278, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableWallofMuscle_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wall of Muscle", statOrderKey = "5057", statOrder = { 5057 }, level = 1, group = "AfflictionNotableWallofMuscle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 139, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableMindfulness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mindfulness", statOrderKey = "4945", statOrder = { 4945 }, level = 1, group = "AfflictionNotableMindfulness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 714, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableLiquidInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Liquid Inspiration", statOrderKey = "4931", statOrder = { 4931 }, level = 1, group = "AfflictionNotableLiquidInspiration", weightKey = { "affliction_maximum_mana", "affliction_flask_duration", "default", }, weightVal = { 357, 385, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableOpenness__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Openness", statOrderKey = "4954", statOrder = { 4954 }, level = 1, group = "AfflictionNotableOpenness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 1429, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableDaringIdeas"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Daring Ideas", statOrderKey = "4851", statOrder = { 4851 }, level = 1, group = "AfflictionNotableDaringIdeas", weightKey = { "no_attack_mods", "affliction_maximum_mana", "default", }, weightVal = { 0, 714, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableClarityofPurpose"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Clarity of Purpose", statOrderKey = "4837", statOrder = { 4837 }, level = 1, group = "AfflictionNotableClarityofPurpose", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 1429, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableScintillatingIdea_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Scintillating Idea", statOrderKey = "5002", statOrder = { 5002 }, level = 1, group = "AfflictionNotableScintillatingIdea", weightKey = { "no_elemental_damage_mods", "affliction_maximum_mana", "affliction_lightning_damage", "default", }, weightVal = { 0, 714, 606, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableHolisticHealth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holistic Health", statOrderKey = "4918", statOrder = { 4918 }, level = 1, group = "AfflictionNotableHolisticHealth", weightKey = { "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 357, 278, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableGenius"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Genius", statOrderKey = "4903", statOrder = { 4903 }, level = 1, group = "AfflictionNotableGenius", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 179, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableImprovisor"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Improvisor", statOrderKey = "4921", statOrder = { 4921 }, level = 1, group = "AfflictionNotableImprovisor", weightKey = { "no_attack_mods", "affliction_maximum_mana", "default", }, weightVal = { 0, 357, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableStubbornStudent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stubborn Student", statOrderKey = "5029", statOrder = { 5029 }, level = 1, group = "AfflictionNotableStubbornStudent", weightKey = { "affliction_maximum_mana", "affliction_armour", "default", }, weightVal = { 357, 526, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSavourtheMoment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savour the Moment", statOrderKey = "5001", statOrder = { 5001 }, level = 1, group = "AfflictionNotableSavourtheMoment", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1569, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableEnergyFromNaught"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Energy From Naught", statOrderKey = "4876", statOrder = { 4876 }, level = 1, group = "AfflictionNotableEnergyFromNaught", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 784, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableWillShaper"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Will Shaper", statOrderKey = "5065", statOrder = { 5065 }, level = 1, group = "AfflictionNotableWillShaper", weightKey = { "affliction_maximum_energy_shield", "affliction_maximum_mana", "default", }, weightVal = { 196, 179, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSpringBack_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spring Back", statOrderKey = "5020", statOrder = { 5020 }, level = 1, group = "AfflictionNotableSpringBack", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1569, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableConservationofEnergy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conservation of Energy", statOrderKey = "4845", statOrder = { 4845 }, level = 1, group = "AfflictionNotableConservationofEnergy", weightKey = { "no_caster_mods", "affliction_maximum_energy_shield", "default", }, weightVal = { 0, 784, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableHeartofIron"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heart of Iron", statOrderKey = "4912", statOrder = { 4912 }, level = 1, group = "AfflictionNotableHeartofIron", weightKey = { "affliction_maximum_life", "affliction_armour", "default", }, weightVal = { 278, 526, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePrismaticCarapace_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Carapace", statOrderKey = "4970", statOrder = { 4970 }, level = 1, group = "AfflictionNotablePrismaticCarapace", weightKey = { "affliction_armour", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 526, 400, 400, 385, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableMilitarism"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Militarism", statOrderKey = "4944", statOrder = { 4944 }, level = 1, group = "AfflictionNotableMilitarism", weightKey = { "affliction_armour", "default", }, weightVal = { 1053, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSecondSkin"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Second Skin", statOrderKey = "5004", statOrder = { 5004 }, level = 1, group = "AfflictionNotableSecondSkin", weightKey = { "affliction_armour", "affliction_chance_to_block", "default", }, weightVal = { 2105, 1159, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableDragonHunter__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dragon Hunter", statOrderKey = "4866", statOrder = { 4866 }, level = 1, group = "AfflictionNotableDragonHunter", weightKey = { "affliction_armour", "affliction_fire_resistance", "default", }, weightVal = { 1053, 769, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableEnduringComposure"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Composure", statOrderKey = "4873", statOrder = { 4873 }, level = 1, group = "AfflictionNotableEnduringComposure", weightKey = { "affliction_armour", "default", }, weightVal = { 526, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePrismaticDance____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Dance", statOrderKey = "4971", statOrder = { 4971 }, level = 1, group = "AfflictionNotablePrismaticDance", weightKey = { "affliction_evasion", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 526, 400, 400, 385, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableNaturalVigour_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Natural Vigour", statOrderKey = "4949", statOrder = { 4949 }, level = 1, group = "AfflictionNotableNaturalVigour", weightKey = { "affliction_evasion", "affliction_maximum_life", "default", }, weightVal = { 1053, 556, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableUntouchable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Untouchable", statOrderKey = "5044", statOrder = { 5044 }, level = 1, group = "AfflictionNotableUntouchable", weightKey = { "affliction_evasion", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 2105, 2353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableShiftingShadow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shifting Shadow", statOrderKey = "5009", statOrder = { 5009 }, level = 1, group = "AfflictionNotableShiftingShadow", weightKey = { "affliction_evasion", "default", }, weightVal = { 1053, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableReadiness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Readiness", statOrderKey = "4986", statOrder = { 4986 }, level = 1, group = "AfflictionNotableReadiness", weightKey = { "affliction_evasion", "default", }, weightVal = { 2105, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableConfidentCombatant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Confident Combatant", statOrderKey = "4843", statOrder = { 4843 }, level = 1, group = "AfflictionNotableConfidentCombatant", weightKey = { "no_attack_mods", "affliction_chance_to_block", "default", }, weightVal = { 0, 290, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableFlexibleSentry___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flexible Sentry", statOrderKey = "4897", statOrder = { 4897 }, level = 1, group = "AfflictionNotableFlexibleSentry", weightKey = { "affliction_chance_to_block", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 580, 800, 800, 769, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableViciousGuard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Guard", statOrderKey = "5051", statOrder = { 5051 }, level = 1, group = "AfflictionNotableViciousGuard", weightKey = { "no_attack_mods", "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 0, 1159, 1111, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableMysticalWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mystical Ward", statOrderKey = "4948", statOrder = { 4948 }, level = 1, group = "AfflictionNotableMysticalWard", weightKey = { "no_caster_mods", "affliction_chance_to_block", "affliction_maximum_energy_shield", "default", }, weightVal = { 0, 1159, 1569, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableRoteReinforcement"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rote Reinforcement", statOrderKey = "4994", statOrder = { 4994 }, level = 1, group = "AfflictionNotableRoteReinforcement", weightKey = { "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 290, 278, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableMageHunter___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Hunter", statOrderKey = "4934", statOrder = { 4934 }, level = 1, group = "AfflictionNotableMageHunter", weightKey = { "no_caster_mods", "affliction_chance_to_block", "affliction_spell_damage", "default", }, weightVal = { 0, 290, 571, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableRiotQueller"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Riot Queller", statOrderKey = "4992", statOrder = { 4992 }, level = 1, group = "AfflictionNotableRiotQueller", weightKey = { "affliction_chance_to_block", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 145, 270, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableOnewiththeShield_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is One with the Shield", statOrderKey = "4953", statOrder = { 4953 }, level = 1, group = "AfflictionNotableOnewiththeShield", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 580, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAerialist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerialist", statOrderKey = "4793", statOrder = { 4793 }, level = 1, group = "AfflictionNotableAerialist", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 294, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableElegantForm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Elegant Form", statOrderKey = "4870", statOrder = { 4870 }, level = 1, group = "AfflictionNotableElegantForm", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 2353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableDartingMovements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Darting Movements", statOrderKey = "4855", statOrder = { 4855 }, level = 1, group = "AfflictionNotableDartingMovements", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 2353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableNoWitnesses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is No Witnesses", statOrderKey = "4950", statOrder = { 4950 }, level = 1, group = "AfflictionNotableNoWitnesses", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 294, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableMoltenOnesMark_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Molten One's Mark", statOrderKey = "4947", statOrder = { 4947 }, level = 1, group = "AfflictionNotableMoltenOnesMark", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 385, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableFireAttunement_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fire Attunement", statOrderKey = "4895", statOrder = { 4895 }, level = 1, group = "AfflictionNotableFireAttunement", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 1538, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePureMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Might", statOrderKey = "4979", statOrder = { 4979 }, level = 1, group = "AfflictionNotablePureMight", weightKey = { "affliction_fire_resistance", "affliction_aura_effect", "default", }, weightVal = { 1538, 1633, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBlacksmith_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blacksmith", statOrderKey = "4814", statOrder = { 4814 }, level = 1, group = "AfflictionNotableBlacksmith", weightKey = { "affliction_fire_resistance", "affliction_armour", "default", }, weightVal = { 385, 526, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableNonFlammable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Non-Flammable", statOrderKey = "4951", statOrder = { 4951 }, level = 1, group = "AfflictionNotableNonFlammable", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 769, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableWinterProwler"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Winter Prowler", statOrderKey = "5067", statOrder = { 5067 }, level = 1, group = "AfflictionNotableWinterProwler", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableHibernator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hibernator", statOrderKey = "4916", statOrder = { 4916 }, level = 1, group = "AfflictionNotableHibernator", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePureGuile"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Guile", statOrderKey = "4978", statOrder = { 4978 }, level = 1, group = "AfflictionNotablePureGuile", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 1600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAlchemist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Alchemist", statOrderKey = "4796", statOrder = { 4796 }, level = 1, group = "AfflictionNotableAlchemist", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 1600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAntifreeze"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antifreeze", statOrderKey = "4803", statOrder = { 4803 }, level = 1, group = "AfflictionNotableAntifreeze", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableWizardry_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wizardry", statOrderKey = "5069", statOrder = { 5069 }, level = 1, group = "AfflictionNotableWizardry", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "default", }, weightVal = { 400, 357, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableCapacitor____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Capacitor", statOrderKey = "4832", statOrder = { 4832 }, level = 1, group = "AfflictionNotableCapacitor", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotablePureAptitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Aptitude", statOrderKey = "4976", statOrder = { 4976 }, level = 1, group = "AfflictionNotablePureAptitude", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 1600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableSage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sage", statOrderKey = "4998", statOrder = { 4998 }, level = 1, group = "AfflictionNotableSage", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 1600, 1429, 1111, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableInsulated"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insulated", statOrderKey = "4924", statOrder = { 4924 }, level = 1, group = "AfflictionNotableInsulated", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBornofChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Born of Chaos", statOrderKey = "4822", statOrder = { 4822 }, level = 1, group = "AfflictionNotableBornofChaos", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 714, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableAntivenom"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antivenom", statOrderKey = "4804", statOrder = { 4804 }, level = 1, group = "AfflictionNotableAntivenom", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 1429, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableRotResistant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rot-Resistant", statOrderKey = "4993", statOrder = { 4993 }, level = 1, group = "AfflictionNotableRotResistant", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 2857, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableBlessed"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed", statOrderKey = "4817", statOrder = { 4817 }, level = 1, group = "AfflictionNotableBlessed", weightKey = { "affliction_chaos_resistance", "affliction_maximum_life", "affliction_maximum_mana", "default", }, weightVal = { 714, 278, 357, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionNotableStudentofDecay"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Student of Decay", statOrderKey = "5030", statOrder = { 5030 }, level = 1, 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 = { 1429, 952, 556, 533, 556, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, }, + ["AfflictionJewelSmallPassivesGrantLife_"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLife2_"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLife3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantMana"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantMana2"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantMana3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantES"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantES2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantES3"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantArmour"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantArmour2"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantArmour3_"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantEvasion"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantEvasion2__"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantEvasion3"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantStr"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantStr2_"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantStr3_"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDex_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDex2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDex3_"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantInt_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantInt2_"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantInt3"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAttributes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAttributes2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAttributes3"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantManaRegen"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantManaRegen2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantManaRegen3_"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegen___"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegen2_"] = { type = "Suffix", affix = "of the Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegen3"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantFireRes"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantFireRes2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantFireRes3"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantColdRes_"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantColdRes2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantColdRes3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLightningRes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLightningRes2_"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLightningRes3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantElementalRes"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantElementalRes2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantElementalRes3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantChaosRes"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantChaosRes2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantChaosRes3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDamage_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDamage2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDamage3"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 75, 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLifeSmall"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLifeSmall2"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLifeSmall3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLifeSmall4"] = { type = "Prefix", affix = "Stalwart", "Added Small Passive Skills also grant: +(11-13) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLifeSmall5_"] = { type = "Prefix", affix = "Stout", "Added Small Passive Skills also grant: +(14-16) to Maximum Life", statOrderKey = "4779", statOrder = { 4779 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantManaSmall"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantManaSmall2_"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantManaSmall3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 73, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantManaSmall4_"] = { type = "Prefix", affix = "Sapphire", "Added Small Passive Skills also grant: +(11-13) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 78, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantManaSmall5_"] = { type = "Prefix", affix = "Cerulean", "Added Small Passive Skills also grant: +(14-16) to Maximum Mana", statOrderKey = "4780", statOrder = { 4780 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantESSmall"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantESSmall2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantESSmall3_"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 73, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantESSmall4"] = { type = "Prefix", affix = "Radiating", "Added Small Passive Skills also grant: +(13-16) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 78, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantESSmall5"] = { type = "Prefix", affix = "Pulsing", "Added Small Passive Skills also grant: +(17-20) to Maximum Energy Shield", statOrderKey = "4778", statOrder = { 4778 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantArmourSmall__"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantArmourSmall2__"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantArmourSmall3"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 73, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantArmourSmall4___"] = { type = "Prefix", affix = "Fortified", "Added Small Passive Skills also grant: +(41-53) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 78, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantArmourSmall5"] = { type = "Prefix", affix = "Plated", "Added Small Passive Skills also grant: +(54-66) to Armour", statOrderKey = "4749", statOrder = { 4749 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall2_"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall3___"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 73, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall4_"] = { type = "Prefix", affix = "Fleet", "Added Small Passive Skills also grant: +(41-53) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 78, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall5"] = { type = "Prefix", affix = "Blurred", "Added Small Passive Skills also grant: +(54-66) to Evasion", statOrderKey = "4773", statOrder = { 4773 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantStrSmall_"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantStrSmall2"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantStrSmall3"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 73, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantStrSmall4_"] = { type = "Suffix", affix = "of the Lion", "Added Small Passive Skills also grant: +(9-11) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 78, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantStrSmall5"] = { type = "Suffix", affix = "of the Gorilla", "Added Small Passive Skills also grant: +(12-14) to Strength", statOrderKey = "4786", statOrder = { 4786 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDexSmall_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDexSmall2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDexSmall3"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDexSmall4_"] = { type = "Suffix", affix = "of the Falcon", "Added Small Passive Skills also grant: +(9-11) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDexSmall5"] = { type = "Suffix", affix = "of the Panther", "Added Small Passive Skills also grant: +(12-14) to Dexterity", statOrderKey = "4771", statOrder = { 4771 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantIntSmall_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantIntSmall2"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantIntSmall3______"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 73, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantIntSmall4_"] = { type = "Suffix", affix = "of the Augur", "Added Small Passive Skills also grant: +(9-11) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 78, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantIntSmall5"] = { type = "Suffix", affix = "of the Philosopher", "Added Small Passive Skills also grant: +(12-14) to Intelligence", statOrderKey = "4775", statOrder = { 4775 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall3_"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 73, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall4"] = { type = "Suffix", affix = "of the Comet", "Added Small Passive Skills also grant: +5 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 78, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall5"] = { type = "Suffix", affix = "of the Heavens", "Added Small Passive Skills also grant: +6 to All Attributes", statOrderKey = "4748", statOrder = { 4748 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall_"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall3"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 73, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall4"] = { type = "Suffix", affix = "of Bliss", "Added Small Passive Skills also grant: (7-8)% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 78, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall5"] = { type = "Suffix", affix = "of Euphoria", "Added Small Passive Skills also grant: (9-10)% increased Mana Regeneration Rate", statOrderKey = "4777", statOrder = { 4777 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall2_"] = { type = "Suffix", affix = "ofthe Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall3_"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall4_"] = { type = "Suffix", affix = "of the Starfish", "Added Small Passive Skills also grant: Regenerate 0.25% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall5"] = { type = "Suffix", affix = "of the Hydra", "Added Small Passive Skills also grant: Regenerate 0.3% of Life per Second", statOrderKey = "4784", statOrder = { 4784 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantFireResSmall"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantFireResSmall2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantFireResSmall3_"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 73, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantFireResSmall4"] = { type = "Suffix", affix = "of the Kiln", "Added Small Passive Skills also grant: +(8-9)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 78, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantFireResSmall5"] = { type = "Suffix", affix = "of the Furnace", "Added Small Passive Skills also grant: +(10-11)% to Fire Resistance", statOrderKey = "4774", statOrder = { 4774 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantColdResSmall"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantColdResSmall2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantColdResSmall3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 73, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantColdResSmall4"] = { type = "Suffix", affix = "of the Yeti", "Added Small Passive Skills also grant: +(8-9)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 78, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantColdResSmall5_"] = { type = "Suffix", affix = "of the Walrus", "Added Small Passive Skills also grant: +(10-11)% to Cold Resistance", statOrderKey = "4767", statOrder = { 4767 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall2__"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall4_"] = { type = "Suffix", affix = "of the Thunderhead", "Added Small Passive Skills also grant: +(8-9)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall5"] = { type = "Suffix", affix = "of the Tempest", "Added Small Passive Skills also grant: +(10-11)% to Lightning Resistance", statOrderKey = "4776", statOrder = { 4776 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 73, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall4"] = { type = "Suffix", affix = "of Variegation", "Added Small Passive Skills also grant: +5% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 78, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall5"] = { type = "Suffix", affix = "of the Rainbow", "Added Small Passive Skills also grant: +6% to Elemental Resistance", statOrderKey = "4772", statOrder = { 4772 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 73, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall4"] = { type = "Suffix", affix = "of Expulsion", "Added Small Passive Skills also grant: +6% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 78, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall5"] = { type = "Suffix", affix = "of Exile", "Added Small Passive Skills also grant: +(7-8)% to Chaos Resistance", statOrderKey = "4765", statOrder = { 4765 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDamageSmall_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDamageSmall2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDamageSmall3_"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDamageSmall4_"] = { type = "Prefix", affix = "Destructive", "Added Small Passive Skills also grant: 5% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 75, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDamageSmall5"] = { type = "Prefix", affix = "Deadly", "Added Small Passive Skills also grant: 6% increased Damage", statOrderKey = "4770", statOrder = { 4770 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesHaveIncreasedEffect"] = { type = "Prefix", affix = "Potent", "Added Small Passive Skills have 25% increased Effect", statOrderKey = "4790", statOrder = { 4790 }, level = 1, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 300 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesHaveIncreasedEffect2"] = { type = "Prefix", affix = "Powerful", "Added Small Passive Skills have 35% increased Effect", statOrderKey = "4790", statOrder = { 4790 }, level = 84, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 100 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAttackSpeed"] = { type = "Suffix", affix = "of Skill", "Added Small Passive Skills also grant: 1% increased Attack Speed", statOrderKey = "4758", statOrder = { 4758 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAttackSpeed2_"] = { type = "Suffix", affix = "of Ease", "Added Small Passive Skills also grant: 2% increased Attack Speed", statOrderKey = "4758", statOrder = { 4758 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAttackSpeed3__"] = { type = "Suffix", affix = "of Mastery", "Added Small Passive Skills also grant: 3% increased Attack Speed", statOrderKey = "4758", statOrder = { 4758 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantCastSpeed"] = { type = "Suffix", affix = "of Talent", "Added Small Passive Skills also grant: 1% increased Cast Speed", statOrderKey = "4760", statOrder = { 4760 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Added Small Passive Skills also grant: 2% increased Cast Speed", statOrderKey = "4760", statOrder = { 4760 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantCastSpeed3_"] = { type = "Suffix", affix = "of Expertise", "Added Small Passive Skills also grant: 3% increased Cast Speed", statOrderKey = "4760", statOrder = { 4760 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDamageOverTime"] = { type = "Suffix", affix = "of Decline", "Added Small Passive Skills also grant: 1% increased Damage over Time", statOrderKey = "4769", statOrder = { 4769 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDamageOverTime2"] = { type = "Suffix", affix = "of Degeneration", "Added Small Passive Skills also grant: 2% increased Damage over Time", statOrderKey = "4769", statOrder = { 4769 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantDamageOverTime3"] = { type = "Suffix", affix = "of Disintegration", "Added Small Passive Skills also grant: 3% increased Damage over Time", statOrderKey = "4769", statOrder = { 4769 }, 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 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration_"] = { type = "Suffix", affix = "of Tumult", "Added Small Passive Skills also grant: 3% increased Duration of Elemental Ailments on Enemies", statOrderKey = "4762", statOrder = { 4762 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration2"] = { type = "Suffix", affix = "of Turbulence", "Added Small Passive Skills also grant: 4% increased Duration of Elemental Ailments on Enemies", statOrderKey = "4762", statOrder = { 4762 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration3"] = { type = "Suffix", affix = "of Disturbance", "Added Small Passive Skills also grant: 5% increased Duration of Elemental Ailments on Enemies", statOrderKey = "4762", statOrder = { 4762 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect__"] = { type = "Suffix", affix = "of Outreach", "Added Small Passive Skills also grant: 2% increased Area of Effect of Aura Skills", statOrderKey = "4759", statOrder = { 4759 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "affliction_aura_effect", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect2"] = { type = "Suffix", affix = "of Influence", "Added Small Passive Skills also grant: 4% increased Area of Effect of Aura Skills", statOrderKey = "4759", statOrder = { 4759 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "affliction_aura_effect", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect3"] = { type = "Suffix", affix = "of Guidance", "Added Small Passive Skills also grant: 6% increased Area of Effect of Aura Skills", statOrderKey = "4759", statOrder = { 4759 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "affliction_aura_effect", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect"] = { type = "Suffix", affix = "of Clout", "Added Small Passive Skills also grant: 1% increased Area of Effect of Curse Skills", statOrderKey = "4768", statOrder = { 4768 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect2"] = { type = "Suffix", affix = "of Dominance", "Added Small Passive Skills also grant: 2% increased Area of Effect of Curse Skills", statOrderKey = "4768", statOrder = { 4768 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect3"] = { type = "Suffix", affix = "of Suppression", "Added Small Passive Skills also grant: 3% increased Area of Effect of Curse Skills", statOrderKey = "4768", statOrder = { 4768 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "affliction_curse_effect", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantWarcryDuration"] = { type = "Suffix", affix = "of Yelling", "Added Small Passive Skills also grant: 2% increased Warcry Duration", statOrderKey = "4789", statOrder = { 4789 }, level = 1, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantWarcryDuration2"] = { type = "Suffix", affix = "of Shouting", "Added Small Passive Skills also grant: 3% increased Warcry Duration", statOrderKey = "4789", statOrder = { 4789 }, level = 68, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantWarcryDuration3"] = { type = "Suffix", affix = "of Bellowing", "Added Small Passive Skills also grant: 4% increased Warcry Duration", statOrderKey = "4789", statOrder = { 4789 }, level = 84, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Ire", "Added Small Passive Skills also grant: +1% to Critical Strike Multiplier", statOrderKey = "4761", statOrder = { 4761 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier2_"] = { type = "Suffix", affix = "of Anger", "Added Small Passive Skills also grant: +2% to Critical Strike Multiplier", statOrderKey = "4761", statOrder = { 4761 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "Added Small Passive Skills also grant: +3% to Critical Strike Multiplier", statOrderKey = "4761", statOrder = { 4761 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantMinionLifeRegen"] = { type = "Suffix", affix = "of Fostering", "Added Small Passive Skills also grant: Minions Regenerate 0.1% of Life per Second", statOrderKey = "4783", statOrder = { 4783 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantMinionLifeRegen2"] = { type = "Suffix", affix = "of Nurturing", "Added Small Passive Skills also grant: Minions Regenerate 0.15% of Life per Second", statOrderKey = "4783", statOrder = { 4783 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantMinionLifeRegen3"] = { type = "Suffix", affix = "of Motherhood", "Added Small Passive Skills also grant: Minions Regenerate 0.2% of Life per Second", statOrderKey = "4783", statOrder = { 4783 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAreaOfEffect_"] = { type = "Suffix", affix = "of Reach", "Added Small Passive Skills also grant: 1% increased Area of Effect", statOrderKey = "4764", statOrder = { 4764 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAreaOfEffect2"] = { type = "Suffix", affix = "of Range", "Added Small Passive Skills also grant: 2% increased Area of Effect", statOrderKey = "4764", statOrder = { 4764 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantAreaOfEffect3"] = { type = "Suffix", affix = "of Horizons", "Added Small Passive Skills also grant: 3% increased Area of Effect", statOrderKey = "4764", statOrder = { 4764 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantProjectileSpeed"] = { type = "Suffix", affix = "of Darting", "Added Small Passive Skills also grant: 2% increased Projectile Speed", statOrderKey = "4763", statOrder = { 4763 }, level = 1, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "Added Small Passive Skills also grant: 3% increased Projectile Speed", statOrderKey = "4763", statOrder = { 4763 }, level = 68, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "Added Small Passive Skills also grant: 4% increased Projectile Speed", statOrderKey = "4763", statOrder = { 4763 }, level = 84, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed_"] = { type = "Suffix", affix = "of Tinkering", "Added Small Passive Skills also grant: 1% increased Trap and Mine Throwing Speed", statOrderKey = "4788", statOrder = { 4788 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed2"] = { type = "Suffix", affix = "of Assembly", "Added Small Passive Skills also grant: 2% increased Trap and Mine Throwing Speed", statOrderKey = "4788", statOrder = { 4788 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed3_"] = { type = "Suffix", affix = "of Deployment", "Added Small Passive Skills also grant: 3% increased Trap and Mine Throwing Speed", statOrderKey = "4788", statOrder = { 4788 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed"] = { type = "Suffix", affix = "of the Karui", "Added Small Passive Skills also grant: 1% increased Totem Placement speed", statOrderKey = "4787", statOrder = { 4787 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed2"] = { type = "Suffix", affix = "of the Ancestors", "Added Small Passive Skills also grant: 2% increased Totem Placement speed", statOrderKey = "4787", statOrder = { 4787 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed3"] = { type = "Suffix", affix = "of The Way", "Added Small Passive Skills also grant: 3% increased Totem Placement speed", statOrderKey = "4787", statOrder = { 4787 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange_"] = { type = "Suffix", affix = "of Gripping", "Added Small Passive Skills also grant: 1% increased Brand Attachment range", statOrderKey = "4785", statOrder = { 4785 }, level = 1, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange2"] = { type = "Suffix", affix = "of Grasping", "Added Small Passive Skills also grant: 2% increased Brand Attachment range", statOrderKey = "4785", statOrder = { 4785 }, level = 68, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange3____"] = { type = "Suffix", affix = "of Latching", "Added Small Passive Skills also grant: 3% increased Brand Attachment range", statOrderKey = "4785", statOrder = { 4785 }, level = 84, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed"] = { type = "Suffix", affix = "of Attention", "Added Small Passive Skills also grant: Channelling Skills have 1% increased Attack and Cast Speed", statOrderKey = "4751", statOrder = { 4751 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Concentration", "Added Small Passive Skills also grant: Channelling Skills have 2% increased Attack and Cast Speed", statOrderKey = "4751", statOrder = { 4751 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Forethought", "Added Small Passive Skills also grant: Channelling Skills have 3% increased Attack and Cast Speed", statOrderKey = "4751", statOrder = { 4751 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantFlaskChargesGained"] = { type = "Suffix", affix = "of Refilling", "Added Small Passive Skills also grant: 1% increased Flask Charges gained", statOrderKey = "4766", statOrder = { 4766 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantFlaskChargesGained2_"] = { type = "Suffix", affix = "of Brimming", "Added Small Passive Skills also grant: 2% increased Flask Charges gained", statOrderKey = "4766", statOrder = { 4766 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantFlaskChargesGained3"] = { type = "Suffix", affix = "of Overflowing", "Added Small Passive Skills also grant: 3% increased Flask Charges gained", statOrderKey = "4766", statOrder = { 4766 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Kindling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Fire Skills", statOrderKey = "4755", statOrder = { 4755 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage", "default", }, weightVal = { 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Smoke", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Fire Skills", statOrderKey = "4755", statOrder = { 4755 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage", "default", }, weightVal = { 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Flashfires", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Fire Skills", statOrderKey = "4755", statOrder = { 4755 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_fire_damage", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Cooling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Cold Skills", statOrderKey = "4753", statOrder = { 4753 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_cold_damage", "default", }, weightVal = { 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Frigidity", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Cold Skills", statOrderKey = "4753", statOrder = { 4753 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_cold_damage", "default", }, weightVal = { 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Avalanche", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Cold Skills", statOrderKey = "4753", statOrder = { 4753 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_cold_damage", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Gathering Clouds", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Lightning Skills", statOrderKey = "4756", statOrder = { 4756 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "default", }, weightVal = { 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Sudden Storms", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Lightning Skills", statOrderKey = "4756", statOrder = { 4756 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "default", }, weightVal = { 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Strike", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Lightning Skills", statOrderKey = "4756", statOrder = { 4756 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_lightning_damage", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Dusk", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Chaos Skills", statOrderKey = "4752", statOrder = { 4752 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed2____"] = { type = "Suffix", affix = "of Midnight", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Chaos Skills", statOrderKey = "4752", statOrder = { 4752 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Eclipse", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Chaos Skills", statOrderKey = "4752", statOrder = { 4752 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Rumbling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Physical Skills", statOrderKey = "4757", statOrder = { 4757 }, level = 1, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "default", }, weightVal = { 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Tremors", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Physical Skills", statOrderKey = "4757", statOrder = { 4757 }, level = 68, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "default", }, weightVal = { 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of the Earthquake", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Physical Skills", statOrderKey = "4757", statOrder = { 4757 }, level = 84, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "no_physical_damage_mods", "affliction_physical_damage", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Coaxing", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Elemental Skills", statOrderKey = "4754", statOrder = { 4754 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "default", }, weightVal = { 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Evoking", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Elemental Skills", statOrderKey = "4754", statOrder = { 4754 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "default", }, weightVal = { 0, 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Manifesting", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Elemental Skills", statOrderKey = "4754", statOrder = { 4754 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "no_elemental_damage_mods", "affliction_elemental_damage", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed"] = { type = "Suffix", affix = "of Pillaging", "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed", statOrderKey = "4781", statOrder = { 4781 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Ravaging", "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed", statOrderKey = "4781", statOrder = { 4781 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Razing", "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed", statOrderKey = "4781", statOrder = { 4781 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed"] = { type = "Suffix", affix = "of the Courier", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed while affected by a Herald", statOrderKey = "4750", statOrder = { 4750 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of the Messenger", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed while affected by a Herald", statOrderKey = "4750", statOrder = { 4750 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Herald", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed while affected by a Herald", statOrderKey = "4750", statOrder = { 4750 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["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", statOrderKey = "4782", statOrder = { 4782 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["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", statOrderKey = "4782", statOrder = { 4782 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, + ["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", statOrderKey = "4782", statOrder = { 4782 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0 }, weightMultiplierKey = { }, weightMultiplierVal = { }, }, } \ No newline at end of file diff --git a/Data/3_0/ModMaster.lua b/Data/3_0/ModMaster.lua index 264beb97a..59feafd93 100644 --- a/Data/3_0/ModMaster.lua +++ b/Data/3_0/ModMaster.lua @@ -2,736 +2,736 @@ -- Item data (c) Grinding Gear Games return { - { affix = "", "(20-29)% more Monster Life", statOrder = { 1544 }, level = 0, group = "MapMonsterLife", types = { ["Map"] = true, }, }, - { affix = "", "(30-39)% more Monster Life", statOrder = { 1544 }, level = 0, group = "MapMonsterLife", types = { ["Map"] = true, }, }, - { affix = "", "(40-49)% more Monster Life", statOrder = { 1544 }, level = 0, group = "MapMonsterLife", types = { ["Map"] = true, }, }, - { affix = "", "(50-59)% more Monster Life", statOrder = { 1544 }, level = 0, group = "MapMonsterLife", types = { ["Map"] = true, }, }, - { affix = "", "(15-19)% increased Monster Damage", statOrder = { 1555 }, level = 0, group = "MapMonsterDamage", types = { ["Map"] = true, }, }, - { affix = "", "(20-24)% increased Monster Damage", statOrder = { 1555 }, level = 0, group = "MapMonsterDamage", types = { ["Map"] = true, }, }, - { affix = "", "(25-30)% increased Monster Damage", statOrder = { 1555 }, level = 0, group = "MapMonsterDamage", types = { ["Map"] = true, }, }, - { affix = "", "(31-35)% increased Monster Damage", statOrder = { 1555 }, level = 0, group = "MapMonsterDamage", types = { ["Map"] = true, }, }, - { affix = "", "Area is inhabited by Spiders", statOrder = { 5005 }, level = 0, group = "MapMonsterPacks", types = { ["Map"] = true, }, }, - { affix = "", "Area is inhabited by Blackguards", statOrder = { 5000 }, level = 0, group = "MapMonsterPacks", types = { ["Map"] = true, }, }, - { affix = "", "Area is inhabited by Bandits", statOrder = { 1502 }, level = 0, group = "MapMonsterPacks", types = { ["Map"] = true, }, }, - { type = "Prefix", affix = "Ceremonial", "Area contains many Totems", statOrder = { 1499 }, level = 1, group = "MapTotems", types = { ["Map"] = true, }, }, - { type = "Prefix", affix = "Anarchic", "Area is inhabited by 2 additional Rogue Exiles", statOrder = { 1513 }, level = 1, group = "MapMultipleExiles", types = { ["Map"] = true, }, }, - { type = "Prefix", affix = "Otherworldly", "Slaying Enemies close together has a 13% chance to attract monsters from Beyond", statOrder = { 1771 }, level = 1, group = "MapBeyondLeagueRolled", types = { ["Map"] = true, }, }, - { type = "Prefix", affix = "Twinned", "Area contains two Unique Bosses", statOrder = { 1589 }, level = 1, group = "MapTwoBosses", types = { ["Map"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(15-25) to maximum Life", statOrder = { 831 }, 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", "+(16-20)% to Fire Resistance", statOrder = { 877 }, level = 15, group = "FireResistance", types = { ["Dagger"] = 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, ["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", "+(16-20)% to Cold Resistance", statOrder = { 883 }, level = 15, group = "ColdResistance", types = { ["Dagger"] = 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, ["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", "+(16-20)% to Lightning Resistance", statOrder = { 888 }, level = 15, group = "LightningResistance", types = { ["Dagger"] = 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, ["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", "+(15-20) to Strength", statOrder = { 512 }, level = 15, group = "Strength", types = { ["Dagger"] = 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, ["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", "+(15-20) to Dexterity", statOrder = { 513 }, level = 15, group = "Dexterity", types = { ["Dagger"] = 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, ["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", "+(15-20) to Intelligence", statOrder = { 514 }, level = 15, group = "Intelligence", types = { ["Dagger"] = 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, ["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", "+(21-28)% to Fire Resistance", statOrder = { 877 }, level = 30, group = "FireResistance", types = { ["Dagger"] = 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, ["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", "+(29-35)% to Fire Resistance", statOrder = { 877 }, level = 50, group = "FireResistance", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(21-28)% to Cold Resistance", statOrder = { 883 }, level = 30, group = "ColdResistance", types = { ["Dagger"] = 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, ["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", "+(29-35)% to Cold Resistance", statOrder = { 883 }, level = 50, group = "ColdResistance", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(21-28)% to Lightning Resistance", statOrder = { 888 }, level = 30, group = "LightningResistance", types = { ["Dagger"] = 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, ["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", "+(29-35)% to Lightning Resistance", statOrder = { 888 }, level = 50, group = "LightningResistance", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(10-12)% to Fire and Cold Resistances", statOrder = { 1933 }, level = 30, group = "FireAndColdResistance", types = { ["Dagger"] = 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, ["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", "+(13-16)% to Fire and Cold Resistances", statOrder = { 1933 }, level = 50, group = "FireAndColdResistance", types = { ["Dagger"] = 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, ["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", "+(17-20)% to Fire and Cold Resistances", statOrder = { 1933 }, level = 75, group = "FireAndColdResistance", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 1935 }, level = 30, group = "ColdAndLightningResistance", types = { ["Dagger"] = 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, ["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", "+(13-16)% to Cold and Lightning Resistances", statOrder = { 1935 }, level = 50, group = "ColdAndLightningResistance", types = { ["Dagger"] = 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, ["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", "+(17-20)% to Cold and Lightning Resistances", statOrder = { 1935 }, level = 75, group = "ColdAndLightningResistance", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 1934 }, level = 30, group = "FireAndLightningResistance", types = { ["Dagger"] = 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, ["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", "+(13-16)% to Fire and Lightning Resistances", statOrder = { 1934 }, level = 50, group = "FireAndLightningResistance", types = { ["Dagger"] = 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, ["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", "+(17-20)% to Fire and Lightning Resistances", statOrder = { 1934 }, level = 75, group = "FireAndLightningResistance", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(5-8)% to all Elemental Resistances", statOrder = { 871 }, level = 30, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(9-12)% to all Elemental Resistances", statOrder = { 871 }, level = 60, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(4-6)% to all Elemental Resistances", "Minions have +(5-8)% to all Elemental Resistances", statOrder = { 871, 2044 }, level = 30, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(7-9)% to all Elemental Resistances", "Minions have +(9-12)% to all Elemental Resistances", statOrder = { 871, 2044 }, level = 60, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(21-25) to Strength", statOrder = { 512 }, level = 20, group = "Strength", types = { ["Dagger"] = 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, ["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", "+(26-30) to Strength", statOrder = { 512 }, level = 40, group = "Strength", types = { ["Dagger"] = 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, ["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", "+(21-25) to Dexterity", statOrder = { 513 }, level = 20, group = "Dexterity", types = { ["Dagger"] = 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, ["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", "+(26-30) to Dexterity", statOrder = { 513 }, level = 40, group = "Dexterity", types = { ["Dagger"] = 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, ["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", "+(21-25) to Intelligence", statOrder = { 514 }, level = 20, group = "Intelligence", types = { ["Dagger"] = 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, ["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", "+(26-30) to Intelligence", statOrder = { 514 }, level = 40, group = "Intelligence", types = { ["Dagger"] = 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, ["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", "+(6-9) to all Attributes", statOrder = { 511 }, level = 30, group = "AllAttributes", types = { ["Dagger"] = 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, ["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", "+(10-13) to all Attributes", statOrder = { 511 }, level = 50, group = "AllAttributes", types = { ["Dagger"] = 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, ["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", "(10-14)% increased Movement Speed", statOrder = { 1024 }, level = 1, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(15-19)% increased Movement Speed", statOrder = { 1024 }, level = 40, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(20-24)% increased Movement Speed", statOrder = { 1024 }, level = 68, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(26-40) to maximum Life", statOrder = { 831 }, 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", "+(41-55) to maximum Life", statOrder = { 831 }, 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", "+(56-70) to maximum Life", statOrder = { 831 }, level = 75, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(71-85) to maximum Life", statOrder = { 831 }, level = 80, group = "IncreasedLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 898 }, level = 30, group = "LifeLeech", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 898 }, level = 50, group = "LifeLeech", types = { ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 900 }, level = 30, group = "LifeLeech", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(0.5-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 900 }, level = 50, group = "LifeLeech", types = { ["Dagger"] = 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, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 936 }, level = 70, group = "ManaLeech", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(55-64) to maximum Mana", statOrder = { 838 }, level = 20, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(65-74) to maximum Mana", statOrder = { 838 }, level = 40, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(75-84) to maximum Mana", statOrder = { 838 }, level = 60, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(85-94) to maximum Mana", statOrder = { 838 }, level = 75, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(35-44) to maximum Mana", statOrder = { 838 }, level = 20, group = "IncreasedMana", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(45-54) to maximum Mana", statOrder = { 838 }, level = 40, group = "IncreasedMana", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(55-64) to maximum Mana", statOrder = { 838 }, level = 60, group = "IncreasedMana", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(65-74) to maximum Mana", statOrder = { 838 }, level = 75, group = "IncreasedMana", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(25-34) to maximum Mana", statOrder = { 838 }, 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", "+(35-44) to maximum Mana", statOrder = { 838 }, 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", "+(45-54) to maximum Mana", statOrder = { 838 }, 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", "(20-30)% increased Mana Regeneration Rate", statOrder = { 842 }, level = 30, group = "ManaRegeneration", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(31-40)% increased Mana Regeneration Rate", statOrder = { 842 }, level = 50, group = "ManaRegeneration", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(40-59)% increased Physical Damage", statOrder = { 558 }, level = 20, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(60-79)% increased Physical Damage", statOrder = { 558 }, level = 40, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(80-99)% increased Physical Damage", statOrder = { 558 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(100-129)% increased Physical Damage", statOrder = { 558 }, level = 80, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(37-51)% increased Spell Damage", statOrder = { 550 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(52-66)% increased Spell Damage", statOrder = { 550 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(67-81)% increased Spell Damage", statOrder = { 550 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(82-99)% increased Spell Damage", statOrder = { 550 }, level = 80, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(25-34)% increased Spell Damage", statOrder = { 550 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(35-44)% increased Spell Damage", statOrder = { 550 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(45-54)% increased Spell Damage", statOrder = { 550 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(55-66)% increased Spell Damage", statOrder = { 550 }, level = 80, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(11-20)% increased Damage over Time", statOrder = { 538 }, level = 30, group = "DegenerationDamage", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(21-30)% increased Damage over Time", statOrder = { 538 }, level = 50, group = "DegenerationDamage", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(15-23)% increased Elemental Damage with Attack Skills", statOrder = { 4167 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(24-32)% increased Elemental Damage with Attack Skills", statOrder = { 4167 }, level = 50, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(8-10)% increased Attack Speed", statOrder = { 688 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(11-15)% increased Attack Speed", statOrder = { 688 }, level = 50, group = "IncreasedAttackSpeed", types = { ["Dagger"] = 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, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(16-20)% increased Attack Speed", statOrder = { 688 }, level = 75, group = "IncreasedAttackSpeed", types = { ["Dagger"] = 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, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(11-13)% increased Attack Speed", statOrder = { 688 }, level = 75, group = "IncreasedAttackSpeed", types = { ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(7-12)% increased Attack Speed", statOrder = { 685 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(12-15)% increased Cast Speed", statOrder = { 721 }, level = 30, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(16-20)% increased Cast Speed", statOrder = { 721 }, level = 50, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(21-28)% increased Cast Speed", statOrder = { 721 }, level = 75, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(9-11)% increased Cast Speed", statOrder = { 721 }, level = 30, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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", "(12-14)% increased Cast Speed", statOrder = { 721 }, level = 50, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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", "(15-18)% increased Cast Speed", statOrder = { 721 }, level = 75, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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", "(37-51)% increased Fire Damage", statOrder = { 640 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(52-66)% increased Fire Damage", statOrder = { 640 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(67-81)% increased Fire Damage", statOrder = { 640 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(25-34)% increased Fire Damage", statOrder = { 640 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(35-44)% increased Fire Damage", statOrder = { 640 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(45-54)% increased Fire Damage", statOrder = { 640 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(9-12)% increased Fire Damage", statOrder = { 640 }, level = 20, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(13-16)% increased Fire Damage", statOrder = { 640 }, level = 40, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(37-51)% increased Cold Damage", statOrder = { 647 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(52-66)% increased Cold Damage", statOrder = { 647 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(67-81)% increased Cold Damage", statOrder = { 647 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(25-34)% increased Cold Damage", statOrder = { 647 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(35-44)% increased Cold Damage", statOrder = { 647 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(45-54)% increased Cold Damage", statOrder = { 647 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(9-12)% increased Cold Damage", statOrder = { 647 }, level = 20, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(13-16)% increased Cold Damage", statOrder = { 647 }, level = 40, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(37-51)% increased Lightning Damage", statOrder = { 656 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(52-66)% increased Lightning Damage", statOrder = { 656 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(67-81)% increased Lightning Damage", statOrder = { 656 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(25-34)% increased Lightning Damage", statOrder = { 656 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(35-44)% increased Lightning Damage", statOrder = { 656 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(45-54)% increased Lightning Damage", statOrder = { 656 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(9-12)% increased Lightning Damage", statOrder = { 656 }, level = 20, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(13-16)% increased Lightning Damage", statOrder = { 656 }, level = 40, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(37-51)% increased Chaos Damage", statOrder = { 662 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(52-66)% increased Chaos Damage", statOrder = { 662 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(67-81)% increased Chaos Damage", statOrder = { 662 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(25-34)% increased Chaos Damage", statOrder = { 662 }, level = 30, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(35-44)% increased Chaos Damage", statOrder = { 662 }, level = 50, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(45-54)% increased Chaos Damage", statOrder = { 662 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(9-12)% increased Chaos Damage", statOrder = { 662 }, level = 30, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(13-16)% increased Chaos Damage", statOrder = { 662 }, level = 50, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(91-120) to Accuracy Rating", statOrder = { 1237 }, level = 20, group = "IncreasedAccuracy", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(121-200) to Accuracy Rating", statOrder = { 1237 }, level = 40, group = "IncreasedAccuracy", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(201-300) to Accuracy Rating", statOrder = { 1237 }, level = 68, group = "IncreasedAccuracy", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(91-120) to Accuracy Rating", statOrder = { 708 }, level = 20, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(121-150) to Accuracy Rating", statOrder = { 708 }, level = 40, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(151-220) to Accuracy Rating", statOrder = { 708 }, level = 68, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(9-12)% increased Global Physical Damage", statOrder = { 557 }, level = 30, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(13-16)% increased Global Physical Damage", statOrder = { 557 }, level = 50, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(34-45)% increased Armour", statOrder = { 805 }, level = 40, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(45-55)% increased Armour", statOrder = { 805 }, level = 60, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(56-74)% increased Armour", statOrder = { 805 }, level = 75, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(40-50) to Armour", statOrder = { 803 }, level = 30, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(60-80) to Armour", statOrder = { 803 }, level = 50, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(180-250) to Armour", statOrder = { 803 }, level = 68, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(34-45)% increased Evasion Rating", statOrder = { 814 }, level = 40, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(45-55)% increased Evasion Rating", statOrder = { 814 }, level = 60, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(56-74)% increased Evasion Rating", statOrder = { 814 }, level = 75, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(40-50) to Evasion Rating", statOrder = { 812 }, level = 30, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(60-80) to Evasion Rating", statOrder = { 812 }, level = 50, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(180-250) to Evasion Rating", statOrder = { 812 }, level = 68, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(34-45)% increased Energy Shield", statOrder = { 823 }, level = 40, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(45-55)% increased Energy Shield", statOrder = { 823 }, level = 60, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(56-74)% increased Energy Shield", statOrder = { 823 }, level = 75, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(27-34) to maximum Energy Shield", statOrder = { 822 }, level = 30, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(35-45) to maximum Energy Shield", statOrder = { 822 }, level = 50, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(56-69) to maximum Energy Shield", statOrder = { 822 }, level = 68, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(10-14)% increased maximum Energy Shield", statOrder = { 824 }, level = 60, group = "EnergyShieldPercent", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(15-20)% increased maximum Energy Shield", statOrder = { 824 }, level = 75, group = "EnergyShieldPercent", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(21-25) to maximum Energy Shield", statOrder = { 821 }, level = 50, group = "IncreasedEnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "+(26-30) to maximum Energy Shield", statOrder = { 821 }, level = 68, group = "IncreasedEnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(34-45)% increased Armour and Evasion", statOrder = { 817 }, level = 40, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(45-55)% increased Armour and Evasion", statOrder = { 817 }, level = 60, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(56-74)% increased Armour and Evasion", statOrder = { 817 }, level = 75, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(34-45)% increased Armour and Energy Shield", statOrder = { 816 }, level = 40, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(45-55)% increased Armour and Energy Shield", statOrder = { 816 }, level = 60, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(56-74)% increased Armour and Energy Shield", statOrder = { 816 }, level = 75, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(34-45)% increased Evasion and Energy Shield", statOrder = { 818 }, level = 40, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(45-55)% increased Evasion and Energy Shield", statOrder = { 818 }, level = 60, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(56-74)% increased Evasion and Energy Shield", statOrder = { 818 }, level = 75, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (16-18) to (28-35) Fire Damage", statOrder = { 643 }, level = 20, group = "FireDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (33-40) to (63-73) Fire Damage", statOrder = { 643 }, level = 40, group = "FireDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (52-62) to (95-110) Fire Damage", statOrder = { 643 }, level = 68, group = "FireDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (11-12) to (19-23) Fire Damage", statOrder = { 643 }, level = 20, group = "FireDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (22-27) to (42-49) Fire Damage", statOrder = { 643 }, level = 40, group = "FireDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (35-41) to (63-73) Fire Damage", statOrder = { 643 }, level = 68, group = "FireDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (8-11) to (16-20) Fire Damage to Attacks", statOrder = { 642 }, level = 20, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (12-17) to (26-30) Fire Damage to Attacks", statOrder = { 642 }, level = 40, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (16-18) to (28-35) Cold Damage", statOrder = { 650 }, level = 20, group = "ColdDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (33-40) to (63-73) Cold Damage", statOrder = { 650 }, level = 40, group = "ColdDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (52-62) to (95-110) Cold Damage", statOrder = { 650 }, level = 68, group = "ColdDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (11-12) to (19-23) Cold Damage", statOrder = { 650 }, level = 20, group = "ColdDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (22-27) to (42-49) Cold Damage", statOrder = { 650 }, level = 40, group = "ColdDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (35-41) to (63-73) Cold Damage", statOrder = { 650 }, level = 68, group = "ColdDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (6-8) to (14-18) Cold Damage to Attacks", statOrder = { 649 }, level = 20, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (11-15) to (23-27) Cold Damage to Attacks", statOrder = { 649 }, level = 40, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (2-4) to (40-55) Lightning Damage", statOrder = { 659 }, level = 20, group = "LightningDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (5-8) to (90-120) Lightning Damage", statOrder = { 659 }, level = 40, group = "LightningDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (9-12) to (140-170) Lightning Damage", statOrder = { 659 }, level = 68, group = "LightningDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (1-3) to (27-37) Lightning Damage", statOrder = { 659 }, level = 20, group = "LightningDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (3-5) to (60-80) Lightning Damage", statOrder = { 659 }, level = 40, group = "LightningDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (6-8) to (100-113) Lightning Damage", statOrder = { 659 }, level = 68, group = "LightningDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (1-4) to (32-36) Lightning Damage to Attacks", statOrder = { 658 }, level = 20, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (1-5) to (41-48) Lightning Damage to Attacks", statOrder = { 658 }, level = 40, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (9-12) to (18-21) Physical Damage", statOrder = { 594 }, level = 20, group = "PhysicalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (11-15) to (23-27) Physical Damage", statOrder = { 594 }, level = 40, group = "PhysicalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (18-24) to (36-42) Physical Damage", statOrder = { 594 }, level = 68, group = "PhysicalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (6-8) to (13-15) Physical Damage", statOrder = { 594 }, level = 20, group = "PhysicalDamage", types = { ["Dagger"] = 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", "Adds (7-11) to (16-19) Physical Damage", statOrder = { 594 }, level = 40, group = "PhysicalDamage", types = { ["Dagger"] = 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", "Adds (13-17) to (26-30) Physical Damage", statOrder = { 594 }, level = 68, group = "PhysicalDamage", types = { ["Dagger"] = 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", "Adds (3-5) to (6-8) Physical Damage to Attacks", statOrder = { 586 }, level = 20, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (5-7) to (8-10) Physical Damage to Attacks", statOrder = { 586 }, level = 40, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (6-8) to (14-18) Chaos Damage to Attacks", statOrder = { 664 }, level = 30, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (11-15) to (23-27) Chaos Damage to Attacks", statOrder = { 664 }, level = 68, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (16-21) to (31-36) Fire Damage to Spells", statOrder = { 679 }, level = 30, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (28-38) to (57-66) Fire Damage to Spells", statOrder = { 679 }, level = 50, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (41-55) to (83-96) Fire Damage to Spells", statOrder = { 679 }, level = 68, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (12-16) to (23-27) Fire Damage to Spells", statOrder = { 679 }, level = 30, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 679 }, level = 50, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (31-41) to (61-71) Fire Damage to Spells", statOrder = { 679 }, level = 68, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (14-19) to (28-33) Cold Damage to Spells", statOrder = { 680 }, level = 30, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (26-34) to (52-60) Cold Damage to Spells", statOrder = { 680 }, level = 50, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (38-50) to (75-88) Cold Damage to Spells", statOrder = { 680 }, level = 68, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (10-13) to (19-22) Cold Damage to Spells", statOrder = { 680 }, level = 30, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 680 }, level = 50, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (25-33) to (50-58) Cold Damage to Spells", statOrder = { 680 }, level = 68, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (1-5) to (59-63) Lightning Damage to Spells", statOrder = { 681 }, level = 30, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (3-9) to (109-115) Lightning Damage to Spells", statOrder = { 681 }, level = 50, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (4-13) to (159-168) Lightning Damage to Spells", statOrder = { 681 }, level = 68, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Adds (1-4) to (39-42) Lightning Damage to Spells", statOrder = { 681 }, level = 30, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 681 }, level = 50, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (3-9) to (106-112) Lightning Damage to Spells", statOrder = { 681 }, level = 68, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "(17-19)% increased Critical Strike Chance", statOrder = { 740 }, level = 40, group = "CriticalStrikeChanceIncrease", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(20-24)% increased Critical Strike Chance", statOrder = { 740 }, level = 60, group = "CriticalStrikeChanceIncrease", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(25-27)% increased Critical Strike Chance", statOrder = { 740 }, level = 75, group = "CriticalStrikeChanceIncrease", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 764 }, level = 40, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 764 }, level = 60, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(25-28)% to Global Critical Strike Multiplier", statOrder = { 764 }, level = 75, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(45-75)% increased Critical Strike Chance for Spells", statOrder = { 735 }, level = 40, group = "SpellCriticalStrikeChanceIncrease", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(76-105)% increased Critical Strike Chance for Spells", statOrder = { 735 }, level = 60, group = "SpellCriticalStrikeChanceIncrease", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(30-49)% increased Critical Strike Chance for Spells", statOrder = { 735 }, level = 40, group = "SpellCriticalStrikeChanceIncrease", types = { ["Dagger"] = 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", "(50-69)% increased Critical Strike Chance for Spells", statOrder = { 735 }, level = 60, group = "SpellCriticalStrikeChanceIncrease", types = { ["Dagger"] = 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", "(17-21)% increased Global Critical Strike Chance", statOrder = { 736 }, level = 50, group = "CriticalStrikeChanceIncrease", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(22-27)% increased Global Critical Strike Chance", statOrder = { 736 }, level = 68, group = "CriticalStrikeChanceIncrease", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(5-10)% increased Flask Effect Duration", statOrder = { 1397 }, level = 50, group = "BeltFlaskDuration", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(11-15)% increased Flask Effect Duration", statOrder = { 1397 }, level = 68, group = "BeltFlaskDuration", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(15-20)% chance to Avoid being Stunned", statOrder = { 1066 }, level = 60, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(21-25)% chance to Avoid being Stunned", statOrder = { 1066 }, level = 75, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(15-20)% chance to Avoid Elemental Ailments", statOrder = { 1058 }, level = 60, group = "AvoidElementalStatusAilments", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1058 }, level = 75, group = "AvoidElementalStatusAilments", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(2-3)% Chance to Block", statOrder = { 1454 }, level = 50, group = "IncreasedShieldBlockPercentage", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", "+(4-5)% Chance to Block", statOrder = { 1454 }, level = 68, group = "IncreasedShieldBlockPercentage", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(2-3)% Chance to Block Spell Damage", statOrder = { 501 }, level = 50, group = "SpellBlockPercentage", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(4-5)% Chance to Block Spell Damage", statOrder = { 501 }, level = 68, group = "SpellBlockPercentage", types = { ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(8-11)% faster start of Energy Shield Recharge", statOrder = { 825 }, level = 40, group = "EnergyShieldDelay", types = { ["Ring"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(12-15)% faster start of Energy Shield Recharge", statOrder = { 825 }, level = 60, group = "EnergyShieldDelay", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "Upgraded", "5% reduced Damage taken from Damage Over Time", statOrder = { 1450 }, level = 80, group = "DegenDamageTaken", types = { ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Item drops on Death if Equipped by an Animated Guardian", statOrder = { 1713 }, level = 68, group = "ItemDropsOnGuardianDeath", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", "Minions have (11-15)% increased maximum Life", statOrder = { 994 }, level = 40, group = "MinionLife", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", "Minions have (16-20)% increased maximum Life", statOrder = { 994 }, level = 68, group = "MinionLife", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Minions deal (10-20)% increased Damage", statOrder = { 1187 }, level = 40, group = "MinionDamage", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", "Minions have (13-17)% increased Movement Speed", statOrder = { 997 }, level = 30, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", "Minions have (18-22)% increased Movement Speed", statOrder = { 997 }, level = 60, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Minions deal (37-51)% increased Damage", statOrder = { 1187 }, level = 30, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Minions deal (52-66)% increased Damage", statOrder = { 1187 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Minions deal (67-81)% increased Damage", statOrder = { 1187 }, level = 75, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "Minions deal (25-34)% increased Damage", statOrder = { 1187 }, level = 30, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "Minions deal (35-44)% increased Damage", statOrder = { 1187 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "Minions deal (45-54)% increased Damage", statOrder = { 1187 }, level = 75, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(52-66)% increased Trap Damage", statOrder = { 525 }, level = 50, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(67-81)% increased Trap Damage", statOrder = { 525 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(35-44)% increased Trap Damage", statOrder = { 525 }, level = 50, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(45-54)% increased Trap Damage", statOrder = { 525 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(52-66)% increased Mine Damage", statOrder = { 526 }, level = 50, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(67-81)% increased Mine Damage", statOrder = { 526 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", "(35-44)% increased Mine Damage", statOrder = { 526 }, level = 50, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(45-54)% increased Mine Damage", statOrder = { 526 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(17-20)% increased Trap Throwing Speed", statOrder = { 1132 }, level = 50, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(21-23)% increased Trap Throwing Speed", statOrder = { 1132 }, level = 68, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(9-12)% increased Trap Throwing Speed", statOrder = { 1132 }, level = 50, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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", "(13-15)% increased Trap Throwing Speed", statOrder = { 1132 }, level = 68, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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", "(17-20)% increased Mine Throwing Speed", statOrder = { 1133 }, level = 50, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(21-23)% increased Mine Throwing Speed", statOrder = { 1133 }, level = 68, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(9-12)% increased Mine Throwing Speed", statOrder = { 1133 }, level = 50, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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", "(13-15)% increased Mine Throwing Speed", statOrder = { 1133 }, level = 68, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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", "(3-5)% increased Attack Speed", statOrder = { 685 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Shield"] = true, ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", "(6-8)% increased Cast Speed", statOrder = { 721 }, level = 30, group = "IncreasedCastSpeed", types = { ["Shield"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(81-85)% increased Physical Damage", "(13-15)% chance to Impale Enemies on Hit with Attacks", statOrder = { 558, 4552 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(86-94)% increased Physical Damage", "(16-17)% chance to Impale Enemies on Hit with Attacks", statOrder = { 558, 4552 }, level = 72, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(95-105)% increased Physical Damage", "(18-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 558, 4552 }, level = 81, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(81-85)% increased Physical Damage", "(13-15)% chance to cause Bleeding on Hit", statOrder = { 558, 1642 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(86-94)% increased Physical Damage", "(16-17)% chance to cause Bleeding on Hit", statOrder = { 558, 1642 }, level = 72, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(95-105)% increased Physical Damage", "(18-20)% chance to cause Bleeding on Hit", statOrder = { 558, 1642 }, level = 81, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(81-85)% increased Physical Damage", "(13-15)% chance to Blind Enemies on hit", statOrder = { 558, 1467 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(86-94)% increased Physical Damage", "(16-17)% chance to Blind Enemies on hit", statOrder = { 558, 1467 }, level = 72, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(95-105)% increased Physical Damage", "(18-20)% chance to Blind Enemies on hit", statOrder = { 558, 1467 }, level = 81, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(81-85)% increased Physical Damage", "(13-15)% chance to Poison on Hit", statOrder = { 558, 4628 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(86-94)% increased Physical Damage", "(16-17)% chance to Poison on Hit", statOrder = { 558, 4628 }, level = 72, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(95-105)% increased Physical Damage", "(18-20)% chance to Poison on Hit", statOrder = { 558, 4628 }, level = 81, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(60-64)% increased Fire Damage", "(15-17)% chance to Ignite", statOrder = { 640, 1239 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(65-72)% increased Fire Damage", "(18-20)% chance to Ignite", statOrder = { 640, 1239 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(73-80)% increased Fire Damage", "(21-23)% chance to Ignite", statOrder = { 640, 1239 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(36-41)% increased Fire Damage", "7% chance to Ignite", statOrder = { 640, 1239 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(42-50)% increased Fire Damage", "(8-9)% chance to Ignite", statOrder = { 640, 1239 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(51-60)% increased Fire Damage", "(10-11)% chance to Ignite", statOrder = { 640, 1239 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(60-64)% increased Cold Damage", "(15-17)% chance to Freeze", statOrder = { 647, 1242 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(65-72)% increased Cold Damage", "(18-20)% chance to Freeze", statOrder = { 647, 1242 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(73-80)% increased Cold Damage", "(21-23)% chance to Freeze", statOrder = { 647, 1242 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(36-41)% increased Cold Damage", "7% chance to Freeze", statOrder = { 647, 1242 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(42-50)% increased Cold Damage", "(8-9)% chance to Freeze", statOrder = { 647, 1242 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(51-60)% increased Cold Damage", "(10-11)% chance to Freeze", statOrder = { 647, 1242 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(60-64)% increased Lightning Damage", "(15-17)% chance to Shock", statOrder = { 656, 1246 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(65-72)% increased Lightning Damage", "(18-20)% chance to Shock", statOrder = { 656, 1246 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(73-80)% increased Lightning Damage", "(21-23)% chance to Shock", statOrder = { 656, 1246 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(36-41)% increased Lightning Damage", "7% chance to Shock", statOrder = { 656, 1246 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(42-50)% increased Lightning Damage", "(8-9)% chance to Shock", statOrder = { 656, 1246 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(51-60)% increased Lightning Damage", "(10-11)% chance to Shock", statOrder = { 656, 1246 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(53-60)% increased Chaos Damage", "Chaos Skills have (15-17)% increased Skill Effect Duration", statOrder = { 662, 1103 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(61-68)% increased Chaos Damage", "Chaos Skills have (18-20)% increased Skill Effect Duration", statOrder = { 662, 1103 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(69-75)% increased Chaos Damage", "Chaos Skills have (21-23)% increased Skill Effect Duration", statOrder = { 662, 1103 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(35-39)% increased Chaos Damage", "Chaos Skills have (7-8)% increased Skill Effect Duration", statOrder = { 662, 1103 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(40-45)% increased Chaos Damage", "Chaos Skills have (9-10)% increased Skill Effect Duration", statOrder = { 662, 1103 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(46-50)% increased Chaos Damage", "Chaos Skills have (11-12)% increased Skill Effect Duration", statOrder = { 662, 1103 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(60-64)% increased Spell Damage", "(16-20)% increased Mana Regeneration Rate", statOrder = { 550, 842 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(65-72)% increased Spell Damage", "(21-25)% increased Mana Regeneration Rate", statOrder = { 550, 842 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(73-80)% increased Spell Damage", "(26-30)% increased Mana Regeneration Rate", statOrder = { 550, 842 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(36-41)% increased Spell Damage", "(7-9)% increased Mana Regeneration Rate", statOrder = { 550, 842 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(42-50)% increased Spell Damage", "(10-12)% increased Mana Regeneration Rate", statOrder = { 550, 842 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(51-60)% increased Spell Damage", "(13-15)% increased Mana Regeneration Rate", statOrder = { 550, 842 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(53-58)% increased Spell Damage", "Gain (3-4)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 550, 5346 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(59-66)% increased Spell Damage", "Gain (5-6)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 550, 5346 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(67-75)% increased Spell Damage", "Gain (7-8)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 550, 5346 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(38-40)% increased Spell Damage", "Gain 2% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 550, 5346 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(41-45)% increased Spell Damage", "Gain 3% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 550, 5346 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(46-50)% increased Spell Damage", "Gain 4% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 550, 5346 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "Minions have (26-32)% increased maximum Life", "Minions deal (26-32)% increased Damage", statOrder = { 994, 1187 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Minions have (33-38)% increased maximum Life", "Minions deal (33-38)% increased Damage", statOrder = { 994, 1187 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Minions have (39-45)% increased maximum Life", "Minions deal (39-45)% increased Damage", statOrder = { 994, 1187 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Minions have (16-19)% increased maximum Life", "Minions deal (16-19)% increased Damage", statOrder = { 994, 1187 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "Minions have (20-24)% increased maximum Life", "Minions deal (20-24)% increased Damage", statOrder = { 994, 1187 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "Minions have (25-28)% increased maximum Life", "Minions deal (25-28)% increased Damage", statOrder = { 994, 1187 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 the Order", "Minions have (19-21)% increased Attack Speed", "Minions have (19-21)% increased Cast Speed", statOrder = { 2039, 2040 }, level = 60, group = "MinionAttackSpeedAndCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Minions have (22-24)% increased Attack Speed", "Minions have (22-24)% increased Cast Speed", statOrder = { 2039, 2040 }, level = 72, group = "MinionAttackSpeedAndCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2039, 2040 }, level = 81, group = "MinionAttackSpeedAndCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Minions have (10-11)% increased Attack Speed", "Minions have (10-11)% increased Cast Speed", statOrder = { 2039, 2040 }, level = 60, group = "MinionAttackSpeedAndCastSpeed", types = { ["Dagger"] = 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 the Order", "Minions have (12-13)% increased Attack Speed", "Minions have (12-13)% increased Cast Speed", statOrder = { 2039, 2040 }, level = 72, group = "MinionAttackSpeedAndCastSpeed", types = { ["Dagger"] = 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 the Order", "Minions have (14-15)% increased Attack Speed", "Minions have (14-15)% increased Cast Speed", statOrder = { 2039, 2040 }, level = 81, group = "MinionAttackSpeedAndCastSpeed", types = { ["Dagger"] = 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 = "Chosen", "+(28-30)% to Chaos Damage over Time Multiplier", statOrder = { 581 }, level = 60, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(31-35)% to Chaos Damage over Time Multiplier", statOrder = { 581 }, level = 72, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(36-40)% to Chaos Damage over Time Multiplier", statOrder = { 581 }, level = 81, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(14-15)% to Chaos Damage over Time Multiplier", statOrder = { 581 }, level = 60, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(16-17)% to Chaos Damage over Time Multiplier", statOrder = { 581 }, level = 72, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(18-20)% to Chaos Damage over Time Multiplier", statOrder = { 581 }, level = 81, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(28-30)% to Cold Damage over Time Multiplier", statOrder = { 578 }, level = 60, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(31-35)% to Cold Damage over Time Multiplier", statOrder = { 578 }, level = 72, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(36-40)% to Cold Damage over Time Multiplier", statOrder = { 578 }, level = 81, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(14-15)% to Cold Damage over Time Multiplier", statOrder = { 578 }, level = 60, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(16-17)% to Cold Damage over Time Multiplier", statOrder = { 578 }, level = 72, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(18-20)% to Cold Damage over Time Multiplier", statOrder = { 578 }, level = 81, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(28-30)% to Fire Damage over Time Multiplier", statOrder = { 574 }, level = 60, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(31-35)% to Fire Damage over Time Multiplier", statOrder = { 574 }, level = 72, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(36-40)% to Fire Damage over Time Multiplier", statOrder = { 574 }, level = 81, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(14-15)% to Fire Damage over Time Multiplier", statOrder = { 574 }, level = 60, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(16-17)% to Fire Damage over Time Multiplier", statOrder = { 574 }, level = 72, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(18-20)% to Fire Damage over Time Multiplier", statOrder = { 574 }, level = 81, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "Attacks with this Weapon Penetrate (5-6)% Elemental Resistances", statOrder = { 2889 }, level = 60, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = 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 = "Chosen", "Attacks with this Weapon Penetrate (7-8)% Elemental Resistances", statOrder = { 2889 }, level = 72, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = 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 = "Chosen", "Attacks with this Weapon Penetrate (9-10)% Elemental Resistances", statOrder = { 2889 }, level = 81, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = 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 = "Chosen", "Attacks with this Weapon Penetrate (5-6)% Chaos Resistance", statOrder = { 4563 }, level = 60, group = "ChaosPenetrationWithAttacks", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = 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 = "Chosen", "Attacks with this Weapon Penetrate (7-8)% Chaos Resistance", statOrder = { 4563 }, level = 72, group = "ChaosPenetrationWithAttacks", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = 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 = "Chosen", "Attacks with this Weapon Penetrate (9-10)% Chaos Resistance", statOrder = { 4563 }, level = 81, group = "ChaosPenetrationWithAttacks", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = 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 the Order", "(6-7)% chance to deal Double Damage", statOrder = { 3888 }, level = 60, group = "DoubleDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(8-10)% chance to deal Double Damage", statOrder = { 3888 }, level = 72, group = "DoubleDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "3% chance to deal Double Damage", statOrder = { 3888 }, level = 60, group = "DoubleDamage", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(4-5)% chance to deal Double Damage", statOrder = { 3888 }, level = 72, group = "DoubleDamage", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour and Evasion", "+(8-9) to maximum Life", statOrder = { 817, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 817, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour and Evasion", "+(12-14) to maximum Life", statOrder = { 817, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour and Energy Shield", "+(8-9) to maximum Life", statOrder = { 816, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 816, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour and Energy Shield", "+(12-14) to maximum Life", statOrder = { 816, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 818, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 818, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 818, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour", "+(8-9) to maximum Life", statOrder = { 805, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour", "+(10-11) to maximum Life", statOrder = { 805, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour", "+(12-14) to maximum Life", statOrder = { 805, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Evasion Rating", "+(8-9) to maximum Life", statOrder = { 814, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 814, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Evasion Rating", "+(12-14) to maximum Life", statOrder = { 814, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Energy Shield", "+(8-9) to maximum Life", statOrder = { 823, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 823, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Energy Shield", "+(12-14) to maximum Life", statOrder = { 823, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour, Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 819, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 819, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour, Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 819, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 817, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour and Evasion", "+(12-13) to maximum Life", statOrder = { 817, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour and Evasion", "+(14-16) to maximum Life", statOrder = { 817, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 816, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour and Energy Shield", "+(12-13) to maximum Life", statOrder = { 816, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour and Energy Shield", "+(14-16) to maximum Life", statOrder = { 816, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 818, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 818, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 818, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour", "+(10-11) to maximum Life", statOrder = { 805, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour", "+(12-13) to maximum Life", statOrder = { 805, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour", "+(14-16) to maximum Life", statOrder = { 805, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 814, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Evasion Rating", "+(12-13) to maximum Life", statOrder = { 814, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Evasion Rating", "+(14-16) to maximum Life", statOrder = { 814, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 823, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Energy Shield", "+(12-13) to maximum Life", statOrder = { 823, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Energy Shield", "+(14-16) to maximum Life", statOrder = { 823, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 819, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour, Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 819, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour, Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 819, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour and Evasion", "+(13-14) to maximum Life", statOrder = { 817, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour and Evasion", "+(15-16) to maximum Life", statOrder = { 817, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour and Evasion", "+(17-19) to maximum Life", statOrder = { 817, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour and Energy Shield", "+(13-14) to maximum Life", statOrder = { 816, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour and Energy Shield", "+(15-16) to maximum Life", statOrder = { 816, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour and Energy Shield", "+(17-19) to maximum Life", statOrder = { 816, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 818, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 818, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 818, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour", "+(13-14) to maximum Life", statOrder = { 805, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour", "+(15-16) to maximum Life", statOrder = { 805, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour", "+(17-19) to maximum Life", statOrder = { 805, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Evasion Rating", "+(13-14) to maximum Life", statOrder = { 814, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Evasion Rating", "+(15-16) to maximum Life", statOrder = { 814, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Evasion Rating", "+(17-19) to maximum Life", statOrder = { 814, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Energy Shield", "+(13-14) to maximum Life", statOrder = { 823, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Energy Shield", "+(15-16) to maximum Life", statOrder = { 823, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Energy Shield", "+(17-19) to maximum Life", statOrder = { 823, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour, Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 819, 831 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour, Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 819, 831 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour, Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 819, 831 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(11-12) to Strength and Dexterity", statOrder = { 515 }, level = 60, group = "StrengthDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(13-14) to Strength and Dexterity", statOrder = { 515 }, level = 72, group = "StrengthDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(15-17) to Strength and Dexterity", statOrder = { 515 }, level = 81, group = "StrengthDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(11-12) to Dexterity and Intelligence", statOrder = { 517 }, level = 60, group = "DexterityIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(13-14) to Dexterity and Intelligence", statOrder = { 517 }, level = 72, group = "DexterityIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(15-17) to Dexterity and Intelligence", statOrder = { 517 }, level = 81, group = "DexterityIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(11-12) to Strength and Intelligence", statOrder = { 516 }, level = 60, group = "StrengthIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(13-14) to Strength and Intelligence", statOrder = { 516 }, level = 72, group = "StrengthIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(15-17) to Strength and Intelligence", statOrder = { 516 }, level = 81, group = "StrengthIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+1 to Minimum Endurance Charges", statOrder = { 1029 }, level = 75, group = "MinimumEnduranceCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+1 to Minimum Power Charges", statOrder = { 1033 }, level = 75, group = "MinimumPowerCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+1 to Minimum Frenzy Charges", statOrder = { 1031 }, level = 75, group = "MinimumFrenzyCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(26-30) to maximum Mana", "Regenerate 2 Mana per second", statOrder = { 838, 841 }, level = 60, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(31-35) to maximum Mana", "Regenerate 3 Mana per second", statOrder = { 838, 841 }, level = 72, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(36-40) to maximum Mana", "Regenerate 4 Mana per second", statOrder = { 838, 841 }, level = 81, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(26-30) to maximum Mana", "3% reduced Mana Cost of Skills", statOrder = { 838, 1095 }, level = 60, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(31-35) to maximum Mana", "4% reduced Mana Cost of Skills", statOrder = { 838, 1095 }, level = 72, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(36-40) to maximum Mana", "5% reduced Mana Cost of Skills", statOrder = { 838, 1095 }, level = 81, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(26-30) to maximum Mana", "4% of Damage taken gained as Mana over 4 seconds when Hit", statOrder = { 838, 1616 }, level = 60, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(31-35) to maximum Mana", "5% of Damage taken gained as Mana over 4 seconds when Hit", statOrder = { 838, 1616 }, level = 72, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(36-40) to maximum Mana", "6% of Damage taken gained as Mana over 4 seconds when Hit", statOrder = { 838, 1616 }, level = 81, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "3% increased Attack and Cast Speed", statOrder = { 1260 }, level = 60, group = "AttackCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "4% increased Attack and Cast Speed", statOrder = { 1260 }, level = 25, group = "AttackCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(5-6)% increased Attack and Cast Speed", statOrder = { 1260 }, level = 50, group = "AttackCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(13-14)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1024, 2357 }, level = 60, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1024, 2357 }, level = 72, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-20)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1024, 2357 }, level = 81, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(13-14)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1024, 2130 }, level = 60, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1024, 2130 }, level = 72, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-20)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1024, 2130 }, level = 81, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(13-14)% increased Movement Speed", "Cannot be Chilled", statOrder = { 1024, 1059 }, level = 60, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(15-17)% increased Movement Speed", "Cannot be Chilled", statOrder = { 1024, 1059 }, level = 72, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(18-20)% increased Movement Speed", "Cannot be Chilled", statOrder = { 1024, 1059 }, level = 81, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(105-150) to Armour and Evasion Rating", statOrder = { 3387 }, level = 60, group = "BaseArmourAndEvasion", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(151-213) to Armour and Evasion Rating", statOrder = { 3387 }, level = 72, group = "BaseArmourAndEvasion", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(214-285) to Armour and Evasion Rating", statOrder = { 3387 }, level = 81, group = "BaseArmourAndEvasion", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(105-150) to Armour", "+(11-15) to maximum Energy Shield", statOrder = { 802, 821 }, level = 60, group = "BaseArmourAndEnergyShield", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(151-213) to Armour", "+(16-20) to maximum Energy Shield", statOrder = { 802, 821 }, level = 72, group = "BaseArmourAndEnergyShield", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(214-285) to Armour", "+(21-25) to maximum Energy Shield", statOrder = { 802, 821 }, level = 81, group = "BaseArmourAndEnergyShield", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(105-150) to Evasion Rating", "+(11-15) to maximum Energy Shield", statOrder = { 808, 821 }, level = 60, group = "BaseEvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(151-213) to Evasion Rating", "+(16-20) to maximum Energy Shield", statOrder = { 808, 821 }, level = 72, group = "BaseEvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(214-285) to Evasion Rating", "+(21-25) to maximum Energy Shield", statOrder = { 808, 821 }, level = 81, group = "BaseEvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Flasks applied to you have (3-4)% increased Effect", statOrder = { 1875 }, level = 60, group = "FlaskEffect", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Flasks applied to you have (5-6)% increased Effect", statOrder = { 1875 }, level = 72, group = "FlaskEffect", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Flasks applied to you have (7-8)% increased Effect", statOrder = { 1875 }, level = 81, group = "FlaskEffect", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(5-6)% chance for Flasks you use to not consume Charges", statOrder = { 3349 }, level = 60, group = "FlaskChargesUsed", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(7-8)% chance for Flasks you use to not consume Charges", statOrder = { 3349 }, level = 75, group = "FlaskChargesUsed", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Chosen", "20% reduced Flask Charges gained", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 1393, 1875 }, level = 60, group = "FlaskEffect", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Chosen", "33% reduced Flask Charges gained", "Flasks applied to you have (11-14)% increased Effect", statOrder = { 1393, 1875 }, level = 75, group = "FlaskEffect", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(6-8)% increased Cooldown Recovery Speed", statOrder = { 3690 }, level = 60, group = "CooldownRecovery", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(9-12)% increased Cooldown Recovery Speed", statOrder = { 3690 }, level = 75, group = "CooldownRecovery", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Endurance Charge", statOrder = { 2331 }, level = 60, group = "AllDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(3-4)% increased Damage per Endurance Charge", statOrder = { 2331 }, level = 60, group = "AllDamage", types = { ["Dagger"] = 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 the Order", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 2421 }, level = 60, group = "AllDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 2421 }, level = 60, group = "AllDamage", types = { ["Dagger"] = 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 the Order", "(5-6)% increased Damage per Power Charge", statOrder = { 4080 }, level = 60, group = "AllDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(3-4)% increased Damage per Power Charge", statOrder = { 4080 }, level = 60, group = "AllDamage", types = { ["Dagger"] = 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 = "Chosen", "(20-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1160 }, level = 60, group = "ConvertPhysicalToFire", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(20-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1162 }, level = 60, group = "ConvertPhysicalToCold", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(20-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1164 }, level = 60, group = "ConvertPhysicalToLightning", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 1369, 1371 }, level = 60, group = "MaximumMinionCount", types = { ["Helmet"] = true, ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(16-22)% increased Effect of non-Damaging Ailments on Enemies", statOrder = { 5351 }, level = 60, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(23-30)% increased Effect of non-Damaging Ailments on Enemies", statOrder = { 5351 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(6-7)% increased Effect of your Curses", statOrder = { 1755 }, level = 60, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(8-10)% increased Effect of your Curses", statOrder = { 1755 }, level = 75, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Regenerate (0.5-0.6)% of Life per second", statOrder = { 1148 }, level = 60, group = "LifeRegenerationRatePercentage", types = { ["Amulet"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Regenerate (0.7-1)% of Life per second", statOrder = { 1148 }, level = 75, group = "LifeRegenerationRatePercentage", types = { ["Amulet"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(6-7)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 3671 }, level = 60, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(8-9)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 3671 }, level = 75, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(1000-1600) to Armour during Soul Gain Prevention", statOrder = { 5409 }, level = 60, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(1601-2200) to Armour during Soul Gain Prevention", statOrder = { 5409 }, level = 72, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(2201-3000) to Armour during Soul Gain Prevention", statOrder = { 5409 }, level = 81, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "You have Onslaught during Soul Gain Prevention", statOrder = { 4329 }, level = 50, group = "GainOnslaughtDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Non-Vaal Skills deal (30-40)% increased Damage during Soul Gain Prevention", statOrder = { 4087 }, level = 60, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Non-Vaal Skills deal (41-50)% increased Damage during Soul Gain Prevention", statOrder = { 4087 }, level = 72, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Non-Vaal Skills deal (51-60)% increased Damage during Soul Gain Prevention", statOrder = { 4087 }, level = 81, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+1 to Level of Socketed AoE Gems", "(8-10)% increased Area of Effect", statOrder = { 38, 1094 }, level = 60, group = "SkillAreaOfEffectPercentAndAreaOfEffectGemLevel", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+1 to Level of Socketed Projectile Gems", "Projectiles Pierce an additional Target", statOrder = { 39, 1018 }, level = 60, group = "ProjectilePierceAndProjectileGemLevel", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+1 to Level of Socketed Melee Gems", "+1 to Melee Weapon and Unarmed Attack range", statOrder = { 41, 1688 }, level = 60, group = "MeleeRangeAndMeleeGemLevel", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(25-31)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 4035 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(32-38)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 4035 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(39-45)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 4035 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(17-21)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 4035 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = 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 the Order", "+(22-25)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 4035 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = 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 the Order", "+(26-30)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 4035 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = 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 the Order", "(14-16)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 3650 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(17-19)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 3650 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(20-22)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 3650 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "7% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 3650 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = 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 the Order", "(8-9)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 3650 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = 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 the Order", "(10-11)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 3650 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = 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 the Order", "Regenerate 60 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 4210 }, level = 60, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Regenerate 90 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 4210 }, level = 72, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Regenerate 120 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 4210 }, level = 81, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(9-10)% increased Global Critical Strike Chance", "3% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 736, 4319 }, level = 60, group = "CriticalStrikeChanceIncrease", types = { ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(11-12)% increased Global Critical Strike Chance", "4% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 736, 4319 }, level = 72, group = "CriticalStrikeChanceIncrease", types = { ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(13-14)% increased Global Critical Strike Chance", "5% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 736, 4319 }, level = 81, group = "CriticalStrikeChanceIncrease", types = { ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(11-12)% increased Global Critical Strike Chance", "(14-16)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 736, 4152 }, level = 60, group = "CriticalStrikeChanceIncrease", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(13-14)% increased Global Critical Strike Chance", "(17-19)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 736, 4152 }, level = 72, group = "CriticalStrikeChanceIncrease", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(15-16)% increased Global Critical Strike Chance", "(20-22)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 736, 4152 }, level = 81, group = "CriticalStrikeChanceIncrease", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(11-12)% increased Global Critical Strike Chance", "Adds (10-11) to (14-16) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 736, 5249 }, level = 60, group = "CriticalStrikeChanceIncrease", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(13-14)% increased Global Critical Strike Chance", "Adds (12-13) to (17-20) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 736, 5249 }, level = 72, group = "CriticalStrikeChanceIncrease", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(15-16)% increased Global Critical Strike Chance", "Adds (14-16) to (21-24) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 736, 5249 }, level = 81, group = "CriticalStrikeChanceIncrease", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(26-30) to maximum Life", "Regenerate 2 Mana per second", statOrder = { 831, 841 }, level = 60, group = "IncreasedLife", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(31-35) to maximum Life", "Regenerate 3 Mana per second", statOrder = { 831, 841 }, level = 72, group = "IncreasedLife", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(36-40) to maximum Life", "Regenerate 4 Mana per second", statOrder = { 831, 841 }, level = 81, group = "IncreasedLife", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Regenerate 10 Life per second", "+(26-30) to maximum Mana", statOrder = { 836, 838 }, level = 60, group = "IncreasedMana", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Regenerate 11 Life per second", "+(31-35) to maximum Mana", statOrder = { 836, 838 }, level = 72, group = "IncreasedMana", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Regenerate 12 Life per second", "+(36-40) to maximum Mana", statOrder = { 836, 838 }, level = 81, group = "IncreasedMana", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(18-20)% increased Totem Placement speed", statOrder = { 1732 }, level = 60, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(21-25)% increased Totem Placement speed", statOrder = { 1732 }, level = 72, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(26-30)% increased Totem Placement speed", statOrder = { 1732 }, level = 81, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Adds (6-7) to (9-10) Fire Damage", "Adds (6-7) to (9-10) Cold Damage", statOrder = { 641, 648 }, level = 60, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Adds (8-9) to (11-13) Fire Damage", "Adds (8-9) to (11-13) Cold Damage", statOrder = { 641, 648 }, level = 72, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Adds (10-12) to (14-16) Fire Damage", "Adds (10-12) to (14-16) Cold Damage", statOrder = { 641, 648 }, level = 81, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Adds (6-7) to (9-10) Fire Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 641, 657 }, level = 60, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Adds (8-9) to (11-13) Fire Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 641, 657 }, level = 72, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Adds (10-12) to (14-16) Fire Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 641, 657 }, level = 81, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Adds (6-7) to (9-10) Cold Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 648, 657 }, level = 60, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Adds (8-9) to (11-13) Cold Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 648, 657 }, level = 72, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, }, }, - { type = "Prefix", affix = "Chosen", "Adds (10-12) to (14-16) Cold Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 648, 657 }, level = 81, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Your Critical Strike Chance is Lucky while Focussed", statOrder = { 4235 }, level = 72, group = "LuckyCriticalsDuringFocus", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(16-18)% chance to Dodge Attack Hits while Focussed", statOrder = { 4139 }, level = 60, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(19-22)% chance to Dodge Attack Hits while Focussed", statOrder = { 4139 }, level = 72, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", "+(23-25)% chance to Dodge Attack Hits while Focussed", statOrder = { 4139 }, level = 81, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, - { type = "Prefix", affix = "Chosen", "8% additional Physical Damage Reduction while Focussed", statOrder = { 3528 }, level = 60, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(9-10)% additional Physical Damage Reduction while Focussed", statOrder = { 3528 }, level = 72, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(11-12)% additional Physical Damage Reduction while Focussed", statOrder = { 3528 }, level = 81, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Shock nearby Enemies for 2 Seconds when you Focus", statOrder = { 5550 }, level = 60, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Shock nearby Enemies for 3 Seconds when you Focus", statOrder = { 5550 }, level = 72, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 5550 }, level = 81, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of the Order", "1% of Evasion Rating is Regenerated as Life per second while Focussed", statOrder = { 4225 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Recover (23-25)% of Mana and Energy Shield when you Focus", statOrder = { 5522 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Recover (26-28)% of Mana and Energy Shield when you Focus", statOrder = { 5522 }, level = 72, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Recover (29-31)% of Mana and Energy Shield when you Focus", statOrder = { 5522 }, level = 81, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(16-20)% chance to deal Double Damage while Focussed", statOrder = { 3892 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(21-25)% chance to deal Double Damage while Focussed", statOrder = { 3892 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(26-30)% chance to deal Double Damage while Focussed", statOrder = { 3892 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(7-9)% chance to deal Double Damage while Focussed", statOrder = { 3892 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(10-12)% chance to deal Double Damage while Focussed", statOrder = { 3892 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(13-15)% chance to deal Double Damage while Focussed", statOrder = { 3892 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(22-25)% increased Attack and Cast Speed while Focussed", statOrder = { 3619 }, level = 60, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(26-30)% increased Attack and Cast Speed while Focussed", statOrder = { 3619 }, level = 72, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(31-36)% increased Attack and Cast Speed while Focussed", statOrder = { 3619 }, level = 81, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(81-100)% increased Duration of Ailments you inflict while Focussed", statOrder = { 5644 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(101-120)% increased Duration of Ailments you inflict while Focussed", statOrder = { 5644 }, level = 72, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(121-140)% increased Duration of Ailments you inflict while Focussed", statOrder = { 5644 }, level = 81, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "You are Immune to Ailments while Focussed", statOrder = { 4451 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocused", types = { ["Boots"] = true, }, }, - { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focussed", "10% of Damage Leeched as Life while Focussed", statOrder = { 4353, 4490 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocused", types = { ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "80% increased Effect of Fortify on you while Focussed", statOrder = { 4280 }, level = 60, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", "100% increased Effect of Fortify on you while Focussed", statOrder = { 4280 }, level = 72, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", "120% increased Effect of Fortify on you while Focussed", statOrder = { 4280 }, level = 81, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Trigger Socketed Spells when you Focus", statOrder = { 405 }, level = 60, group = "TriggerSocketedSpellWhenYouFocus", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(21-25)% of Damage is taken from Mana before Life while Focussed", statOrder = { 4091 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Minions Recover 100% of their Life when you Focus", statOrder = { 5309 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocus", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Skills Cost no Mana while Focussed", statOrder = { 5582 }, level = 60, group = "SkillsCostNoManaWhileFocused", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Leo's", "(11-13)% increased Damage", statOrder = { 522 }, level = 60, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, - { type = "Prefix", affix = "Leo's", "(14-16)% increased Damage", statOrder = { 522 }, level = 72, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, - { type = "Prefix", affix = "Leo's", "(17-20)% increased Damage", statOrder = { 522 }, level = 81, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, - { type = "Prefix", affix = "Catarina's", "+1 to Level of Socketed Support Gems", statOrder = { 50 }, level = 60, group = "IncreaseSpecificSocketedGemLevel", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Catarina's", "+2 to Level of Socketed Support Gems", statOrder = { 50 }, level = 80, group = "IncreaseSpecificSocketedGemLevel", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Elreon's", "Channelling Skills have -1 to Total Mana Cost", statOrder = { 5579 }, level = 60, group = "IncreaseFlatManaCost", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Elreon's", "Channelling Skills have -2 to Total Mana Cost", statOrder = { 5579 }, level = 72, group = "IncreaseFlatManaCost", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Elreon's", "Channelling Skills have -3 to Total Mana Cost", statOrder = { 5579 }, level = 81, group = "IncreaseFlatManaCost", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills have -(5-4) to Total Mana Cost", statOrder = { 5581 }, level = 60, group = "IncreaseFlatManaCost", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills have -(7-6) to Total Mana Cost", statOrder = { 5581 }, level = 72, group = "IncreaseFlatManaCost", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills have -(9-8) to Total Mana Cost", statOrder = { 5581 }, level = 81, group = "IncreaseFlatManaCost", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Vorici's", "(24-30)% increased Damage while Leeching", statOrder = { 2199 }, level = 60, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Vorici's", "(31-36)% increased Damage while Leeching", statOrder = { 2199 }, level = 72, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Vorici's", "(37-43)% increased Damage while Leeching", statOrder = { 2199 }, level = 81, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Haku's", "+(5-6)% to Quality of Socketed Gems", statOrder = { 60 }, level = 60, group = "SocketedGemQuality", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Haku's", "+(6-7)% to Quality of Socketed Gems", statOrder = { 60 }, level = 72, group = "SocketedGemQuality", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Haku's", "+(7-8)% to Quality of Socketed Gems", statOrder = { 60 }, level = 81, group = "SocketedGemQuality", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Tora's", "Adds (9-10) to (14-15) Physical Damage", "30% chance to cause Bleeding on Hit", statOrder = { 594, 1642 }, level = 60, group = "PhysicalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Tora's", "Adds (11-13) to (16-17) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 594, 1642 }, level = 72, group = "PhysicalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Tora's", "Adds (14-16) to (18-20) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 594, 1642 }, level = 81, group = "PhysicalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Tora's", "Adds (5-6) to (8-9) Physical Damage", "30% chance to cause Bleeding on Hit", statOrder = { 594, 1642 }, level = 60, group = "PhysicalDamage", types = { ["Dagger"] = 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 = "Tora's", "Adds (7-8) to (10-11) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 594, 1642 }, level = 72, group = "PhysicalDamage", types = { ["Dagger"] = 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 = "Tora's", "Adds (9-11) to (12-14) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 594, 1642 }, level = 81, group = "PhysicalDamage", types = { ["Dagger"] = 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 = "Vagan's", "Hits can't be Evaded", statOrder = { 1256 }, level = 60, group = "AlwaysHits", types = { ["Dagger"] = 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, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Brinerot", "(16-18)% increased Damage during any Flask Effect", statOrder = { 3206 }, level = 60, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Brinerot", "(19-23)% increased Damage during any Flask Effect", statOrder = { 3206 }, level = 72, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Brinerot", "(24-28)% increased Damage during any Flask Effect", statOrder = { 3206 }, level = 81, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Janus", "(31-35)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 5493 }, level = 60, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Janus", "(36-40)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 5493 }, level = 72, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Janus", "(41-45)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 5493 }, level = 81, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (8-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1146 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1146 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (14-16)% of Fire Damage as Extra Chaos Damage", statOrder = { 1146 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain 4% of Fire Damage as Extra Chaos Damage", statOrder = { 1146 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (5-6)% of Fire Damage as Extra Chaos Damage", statOrder = { 1146 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (7-8)% of Fire Damage as Extra Chaos Damage", statOrder = { 1146 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (8-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1145 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1145 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (14-16)% of Cold Damage as Extra Chaos Damage", statOrder = { 1145 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain 4% of Cold Damage as Extra Chaos Damage", statOrder = { 1145 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (5-6)% of Cold Damage as Extra Chaos Damage", statOrder = { 1145 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (7-8)% of Cold Damage as Extra Chaos Damage", statOrder = { 1145 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (8-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1143 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1143 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (14-16)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1143 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain 4% of Lightning Damage as Extra Chaos Damage", statOrder = { 1143 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (5-6)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1143 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (7-8)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1143 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (8-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1140 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1140 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (14-16)% of Physical Damage as Extra Chaos Damage", statOrder = { 1140 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1140 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (5-6)% of Physical Damage as Extra Chaos Damage", statOrder = { 1140 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Prefix", affix = "It's", "Gain (7-8)% of Physical Damage as Extra Chaos Damage", statOrder = { 1140 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Hillock", "4% increased Attributes", statOrder = { 518 }, level = 60, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Hillock", "5% increased Attributes", statOrder = { 518 }, level = 72, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Hillock", "6% increased Attributes", statOrder = { 518 }, level = 81, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Gravicius'", "Gain 6% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 5214 }, level = 60, group = "LifeAddedAsEnergyShield", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Gravicius'", "Gain (7-8)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 5214 }, level = 72, group = "LifeAddedAsEnergyShield", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Gravicius'", "Gain (9-10)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 5214 }, level = 81, group = "LifeAddedAsEnergyShield", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "Jorgin's", "10% Chance to Trigger Level 18 Summon Spectral Wolf on Kill", statOrder = { 374 }, level = 60, group = "SummonWolfOnKill", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Korell's", "(3-4)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1609 }, level = 60, group = "PhysicalDamageTakenAsElement", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Korell's", "(5-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1609 }, level = 72, group = "PhysicalDamageTakenAsElement", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Korell's", "(7-8)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1609 }, level = 81, group = "PhysicalDamageTakenAsElement", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Rin's", "60% chance to Avoid being Frozen", statOrder = { 1060 }, level = 60, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Rin's", "80% chance to Avoid being Frozen", statOrder = { 1060 }, level = 72, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Rin's", "Cannot be Frozen", statOrder = { 1060 }, level = 81, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Cameria", "(10-11)% increased Global Critical Strike Chance", "+(15-17)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 736, 4033 }, level = 60, group = "CriticalStrikeChanceIncrease", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Cameria", "(12-13)% increased Global Critical Strike Chance", "+(18-20)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 736, 4033 }, level = 72, group = "CriticalStrikeChanceIncrease", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Cameria", "(14-16)% increased Global Critical Strike Chance", "+(21-23)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 736, 4033 }, level = 81, group = "CriticalStrikeChanceIncrease", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Aisling", "(8-10)% increased Global Physical Damage", "(8-10)% increased Chaos Damage", statOrder = { 557, 662 }, level = 60, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Aisling", "(11-13)% increased Global Physical Damage", "(11-13)% increased Chaos Damage", statOrder = { 557, 662 }, level = 72, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Aisling", "(14-16)% increased Global Physical Damage", "(14-16)% increased Chaos Damage", statOrder = { 557, 662 }, level = 81, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Riker", "(8-10)% increased Fire Damage", "(8-10)% increased Lightning Damage", statOrder = { 640, 656 }, level = 60, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Riker", "(11-13)% increased Fire Damage", "(11-13)% increased Lightning Damage", statOrder = { 640, 656 }, level = 72, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Riker", "(14-16)% increased Fire Damage", "(14-16)% increased Lightning Damage", statOrder = { 640, 656 }, level = 81, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Regenerate 3% of Life per second during Flask Effect", statOrder = { 4604 }, level = 60, group = "LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect", types = { ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(8-12)% increased Movement Speed during Flask effect", "50% Chance to avoid being Stunned during Flask Effect", statOrder = { 439, 4595 }, level = 60, group = "LocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect", types = { ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(20-25)% reduced Mana Cost of Skills during Flask Effect", statOrder = { 457 }, level = 60, group = "LocalFlaskSkillManaCostDuringFlaskEffect", types = { ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(20-30)% increased Rarity of Items found during Flask Effect", statOrder = { 4601 }, level = 60, group = "LocalFlaskItemFoundRarityDuringFlaskEffect", types = { ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(60-80)% increased Critical Strike Chance during Flask Effect", statOrder = { 4597 }, level = 60, group = "LocalFlaskCriticalStrikeChanceDuringFlaskEffect", types = { ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, }, }, - { type = "Suffix", affix = "of the Order", "15% of Damage Taken from Hits is Leeched as Life during Flask Effect", statOrder = { 4602 }, level = 60, group = "LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect", types = { ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(8-10)% increased Attack Speed", "+(7-12)% to Quality", statOrder = { 688, 4609 }, level = 60, group = "IncreasedAttackSpeed", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(13-16)% increased Attack Speed", "+(13-18)% to Quality", statOrder = { 688, 4609 }, level = 75, group = "IncreasedAttackSpeed", types = { ["Dagger"] = 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, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(15-20)% increased Critical Strike Chance", "+(7-12)% to Quality", statOrder = { 740, 4609 }, level = 60, group = "CriticalStrikeChanceIncrease", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(21-25)% increased Critical Strike Chance", "+(13-18)% to Quality", statOrder = { 740, 4609 }, level = 75, group = "CriticalStrikeChanceIncrease", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(161-180) to Accuracy Rating", "+(10-12)% to Quality", statOrder = { 1237, 4609 }, level = 60, group = "IncreasedAccuracy", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(181-210) to Accuracy Rating", "+(13-15)% to Quality", statOrder = { 1237, 4609 }, level = 72, group = "IncreasedAccuracy", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(211-250) to Accuracy Rating", "+(16-18)% to Quality", statOrder = { 1237, 4609 }, level = 81, group = "IncreasedAccuracy", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(8-10)% increased Attack Speed", statOrder = { 379, 688 }, level = 60, group = "IncreasedAttackSpeed", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(13-16)% increased Attack Speed", statOrder = { 379, 688 }, level = 75, group = "IncreasedAttackSpeed", types = { ["Dagger"] = 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, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(10-12)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 721, 4306 }, level = 60, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(13-15)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 721, 4306 }, level = 72, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(16-19)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 721, 4306 }, level = 81, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(7-8)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 721, 4306 }, level = 60, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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 the Order", "(9-10)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 721, 4306 }, level = 72, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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 the Order", "(11-13)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 721, 4306 }, level = 81, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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 the Order", "Trigger a Socketed Spell when you Use a Skill", statOrder = { 404 }, level = 75, group = "SupportedByTrigger", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(9-10)% to Fire and Chaos Resistances", statOrder = { 4240 }, level = 60, group = "FireAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(11-12)% to Fire and Chaos Resistances", statOrder = { 4240 }, level = 72, group = "FireAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(13-15)% to Fire and Chaos Resistances", statOrder = { 4240 }, level = 81, group = "FireAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(9-10)% to Lightning and Chaos Resistances", statOrder = { 4523 }, level = 60, group = "LightningAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(11-12)% to Lightning and Chaos Resistances", statOrder = { 4523 }, level = 72, group = "LightningAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(13-15)% to Lightning and Chaos Resistances", statOrder = { 4523 }, level = 81, group = "LightningAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(9-10)% to Cold and Chaos Resistances", statOrder = { 3964 }, level = 60, group = "ColdAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(11-12)% to Cold and Chaos Resistances", statOrder = { 3964 }, level = 72, group = "ColdAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(13-15)% to Cold and Chaos Resistances", statOrder = { 3964 }, level = 81, group = "ColdAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(10-15) to Strength", "+(7-10)% to Quality", statOrder = { 512, 4609 }, level = 60, group = "Strength", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(16-20) to Strength", "+(11-14)% to Quality", statOrder = { 512, 4609 }, level = 72, group = "Strength", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(21-25) to Strength", "+(15-18)% to Quality", statOrder = { 512, 4609 }, level = 81, group = "Strength", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(10-15) to Dexterity", "+(7-10)% to Quality", statOrder = { 513, 4609 }, level = 60, group = "Dexterity", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(16-20) to Dexterity", "+(11-14)% to Quality", statOrder = { 513, 4609 }, level = 72, group = "Dexterity", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(21-25) to Dexterity", "+(15-18)% to Quality", statOrder = { 513, 4609 }, level = 81, group = "Dexterity", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(10-15) to Intelligence", "+(7-10)% to Quality", statOrder = { 514, 4609 }, level = 60, group = "Intelligence", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(16-20) to Intelligence", "+(11-14)% to Quality", statOrder = { 514, 4609 }, level = 72, group = "Intelligence", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "+(21-25) to Intelligence", "+(15-18)% to Quality", statOrder = { 514, 4609 }, level = 81, group = "Intelligence", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Regenerate 1% of Life per second during any Flask Effect", statOrder = { 4519 }, level = 60, group = "LifeRegenerationRatePerMinuteWhileUsingFlask", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Regenerate 1.5% of Life per second during any Flask Effect", statOrder = { 4519 }, level = 72, group = "LifeRegenerationRatePerMinuteWhileUsingFlask", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", "Regenerate 2% of Life per second during any Flask Effect", statOrder = { 4519 }, level = 81, group = "LifeRegenerationRatePerMinuteWhileUsingFlask", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(7-8)% increased Trap Throwing Speed", statOrder = { 1132 }, level = 60, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(9-10)% increased Trap Throwing Speed", statOrder = { 1132 }, level = 72, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(11-12)% increased Trap Throwing Speed", statOrder = { 1132 }, level = 81, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(7-8)% increased Mine Throwing Speed", statOrder = { 1133 }, level = 60, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(9-10)% increased Mine Throwing Speed", statOrder = { 1133 }, level = 72, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(11-12)% increased Mine Throwing Speed", statOrder = { 1133 }, level = 81, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(7-8)% increased Brand Attachment range", statOrder = { 5570 }, level = 60, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(9-10)% increased Brand Attachment range", statOrder = { 5570 }, level = 72, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of the Order", "(11-12)% increased Brand Attachment range", statOrder = { 5570 }, level = 81, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(5-8)% increased maximum Life", "(5-8)% increased maximum Mana", statOrder = { 833, 839 }, level = 60, group = "MaximumLifeIncreasePercent", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(5-7)% Chance to Block Attack Damage", statOrder = { 486 }, level = 60, group = "BlockPercent", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(8-10)% chance to Dodge Spell Hits", statOrder = { 1375 }, level = 60, group = "SpellDodgePercentage", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(25-35)% chance to Avoid Elemental Ailments", "(25-35)% chance to Avoid being Stunned", statOrder = { 1058, 1066 }, level = 60, group = "AvoidStunAndElementalStatusAilments", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(6-7)% increased Area of Effect", "(9-10)% increased Area Damage", statOrder = { 1094, 1248 }, level = 60, group = "AreaDamageAndAreaOfEffect", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(8-9)% increased Area of Effect", "(11-13)% increased Area Damage", statOrder = { 1094, 1248 }, level = 72, group = "AreaDamageAndAreaOfEffect", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(10-12)% increased Area of Effect", "(14-16)% increased Area Damage", statOrder = { 1094, 1248 }, level = 81, group = "AreaDamageAndAreaOfEffect", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(10-12)% increased Projectile Speed", "(9-10)% increased Projectile Damage", statOrder = { 1022, 1209 }, level = 60, group = "ProjectileDamageAndProjectileSpeed", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(13-16)% increased Projectile Speed", "(11-13)% increased Projectile Damage", statOrder = { 1022, 1209 }, level = 72, group = "ProjectileDamageAndProjectileSpeed", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(17-20)% increased Projectile Speed", "(14-16)% increased Projectile Damage", statOrder = { 1022, 1209 }, level = 81, group = "ProjectileDamageAndProjectileSpeed", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(9-10)% increased Melee Damage", "+1 to Melee Weapon and Unarmed Attack range", statOrder = { 560, 1688 }, level = 60, group = "MeleeRangeAndMeleeDamage", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(11-13)% increased Melee Damage", "+1 to Melee Weapon and Unarmed Attack range", statOrder = { 560, 1688 }, level = 72, group = "MeleeRangeAndMeleeDamage", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Chosen", "(14-16)% increased Melee Damage", "+1 to Melee Weapon and Unarmed Attack range", statOrder = { 560, 1688 }, level = 81, group = "MeleeRangeAndMeleeDamage", types = { ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Prefixes", "Prefixes Cannot Be Changed", statOrder = { 7 }, level = 1, group = "ItemGenerationCannotChangePrefixes", types = { ["Dagger"] = 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, ["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", "Suffixes Cannot Be Changed", statOrder = { 8 }, level = 1, group = "ItemGenerationCannotChangeSuffixes", types = { ["Dagger"] = 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, ["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", "Can have up to 3 Crafted Modifiers", statOrder = { 11 }, level = 1, group = "ItemGenerationCanHaveMultipleCraftedMods", types = { ["Dagger"] = 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, ["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 Spellcraft", "Cannot roll Attack Modifiers", statOrder = { 10 }, level = 1, group = "ItemGenerationCannotRollAttackAffixes", types = { ["Dagger"] = 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, ["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 Weaponcraft", "Cannot roll Caster Modifiers", statOrder = { 9 }, level = 1, group = "ItemGenerationCannotRollCasterAffixes", types = { ["Dagger"] = 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, ["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, }, }, + { affix = "", "(20-29)% more Monster Life", statOrder = { 1587 }, level = 0, group = "MapMonsterLife", types = { ["Map"] = true, }, }, + { affix = "", "(30-39)% more Monster Life", statOrder = { 1587 }, level = 0, group = "MapMonsterLife", types = { ["Map"] = true, }, }, + { affix = "", "(40-49)% more Monster Life", statOrder = { 1587 }, level = 0, group = "MapMonsterLife", types = { ["Map"] = true, }, }, + { affix = "", "(50-59)% more Monster Life", statOrder = { 1587 }, level = 0, group = "MapMonsterLife", types = { ["Map"] = true, }, }, + { affix = "", "(15-19)% increased Monster Damage", statOrder = { 1598 }, level = 0, group = "MapMonsterDamage", types = { ["Map"] = true, }, }, + { affix = "", "(20-24)% increased Monster Damage", statOrder = { 1598 }, level = 0, group = "MapMonsterDamage", types = { ["Map"] = true, }, }, + { affix = "", "(25-30)% increased Monster Damage", statOrder = { 1598 }, level = 0, group = "MapMonsterDamage", types = { ["Map"] = true, }, }, + { affix = "", "(31-35)% increased Monster Damage", statOrder = { 1598 }, level = 0, group = "MapMonsterDamage", types = { ["Map"] = true, }, }, + { affix = "", "Area is inhabited by Spiders", statOrder = { 5614 }, level = 0, group = "MapMonsterPacks", types = { ["Map"] = true, }, }, + { affix = "", "Area is inhabited by Blackguards", statOrder = { 5609 }, level = 0, group = "MapMonsterPacks", types = { ["Map"] = true, }, }, + { affix = "", "Area is inhabited by Bandits", statOrder = { 1545 }, level = 0, group = "MapMonsterPacks", types = { ["Map"] = true, }, }, + { type = "Prefix", affix = "Ceremonial", "Area contains many Totems", statOrder = { 1542 }, level = 1, group = "MapTotems", types = { ["Map"] = true, }, }, + { type = "Prefix", affix = "Anarchic", "Area is inhabited by 2 additional Rogue Exiles", statOrder = { 1556 }, level = 1, group = "MapMultipleExiles", types = { ["Map"] = true, }, }, + { type = "Prefix", affix = "Otherworldly", "Slaying Enemies close together has a 13% chance to attract monsters from Beyond", statOrder = { 1815 }, level = 1, group = "MapBeyondLeagueRolled", types = { ["Map"] = true, }, }, + { type = "Prefix", affix = "Twinned", "Area contains two Unique Bosses", statOrder = { 1633 }, level = 1, group = "MapTwoBosses", types = { ["Map"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(15-25) to maximum Life", statOrder = { 877 }, 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", "+(16-20)% to Fire Resistance", statOrder = { 923 }, level = 15, group = "FireResistance", types = { ["Dagger"] = 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, ["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", "+(16-20)% to Cold Resistance", statOrder = { 929 }, level = 15, group = "ColdResistance", types = { ["Dagger"] = 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, ["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", "+(16-20)% to Lightning Resistance", statOrder = { 934 }, level = 15, group = "LightningResistance", types = { ["Dagger"] = 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, ["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", "+(15-20) to Strength", statOrder = { 521 }, level = 15, group = "Strength", types = { ["Dagger"] = 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, ["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", "+(15-20) to Dexterity", statOrder = { 522 }, level = 15, group = "Dexterity", types = { ["Dagger"] = 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, ["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", "+(15-20) to Intelligence", statOrder = { 523 }, level = 15, group = "Intelligence", types = { ["Dagger"] = 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, ["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", "+(21-28)% to Fire Resistance", statOrder = { 923 }, level = 30, group = "FireResistance", types = { ["Dagger"] = 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, ["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", "+(29-35)% to Fire Resistance", statOrder = { 923 }, level = 50, group = "FireResistance", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(21-28)% to Cold Resistance", statOrder = { 929 }, level = 30, group = "ColdResistance", types = { ["Dagger"] = 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, ["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", "+(29-35)% to Cold Resistance", statOrder = { 929 }, level = 50, group = "ColdResistance", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(21-28)% to Lightning Resistance", statOrder = { 934 }, level = 30, group = "LightningResistance", types = { ["Dagger"] = 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, ["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", "+(29-35)% to Lightning Resistance", statOrder = { 934 }, level = 50, group = "LightningResistance", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(10-12)% to Fire and Cold Resistances", statOrder = { 1979 }, level = 30, group = "FireAndColdResistance", types = { ["Dagger"] = 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, ["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", "+(13-16)% to Fire and Cold Resistances", statOrder = { 1979 }, level = 50, group = "FireAndColdResistance", types = { ["Dagger"] = 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, ["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", "+(17-20)% to Fire and Cold Resistances", statOrder = { 1979 }, level = 75, group = "FireAndColdResistance", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 1981 }, level = 30, group = "ColdAndLightningResistance", types = { ["Dagger"] = 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, ["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", "+(13-16)% to Cold and Lightning Resistances", statOrder = { 1981 }, level = 50, group = "ColdAndLightningResistance", types = { ["Dagger"] = 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, ["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", "+(17-20)% to Cold and Lightning Resistances", statOrder = { 1981 }, level = 75, group = "ColdAndLightningResistance", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 1980 }, level = 30, group = "FireAndLightningResistance", types = { ["Dagger"] = 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, ["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", "+(13-16)% to Fire and Lightning Resistances", statOrder = { 1980 }, level = 50, group = "FireAndLightningResistance", types = { ["Dagger"] = 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, ["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", "+(17-20)% to Fire and Lightning Resistances", statOrder = { 1980 }, level = 75, group = "FireAndLightningResistance", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(5-8)% to all Elemental Resistances", statOrder = { 917 }, level = 30, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(9-12)% to all Elemental Resistances", statOrder = { 917 }, level = 60, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(4-6)% to all Elemental Resistances", "Minions have +(5-8)% to all Elemental Resistances", statOrder = { 917, 2090 }, level = 30, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(7-9)% to all Elemental Resistances", "Minions have +(9-12)% to all Elemental Resistances", statOrder = { 917, 2090 }, level = 60, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(21-25) to Strength", statOrder = { 521 }, level = 20, group = "Strength", types = { ["Dagger"] = 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, ["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", "+(26-30) to Strength", statOrder = { 521 }, level = 40, group = "Strength", types = { ["Dagger"] = 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, ["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", "+(21-25) to Dexterity", statOrder = { 522 }, level = 20, group = "Dexterity", types = { ["Dagger"] = 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, ["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", "+(26-30) to Dexterity", statOrder = { 522 }, level = 40, group = "Dexterity", types = { ["Dagger"] = 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, ["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", "+(21-25) to Intelligence", statOrder = { 523 }, level = 20, group = "Intelligence", types = { ["Dagger"] = 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, ["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", "+(26-30) to Intelligence", statOrder = { 523 }, level = 40, group = "Intelligence", types = { ["Dagger"] = 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, ["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", "+(6-9) to all Attributes", statOrder = { 520 }, level = 30, group = "AllAttributes", types = { ["Dagger"] = 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, ["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", "+(10-13) to all Attributes", statOrder = { 520 }, level = 50, group = "AllAttributes", types = { ["Dagger"] = 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, ["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", "(10-14)% increased Movement Speed", statOrder = { 1070 }, level = 1, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(15-19)% increased Movement Speed", statOrder = { 1070 }, level = 40, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(20-24)% increased Movement Speed", statOrder = { 1070 }, level = 68, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(26-40) to maximum Life", statOrder = { 877 }, 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", "+(41-55) to maximum Life", statOrder = { 877 }, 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", "+(56-70) to maximum Life", statOrder = { 877 }, level = 75, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(71-85) to maximum Life", statOrder = { 877 }, level = 80, group = "IncreasedLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 944 }, level = 30, group = "LifeLeech", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 944 }, level = 50, group = "LifeLeech", types = { ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 946 }, level = 30, group = "LifeLeech", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(0.5-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 946 }, level = 50, group = "LifeLeech", types = { ["Dagger"] = 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, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 982 }, level = 70, group = "ManaLeech", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(55-64) to maximum Mana", statOrder = { 884 }, level = 20, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(65-74) to maximum Mana", statOrder = { 884 }, level = 40, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(75-84) to maximum Mana", statOrder = { 884 }, level = 60, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(85-94) to maximum Mana", statOrder = { 884 }, level = 75, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(35-44) to maximum Mana", statOrder = { 884 }, level = 20, group = "IncreasedMana", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(45-54) to maximum Mana", statOrder = { 884 }, level = 40, group = "IncreasedMana", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(55-64) to maximum Mana", statOrder = { 884 }, level = 60, group = "IncreasedMana", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(65-74) to maximum Mana", statOrder = { 884 }, level = 75, group = "IncreasedMana", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(25-34) to maximum Mana", statOrder = { 884 }, 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", "+(35-44) to maximum Mana", statOrder = { 884 }, 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", "+(45-54) to maximum Mana", statOrder = { 884 }, 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", "(20-30)% increased Mana Regeneration Rate", statOrder = { 888 }, level = 30, group = "ManaRegeneration", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(31-40)% increased Mana Regeneration Rate", statOrder = { 888 }, level = 50, group = "ManaRegeneration", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(40-59)% increased Physical Damage", statOrder = { 570 }, level = 20, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(60-79)% increased Physical Damage", statOrder = { 570 }, level = 40, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(80-99)% increased Physical Damage", statOrder = { 570 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(100-129)% increased Physical Damage", statOrder = { 570 }, level = 80, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(37-51)% increased Spell Damage", statOrder = { 562 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(52-66)% increased Spell Damage", statOrder = { 562 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(67-81)% increased Spell Damage", statOrder = { 562 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(82-99)% increased Spell Damage", statOrder = { 562 }, level = 80, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(25-34)% increased Spell Damage", statOrder = { 562 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(35-44)% increased Spell Damage", statOrder = { 562 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(45-54)% increased Spell Damage", statOrder = { 562 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(55-66)% increased Spell Damage", statOrder = { 562 }, level = 80, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(11-20)% increased Damage over Time", statOrder = { 550 }, level = 30, group = "DegenerationDamage", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(21-30)% increased Damage over Time", statOrder = { 550 }, level = 50, group = "DegenerationDamage", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(15-23)% increased Elemental Damage with Attack Skills", statOrder = { 4319 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(24-32)% increased Elemental Damage with Attack Skills", statOrder = { 4319 }, level = 50, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(8-10)% increased Attack Speed", statOrder = { 734 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(11-15)% increased Attack Speed", statOrder = { 734 }, level = 50, group = "IncreasedAttackSpeed", types = { ["Dagger"] = 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, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(16-20)% increased Attack Speed", statOrder = { 734 }, level = 75, group = "IncreasedAttackSpeed", types = { ["Dagger"] = 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, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(11-13)% increased Attack Speed", statOrder = { 734 }, level = 75, group = "IncreasedAttackSpeed", types = { ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(7-12)% increased Attack Speed", statOrder = { 731 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(12-15)% increased Cast Speed", statOrder = { 767 }, level = 30, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(16-20)% increased Cast Speed", statOrder = { 767 }, level = 50, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(21-28)% increased Cast Speed", statOrder = { 767 }, level = 75, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(9-11)% increased Cast Speed", statOrder = { 767 }, level = 30, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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", "(12-14)% increased Cast Speed", statOrder = { 767 }, level = 50, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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", "(15-18)% increased Cast Speed", statOrder = { 767 }, level = 75, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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", "(37-51)% increased Fire Damage", statOrder = { 686 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(52-66)% increased Fire Damage", statOrder = { 686 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(67-81)% increased Fire Damage", statOrder = { 686 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(25-34)% increased Fire Damage", statOrder = { 686 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(35-44)% increased Fire Damage", statOrder = { 686 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(45-54)% increased Fire Damage", statOrder = { 686 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(9-12)% increased Fire Damage", statOrder = { 686 }, level = 20, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(13-16)% increased Fire Damage", statOrder = { 686 }, level = 40, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(37-51)% increased Cold Damage", statOrder = { 693 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(52-66)% increased Cold Damage", statOrder = { 693 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(67-81)% increased Cold Damage", statOrder = { 693 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(25-34)% increased Cold Damage", statOrder = { 693 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(35-44)% increased Cold Damage", statOrder = { 693 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(45-54)% increased Cold Damage", statOrder = { 693 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(9-12)% increased Cold Damage", statOrder = { 693 }, level = 20, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(13-16)% increased Cold Damage", statOrder = { 693 }, level = 40, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(37-51)% increased Lightning Damage", statOrder = { 702 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(52-66)% increased Lightning Damage", statOrder = { 702 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(67-81)% increased Lightning Damage", statOrder = { 702 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(25-34)% increased Lightning Damage", statOrder = { 702 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(35-44)% increased Lightning Damage", statOrder = { 702 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(45-54)% increased Lightning Damage", statOrder = { 702 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(9-12)% increased Lightning Damage", statOrder = { 702 }, level = 20, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(13-16)% increased Lightning Damage", statOrder = { 702 }, level = 40, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(37-51)% increased Chaos Damage", statOrder = { 708 }, level = 20, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(52-66)% increased Chaos Damage", statOrder = { 708 }, level = 40, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(67-81)% increased Chaos Damage", statOrder = { 708 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(25-34)% increased Chaos Damage", statOrder = { 708 }, level = 30, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(35-44)% increased Chaos Damage", statOrder = { 708 }, level = 50, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(45-54)% increased Chaos Damage", statOrder = { 708 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(9-12)% increased Chaos Damage", statOrder = { 708 }, level = 30, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(13-16)% increased Chaos Damage", statOrder = { 708 }, level = 50, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(91-120) to Accuracy Rating", statOrder = { 1280 }, level = 20, group = "IncreasedAccuracy", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(121-200) to Accuracy Rating", statOrder = { 1280 }, level = 40, group = "IncreasedAccuracy", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(201-300) to Accuracy Rating", statOrder = { 1280 }, level = 68, group = "IncreasedAccuracy", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(91-120) to Accuracy Rating", statOrder = { 754 }, level = 20, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(121-150) to Accuracy Rating", statOrder = { 754 }, level = 40, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(151-220) to Accuracy Rating", statOrder = { 754 }, level = 68, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(9-12)% increased Global Physical Damage", statOrder = { 569 }, level = 30, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(13-16)% increased Global Physical Damage", statOrder = { 569 }, level = 50, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(34-45)% increased Armour", statOrder = { 851 }, level = 40, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(45-55)% increased Armour", statOrder = { 851 }, level = 60, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(56-74)% increased Armour", statOrder = { 851 }, level = 75, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(40-50) to Armour", statOrder = { 849 }, level = 30, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(60-80) to Armour", statOrder = { 849 }, level = 50, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(180-250) to Armour", statOrder = { 849 }, level = 68, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(34-45)% increased Evasion Rating", statOrder = { 860 }, level = 40, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(45-55)% increased Evasion Rating", statOrder = { 860 }, level = 60, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(56-74)% increased Evasion Rating", statOrder = { 860 }, level = 75, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(40-50) to Evasion Rating", statOrder = { 858 }, level = 30, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(60-80) to Evasion Rating", statOrder = { 858 }, level = 50, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(180-250) to Evasion Rating", statOrder = { 858 }, level = 68, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(34-45)% increased Energy Shield", statOrder = { 869 }, level = 40, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(45-55)% increased Energy Shield", statOrder = { 869 }, level = 60, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(56-74)% increased Energy Shield", statOrder = { 869 }, level = 75, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(27-34) to maximum Energy Shield", statOrder = { 868 }, level = 30, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(35-45) to maximum Energy Shield", statOrder = { 868 }, level = 50, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(56-69) to maximum Energy Shield", statOrder = { 868 }, level = 68, group = "BaseLocalDefences", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(10-14)% increased maximum Energy Shield", statOrder = { 870 }, level = 60, group = "EnergyShieldPercent", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(15-20)% increased maximum Energy Shield", statOrder = { 870 }, level = 75, group = "EnergyShieldPercent", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(21-25) to maximum Energy Shield", statOrder = { 867 }, level = 50, group = "IncreasedEnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "+(26-30) to maximum Energy Shield", statOrder = { 867 }, level = 68, group = "IncreasedEnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(34-45)% increased Armour and Evasion", statOrder = { 863 }, level = 40, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(45-55)% increased Armour and Evasion", statOrder = { 863 }, level = 60, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(56-74)% increased Armour and Evasion", statOrder = { 863 }, level = 75, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(34-45)% increased Armour and Energy Shield", statOrder = { 862 }, level = 40, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(45-55)% increased Armour and Energy Shield", statOrder = { 862 }, level = 60, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(56-74)% increased Armour and Energy Shield", statOrder = { 862 }, level = 75, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(34-45)% increased Evasion and Energy Shield", statOrder = { 864 }, level = 40, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(45-55)% increased Evasion and Energy Shield", statOrder = { 864 }, level = 60, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(56-74)% increased Evasion and Energy Shield", statOrder = { 864 }, level = 75, group = "DefencesPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (16-18) to (28-35) Fire Damage", statOrder = { 689 }, level = 20, group = "FireDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (33-40) to (63-73) Fire Damage", statOrder = { 689 }, level = 40, group = "FireDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (52-62) to (95-110) Fire Damage", statOrder = { 689 }, level = 68, group = "FireDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (11-12) to (19-23) Fire Damage", statOrder = { 689 }, level = 20, group = "FireDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (22-27) to (42-49) Fire Damage", statOrder = { 689 }, level = 40, group = "FireDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (35-41) to (63-73) Fire Damage", statOrder = { 689 }, level = 68, group = "FireDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (8-11) to (16-20) Fire Damage to Attacks", statOrder = { 688 }, level = 20, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (12-17) to (26-30) Fire Damage to Attacks", statOrder = { 688 }, level = 40, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (16-18) to (28-35) Cold Damage", statOrder = { 696 }, level = 20, group = "ColdDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (33-40) to (63-73) Cold Damage", statOrder = { 696 }, level = 40, group = "ColdDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (52-62) to (95-110) Cold Damage", statOrder = { 696 }, level = 68, group = "ColdDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (11-12) to (19-23) Cold Damage", statOrder = { 696 }, level = 20, group = "ColdDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (22-27) to (42-49) Cold Damage", statOrder = { 696 }, level = 40, group = "ColdDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (35-41) to (63-73) Cold Damage", statOrder = { 696 }, level = 68, group = "ColdDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (6-8) to (14-18) Cold Damage to Attacks", statOrder = { 695 }, level = 20, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (11-15) to (23-27) Cold Damage to Attacks", statOrder = { 695 }, level = 40, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (2-4) to (40-55) Lightning Damage", statOrder = { 705 }, level = 20, group = "LightningDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (5-8) to (90-120) Lightning Damage", statOrder = { 705 }, level = 40, group = "LightningDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (9-12) to (140-170) Lightning Damage", statOrder = { 705 }, level = 68, group = "LightningDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (1-3) to (27-37) Lightning Damage", statOrder = { 705 }, level = 20, group = "LightningDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (3-5) to (60-80) Lightning Damage", statOrder = { 705 }, level = 40, group = "LightningDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (6-8) to (100-113) Lightning Damage", statOrder = { 705 }, level = 68, group = "LightningDamage", types = { ["Dagger"] = 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, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (1-4) to (32-36) Lightning Damage to Attacks", statOrder = { 704 }, level = 20, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (1-5) to (41-48) Lightning Damage to Attacks", statOrder = { 704 }, level = 40, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (9-12) to (18-21) Physical Damage", statOrder = { 606 }, level = 20, group = "PhysicalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (11-15) to (23-27) Physical Damage", statOrder = { 606 }, level = 40, group = "PhysicalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (18-24) to (36-42) Physical Damage", statOrder = { 606 }, level = 68, group = "PhysicalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (6-8) to (13-15) Physical Damage", statOrder = { 606 }, level = 20, group = "PhysicalDamage", types = { ["Dagger"] = 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", "Adds (7-11) to (16-19) Physical Damage", statOrder = { 606 }, level = 40, group = "PhysicalDamage", types = { ["Dagger"] = 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", "Adds (13-17) to (26-30) Physical Damage", statOrder = { 606 }, level = 68, group = "PhysicalDamage", types = { ["Dagger"] = 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", "Adds (3-5) to (6-8) Physical Damage to Attacks", statOrder = { 598 }, level = 20, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (5-7) to (8-10) Physical Damage to Attacks", statOrder = { 598 }, level = 40, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (6-8) to (14-18) Chaos Damage to Attacks", statOrder = { 710 }, level = 30, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (11-15) to (23-27) Chaos Damage to Attacks", statOrder = { 710 }, level = 68, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (16-21) to (31-36) Fire Damage to Spells", statOrder = { 725 }, level = 30, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (28-38) to (57-66) Fire Damage to Spells", statOrder = { 725 }, level = 50, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (41-55) to (83-96) Fire Damage to Spells", statOrder = { 725 }, level = 68, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (12-16) to (23-27) Fire Damage to Spells", statOrder = { 725 }, level = 30, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 725 }, level = 50, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (31-41) to (61-71) Fire Damage to Spells", statOrder = { 725 }, level = 68, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (14-19) to (28-33) Cold Damage to Spells", statOrder = { 726 }, level = 30, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (26-34) to (52-60) Cold Damage to Spells", statOrder = { 726 }, level = 50, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (38-50) to (75-88) Cold Damage to Spells", statOrder = { 726 }, level = 68, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (10-13) to (19-22) Cold Damage to Spells", statOrder = { 726 }, level = 30, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 726 }, level = 50, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (25-33) to (50-58) Cold Damage to Spells", statOrder = { 726 }, level = 68, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (1-5) to (59-63) Lightning Damage to Spells", statOrder = { 727 }, level = 30, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (3-9) to (109-115) Lightning Damage to Spells", statOrder = { 727 }, level = 50, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (4-13) to (159-168) Lightning Damage to Spells", statOrder = { 727 }, level = 68, group = "SpellAddedElementalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Adds (1-4) to (39-42) Lightning Damage to Spells", statOrder = { 727 }, level = 30, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 727 }, level = 50, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "Adds (3-9) to (106-112) Lightning Damage to Spells", statOrder = { 727 }, level = 68, group = "SpellAddedElementalDamage", types = { ["Dagger"] = 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", "(17-19)% increased Critical Strike Chance", statOrder = { 786 }, level = 40, group = "CriticalStrikeChanceIncrease", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(20-24)% increased Critical Strike Chance", statOrder = { 786 }, level = 60, group = "CriticalStrikeChanceIncrease", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(25-27)% increased Critical Strike Chance", statOrder = { 786 }, level = 75, group = "CriticalStrikeChanceIncrease", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 810 }, level = 40, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 810 }, level = 60, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(25-28)% to Global Critical Strike Multiplier", statOrder = { 810 }, level = 75, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(45-75)% increased Critical Strike Chance for Spells", statOrder = { 781 }, level = 40, group = "SpellCriticalStrikeChanceIncrease", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(76-105)% increased Critical Strike Chance for Spells", statOrder = { 781 }, level = 60, group = "SpellCriticalStrikeChanceIncrease", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(30-49)% increased Critical Strike Chance for Spells", statOrder = { 781 }, level = 40, group = "SpellCriticalStrikeChanceIncrease", types = { ["Dagger"] = 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", "(50-69)% increased Critical Strike Chance for Spells", statOrder = { 781 }, level = 60, group = "SpellCriticalStrikeChanceIncrease", types = { ["Dagger"] = 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", "(17-21)% increased Global Critical Strike Chance", statOrder = { 782 }, level = 50, group = "CriticalStrikeChanceIncrease", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(22-27)% increased Global Critical Strike Chance", statOrder = { 782 }, level = 68, group = "CriticalStrikeChanceIncrease", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(5-10)% increased Flask Effect Duration", statOrder = { 1440 }, level = 50, group = "BeltFlaskDuration", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(11-15)% increased Flask Effect Duration", statOrder = { 1440 }, level = 68, group = "BeltFlaskDuration", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(15-20)% chance to Avoid being Stunned", statOrder = { 1112 }, level = 60, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(21-25)% chance to Avoid being Stunned", statOrder = { 1112 }, level = 75, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(15-20)% chance to Avoid Elemental Ailments", statOrder = { 1104 }, level = 60, group = "AvoidElementalStatusAilments", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1104 }, level = 75, group = "AvoidElementalStatusAilments", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(2-3)% Chance to Block", statOrder = { 1497 }, level = 50, group = "IncreasedShieldBlockPercentage", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", "+(4-5)% Chance to Block", statOrder = { 1497 }, level = 68, group = "IncreasedShieldBlockPercentage", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(2-3)% Chance to Block Spell Damage", statOrder = { 510 }, level = 50, group = "SpellBlockPercentage", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(4-5)% Chance to Block Spell Damage", statOrder = { 510 }, level = 68, group = "SpellBlockPercentage", types = { ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(8-11)% faster start of Energy Shield Recharge", statOrder = { 871 }, level = 40, group = "EnergyShieldDelay", types = { ["Ring"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(12-15)% faster start of Energy Shield Recharge", statOrder = { 871 }, level = 60, group = "EnergyShieldDelay", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "Upgraded", "5% reduced Damage taken from Damage Over Time", statOrder = { 1493 }, level = 80, group = "DegenDamageTaken", types = { ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Item drops on Death if Equipped by an Animated Guardian", statOrder = { 1757 }, level = 68, group = "ItemDropsOnGuardianDeath", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", "Minions have (11-15)% increased maximum Life", statOrder = { 1040 }, level = 40, group = "MinionLife", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", "Minions have (16-20)% increased maximum Life", statOrder = { 1040 }, level = 68, group = "MinionLife", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Minions deal (10-20)% increased Damage", statOrder = { 1233 }, level = 40, group = "MinionDamage", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", "Minions have (13-17)% increased Movement Speed", statOrder = { 1043 }, level = 30, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", "Minions have (18-22)% increased Movement Speed", statOrder = { 1043 }, level = 60, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Minions deal (37-51)% increased Damage", statOrder = { 1233 }, level = 30, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Minions deal (52-66)% increased Damage", statOrder = { 1233 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Minions deal (67-81)% increased Damage", statOrder = { 1233 }, level = 75, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "Minions deal (25-34)% increased Damage", statOrder = { 1233 }, level = 30, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "Minions deal (35-44)% increased Damage", statOrder = { 1233 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "Minions deal (45-54)% increased Damage", statOrder = { 1233 }, level = 75, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(52-66)% increased Trap Damage", statOrder = { 534 }, level = 50, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(67-81)% increased Trap Damage", statOrder = { 534 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(35-44)% increased Trap Damage", statOrder = { 534 }, level = 50, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(45-54)% increased Trap Damage", statOrder = { 534 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(52-66)% increased Mine Damage", statOrder = { 536 }, level = 50, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(67-81)% increased Mine Damage", statOrder = { 536 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", "(35-44)% increased Mine Damage", statOrder = { 536 }, level = 50, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(45-54)% increased Mine Damage", statOrder = { 536 }, level = 68, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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", "(17-20)% increased Trap Throwing Speed", statOrder = { 1178 }, level = 50, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(21-23)% increased Trap Throwing Speed", statOrder = { 1178 }, level = 68, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(9-12)% increased Trap Throwing Speed", statOrder = { 1178 }, level = 50, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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", "(13-15)% increased Trap Throwing Speed", statOrder = { 1178 }, level = 68, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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", "(17-20)% increased Mine Throwing Speed", statOrder = { 1179 }, level = 50, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(21-23)% increased Mine Throwing Speed", statOrder = { 1179 }, level = 68, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(9-12)% increased Mine Throwing Speed", statOrder = { 1179 }, level = 50, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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", "(13-15)% increased Mine Throwing Speed", statOrder = { 1179 }, level = 68, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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", "(3-5)% increased Attack Speed", statOrder = { 731 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Shield"] = true, ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", "(6-8)% increased Cast Speed", statOrder = { 767 }, level = 30, group = "IncreasedCastSpeed", types = { ["Shield"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(81-85)% increased Physical Damage", "(13-15)% chance to Impale Enemies on Hit with Attacks", statOrder = { 570, 5076 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(86-94)% increased Physical Damage", "(16-17)% chance to Impale Enemies on Hit with Attacks", statOrder = { 570, 5076 }, level = 72, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(95-105)% increased Physical Damage", "(18-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 570, 5076 }, level = 81, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(81-85)% increased Physical Damage", "(13-15)% chance to cause Bleeding on Hit", statOrder = { 570, 1686 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(86-94)% increased Physical Damage", "(16-17)% chance to cause Bleeding on Hit", statOrder = { 570, 1686 }, level = 72, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(95-105)% increased Physical Damage", "(18-20)% chance to cause Bleeding on Hit", statOrder = { 570, 1686 }, level = 81, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(81-85)% increased Physical Damage", "(13-15)% chance to Blind Enemies on hit", statOrder = { 570, 1510 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(86-94)% increased Physical Damage", "(16-17)% chance to Blind Enemies on hit", statOrder = { 570, 1510 }, level = 72, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(95-105)% increased Physical Damage", "(18-20)% chance to Blind Enemies on hit", statOrder = { 570, 1510 }, level = 81, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(81-85)% increased Physical Damage", "(13-15)% chance to Poison on Hit", statOrder = { 570, 5167 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(86-94)% increased Physical Damage", "(16-17)% chance to Poison on Hit", statOrder = { 570, 5167 }, level = 72, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(95-105)% increased Physical Damage", "(18-20)% chance to Poison on Hit", statOrder = { 570, 5167 }, level = 81, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(60-64)% increased Fire Damage", "(15-17)% chance to Ignite", statOrder = { 686, 1282 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(65-72)% increased Fire Damage", "(18-20)% chance to Ignite", statOrder = { 686, 1282 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(73-80)% increased Fire Damage", "(21-23)% chance to Ignite", statOrder = { 686, 1282 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(36-41)% increased Fire Damage", "7% chance to Ignite", statOrder = { 686, 1282 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(42-50)% increased Fire Damage", "(8-9)% chance to Ignite", statOrder = { 686, 1282 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(51-60)% increased Fire Damage", "(10-11)% chance to Ignite", statOrder = { 686, 1282 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(60-64)% increased Cold Damage", "(15-17)% chance to Freeze", statOrder = { 693, 1285 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(65-72)% increased Cold Damage", "(18-20)% chance to Freeze", statOrder = { 693, 1285 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(73-80)% increased Cold Damage", "(21-23)% chance to Freeze", statOrder = { 693, 1285 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(36-41)% increased Cold Damage", "7% chance to Freeze", statOrder = { 693, 1285 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(42-50)% increased Cold Damage", "(8-9)% chance to Freeze", statOrder = { 693, 1285 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(51-60)% increased Cold Damage", "(10-11)% chance to Freeze", statOrder = { 693, 1285 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(60-64)% increased Lightning Damage", "(15-17)% chance to Shock", statOrder = { 702, 1289 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(65-72)% increased Lightning Damage", "(18-20)% chance to Shock", statOrder = { 702, 1289 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(73-80)% increased Lightning Damage", "(21-23)% chance to Shock", statOrder = { 702, 1289 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(36-41)% increased Lightning Damage", "7% chance to Shock", statOrder = { 702, 1289 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(42-50)% increased Lightning Damage", "(8-9)% chance to Shock", statOrder = { 702, 1289 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(51-60)% increased Lightning Damage", "(10-11)% chance to Shock", statOrder = { 702, 1289 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(53-60)% increased Chaos Damage", "Chaos Skills have (15-17)% increased Skill Effect Duration", statOrder = { 708, 1149 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(61-68)% increased Chaos Damage", "Chaos Skills have (18-20)% increased Skill Effect Duration", statOrder = { 708, 1149 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(69-75)% increased Chaos Damage", "Chaos Skills have (21-23)% increased Skill Effect Duration", statOrder = { 708, 1149 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(35-39)% increased Chaos Damage", "Chaos Skills have (7-8)% increased Skill Effect Duration", statOrder = { 708, 1149 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(40-45)% increased Chaos Damage", "Chaos Skills have (9-10)% increased Skill Effect Duration", statOrder = { 708, 1149 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(46-50)% increased Chaos Damage", "Chaos Skills have (11-12)% increased Skill Effect Duration", statOrder = { 708, 1149 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(60-64)% increased Spell Damage", "(16-20)% increased Mana Regeneration Rate", statOrder = { 562, 888 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(65-72)% increased Spell Damage", "(21-25)% increased Mana Regeneration Rate", statOrder = { 562, 888 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(73-80)% increased Spell Damage", "(26-30)% increased Mana Regeneration Rate", statOrder = { 562, 888 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(36-41)% increased Spell Damage", "(7-9)% increased Mana Regeneration Rate", statOrder = { 562, 888 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(42-50)% increased Spell Damage", "(10-12)% increased Mana Regeneration Rate", statOrder = { 562, 888 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(51-60)% increased Spell Damage", "(13-15)% increased Mana Regeneration Rate", statOrder = { 562, 888 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(53-58)% increased Spell Damage", "Gain (3-4)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 562, 5994 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(59-66)% increased Spell Damage", "Gain (5-6)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 562, 5994 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(67-75)% increased Spell Damage", "Gain (7-8)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 562, 5994 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(38-40)% increased Spell Damage", "Gain 2% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 562, 5994 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(41-45)% increased Spell Damage", "Gain 3% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 562, 5994 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "(46-50)% increased Spell Damage", "Gain 4% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 562, 5994 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "Minions have (26-32)% increased maximum Life", "Minions deal (26-32)% increased Damage", statOrder = { 1040, 1233 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Minions have (33-38)% increased maximum Life", "Minions deal (33-38)% increased Damage", statOrder = { 1040, 1233 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Minions have (39-45)% increased maximum Life", "Minions deal (39-45)% increased Damage", statOrder = { 1040, 1233 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Minions have (16-19)% increased maximum Life", "Minions deal (16-19)% increased Damage", statOrder = { 1040, 1233 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "Minions have (20-24)% increased maximum Life", "Minions deal (20-24)% increased Damage", statOrder = { 1040, 1233 }, level = 72, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 = "Chosen", "Minions have (25-28)% increased maximum Life", "Minions deal (25-28)% increased Damage", statOrder = { 1040, 1233 }, level = 81, group = "WeaponCasterDamagePrefix", types = { ["Dagger"] = 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 the Order", "Minions have (19-21)% increased Attack Speed", "Minions have (19-21)% increased Cast Speed", statOrder = { 2085, 2086 }, level = 60, group = "MinionAttackSpeedAndCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Minions have (22-24)% increased Attack Speed", "Minions have (22-24)% increased Cast Speed", statOrder = { 2085, 2086 }, level = 72, group = "MinionAttackSpeedAndCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2085, 2086 }, level = 81, group = "MinionAttackSpeedAndCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Minions have (10-11)% increased Attack Speed", "Minions have (10-11)% increased Cast Speed", statOrder = { 2085, 2086 }, level = 60, group = "MinionAttackSpeedAndCastSpeed", types = { ["Dagger"] = 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 the Order", "Minions have (12-13)% increased Attack Speed", "Minions have (12-13)% increased Cast Speed", statOrder = { 2085, 2086 }, level = 72, group = "MinionAttackSpeedAndCastSpeed", types = { ["Dagger"] = 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 the Order", "Minions have (14-15)% increased Attack Speed", "Minions have (14-15)% increased Cast Speed", statOrder = { 2085, 2086 }, level = 81, group = "MinionAttackSpeedAndCastSpeed", types = { ["Dagger"] = 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 = "Chosen", "+(28-30)% to Chaos Damage over Time Multiplier", statOrder = { 593 }, level = 60, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(31-35)% to Chaos Damage over Time Multiplier", statOrder = { 593 }, level = 72, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(36-40)% to Chaos Damage over Time Multiplier", statOrder = { 593 }, level = 81, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(14-15)% to Chaos Damage over Time Multiplier", statOrder = { 593 }, level = 60, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(16-17)% to Chaos Damage over Time Multiplier", statOrder = { 593 }, level = 72, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(18-20)% to Chaos Damage over Time Multiplier", statOrder = { 593 }, level = 81, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(28-30)% to Cold Damage over Time Multiplier", statOrder = { 590 }, level = 60, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(31-35)% to Cold Damage over Time Multiplier", statOrder = { 590 }, level = 72, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(36-40)% to Cold Damage over Time Multiplier", statOrder = { 590 }, level = 81, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(14-15)% to Cold Damage over Time Multiplier", statOrder = { 590 }, level = 60, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(16-17)% to Cold Damage over Time Multiplier", statOrder = { 590 }, level = 72, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(18-20)% to Cold Damage over Time Multiplier", statOrder = { 590 }, level = 81, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(28-30)% to Fire Damage over Time Multiplier", statOrder = { 586 }, level = 60, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(31-35)% to Fire Damage over Time Multiplier", statOrder = { 586 }, level = 72, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(36-40)% to Fire Damage over Time Multiplier", statOrder = { 586 }, level = 81, group = "DamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(14-15)% to Fire Damage over Time Multiplier", statOrder = { 586 }, level = 60, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(16-17)% to Fire Damage over Time Multiplier", statOrder = { 586 }, level = 72, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "+(18-20)% to Fire Damage over Time Multiplier", statOrder = { 586 }, level = 81, group = "DamageOverTimeMultiplier", types = { ["Dagger"] = 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 = "Chosen", "Attacks with this Weapon Penetrate (5-6)% Elemental Resistances", statOrder = { 2940 }, level = 60, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = 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 = "Chosen", "Attacks with this Weapon Penetrate (7-8)% Elemental Resistances", statOrder = { 2940 }, level = 72, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = 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 = "Chosen", "Attacks with this Weapon Penetrate (9-10)% Elemental Resistances", statOrder = { 2940 }, level = 81, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = 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 = "Chosen", "Attacks with this Weapon Penetrate (5-6)% Chaos Resistance", statOrder = { 5087 }, level = 60, group = "ChaosPenetrationWithAttacks", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = 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 = "Chosen", "Attacks with this Weapon Penetrate (7-8)% Chaos Resistance", statOrder = { 5087 }, level = 72, group = "ChaosPenetrationWithAttacks", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = 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 = "Chosen", "Attacks with this Weapon Penetrate (9-10)% Chaos Resistance", statOrder = { 5087 }, level = 81, group = "ChaosPenetrationWithAttacks", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = 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 the Order", "(6-7)% chance to deal Double Damage", statOrder = { 3992 }, level = 60, group = "DoubleDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(8-10)% chance to deal Double Damage", statOrder = { 3992 }, level = 72, group = "DoubleDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "3% chance to deal Double Damage", statOrder = { 3992 }, level = 60, group = "DoubleDamage", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(4-5)% chance to deal Double Damage", statOrder = { 3992 }, level = 72, group = "DoubleDamage", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour and Evasion", "+(8-9) to maximum Life", statOrder = { 863, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 863, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour and Evasion", "+(12-14) to maximum Life", statOrder = { 863, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour and Energy Shield", "+(8-9) to maximum Life", statOrder = { 862, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 862, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour and Energy Shield", "+(12-14) to maximum Life", statOrder = { 862, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 864, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 864, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 864, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour", "+(8-9) to maximum Life", statOrder = { 851, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour", "+(10-11) to maximum Life", statOrder = { 851, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour", "+(12-14) to maximum Life", statOrder = { 851, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Evasion Rating", "+(8-9) to maximum Life", statOrder = { 860, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 860, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Evasion Rating", "+(12-14) to maximum Life", statOrder = { 860, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Energy Shield", "+(8-9) to maximum Life", statOrder = { 869, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 869, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Energy Shield", "+(12-14) to maximum Life", statOrder = { 869, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour, Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 865, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 865, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour, Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 865, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 863, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour and Evasion", "+(12-13) to maximum Life", statOrder = { 863, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour and Evasion", "+(14-16) to maximum Life", statOrder = { 863, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 862, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour and Energy Shield", "+(12-13) to maximum Life", statOrder = { 862, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour and Energy Shield", "+(14-16) to maximum Life", statOrder = { 862, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 864, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 864, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 864, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour", "+(10-11) to maximum Life", statOrder = { 851, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour", "+(12-13) to maximum Life", statOrder = { 851, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour", "+(14-16) to maximum Life", statOrder = { 851, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 860, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Evasion Rating", "+(12-13) to maximum Life", statOrder = { 860, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Evasion Rating", "+(14-16) to maximum Life", statOrder = { 860, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 869, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Energy Shield", "+(12-13) to maximum Life", statOrder = { 869, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Energy Shield", "+(14-16) to maximum Life", statOrder = { 869, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 865, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour, Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 865, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour, Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 865, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour and Evasion", "+(13-14) to maximum Life", statOrder = { 863, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour and Evasion", "+(15-16) to maximum Life", statOrder = { 863, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour and Evasion", "+(17-19) to maximum Life", statOrder = { 863, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour and Energy Shield", "+(13-14) to maximum Life", statOrder = { 862, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour and Energy Shield", "+(15-16) to maximum Life", statOrder = { 862, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour and Energy Shield", "+(17-19) to maximum Life", statOrder = { 862, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 864, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 864, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 864, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour", "+(13-14) to maximum Life", statOrder = { 851, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour", "+(15-16) to maximum Life", statOrder = { 851, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour", "+(17-19) to maximum Life", statOrder = { 851, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Evasion Rating", "+(13-14) to maximum Life", statOrder = { 860, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Evasion Rating", "+(15-16) to maximum Life", statOrder = { 860, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Evasion Rating", "+(17-19) to maximum Life", statOrder = { 860, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Energy Shield", "+(13-14) to maximum Life", statOrder = { 869, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Energy Shield", "+(15-16) to maximum Life", statOrder = { 869, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Energy Shield", "+(17-19) to maximum Life", statOrder = { 869, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(12-14)% increased Armour, Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 865, 877 }, level = 60, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Armour, Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 865, 877 }, level = 72, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-21)% increased Armour, Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 865, 877 }, level = 81, group = "BaseLocalDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(11-12) to Strength and Dexterity", statOrder = { 524 }, level = 60, group = "StrengthDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(13-14) to Strength and Dexterity", statOrder = { 524 }, level = 72, group = "StrengthDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(15-17) to Strength and Dexterity", statOrder = { 524 }, level = 81, group = "StrengthDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(11-12) to Dexterity and Intelligence", statOrder = { 526 }, level = 60, group = "DexterityIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(13-14) to Dexterity and Intelligence", statOrder = { 526 }, level = 72, group = "DexterityIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(15-17) to Dexterity and Intelligence", statOrder = { 526 }, level = 81, group = "DexterityIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(11-12) to Strength and Intelligence", statOrder = { 525 }, level = 60, group = "StrengthIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(13-14) to Strength and Intelligence", statOrder = { 525 }, level = 72, group = "StrengthIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(15-17) to Strength and Intelligence", statOrder = { 525 }, level = 81, group = "StrengthIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+1 to Minimum Endurance Charges", statOrder = { 1075 }, level = 75, group = "MinimumEnduranceCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+1 to Minimum Power Charges", statOrder = { 1079 }, level = 75, group = "MinimumPowerCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+1 to Minimum Frenzy Charges", statOrder = { 1077 }, level = 75, group = "MinimumFrenzyCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(26-30) to maximum Mana", "Regenerate 2 Mana per second", statOrder = { 884, 887 }, level = 60, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(31-35) to maximum Mana", "Regenerate 3 Mana per second", statOrder = { 884, 887 }, level = 72, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(36-40) to maximum Mana", "Regenerate 4 Mana per second", statOrder = { 884, 887 }, level = 81, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(26-30) to maximum Mana", "3% reduced Mana Cost of Skills", statOrder = { 884, 1141 }, level = 60, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(31-35) to maximum Mana", "4% reduced Mana Cost of Skills", statOrder = { 884, 1141 }, level = 72, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(36-40) to maximum Mana", "5% reduced Mana Cost of Skills", statOrder = { 884, 1141 }, level = 81, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(26-30) to maximum Mana", "4% of Damage taken gained as Mana over 4 seconds when Hit", statOrder = { 884, 1660 }, level = 60, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(31-35) to maximum Mana", "5% of Damage taken gained as Mana over 4 seconds when Hit", statOrder = { 884, 1660 }, level = 72, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(36-40) to maximum Mana", "6% of Damage taken gained as Mana over 4 seconds when Hit", statOrder = { 884, 1660 }, level = 81, group = "IncreasedMana", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "3% increased Attack and Cast Speed", statOrder = { 1303 }, level = 60, group = "AttackCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "4% increased Attack and Cast Speed", statOrder = { 1303 }, level = 25, group = "AttackCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(5-6)% increased Attack and Cast Speed", statOrder = { 1303 }, level = 50, group = "AttackCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(13-14)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1070, 2404 }, level = 60, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1070, 2404 }, level = 72, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-20)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1070, 2404 }, level = 81, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(13-14)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1070, 2176 }, level = 60, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1070, 2176 }, level = 72, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-20)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1070, 2176 }, level = 81, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(13-14)% increased Movement Speed", "Cannot be Chilled", statOrder = { 1070, 1105 }, level = 60, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(15-17)% increased Movement Speed", "Cannot be Chilled", statOrder = { 1070, 1105 }, level = 72, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(18-20)% increased Movement Speed", "Cannot be Chilled", statOrder = { 1070, 1105 }, level = 81, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(105-150) to Armour and Evasion Rating", statOrder = { 3441 }, level = 60, group = "BaseArmourAndEvasion", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(151-213) to Armour and Evasion Rating", statOrder = { 3441 }, level = 72, group = "BaseArmourAndEvasion", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(214-285) to Armour and Evasion Rating", statOrder = { 3441 }, level = 81, group = "BaseArmourAndEvasion", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(105-150) to Armour", "+(11-15) to maximum Energy Shield", statOrder = { 848, 867 }, level = 60, group = "BaseArmourAndEnergyShield", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(151-213) to Armour", "+(16-20) to maximum Energy Shield", statOrder = { 848, 867 }, level = 72, group = "BaseArmourAndEnergyShield", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(214-285) to Armour", "+(21-25) to maximum Energy Shield", statOrder = { 848, 867 }, level = 81, group = "BaseArmourAndEnergyShield", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(105-150) to Evasion Rating", "+(11-15) to maximum Energy Shield", statOrder = { 854, 867 }, level = 60, group = "BaseEvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(151-213) to Evasion Rating", "+(16-20) to maximum Energy Shield", statOrder = { 854, 867 }, level = 72, group = "BaseEvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(214-285) to Evasion Rating", "+(21-25) to maximum Energy Shield", statOrder = { 854, 867 }, level = 81, group = "BaseEvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Flasks applied to you have (3-4)% increased Effect", statOrder = { 1921 }, level = 60, group = "FlaskEffect", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Flasks applied to you have (5-6)% increased Effect", statOrder = { 1921 }, level = 72, group = "FlaskEffect", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Flasks applied to you have (7-8)% increased Effect", statOrder = { 1921 }, level = 81, group = "FlaskEffect", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(5-6)% chance for Flasks you use to not consume Charges", statOrder = { 3403 }, level = 60, group = "FlaskChargesUsed", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(7-8)% chance for Flasks you use to not consume Charges", statOrder = { 3403 }, level = 75, group = "FlaskChargesUsed", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Chosen", "20% reduced Flask Charges gained", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 1436, 1921 }, level = 60, group = "FlaskEffect", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Chosen", "33% reduced Flask Charges gained", "Flasks applied to you have (11-14)% increased Effect", statOrder = { 1436, 1921 }, level = 75, group = "FlaskEffect", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(6-8)% increased Cooldown Recovery Speed", statOrder = { 3784 }, level = 60, group = "CooldownRecovery", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(9-12)% increased Cooldown Recovery Speed", statOrder = { 3784 }, level = 75, group = "CooldownRecovery", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Endurance Charge", statOrder = { 2378 }, level = 60, group = "AllDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(3-4)% increased Damage per Endurance Charge", statOrder = { 2378 }, level = 60, group = "AllDamage", types = { ["Dagger"] = 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 the Order", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 2468 }, level = 60, group = "AllDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 2468 }, level = 60, group = "AllDamage", types = { ["Dagger"] = 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 the Order", "(5-6)% increased Damage per Power Charge", statOrder = { 4220 }, level = 60, group = "AllDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(3-4)% increased Damage per Power Charge", statOrder = { 4220 }, level = 60, group = "AllDamage", types = { ["Dagger"] = 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 = "Chosen", "(20-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1206 }, level = 60, group = "ConvertPhysicalToFire", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(20-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1208 }, level = 60, group = "ConvertPhysicalToCold", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(20-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1210 }, level = 60, group = "ConvertPhysicalToLightning", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 1412, 1414 }, level = 60, group = "MaximumMinionCount", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(16-22)% increased Effect of Non-Damaging Ailments", statOrder = { 6000 }, level = 60, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(23-30)% increased Effect of Non-Damaging Ailments", statOrder = { 6000 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(6-7)% increased Effect of your Curses", statOrder = { 1799 }, level = 60, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(8-10)% increased Effect of your Curses", statOrder = { 1799 }, level = 75, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Regenerate (0.5-0.6)% of Life per second", statOrder = { 1194 }, level = 60, group = "LifeRegenerationRatePercentage", types = { ["Amulet"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Regenerate (0.7-1)% of Life per second", statOrder = { 1194 }, level = 75, group = "LifeRegenerationRatePercentage", types = { ["Amulet"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(6-7)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 3760 }, level = 60, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(8-9)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 3760 }, level = 75, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(1000-1600) to Armour during Soul Gain Prevention", statOrder = { 6061 }, level = 60, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(1601-2200) to Armour during Soul Gain Prevention", statOrder = { 6061 }, level = 72, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(2201-3000) to Armour during Soul Gain Prevention", statOrder = { 6061 }, level = 81, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "You have Onslaught during Soul Gain Prevention", statOrder = { 4506 }, level = 50, group = "GainOnslaughtDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Non-Vaal Skills deal (30-40)% increased Damage during Soul Gain Prevention", statOrder = { 4231 }, level = 60, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Non-Vaal Skills deal (41-50)% increased Damage during Soul Gain Prevention", statOrder = { 4231 }, level = 72, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Non-Vaal Skills deal (51-60)% increased Damage during Soul Gain Prevention", statOrder = { 4231 }, level = 81, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+1 to Level of Socketed AoE Gems", "(8-10)% increased Area of Effect", statOrder = { 40, 1140 }, level = 60, group = "SkillAreaOfEffectPercentAndAreaOfEffectGemLevel", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+1 to Level of Socketed Projectile Gems", "Projectiles Pierce an additional Target", statOrder = { 41, 1064 }, level = 60, group = "ProjectilePierceAndProjectileGemLevel", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+1 to Level of Socketed Melee Gems", "+1 to Melee Strike Range", statOrder = { 43, 1732 }, level = 60, group = "MeleeRangeAndMeleeGemLevel", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(25-31)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 4163 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(32-38)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 4163 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(39-45)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 4163 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(17-21)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 4163 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = 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 the Order", "+(22-25)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 4163 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = 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 the Order", "+(26-30)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 4163 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = 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 the Order", "(14-16)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 3737 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(17-19)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 3737 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(20-22)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 3737 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "7% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 3737 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = 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 the Order", "(8-9)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 3737 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = 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 the Order", "(10-11)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 3737 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = 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 the Order", "Regenerate 60 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 4376 }, level = 60, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Regenerate 90 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 4376 }, level = 72, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Regenerate 120 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 4376 }, level = 81, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(9-10)% increased Global Critical Strike Chance", "3% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 782, 4496 }, level = 60, group = "CriticalStrikeChanceIncrease", types = { ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(11-12)% increased Global Critical Strike Chance", "4% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 782, 4496 }, level = 72, group = "CriticalStrikeChanceIncrease", types = { ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(13-14)% increased Global Critical Strike Chance", "5% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 782, 4496 }, level = 81, group = "CriticalStrikeChanceIncrease", types = { ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(11-12)% increased Global Critical Strike Chance", "(14-16)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 782, 4303 }, level = 60, group = "CriticalStrikeChanceIncrease", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(13-14)% increased Global Critical Strike Chance", "(17-19)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 782, 4303 }, level = 72, group = "CriticalStrikeChanceIncrease", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(15-16)% increased Global Critical Strike Chance", "(20-22)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 782, 4303 }, level = 81, group = "CriticalStrikeChanceIncrease", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(11-12)% increased Global Critical Strike Chance", "Adds (10-11) to (14-16) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 782, 5875 }, level = 60, group = "CriticalStrikeChanceIncrease", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(13-14)% increased Global Critical Strike Chance", "Adds (12-13) to (17-20) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 782, 5875 }, level = 72, group = "CriticalStrikeChanceIncrease", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(15-16)% increased Global Critical Strike Chance", "Adds (14-16) to (21-24) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 782, 5875 }, level = 81, group = "CriticalStrikeChanceIncrease", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(26-30) to maximum Life", "Regenerate 2 Mana per second", statOrder = { 877, 887 }, level = 60, group = "IncreasedLife", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(31-35) to maximum Life", "Regenerate 3 Mana per second", statOrder = { 877, 887 }, level = 72, group = "IncreasedLife", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(36-40) to maximum Life", "Regenerate 4 Mana per second", statOrder = { 877, 887 }, level = 81, group = "IncreasedLife", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Regenerate 10 Life per second", "+(26-30) to maximum Mana", statOrder = { 882, 884 }, level = 60, group = "IncreasedMana", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Regenerate 11 Life per second", "+(31-35) to maximum Mana", statOrder = { 882, 884 }, level = 72, group = "IncreasedMana", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Regenerate 12 Life per second", "+(36-40) to maximum Mana", statOrder = { 882, 884 }, level = 81, group = "IncreasedMana", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(18-20)% increased Totem Placement speed", statOrder = { 1776 }, level = 60, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(21-25)% increased Totem Placement speed", statOrder = { 1776 }, level = 72, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(26-30)% increased Totem Placement speed", statOrder = { 1776 }, level = 81, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Adds (6-7) to (9-10) Fire Damage", "Adds (6-7) to (9-10) Cold Damage", statOrder = { 687, 694 }, level = 60, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Adds (8-9) to (11-13) Fire Damage", "Adds (8-9) to (11-13) Cold Damage", statOrder = { 687, 694 }, level = 72, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Adds (10-12) to (14-16) Fire Damage", "Adds (10-12) to (14-16) Cold Damage", statOrder = { 687, 694 }, level = 81, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Adds (6-7) to (9-10) Fire Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 687, 703 }, level = 60, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Adds (8-9) to (11-13) Fire Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 687, 703 }, level = 72, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Adds (10-12) to (14-16) Fire Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 687, 703 }, level = 81, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Adds (6-7) to (9-10) Cold Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 694, 703 }, level = 60, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Adds (8-9) to (11-13) Cold Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 694, 703 }, level = 72, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, }, }, + { type = "Prefix", affix = "Chosen", "Adds (10-12) to (14-16) Cold Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 694, 703 }, level = 81, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Your Critical Strike Chance is Lucky while Focussed", statOrder = { 4402 }, level = 72, group = "LuckyCriticalsDuringFocus", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(16-18)% chance to Dodge Attack Hits while Focussed", statOrder = { 4285 }, level = 60, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(19-22)% chance to Dodge Attack Hits while Focussed", statOrder = { 4285 }, level = 72, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", "+(23-25)% chance to Dodge Attack Hits while Focussed", statOrder = { 4285 }, level = 81, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, + { type = "Prefix", affix = "Chosen", "8% additional Physical Damage Reduction while Focussed", statOrder = { 3586 }, level = 60, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(9-10)% additional Physical Damage Reduction while Focussed", statOrder = { 3586 }, level = 72, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(11-12)% additional Physical Damage Reduction while Focussed", statOrder = { 3586 }, level = 81, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Shock nearby Enemies for 2 Seconds when you Focus", statOrder = { 6221 }, level = 60, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Shock nearby Enemies for 3 Seconds when you Focus", statOrder = { 6221 }, level = 72, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 6221 }, level = 81, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of the Order", "1% of Evasion Rating is Regenerated as Life per second while Focussed", statOrder = { 4392 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Recover (23-25)% of Mana and Energy Shield when you Focus", statOrder = { 6188 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Recover (26-28)% of Mana and Energy Shield when you Focus", statOrder = { 6188 }, level = 72, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Recover (29-31)% of Mana and Energy Shield when you Focus", statOrder = { 6188 }, level = 81, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(16-20)% chance to deal Double Damage while Focussed", statOrder = { 3997 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(21-25)% chance to deal Double Damage while Focussed", statOrder = { 3997 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(26-30)% chance to deal Double Damage while Focussed", statOrder = { 3997 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(7-9)% chance to deal Double Damage while Focussed", statOrder = { 3997 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(10-12)% chance to deal Double Damage while Focussed", statOrder = { 3997 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(13-15)% chance to deal Double Damage while Focussed", statOrder = { 3997 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(22-25)% increased Attack and Cast Speed while Focussed", statOrder = { 3692 }, level = 60, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(26-30)% increased Attack and Cast Speed while Focussed", statOrder = { 3692 }, level = 72, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(31-36)% increased Attack and Cast Speed while Focussed", statOrder = { 3692 }, level = 81, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(81-100)% increased Duration of Ailments you inflict while Focussed", statOrder = { 6328 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(101-120)% increased Duration of Ailments you inflict while Focussed", statOrder = { 6328 }, level = 72, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(121-140)% increased Duration of Ailments you inflict while Focussed", statOrder = { 6328 }, level = 81, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "You are Immune to Ailments while Focussed", statOrder = { 4635 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocused", types = { ["Boots"] = true, }, }, + { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focussed", "10% of Damage Leeched as Life while Focussed", statOrder = { 4530, 4681 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocused", types = { ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "80% increased Effect of Fortify on you while Focussed", statOrder = { 4451 }, level = 60, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", "100% increased Effect of Fortify on you while Focussed", statOrder = { 4451 }, level = 72, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", "120% increased Effect of Fortify on you while Focussed", statOrder = { 4451 }, level = 81, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Trigger Socketed Spells when you Focus", statOrder = { 414 }, level = 60, group = "TriggerSocketedSpellWhenYouFocus", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(21-25)% of Damage is taken from Mana before Life while Focussed", statOrder = { 4235 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Minions Recover 100% of their Life when you Focus", statOrder = { 5952 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocus", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Skills Cost no Mana while Focussed", statOrder = { 6256 }, level = 60, group = "SkillsCostNoManaWhileFocused", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Leo's", "(11-13)% increased Damage", statOrder = { 531 }, level = 60, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, + { type = "Prefix", affix = "Leo's", "(14-16)% increased Damage", statOrder = { 531 }, level = 72, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, + { type = "Prefix", affix = "Leo's", "(17-20)% increased Damage", statOrder = { 531 }, level = 81, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, + { type = "Prefix", affix = "Catarina's", "+1 to Level of Socketed Support Gems", statOrder = { 52 }, level = 60, group = "IncreaseSpecificSocketedGemLevel", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Catarina's", "+2 to Level of Socketed Support Gems", statOrder = { 52 }, level = 80, group = "IncreaseSpecificSocketedGemLevel", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Elreon's", "Channelling Skills have -1 to Total Mana Cost", statOrder = { 6253 }, level = 60, group = "IncreaseFlatManaCost", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Elreon's", "Channelling Skills have -2 to Total Mana Cost", statOrder = { 6253 }, level = 72, group = "IncreaseFlatManaCost", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Elreon's", "Channelling Skills have -3 to Total Mana Cost", statOrder = { 6253 }, level = 81, group = "IncreaseFlatManaCost", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills have -(5-4) to Total Mana Cost", statOrder = { 6255 }, level = 60, group = "IncreaseFlatManaCost", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills have -(7-6) to Total Mana Cost", statOrder = { 6255 }, level = 72, group = "IncreaseFlatManaCost", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills have -(9-8) to Total Mana Cost", statOrder = { 6255 }, level = 81, group = "IncreaseFlatManaCost", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Vorici's", "(24-30)% increased Damage while Leeching", statOrder = { 2246 }, level = 60, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Vorici's", "(31-36)% increased Damage while Leeching", statOrder = { 2246 }, level = 72, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Vorici's", "(37-43)% increased Damage while Leeching", statOrder = { 2246 }, level = 81, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Haku's", "+(5-6)% to Quality of Socketed Gems", statOrder = { 62 }, level = 60, group = "SocketedGemQuality", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Haku's", "+(6-7)% to Quality of Socketed Gems", statOrder = { 62 }, level = 72, group = "SocketedGemQuality", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Haku's", "+(7-8)% to Quality of Socketed Gems", statOrder = { 62 }, level = 81, group = "SocketedGemQuality", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Tora's", "Adds (9-10) to (14-15) Physical Damage", "30% chance to cause Bleeding on Hit", statOrder = { 606, 1686 }, level = 60, group = "PhysicalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Tora's", "Adds (11-13) to (16-17) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 606, 1686 }, level = 72, group = "PhysicalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Tora's", "Adds (14-16) to (18-20) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 606, 1686 }, level = 81, group = "PhysicalDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Tora's", "Adds (5-6) to (8-9) Physical Damage", "30% chance to cause Bleeding on Hit", statOrder = { 606, 1686 }, level = 60, group = "PhysicalDamage", types = { ["Dagger"] = 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 = "Tora's", "Adds (7-8) to (10-11) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 606, 1686 }, level = 72, group = "PhysicalDamage", types = { ["Dagger"] = 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 = "Tora's", "Adds (9-11) to (12-14) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 606, 1686 }, level = 81, group = "PhysicalDamage", types = { ["Dagger"] = 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 = "Vagan's", "Hits can't be Evaded", statOrder = { 1299 }, level = 60, group = "AlwaysHits", types = { ["Dagger"] = 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, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Brinerot", "(16-18)% increased Damage during any Flask Effect", statOrder = { 3258 }, level = 60, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Brinerot", "(19-23)% increased Damage during any Flask Effect", statOrder = { 3258 }, level = 72, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Brinerot", "(24-28)% increased Damage during any Flask Effect", statOrder = { 3258 }, level = 81, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Janus", "(31-35)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 6155 }, level = 60, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Janus", "(36-40)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 6155 }, level = 72, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Janus", "(41-45)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 6155 }, level = 81, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (8-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1192 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1192 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (14-16)% of Fire Damage as Extra Chaos Damage", statOrder = { 1192 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain 4% of Fire Damage as Extra Chaos Damage", statOrder = { 1192 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (5-6)% of Fire Damage as Extra Chaos Damage", statOrder = { 1192 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (7-8)% of Fire Damage as Extra Chaos Damage", statOrder = { 1192 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (8-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1191 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1191 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (14-16)% of Cold Damage as Extra Chaos Damage", statOrder = { 1191 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain 4% of Cold Damage as Extra Chaos Damage", statOrder = { 1191 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (5-6)% of Cold Damage as Extra Chaos Damage", statOrder = { 1191 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (7-8)% of Cold Damage as Extra Chaos Damage", statOrder = { 1191 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (8-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1189 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1189 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (14-16)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1189 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain 4% of Lightning Damage as Extra Chaos Damage", statOrder = { 1189 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (5-6)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1189 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (7-8)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1189 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (8-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1186 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1186 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (14-16)% of Physical Damage as Extra Chaos Damage", statOrder = { 1186 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1186 }, level = 60, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (5-6)% of Physical Damage as Extra Chaos Damage", statOrder = { 1186 }, level = 72, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Prefix", affix = "It's", "Gain (7-8)% of Physical Damage as Extra Chaos Damage", statOrder = { 1186 }, level = 81, group = "NonChaosAddedAsChaos", types = { ["Dagger"] = 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, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Hillock", "4% increased Attributes", statOrder = { 527 }, level = 60, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Hillock", "5% increased Attributes", statOrder = { 527 }, level = 72, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Hillock", "6% increased Attributes", statOrder = { 527 }, level = 81, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Gravicius'", "Gain 6% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 5837 }, level = 60, group = "LifeAddedAsEnergyShield", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Gravicius'", "Gain (7-8)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 5837 }, level = 72, group = "LifeAddedAsEnergyShield", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Gravicius'", "Gain (9-10)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 5837 }, level = 81, group = "LifeAddedAsEnergyShield", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "Jorgin's", "10% Chance to Trigger Level 18 Summon Spectral Wolf on Kill", statOrder = { 383 }, level = 60, group = "SummonWolfOnKill", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Korell's", "(3-4)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1653 }, level = 60, group = "PhysicalDamageTakenAsElement", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Korell's", "(5-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1653 }, level = 72, group = "PhysicalDamageTakenAsElement", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Korell's", "(7-8)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1653 }, level = 81, group = "PhysicalDamageTakenAsElement", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Rin's", "60% chance to Avoid being Frozen", statOrder = { 1106 }, level = 60, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Rin's", "80% chance to Avoid being Frozen", statOrder = { 1106 }, level = 72, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Rin's", "Cannot be Frozen", statOrder = { 1106 }, level = 81, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Cameria", "(10-11)% increased Global Critical Strike Chance", "+(15-17)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 782, 4161 }, level = 60, group = "CriticalStrikeChanceIncrease", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Cameria", "(12-13)% increased Global Critical Strike Chance", "+(18-20)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 782, 4161 }, level = 72, group = "CriticalStrikeChanceIncrease", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Cameria", "(14-16)% increased Global Critical Strike Chance", "+(21-23)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 782, 4161 }, level = 81, group = "CriticalStrikeChanceIncrease", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Aisling", "(8-10)% increased Global Physical Damage", "(8-10)% increased Chaos Damage", statOrder = { 569, 708 }, level = 60, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Aisling", "(11-13)% increased Global Physical Damage", "(11-13)% increased Chaos Damage", statOrder = { 569, 708 }, level = 72, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Aisling", "(14-16)% increased Global Physical Damage", "(14-16)% increased Chaos Damage", statOrder = { 569, 708 }, level = 81, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Riker", "(8-10)% increased Fire Damage", "(8-10)% increased Lightning Damage", statOrder = { 686, 702 }, level = 60, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Riker", "(11-13)% increased Fire Damage", "(11-13)% increased Lightning Damage", statOrder = { 686, 702 }, level = 72, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Riker", "(14-16)% increased Fire Damage", "(14-16)% increased Lightning Damage", statOrder = { 686, 702 }, level = 81, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Regenerate 3% of Life per second during Flask Effect", statOrder = { 5131 }, level = 60, group = "LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect", types = { ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(8-12)% increased Movement Speed during Flask effect", "50% Chance to avoid being Stunned during Flask Effect", statOrder = { 448, 5120 }, level = 60, group = "LocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect", types = { ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(20-25)% reduced Mana Cost of Skills during Flask Effect", statOrder = { 466 }, level = 60, group = "LocalFlaskSkillManaCostDuringFlaskEffect", types = { ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(20-30)% increased Rarity of Items found during Flask Effect", statOrder = { 5128 }, level = 60, group = "LocalFlaskItemFoundRarityDuringFlaskEffect", types = { ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(60-80)% increased Critical Strike Chance during Flask Effect", statOrder = { 5123 }, level = 60, group = "LocalFlaskCriticalStrikeChanceDuringFlaskEffect", types = { ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, }, }, + { type = "Suffix", affix = "of the Order", "15% of Damage Taken from Hits is Leeched as Life during Flask Effect", statOrder = { 5129 }, level = 60, group = "LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect", types = { ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, ["Flask"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(8-10)% increased Attack Speed", "+(7-12)% to Quality", statOrder = { 734, 5136 }, level = 60, group = "IncreasedAttackSpeed", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(13-16)% increased Attack Speed", "+(13-18)% to Quality", statOrder = { 734, 5136 }, level = 75, group = "IncreasedAttackSpeed", types = { ["Dagger"] = 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, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(15-20)% increased Critical Strike Chance", "+(7-12)% to Quality", statOrder = { 786, 5136 }, level = 60, group = "CriticalStrikeChanceIncrease", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(21-25)% increased Critical Strike Chance", "+(13-18)% to Quality", statOrder = { 786, 5136 }, level = 75, group = "CriticalStrikeChanceIncrease", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(161-180) to Accuracy Rating", "+(10-12)% to Quality", statOrder = { 1280, 5136 }, level = 60, group = "IncreasedAccuracy", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(181-210) to Accuracy Rating", "+(13-15)% to Quality", statOrder = { 1280, 5136 }, level = 72, group = "IncreasedAccuracy", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(211-250) to Accuracy Rating", "+(16-18)% to Quality", statOrder = { 1280, 5136 }, level = 81, group = "IncreasedAccuracy", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(8-10)% increased Attack Speed", statOrder = { 388, 734 }, level = 60, group = "IncreasedAttackSpeed", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(13-16)% increased Attack Speed", statOrder = { 388, 734 }, level = 75, group = "IncreasedAttackSpeed", types = { ["Dagger"] = 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, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(10-12)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 767, 4479 }, level = 60, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(13-15)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 767, 4479 }, level = 72, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(16-19)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 767, 4479 }, level = 81, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(7-8)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 767, 4479 }, level = 60, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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 the Order", "(9-10)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 767, 4479 }, level = 72, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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 the Order", "(11-13)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 767, 4479 }, level = 81, group = "IncreasedCastSpeed", types = { ["Dagger"] = 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 the Order", "Trigger a Socketed Spell when you Use a Skill", statOrder = { 413 }, level = 75, group = "SupportedByTrigger", types = { ["Dagger"] = 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, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(9-10)% to Fire and Chaos Resistances", statOrder = { 4408 }, level = 60, group = "FireAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(11-12)% to Fire and Chaos Resistances", statOrder = { 4408 }, level = 72, group = "FireAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(13-15)% to Fire and Chaos Resistances", statOrder = { 4408 }, level = 81, group = "FireAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(9-10)% to Lightning and Chaos Resistances", statOrder = { 4718 }, level = 60, group = "LightningAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(11-12)% to Lightning and Chaos Resistances", statOrder = { 4718 }, level = 72, group = "LightningAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(13-15)% to Lightning and Chaos Resistances", statOrder = { 4718 }, level = 81, group = "LightningAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(9-10)% to Cold and Chaos Resistances", statOrder = { 4081 }, level = 60, group = "ColdAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(11-12)% to Cold and Chaos Resistances", statOrder = { 4081 }, level = 72, group = "ColdAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(13-15)% to Cold and Chaos Resistances", statOrder = { 4081 }, level = 81, group = "ColdAndChaosDamageResistance", types = { ["Dagger"] = 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, ["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 the Order", "+(10-15) to Strength", "+(7-10)% to Quality", statOrder = { 521, 5136 }, level = 60, group = "Strength", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(16-20) to Strength", "+(11-14)% to Quality", statOrder = { 521, 5136 }, level = 72, group = "Strength", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(21-25) to Strength", "+(15-18)% to Quality", statOrder = { 521, 5136 }, level = 81, group = "Strength", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(10-15) to Dexterity", "+(7-10)% to Quality", statOrder = { 522, 5136 }, level = 60, group = "Dexterity", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(16-20) to Dexterity", "+(11-14)% to Quality", statOrder = { 522, 5136 }, level = 72, group = "Dexterity", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(21-25) to Dexterity", "+(15-18)% to Quality", statOrder = { 522, 5136 }, level = 81, group = "Dexterity", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(10-15) to Intelligence", "+(7-10)% to Quality", statOrder = { 523, 5136 }, level = 60, group = "Intelligence", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(16-20) to Intelligence", "+(11-14)% to Quality", statOrder = { 523, 5136 }, level = 72, group = "Intelligence", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "+(21-25) to Intelligence", "+(15-18)% to Quality", statOrder = { 523, 5136 }, level = 81, group = "Intelligence", types = { ["Dagger"] = 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, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Regenerate 1% of Life per second during any Flask Effect", statOrder = { 4714 }, level = 60, group = "LifeRegenerationRatePerMinuteWhileUsingFlask", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Regenerate 1.5% of Life per second during any Flask Effect", statOrder = { 4714 }, level = 72, group = "LifeRegenerationRatePerMinuteWhileUsingFlask", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", "Regenerate 2% of Life per second during any Flask Effect", statOrder = { 4714 }, level = 81, group = "LifeRegenerationRatePerMinuteWhileUsingFlask", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(7-8)% increased Trap Throwing Speed", statOrder = { 1178 }, level = 60, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(9-10)% increased Trap Throwing Speed", statOrder = { 1178 }, level = 72, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(11-12)% increased Trap Throwing Speed", statOrder = { 1178 }, level = 81, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(7-8)% increased Mine Throwing Speed", statOrder = { 1179 }, level = 60, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(9-10)% increased Mine Throwing Speed", statOrder = { 1179 }, level = 72, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(11-12)% increased Mine Throwing Speed", statOrder = { 1179 }, level = 81, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(7-8)% increased Brand Attachment range", statOrder = { 6242 }, level = 60, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(9-10)% increased Brand Attachment range", statOrder = { 6242 }, level = 72, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of the Order", "(11-12)% increased Brand Attachment range", statOrder = { 6242 }, level = 81, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(5-8)% increased maximum Life", "(5-8)% increased maximum Mana", statOrder = { 879, 885 }, level = 60, group = "MaximumLifeIncreasePercent", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(5-7)% Chance to Block Attack Damage", statOrder = { 495 }, level = 60, group = "BlockPercent", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(8-10)% chance to Dodge Spell Hits", statOrder = { 1418 }, level = 60, group = "SpellDodgePercentage", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(25-35)% chance to Avoid Elemental Ailments", "(25-35)% chance to Avoid being Stunned", statOrder = { 1104, 1112 }, level = 60, group = "AvoidStunAndElementalStatusAilments", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(6-7)% increased Area of Effect", "(9-10)% increased Area Damage", statOrder = { 1140, 1291 }, level = 60, group = "AreaDamageAndAreaOfEffect", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(8-9)% increased Area of Effect", "(11-13)% increased Area Damage", statOrder = { 1140, 1291 }, level = 72, group = "AreaDamageAndAreaOfEffect", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(10-12)% increased Area of Effect", "(14-16)% increased Area Damage", statOrder = { 1140, 1291 }, level = 81, group = "AreaDamageAndAreaOfEffect", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(10-12)% increased Projectile Speed", "(9-10)% increased Projectile Damage", statOrder = { 1068, 1255 }, level = 60, group = "ProjectileDamageAndProjectileSpeed", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(13-16)% increased Projectile Speed", "(11-13)% increased Projectile Damage", statOrder = { 1068, 1255 }, level = 72, group = "ProjectileDamageAndProjectileSpeed", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(17-20)% increased Projectile Speed", "(14-16)% increased Projectile Damage", statOrder = { 1068, 1255 }, level = 81, group = "ProjectileDamageAndProjectileSpeed", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(9-10)% increased Melee Damage", "+1 to Melee Strike Range", statOrder = { 572, 1732 }, level = 60, group = "MeleeRangeAndMeleeDamage", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(11-13)% increased Melee Damage", "+1 to Melee Strike Range", statOrder = { 572, 1732 }, level = 72, group = "MeleeRangeAndMeleeDamage", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Chosen", "(14-16)% increased Melee Damage", "+1 to Melee Strike Range", statOrder = { 572, 1732 }, level = 81, group = "MeleeRangeAndMeleeDamage", types = { ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Prefixes", "Prefixes Cannot Be Changed", statOrder = { 8 }, level = 1, group = "ItemGenerationCannotChangePrefixes", types = { ["Dagger"] = 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, ["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", "Suffixes Cannot Be Changed", statOrder = { 9 }, level = 1, group = "ItemGenerationCannotChangeSuffixes", types = { ["Dagger"] = 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, ["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", "Can have up to 3 Crafted Modifiers", statOrder = { 12 }, level = 1, group = "ItemGenerationCanHaveMultipleCraftedMods", types = { ["Dagger"] = 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, ["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 Spellcraft", "Cannot roll Attack Modifiers", statOrder = { 11 }, level = 1, group = "ItemGenerationCannotRollAttackAffixes", types = { ["Dagger"] = 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, ["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 Weaponcraft", "Cannot roll Caster Modifiers", statOrder = { 10 }, level = 1, group = "ItemGenerationCannotRollCasterAffixes", types = { ["Dagger"] = 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, ["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, }, }, } \ No newline at end of file diff --git a/Data/3_0/Skills/act_dex.lua b/Data/3_0/Skills/act_dex.lua index fa679fd22..0c95c5d45 100644 --- a/Data/3_0/Skills/act_dex.lua +++ b/Data/3_0/Skills/act_dex.lua @@ -9,11 +9,13 @@ local skills, mod, flag, skill = ... skills["AnimateWeapon"] = { name = "Animate Weapon", color = 2, - description = "Animates a melee weapon to fight by your side. You cannot animate unidentified weapons.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.CreatesMinion] = true, }, + baseEffectiveness = 0.21999999880791, + incrementalEffectiveness = 0.029999999329448, + description = "Animates a Melee Weapon Item or Lingering Blade to fight by your side. You cannot animate unidentified Weapons. Will not animate weapons with 6 sockets unless specifically targeted.", + skillTypes = { [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.CreatesMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.CanRapidFire] = true, [SkillType.PhysicalSkill] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Type54] = true, [SkillType.SkillCanVolley] = true, [SkillType.Type56] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", - castTime = 0.8, + castTime = 0.6, minionHasItemSet = true, minionUses = { ["Weapon 1"] = true, @@ -46,59 +48,59 @@ skills["AnimateWeapon"] = { baseMods = { }, qualityStats = { - { "base_movement_velocity_+%", 2 }, + { "base_movement_velocity_+%", 1 }, }, stats = { - "emerge_speed_+%", "animate_item_maximum_level_requirement", - "active_skill_damage_+%_final", - "attack_speed_+%", - "base_skill_effect_duration", + "active_skill_minion_damage_+%_final", + "active_skill_minion_attack_speed_+%_final", "attack_minimum_added_physical_damage", "attack_maximum_added_physical_damage", "number_of_animated_weapons_allowed", + "attack_minimum_added_physical_damage_for_ethereal_blades", + "attack_maximum_added_physical_damage_for_ethereal_blades", }, levels = { - [1] = { 0, 9, 0, 0, 37500, 4, 6, 50, manaCost = 7, levelRequirement = 4, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [2] = { 0, 11, 8, 2, 37500, 5, 8, 50, manaCost = 8, levelRequirement = 6, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [3] = { 0, 14, 16, 4, 37500, 7, 10, 50, manaCost = 9, levelRequirement = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [4] = { 0, 18, 24, 6, 37500, 8, 12, 50, manaCost = 9, levelRequirement = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [5] = { 0, 22, 32, 8, 37500, 10, 15, 50, manaCost = 11, levelRequirement = 16, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [6] = { 0, 26, 40, 10, 37500, 12, 18, 50, manaCost = 12, levelRequirement = 20, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [7] = { 0, 31, 48, 12, 37500, 14, 21, 50, manaCost = 13, levelRequirement = 24, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [8] = { 0, 35, 56, 14, 37500, 17, 25, 50, manaCost = 14, levelRequirement = 28, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [9] = { 0, 40, 64, 16, 37500, 19, 29, 50, manaCost = 15, levelRequirement = 32, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [10] = { 0, 44, 72, 18, 37500, 22, 34, 50, manaCost = 16, levelRequirement = 36, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [11] = { 0, 49, 80, 20, 37500, 24, 37, 50, manaCost = 18, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [12] = { 0, 53, 88, 22, 37500, 26, 39, 50, manaCost = 19, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [13] = { 0, 58, 96, 24, 37500, 28, 41, 50, manaCost = 20, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [14] = { 0, 62, 104, 26, 37500, 29, 44, 50, manaCost = 21, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [15] = { 0, 66, 112, 28, 37500, 31, 46, 50, manaCost = 22, levelRequirement = 55, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [16] = { 0, 70, 120, 30, 37500, 32, 49, 50, manaCost = 23, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [17] = { 0, 74, 128, 32, 37500, 34, 51, 50, manaCost = 24, levelRequirement = 61, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [18] = { 0, 78, 136, 34, 37500, 36, 53, 50, manaCost = 25, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [19] = { 0, 82, 144, 36, 37500, 37, 55, 50, manaCost = 25, levelRequirement = 67, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [20] = { 0, 100, 152, 38, 37500, 38, 56, 50, manaCost = 26, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [21] = { 0, 100, 160, 40, 37500, 39, 58, 50, manaCost = 27, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [22] = { 0, 100, 168, 42, 37500, 40, 60, 50, manaCost = 27, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [23] = { 0, 100, 176, 44, 37500, 41, 61, 50, manaCost = 28, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [24] = { 0, 100, 184, 46, 37500, 42, 63, 50, manaCost = 29, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [25] = { 0, 100, 192, 48, 37500, 43, 64, 50, manaCost = 29, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [26] = { 0, 100, 200, 50, 37500, 44, 66, 50, manaCost = 30, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [27] = { 0, 100, 208, 52, 37500, 45, 67, 50, manaCost = 30, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [28] = { 0, 100, 216, 54, 37500, 46, 69, 50, manaCost = 31, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [29] = { 0, 100, 224, 56, 37500, 47, 71, 50, manaCost = 32, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [30] = { 0, 100, 232, 58, 37500, 48, 72, 50, manaCost = 32, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [31] = { 0, 100, 236, 59, 37500, 48, 73, 50, manaCost = 32, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [32] = { 0, 100, 240, 60, 37500, 49, 74, 50, manaCost = 33, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [33] = { 0, 100, 244, 61, 37500, 49, 75, 50, manaCost = 33, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [34] = { 0, 100, 248, 62, 37500, 50, 76, 50, manaCost = 33, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [35] = { 0, 100, 252, 63, 37500, 50, 76, 50, manaCost = 34, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [36] = { 0, 100, 256, 64, 37500, 51, 77, 50, manaCost = 34, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [37] = { 0, 100, 260, 65, 37500, 51, 78, 50, manaCost = 34, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [38] = { 0, 100, 264, 66, 37500, 52, 78, 50, manaCost = 34, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [39] = { 0, 100, 268, 67, 37500, 52, 79, 50, manaCost = 35, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [40] = { 0, 100, 272, 68, 37500, 53, 80, 50, manaCost = 35, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [1] = { 9, 10, 10, 5, 8, 5, 0.34999999403954, 1.6499999761581, levelRequirement = 4, duration = 40, manaCost = 4, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [2] = { 11, 12, 12, 6, 11, 5, 0.34999999403954, 1.6499999761581, levelRequirement = 6, duration = 40, manaCost = 4, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [3] = { 14, 14, 14, 10, 15, 6, 0.34999999403954, 1.6499999761581, levelRequirement = 9, duration = 40, manaCost = 4, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [4] = { 18, 16, 16, 13, 18, 6, 0.34999999403954, 1.6499999761581, levelRequirement = 12, duration = 40, manaCost = 4, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [5] = { 22, 18, 18, 17, 25, 7, 0.34999999403954, 1.6499999761581, levelRequirement = 16, duration = 40, manaCost = 5, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [6] = { 26, 20, 20, 21, 32, 7, 0.34999999403954, 1.6499999761581, levelRequirement = 20, duration = 40, manaCost = 6, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [7] = { 31, 22, 22, 26, 38, 8, 0.34999999403954, 1.6499999761581, levelRequirement = 24, duration = 40, manaCost = 6, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [8] = { 35, 24, 24, 32, 47, 8, 0.34999999403954, 1.6499999761581, levelRequirement = 28, duration = 40, manaCost = 7, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [9] = { 40, 26, 26, 39, 57, 9, 0.34999999403954, 1.6499999761581, levelRequirement = 32, duration = 40, manaCost = 7, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [10] = { 44, 28, 28, 48, 72, 9, 0.34999999403954, 1.6499999761581, levelRequirement = 36, duration = 40, manaCost = 8, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [11] = { 49, 30, 30, 53, 81, 10, 0.34999999403954, 1.6499999761581, levelRequirement = 40, duration = 40, manaCost = 8, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [12] = { 53, 32, 32, 61, 91, 10, 0.34999999403954, 1.6499999761581, levelRequirement = 44, duration = 40, manaCost = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [13] = { 58, 34, 34, 68, 99, 11, 0.34999999403954, 1.6499999761581, levelRequirement = 48, duration = 40, manaCost = 9, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [14] = { 62, 36, 36, 73, 112, 11, 0.34999999403954, 1.6499999761581, levelRequirement = 52, duration = 40, manaCost = 10, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [15] = { 66, 38, 38, 83, 124, 12, 0.34999999403954, 1.6499999761581, levelRequirement = 55, duration = 40, manaCost = 10, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [16] = { 70, 40, 40, 89, 136, 12, 0.34999999403954, 1.6499999761581, levelRequirement = 58, duration = 40, manaCost = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [17] = { 74, 42, 42, 99, 148, 13, 0.34999999403954, 1.6499999761581, levelRequirement = 61, duration = 40, manaCost = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [18] = { 78, 44, 44, 108, 159, 13, 0.34999999403954, 1.6499999761581, levelRequirement = 64, duration = 40, manaCost = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [19] = { 82, 46, 46, 115, 173, 14, 0.34999999403954, 1.6499999761581, levelRequirement = 67, duration = 40, manaCost = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [20] = { 100, 48, 48, 126, 184, 14, 0.34999999403954, 1.6499999761581, levelRequirement = 70, duration = 40, manaCost = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [21] = { 100, 49, 49, 130, 190, 15, 0.34499999880791, 1.6299999952316, levelRequirement = 72, duration = 40, manaCost = 13, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [22] = { 100, 50, 50, 134, 196, 15, 0.34000000357628, 1.6100000143051, levelRequirement = 74, duration = 40, manaCost = 13, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [23] = { 100, 51, 51, 138, 202, 16, 0.33500000834465, 1.5900000333786, levelRequirement = 76, duration = 40, manaCost = 13, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [24] = { 100, 52, 52, 142, 208, 16, 0.33000001311302, 1.5700000524521, levelRequirement = 78, duration = 40, manaCost = 13, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [25] = { 100, 53, 53, 146, 214, 17, 0.32499998807907, 1.5499999523163, levelRequirement = 80, duration = 40, manaCost = 14, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [26] = { 100, 54, 54, 150, 220, 17, 0.31999999284744, 1.5299999713898, levelRequirement = 82, duration = 40, manaCost = 14, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [27] = { 100, 55, 55, 155, 227, 18, 0.31499999761581, 1.5099999904633, levelRequirement = 84, duration = 40, manaCost = 14, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [28] = { 100, 56, 56, 160, 234, 18, 0.31000000238419, 1.4900000095367, levelRequirement = 86, duration = 40, manaCost = 14, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [29] = { 100, 57, 57, 165, 241, 19, 0.30500000715256, 1.4700000286102, levelRequirement = 88, duration = 40, manaCost = 15, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [30] = { 100, 58, 58, 170, 248, 19, 0.30000001192093, 1.4500000476837, levelRequirement = 90, duration = 40, manaCost = 15, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [31] = { 100, 59, 59, 175, 255, 20, 0.29499998688698, 1.4299999475479, levelRequirement = 91, duration = 40, manaCost = 15, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [32] = { 100, 60, 60, 180, 263, 20, 0.28999999165535, 1.4099999666214, levelRequirement = 92, duration = 40, manaCost = 15, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [33] = { 100, 61, 61, 185, 271, 21, 0.28499999642372, 1.3899999856949, levelRequirement = 93, duration = 40, manaCost = 15, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [34] = { 100, 62, 62, 191, 279, 21, 0.28000000119209, 1.3700000047684, levelRequirement = 94, duration = 40, manaCost = 16, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [35] = { 100, 63, 63, 197, 287, 22, 0.27500000596046, 1.3500000238419, levelRequirement = 95, duration = 40, manaCost = 16, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [36] = { 100, 64, 64, 203, 296, 22, 0.27000001072884, 1.3300000429153, levelRequirement = 96, duration = 40, manaCost = 16, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [37] = { 100, 65, 65, 209, 305, 23, 0.26499998569489, 1.3099999427795, levelRequirement = 97, duration = 40, manaCost = 16, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [38] = { 100, 66, 66, 215, 314, 23, 0.25999999046326, 1.289999961853, levelRequirement = 98, duration = 40, manaCost = 16, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [39] = { 100, 67, 67, 221, 323, 24, 0.25499999523163, 1.2699999809265, levelRequirement = 99, duration = 40, manaCost = 16, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, + [40] = { 100, 68, 68, 228, 333, 24, 0.25, 1.25, levelRequirement = 100, duration = 40, manaCost = 16, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, 3, }, }, }, } skills["ArcticArmour"] = { @@ -107,7 +109,7 @@ skills["ArcticArmour"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.029999999329448, description = "Conjures an icy barrier that chills enemies when they hit you. You drop chilled ground while moving, and take less Fire and Physical damage while stationary.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.SkillCanTotem] = true, [SkillType.Duration] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ColdSkill] = true, [SkillType.ManaCostPercent] = true, [SkillType.CauseElementalStatus] = true, [SkillType.Instant] = true, [SkillType.NonHitChill] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.SkillCanTotem] = true, [SkillType.Duration] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ColdSkill] = true, [SkillType.ManaCostPercent] = true, [SkillType.CauseElementalStatus] = true, [SkillType.Instant] = true, [SkillType.NonHitChill] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -213,46 +215,46 @@ skills["ArtilleryBallista"] = { "is_ranged_attack_totem", }, levels = { - [1] = { 80, 8000, 28, 5, 2, 100, baseMultiplier = 0.33, manaCost = 7, damageEffectiveness = 0.33, attackSpeedMultiplier = -50, levelRequirement = 28, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [2] = { 80, 8000, 31, 5, 2, 100, baseMultiplier = 0.335, manaCost = 7, damageEffectiveness = 0.33, attackSpeedMultiplier = -50, levelRequirement = 31, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [3] = { 80, 8000, 34, 5, 2, 100, baseMultiplier = 0.339, manaCost = 7, damageEffectiveness = 0.34, attackSpeedMultiplier = -50, levelRequirement = 34, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [4] = { 80, 8000, 37, 5, 2, 100, baseMultiplier = 0.344, manaCost = 8, damageEffectiveness = 0.34, attackSpeedMultiplier = -50, levelRequirement = 37, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [5] = { 80, 8000, 40, 5, 2, 100, baseMultiplier = 0.349, manaCost = 8, damageEffectiveness = 0.35, attackSpeedMultiplier = -50, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [6] = { 80, 8000, 42, 5, 2, 100, baseMultiplier = 0.354, manaCost = 8, damageEffectiveness = 0.35, attackSpeedMultiplier = -50, levelRequirement = 42, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [7] = { 80, 8000, 44, 5, 2, 100, baseMultiplier = 0.358, manaCost = 8, damageEffectiveness = 0.36, attackSpeedMultiplier = -50, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [8] = { 80, 8000, 46, 5, 2, 100, baseMultiplier = 0.363, manaCost = 8, damageEffectiveness = 0.36, attackSpeedMultiplier = -50, levelRequirement = 46, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [9] = { 80, 8000, 48, 5, 2, 100, baseMultiplier = 0.368, manaCost = 9, damageEffectiveness = 0.37, attackSpeedMultiplier = -50, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [10] = { 80, 8000, 50, 5, 2, 100, baseMultiplier = 0.373, manaCost = 9, damageEffectiveness = 0.37, attackSpeedMultiplier = -50, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [11] = { 80, 8000, 52, 5, 2, 100, baseMultiplier = 0.377, manaCost = 9, damageEffectiveness = 0.38, attackSpeedMultiplier = -50, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [12] = { 80, 8000, 54, 5, 2, 100, baseMultiplier = 0.382, manaCost = 9, damageEffectiveness = 0.38, attackSpeedMultiplier = -50, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [13] = { 80, 8000, 56, 5, 2, 100, baseMultiplier = 0.387, manaCost = 10, damageEffectiveness = 0.39, attackSpeedMultiplier = -50, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [14] = { 80, 8000, 58, 5, 2, 100, baseMultiplier = 0.392, manaCost = 10, damageEffectiveness = 0.39, attackSpeedMultiplier = -50, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [15] = { 80, 8000, 60, 5, 2, 100, baseMultiplier = 0.396, manaCost = 10, damageEffectiveness = 0.4, attackSpeedMultiplier = -50, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [16] = { 80, 8000, 62, 5, 2, 100, baseMultiplier = 0.401, manaCost = 10, damageEffectiveness = 0.4, attackSpeedMultiplier = -50, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [17] = { 80, 8000, 64, 5, 2, 100, baseMultiplier = 0.406, manaCost = 10, damageEffectiveness = 0.41, attackSpeedMultiplier = -50, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [18] = { 80, 8000, 66, 5, 2, 100, baseMultiplier = 0.411, manaCost = 11, damageEffectiveness = 0.41, attackSpeedMultiplier = -50, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [19] = { 80, 8000, 68, 5, 2, 100, baseMultiplier = 0.415, manaCost = 11, damageEffectiveness = 0.42, attackSpeedMultiplier = -50, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [20] = { 80, 8000, 70, 5, 2, 100, baseMultiplier = 0.42, manaCost = 11, damageEffectiveness = 0.42, attackSpeedMultiplier = -50, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [21] = { 80, 8000, 72, 5, 2, 100, baseMultiplier = 0.425, manaCost = 11, damageEffectiveness = 0.42, attackSpeedMultiplier = -50, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [22] = { 80, 8000, 74, 5, 2, 100, baseMultiplier = 0.429, manaCost = 11, damageEffectiveness = 0.43, attackSpeedMultiplier = -50, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [23] = { 80, 8000, 76, 5, 2, 100, baseMultiplier = 0.434, manaCost = 12, damageEffectiveness = 0.43, attackSpeedMultiplier = -50, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [24] = { 80, 8000, 78, 5, 2, 100, baseMultiplier = 0.439, manaCost = 12, damageEffectiveness = 0.44, attackSpeedMultiplier = -50, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [25] = { 80, 8000, 80, 5, 2, 100, baseMultiplier = 0.444, manaCost = 12, damageEffectiveness = 0.44, attackSpeedMultiplier = -50, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [26] = { 80, 8000, 82, 5, 2, 100, baseMultiplier = 0.448, manaCost = 12, damageEffectiveness = 0.45, attackSpeedMultiplier = -50, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [27] = { 80, 8000, 84, 5, 2, 100, baseMultiplier = 0.453, manaCost = 12, damageEffectiveness = 0.45, attackSpeedMultiplier = -50, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [28] = { 80, 8000, 86, 5, 2, 100, baseMultiplier = 0.458, manaCost = 13, damageEffectiveness = 0.46, attackSpeedMultiplier = -50, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [29] = { 80, 8000, 88, 5, 2, 100, baseMultiplier = 0.463, manaCost = 13, damageEffectiveness = 0.46, attackSpeedMultiplier = -50, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [30] = { 80, 8000, 90, 5, 2, 100, baseMultiplier = 0.467, manaCost = 13, damageEffectiveness = 0.47, attackSpeedMultiplier = -50, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [31] = { 80, 8000, 91, 5, 2, 100, baseMultiplier = 0.47, manaCost = 13, damageEffectiveness = 0.47, attackSpeedMultiplier = -50, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [32] = { 80, 8000, 92, 5, 2, 100, baseMultiplier = 0.472, manaCost = 14, damageEffectiveness = 0.47, attackSpeedMultiplier = -50, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [33] = { 80, 8000, 93, 5, 2, 100, baseMultiplier = 0.474, manaCost = 14, damageEffectiveness = 0.47, attackSpeedMultiplier = -50, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [34] = { 80, 8000, 94, 5, 2, 100, baseMultiplier = 0.477, manaCost = 14, damageEffectiveness = 0.48, attackSpeedMultiplier = -50, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [35] = { 80, 8000, 95, 5, 2, 100, baseMultiplier = 0.479, manaCost = 14, damageEffectiveness = 0.48, attackSpeedMultiplier = -50, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [36] = { 80, 8000, 96, 5, 2, 100, baseMultiplier = 0.482, manaCost = 14, damageEffectiveness = 0.48, attackSpeedMultiplier = -50, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [37] = { 80, 8000, 97, 5, 2, 100, baseMultiplier = 0.484, manaCost = 15, damageEffectiveness = 0.48, attackSpeedMultiplier = -50, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [38] = { 80, 8000, 98, 5, 2, 100, baseMultiplier = 0.486, manaCost = 15, damageEffectiveness = 0.49, attackSpeedMultiplier = -50, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [39] = { 80, 8000, 99, 5, 2, 100, baseMultiplier = 0.489, manaCost = 15, damageEffectiveness = 0.49, attackSpeedMultiplier = -50, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [40] = { 80, 8000, 100, 5, 2, 100, baseMultiplier = 0.491, manaCost = 15, damageEffectiveness = 0.49, attackSpeedMultiplier = -50, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [1] = { 80, 8000, 28, 5, 2, 100, baseMultiplier = 0.4, manaCost = 7, damageEffectiveness = 0.4, attackSpeedMultiplier = -50, levelRequirement = 28, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [2] = { 80, 8000, 31, 5, 2, 100, baseMultiplier = 0.406, manaCost = 7, damageEffectiveness = 0.41, attackSpeedMultiplier = -50, levelRequirement = 31, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [3] = { 80, 8000, 34, 5, 2, 100, baseMultiplier = 0.412, manaCost = 7, damageEffectiveness = 0.41, attackSpeedMultiplier = -50, levelRequirement = 34, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [4] = { 80, 8000, 37, 5, 2, 100, baseMultiplier = 0.417, manaCost = 8, damageEffectiveness = 0.42, attackSpeedMultiplier = -50, levelRequirement = 37, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [5] = { 80, 8000, 40, 5, 2, 100, baseMultiplier = 0.423, manaCost = 8, damageEffectiveness = 0.42, attackSpeedMultiplier = -50, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [6] = { 80, 8000, 42, 5, 2, 100, baseMultiplier = 0.429, manaCost = 8, damageEffectiveness = 0.43, attackSpeedMultiplier = -50, levelRequirement = 42, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [7] = { 80, 8000, 44, 5, 2, 100, baseMultiplier = 0.435, manaCost = 8, damageEffectiveness = 0.43, attackSpeedMultiplier = -50, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [8] = { 80, 8000, 46, 5, 2, 100, baseMultiplier = 0.441, manaCost = 8, damageEffectiveness = 0.44, attackSpeedMultiplier = -50, levelRequirement = 46, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [9] = { 80, 8000, 48, 5, 2, 100, baseMultiplier = 0.446, manaCost = 9, damageEffectiveness = 0.45, attackSpeedMultiplier = -50, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [10] = { 80, 8000, 50, 5, 2, 100, baseMultiplier = 0.452, manaCost = 9, damageEffectiveness = 0.45, attackSpeedMultiplier = -50, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [11] = { 80, 8000, 52, 5, 2, 100, baseMultiplier = 0.458, manaCost = 9, damageEffectiveness = 0.46, attackSpeedMultiplier = -50, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [12] = { 80, 8000, 54, 5, 2, 100, baseMultiplier = 0.464, manaCost = 9, damageEffectiveness = 0.46, attackSpeedMultiplier = -50, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [13] = { 80, 8000, 56, 5, 2, 100, baseMultiplier = 0.469, manaCost = 10, damageEffectiveness = 0.47, attackSpeedMultiplier = -50, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [14] = { 80, 8000, 58, 5, 2, 100, baseMultiplier = 0.475, manaCost = 10, damageEffectiveness = 0.48, attackSpeedMultiplier = -50, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [15] = { 80, 8000, 60, 5, 2, 100, baseMultiplier = 0.481, manaCost = 10, damageEffectiveness = 0.48, attackSpeedMultiplier = -50, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [16] = { 80, 8000, 62, 5, 2, 100, baseMultiplier = 0.487, manaCost = 10, damageEffectiveness = 0.49, attackSpeedMultiplier = -50, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [17] = { 80, 8000, 64, 5, 2, 100, baseMultiplier = 0.493, manaCost = 10, damageEffectiveness = 0.49, attackSpeedMultiplier = -50, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [18] = { 80, 8000, 66, 5, 2, 100, baseMultiplier = 0.498, manaCost = 11, damageEffectiveness = 0.5, attackSpeedMultiplier = -50, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [19] = { 80, 8000, 68, 5, 2, 100, baseMultiplier = 0.504, manaCost = 11, damageEffectiveness = 0.5, attackSpeedMultiplier = -50, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [20] = { 80, 8000, 70, 5, 2, 100, baseMultiplier = 0.51, manaCost = 11, damageEffectiveness = 0.51, attackSpeedMultiplier = -50, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [21] = { 80, 8000, 72, 5, 2, 100, baseMultiplier = 0.516, manaCost = 11, damageEffectiveness = 0.52, attackSpeedMultiplier = -50, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [22] = { 80, 8000, 74, 5, 2, 100, baseMultiplier = 0.522, manaCost = 11, damageEffectiveness = 0.52, attackSpeedMultiplier = -50, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [23] = { 80, 8000, 76, 5, 2, 100, baseMultiplier = 0.527, manaCost = 12, damageEffectiveness = 0.53, attackSpeedMultiplier = -50, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [24] = { 80, 8000, 78, 5, 2, 100, baseMultiplier = 0.533, manaCost = 12, damageEffectiveness = 0.53, attackSpeedMultiplier = -50, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [25] = { 80, 8000, 80, 5, 2, 100, baseMultiplier = 0.539, manaCost = 12, damageEffectiveness = 0.54, attackSpeedMultiplier = -50, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [26] = { 80, 8000, 82, 5, 2, 100, baseMultiplier = 0.545, manaCost = 12, damageEffectiveness = 0.54, attackSpeedMultiplier = -50, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [27] = { 80, 8000, 84, 5, 2, 100, baseMultiplier = 0.551, manaCost = 12, damageEffectiveness = 0.55, attackSpeedMultiplier = -50, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [28] = { 80, 8000, 86, 5, 2, 100, baseMultiplier = 0.556, manaCost = 13, damageEffectiveness = 0.56, attackSpeedMultiplier = -50, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [29] = { 80, 8000, 88, 5, 2, 100, baseMultiplier = 0.562, manaCost = 13, damageEffectiveness = 0.56, attackSpeedMultiplier = -50, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [30] = { 80, 8000, 90, 5, 2, 100, baseMultiplier = 0.568, manaCost = 13, damageEffectiveness = 0.57, attackSpeedMultiplier = -50, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [31] = { 80, 8000, 91, 5, 2, 100, baseMultiplier = 0.571, manaCost = 13, damageEffectiveness = 0.57, attackSpeedMultiplier = -50, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [32] = { 80, 8000, 92, 5, 2, 100, baseMultiplier = 0.574, manaCost = 14, damageEffectiveness = 0.57, attackSpeedMultiplier = -50, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [33] = { 80, 8000, 93, 5, 2, 100, baseMultiplier = 0.577, manaCost = 14, damageEffectiveness = 0.58, attackSpeedMultiplier = -50, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [34] = { 80, 8000, 94, 5, 2, 100, baseMultiplier = 0.579, manaCost = 14, damageEffectiveness = 0.58, attackSpeedMultiplier = -50, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [35] = { 80, 8000, 95, 5, 2, 100, baseMultiplier = 0.582, manaCost = 14, damageEffectiveness = 0.58, attackSpeedMultiplier = -50, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [36] = { 80, 8000, 96, 5, 2, 100, baseMultiplier = 0.585, manaCost = 14, damageEffectiveness = 0.59, attackSpeedMultiplier = -50, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [37] = { 80, 8000, 97, 5, 2, 100, baseMultiplier = 0.588, manaCost = 15, damageEffectiveness = 0.59, attackSpeedMultiplier = -50, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [38] = { 80, 8000, 98, 5, 2, 100, baseMultiplier = 0.591, manaCost = 15, damageEffectiveness = 0.59, attackSpeedMultiplier = -50, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [39] = { 80, 8000, 99, 5, 2, 100, baseMultiplier = 0.594, manaCost = 15, damageEffectiveness = 0.59, attackSpeedMultiplier = -50, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [40] = { 80, 8000, 100, 5, 2, 100, baseMultiplier = 0.597, manaCost = 15, damageEffectiveness = 0.6, attackSpeedMultiplier = -50, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, }, } skills["Barrage"] = { @@ -343,7 +345,7 @@ skills["BearTrap"] = { baseEffectiveness = 2.8499999046326, incrementalEffectiveness = 0.042500000447035, description = "Throws a trap that damages and immobilises a single enemy for a duration based on how much damage was dealt. After the immobilise expires, a debuff remains on the enemy for a duration, lowering their movement speed by an amount which lessens over time. The affected enemy will take increased damage from traps and mines until the debuff expires. Modifiers to spell damage do not affect this skill's damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.SkillCanMine] = true, [SkillType.Trap] = true, [SkillType.Hit] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.SkillCanMine] = true, [SkillType.Trap] = true, [SkillType.Hit] = true, [SkillType.PhysicalSkill] = true, [SkillType.Type90] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 1, statMap = { @@ -702,7 +704,7 @@ skills["Bladefall"] = { baseEffectiveness = 1.5471999645233, incrementalEffectiveness = 0.036100000143051, description = "Ethereal weapons rain from the sky, dealing damage to enemies in a sequence of volleys, each wider but less damaging than the last. Enemies can be hit multiple times where these overlap.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanRepeat] = true, [SkillType.SpellCanCascade] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanRepeat] = true, [SkillType.SpellCanCascade] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, [SkillType.Duration] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, baseFlags = { @@ -721,56 +723,59 @@ skills["Bladefall"] = { "critical_strike_chance_+%", "bladefall_critical_strike_chance_+%_per_stage", "bladefall_number_of_volleys", + "bladefall_blade_left_in_ground_for_every_X_volleys", + "maximum_number_of_blades_left_in_ground", + "blades_left_in_ground_+%_final_if_not_hand_cast", "is_area_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 28, manaCost = 12, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [2] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 31, manaCost = 13, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [3] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 34, manaCost = 14, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [4] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 37, manaCost = 15, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [5] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 40, manaCost = 15, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [6] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 42, manaCost = 16, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [7] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 44, manaCost = 16, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [8] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 46, manaCost = 17, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [9] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 48, manaCost = 17, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [10] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 50, manaCost = 18, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [11] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 52, manaCost = 18, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [12] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 54, manaCost = 19, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [13] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 56, manaCost = 19, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [14] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 58, manaCost = 20, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [15] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 60, manaCost = 20, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [16] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 62, manaCost = 21, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [17] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 64, manaCost = 21, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [18] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 66, manaCost = 22, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [19] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 68, manaCost = 22, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [20] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 70, manaCost = 23, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [21] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 72, manaCost = 24, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [22] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 74, manaCost = 24, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [23] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 76, manaCost = 25, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [24] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 78, manaCost = 25, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [25] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 80, manaCost = 26, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [26] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 82, manaCost = 26, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [27] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 84, manaCost = 27, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [28] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 86, manaCost = 27, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [29] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 88, manaCost = 28, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [30] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 90, manaCost = 28, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [31] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 91, manaCost = 28, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [32] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 92, manaCost = 29, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [33] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 93, manaCost = 29, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [34] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 94, manaCost = 29, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [35] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 95, manaCost = 29, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [36] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 96, manaCost = 30, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [37] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 97, manaCost = 30, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [38] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 98, manaCost = 30, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [39] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 99, manaCost = 30, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [40] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, damageEffectiveness = 0.9, critChance = 6, levelRequirement = 100, manaCost = 31, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [1] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 12, damageEffectiveness = 0.9, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [2] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 13, damageEffectiveness = 0.9, levelRequirement = 31, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [3] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 14, damageEffectiveness = 0.9, levelRequirement = 34, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [4] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 15, damageEffectiveness = 0.9, levelRequirement = 37, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [5] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 15, damageEffectiveness = 0.9, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [6] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 16, damageEffectiveness = 0.9, levelRequirement = 42, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [7] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 16, damageEffectiveness = 0.9, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [8] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 17, damageEffectiveness = 0.9, levelRequirement = 46, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [9] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 17, damageEffectiveness = 0.9, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [10] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 18, damageEffectiveness = 0.9, levelRequirement = 50, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [11] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 18, damageEffectiveness = 0.9, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [12] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 19, damageEffectiveness = 0.9, levelRequirement = 54, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [13] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 19, damageEffectiveness = 0.9, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [14] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 20, damageEffectiveness = 0.9, levelRequirement = 58, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [15] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 20, damageEffectiveness = 0.9, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [16] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 21, damageEffectiveness = 0.9, levelRequirement = 62, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [17] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 21, damageEffectiveness = 0.9, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [18] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 22, damageEffectiveness = 0.9, levelRequirement = 66, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [19] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 22, damageEffectiveness = 0.9, levelRequirement = 68, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [20] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 23, damageEffectiveness = 0.9, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [21] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 24, damageEffectiveness = 0.9, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [22] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 24, damageEffectiveness = 0.9, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [23] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 25, damageEffectiveness = 0.9, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [24] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 25, damageEffectiveness = 0.9, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [25] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 26, damageEffectiveness = 0.9, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [26] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 26, damageEffectiveness = 0.9, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [27] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 27, damageEffectiveness = 0.9, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [28] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 27, damageEffectiveness = 0.9, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [29] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 28, damageEffectiveness = 0.9, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [30] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 28, damageEffectiveness = 0.9, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [31] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 28, damageEffectiveness = 0.9, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [32] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 29, damageEffectiveness = 0.9, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [33] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 29, damageEffectiveness = 0.9, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [34] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 29, damageEffectiveness = 0.9, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [35] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 29, damageEffectiveness = 0.9, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [36] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 30, damageEffectiveness = 0.9, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [37] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 30, damageEffectiveness = 0.9, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [38] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 30, damageEffectiveness = 0.9, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [39] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 30, damageEffectiveness = 0.9, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, + [40] = { 0.80000001192093, 1.2000000476837, -6, 100, -20, 5, 1, 40, -50, critChance = 6, duration = 6, manaCost = 31, damageEffectiveness = 0.9, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, 1, }, }, }, } skills["BlastRain"] = { name = "Blast Rain", color = 2, description = "Fires arrows up in the air, to rain down in an area. Each arrow deals area damage around where it lands, and they will all overlap on the targeted location.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Area] = true, [SkillType.ProjectileDamage] = true, [SkillType.Type73] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Area] = true, [SkillType.ProjectileDamage] = true, [SkillType.Type73] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.Type89] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -857,7 +862,7 @@ skills["BlinkArrow"] = { name = "Blink Arrow", color = 2, description = "Fires an arrow at the target destination. When the arrow lands, you are teleported to it and a clone is summoned at your old location. The clone is a minion that uses your bow and quiver.", - skillTypes = { [SkillType.ProjectileDamage] = true, [SkillType.Attack] = true, [SkillType.Minion] = true, [SkillType.ProjectileAttack] = true, [SkillType.CreateMinion] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.MovementSkill] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.TravelSkill] = true, }, + skillTypes = { [SkillType.ProjectileDamage] = true, [SkillType.Attack] = true, [SkillType.Minion] = true, [SkillType.ProjectileAttack] = true, [SkillType.CreateMinion] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.MovementSkill] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.TravelSkill] = true, [SkillType.Type90] = true, [SkillType.Type89] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanVolley] = true, }, weaponTypes = { ["Bow"] = true, @@ -937,7 +942,7 @@ skills["BloodRage"] = { name = "Blood Rage", color = 2, description = "Adds a buff that deals Physical Damage over time, while increasing Attack Speed and Life Leech. Killing an enemy while this buff is active refreshes the buff duration, and can grant a Frenzy Charge.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, [SkillType.PhysicalSkill] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -975,7 +980,6 @@ skills["BloodRage"] = { "add_frenzy_charge_on_kill_%_chance", "base_skill_effect_duration", "skill_level", - "instant_skill_is_added_to_held_skills_list", }, levels = { [1] = { 5, 120, 240, 240, 25, 7000, 1, cooldown = 1, levelRequirement = 16, manaCost = 7, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, }, }, @@ -1733,7 +1737,7 @@ skills["QuickDodge"] = { name = "Dash", color = 2, description = "Performs a series of quick teleports towards a targeted location. If using the \"Attack in Place\" option, the direction is reversed. Shares a cooldown with other Blink skills.", - skillTypes = { [SkillType.Spell] = true, [SkillType.MovementSkill] = true, [SkillType.TravelSkill] = true, [SkillType.BlinkSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.MovementSkill] = true, [SkillType.TravelSkill] = true, [SkillType.BlinkSkill] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.15, baseFlags = { @@ -1746,6 +1750,7 @@ skills["QuickDodge"] = { }, stats = { "base_cooldown_speed_+%", + "skill_travel_distance_+%", "base_deal_no_damage", "skill_cannot_be_interrupted", "skill_cannot_be_knocked_back", @@ -1753,46 +1758,46 @@ skills["QuickDodge"] = { "spell_cast_time_cannot_be_modified", }, levels = { - [1] = { 0, cooldown = 2, levelRequirement = 4, manaCost = 4, statInterpolation = { 1, }, }, - [2] = { 3, cooldown = 2, levelRequirement = 6, manaCost = 5, statInterpolation = { 1, }, }, - [3] = { 6, cooldown = 2, levelRequirement = 9, manaCost = 5, statInterpolation = { 1, }, }, - [4] = { 9, cooldown = 2, levelRequirement = 12, manaCost = 6, statInterpolation = { 1, }, }, - [5] = { 12, cooldown = 2, levelRequirement = 16, manaCost = 7, statInterpolation = { 1, }, }, - [6] = { 15, cooldown = 2, levelRequirement = 20, manaCost = 7, statInterpolation = { 1, }, }, - [7] = { 18, cooldown = 2, levelRequirement = 24, manaCost = 8, statInterpolation = { 1, }, }, - [8] = { 21, cooldown = 2, levelRequirement = 28, manaCost = 9, statInterpolation = { 1, }, }, - [9] = { 24, cooldown = 2, levelRequirement = 32, manaCost = 10, statInterpolation = { 1, }, }, - [10] = { 27, cooldown = 2, levelRequirement = 36, manaCost = 10, statInterpolation = { 1, }, }, - [11] = { 30, cooldown = 2, levelRequirement = 40, manaCost = 11, statInterpolation = { 1, }, }, - [12] = { 33, cooldown = 2, levelRequirement = 44, manaCost = 12, statInterpolation = { 1, }, }, - [13] = { 36, cooldown = 2, levelRequirement = 48, manaCost = 12, statInterpolation = { 1, }, }, - [14] = { 39, cooldown = 2, levelRequirement = 52, manaCost = 13, statInterpolation = { 1, }, }, - [15] = { 42, cooldown = 2, levelRequirement = 55, manaCost = 14, statInterpolation = { 1, }, }, - [16] = { 45, cooldown = 2, levelRequirement = 58, manaCost = 14, statInterpolation = { 1, }, }, - [17] = { 48, cooldown = 2, levelRequirement = 61, manaCost = 15, statInterpolation = { 1, }, }, - [18] = { 51, cooldown = 2, levelRequirement = 64, manaCost = 15, statInterpolation = { 1, }, }, - [19] = { 54, cooldown = 2, levelRequirement = 67, manaCost = 16, statInterpolation = { 1, }, }, - [20] = { 57, cooldown = 2, levelRequirement = 70, manaCost = 16, statInterpolation = { 1, }, }, - [21] = { 60, cooldown = 2, levelRequirement = 72, manaCost = 17, statInterpolation = { 1, }, }, - [22] = { 63, cooldown = 2, levelRequirement = 74, manaCost = 17, statInterpolation = { 1, }, }, - [23] = { 66, cooldown = 2, levelRequirement = 76, manaCost = 18, statInterpolation = { 1, }, }, - [24] = { 69, cooldown = 2, levelRequirement = 78, manaCost = 18, statInterpolation = { 1, }, }, - [25] = { 72, cooldown = 2, levelRequirement = 80, manaCost = 18, statInterpolation = { 1, }, }, - [26] = { 75, cooldown = 2, levelRequirement = 82, manaCost = 19, statInterpolation = { 1, }, }, - [27] = { 78, cooldown = 2, levelRequirement = 84, manaCost = 19, statInterpolation = { 1, }, }, - [28] = { 81, cooldown = 2, levelRequirement = 86, manaCost = 19, statInterpolation = { 1, }, }, - [29] = { 84, cooldown = 2, levelRequirement = 88, manaCost = 20, statInterpolation = { 1, }, }, - [30] = { 87, cooldown = 2, levelRequirement = 90, manaCost = 20, statInterpolation = { 1, }, }, - [31] = { 88, cooldown = 2, levelRequirement = 91, manaCost = 20, statInterpolation = { 1, }, }, - [32] = { 90, cooldown = 2, levelRequirement = 92, manaCost = 20, statInterpolation = { 1, }, }, - [33] = { 91, cooldown = 2, levelRequirement = 93, manaCost = 21, statInterpolation = { 1, }, }, - [34] = { 93, cooldown = 2, levelRequirement = 94, manaCost = 21, statInterpolation = { 1, }, }, - [35] = { 94, cooldown = 2, levelRequirement = 95, manaCost = 21, statInterpolation = { 1, }, }, - [36] = { 96, cooldown = 2, levelRequirement = 96, manaCost = 21, statInterpolation = { 1, }, }, - [37] = { 97, cooldown = 2, levelRequirement = 97, manaCost = 21, statInterpolation = { 1, }, }, - [38] = { 99, cooldown = 2, levelRequirement = 98, manaCost = 22, statInterpolation = { 1, }, }, - [39] = { 100, cooldown = 2, levelRequirement = 99, manaCost = 22, statInterpolation = { 1, }, }, - [40] = { 102, cooldown = 2, levelRequirement = 100, manaCost = 22, statInterpolation = { 1, }, }, + [1] = { 0, 0, cooldown = 2, levelRequirement = 4, manaCost = 4, statInterpolation = { 1, 1, }, }, + [2] = { 3, 3, cooldown = 2, levelRequirement = 6, manaCost = 5, statInterpolation = { 1, 1, }, }, + [3] = { 6, 6, cooldown = 2, levelRequirement = 9, manaCost = 5, statInterpolation = { 1, 1, }, }, + [4] = { 9, 9, cooldown = 2, levelRequirement = 12, manaCost = 6, statInterpolation = { 1, 1, }, }, + [5] = { 12, 12, cooldown = 2, levelRequirement = 16, manaCost = 7, statInterpolation = { 1, 1, }, }, + [6] = { 15, 15, cooldown = 2, levelRequirement = 20, manaCost = 7, statInterpolation = { 1, 1, }, }, + [7] = { 18, 18, cooldown = 2, levelRequirement = 24, manaCost = 8, statInterpolation = { 1, 1, }, }, + [8] = { 21, 21, cooldown = 2, levelRequirement = 28, manaCost = 9, statInterpolation = { 1, 1, }, }, + [9] = { 24, 24, cooldown = 2, levelRequirement = 32, manaCost = 10, statInterpolation = { 1, 1, }, }, + [10] = { 27, 27, cooldown = 2, levelRequirement = 36, manaCost = 10, statInterpolation = { 1, 1, }, }, + [11] = { 30, 30, cooldown = 2, levelRequirement = 40, manaCost = 11, statInterpolation = { 1, 1, }, }, + [12] = { 33, 33, cooldown = 2, levelRequirement = 44, manaCost = 12, statInterpolation = { 1, 1, }, }, + [13] = { 36, 36, cooldown = 2, levelRequirement = 48, manaCost = 12, statInterpolation = { 1, 1, }, }, + [14] = { 39, 39, cooldown = 2, levelRequirement = 52, manaCost = 13, statInterpolation = { 1, 1, }, }, + [15] = { 42, 42, cooldown = 2, levelRequirement = 55, manaCost = 14, statInterpolation = { 1, 1, }, }, + [16] = { 45, 45, cooldown = 2, levelRequirement = 58, manaCost = 14, statInterpolation = { 1, 1, }, }, + [17] = { 48, 48, cooldown = 2, levelRequirement = 61, manaCost = 15, statInterpolation = { 1, 1, }, }, + [18] = { 51, 51, cooldown = 2, levelRequirement = 64, manaCost = 15, statInterpolation = { 1, 1, }, }, + [19] = { 54, 54, cooldown = 2, levelRequirement = 67, manaCost = 16, statInterpolation = { 1, 1, }, }, + [20] = { 57, 57, cooldown = 2, levelRequirement = 70, manaCost = 16, statInterpolation = { 1, 1, }, }, + [21] = { 60, 60, cooldown = 2, levelRequirement = 72, manaCost = 17, statInterpolation = { 1, 1, }, }, + [22] = { 63, 63, cooldown = 2, levelRequirement = 74, manaCost = 17, statInterpolation = { 1, 1, }, }, + [23] = { 66, 66, cooldown = 2, levelRequirement = 76, manaCost = 18, statInterpolation = { 1, 1, }, }, + [24] = { 69, 69, cooldown = 2, levelRequirement = 78, manaCost = 18, statInterpolation = { 1, 1, }, }, + [25] = { 72, 72, cooldown = 2, levelRequirement = 80, manaCost = 18, statInterpolation = { 1, 1, }, }, + [26] = { 75, 75, cooldown = 2, levelRequirement = 82, manaCost = 19, statInterpolation = { 1, 1, }, }, + [27] = { 78, 78, cooldown = 2, levelRequirement = 84, manaCost = 19, statInterpolation = { 1, 1, }, }, + [28] = { 81, 81, cooldown = 2, levelRequirement = 86, manaCost = 19, statInterpolation = { 1, 1, }, }, + [29] = { 84, 84, cooldown = 2, levelRequirement = 88, manaCost = 20, statInterpolation = { 1, 1, }, }, + [30] = { 87, 87, cooldown = 2, levelRequirement = 90, manaCost = 20, statInterpolation = { 1, 1, }, }, + [31] = { 88, 88, cooldown = 2, levelRequirement = 91, manaCost = 20, statInterpolation = { 1, 1, }, }, + [32] = { 90, 90, cooldown = 2, levelRequirement = 92, manaCost = 20, statInterpolation = { 1, 1, }, }, + [33] = { 91, 91, cooldown = 2, levelRequirement = 93, manaCost = 21, statInterpolation = { 1, 1, }, }, + [34] = { 93, 93, cooldown = 2, levelRequirement = 94, manaCost = 21, statInterpolation = { 1, 1, }, }, + [35] = { 94, 94, cooldown = 2, levelRequirement = 95, manaCost = 21, statInterpolation = { 1, 1, }, }, + [36] = { 96, 96, cooldown = 2, levelRequirement = 96, manaCost = 21, statInterpolation = { 1, 1, }, }, + [37] = { 97, 97, cooldown = 2, levelRequirement = 97, manaCost = 21, statInterpolation = { 1, 1, }, }, + [38] = { 99, 99, cooldown = 2, levelRequirement = 98, manaCost = 22, statInterpolation = { 1, 1, }, }, + [39] = { 100, 100, cooldown = 2, levelRequirement = 99, manaCost = 22, statInterpolation = { 1, 1, }, }, + [40] = { 102, 102, cooldown = 2, levelRequirement = 100, manaCost = 22, statInterpolation = { 1, 1, }, }, }, } skills["Desecrate"] = { @@ -2469,7 +2474,7 @@ skills["EtherealKnives"] = { baseEffectiveness = 2.184700012207, incrementalEffectiveness = 0.037399999797344, description = "Fires an arc of knives in front of the caster which deals physical damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.PhysicalSkill] = true, [SkillType.Duration] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.6, baseFlags = { @@ -2486,49 +2491,53 @@ skills["EtherealKnives"] = { "spell_maximum_base_physical_damage", "number_of_additional_projectiles", "base_projectile_speed_+%", + "maximum_number_of_blades_left_in_ground", + "ethereal_knives_blade_left_in_ground_for_every_X_projectiles", + "active_skill_projectile_speed_+%_variation_final", + "blades_left_in_ground_+%_final_if_not_hand_cast", "base_is_projectile", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 9, 0, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 1, manaCost = 5, statInterpolation = { 3, 3, 1, 1, }, }, - [2] = { 0.89999997615814, 1.2000000476837, 9, 1, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 2, manaCost = 5, statInterpolation = { 3, 3, 1, 1, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 9, 2, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 4, manaCost = 5, statInterpolation = { 3, 3, 1, 1, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 9, 3, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 7, manaCost = 6, statInterpolation = { 3, 3, 1, 1, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 9, 4, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 11, manaCost = 7, statInterpolation = { 3, 3, 1, 1, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 9, 5, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 16, manaCost = 8, statInterpolation = { 3, 3, 1, 1, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 9, 6, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 20, manaCost = 9, statInterpolation = { 3, 3, 1, 1, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 9, 7, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 24, manaCost = 10, statInterpolation = { 3, 3, 1, 1, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 9, 8, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 28, manaCost = 11, statInterpolation = { 3, 3, 1, 1, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 9, 9, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 32, manaCost = 11, statInterpolation = { 3, 3, 1, 1, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 9, 10, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 36, manaCost = 12, statInterpolation = { 3, 3, 1, 1, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 9, 11, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 40, manaCost = 13, statInterpolation = { 3, 3, 1, 1, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 9, 12, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 44, manaCost = 14, statInterpolation = { 3, 3, 1, 1, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 9, 13, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 48, manaCost = 15, statInterpolation = { 3, 3, 1, 1, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 9, 14, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 52, manaCost = 16, statInterpolation = { 3, 3, 1, 1, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 9, 15, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 56, manaCost = 17, statInterpolation = { 3, 3, 1, 1, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 9, 16, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 60, manaCost = 18, statInterpolation = { 3, 3, 1, 1, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 9, 17, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 64, manaCost = 18, statInterpolation = { 3, 3, 1, 1, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 9, 18, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 67, manaCost = 19, statInterpolation = { 3, 3, 1, 1, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 9, 19, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 70, manaCost = 20, statInterpolation = { 3, 3, 1, 1, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 9, 20, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 72, manaCost = 20, statInterpolation = { 3, 3, 1, 1, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 9, 21, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 74, manaCost = 21, statInterpolation = { 3, 3, 1, 1, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 9, 22, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 76, manaCost = 21, statInterpolation = { 3, 3, 1, 1, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 9, 23, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 78, manaCost = 21, statInterpolation = { 3, 3, 1, 1, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 9, 24, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 80, manaCost = 22, statInterpolation = { 3, 3, 1, 1, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 9, 25, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 82, manaCost = 22, statInterpolation = { 3, 3, 1, 1, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 9, 26, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 84, manaCost = 23, statInterpolation = { 3, 3, 1, 1, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 9, 27, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 86, manaCost = 23, statInterpolation = { 3, 3, 1, 1, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 9, 28, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 88, manaCost = 24, statInterpolation = { 3, 3, 1, 1, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 9, 29, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 90, manaCost = 24, statInterpolation = { 3, 3, 1, 1, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 9, 29, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 91, manaCost = 24, statInterpolation = { 3, 3, 1, 1, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 9, 30, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 92, manaCost = 25, statInterpolation = { 3, 3, 1, 1, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 9, 30, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 93, manaCost = 25, statInterpolation = { 3, 3, 1, 1, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 9, 31, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 94, manaCost = 25, statInterpolation = { 3, 3, 1, 1, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 9, 31, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 95, manaCost = 25, statInterpolation = { 3, 3, 1, 1, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 9, 32, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 96, manaCost = 25, statInterpolation = { 3, 3, 1, 1, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 9, 32, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 97, manaCost = 26, statInterpolation = { 3, 3, 1, 1, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 9, 33, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 98, manaCost = 26, statInterpolation = { 3, 3, 1, 1, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 9, 33, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 99, manaCost = 26, statInterpolation = { 3, 3, 1, 1, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 9, 34, damageEffectiveness = 1.2, critChance = 6, levelRequirement = 100, manaCost = 26, statInterpolation = { 3, 3, 1, 1, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 9, 0, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 5, damageEffectiveness = 1.2, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [2] = { 0.89999997615814, 1.2000000476837, 9, 1, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 5, damageEffectiveness = 1.2, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 9, 2, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 5, damageEffectiveness = 1.2, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 9, 3, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 6, damageEffectiveness = 1.2, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 9, 4, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 7, damageEffectiveness = 1.2, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 9, 5, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 8, damageEffectiveness = 1.2, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 9, 6, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 9, damageEffectiveness = 1.2, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 9, 7, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 10, damageEffectiveness = 1.2, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 9, 8, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 11, damageEffectiveness = 1.2, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 9, 9, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 11, damageEffectiveness = 1.2, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 9, 10, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 12, damageEffectiveness = 1.2, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 9, 11, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 13, damageEffectiveness = 1.2, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 9, 12, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 14, damageEffectiveness = 1.2, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 9, 13, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 15, damageEffectiveness = 1.2, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 9, 14, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 16, damageEffectiveness = 1.2, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 9, 15, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 17, damageEffectiveness = 1.2, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 9, 16, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 18, damageEffectiveness = 1.2, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 9, 17, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 18, damageEffectiveness = 1.2, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 9, 18, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 19, damageEffectiveness = 1.2, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 9, 19, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 20, damageEffectiveness = 1.2, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 9, 20, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 20, damageEffectiveness = 1.2, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 9, 21, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 21, damageEffectiveness = 1.2, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 9, 22, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 21, damageEffectiveness = 1.2, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 9, 23, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 21, damageEffectiveness = 1.2, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 9, 24, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 22, damageEffectiveness = 1.2, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 9, 25, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 22, damageEffectiveness = 1.2, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 9, 26, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 23, damageEffectiveness = 1.2, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 9, 27, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 23, damageEffectiveness = 1.2, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 9, 28, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 24, damageEffectiveness = 1.2, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 9, 29, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 24, damageEffectiveness = 1.2, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 9, 29, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 24, damageEffectiveness = 1.2, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 9, 30, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 25, damageEffectiveness = 1.2, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 9, 30, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 25, damageEffectiveness = 1.2, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 9, 31, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 25, damageEffectiveness = 1.2, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 9, 31, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 25, damageEffectiveness = 1.2, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 9, 32, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 25, damageEffectiveness = 1.2, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 9, 32, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 26, damageEffectiveness = 1.2, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 9, 33, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 26, damageEffectiveness = 1.2, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 9, 33, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 26, damageEffectiveness = 1.2, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 9, 34, 40, 3, 50, -50, critChance = 6, duration = 6, manaCost = 26, damageEffectiveness = 1.2, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, 1, 1, 1, 1, }, }, }, } skills["ExplosiveArrow"] = { @@ -2536,7 +2545,7 @@ skills["ExplosiveArrow"] = { color = 2, baseEffectiveness = 1.4859000444412, incrementalEffectiveness = 0.040300000458956, - description = "Fires an arrow which will stick into an enemy or wall, and then explode after a duration, dealing area damage around it. If an enemy has multiple Explosive Arrows stuck in them, the first one to explode will consume the others, adding their damage to its explosion.", + description = "Fires an arrow which will stick into an enemy or wall, and then explode, dealing area damage around it, either after a duration or when the maximum number of arrows stuck to that target is reached. If an enemy has multiple Explosive Arrows stuck in them, the first one to explode will consume the others, adding their damage to its explosion.", skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, }, weaponTypes = { ["Bow"] = true, @@ -2549,7 +2558,11 @@ skills["ExplosiveArrow"] = { area = true, }, { - name = "Explosion (5 fuses)", + name = "Explosion (10 fuses)", + area = true, + }, + { + name = "Explosion (20 fuses)", area = true, }, { @@ -2559,16 +2572,16 @@ skills["ExplosiveArrow"] = { }, statMap = { ["explosive_arrow_explosion_minimum_added_fire_damage"] = { - mod("FireMin", "BASE", nil, 0, 0, { type = "SkillPart", skillPartList = { 1, 2 } }), + mod("FireMin", "BASE", nil, 0, 0, { type = "SkillPart", skillPartList = { 1, 2, 3 } }), }, ["explosive_arrow_explosion_maximum_added_fire_damage"] = { - mod("FireMax", "BASE", nil, 0, 0, { type = "SkillPart", skillPartList = { 1, 2 } }), + mod("FireMax", "BASE", nil, 0, 0, { type = "SkillPart", skillPartList = { 1, 2, 3 } }), }, ["fuse_arrow_explosion_radius_+_per_fuse_arrow_orb"] = { skill("radiusExtra", nil, { type = "Multiplier", var = "ExplosiveArrowFuse" }), }, - ["explosive_arrow_ignite_damage_+%_final_per_stack"] = { - mod("Damage", "MORE", nil, 0, KeywordFlag.Ignite, { type = "Multiplier", var = "ExplosiveArrowFuse" }), + ["explosive_arrow_hit_and_ailment_damage_+%_final_per_stack"] = { + mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "Multiplier", var = "ExplosiveArrowFuse" }), }, }, baseFlags = { @@ -2579,10 +2592,11 @@ skills["ExplosiveArrow"] = { }, baseMods = { skill("radius", 15), - skill("showAverage", true, { type = "SkillPart", skillPartList = { 1, 2 } }), - mod("Damage", "MORE", 100, 0, 0, { type = "SkillPart", skillPartList = { 1, 2 } }, { type = "Multiplier", var = "ExplosiveArrowFuse", base = -100 }), + skill("showAverage", true, { type = "SkillPart", skillPartList = { 1, 2, 3 } }), + mod("Damage", "MORE", 100, 0, 0, { type = "SkillPart", skillPartList = { 1, 2, 3 } }, { type = "Multiplier", var = "ExplosiveArrowFuse", base = -100 }), mod("Multiplier:ExplosiveArrowFuse", "BASE", 1, 0, 0, { type = "SkillPart", skillPart = 1 }), - mod("Multiplier:ExplosiveArrowFuse", "BASE", 5, 0, 0, { type = "SkillPart", skillPart = 2 }), + mod("Multiplier:ExplosiveArrowFuse", "BASE", 10, 0, 0, { type = "SkillPart", skillPart = 2 }), + mod("Multiplier:ExplosiveArrowFuse", "BASE", 20, 0, 0, { type = "SkillPart", skillPart = 3 }), }, qualityStats = { { "base_chance_to_ignite_%", 1 }, @@ -2594,51 +2608,52 @@ skills["ExplosiveArrow"] = { "explosive_arrow_explosion_maximum_added_fire_damage", "explosive_arrow_explosion_base_damage_+permyriad", "explosive_arrow_maximum_bonus_explosion_radius", - "explosive_arrow_ignite_damage_+%_final_per_stack", + "explosive_arrow_hit_and_ailment_damage_+%_final_per_stack", + "explosive_arrow_stack_limit", "skill_can_fire_arrows", "base_is_projectile", }, levels = { - [1] = { 2, 0.80000001192093, 1.2000000476837, -5000, 10, 3, levelRequirement = 28, duration = 1, manaCost = 8, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [2] = { 2, 0.80000001192093, 1.2000000476837, -5000, 10, 3, levelRequirement = 31, duration = 1, manaCost = 8, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [3] = { 2, 0.80000001192093, 1.2000000476837, -5000, 11, 3, levelRequirement = 34, duration = 1, manaCost = 8, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [4] = { 2, 0.80000001192093, 1.2000000476837, -5000, 11, 3, levelRequirement = 37, duration = 1, manaCost = 8, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [5] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, levelRequirement = 40, duration = 1, manaCost = 9, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [6] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, levelRequirement = 42, duration = 1, manaCost = 9, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [7] = { 2, 0.80000001192093, 1.2000000476837, -5000, 13, 3, levelRequirement = 44, duration = 1, manaCost = 9, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [8] = { 2, 0.80000001192093, 1.2000000476837, -5000, 13, 3, levelRequirement = 46, duration = 1, manaCost = 9, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [9] = { 2, 0.80000001192093, 1.2000000476837, -5000, 14, 3, levelRequirement = 48, duration = 1, manaCost = 9, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [10] = { 2, 0.80000001192093, 1.2000000476837, -5000, 14, 3, levelRequirement = 50, duration = 1, manaCost = 9, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [11] = { 2, 0.80000001192093, 1.2000000476837, -5000, 15, 3, levelRequirement = 52, duration = 1, manaCost = 9, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [12] = { 2, 0.80000001192093, 1.2000000476837, -5000, 15, 3, levelRequirement = 54, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [13] = { 2, 0.80000001192093, 1.2000000476837, -5000, 16, 3, levelRequirement = 56, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [14] = { 2, 0.80000001192093, 1.2000000476837, -5000, 16, 3, levelRequirement = 58, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [15] = { 2, 0.80000001192093, 1.2000000476837, -5000, 17, 3, levelRequirement = 60, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [16] = { 2, 0.80000001192093, 1.2000000476837, -5000, 17, 3, levelRequirement = 62, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [17] = { 2, 0.80000001192093, 1.2000000476837, -5000, 18, 3, levelRequirement = 64, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [18] = { 2, 0.80000001192093, 1.2000000476837, -5000, 18, 3, levelRequirement = 66, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [19] = { 2, 0.80000001192093, 1.2000000476837, -5000, 19, 3, levelRequirement = 68, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [20] = { 2, 0.80000001192093, 1.2000000476837, -5000, 19, 3, levelRequirement = 70, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [21] = { 2, 0.80000001192093, 1.2000000476837, -5000, 20, 3, levelRequirement = 72, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [22] = { 2, 0.80000001192093, 1.2000000476837, -5000, 20, 3, levelRequirement = 74, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [23] = { 2, 0.80000001192093, 1.2000000476837, -5000, 21, 3, levelRequirement = 76, duration = 1, manaCost = 11, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [24] = { 2, 0.80000001192093, 1.2000000476837, -5000, 21, 3, levelRequirement = 78, duration = 1, manaCost = 11, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [25] = { 2, 0.80000001192093, 1.2000000476837, -5000, 22, 3, levelRequirement = 80, duration = 1, manaCost = 11, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [26] = { 2, 0.80000001192093, 1.2000000476837, -5000, 22, 3, levelRequirement = 82, duration = 1, manaCost = 11, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [27] = { 2, 0.80000001192093, 1.2000000476837, -5000, 23, 3, levelRequirement = 84, duration = 1, manaCost = 11, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [28] = { 2, 0.80000001192093, 1.2000000476837, -5000, 23, 3, levelRequirement = 86, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [29] = { 2, 0.80000001192093, 1.2000000476837, -5000, 24, 3, levelRequirement = 88, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [30] = { 2, 0.80000001192093, 1.2000000476837, -5000, 24, 3, levelRequirement = 90, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [31] = { 2, 0.80000001192093, 1.2000000476837, -5000, 25, 3, levelRequirement = 91, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [32] = { 2, 0.80000001192093, 1.2000000476837, -5000, 25, 3, levelRequirement = 92, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [33] = { 2, 0.80000001192093, 1.2000000476837, -5000, 26, 3, levelRequirement = 93, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [34] = { 2, 0.80000001192093, 1.2000000476837, -5000, 26, 3, levelRequirement = 94, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [35] = { 2, 0.80000001192093, 1.2000000476837, -5000, 27, 3, levelRequirement = 95, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [36] = { 2, 0.80000001192093, 1.2000000476837, -5000, 27, 3, levelRequirement = 96, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [37] = { 2, 0.80000001192093, 1.2000000476837, -5000, 28, 3, levelRequirement = 97, duration = 1, manaCost = 13, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [38] = { 2, 0.80000001192093, 1.2000000476837, -5000, 28, 3, levelRequirement = 98, duration = 1, manaCost = 13, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [39] = { 2, 0.80000001192093, 1.2000000476837, -5000, 29, 3, levelRequirement = 99, duration = 1, manaCost = 13, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, - [40] = { 2, 0.80000001192093, 1.2000000476837, -5000, 29, 3, levelRequirement = 100, duration = 1, manaCost = 13, statInterpolation = { 1, 3, 3, 1, 1, 1, }, }, + [1] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 28, duration = 1, manaCost = 8, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [2] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 31, duration = 1, manaCost = 8, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [3] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 34, duration = 1, manaCost = 8, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [4] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 37, duration = 1, manaCost = 8, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [5] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 40, duration = 1, manaCost = 9, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [6] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 42, duration = 1, manaCost = 9, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [7] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 44, duration = 1, manaCost = 9, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [8] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 46, duration = 1, manaCost = 9, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [9] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 48, duration = 1, manaCost = 9, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [10] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 50, duration = 1, manaCost = 9, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [11] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 52, duration = 1, manaCost = 9, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [12] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 54, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [13] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 56, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [14] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 58, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [15] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 60, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [16] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 62, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [17] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 64, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [18] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 66, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [19] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 68, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [20] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 70, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [21] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 72, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [22] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 74, duration = 1, manaCost = 10, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [23] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 76, duration = 1, manaCost = 11, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [24] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 78, duration = 1, manaCost = 11, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [25] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 80, duration = 1, manaCost = 11, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [26] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 82, duration = 1, manaCost = 11, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [27] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 84, duration = 1, manaCost = 11, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [28] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 86, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [29] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 88, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [30] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 90, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [31] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 91, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [32] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 92, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [33] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 93, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [34] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 94, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [35] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 95, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [36] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 96, duration = 1, manaCost = 12, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [37] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 97, duration = 1, manaCost = 13, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [38] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 98, duration = 1, manaCost = 13, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [39] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 99, duration = 1, manaCost = 13, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, + [40] = { 2, 0.80000001192093, 1.2000000476837, -5000, 12, 3, 20, levelRequirement = 100, duration = 1, manaCost = 13, statInterpolation = { 1, 3, 3, 1, 1, 1, 1, }, }, }, } skills["ShrapnelTrap"] = { @@ -2801,7 +2816,7 @@ skills["FlamethrowerTrap"] = { baseEffectiveness = 0.10270000249147, incrementalEffectiveness = 0.058899998664856, description = "Throws a trap that releases a number of flames in different directions around it when triggered. The flames last for a duration, rotating around the trap and repeatedly dealing damage. Burning enemies are dealt more damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Hit] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Trap] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Hit] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Trap] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, statMap = { @@ -2880,7 +2895,7 @@ skills["FlickerStrike"] = { name = "Flicker Strike", color = 2, description = "Teleports the character to a nearby monster and attacks with a melee weapon. If no specific monster is targeted, one is picked at random. Grants a buff that increases movement speed for a duration. The cooldown can be bypassed by expending a Frenzy Charge.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.MovementSkill] = true, [SkillType.Duration] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.MovementSkill] = true, [SkillType.Duration] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -3234,7 +3249,7 @@ skills["Grace"] = { name = "Grace", color = 2, description = "Casts an aura that grants evasion to you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -3305,7 +3320,7 @@ skills["VaalGrace"] = { name = "Vaal Grace", color = 2, description = "Casts a temporary aura that grants you and your allies the ability to dodge attacks and spells.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, [SkillType.Instant] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -3384,7 +3399,7 @@ skills["Haste"] = { name = "Haste", color = 2, description = "Casts an aura that increases the movement speed, attack speed and cast speed of you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -3463,7 +3478,7 @@ skills["VaalHaste"] = { name = "Vaal Haste", color = 2, description = "Casts a temporary aura that increases the movement speed, attack speed and cast speed of you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, [SkillType.Instant] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -3548,7 +3563,7 @@ skills["Hatred"] = { baseEffectiveness = 1.5, incrementalEffectiveness = 0.025000000372529, description = "Casts an aura that grants extra cold damage based on physical damage to you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.ColdSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.ColdSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -3625,7 +3640,7 @@ skills["HeraldOfAgony"] = { baseEffectiveness = 0.10999999940395, incrementalEffectiveness = 0.044700000435114, description = "Grants a buff giving more poison damage and a chance to inflict poison. When you poison an enemy while you have this buff, you gain Virulence, and summon an Agony Crawler minion that uses projectile and area attacks. You will lose Virulence over time, at a rate which increases the more Virulence you have. The minion will die when you have no Virulence.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.Herald] = true, [SkillType.Minion] = true, [SkillType.Instant] = true, [SkillType.ChaosSkill] = true, [SkillType.PhysicalSkill] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.Herald] = true, [SkillType.Minion] = true, [SkillType.Instant] = true, [SkillType.ChaosSkill] = true, [SkillType.PhysicalSkill] = true, [SkillType.CreatesMinion] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Hit] = true, [SkillType.Attack] = true, [SkillType.ChaosSkill] = true, [SkillType.Projectile] = true, [SkillType.ProjectileAttack] = true, }, statDescriptionScope = "minion_skill_stat_descriptions", castTime = 0, @@ -3669,50 +3684,51 @@ skills["HeraldOfAgony"] = { "scorpion_minion_minimum_added_physical_damage", "scorpion_minion_maximum_added_physical_damage", "base_number_of_herald_scorpions_allowed", + "maximum_virulence_stacks", "herald_of_agony_add_stack_on_poison", "minions_cannot_taunt_enemies", }, levels = { - [1] = { 20, 10, 6, 2, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 16, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [2] = { 20, 10, 6, 2, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 20, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [3] = { 20, 10, 6, 2, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 24, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [4] = { 20, 10, 7, 2, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 28, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [5] = { 20, 10, 7, 2, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 31, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [6] = { 20, 10, 7, 2, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 34, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [7] = { 20, 10, 8, 2, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 37, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [8] = { 20, 10, 8, 2, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 40, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [9] = { 20, 10, 8, 2, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 43, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [10] = { 20, 10, 9, 2, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 46, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [11] = { 20, 10, 9, 3, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 49, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [12] = { 20, 10, 9, 3, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 52, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [13] = { 20, 10, 10, 3, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 55, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [14] = { 20, 10, 10, 3, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 58, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [15] = { 20, 10, 10, 3, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 60, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [16] = { 20, 10, 11, 3, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 62, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [17] = { 20, 10, 11, 3, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 64, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [18] = { 20, 10, 11, 3, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 66, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [19] = { 20, 10, 12, 3, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 68, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [20] = { 20, 10, 12, 3, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 70, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [21] = { 20, 10, 12, 4, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 72, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [22] = { 20, 10, 13, 4, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 74, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [23] = { 20, 10, 13, 4, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 76, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [24] = { 20, 10, 13, 4, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 78, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [25] = { 20, 10, 14, 4, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 80, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [26] = { 20, 10, 14, 4, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 82, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [27] = { 20, 10, 14, 4, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 84, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [28] = { 20, 10, 15, 4, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 86, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [29] = { 20, 10, 15, 4, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 88, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [30] = { 20, 10, 15, 4, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 90, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [31] = { 20, 10, 16, 5, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 91, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [32] = { 20, 10, 16, 5, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 92, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [33] = { 20, 10, 16, 5, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 93, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [34] = { 20, 10, 17, 5, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 94, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [35] = { 20, 10, 17, 5, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 95, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [36] = { 20, 10, 17, 5, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 96, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [37] = { 20, 10, 18, 5, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 97, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [38] = { 20, 10, 18, 5, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 98, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [39] = { 20, 10, 18, 5, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 99, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, - [40] = { 20, 10, 19, 5, 0.69999998807907, 1.2999999523163, 1, cooldown = 1, levelRequirement = 100, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, }, }, + [1] = { 20, 10, 5, 2, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 16, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [2] = { 20, 10, 5, 2, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 20, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [3] = { 20, 10, 5, 2, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 24, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [4] = { 20, 10, 6, 2, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 28, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [5] = { 20, 10, 6, 2, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 31, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [6] = { 20, 10, 6, 2, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 34, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [7] = { 20, 10, 6, 2, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 37, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [8] = { 20, 10, 6, 2, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 40, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [9] = { 20, 10, 7, 2, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 43, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [10] = { 20, 10, 7, 2, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 46, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [11] = { 20, 10, 7, 3, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 49, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [12] = { 20, 10, 7, 3, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 52, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [13] = { 20, 10, 8, 3, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 55, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [14] = { 20, 10, 8, 3, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 58, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [15] = { 20, 10, 8, 3, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 60, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [16] = { 20, 10, 8, 3, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 62, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [17] = { 20, 10, 8, 3, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 64, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [18] = { 20, 10, 9, 3, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 66, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [19] = { 20, 10, 9, 3, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 68, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [20] = { 20, 10, 9, 3, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 70, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [21] = { 20, 10, 9, 4, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 72, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [22] = { 20, 10, 9, 4, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 74, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [23] = { 20, 10, 10, 4, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 76, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [24] = { 20, 10, 10, 4, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 78, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [25] = { 20, 10, 10, 4, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 80, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [26] = { 20, 10, 10, 4, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 82, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [27] = { 20, 10, 10, 4, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 84, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [28] = { 20, 10, 11, 4, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 86, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [29] = { 20, 10, 11, 4, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 88, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [30] = { 20, 10, 11, 4, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 90, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [31] = { 20, 10, 11, 5, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 91, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [32] = { 20, 10, 11, 5, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 92, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [33] = { 20, 10, 11, 5, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 93, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [34] = { 20, 10, 12, 5, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 94, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [35] = { 20, 10, 12, 5, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 95, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [36] = { 20, 10, 12, 5, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 96, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [37] = { 20, 10, 12, 5, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 97, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [38] = { 20, 10, 12, 5, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 98, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [39] = { 20, 10, 12, 5, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 99, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, + [40] = { 20, 10, 12, 5, 0.69999998807907, 1.2999999523163, 1, 40, cooldown = 1, levelRequirement = 100, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 3, 3, 1, 1, }, }, }, } skills["HeraldOfIce"] = { @@ -3721,7 +3737,7 @@ skills["HeraldOfIce"] = { baseEffectiveness = 1.3636000156403, incrementalEffectiveness = 0.023000000044703, description = "Channel ice through your hands, adding cold damage to spells and attacks. If you shatter an enemy, they explode and deal AoE cold damage to enemies near them. The AoE cold damage inflicted by this skill is not affected by modifiers to spell damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.ColdSkill] = true, [SkillType.Type27] = true, [SkillType.Herald] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.ColdSkill] = true, [SkillType.Type27] = true, [SkillType.Herald] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "buff_skill_stat_descriptions", castTime = 0, statMap = { @@ -4422,7 +4438,7 @@ skills["MirrorArrow"] = { name = "Mirror Arrow", color = 2, description = "Fires an arrow at the target destination. When the arrow lands, a clone is summoned. The clone is a minion that uses your bow and quiver.", - skillTypes = { [SkillType.ProjectileDamage] = true, [SkillType.Attack] = true, [SkillType.Minion] = true, [SkillType.ProjectileAttack] = true, [SkillType.CreateMinion] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.MovementSkill] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.TravelSkill] = true, }, + skillTypes = { [SkillType.ProjectileDamage] = true, [SkillType.Attack] = true, [SkillType.Minion] = true, [SkillType.ProjectileAttack] = true, [SkillType.CreateMinion] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.MovementSkill] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.TravelSkill] = true, [SkillType.Type90] = true, [SkillType.Type89] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanVolley] = true, }, weaponTypes = { ["Bow"] = true, @@ -4580,7 +4596,7 @@ skills["NewPhaseRun"] = { name = "Phase Run", color = 2, description = "Gain a buff that makes you faster, harder to detect, and grants Phasing, letting you pass through enemies. Performing any skill replaces this buff with one that boosts melee physical damage of skills you use yourself (it will not apply to your melee skills used by totems). Consumes Frenzy Charges to increase duration.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.MovementSkill] = true, [SkillType.Instant] = true, [SkillType.PhysicalSkill] = true, [SkillType.TravelSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.MovementSkill] = true, [SkillType.Instant] = true, [SkillType.PhysicalSkill] = true, [SkillType.TravelSkill] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -4608,7 +4624,6 @@ skills["NewPhaseRun"] = { "base_secondary_skill_effect_duration", "skill_effect_duration_+%_per_removable_frenzy_charge", "phase_through_objects", - "instant_skill_is_added_to_held_skills_list", "base_deal_no_damage", }, levels = { @@ -4660,7 +4675,7 @@ skills["CorrosiveShroud"] = { baseEffectiveness = 31.920000076294, incrementalEffectiveness = 0.10670000314713, description = "Gain an Incubating buff, adding to its Plague Value as you inflict poisons. Use the skill again to begin Infecting, dealing chaos damage over time to nearby enemies until the Plague Value is depleted. Your damage modifiers don't apply to this skill's damage. Using the skill again alternates between Incubating and Infecting.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ChaosSkill] = true, [SkillType.Area] = true, [SkillType.Instant] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ChaosSkill] = true, [SkillType.Area] = true, [SkillType.Instant] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, baseFlags = { @@ -4728,7 +4743,7 @@ skills["PoachersMark"] = { name = "Poacher's Mark", color = 2, description = "Curses all targets in an area, making them less evasive. Hitting the cursed targets will grant life and mana, and killing them will result in more flask charges and a chance to gain a frenzy charge.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -4812,7 +4827,7 @@ skills["AccuracyAndCritsAura"] = { name = "Precision", color = 2, description = "Casts an aura that grants accuracy and critical strike chance to you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -4841,53 +4856,53 @@ skills["AccuracyAndCritsAura"] = { "base_deal_no_damage", }, levels = { - [1] = { 93, 40, 0, cooldown = 1.2, levelRequirement = 10, manaCost = 22, statInterpolation = { 1, 1, 1, }, }, - [2] = { 128, 41, 1, cooldown = 1.2, levelRequirement = 13, manaCost = 32, statInterpolation = { 1, 1, 1, }, }, - [3] = { 162, 42, 2, cooldown = 1.2, levelRequirement = 17, manaCost = 40, statInterpolation = { 1, 1, 1, }, }, - [4] = { 193, 43, 3, cooldown = 1.2, levelRequirement = 21, manaCost = 50, statInterpolation = { 1, 1, 1, }, }, - [5] = { 223, 44, 4, cooldown = 1.2, levelRequirement = 25, manaCost = 59, statInterpolation = { 1, 1, 1, }, }, - [6] = { 276, 45, 5, cooldown = 1.2, levelRequirement = 29, manaCost = 68, statInterpolation = { 1, 1, 1, }, }, - [7] = { 305, 46, 6, cooldown = 1.2, levelRequirement = 33, manaCost = 76, statInterpolation = { 1, 1, 1, }, }, - [8] = { 332, 47, 7, cooldown = 1.2, levelRequirement = 36, manaCost = 86, statInterpolation = { 1, 1, 1, }, }, - [9] = { 359, 48, 8, cooldown = 1.2, levelRequirement = 39, manaCost = 94, statInterpolation = { 1, 1, 1, }, }, - [10] = { 385, 49, 9, cooldown = 1.2, levelRequirement = 42, manaCost = 102, statInterpolation = { 1, 1, 1, }, }, - [11] = { 444, 50, 10, cooldown = 1.2, levelRequirement = 45, manaCost = 110, statInterpolation = { 1, 1, 1, }, }, - [12] = { 469, 51, 11, cooldown = 1.2, levelRequirement = 48, manaCost = 118, statInterpolation = { 1, 1, 1, }, }, - [13] = { 493, 52, 12, cooldown = 1.2, levelRequirement = 51, manaCost = 126, statInterpolation = { 1, 1, 1, }, }, - [14] = { 516, 53, 13, cooldown = 1.2, levelRequirement = 54, manaCost = 135, statInterpolation = { 1, 1, 1, }, }, - [15] = { 539, 54, 14, cooldown = 1.2, levelRequirement = 57, manaCost = 142, statInterpolation = { 1, 1, 1, }, }, - [16] = { 606, 55, 15, cooldown = 1.2, levelRequirement = 60, manaCost = 151, statInterpolation = { 1, 1, 1, }, }, - [17] = { 630, 56, 16, cooldown = 1.2, levelRequirement = 63, manaCost = 159, statInterpolation = { 1, 1, 1, }, }, - [18] = { 653, 57, 17, cooldown = 1.2, levelRequirement = 66, manaCost = 167, statInterpolation = { 1, 1, 1, }, }, - [19] = { 677, 58, 18, cooldown = 1.2, levelRequirement = 68, manaCost = 176, statInterpolation = { 1, 1, 1, }, }, - [20] = { 701, 59, 19, cooldown = 1.2, levelRequirement = 70, manaCost = 186, statInterpolation = { 1, 1, 1, }, }, + [1] = { 93, 20, 0, cooldown = 1.2, levelRequirement = 10, manaCost = 22, statInterpolation = { 1, 1, 1, }, }, + [2] = { 128, 22, 1, cooldown = 1.2, levelRequirement = 13, manaCost = 32, statInterpolation = { 1, 1, 1, }, }, + [3] = { 162, 24, 2, cooldown = 1.2, levelRequirement = 17, manaCost = 40, statInterpolation = { 1, 1, 1, }, }, + [4] = { 193, 26, 3, cooldown = 1.2, levelRequirement = 21, manaCost = 50, statInterpolation = { 1, 1, 1, }, }, + [5] = { 223, 28, 4, cooldown = 1.2, levelRequirement = 25, manaCost = 59, statInterpolation = { 1, 1, 1, }, }, + [6] = { 276, 30, 5, cooldown = 1.2, levelRequirement = 29, manaCost = 68, statInterpolation = { 1, 1, 1, }, }, + [7] = { 305, 32, 6, cooldown = 1.2, levelRequirement = 33, manaCost = 76, statInterpolation = { 1, 1, 1, }, }, + [8] = { 332, 34, 7, cooldown = 1.2, levelRequirement = 36, manaCost = 86, statInterpolation = { 1, 1, 1, }, }, + [9] = { 359, 36, 8, cooldown = 1.2, levelRequirement = 39, manaCost = 94, statInterpolation = { 1, 1, 1, }, }, + [10] = { 385, 38, 9, cooldown = 1.2, levelRequirement = 42, manaCost = 102, statInterpolation = { 1, 1, 1, }, }, + [11] = { 444, 40, 10, cooldown = 1.2, levelRequirement = 45, manaCost = 110, statInterpolation = { 1, 1, 1, }, }, + [12] = { 469, 42, 11, cooldown = 1.2, levelRequirement = 48, manaCost = 118, statInterpolation = { 1, 1, 1, }, }, + [13] = { 493, 44, 12, cooldown = 1.2, levelRequirement = 51, manaCost = 126, statInterpolation = { 1, 1, 1, }, }, + [14] = { 516, 46, 13, cooldown = 1.2, levelRequirement = 54, manaCost = 135, statInterpolation = { 1, 1, 1, }, }, + [15] = { 539, 48, 14, cooldown = 1.2, levelRequirement = 57, manaCost = 142, statInterpolation = { 1, 1, 1, }, }, + [16] = { 606, 50, 15, cooldown = 1.2, levelRequirement = 60, manaCost = 151, statInterpolation = { 1, 1, 1, }, }, + [17] = { 630, 52, 16, cooldown = 1.2, levelRequirement = 63, manaCost = 159, statInterpolation = { 1, 1, 1, }, }, + [18] = { 653, 54, 17, cooldown = 1.2, levelRequirement = 66, manaCost = 167, statInterpolation = { 1, 1, 1, }, }, + [19] = { 677, 56, 18, cooldown = 1.2, levelRequirement = 68, manaCost = 176, statInterpolation = { 1, 1, 1, }, }, + [20] = { 701, 58, 19, cooldown = 1.2, levelRequirement = 70, manaCost = 186, statInterpolation = { 1, 1, 1, }, }, [21] = { 778, 60, 20, cooldown = 1.2, levelRequirement = 72, manaCost = 195, statInterpolation = { 1, 1, 1, }, }, - [22] = { 804, 61, 21, cooldown = 1.2, levelRequirement = 74, manaCost = 202, statInterpolation = { 1, 1, 1, }, }, - [23] = { 831, 62, 22, cooldown = 1.2, levelRequirement = 76, manaCost = 208, statInterpolation = { 1, 1, 1, }, }, - [24] = { 857, 63, 23, cooldown = 1.2, levelRequirement = 78, manaCost = 215, statInterpolation = { 1, 1, 1, }, }, - [25] = { 883, 64, 24, cooldown = 1.2, levelRequirement = 80, manaCost = 222, statInterpolation = { 1, 1, 1, }, }, - [26] = { 972, 65, 25, cooldown = 1.2, levelRequirement = 82, manaCost = 228, statInterpolation = { 1, 1, 1, }, }, - [27] = { 1000, 66, 26, cooldown = 1.2, levelRequirement = 84, manaCost = 235, statInterpolation = { 1, 1, 1, }, }, - [28] = { 1029, 67, 27, cooldown = 1.2, levelRequirement = 86, manaCost = 242, statInterpolation = { 1, 1, 1, }, }, - [29] = { 1058, 68, 28, cooldown = 1.2, levelRequirement = 88, manaCost = 248, statInterpolation = { 1, 1, 1, }, }, - [30] = { 1087, 69, 29, cooldown = 1.2, levelRequirement = 90, manaCost = 255, statInterpolation = { 1, 1, 1, }, }, - [31] = { 1172, 70, 29, cooldown = 1.2, levelRequirement = 91, manaCost = 270, statInterpolation = { 1, 1, 1, }, }, - [32] = { 1187, 71, 30, cooldown = 1.2, levelRequirement = 92, manaCost = 278, statInterpolation = { 1, 1, 1, }, }, - [33] = { 1203, 72, 30, cooldown = 1.2, levelRequirement = 93, manaCost = 286, statInterpolation = { 1, 1, 1, }, }, - [34] = { 1218, 73, 31, cooldown = 1.2, levelRequirement = 94, manaCost = 294, statInterpolation = { 1, 1, 1, }, }, - [35] = { 1233, 74, 31, cooldown = 1.2, levelRequirement = 95, manaCost = 303, statInterpolation = { 1, 1, 1, }, }, - [36] = { 1324, 75, 32, cooldown = 1.2, levelRequirement = 96, manaCost = 311, statInterpolation = { 1, 1, 1, }, }, - [37] = { 1340, 76, 32, cooldown = 1.2, levelRequirement = 97, manaCost = 319, statInterpolation = { 1, 1, 1, }, }, - [38] = { 1357, 77, 33, cooldown = 1.2, levelRequirement = 98, manaCost = 327, statInterpolation = { 1, 1, 1, }, }, - [39] = { 1374, 78, 33, cooldown = 1.2, levelRequirement = 99, manaCost = 335, statInterpolation = { 1, 1, 1, }, }, - [40] = { 1390, 79, 34, cooldown = 1.2, levelRequirement = 100, manaCost = 343, statInterpolation = { 1, 1, 1, }, }, + [22] = { 804, 62, 21, cooldown = 1.2, levelRequirement = 74, manaCost = 202, statInterpolation = { 1, 1, 1, }, }, + [23] = { 831, 64, 22, cooldown = 1.2, levelRequirement = 76, manaCost = 208, statInterpolation = { 1, 1, 1, }, }, + [24] = { 857, 66, 23, cooldown = 1.2, levelRequirement = 78, manaCost = 215, statInterpolation = { 1, 1, 1, }, }, + [25] = { 883, 68, 24, cooldown = 1.2, levelRequirement = 80, manaCost = 222, statInterpolation = { 1, 1, 1, }, }, + [26] = { 972, 70, 25, cooldown = 1.2, levelRequirement = 82, manaCost = 228, statInterpolation = { 1, 1, 1, }, }, + [27] = { 1000, 72, 26, cooldown = 1.2, levelRequirement = 84, manaCost = 235, statInterpolation = { 1, 1, 1, }, }, + [28] = { 1029, 74, 27, cooldown = 1.2, levelRequirement = 86, manaCost = 242, statInterpolation = { 1, 1, 1, }, }, + [29] = { 1058, 76, 28, cooldown = 1.2, levelRequirement = 88, manaCost = 248, statInterpolation = { 1, 1, 1, }, }, + [30] = { 1087, 78, 29, cooldown = 1.2, levelRequirement = 90, manaCost = 255, statInterpolation = { 1, 1, 1, }, }, + [31] = { 1172, 79, 29, cooldown = 1.2, levelRequirement = 91, manaCost = 270, statInterpolation = { 1, 1, 1, }, }, + [32] = { 1187, 80, 30, cooldown = 1.2, levelRequirement = 92, manaCost = 278, statInterpolation = { 1, 1, 1, }, }, + [33] = { 1203, 81, 30, cooldown = 1.2, levelRequirement = 93, manaCost = 286, statInterpolation = { 1, 1, 1, }, }, + [34] = { 1218, 82, 31, cooldown = 1.2, levelRequirement = 94, manaCost = 294, statInterpolation = { 1, 1, 1, }, }, + [35] = { 1233, 83, 31, cooldown = 1.2, levelRequirement = 95, manaCost = 303, statInterpolation = { 1, 1, 1, }, }, + [36] = { 1324, 84, 32, cooldown = 1.2, levelRequirement = 96, manaCost = 311, statInterpolation = { 1, 1, 1, }, }, + [37] = { 1340, 85, 32, cooldown = 1.2, levelRequirement = 97, manaCost = 319, statInterpolation = { 1, 1, 1, }, }, + [38] = { 1357, 86, 33, cooldown = 1.2, levelRequirement = 98, manaCost = 327, statInterpolation = { 1, 1, 1, }, }, + [39] = { 1374, 87, 33, cooldown = 1.2, levelRequirement = 99, manaCost = 335, statInterpolation = { 1, 1, 1, }, }, + [40] = { 1390, 88, 34, cooldown = 1.2, levelRequirement = 100, manaCost = 343, statInterpolation = { 1, 1, 1, }, }, }, } skills["ProjectileWeakness"] = { name = "Projectile Weakness", color = 2, description = "Curses all targets in an area, making them easier to pierce and to knock back, and increasing the damage they take from projectiles.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -5056,7 +5071,7 @@ skills["ColdResistAura"] = { name = "Purity of Ice", color = 2, description = "Casts an aura that grants cold resistance to you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.ColdSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.ColdSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -5131,7 +5146,7 @@ skills["ColdImpurity"] = { name = "Vaal Impurity of Ice", color = 2, description = "Casts an aura that reduces cold damage taken and provides freeze and chill immunity to you and nearby allies, and makes hits against nearby enemies ignore their cold resistance. ", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, [SkillType.ColdSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, [SkillType.ColdSkill] = true, [SkillType.Instant] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -5211,7 +5226,7 @@ skills["RainOfArrows"] = { name = "Rain of Arrows", color = 2, description = "Fires multiple arrows into the air, to land in sequence after a delay, starting at the targeted location and spreading outwards in all directions. Each arrow deals damage in an area around it. Half of the arrows will land directly on targets if there are targets in their range.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Area] = true, [SkillType.ProjectileDamage] = true, [SkillType.Type73] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Area] = true, [SkillType.ProjectileDamage] = true, [SkillType.Type73] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.Type89] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -5283,7 +5298,7 @@ skills["VaalRainOfArrows"] = { name = "Vaal Rain of Arrows", color = 2, description = "Fires multiple arrows into the air, to land in multiple sequences after a delay, each starting at the targeted location and spreading outwards in all directions. Each arrow deals damage in an area around it. Half of the arrows will land directly on targets if there are targets in their range.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileDamage] = true, [SkillType.Type73] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Vaal] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Area] = true, [SkillType.ProjectileDamage] = true, [SkillType.Type73] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Vaal] = true, [SkillType.Type89] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -5551,7 +5566,7 @@ skills["Riposte"] = { baseEffectiveness = 0.5, incrementalEffectiveness = 0.023299999535084, description = "Perform a deadly counter-attack when you block. Uses both weapons while you're dual wielding.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.PhysicalSkill] = true, [SkillType.Type90] = true, }, weaponTypes = { ["None"] = true, ["One Handed Mace"] = true, @@ -5822,7 +5837,7 @@ skills["PhysCascadeTrap"] = { baseEffectiveness = 1.452299952507, incrementalEffectiveness = 0.040899999439716, description = "Throws a trap which, once triggered, repeatedly releases a number of waves for a duration. Each wave deals damage in a series of small bursts in a line, ending with a larger burst. Modifiers to cast speed affects how frequently it releases waves.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Hit] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Trap] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Hit] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Trap] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -5929,46 +5944,46 @@ skills["ShrapnelBallista"] = { "is_ranged_attack_totem", }, levels = { - [1] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.33, manaCost = 5, damageEffectiveness = 0.33, attackSpeedMultiplier = -50, levelRequirement = 4, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [2] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.333, manaCost = 5, damageEffectiveness = 0.33, attackSpeedMultiplier = -50, levelRequirement = 6, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [3] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.335, manaCost = 6, damageEffectiveness = 0.34, attackSpeedMultiplier = -50, levelRequirement = 9, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [4] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.338, manaCost = 6, damageEffectiveness = 0.34, attackSpeedMultiplier = -50, levelRequirement = 12, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [5] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.341, manaCost = 6, damageEffectiveness = 0.34, attackSpeedMultiplier = -50, levelRequirement = 16, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [6] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.343, manaCost = 7, damageEffectiveness = 0.34, attackSpeedMultiplier = -50, levelRequirement = 20, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [7] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.346, manaCost = 7, damageEffectiveness = 0.35, attackSpeedMultiplier = -50, levelRequirement = 24, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [8] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.348, manaCost = 7, damageEffectiveness = 0.35, attackSpeedMultiplier = -50, levelRequirement = 28, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [9] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.351, manaCost = 8, damageEffectiveness = 0.35, attackSpeedMultiplier = -50, levelRequirement = 32, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [10] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.354, manaCost = 8, damageEffectiveness = 0.35, attackSpeedMultiplier = -50, levelRequirement = 36, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [11] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.356, manaCost = 8, damageEffectiveness = 0.36, attackSpeedMultiplier = -50, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [12] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.359, manaCost = 8, damageEffectiveness = 0.36, attackSpeedMultiplier = -50, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [13] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.362, manaCost = 9, damageEffectiveness = 0.36, attackSpeedMultiplier = -50, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [14] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.364, manaCost = 9, damageEffectiveness = 0.36, attackSpeedMultiplier = -50, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [15] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.367, manaCost = 9, damageEffectiveness = 0.37, attackSpeedMultiplier = -50, levelRequirement = 55, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [16] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.369, manaCost = 10, damageEffectiveness = 0.37, attackSpeedMultiplier = -50, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [17] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.372, manaCost = 10, damageEffectiveness = 0.37, attackSpeedMultiplier = -50, levelRequirement = 61, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [18] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.375, manaCost = 10, damageEffectiveness = 0.37, attackSpeedMultiplier = -50, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [19] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.377, manaCost = 11, damageEffectiveness = 0.38, attackSpeedMultiplier = -50, levelRequirement = 67, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [20] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.38, manaCost = 11, damageEffectiveness = 0.38, attackSpeedMultiplier = -50, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [21] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.383, manaCost = 11, damageEffectiveness = 0.38, attackSpeedMultiplier = -50, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [22] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.385, manaCost = 12, damageEffectiveness = 0.39, attackSpeedMultiplier = -50, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [23] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.388, manaCost = 12, damageEffectiveness = 0.39, attackSpeedMultiplier = -50, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [24] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.391, manaCost = 12, damageEffectiveness = 0.39, attackSpeedMultiplier = -50, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [25] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.393, manaCost = 13, damageEffectiveness = 0.39, attackSpeedMultiplier = -50, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [26] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.396, manaCost = 13, damageEffectiveness = 0.4, attackSpeedMultiplier = -50, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [27] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.398, manaCost = 13, damageEffectiveness = 0.4, attackSpeedMultiplier = -50, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [28] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.401, manaCost = 14, damageEffectiveness = 0.4, attackSpeedMultiplier = -50, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [29] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.404, manaCost = 14, damageEffectiveness = 0.4, attackSpeedMultiplier = -50, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [30] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.406, manaCost = 14, damageEffectiveness = 0.41, attackSpeedMultiplier = -50, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [31] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.408, manaCost = 14, damageEffectiveness = 0.41, attackSpeedMultiplier = -50, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [32] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.409, manaCost = 15, damageEffectiveness = 0.41, attackSpeedMultiplier = -50, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [33] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.41, manaCost = 15, damageEffectiveness = 0.41, attackSpeedMultiplier = -50, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [34] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.412, manaCost = 15, damageEffectiveness = 0.41, attackSpeedMultiplier = -50, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [35] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.413, manaCost = 16, damageEffectiveness = 0.41, attackSpeedMultiplier = -50, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [36] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.414, manaCost = 16, damageEffectiveness = 0.41, attackSpeedMultiplier = -50, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [37] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.416, manaCost = 16, damageEffectiveness = 0.42, attackSpeedMultiplier = -50, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [38] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.417, manaCost = 17, damageEffectiveness = 0.42, attackSpeedMultiplier = -50, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [39] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.418, manaCost = 17, damageEffectiveness = 0.42, attackSpeedMultiplier = -50, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, - [40] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.419, manaCost = 17, damageEffectiveness = 0.42, attackSpeedMultiplier = -50, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [1] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.38, manaCost = 5, damageEffectiveness = 0.38, attackSpeedMultiplier = -50, levelRequirement = 4, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [2] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.383, manaCost = 5, damageEffectiveness = 0.38, attackSpeedMultiplier = -50, levelRequirement = 6, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [3] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.386, manaCost = 6, damageEffectiveness = 0.39, attackSpeedMultiplier = -50, levelRequirement = 9, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [4] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.389, manaCost = 6, damageEffectiveness = 0.39, attackSpeedMultiplier = -50, levelRequirement = 12, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [5] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.393, manaCost = 6, damageEffectiveness = 0.39, attackSpeedMultiplier = -50, levelRequirement = 16, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [6] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.396, manaCost = 7, damageEffectiveness = 0.4, attackSpeedMultiplier = -50, levelRequirement = 20, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [7] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.399, manaCost = 7, damageEffectiveness = 0.4, attackSpeedMultiplier = -50, levelRequirement = 24, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [8] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.402, manaCost = 7, damageEffectiveness = 0.4, attackSpeedMultiplier = -50, levelRequirement = 28, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [9] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.405, manaCost = 8, damageEffectiveness = 0.41, attackSpeedMultiplier = -50, levelRequirement = 32, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [10] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.408, manaCost = 8, damageEffectiveness = 0.41, attackSpeedMultiplier = -50, levelRequirement = 36, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [11] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.412, manaCost = 8, damageEffectiveness = 0.41, attackSpeedMultiplier = -50, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [12] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.415, manaCost = 8, damageEffectiveness = 0.41, attackSpeedMultiplier = -50, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [13] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.418, manaCost = 9, damageEffectiveness = 0.42, attackSpeedMultiplier = -50, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [14] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.421, manaCost = 9, damageEffectiveness = 0.42, attackSpeedMultiplier = -50, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [15] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.424, manaCost = 9, damageEffectiveness = 0.42, attackSpeedMultiplier = -50, levelRequirement = 55, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [16] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.427, manaCost = 10, damageEffectiveness = 0.43, attackSpeedMultiplier = -50, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [17] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.431, manaCost = 10, damageEffectiveness = 0.43, attackSpeedMultiplier = -50, levelRequirement = 61, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [18] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.434, manaCost = 10, damageEffectiveness = 0.43, attackSpeedMultiplier = -50, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [19] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.437, manaCost = 11, damageEffectiveness = 0.44, attackSpeedMultiplier = -50, levelRequirement = 67, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [20] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.44, manaCost = 11, damageEffectiveness = 0.44, attackSpeedMultiplier = -50, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [21] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.443, manaCost = 11, damageEffectiveness = 0.44, attackSpeedMultiplier = -50, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [22] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.446, manaCost = 12, damageEffectiveness = 0.45, attackSpeedMultiplier = -50, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [23] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.449, manaCost = 12, damageEffectiveness = 0.45, attackSpeedMultiplier = -50, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [24] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.453, manaCost = 12, damageEffectiveness = 0.45, attackSpeedMultiplier = -50, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [25] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.456, manaCost = 13, damageEffectiveness = 0.46, attackSpeedMultiplier = -50, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [26] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.459, manaCost = 13, damageEffectiveness = 0.46, attackSpeedMultiplier = -50, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [27] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.462, manaCost = 13, damageEffectiveness = 0.46, attackSpeedMultiplier = -50, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [28] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.465, manaCost = 14, damageEffectiveness = 0.47, attackSpeedMultiplier = -50, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [29] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.468, manaCost = 14, damageEffectiveness = 0.47, attackSpeedMultiplier = -50, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [30] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.472, manaCost = 14, damageEffectiveness = 0.47, attackSpeedMultiplier = -50, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [31] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.473, manaCost = 14, damageEffectiveness = 0.47, attackSpeedMultiplier = -50, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [32] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.475, manaCost = 15, damageEffectiveness = 0.47, attackSpeedMultiplier = -50, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [33] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.476, manaCost = 15, damageEffectiveness = 0.48, attackSpeedMultiplier = -50, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [34] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.478, manaCost = 15, damageEffectiveness = 0.48, attackSpeedMultiplier = -50, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [35] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.479, manaCost = 16, damageEffectiveness = 0.48, attackSpeedMultiplier = -50, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [36] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.481, manaCost = 16, damageEffectiveness = 0.48, attackSpeedMultiplier = -50, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [37] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.483, manaCost = 16, damageEffectiveness = 0.48, attackSpeedMultiplier = -50, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [38] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.484, manaCost = 17, damageEffectiveness = 0.48, attackSpeedMultiplier = -50, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [39] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.486, manaCost = 17, damageEffectiveness = 0.49, attackSpeedMultiplier = -50, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, + [40] = { 40, 8000, 2, 2, 0.80000001192093, 1.2000000476837, baseMultiplier = 0.487, manaCost = 17, damageEffectiveness = 0.49, attackSpeedMultiplier = -50, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 3, 3, }, }, }, } skills["SiegeBallista"] = { @@ -6049,8 +6064,8 @@ skills["SiegeBallista"] = { skills["SmokeMine"] = { name = "Smoke Mine", color = 2, - description = "Throws a mine that will teleport you to it when detonated. It covers both your escape and arrival with a cloud of smoke that blinds enemies, and gives you a temporary buff to movement speed. Shares a cooldown with other Blink skills.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.MovementSkill] = true, [SkillType.Mine] = true, [SkillType.AreaSpell] = true, [SkillType.TravelSkill] = true, [SkillType.ManaCostReserved] = true, [SkillType.BlinkSkill] = true, }, + description = "Throws a mine that will teleport you to it when detonated. It covers both your escape and arrival with a cloud of smoke that blinds enemies, and gives you a temporary buff to movement speed. Shares a cooldown with other Blink skills.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.MovementSkill] = true, [SkillType.Mine] = true, [SkillType.AreaSpell] = true, [SkillType.TravelSkill] = true, [SkillType.ManaCostReserved] = true, [SkillType.BlinkSkill] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, statMap = { @@ -6378,7 +6393,7 @@ skills["RainOfSpores"] = { baseEffectiveness = 1.9615000486374, incrementalEffectiveness = 0.040199998766184, description = "Fire arrows into the air that rain down around the targeted area, dealing damage to enemies they hit and creating spore pods where they land. Each spore pod deals chaos damage over time to nearby enemies and slows their movement speed. The pods last for a duration before bursting, dealing area damage.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Area] = true, [SkillType.ProjectileDamage] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Hit] = true, [SkillType.ChaosSkill] = true, [SkillType.Duration] = true, [SkillType.DamageOverTime] = true, [SkillType.Type73] = true, [SkillType.ChaosSkill] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Area] = true, [SkillType.ProjectileDamage] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Hit] = true, [SkillType.ChaosSkill] = true, [SkillType.Duration] = true, [SkillType.DamageOverTime] = true, [SkillType.Type73] = true, [SkillType.ChaosSkill] = true, [SkillType.Triggerable] = true, [SkillType.Type89] = true, }, weaponTypes = { ["Bow"] = true, }, @@ -6526,7 +6541,7 @@ skills["SummonIceGolem"] = { name = "Summon Ice Golem", color = 2, description = "Summons an Ice Golem that grants you increased Critical Strike Chance and Accuracy. The Ice Golem can use an icy barrage spell and a chilling spinning dash in addition to its melee attack.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.MovementSkill] = true, [SkillType.AttackCanRepeat] = true, [SkillType.ChillingArea] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, @@ -6610,7 +6625,7 @@ skills["TemporalChains"] = { name = "Temporal Chains", color = 2, description = "Curses all targets in an area, Slowing them, and making effects on them expire more slowly.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -6620,8 +6635,8 @@ skills["TemporalChains"] = { ["buff_time_passed_+%_other_than_temporal_chains"] = { mod("BuffExpireFaster", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), }, - ["curse_effect_+%_vs_players"] = { - mod("CurseEffectAgainstPlayer", "INC", nil), + ["curse_effect_+%_final_vs_players"] = { + mod("CurseEffectAgainstPlayer", "MORE", nil), }, ["temporal_chains_action_speed_+%_vs_rare_or_unique_final"] = { mod("TemporalChainsActionSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }, { type = "Condition", var = "RareOrUnique" }), @@ -6645,51 +6660,51 @@ skills["TemporalChains"] = { "active_skill_base_radius_+", "temporal_chains_action_speed_+%_final", "buff_time_passed_+%_other_than_temporal_chains", - "curse_effect_+%_vs_players", + "curse_effect_+%_final_vs_players", "temporal_chains_action_speed_+%_vs_rare_or_unique_final", "base_deal_no_damage", }, levels = { - [1] = { 5000, 0, -20, -40, -40, -10, manaCost = 16, levelRequirement = 24, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [2] = { 5050, 1, -20, -40, -40, -10, manaCost = 17, levelRequirement = 27, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [3] = { 5100, 1, -21, -40, -40, -10, manaCost = 18, levelRequirement = 30, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [4] = { 5150, 1, -21, -40, -40, -10, manaCost = 19, levelRequirement = 33, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [5] = { 5200, 2, -22, -40, -40, -11, manaCost = 21, levelRequirement = 36, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [6] = { 5250, 2, -22, -40, -40, -11, manaCost = 22, levelRequirement = 39, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [7] = { 5300, 2, -23, -40, -40, -11, manaCost = 23, levelRequirement = 42, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [8] = { 5350, 3, -23, -40, -40, -11, manaCost = 24, levelRequirement = 45, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [9] = { 5400, 3, -24, -40, -40, -12, manaCost = 25, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [10] = { 5450, 3, -24, -40, -40, -12, manaCost = 26, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [11] = { 5500, 4, -25, -40, -40, -12, manaCost = 26, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [12] = { 5550, 4, -25, -40, -40, -12, manaCost = 27, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [13] = { 5600, 4, -26, -40, -40, -13, manaCost = 28, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [14] = { 5650, 5, -26, -40, -40, -13, manaCost = 29, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [15] = { 5700, 5, -27, -40, -40, -13, manaCost = 29, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [16] = { 5750, 5, -27, -40, -40, -13, manaCost = 30, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [17] = { 5800, 6, -28, -40, -40, -14, manaCost = 31, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [18] = { 5850, 6, -28, -40, -40, -14, manaCost = 31, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [19] = { 5900, 6, -29, -40, -40, -14, manaCost = 32, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [20] = { 5950, 7, -29, -40, -40, -14, manaCost = 33, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [21] = { 6000, 7, -30, -40, -40, -15, manaCost = 34, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [22] = { 6050, 7, -30, -40, -40, -15, manaCost = 34, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [23] = { 6100, 8, -31, -40, -40, -15, manaCost = 35, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [24] = { 6150, 8, -31, -40, -40, -15, manaCost = 36, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [25] = { 6200, 8, -32, -40, -40, -16, manaCost = 36, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [26] = { 6250, 9, -32, -40, -40, -16, manaCost = 37, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [27] = { 6300, 9, -33, -40, -40, -16, manaCost = 38, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [28] = { 6350, 9, -33, -40, -40, -16, manaCost = 39, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [29] = { 6400, 10, -34, -40, -40, -17, manaCost = 39, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [30] = { 6450, 10, -34, -40, -40, -17, manaCost = 40, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [31] = { 6450, 10, -34, -40, -40, -17, manaCost = 40, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [32] = { 6500, 10, -35, -40, -40, -17, manaCost = 41, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [33] = { 6500, 10, -35, -40, -40, -17, manaCost = 41, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [34] = { 6550, 11, -35, -40, -40, -17, manaCost = 42, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [35] = { 6550, 11, -35, -40, -40, -17, manaCost = 42, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [36] = { 6600, 11, -36, -40, -40, -18, manaCost = 42, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [37] = { 6600, 11, -36, -40, -40, -18, manaCost = 43, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [38] = { 6650, 11, -36, -40, -40, -18, manaCost = 43, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [39] = { 6650, 11, -36, -40, -40, -18, manaCost = 43, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [40] = { 6700, 12, -37, -40, -40, -18, manaCost = 44, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [1] = { 5000, 0, -20, -40, -50, -10, manaCost = 16, levelRequirement = 24, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [2] = { 5050, 1, -20, -40, -50, -10, manaCost = 17, levelRequirement = 27, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [3] = { 5100, 1, -21, -40, -50, -10, manaCost = 18, levelRequirement = 30, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [4] = { 5150, 1, -21, -40, -50, -10, manaCost = 19, levelRequirement = 33, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [5] = { 5200, 2, -22, -40, -50, -11, manaCost = 21, levelRequirement = 36, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [6] = { 5250, 2, -22, -40, -50, -11, manaCost = 22, levelRequirement = 39, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [7] = { 5300, 2, -23, -40, -50, -11, manaCost = 23, levelRequirement = 42, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [8] = { 5350, 3, -23, -40, -50, -11, manaCost = 24, levelRequirement = 45, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [9] = { 5400, 3, -24, -40, -50, -12, manaCost = 25, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [10] = { 5450, 3, -24, -40, -50, -12, manaCost = 26, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [11] = { 5500, 4, -25, -40, -50, -12, manaCost = 26, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [12] = { 5550, 4, -25, -40, -50, -12, manaCost = 27, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [13] = { 5600, 4, -26, -40, -50, -13, manaCost = 28, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [14] = { 5650, 5, -26, -40, -50, -13, manaCost = 29, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [15] = { 5700, 5, -27, -40, -50, -13, manaCost = 29, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [16] = { 5750, 5, -27, -40, -50, -13, manaCost = 30, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [17] = { 5800, 6, -28, -40, -50, -14, manaCost = 31, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [18] = { 5850, 6, -28, -40, -50, -14, manaCost = 31, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [19] = { 5900, 6, -29, -40, -50, -14, manaCost = 32, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [20] = { 5950, 7, -29, -40, -50, -14, manaCost = 33, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [21] = { 6000, 7, -30, -40, -50, -15, manaCost = 34, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [22] = { 6050, 7, -30, -40, -50, -15, manaCost = 34, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [23] = { 6100, 8, -31, -40, -50, -15, manaCost = 35, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [24] = { 6150, 8, -31, -40, -50, -15, manaCost = 36, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [25] = { 6200, 8, -32, -40, -50, -16, manaCost = 36, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [26] = { 6250, 9, -32, -40, -50, -16, manaCost = 37, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [27] = { 6300, 9, -33, -40, -50, -16, manaCost = 38, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [28] = { 6350, 9, -33, -40, -50, -16, manaCost = 39, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [29] = { 6400, 10, -34, -40, -50, -17, manaCost = 39, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [30] = { 6450, 10, -34, -40, -50, -17, manaCost = 40, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [31] = { 6450, 10, -34, -40, -50, -17, manaCost = 40, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [32] = { 6500, 10, -35, -40, -50, -17, manaCost = 41, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [33] = { 6500, 10, -35, -40, -50, -17, manaCost = 41, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [34] = { 6550, 11, -35, -40, -50, -17, manaCost = 42, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [35] = { 6550, 11, -35, -40, -50, -17, manaCost = 42, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [36] = { 6600, 11, -36, -40, -50, -18, manaCost = 42, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [37] = { 6600, 11, -36, -40, -50, -18, manaCost = 43, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [38] = { 6650, 11, -36, -40, -50, -18, manaCost = 43, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [39] = { 6650, 11, -36, -40, -50, -18, manaCost = 43, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [40] = { 6700, 12, -37, -40, -50, -18, manaCost = 44, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, }, } skills["TornadoShot"] = { @@ -7046,50 +7061,51 @@ skills["VolatileDead"] = { "spell_maximum_base_fire_damage", "volatile_dead_base_number_of_corpses_to_consume", "corpse_explosion_monster_life_%", + "volatile_dead_max_cores_allowed", "is_area_damage", "base_skill_show_average_damage_instead_of_dps", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 12, manaCost = 9, statInterpolation = { 3, 3, 1, 1, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 15, manaCost = 10, statInterpolation = { 3, 3, 1, 1, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 19, manaCost = 12, statInterpolation = { 3, 3, 1, 1, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 23, manaCost = 13, statInterpolation = { 3, 3, 1, 1, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 27, manaCost = 14, statInterpolation = { 3, 3, 1, 1, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 31, manaCost = 15, statInterpolation = { 3, 3, 1, 1, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 35, manaCost = 16, statInterpolation = { 3, 3, 1, 1, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 38, manaCost = 17, statInterpolation = { 3, 3, 1, 1, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 41, manaCost = 18, statInterpolation = { 3, 3, 1, 1, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 44, manaCost = 19, statInterpolation = { 3, 3, 1, 1, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 47, manaCost = 20, statInterpolation = { 3, 3, 1, 1, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 50, manaCost = 20, statInterpolation = { 3, 3, 1, 1, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 53, manaCost = 21, statInterpolation = { 3, 3, 1, 1, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 56, manaCost = 22, statInterpolation = { 3, 3, 1, 1, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 59, manaCost = 23, statInterpolation = { 3, 3, 1, 1, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 62, manaCost = 24, statInterpolation = { 3, 3, 1, 1, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 64, manaCost = 25, statInterpolation = { 3, 3, 1, 1, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 66, manaCost = 25, statInterpolation = { 3, 3, 1, 1, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 68, manaCost = 26, statInterpolation = { 3, 3, 1, 1, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 70, manaCost = 26, statInterpolation = { 3, 3, 1, 1, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 72, manaCost = 27, statInterpolation = { 3, 3, 1, 1, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 74, manaCost = 27, statInterpolation = { 3, 3, 1, 1, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 76, manaCost = 28, statInterpolation = { 3, 3, 1, 1, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 78, manaCost = 29, statInterpolation = { 3, 3, 1, 1, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 80, manaCost = 29, statInterpolation = { 3, 3, 1, 1, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 82, manaCost = 30, statInterpolation = { 3, 3, 1, 1, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 84, manaCost = 30, statInterpolation = { 3, 3, 1, 1, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 86, manaCost = 31, statInterpolation = { 3, 3, 1, 1, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 88, manaCost = 32, statInterpolation = { 3, 3, 1, 1, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 90, manaCost = 32, statInterpolation = { 3, 3, 1, 1, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 91, manaCost = 32, statInterpolation = { 3, 3, 1, 1, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 92, manaCost = 33, statInterpolation = { 3, 3, 1, 1, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 93, manaCost = 33, statInterpolation = { 3, 3, 1, 1, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 94, manaCost = 33, statInterpolation = { 3, 3, 1, 1, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 95, manaCost = 34, statInterpolation = { 3, 3, 1, 1, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 96, manaCost = 34, statInterpolation = { 3, 3, 1, 1, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 97, manaCost = 34, statInterpolation = { 3, 3, 1, 1, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 98, manaCost = 34, statInterpolation = { 3, 3, 1, 1, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 99, manaCost = 35, statInterpolation = { 3, 3, 1, 1, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 3, 3, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 100, manaCost = 35, statInterpolation = { 3, 3, 1, 1, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 12, manaCost = 9, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 15, manaCost = 10, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 19, manaCost = 12, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 23, manaCost = 13, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 27, manaCost = 14, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 31, manaCost = 15, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 35, manaCost = 16, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 38, manaCost = 17, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 41, manaCost = 18, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 44, manaCost = 19, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 47, manaCost = 20, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 50, manaCost = 20, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 53, manaCost = 21, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 56, manaCost = 22, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 59, manaCost = 23, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 62, manaCost = 24, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 64, manaCost = 25, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 66, manaCost = 25, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 68, manaCost = 26, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 70, manaCost = 26, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 72, manaCost = 27, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 74, manaCost = 27, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 76, manaCost = 28, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 78, manaCost = 29, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 80, manaCost = 29, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 82, manaCost = 30, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 84, manaCost = 30, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 86, manaCost = 31, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 88, manaCost = 32, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 90, manaCost = 32, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 91, manaCost = 32, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 92, manaCost = 33, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 93, manaCost = 33, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 94, manaCost = 33, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 95, manaCost = 34, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 96, manaCost = 34, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 97, manaCost = 34, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 98, manaCost = 34, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 99, manaCost = 35, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 3, 3, 60, damageEffectiveness = 1.2, critChance = 5, levelRequirement = 100, manaCost = 35, statInterpolation = { 3, 3, 1, 1, 1, }, }, }, } skills["WhirlingBlades"] = { @@ -7298,7 +7314,7 @@ skills["Slither"] = { name = "Withering Step", color = 2, description = "Removes any existing Elusive buff before applying both Elusive and a buff that grants Phasing. While you have this buff, monsters that enter an area around you will be Withered. Using a skill or losing the Elusive buff ends this skill's effects. Shares a cooldown with other Blink skills.", - skillTypes = { [SkillType.TravelSkill] = true, [SkillType.Buff] = true, [SkillType.Instant] = true, [SkillType.Area] = true, [SkillType.ChaosSkill] = true, [SkillType.MovementSkill] = true, [SkillType.BlinkSkill] = true, [SkillType.Spell] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, }, + skillTypes = { [SkillType.TravelSkill] = true, [SkillType.Buff] = true, [SkillType.Instant] = true, [SkillType.Area] = true, [SkillType.ChaosSkill] = true, [SkillType.MovementSkill] = true, [SkillType.BlinkSkill] = true, [SkillType.Spell] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.Type90] = true, }, statDescriptionScope = "buff_skill_stat_descriptions", castTime = 0, baseFlags = { @@ -7316,7 +7332,6 @@ skills["Slither"] = { "elusive_effect_+%", "active_skill_withered_base_duration_ms", "phase_through_objects", - "instant_skill_is_added_to_held_skills_list", "display_this_skill_cooldown_does_not_recover_during_buff", "display_removes_and_grants_elusive_when_used", "base_deal_no_damage", diff --git a/Data/3_0/Skills/act_int.lua b/Data/3_0/Skills/act_int.lua index 4d56c2662..0a6811121 100644 --- a/Data/3_0/Skills/act_int.lua +++ b/Data/3_0/Skills/act_int.lua @@ -168,7 +168,7 @@ skills["ArcticBreath"] = { description = "Fire an icy projectile that bursts on impact or when reaching the targeted area, dealing area damage and creating a chilling area that deals cold damage over time. This area will creep across the ground towards nearby enemies until its duration expires.", skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.ChillingArea] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.7, + castTime = 0.6, baseFlags = { spell = true, area = true, @@ -184,54 +184,54 @@ skills["ArcticBreath"] = { stats = { "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", - "base_is_projectile", - "base_skill_effect_duration", "arctic_breath_maximum_number_of_skulls_allowed", "base_cold_damage_to_deal_per_minute", - "projectile_distance_variance", + "total_projectile_spread_angle_override", + "active_skill_projectile_speed_+%_variation_final", "spell_damage_modifiers_apply_to_skill_dot", + "base_is_projectile", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 64, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 12, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 70.666664431492, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 15, manaCost = 9, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 77.166670298825, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 19, manaCost = 10, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 83.83333870396, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 23, manaCost = 11, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 90.49999916181, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 27, manaCost = 12, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 97.166667566945, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 31, manaCost = 13, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 103.66666548699, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 35, manaCost = 14, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 110.33333389213, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 38, manaCost = 15, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 117.00000229726, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 41, manaCost = 16, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 123.6666707024, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 44, manaCost = 16, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 130.33333910753, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 47, manaCost = 17, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 137.00000751267, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 50, manaCost = 18, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 143.66666797052, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 53, manaCost = 19, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 150.33334432294, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 56, manaCost = 19, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 156.8333342957, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 59, manaCost = 20, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 163.50001064812, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 62, manaCost = 21, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 170.16667110597, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 64, manaCost = 21, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 176.83333156382, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 66, manaCost = 22, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 183.33333743115, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 68, manaCost = 22, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 189.999997889, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 70, manaCost = 23, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 196.66667424142, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 72, manaCost = 24, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 203.16666421418, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 74, manaCost = 24, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 209.83334056661, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 76, manaCost = 25, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 216.50000102445, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 78, manaCost = 25, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 223.16667737688, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 80, manaCost = 26, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 229.66666734964, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 82, manaCost = 26, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 236.33334370206, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 84, manaCost = 27, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 243.00000415991, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 86, manaCost = 27, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 249.66666461776, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 88, manaCost = 28, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 256.33334097018, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 90, manaCost = 28, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 263.00000142803, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 91, manaCost = 28, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 269.66667778045, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 92, manaCost = 29, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 276.3333382383, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 93, manaCost = 29, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 282.83332821106, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 94, manaCost = 29, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 289.50002045805, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 95, manaCost = 29, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 296.1666809159, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 96, manaCost = 30, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 302.83334137375, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 97, manaCost = 30, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 309.33333134651, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 98, manaCost = 30, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 315.99999180436, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 99, manaCost = 30, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 1, 5000, 10, 322.66668405136, 88, damageEffectiveness = 0.8, critChance = 6, levelRequirement = 100, manaCost = 31, statInterpolation = { 3, 3, 1, 1, 1, 3, 1, }, }, + [1] = { 0.68999999761581, 1.0299999713898, 10, 64, 200, 60, critChance = 6, duration = 5, manaCost = 7, damageEffectiveness = 0.8, levelRequirement = 12, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [2] = { 0.68999999761581, 1.0299999713898, 10, 70.666664431492, 200, 60, critChance = 6, duration = 5, manaCost = 8, damageEffectiveness = 0.8, levelRequirement = 15, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [3] = { 0.68999999761581, 1.0299999713898, 10, 77.166670298825, 200, 60, critChance = 6, duration = 5, manaCost = 9, damageEffectiveness = 0.8, levelRequirement = 19, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [4] = { 0.68999999761581, 1.0299999713898, 10, 83.83333870396, 200, 60, critChance = 6, duration = 5, manaCost = 9, damageEffectiveness = 0.8, levelRequirement = 23, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [5] = { 0.68999999761581, 1.0299999713898, 10, 90.49999916181, 200, 60, critChance = 6, duration = 5, manaCost = 10, damageEffectiveness = 0.8, levelRequirement = 27, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [6] = { 0.68999999761581, 1.0299999713898, 10, 97.166667566945, 200, 60, critChance = 6, duration = 5, manaCost = 11, damageEffectiveness = 0.8, levelRequirement = 31, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [7] = { 0.68999999761581, 1.0299999713898, 10, 103.66666548699, 200, 60, critChance = 6, duration = 5, manaCost = 12, damageEffectiveness = 0.8, levelRequirement = 35, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [8] = { 0.68999999761581, 1.0299999713898, 10, 110.33333389213, 200, 60, critChance = 6, duration = 5, manaCost = 13, damageEffectiveness = 0.8, levelRequirement = 38, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [9] = { 0.68999999761581, 1.0299999713898, 10, 117.00000229726, 200, 60, critChance = 6, duration = 5, manaCost = 14, damageEffectiveness = 0.8, levelRequirement = 41, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [10] = { 0.68999999761581, 1.0299999713898, 10, 123.6666707024, 200, 60, critChance = 6, duration = 5, manaCost = 14, damageEffectiveness = 0.8, levelRequirement = 44, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [11] = { 0.68999999761581, 1.0299999713898, 10, 130.33333910753, 200, 60, critChance = 6, duration = 5, manaCost = 15, damageEffectiveness = 0.8, levelRequirement = 47, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [12] = { 0.68999999761581, 1.0299999713898, 10, 137.00000751267, 200, 60, critChance = 6, duration = 5, manaCost = 15, damageEffectiveness = 0.8, levelRequirement = 50, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [13] = { 0.68999999761581, 1.0299999713898, 10, 143.66666797052, 200, 60, critChance = 6, duration = 5, manaCost = 16, damageEffectiveness = 0.8, levelRequirement = 53, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [14] = { 0.68999999761581, 1.0299999713898, 10, 150.33334432294, 200, 60, critChance = 6, duration = 5, manaCost = 16, damageEffectiveness = 0.8, levelRequirement = 56, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [15] = { 0.68999999761581, 1.0299999713898, 10, 156.8333342957, 200, 60, critChance = 6, duration = 5, manaCost = 17, damageEffectiveness = 0.8, levelRequirement = 59, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [16] = { 0.68999999761581, 1.0299999713898, 10, 163.50001064812, 200, 60, critChance = 6, duration = 5, manaCost = 18, damageEffectiveness = 0.8, levelRequirement = 62, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [17] = { 0.68999999761581, 1.0299999713898, 10, 170.16667110597, 200, 60, critChance = 6, duration = 5, manaCost = 18, damageEffectiveness = 0.8, levelRequirement = 64, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [18] = { 0.68999999761581, 1.0299999713898, 10, 176.83333156382, 200, 60, critChance = 6, duration = 5, manaCost = 19, damageEffectiveness = 0.8, levelRequirement = 66, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [19] = { 0.68999999761581, 1.0299999713898, 10, 183.33333743115, 200, 60, critChance = 6, duration = 5, manaCost = 19, damageEffectiveness = 0.8, levelRequirement = 68, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [20] = { 0.68999999761581, 1.0299999713898, 10, 189.999997889, 200, 60, critChance = 6, duration = 5, manaCost = 20, damageEffectiveness = 0.8, levelRequirement = 70, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [21] = { 0.68999999761581, 1.0299999713898, 10, 196.66667424142, 200, 60, critChance = 6, duration = 5, manaCost = 21, damageEffectiveness = 0.8, levelRequirement = 72, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [22] = { 0.68999999761581, 1.0299999713898, 10, 203.16666421418, 200, 60, critChance = 6, duration = 5, manaCost = 21, damageEffectiveness = 0.8, levelRequirement = 74, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [23] = { 0.68999999761581, 1.0299999713898, 10, 209.83334056661, 200, 60, critChance = 6, duration = 5, manaCost = 21, damageEffectiveness = 0.8, levelRequirement = 76, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [24] = { 0.68999999761581, 1.0299999713898, 10, 216.50000102445, 200, 60, critChance = 6, duration = 5, manaCost = 21, damageEffectiveness = 0.8, levelRequirement = 78, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [25] = { 0.68999999761581, 1.0299999713898, 10, 223.16667737688, 200, 60, critChance = 6, duration = 5, manaCost = 22, damageEffectiveness = 0.8, levelRequirement = 80, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [26] = { 0.68999999761581, 1.0299999713898, 10, 229.66666734964, 200, 60, critChance = 6, duration = 5, manaCost = 22, damageEffectiveness = 0.8, levelRequirement = 82, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [27] = { 0.68999999761581, 1.0299999713898, 10, 236.33334370206, 200, 60, critChance = 6, duration = 5, manaCost = 23, damageEffectiveness = 0.8, levelRequirement = 84, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [28] = { 0.68999999761581, 1.0299999713898, 10, 243.00000415991, 200, 60, critChance = 6, duration = 5, manaCost = 23, damageEffectiveness = 0.8, levelRequirement = 86, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [29] = { 0.68999999761581, 1.0299999713898, 10, 249.66666461776, 200, 60, critChance = 6, duration = 5, manaCost = 24, damageEffectiveness = 0.8, levelRequirement = 88, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [30] = { 0.68999999761581, 1.0299999713898, 10, 256.33334097018, 200, 60, critChance = 6, duration = 5, manaCost = 24, damageEffectiveness = 0.8, levelRequirement = 90, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [31] = { 0.68999999761581, 1.0299999713898, 10, 263.00000142803, 200, 60, critChance = 6, duration = 5, manaCost = 24, damageEffectiveness = 0.8, levelRequirement = 91, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [32] = { 0.68999999761581, 1.0299999713898, 10, 269.66667778045, 200, 60, critChance = 6, duration = 5, manaCost = 25, damageEffectiveness = 0.8, levelRequirement = 92, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [33] = { 0.68999999761581, 1.0299999713898, 10, 276.3333382383, 200, 60, critChance = 6, duration = 5, manaCost = 25, damageEffectiveness = 0.8, levelRequirement = 93, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [34] = { 0.68999999761581, 1.0299999713898, 10, 282.83332821106, 200, 60, critChance = 6, duration = 5, manaCost = 25, damageEffectiveness = 0.8, levelRequirement = 94, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [35] = { 0.68999999761581, 1.0299999713898, 10, 289.50002045805, 200, 60, critChance = 6, duration = 5, manaCost = 25, damageEffectiveness = 0.8, levelRequirement = 95, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [36] = { 0.68999999761581, 1.0299999713898, 10, 296.1666809159, 200, 60, critChance = 6, duration = 5, manaCost = 26, damageEffectiveness = 0.8, levelRequirement = 96, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [37] = { 0.68999999761581, 1.0299999713898, 10, 302.83334137375, 200, 60, critChance = 6, duration = 5, manaCost = 26, damageEffectiveness = 0.8, levelRequirement = 97, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [38] = { 0.68999999761581, 1.0299999713898, 10, 309.33333134651, 200, 60, critChance = 6, duration = 5, manaCost = 26, damageEffectiveness = 0.8, levelRequirement = 98, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [39] = { 0.68999999761581, 1.0299999713898, 10, 315.99999180436, 200, 60, critChance = 6, duration = 5, manaCost = 26, damageEffectiveness = 0.8, levelRequirement = 99, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, + [40] = { 0.68999999761581, 1.0299999713898, 10, 322.66668405136, 200, 60, critChance = 6, duration = 5, manaCost = 27, damageEffectiveness = 0.8, levelRequirement = 100, statInterpolation = { 3, 3, 1, 3, 1, 1, }, }, }, } skills["CataclysmSigil"] = { @@ -327,7 +327,7 @@ skills["AssassinsMark"] = { name = "Assassin's Mark", color = 3, description = "Curses all targets in an area, making them more vulnerable to Critical Strikes. Killing the cursed targets will grant life and mana, and a chance to gain a power charge.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -976,7 +976,7 @@ skills["SigilRecall"] = { name = "Brand Recall", color = 3, description = "Recall your brands to you, detaching them from enemies, then cause them to activate. The brands will have increased attachment range until they next attach to an enemy.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, baseFlags = { @@ -993,7 +993,6 @@ skills["SigilRecall"] = { "sigil_recall_extend_base_skill_effect_duration", "sigil_recall_extend_base_secondary_skill_effect_duration", "console_skill_dont_chase", - "instant_skill_is_added_to_held_skills_list", }, levels = { [1] = { 0, 25, 1200, 1200, cooldown = 3, levelRequirement = 16, manaCost = 7, statInterpolation = { 1, 1, 1, 1, }, }, @@ -1028,7 +1027,7 @@ skills["Clarity"] = { name = "Clarity", color = 3, description = "Casts an aura that grants mana regeneration to you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -1100,7 +1099,7 @@ skills["VaalClarity"] = { name = "Vaal Clarity", color = 3, description = "Casts a temporary aura that lets you and your allies cast skills without paying their mana costs.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, [SkillType.Instant] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -1177,7 +1176,7 @@ skills["ColdSnap"] = { baseEffectiveness = 2.4902000427246, incrementalEffectiveness = 0.036200001835823, description = "Creates a sudden burst of cold in a targeted area, damaging enemies. This also creates an expanding area which is filled with chilled ground, and deals cold damage over time to enemies. Enemies that die while in the area have a chance to grant Frenzy Charges. The cooldown can be bypassed by expending a Frenzy Charge.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.85, baseFlags = { @@ -1328,7 +1327,7 @@ skills["Conductivity"] = { name = "Conductivity", color = 3, description = "Curses all targets in an area, making them less resistant to lightning damage and giving them a chance to be shocked by lightning damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -1482,7 +1481,7 @@ skills["ConversionTrap"] = { name = "Conversion Trap", color = 3, description = "Throws a trap that, when triggered by an enemy, converts that enemy to your side for a short duration. Does not affect unique monsters or players.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.SkillCanMine] = true, [SkillType.Trap] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.SkillCanMine] = true, [SkillType.Trap] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -1550,7 +1549,7 @@ skills["Convocation"] = { name = "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, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Minion] = true, [SkillType.Instant] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -1575,7 +1574,6 @@ skills["Convocation"] = { "base_skill_effect_duration", "life_regeneration_rate_per_minute_%", "base_deal_no_damage", - "instant_skill_is_added_to_held_skills_list", }, levels = { [1] = { 2000, 42, cooldown = 3, levelRequirement = 24, manaCost = 6, statInterpolation = { 1, 1, }, }, @@ -1731,7 +1729,7 @@ skills["Despair"] = { baseEffectiveness = 0.66670000553131, incrementalEffectiveness = 0.016000000759959, description = "Curse all targets in an area, making them less resistant to chaos damage and causing them to take increased damage over time. Cursed enemies also take additional chaos damage when hit.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.ChaosSkill] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.ChaosSkill] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -1896,7 +1894,7 @@ skills["Discipline"] = { name = "Discipline", color = 3, description = "Casts an aura that grants additional energy shield and increased energy shield recharge rate to you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -1971,7 +1969,7 @@ skills["VaalDiscipline"] = { name = "Vaal Discipline", color = 3, description = "Casts a temporary aura that prevents energy shield recharge being delayed by damage taken for you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, [SkillType.Instant] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -2150,7 +2148,7 @@ skills["ElementalWeakness"] = { name = "Elemental Weakness", color = 3, description = "Curses all targets in an area, making them less resistant to elemental damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2224,7 +2222,7 @@ skills["Enfeeble"] = { name = "Enfeeble", color = 3, description = "Curses all targets in an area, making their attacks and spells less effective.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2629,7 +2627,7 @@ skills["FlameDash"] = { baseEffectiveness = 0.82669997215271, incrementalEffectiveness = 0.047860000282526, description = "Teleport to a location, damaging enemies and leaving a trail of burning ground in your wake. Shares a cooldown with other Blink skills.", - skillTypes = { [SkillType.Spell] = true, [SkillType.MovementSkill] = true, [SkillType.Hit] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.TravelSkill] = true, [SkillType.BlinkSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.MovementSkill] = true, [SkillType.Hit] = true, [SkillType.DamageOverTime] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.TravelSkill] = true, [SkillType.BlinkSkill] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.7, baseFlags = { @@ -2641,7 +2639,7 @@ skills["FlameDash"] = { skill("dotIsArea", true), }, qualityStats = { - { "base_cooldown_speed_+%", 1 }, + { "base_cooldown_speed_+%", 0.5 }, }, stats = { "spell_minimum_base_fire_damage", @@ -2653,45 +2651,45 @@ skills["FlameDash"] = { }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 0, critChance = 6, cooldown = 3, levelRequirement = 10, manaCost = 8, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 4, critChance = 6, cooldown = 3, levelRequirement = 13, manaCost = 9, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 8, critChance = 6, cooldown = 3, levelRequirement = 17, manaCost = 10, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 12, critChance = 6, cooldown = 3, levelRequirement = 21, manaCost = 11, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 16, critChance = 6, cooldown = 3, levelRequirement = 25, manaCost = 12, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 20, critChance = 6, cooldown = 3, levelRequirement = 29, manaCost = 13, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 24, critChance = 6, cooldown = 3, levelRequirement = 33, manaCost = 14, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 28, critChance = 6, cooldown = 3, levelRequirement = 36, manaCost = 14, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 32, critChance = 6, cooldown = 3, levelRequirement = 39, manaCost = 15, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 36, critChance = 6, cooldown = 3, levelRequirement = 42, manaCost = 16, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 40, critChance = 6, cooldown = 3, levelRequirement = 45, manaCost = 17, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 44, critChance = 6, cooldown = 3, levelRequirement = 48, manaCost = 17, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 48, critChance = 6, cooldown = 3, levelRequirement = 51, manaCost = 18, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 52, critChance = 6, cooldown = 3, levelRequirement = 54, manaCost = 19, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 56, critChance = 6, cooldown = 3, levelRequirement = 57, manaCost = 20, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 60, critChance = 6, cooldown = 3, levelRequirement = 60, manaCost = 20, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 64, critChance = 6, cooldown = 3, levelRequirement = 63, manaCost = 21, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 68, critChance = 6, cooldown = 3, levelRequirement = 66, manaCost = 22, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 72, critChance = 6, cooldown = 3, levelRequirement = 68, manaCost = 22, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 76, critChance = 6, cooldown = 3, levelRequirement = 70, manaCost = 23, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 80, critChance = 6, cooldown = 3, levelRequirement = 72, manaCost = 24, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 84, critChance = 6, cooldown = 3, levelRequirement = 74, manaCost = 24, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 88, critChance = 6, cooldown = 3, levelRequirement = 76, manaCost = 25, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 92, critChance = 6, cooldown = 3, levelRequirement = 78, manaCost = 25, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 96, critChance = 6, cooldown = 3, levelRequirement = 80, manaCost = 26, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 100, critChance = 6, cooldown = 3, levelRequirement = 82, manaCost = 26, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 104, critChance = 6, cooldown = 3, levelRequirement = 84, manaCost = 27, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 108, critChance = 6, cooldown = 3, levelRequirement = 86, manaCost = 27, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 112, critChance = 6, cooldown = 3, levelRequirement = 88, manaCost = 28, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 116, critChance = 6, cooldown = 3, levelRequirement = 90, manaCost = 28, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 120, critChance = 6, cooldown = 3, levelRequirement = 91, manaCost = 28, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 124, critChance = 6, cooldown = 3, levelRequirement = 92, manaCost = 29, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 128, critChance = 6, cooldown = 3, levelRequirement = 93, manaCost = 29, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 132, critChance = 6, cooldown = 3, levelRequirement = 94, manaCost = 29, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 136, critChance = 6, cooldown = 3, levelRequirement = 95, manaCost = 29, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 140, critChance = 6, cooldown = 3, levelRequirement = 96, manaCost = 30, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 144, critChance = 6, cooldown = 3, levelRequirement = 97, manaCost = 30, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 148, critChance = 6, cooldown = 3, levelRequirement = 98, manaCost = 30, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 152, critChance = 6, cooldown = 3, levelRequirement = 99, manaCost = 30, statInterpolation = { 3, 3, 3, 1, 1, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 156, critChance = 6, cooldown = 3, levelRequirement = 100, manaCost = 31, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 2, critChance = 6, cooldown = 3, levelRequirement = 13, manaCost = 9, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 5, critChance = 6, cooldown = 3, levelRequirement = 17, manaCost = 10, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 7, critChance = 6, cooldown = 3, levelRequirement = 21, manaCost = 11, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 10, critChance = 6, cooldown = 3, levelRequirement = 25, manaCost = 12, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 12, critChance = 6, cooldown = 3, levelRequirement = 29, manaCost = 13, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 15, critChance = 6, cooldown = 3, levelRequirement = 33, manaCost = 14, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 17, critChance = 6, cooldown = 3, levelRequirement = 36, manaCost = 14, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 20, critChance = 6, cooldown = 3, levelRequirement = 39, manaCost = 15, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 22, critChance = 6, cooldown = 3, levelRequirement = 42, manaCost = 16, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 25, critChance = 6, cooldown = 3, levelRequirement = 45, manaCost = 17, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 27, critChance = 6, cooldown = 3, levelRequirement = 48, manaCost = 17, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 30, critChance = 6, cooldown = 3, levelRequirement = 51, manaCost = 18, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 32, critChance = 6, cooldown = 3, levelRequirement = 54, manaCost = 19, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 35, critChance = 6, cooldown = 3, levelRequirement = 57, manaCost = 20, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 37, critChance = 6, cooldown = 3, levelRequirement = 60, manaCost = 20, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 40, critChance = 6, cooldown = 3, levelRequirement = 63, manaCost = 21, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 42, critChance = 6, cooldown = 3, levelRequirement = 66, manaCost = 22, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 45, critChance = 6, cooldown = 3, levelRequirement = 68, manaCost = 22, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 47, critChance = 6, cooldown = 3, levelRequirement = 70, manaCost = 23, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 50, critChance = 6, cooldown = 3, levelRequirement = 72, manaCost = 24, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 52, critChance = 6, cooldown = 3, levelRequirement = 74, manaCost = 24, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 55, critChance = 6, cooldown = 3, levelRequirement = 76, manaCost = 25, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 57, critChance = 6, cooldown = 3, levelRequirement = 78, manaCost = 25, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 60, critChance = 6, cooldown = 3, levelRequirement = 80, manaCost = 26, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 62, critChance = 6, cooldown = 3, levelRequirement = 82, manaCost = 26, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 65, critChance = 6, cooldown = 3, levelRequirement = 84, manaCost = 27, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 67, critChance = 6, cooldown = 3, levelRequirement = 86, manaCost = 27, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 70, critChance = 6, cooldown = 3, levelRequirement = 88, manaCost = 28, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 72, critChance = 6, cooldown = 3, levelRequirement = 90, manaCost = 28, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 73, critChance = 6, cooldown = 3, levelRequirement = 91, manaCost = 28, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 75, critChance = 6, cooldown = 3, levelRequirement = 92, manaCost = 29, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 76, critChance = 6, cooldown = 3, levelRequirement = 93, manaCost = 29, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 77, critChance = 6, cooldown = 3, levelRequirement = 94, manaCost = 29, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 78, critChance = 6, cooldown = 3, levelRequirement = 95, manaCost = 29, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 80, critChance = 6, cooldown = 3, levelRequirement = 96, manaCost = 30, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 81, critChance = 6, cooldown = 3, levelRequirement = 97, manaCost = 30, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 82, critChance = 6, cooldown = 3, levelRequirement = 98, manaCost = 30, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 83, critChance = 6, cooldown = 3, levelRequirement = 99, manaCost = 30, statInterpolation = { 3, 3, 3, 1, 1, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 126.66666790843, 4000, 85, critChance = 6, cooldown = 3, levelRequirement = 100, manaCost = 31, statInterpolation = { 3, 3, 3, 1, 1, }, }, }, } skills["FlameWhip"] = { @@ -2816,50 +2814,51 @@ skills["Flameblast"] = { "charged_blast_spell_damage_+%_final_per_stack", "flameblast_ailment_damage_+%_final_per_stack", "flameblast_ignite_chance_+%_per_stage", + "vaal_flameblast_radius_+_per_stage", "is_area_damage", "base_skill_show_average_damage_instead_of_dps", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 28, manaCost = 4, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 31, manaCost = 4, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 34, manaCost = 4, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 37, manaCost = 4, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 40, manaCost = 4, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 42, manaCost = 5, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 44, manaCost = 5, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 46, manaCost = 5, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 48, manaCost = 5, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 50, manaCost = 5, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 52, manaCost = 5, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 54, manaCost = 5, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 56, manaCost = 6, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 58, manaCost = 6, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 60, manaCost = 6, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 62, manaCost = 6, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 64, manaCost = 6, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 66, manaCost = 6, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 68, manaCost = 6, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 70, manaCost = 7, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 72, manaCost = 7, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 74, manaCost = 7, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 76, manaCost = 7, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 78, manaCost = 7, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 80, manaCost = 7, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 82, manaCost = 7, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 84, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 86, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 88, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 90, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 91, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 92, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 93, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 94, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 95, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 96, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 97, manaCost = 9, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 98, manaCost = 9, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 99, manaCost = 9, statInterpolation = { 3, 3, 1, 1, 1, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 100, manaCost = 9, statInterpolation = { 3, 3, 1, 1, 1, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 28, manaCost = 4, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 31, manaCost = 4, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 34, manaCost = 4, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 37, manaCost = 4, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 40, manaCost = 4, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 42, manaCost = 5, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 44, manaCost = 5, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 46, manaCost = 5, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 48, manaCost = 5, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 50, manaCost = 5, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 52, manaCost = 5, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 54, manaCost = 5, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 56, manaCost = 6, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 58, manaCost = 6, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 60, manaCost = 6, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 62, manaCost = 6, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 64, manaCost = 6, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 66, manaCost = 6, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 68, manaCost = 6, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 70, manaCost = 7, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 72, manaCost = 7, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 74, manaCost = 7, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 76, manaCost = 7, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 78, manaCost = 7, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 80, manaCost = 7, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 82, manaCost = 7, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 84, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 86, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 88, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 90, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 91, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 92, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 93, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 94, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 95, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 96, manaCost = 8, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 97, manaCost = 9, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 98, manaCost = 9, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 99, manaCost = 9, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 110, 90, 5, 3, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 100, manaCost = 9, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, }, } skills["VaalFlameblast"] = { @@ -2867,7 +2866,7 @@ skills["VaalFlameblast"] = { color = 3, baseEffectiveness = 1.1175999641418, incrementalEffectiveness = 0.035199999809265, - description = "Targets an area and builds up stages in that area based on cast speed. It explodes every 5 stages, until it reaches a maximum of 15. As it gains more stages, the area gets smaller but the damage gets higher.", + description = "Targets an area and builds up stages in that area based on cast speed. It explodes every 3 stages, until it reaches a maximum of 15. As it gains more stages, the area gets smaller but the damage gets higher.", skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Vaal] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, @@ -2944,7 +2943,7 @@ skills["Flammability"] = { name = "Flammability", color = 3, description = "Curses all targets in an area, making them less resistant to fire damage and giving them a chance to be ignited by fire damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -3180,7 +3179,7 @@ skills["FrostBomb"] = { baseEffectiveness = 3.1817998886108, incrementalEffectiveness = 0.037999998778105, description = "Creates a crystal that pulses with cold for a duration. Each pulse applies a debuff to nearby enemies for a secondary duration which reduces life and energy shield regeneration rate, and reduces energy shield recharge rate, and also inflicts Cold Exposure. When the crystal's duration ends, it explodes, dealing heavy cold damage to enemies around it.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.ColdSkill] = true, [SkillType.Hit] = true, [SkillType.SpellCanRepeat] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.ColdSkill] = true, [SkillType.Hit] = true, [SkillType.SpellCanRepeat] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -3263,7 +3262,7 @@ skills["FrostWall"] = { baseEffectiveness = 2, incrementalEffectiveness = 0.034000001847744, description = "Creates a wall of ice which holds back enemies. Targets under the wall are damaged and pushed back.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SpellCanCascade] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, baseFlags = { @@ -3330,7 +3329,7 @@ skills["Frostbite"] = { name = "Frostbite", color = 3, description = "Curses all targets in an area, making them less resistant to cold damage and giving them a chance to be frozen by cold damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -3413,8 +3412,8 @@ skills["IceDash"] = { color = 3, baseEffectiveness = 2.0339000225067, incrementalEffectiveness = 0.042599998414516, - description = "Teleport to a location, damaging enemies and leaving Chilled ground in an area around where you left. Shares a cooldown with other Blink skills.", - skillTypes = { [SkillType.Spell] = true, [SkillType.MovementSkill] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.ChillingArea] = true, [SkillType.TravelSkill] = true, [SkillType.BlinkSkill] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Hit] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, }, + description = "Teleport to a location, damaging enemies and leaving Chilled ground in an area at both ends of the teleport. Shares a cooldown with other Blink skills.", + skillTypes = { [SkillType.Spell] = true, [SkillType.MovementSkill] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.ChillingArea] = true, [SkillType.TravelSkill] = true, [SkillType.BlinkSkill] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Hit] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Instant] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, baseFlags = { @@ -3433,50 +3432,51 @@ skills["IceDash"] = { "ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy", "spell_minimum_base_cold_damage", "spell_maximum_base_cold_damage", + "skill_maximum_travel_distance_+%", + "active_skill_base_radius_+", "is_area_damage", - "instant_skill_is_added_to_held_skills_list", }, levels = { - [1] = { 15, 80, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 12, damageEffectiveness = 1.4, cooldown = 3, levelRequirement = 4, statInterpolation = { 1, 1, 3, 3, }, }, - [2] = { 15, 81, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 12, damageEffectiveness = 1.4, cooldown = 3, levelRequirement = 6, statInterpolation = { 1, 1, 3, 3, }, }, - [3] = { 15, 82, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 13, damageEffectiveness = 1.4, cooldown = 2.95, levelRequirement = 9, statInterpolation = { 1, 1, 3, 3, }, }, - [4] = { 15, 83, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 13, damageEffectiveness = 1.4, cooldown = 2.95, levelRequirement = 12, statInterpolation = { 1, 1, 3, 3, }, }, - [5] = { 16, 84, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 14, damageEffectiveness = 1.4, cooldown = 2.9, levelRequirement = 16, statInterpolation = { 1, 1, 3, 3, }, }, - [6] = { 16, 85, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 14, damageEffectiveness = 1.4, cooldown = 2.9, levelRequirement = 20, statInterpolation = { 1, 1, 3, 3, }, }, - [7] = { 16, 86, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 15, damageEffectiveness = 1.4, cooldown = 2.9, levelRequirement = 24, statInterpolation = { 1, 1, 3, 3, }, }, - [8] = { 16, 87, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 15, damageEffectiveness = 1.4, cooldown = 2.85, levelRequirement = 28, statInterpolation = { 1, 1, 3, 3, }, }, - [9] = { 17, 88, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 16, damageEffectiveness = 1.4, cooldown = 2.85, levelRequirement = 32, statInterpolation = { 1, 1, 3, 3, }, }, - [10] = { 17, 89, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 17, damageEffectiveness = 1.4, cooldown = 2.8, levelRequirement = 36, statInterpolation = { 1, 1, 3, 3, }, }, - [11] = { 17, 90, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 17, damageEffectiveness = 1.4, cooldown = 2.8, levelRequirement = 40, statInterpolation = { 1, 1, 3, 3, }, }, - [12] = { 17, 91, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 18, damageEffectiveness = 1.4, cooldown = 2.8, levelRequirement = 44, statInterpolation = { 1, 1, 3, 3, }, }, - [13] = { 18, 92, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 18, damageEffectiveness = 1.4, cooldown = 2.75, levelRequirement = 48, statInterpolation = { 1, 1, 3, 3, }, }, - [14] = { 18, 93, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 19, damageEffectiveness = 1.4, cooldown = 2.75, levelRequirement = 52, statInterpolation = { 1, 1, 3, 3, }, }, - [15] = { 18, 94, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 20, damageEffectiveness = 1.4, cooldown = 2.7, levelRequirement = 55, statInterpolation = { 1, 1, 3, 3, }, }, - [16] = { 18, 95, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 20, damageEffectiveness = 1.4, cooldown = 2.7, levelRequirement = 58, statInterpolation = { 1, 1, 3, 3, }, }, - [17] = { 19, 96, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 21, damageEffectiveness = 1.4, cooldown = 2.7, levelRequirement = 61, statInterpolation = { 1, 1, 3, 3, }, }, - [18] = { 19, 97, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 21, damageEffectiveness = 1.4, cooldown = 2.65, levelRequirement = 64, statInterpolation = { 1, 1, 3, 3, }, }, - [19] = { 19, 98, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 22, damageEffectiveness = 1.4, cooldown = 2.65, levelRequirement = 67, statInterpolation = { 1, 1, 3, 3, }, }, - [20] = { 19, 99, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 22, damageEffectiveness = 1.4, cooldown = 2.6, levelRequirement = 70, statInterpolation = { 1, 1, 3, 3, }, }, - [21] = { 20, 100, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 23, damageEffectiveness = 1.4, cooldown = 2.6, levelRequirement = 72, statInterpolation = { 1, 1, 3, 3, }, }, - [22] = { 20, 101, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 24, damageEffectiveness = 1.4, cooldown = 2.6, levelRequirement = 74, statInterpolation = { 1, 1, 3, 3, }, }, - [23] = { 20, 102, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 25, damageEffectiveness = 1.4, cooldown = 2.55, levelRequirement = 76, statInterpolation = { 1, 1, 3, 3, }, }, - [24] = { 20, 103, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 25, damageEffectiveness = 1.4, cooldown = 2.55, levelRequirement = 78, statInterpolation = { 1, 1, 3, 3, }, }, - [25] = { 21, 104, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 26, damageEffectiveness = 1.4, cooldown = 2.5, levelRequirement = 80, statInterpolation = { 1, 1, 3, 3, }, }, - [26] = { 21, 105, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 26, damageEffectiveness = 1.4, cooldown = 2.5, levelRequirement = 82, statInterpolation = { 1, 1, 3, 3, }, }, - [27] = { 21, 106, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 27, damageEffectiveness = 1.4, cooldown = 2.5, levelRequirement = 84, statInterpolation = { 1, 1, 3, 3, }, }, - [28] = { 21, 107, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 27, damageEffectiveness = 1.4, cooldown = 2.45, levelRequirement = 86, statInterpolation = { 1, 1, 3, 3, }, }, - [29] = { 22, 108, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 28, damageEffectiveness = 1.4, cooldown = 2.45, levelRequirement = 88, statInterpolation = { 1, 1, 3, 3, }, }, - [30] = { 22, 109, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 28, damageEffectiveness = 1.4, cooldown = 2.4, levelRequirement = 90, statInterpolation = { 1, 1, 3, 3, }, }, - [31] = { 22, 109, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 28, damageEffectiveness = 1.4, cooldown = 2.4, levelRequirement = 91, statInterpolation = { 1, 1, 3, 3, }, }, - [32] = { 22, 110, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 29, damageEffectiveness = 1.4, cooldown = 2.4, levelRequirement = 92, statInterpolation = { 1, 1, 3, 3, }, }, - [33] = { 22, 110, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 29, damageEffectiveness = 1.4, cooldown = 2.4, levelRequirement = 93, statInterpolation = { 1, 1, 3, 3, }, }, - [34] = { 22, 111, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 29, damageEffectiveness = 1.4, cooldown = 2.4, levelRequirement = 94, statInterpolation = { 1, 1, 3, 3, }, }, - [35] = { 22, 111, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 29, damageEffectiveness = 1.4, cooldown = 2.35, levelRequirement = 95, statInterpolation = { 1, 1, 3, 3, }, }, - [36] = { 23, 112, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 30, damageEffectiveness = 1.4, cooldown = 2.35, levelRequirement = 96, statInterpolation = { 1, 1, 3, 3, }, }, - [37] = { 23, 112, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 30, damageEffectiveness = 1.4, cooldown = 2.35, levelRequirement = 97, statInterpolation = { 1, 1, 3, 3, }, }, - [38] = { 23, 113, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 30, damageEffectiveness = 1.4, cooldown = 2.35, levelRequirement = 98, statInterpolation = { 1, 1, 3, 3, }, }, - [39] = { 23, 113, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 30, damageEffectiveness = 1.4, cooldown = 2.3, levelRequirement = 99, statInterpolation = { 1, 1, 3, 3, }, }, - [40] = { 23, 114, 0.80000001192093, 1.2000000476837, critChance = 5, duration = 3, manaCost = 31, damageEffectiveness = 1.4, cooldown = 2.3, levelRequirement = 100, statInterpolation = { 1, 1, 3, 3, }, }, + [1] = { 15, 80, 0.80000001192093, 1.2000000476837, 0, 0, critChance = 5, duration = 3, manaCost = 12, damageEffectiveness = 1.4, cooldown = 3, levelRequirement = 4, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [2] = { 15, 81, 0.80000001192093, 1.2000000476837, 2, 0, critChance = 5, duration = 3, manaCost = 12, damageEffectiveness = 1.4, cooldown = 3, levelRequirement = 6, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [3] = { 15, 82, 0.80000001192093, 1.2000000476837, 4, 0, critChance = 5, duration = 3, manaCost = 13, damageEffectiveness = 1.4, cooldown = 2.95, levelRequirement = 9, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [4] = { 15, 83, 0.80000001192093, 1.2000000476837, 6, 0, critChance = 5, duration = 3, manaCost = 13, damageEffectiveness = 1.4, cooldown = 2.95, levelRequirement = 12, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [5] = { 16, 84, 0.80000001192093, 1.2000000476837, 8, 0, critChance = 5, duration = 3, manaCost = 14, damageEffectiveness = 1.4, cooldown = 2.9, levelRequirement = 16, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [6] = { 16, 85, 0.80000001192093, 1.2000000476837, 10, 1, critChance = 5, duration = 3, manaCost = 14, damageEffectiveness = 1.4, cooldown = 2.9, levelRequirement = 20, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [7] = { 16, 86, 0.80000001192093, 1.2000000476837, 12, 1, critChance = 5, duration = 3, manaCost = 15, damageEffectiveness = 1.4, cooldown = 2.9, levelRequirement = 24, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [8] = { 16, 87, 0.80000001192093, 1.2000000476837, 14, 1, critChance = 5, duration = 3, manaCost = 15, damageEffectiveness = 1.4, cooldown = 2.85, levelRequirement = 28, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [9] = { 17, 88, 0.80000001192093, 1.2000000476837, 16, 1, critChance = 5, duration = 3, manaCost = 16, damageEffectiveness = 1.4, cooldown = 2.85, levelRequirement = 32, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [10] = { 17, 89, 0.80000001192093, 1.2000000476837, 18, 1, critChance = 5, duration = 3, manaCost = 17, damageEffectiveness = 1.4, cooldown = 2.8, levelRequirement = 36, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [11] = { 17, 90, 0.80000001192093, 1.2000000476837, 20, 2, critChance = 5, duration = 3, manaCost = 17, damageEffectiveness = 1.4, cooldown = 2.8, levelRequirement = 40, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [12] = { 17, 91, 0.80000001192093, 1.2000000476837, 22, 2, critChance = 5, duration = 3, manaCost = 18, damageEffectiveness = 1.4, cooldown = 2.8, levelRequirement = 44, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [13] = { 18, 92, 0.80000001192093, 1.2000000476837, 24, 2, critChance = 5, duration = 3, manaCost = 18, damageEffectiveness = 1.4, cooldown = 2.75, levelRequirement = 48, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [14] = { 18, 93, 0.80000001192093, 1.2000000476837, 26, 2, critChance = 5, duration = 3, manaCost = 19, damageEffectiveness = 1.4, cooldown = 2.75, levelRequirement = 52, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [15] = { 18, 94, 0.80000001192093, 1.2000000476837, 28, 2, critChance = 5, duration = 3, manaCost = 20, damageEffectiveness = 1.4, cooldown = 2.7, levelRequirement = 55, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [16] = { 18, 95, 0.80000001192093, 1.2000000476837, 30, 3, critChance = 5, duration = 3, manaCost = 20, damageEffectiveness = 1.4, cooldown = 2.7, levelRequirement = 58, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [17] = { 19, 96, 0.80000001192093, 1.2000000476837, 32, 3, critChance = 5, duration = 3, manaCost = 21, damageEffectiveness = 1.4, cooldown = 2.7, levelRequirement = 61, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [18] = { 19, 97, 0.80000001192093, 1.2000000476837, 34, 3, critChance = 5, duration = 3, manaCost = 21, damageEffectiveness = 1.4, cooldown = 2.65, levelRequirement = 64, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [19] = { 19, 98, 0.80000001192093, 1.2000000476837, 36, 3, critChance = 5, duration = 3, manaCost = 22, damageEffectiveness = 1.4, cooldown = 2.65, levelRequirement = 67, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [20] = { 19, 99, 0.80000001192093, 1.2000000476837, 38, 3, critChance = 5, duration = 3, manaCost = 22, damageEffectiveness = 1.4, cooldown = 2.6, levelRequirement = 70, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [21] = { 20, 100, 0.80000001192093, 1.2000000476837, 40, 4, critChance = 5, duration = 3, manaCost = 23, damageEffectiveness = 1.4, cooldown = 2.6, levelRequirement = 72, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [22] = { 20, 101, 0.80000001192093, 1.2000000476837, 42, 4, critChance = 5, duration = 3, manaCost = 24, damageEffectiveness = 1.4, cooldown = 2.6, levelRequirement = 74, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [23] = { 20, 102, 0.80000001192093, 1.2000000476837, 44, 4, critChance = 5, duration = 3, manaCost = 25, damageEffectiveness = 1.4, cooldown = 2.55, levelRequirement = 76, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [24] = { 20, 103, 0.80000001192093, 1.2000000476837, 46, 4, critChance = 5, duration = 3, manaCost = 25, damageEffectiveness = 1.4, cooldown = 2.55, levelRequirement = 78, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [25] = { 21, 104, 0.80000001192093, 1.2000000476837, 48, 4, critChance = 5, duration = 3, manaCost = 26, damageEffectiveness = 1.4, cooldown = 2.5, levelRequirement = 80, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [26] = { 21, 105, 0.80000001192093, 1.2000000476837, 50, 5, critChance = 5, duration = 3, manaCost = 26, damageEffectiveness = 1.4, cooldown = 2.5, levelRequirement = 82, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [27] = { 21, 106, 0.80000001192093, 1.2000000476837, 52, 5, critChance = 5, duration = 3, manaCost = 27, damageEffectiveness = 1.4, cooldown = 2.5, levelRequirement = 84, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [28] = { 21, 107, 0.80000001192093, 1.2000000476837, 54, 5, critChance = 5, duration = 3, manaCost = 27, damageEffectiveness = 1.4, cooldown = 2.45, levelRequirement = 86, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [29] = { 22, 108, 0.80000001192093, 1.2000000476837, 56, 5, critChance = 5, duration = 3, manaCost = 28, damageEffectiveness = 1.4, cooldown = 2.45, levelRequirement = 88, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [30] = { 22, 109, 0.80000001192093, 1.2000000476837, 58, 5, critChance = 5, duration = 3, manaCost = 28, damageEffectiveness = 1.4, cooldown = 2.4, levelRequirement = 90, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [31] = { 22, 109, 0.80000001192093, 1.2000000476837, 59, 5, critChance = 5, duration = 3, manaCost = 28, damageEffectiveness = 1.4, cooldown = 2.4, levelRequirement = 91, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [32] = { 22, 110, 0.80000001192093, 1.2000000476837, 60, 6, critChance = 5, duration = 3, manaCost = 29, damageEffectiveness = 1.4, cooldown = 2.4, levelRequirement = 92, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [33] = { 22, 110, 0.80000001192093, 1.2000000476837, 61, 6, critChance = 5, duration = 3, manaCost = 29, damageEffectiveness = 1.4, cooldown = 2.4, levelRequirement = 93, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [34] = { 22, 111, 0.80000001192093, 1.2000000476837, 62, 6, critChance = 5, duration = 3, manaCost = 29, damageEffectiveness = 1.4, cooldown = 2.4, levelRequirement = 94, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [35] = { 22, 111, 0.80000001192093, 1.2000000476837, 63, 6, critChance = 5, duration = 3, manaCost = 29, damageEffectiveness = 1.4, cooldown = 2.35, levelRequirement = 95, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [36] = { 23, 112, 0.80000001192093, 1.2000000476837, 64, 6, critChance = 5, duration = 3, manaCost = 30, damageEffectiveness = 1.4, cooldown = 2.35, levelRequirement = 96, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [37] = { 23, 112, 0.80000001192093, 1.2000000476837, 65, 6, critChance = 5, duration = 3, manaCost = 30, damageEffectiveness = 1.4, cooldown = 2.35, levelRequirement = 97, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [38] = { 23, 113, 0.80000001192093, 1.2000000476837, 66, 6, critChance = 5, duration = 3, manaCost = 30, damageEffectiveness = 1.4, cooldown = 2.35, levelRequirement = 98, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [39] = { 23, 113, 0.80000001192093, 1.2000000476837, 67, 6, critChance = 5, duration = 3, manaCost = 30, damageEffectiveness = 1.4, cooldown = 2.3, levelRequirement = 99, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, + [40] = { 23, 114, 0.80000001192093, 1.2000000476837, 68, 6, critChance = 5, duration = 3, manaCost = 31, damageEffectiveness = 1.4, cooldown = 2.3, levelRequirement = 100, statInterpolation = { 1, 1, 3, 3, 1, 1, }, }, }, } skills["FrostBolt"] = { @@ -3622,7 +3622,7 @@ skills["HeraldOfThunder"] = { baseEffectiveness = 1.375, incrementalEffectiveness = 0.023000000044703, description = "Channel lightning through your hands, adding lightning damage to spells and attacks. If you kill a shocked enemy, lightning bolts will strike enemies around you for a short duration. The lightning bolt damage inflicted by this skill is not affected by modifiers to spell damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.LightningSkill] = true, [SkillType.Type27] = true, [SkillType.Herald] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.LightningSkill] = true, [SkillType.Type27] = true, [SkillType.Herald] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "buff_skill_stat_descriptions", castTime = 0, statMap = { @@ -3955,7 +3955,7 @@ skills["ColdProjectileMine"] = { baseEffectiveness = 1.6928999423981, incrementalEffectiveness = 0.038100000470877, description = "Throws a mine that fires projectiles around it when detonated. These projectiles quickly dissipate as they travel, before disappearing", - skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Projectile] = true, [SkillType.Mine] = true, [SkillType.ColdSkill] = true, [SkillType.ManaCostReserved] = true, [SkillType.SkillCanVolley] = true, [SkillType.Aura] = true, [SkillType.Area] = true, [SkillType.AuraDebuff] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Projectile] = true, [SkillType.Mine] = true, [SkillType.ColdSkill] = true, [SkillType.ManaCostReserved] = true, [SkillType.SkillCanVolley] = true, [SkillType.Aura] = true, [SkillType.Area] = true, [SkillType.AuraDebuff] = true, [SkillType.Type87] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, statMap = { @@ -4181,46 +4181,46 @@ skills["ClusterBurst"] = { "skill_can_fire_wand_projectiles", }, levels = { - [1] = { 4, -35, 0, damageEffectiveness = 1.2, baseMultiplier = 1.2, levelRequirement = 28, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, - [2] = { 4, -35, 1, damageEffectiveness = 1.21, baseMultiplier = 1.214, levelRequirement = 31, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, - [3] = { 4, -35, 2, damageEffectiveness = 1.23, baseMultiplier = 1.228, levelRequirement = 34, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, - [4] = { 4, -35, 3, damageEffectiveness = 1.24, baseMultiplier = 1.242, levelRequirement = 37, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, - [5] = { 4, -35, 4, damageEffectiveness = 1.26, baseMultiplier = 1.256, levelRequirement = 40, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, - [6] = { 4, -35, 5, damageEffectiveness = 1.27, baseMultiplier = 1.27, levelRequirement = 42, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, - [7] = { 4, -35, 6, damageEffectiveness = 1.28, baseMultiplier = 1.284, levelRequirement = 44, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, - [8] = { 4, -35, 7, damageEffectiveness = 1.3, baseMultiplier = 1.298, levelRequirement = 46, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, - [9] = { 4, -35, 8, damageEffectiveness = 1.31, baseMultiplier = 1.312, levelRequirement = 48, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [10] = { 4, -35, 9, damageEffectiveness = 1.33, baseMultiplier = 1.326, levelRequirement = 50, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [11] = { 4, -35, 10, damageEffectiveness = 1.34, baseMultiplier = 1.34, levelRequirement = 52, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [12] = { 4, -35, 11, damageEffectiveness = 1.35, baseMultiplier = 1.354, levelRequirement = 54, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [13] = { 4, -35, 12, damageEffectiveness = 1.37, baseMultiplier = 1.368, levelRequirement = 56, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [14] = { 4, -35, 13, damageEffectiveness = 1.38, baseMultiplier = 1.382, levelRequirement = 58, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [15] = { 4, -35, 14, damageEffectiveness = 1.4, baseMultiplier = 1.396, levelRequirement = 60, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [16] = { 4, -35, 15, damageEffectiveness = 1.41, baseMultiplier = 1.41, levelRequirement = 62, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [17] = { 4, -35, 16, damageEffectiveness = 1.42, baseMultiplier = 1.424, levelRequirement = 64, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [18] = { 4, -35, 17, damageEffectiveness = 1.44, baseMultiplier = 1.438, levelRequirement = 66, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [19] = { 4, -35, 18, damageEffectiveness = 1.45, baseMultiplier = 1.452, levelRequirement = 68, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [20] = { 4, -35, 19, damageEffectiveness = 1.47, baseMultiplier = 1.466, levelRequirement = 70, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [21] = { 4, -35, 20, damageEffectiveness = 1.48, baseMultiplier = 1.48, levelRequirement = 72, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [22] = { 4, -35, 21, damageEffectiveness = 1.49, baseMultiplier = 1.494, levelRequirement = 74, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [23] = { 4, -35, 22, damageEffectiveness = 1.51, baseMultiplier = 1.508, levelRequirement = 76, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [24] = { 4, -35, 23, damageEffectiveness = 1.52, baseMultiplier = 1.522, levelRequirement = 78, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, - [25] = { 4, -35, 24, damageEffectiveness = 1.54, baseMultiplier = 1.536, levelRequirement = 80, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, - [26] = { 4, -35, 25, damageEffectiveness = 1.55, baseMultiplier = 1.55, levelRequirement = 82, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, - [27] = { 4, -35, 26, damageEffectiveness = 1.56, baseMultiplier = 1.564, levelRequirement = 84, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, - [28] = { 4, -35, 27, damageEffectiveness = 1.58, baseMultiplier = 1.578, levelRequirement = 86, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, - [29] = { 4, -35, 28, damageEffectiveness = 1.59, baseMultiplier = 1.592, levelRequirement = 88, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, - [30] = { 4, -35, 29, damageEffectiveness = 1.61, baseMultiplier = 1.606, levelRequirement = 90, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, - [31] = { 4, -35, 29, damageEffectiveness = 1.61, baseMultiplier = 1.613, levelRequirement = 91, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, - [32] = { 4, -35, 30, damageEffectiveness = 1.62, baseMultiplier = 1.62, levelRequirement = 92, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, - [33] = { 4, -35, 30, damageEffectiveness = 1.63, baseMultiplier = 1.627, levelRequirement = 93, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, - [34] = { 4, -35, 31, damageEffectiveness = 1.63, baseMultiplier = 1.634, levelRequirement = 94, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, - [35] = { 4, -35, 31, damageEffectiveness = 1.64, baseMultiplier = 1.641, levelRequirement = 95, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, - [36] = { 4, -35, 32, damageEffectiveness = 1.65, baseMultiplier = 1.648, levelRequirement = 96, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, - [37] = { 4, -35, 32, damageEffectiveness = 1.66, baseMultiplier = 1.655, levelRequirement = 97, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, - [38] = { 4, -35, 33, damageEffectiveness = 1.66, baseMultiplier = 1.662, levelRequirement = 98, manaCost = 18, statInterpolation = { 1, 1, 1, }, }, - [39] = { 4, -35, 33, damageEffectiveness = 1.67, baseMultiplier = 1.669, levelRequirement = 99, manaCost = 18, statInterpolation = { 1, 1, 1, }, }, - [40] = { 4, -35, 34, damageEffectiveness = 1.68, baseMultiplier = 1.676, levelRequirement = 100, manaCost = 18, statInterpolation = { 1, 1, 1, }, }, + [1] = { 4, -35, 0, damageEffectiveness = 1.4, baseMultiplier = 1.4, levelRequirement = 28, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, + [2] = { 4, -35, 1, damageEffectiveness = 1.41, baseMultiplier = 1.408, levelRequirement = 31, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, + [3] = { 4, -35, 2, damageEffectiveness = 1.42, baseMultiplier = 1.416, levelRequirement = 34, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, + [4] = { 4, -35, 3, damageEffectiveness = 1.42, baseMultiplier = 1.424, levelRequirement = 37, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, + [5] = { 4, -35, 4, damageEffectiveness = 1.43, baseMultiplier = 1.432, levelRequirement = 40, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, + [6] = { 4, -35, 5, damageEffectiveness = 1.44, baseMultiplier = 1.439, levelRequirement = 42, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, + [7] = { 4, -35, 6, damageEffectiveness = 1.45, baseMultiplier = 1.447, levelRequirement = 44, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, + [8] = { 4, -35, 7, damageEffectiveness = 1.46, baseMultiplier = 1.455, levelRequirement = 46, manaCost = 15, statInterpolation = { 1, 1, 1, }, }, + [9] = { 4, -35, 8, damageEffectiveness = 1.46, baseMultiplier = 1.463, levelRequirement = 48, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [10] = { 4, -35, 9, damageEffectiveness = 1.47, baseMultiplier = 1.471, levelRequirement = 50, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [11] = { 4, -35, 10, damageEffectiveness = 1.48, baseMultiplier = 1.479, levelRequirement = 52, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [12] = { 4, -35, 11, damageEffectiveness = 1.49, baseMultiplier = 1.487, levelRequirement = 54, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [13] = { 4, -35, 12, damageEffectiveness = 1.49, baseMultiplier = 1.495, levelRequirement = 56, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [14] = { 4, -35, 13, damageEffectiveness = 1.5, baseMultiplier = 1.503, levelRequirement = 58, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [15] = { 4, -35, 14, damageEffectiveness = 1.51, baseMultiplier = 1.511, levelRequirement = 60, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [16] = { 4, -35, 15, damageEffectiveness = 1.52, baseMultiplier = 1.518, levelRequirement = 62, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [17] = { 4, -35, 16, damageEffectiveness = 1.53, baseMultiplier = 1.526, levelRequirement = 64, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [18] = { 4, -35, 17, damageEffectiveness = 1.53, baseMultiplier = 1.534, levelRequirement = 66, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [19] = { 4, -35, 18, damageEffectiveness = 1.54, baseMultiplier = 1.542, levelRequirement = 68, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [20] = { 4, -35, 19, damageEffectiveness = 1.55, baseMultiplier = 1.55, levelRequirement = 70, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [21] = { 4, -35, 20, damageEffectiveness = 1.56, baseMultiplier = 1.558, levelRequirement = 72, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [22] = { 4, -35, 21, damageEffectiveness = 1.57, baseMultiplier = 1.566, levelRequirement = 74, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [23] = { 4, -35, 22, damageEffectiveness = 1.57, baseMultiplier = 1.574, levelRequirement = 76, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [24] = { 4, -35, 23, damageEffectiveness = 1.58, baseMultiplier = 1.582, levelRequirement = 78, manaCost = 16, statInterpolation = { 1, 1, 1, }, }, + [25] = { 4, -35, 24, damageEffectiveness = 1.59, baseMultiplier = 1.589, levelRequirement = 80, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, + [26] = { 4, -35, 25, damageEffectiveness = 1.6, baseMultiplier = 1.597, levelRequirement = 82, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, + [27] = { 4, -35, 26, damageEffectiveness = 1.61, baseMultiplier = 1.605, levelRequirement = 84, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, + [28] = { 4, -35, 27, damageEffectiveness = 1.61, baseMultiplier = 1.613, levelRequirement = 86, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, + [29] = { 4, -35, 28, damageEffectiveness = 1.62, baseMultiplier = 1.621, levelRequirement = 88, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, + [30] = { 4, -35, 29, damageEffectiveness = 1.63, baseMultiplier = 1.629, levelRequirement = 90, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, + [31] = { 4, -35, 29, damageEffectiveness = 1.63, baseMultiplier = 1.633, levelRequirement = 91, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, + [32] = { 4, -35, 30, damageEffectiveness = 1.64, baseMultiplier = 1.637, levelRequirement = 92, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, + [33] = { 4, -35, 30, damageEffectiveness = 1.64, baseMultiplier = 1.641, levelRequirement = 93, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, + [34] = { 4, -35, 31, damageEffectiveness = 1.64, baseMultiplier = 1.645, levelRequirement = 94, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, + [35] = { 4, -35, 31, damageEffectiveness = 1.65, baseMultiplier = 1.649, levelRequirement = 95, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, + [36] = { 4, -35, 32, damageEffectiveness = 1.65, baseMultiplier = 1.653, levelRequirement = 96, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, + [37] = { 4, -35, 32, damageEffectiveness = 1.66, baseMultiplier = 1.657, levelRequirement = 97, manaCost = 17, statInterpolation = { 1, 1, 1, }, }, + [38] = { 4, -35, 33, damageEffectiveness = 1.66, baseMultiplier = 1.661, levelRequirement = 98, manaCost = 18, statInterpolation = { 1, 1, 1, }, }, + [39] = { 4, -35, 33, damageEffectiveness = 1.66, baseMultiplier = 1.664, levelRequirement = 99, manaCost = 18, statInterpolation = { 1, 1, 1, }, }, + [40] = { 4, -35, 34, damageEffectiveness = 1.67, baseMultiplier = 1.668, levelRequirement = 100, manaCost = 18, statInterpolation = { 1, 1, 1, }, }, }, } skills["LightningTowerTrap"] = { @@ -4229,7 +4229,7 @@ skills["LightningTowerTrap"] = { baseEffectiveness = 0.53899997472763, incrementalEffectiveness = 0.045400001108646, description = "Throws a trap which, once triggered, will repeatedly strike multiple areas around it for a duration, dealing lightning damage. Modifiers to cast speed will affect how frequently it strikes. Has a higher chance to critically strike Shocked enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Hit] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Trap] = true, [SkillType.LightningSkill] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Hit] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Trap] = true, [SkillType.LightningSkill] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -4537,7 +4537,7 @@ skills["LightningWarp"] = { description = "Waits for a duration before teleporting to a targeted destination, with the duration based on the distance and your movement speed. When the teleport occurs, lightning damage is dealt to the area around both where the player was and where they teleported to. Casting again will queue up multiple teleportations to occur in sequence.", skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.MovementSkill] = true, [SkillType.LightningSkill] = true, [SkillType.AreaSpell] = true, [SkillType.TravelSkill] = true, [SkillType.SpellCanRepeat] = true, [SkillType.CanRapidFire] = true, }, statDescriptionScope = "variable_duration_skill_stat_descriptions", - castTime = 0.8, + castTime = 0.7, baseFlags = { spell = true, area = true, @@ -4559,46 +4559,46 @@ skills["LightningWarp"] = { "base_skill_show_average_damage_instead_of_dps", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, 1, 1000, -20, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 10, manaCost = 9, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [2] = { 0.10000000149012, 1.8999999761581, 1, 1000, -21, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 13, manaCost = 10, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [3] = { 0.10000000149012, 1.8999999761581, 1, 1000, -22, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 17, manaCost = 11, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [4] = { 0.10000000149012, 1.8999999761581, 1, 1000, -23, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 21, manaCost = 12, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [5] = { 0.10000000149012, 1.8999999761581, 1, 1000, -24, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 25, manaCost = 13, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [6] = { 0.10000000149012, 1.8999999761581, 1, 1000, -25, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 29, manaCost = 14, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [7] = { 0.10000000149012, 1.8999999761581, 1, 1000, -26, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 33, manaCost = 16, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [8] = { 0.10000000149012, 1.8999999761581, 1, 1000, -27, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 36, manaCost = 16, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [9] = { 0.10000000149012, 1.8999999761581, 1, 1000, -28, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 39, manaCost = 17, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [10] = { 0.10000000149012, 1.8999999761581, 1, 1000, -29, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 42, manaCost = 18, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [11] = { 0.10000000149012, 1.8999999761581, 1, 1000, -30, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 45, manaCost = 19, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [12] = { 0.10000000149012, 1.8999999761581, 1, 1000, -31, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 48, manaCost = 20, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [13] = { 0.10000000149012, 1.8999999761581, 1, 1000, -32, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 51, manaCost = 21, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [14] = { 0.10000000149012, 1.8999999761581, 1, 1000, -33, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 54, manaCost = 22, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [15] = { 0.10000000149012, 1.8999999761581, 1, 1000, -34, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 57, manaCost = 23, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [16] = { 0.10000000149012, 1.8999999761581, 1, 1000, -35, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 60, manaCost = 23, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [17] = { 0.10000000149012, 1.8999999761581, 1, 1000, -36, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 63, manaCost = 24, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [18] = { 0.10000000149012, 1.8999999761581, 1, 1000, -37, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 66, manaCost = 25, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [19] = { 0.10000000149012, 1.8999999761581, 1, 1000, -38, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 68, manaCost = 26, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [20] = { 0.10000000149012, 1.8999999761581, 1, 1000, -39, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 70, manaCost = 26, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [21] = { 0.10000000149012, 1.8999999761581, 1, 1000, -40, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 72, manaCost = 27, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [22] = { 0.10000000149012, 1.8999999761581, 1, 1000, -41, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 74, manaCost = 27, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [23] = { 0.10000000149012, 1.8999999761581, 1, 1000, -42, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 76, manaCost = 28, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [24] = { 0.10000000149012, 1.8999999761581, 1, 1000, -43, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 78, manaCost = 29, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [25] = { 0.10000000149012, 1.8999999761581, 1, 1000, -44, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 80, manaCost = 29, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [26] = { 0.10000000149012, 1.8999999761581, 1, 1000, -45, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 82, manaCost = 30, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [27] = { 0.10000000149012, 1.8999999761581, 1, 1000, -46, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 84, manaCost = 30, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [28] = { 0.10000000149012, 1.8999999761581, 1, 1000, -47, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 86, manaCost = 31, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [29] = { 0.10000000149012, 1.8999999761581, 1, 1000, -48, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 88, manaCost = 32, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [30] = { 0.10000000149012, 1.8999999761581, 1, 1000, -49, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 90, manaCost = 32, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [31] = { 0.10000000149012, 1.8999999761581, 1, 1000, -50, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 91, manaCost = 32, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [32] = { 0.10000000149012, 1.8999999761581, 1, 1000, -51, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 92, manaCost = 33, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [33] = { 0.10000000149012, 1.8999999761581, 1, 1000, -52, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 93, manaCost = 33, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [34] = { 0.10000000149012, 1.8999999761581, 1, 1000, -53, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 94, manaCost = 33, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [35] = { 0.10000000149012, 1.8999999761581, 1, 1000, -54, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 95, manaCost = 34, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [36] = { 0.10000000149012, 1.8999999761581, 1, 1000, -55, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 96, manaCost = 34, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [37] = { 0.10000000149012, 1.8999999761581, 1, 1000, -56, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 97, manaCost = 34, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [38] = { 0.10000000149012, 1.8999999761581, 1, 1000, -57, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 98, manaCost = 34, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [39] = { 0.10000000149012, 1.8999999761581, 1, 1000, -58, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 99, manaCost = 35, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, - [40] = { 0.10000000149012, 1.8999999761581, 1, 1000, -59, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 100, manaCost = 35, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [1] = { 0.10000000149012, 1.8999999761581, 1, 1000, -30, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 10, manaCost = 9, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [2] = { 0.10000000149012, 1.8999999761581, 1, 1000, -31, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 13, manaCost = 10, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [3] = { 0.10000000149012, 1.8999999761581, 1, 1000, -32, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 17, manaCost = 11, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [4] = { 0.10000000149012, 1.8999999761581, 1, 1000, -33, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 21, manaCost = 12, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [5] = { 0.10000000149012, 1.8999999761581, 1, 1000, -34, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 25, manaCost = 13, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [6] = { 0.10000000149012, 1.8999999761581, 1, 1000, -35, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 29, manaCost = 14, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [7] = { 0.10000000149012, 1.8999999761581, 1, 1000, -36, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 33, manaCost = 16, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [8] = { 0.10000000149012, 1.8999999761581, 1, 1000, -37, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 36, manaCost = 16, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [9] = { 0.10000000149012, 1.8999999761581, 1, 1000, -38, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 39, manaCost = 17, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [10] = { 0.10000000149012, 1.8999999761581, 1, 1000, -39, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 42, manaCost = 18, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [11] = { 0.10000000149012, 1.8999999761581, 1, 1000, -40, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 45, manaCost = 19, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [12] = { 0.10000000149012, 1.8999999761581, 1, 1000, -41, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 48, manaCost = 20, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [13] = { 0.10000000149012, 1.8999999761581, 1, 1000, -42, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 51, manaCost = 21, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [14] = { 0.10000000149012, 1.8999999761581, 1, 1000, -43, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 54, manaCost = 22, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [15] = { 0.10000000149012, 1.8999999761581, 1, 1000, -44, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 57, manaCost = 23, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [16] = { 0.10000000149012, 1.8999999761581, 1, 1000, -45, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 60, manaCost = 23, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [17] = { 0.10000000149012, 1.8999999761581, 1, 1000, -46, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 63, manaCost = 24, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [18] = { 0.10000000149012, 1.8999999761581, 1, 1000, -47, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 66, manaCost = 25, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [19] = { 0.10000000149012, 1.8999999761581, 1, 1000, -48, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 68, manaCost = 26, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [20] = { 0.10000000149012, 1.8999999761581, 1, 1000, -49, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 70, manaCost = 26, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [21] = { 0.10000000149012, 1.8999999761581, 1, 1000, -50, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 72, manaCost = 27, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [22] = { 0.10000000149012, 1.8999999761581, 1, 1000, -51, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 74, manaCost = 27, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [23] = { 0.10000000149012, 1.8999999761581, 1, 1000, -52, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 76, manaCost = 28, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [24] = { 0.10000000149012, 1.8999999761581, 1, 1000, -53, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 78, manaCost = 29, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [25] = { 0.10000000149012, 1.8999999761581, 1, 1000, -54, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 80, manaCost = 29, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [26] = { 0.10000000149012, 1.8999999761581, 1, 1000, -55, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 82, manaCost = 30, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [27] = { 0.10000000149012, 1.8999999761581, 1, 1000, -56, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 84, manaCost = 30, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [28] = { 0.10000000149012, 1.8999999761581, 1, 1000, -57, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 86, manaCost = 31, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [29] = { 0.10000000149012, 1.8999999761581, 1, 1000, -58, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 88, manaCost = 32, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [30] = { 0.10000000149012, 1.8999999761581, 1, 1000, -59, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 90, manaCost = 32, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [31] = { 0.10000000149012, 1.8999999761581, 1, 1000, -60, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 91, manaCost = 32, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [32] = { 0.10000000149012, 1.8999999761581, 1, 1000, -60, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 92, manaCost = 33, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [33] = { 0.10000000149012, 1.8999999761581, 1, 1000, -61, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 93, manaCost = 33, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [34] = { 0.10000000149012, 1.8999999761581, 1, 1000, -61, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 94, manaCost = 33, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [35] = { 0.10000000149012, 1.8999999761581, 1, 1000, -62, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 95, manaCost = 34, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [36] = { 0.10000000149012, 1.8999999761581, 1, 1000, -62, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 96, manaCost = 34, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [37] = { 0.10000000149012, 1.8999999761581, 1, 1000, -63, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 97, manaCost = 34, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [38] = { 0.10000000149012, 1.8999999761581, 1, 1000, -63, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 98, manaCost = 34, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [39] = { 0.10000000149012, 1.8999999761581, 1, 1000, -64, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 99, manaCost = 35, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, + [40] = { 0.10000000149012, 1.8999999761581, 1, 1000, -64, 50, damageEffectiveness = 0.6, critChance = 5, levelRequirement = 100, manaCost = 35, statInterpolation = { 3, 3, 1, 1, 1, 1, }, }, }, } skills["VaalLightningWarpInstant"] = { @@ -4749,7 +4749,7 @@ skills["DamageOverTimeAura"] = { baseEffectiveness = 1.5, incrementalEffectiveness = 0.025000000372529, description = "Casts an aura that multiplies damage over time and increases skill effect duration of you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -4826,7 +4826,7 @@ skills["OrbOfStorms"] = { baseEffectiveness = 0.82090002298355, incrementalEffectiveness = 0.040699999779463, description = "Creates a stationary electrical orb that frequently unleashes a splitting bolt of lightning at a nearby enemy. Modifiers to cast speed will increase how frequently it does this. Using a lightning skill while inside the orb's cloud unleashes additional bolts. Casting this skill again will replace the previous orb.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.LightningSkill] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Chaining] = true, [SkillType.Triggerable] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.LightningSkill] = true, [SkillType.Duration] = true, [SkillType.Area] = true, [SkillType.Chaining] = true, [SkillType.Triggerable] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "beam_skill_stat_descriptions", castTime = 0.5, baseFlags = { @@ -4920,46 +4920,46 @@ skills["PowerSiphon"] = { "skill_can_fire_wand_projectiles", }, levels = { - [1] = { 4, 20, 10, 20, damageEffectiveness = 1.25, baseMultiplier = 1.25, levelRequirement = 12, manaCost = 7, statInterpolation = { 1, 1, 1, 1, }, }, - [2] = { 4, 20, 10, 20, damageEffectiveness = 1.26, baseMultiplier = 1.264, levelRequirement = 15, manaCost = 7, statInterpolation = { 1, 1, 1, 1, }, }, - [3] = { 4, 20, 10, 20, damageEffectiveness = 1.28, baseMultiplier = 1.277, levelRequirement = 19, manaCost = 7, statInterpolation = { 1, 1, 1, 1, }, }, - [4] = { 4, 20, 10, 20, damageEffectiveness = 1.29, baseMultiplier = 1.291, levelRequirement = 23, manaCost = 8, statInterpolation = { 1, 1, 1, 1, }, }, - [5] = { 4, 20, 10, 20, damageEffectiveness = 1.3, baseMultiplier = 1.304, levelRequirement = 27, manaCost = 8, statInterpolation = { 1, 1, 1, 1, }, }, - [6] = { 5, 20, 10, 20, damageEffectiveness = 1.32, baseMultiplier = 1.318, levelRequirement = 31, manaCost = 8, statInterpolation = { 1, 1, 1, 1, }, }, - [7] = { 5, 20, 10, 20, damageEffectiveness = 1.33, baseMultiplier = 1.331, levelRequirement = 35, manaCost = 8, statInterpolation = { 1, 1, 1, 1, }, }, - [8] = { 5, 20, 10, 20, damageEffectiveness = 1.35, baseMultiplier = 1.345, levelRequirement = 38, manaCost = 8, statInterpolation = { 1, 1, 1, 1, }, }, - [9] = { 5, 20, 10, 20, damageEffectiveness = 1.36, baseMultiplier = 1.358, levelRequirement = 41, manaCost = 9, statInterpolation = { 1, 1, 1, 1, }, }, - [10] = { 5, 20, 10, 20, damageEffectiveness = 1.37, baseMultiplier = 1.372, levelRequirement = 44, manaCost = 9, statInterpolation = { 1, 1, 1, 1, }, }, - [11] = { 6, 20, 10, 20, damageEffectiveness = 1.39, baseMultiplier = 1.385, levelRequirement = 47, manaCost = 9, statInterpolation = { 1, 1, 1, 1, }, }, - [12] = { 6, 20, 10, 20, damageEffectiveness = 1.4, baseMultiplier = 1.399, levelRequirement = 50, manaCost = 9, statInterpolation = { 1, 1, 1, 1, }, }, - [13] = { 6, 20, 10, 20, damageEffectiveness = 1.41, baseMultiplier = 1.412, levelRequirement = 53, manaCost = 9, statInterpolation = { 1, 1, 1, 1, }, }, - [14] = { 6, 20, 10, 20, damageEffectiveness = 1.43, baseMultiplier = 1.426, levelRequirement = 56, manaCost = 10, statInterpolation = { 1, 1, 1, 1, }, }, - [15] = { 6, 20, 10, 20, damageEffectiveness = 1.44, baseMultiplier = 1.439, levelRequirement = 59, manaCost = 10, statInterpolation = { 1, 1, 1, 1, }, }, - [16] = { 7, 20, 10, 20, damageEffectiveness = 1.45, baseMultiplier = 1.453, levelRequirement = 62, manaCost = 10, statInterpolation = { 1, 1, 1, 1, }, }, - [17] = { 7, 20, 10, 20, damageEffectiveness = 1.47, baseMultiplier = 1.466, levelRequirement = 64, manaCost = 10, statInterpolation = { 1, 1, 1, 1, }, }, - [18] = { 7, 20, 10, 20, damageEffectiveness = 1.48, baseMultiplier = 1.48, levelRequirement = 66, manaCost = 10, statInterpolation = { 1, 1, 1, 1, }, }, - [19] = { 7, 20, 10, 20, damageEffectiveness = 1.49, baseMultiplier = 1.493, levelRequirement = 68, manaCost = 11, statInterpolation = { 1, 1, 1, 1, }, }, - [20] = { 7, 20, 10, 20, damageEffectiveness = 1.51, baseMultiplier = 1.507, levelRequirement = 70, manaCost = 11, statInterpolation = { 1, 1, 1, 1, }, }, - [21] = { 8, 20, 10, 20, damageEffectiveness = 1.52, baseMultiplier = 1.52, levelRequirement = 72, manaCost = 11, statInterpolation = { 1, 1, 1, 1, }, }, - [22] = { 8, 20, 10, 20, damageEffectiveness = 1.53, baseMultiplier = 1.534, levelRequirement = 74, manaCost = 11, statInterpolation = { 1, 1, 1, 1, }, }, - [23] = { 8, 20, 10, 20, damageEffectiveness = 1.55, baseMultiplier = 1.547, levelRequirement = 76, manaCost = 11, statInterpolation = { 1, 1, 1, 1, }, }, - [24] = { 8, 20, 10, 20, damageEffectiveness = 1.56, baseMultiplier = 1.561, levelRequirement = 78, manaCost = 11, statInterpolation = { 1, 1, 1, 1, }, }, - [25] = { 8, 20, 10, 20, damageEffectiveness = 1.57, baseMultiplier = 1.574, levelRequirement = 80, manaCost = 11, statInterpolation = { 1, 1, 1, 1, }, }, - [26] = { 9, 20, 10, 20, damageEffectiveness = 1.59, baseMultiplier = 1.588, levelRequirement = 82, manaCost = 12, statInterpolation = { 1, 1, 1, 1, }, }, - [27] = { 9, 20, 10, 20, damageEffectiveness = 1.6, baseMultiplier = 1.601, levelRequirement = 84, manaCost = 12, statInterpolation = { 1, 1, 1, 1, }, }, - [28] = { 9, 20, 10, 20, damageEffectiveness = 1.62, baseMultiplier = 1.615, levelRequirement = 86, manaCost = 12, statInterpolation = { 1, 1, 1, 1, }, }, - [29] = { 9, 20, 10, 20, damageEffectiveness = 1.63, baseMultiplier = 1.628, levelRequirement = 88, manaCost = 12, statInterpolation = { 1, 1, 1, 1, }, }, - [30] = { 9, 20, 10, 20, damageEffectiveness = 1.64, baseMultiplier = 1.642, levelRequirement = 90, manaCost = 12, statInterpolation = { 1, 1, 1, 1, }, }, - [31] = { 10, 20, 10, 20, damageEffectiveness = 1.65, baseMultiplier = 1.649, levelRequirement = 91, manaCost = 12, statInterpolation = { 1, 1, 1, 1, }, }, - [32] = { 10, 20, 10, 20, damageEffectiveness = 1.66, baseMultiplier = 1.656, levelRequirement = 92, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, - [33] = { 10, 20, 10, 20, damageEffectiveness = 1.66, baseMultiplier = 1.663, levelRequirement = 93, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, - [34] = { 10, 20, 10, 20, damageEffectiveness = 1.67, baseMultiplier = 1.67, levelRequirement = 94, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, - [35] = { 10, 20, 10, 20, damageEffectiveness = 1.68, baseMultiplier = 1.677, levelRequirement = 95, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, - [36] = { 11, 20, 10, 20, damageEffectiveness = 1.68, baseMultiplier = 1.684, levelRequirement = 96, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, - [37] = { 11, 20, 10, 20, damageEffectiveness = 1.69, baseMultiplier = 1.691, levelRequirement = 97, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, - [38] = { 11, 20, 10, 20, damageEffectiveness = 1.7, baseMultiplier = 1.698, levelRequirement = 98, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, - [39] = { 11, 20, 10, 20, damageEffectiveness = 1.71, baseMultiplier = 1.705, levelRequirement = 99, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, - [40] = { 11, 20, 10, 20, damageEffectiveness = 1.71, baseMultiplier = 1.712, levelRequirement = 100, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, + [1] = { 4, 20, 10, 20, damageEffectiveness = 1.4, baseMultiplier = 1.4, levelRequirement = 12, manaCost = 7, statInterpolation = { 1, 1, 1, 1, }, }, + [2] = { 4, 20, 10, 20, damageEffectiveness = 1.41, baseMultiplier = 1.41, levelRequirement = 15, manaCost = 7, statInterpolation = { 1, 1, 1, 1, }, }, + [3] = { 4, 20, 10, 20, damageEffectiveness = 1.42, baseMultiplier = 1.42, levelRequirement = 19, manaCost = 7, statInterpolation = { 1, 1, 1, 1, }, }, + [4] = { 4, 20, 10, 20, damageEffectiveness = 1.43, baseMultiplier = 1.43, levelRequirement = 23, manaCost = 8, statInterpolation = { 1, 1, 1, 1, }, }, + [5] = { 4, 20, 10, 20, damageEffectiveness = 1.44, baseMultiplier = 1.44, levelRequirement = 27, manaCost = 8, statInterpolation = { 1, 1, 1, 1, }, }, + [6] = { 5, 20, 10, 20, damageEffectiveness = 1.45, baseMultiplier = 1.45, levelRequirement = 31, manaCost = 8, statInterpolation = { 1, 1, 1, 1, }, }, + [7] = { 5, 20, 10, 20, damageEffectiveness = 1.46, baseMultiplier = 1.46, levelRequirement = 35, manaCost = 8, statInterpolation = { 1, 1, 1, 1, }, }, + [8] = { 5, 20, 10, 20, damageEffectiveness = 1.47, baseMultiplier = 1.47, levelRequirement = 38, manaCost = 8, statInterpolation = { 1, 1, 1, 1, }, }, + [9] = { 5, 20, 10, 20, damageEffectiveness = 1.48, baseMultiplier = 1.48, levelRequirement = 41, manaCost = 9, statInterpolation = { 1, 1, 1, 1, }, }, + [10] = { 5, 20, 10, 20, damageEffectiveness = 1.49, baseMultiplier = 1.49, levelRequirement = 44, manaCost = 9, statInterpolation = { 1, 1, 1, 1, }, }, + [11] = { 6, 20, 10, 20, damageEffectiveness = 1.5, baseMultiplier = 1.5, levelRequirement = 47, manaCost = 9, statInterpolation = { 1, 1, 1, 1, }, }, + [12] = { 6, 20, 10, 20, damageEffectiveness = 1.51, baseMultiplier = 1.51, levelRequirement = 50, manaCost = 9, statInterpolation = { 1, 1, 1, 1, }, }, + [13] = { 6, 20, 10, 20, damageEffectiveness = 1.52, baseMultiplier = 1.52, levelRequirement = 53, manaCost = 9, statInterpolation = { 1, 1, 1, 1, }, }, + [14] = { 6, 20, 10, 20, damageEffectiveness = 1.53, baseMultiplier = 1.53, levelRequirement = 56, manaCost = 10, statInterpolation = { 1, 1, 1, 1, }, }, + [15] = { 6, 20, 10, 20, damageEffectiveness = 1.54, baseMultiplier = 1.54, levelRequirement = 59, manaCost = 10, statInterpolation = { 1, 1, 1, 1, }, }, + [16] = { 7, 20, 10, 20, damageEffectiveness = 1.55, baseMultiplier = 1.55, levelRequirement = 62, manaCost = 10, statInterpolation = { 1, 1, 1, 1, }, }, + [17] = { 7, 20, 10, 20, damageEffectiveness = 1.56, baseMultiplier = 1.56, levelRequirement = 64, manaCost = 10, statInterpolation = { 1, 1, 1, 1, }, }, + [18] = { 7, 20, 10, 20, damageEffectiveness = 1.57, baseMultiplier = 1.57, levelRequirement = 66, manaCost = 10, statInterpolation = { 1, 1, 1, 1, }, }, + [19] = { 7, 20, 10, 20, damageEffectiveness = 1.58, baseMultiplier = 1.58, levelRequirement = 68, manaCost = 11, statInterpolation = { 1, 1, 1, 1, }, }, + [20] = { 7, 20, 10, 20, damageEffectiveness = 1.59, baseMultiplier = 1.59, levelRequirement = 70, manaCost = 11, statInterpolation = { 1, 1, 1, 1, }, }, + [21] = { 8, 20, 10, 20, damageEffectiveness = 1.6, baseMultiplier = 1.6, levelRequirement = 72, manaCost = 11, statInterpolation = { 1, 1, 1, 1, }, }, + [22] = { 8, 20, 10, 20, damageEffectiveness = 1.61, baseMultiplier = 1.61, levelRequirement = 74, manaCost = 11, statInterpolation = { 1, 1, 1, 1, }, }, + [23] = { 8, 20, 10, 20, damageEffectiveness = 1.62, baseMultiplier = 1.62, levelRequirement = 76, manaCost = 11, statInterpolation = { 1, 1, 1, 1, }, }, + [24] = { 8, 20, 10, 20, damageEffectiveness = 1.63, baseMultiplier = 1.63, levelRequirement = 78, manaCost = 11, statInterpolation = { 1, 1, 1, 1, }, }, + [25] = { 8, 20, 10, 20, damageEffectiveness = 1.64, baseMultiplier = 1.64, levelRequirement = 80, manaCost = 11, statInterpolation = { 1, 1, 1, 1, }, }, + [26] = { 9, 20, 10, 20, damageEffectiveness = 1.65, baseMultiplier = 1.65, levelRequirement = 82, manaCost = 12, statInterpolation = { 1, 1, 1, 1, }, }, + [27] = { 9, 20, 10, 20, damageEffectiveness = 1.66, baseMultiplier = 1.66, levelRequirement = 84, manaCost = 12, statInterpolation = { 1, 1, 1, 1, }, }, + [28] = { 9, 20, 10, 20, damageEffectiveness = 1.67, baseMultiplier = 1.67, levelRequirement = 86, manaCost = 12, statInterpolation = { 1, 1, 1, 1, }, }, + [29] = { 9, 20, 10, 20, damageEffectiveness = 1.68, baseMultiplier = 1.68, levelRequirement = 88, manaCost = 12, statInterpolation = { 1, 1, 1, 1, }, }, + [30] = { 9, 20, 10, 20, damageEffectiveness = 1.69, baseMultiplier = 1.69, levelRequirement = 90, manaCost = 12, statInterpolation = { 1, 1, 1, 1, }, }, + [31] = { 10, 20, 10, 20, damageEffectiveness = 1.7, baseMultiplier = 1.695, levelRequirement = 91, manaCost = 12, statInterpolation = { 1, 1, 1, 1, }, }, + [32] = { 10, 20, 10, 20, damageEffectiveness = 1.7, baseMultiplier = 1.7, levelRequirement = 92, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, + [33] = { 10, 20, 10, 20, damageEffectiveness = 1.71, baseMultiplier = 1.705, levelRequirement = 93, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, + [34] = { 10, 20, 10, 20, damageEffectiveness = 1.71, baseMultiplier = 1.71, levelRequirement = 94, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, + [35] = { 10, 20, 10, 20, damageEffectiveness = 1.72, baseMultiplier = 1.715, levelRequirement = 95, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, + [36] = { 11, 20, 10, 20, damageEffectiveness = 1.72, baseMultiplier = 1.72, levelRequirement = 96, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, + [37] = { 11, 20, 10, 20, damageEffectiveness = 1.73, baseMultiplier = 1.725, levelRequirement = 97, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, + [38] = { 11, 20, 10, 20, damageEffectiveness = 1.73, baseMultiplier = 1.73, levelRequirement = 98, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, + [39] = { 11, 20, 10, 20, damageEffectiveness = 1.74, baseMultiplier = 1.735, levelRequirement = 99, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, + [40] = { 11, 20, 10, 20, damageEffectiveness = 1.74, baseMultiplier = 1.74, levelRequirement = 100, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, }, } skills["VaalPowerSiphon"] = { @@ -5127,7 +5127,7 @@ skills["Purity"] = { name = "Purity of Elements", color = 3, description = "Casts an aura that grants elemental resistances to you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -5210,7 +5210,7 @@ skills["LightningResistAura"] = { name = "Purity of Lightning", color = 3, description = "Casts an aura that grants lightning resistance to you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.LightningSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.LightningSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -5285,7 +5285,7 @@ skills["LightningImpurity"] = { name = "Vaal Impurity of Lightning", color = 3, description = "Casts an aura that reduces lightning damage taken and provides shock immunity to you and nearby allies, and makes hits against nearby enemies ignore their lightning resistance. ", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, [SkillType.LightningSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, [SkillType.LightningSkill] = true, [SkillType.Instant] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -5366,9 +5366,9 @@ skills["MortarBarrageMine"] = { baseEffectiveness = 0.90490001440048, 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 dealing damage in a smaller area.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Projectile] = true, [SkillType.FireSkill] = true, [SkillType.Mine] = true, [SkillType.Area] = true, [SkillType.ManaCostReserved] = true, [SkillType.Aura] = true, [SkillType.AuraDebuff] = true, [SkillType.Type83] = true, [SkillType.NovaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Projectile] = true, [SkillType.FireSkill] = true, [SkillType.Mine] = true, [SkillType.Area] = true, [SkillType.ManaCostReserved] = true, [SkillType.Aura] = true, [SkillType.AuraDebuff] = true, [SkillType.Type83] = true, [SkillType.NovaSpell] = true, [SkillType.Type87] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.25, + 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" }), @@ -5415,7 +5415,7 @@ skills["MortarBarrageMine"] = { "is_remote_mine", "is_area_damage", "base_is_projectile", - "display_additional_projectile_per_2_mines_in_detonation_sequence", + "display_additional_projectile_per_4_mines_in_detonation_sequence", }, levels = { [1] = { 0.80000001192093, 1.2000000476837, 5000, 350, 0.03999999910593, 0.059999998658895, 2, 3, 2, damageEffectiveness = 0.8, critChance = 5.5, levelRequirement = 28, manaCost = 4, statInterpolation = { 3, 3, 1, 1, 3, 3, 3, 3, 1, }, }, @@ -5509,35 +5509,35 @@ skills["RaiseSpectre"] = { [9] = { 1, 55, -53, 53, 382, manaCost = 21, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, 1, }, }, [10] = { 1, 55, -53, 56, 430, manaCost = 22, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, 1, }, }, [11] = { 1, 55, -53, 58, 468, manaCost = 22, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [12] = { 1, 55, -53, 61, 528, manaCost = 23, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [13] = { 2, 55, -53, 63, 571, manaCost = 24, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [14] = { 2, 55, -53, 65, 617, manaCost = 24, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [15] = { 2, 55, -53, 68, 696, manaCost = 25, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [16] = { 2, 55, -53, 70, 754, manaCost = 25, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [17] = { 2, 55, -53, 73, 845, manaCost = 26, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [18] = { 2, 55, -53, 75, 914, manaCost = 27, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [19] = { 2, 55, -53, 77, 989, manaCost = 27, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [20] = { 2, 55, -53, 80, 1109, manaCost = 28, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [21] = { 2, 55, -53, 81, 1152, manaCost = 29, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [22] = { 2, 55, -53, 82, 1198, manaCost = 29, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [23] = { 2, 55, -53, 83, 1243, manaCost = 30, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [24] = { 2, 55, -53, 84, 1291, manaCost = 30, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [25] = { 3, 55, -53, 85, 1342, manaCost = 31, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [26] = { 3, 55, -53, 86, 1392, manaCost = 32, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [27] = { 3, 55, -53, 87, 1447, manaCost = 32, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [28] = { 3, 55, -53, 88, 1502, manaCost = 33, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [29] = { 3, 55, -53, 89, 1560, manaCost = 33, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [30] = { 3, 55, -53, 90, 1620, manaCost = 34, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [31] = { 3, 55, -53, 91, 1682, manaCost = 34, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [32] = { 3, 55, -53, 92, 1747, manaCost = 35, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [33] = { 3, 55, -53, 93, 1812, manaCost = 35, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [34] = { 3, 55, -53, 94, 1882, manaCost = 35, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [35] = { 3, 55, -53, 95, 1954, manaCost = 36, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [36] = { 3, 55, -53, 96, 2028, manaCost = 36, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [37] = { 3, 55, -53, 97, 2105, manaCost = 36, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [38] = { 3, 55, -53, 98, 2184, manaCost = 37, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [39] = { 3, 55, -53, 99, 2268, manaCost = 37, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [40] = { 3, 55, -53, 100, 2352, manaCost = 37, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [12] = { 1, 55, -53, 60, 528, manaCost = 23, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [13] = { 2, 55, -53, 62, 571, manaCost = 24, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [14] = { 2, 55, -53, 64, 617, manaCost = 24, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [15] = { 2, 55, -53, 66, 696, manaCost = 25, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [16] = { 2, 55, -53, 68, 754, manaCost = 25, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [17] = { 2, 55, -53, 70, 845, manaCost = 26, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [18] = { 2, 55, -53, 72, 914, manaCost = 27, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [19] = { 2, 55, -53, 74, 989, manaCost = 27, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [20] = { 2, 55, -53, 76, 1109, manaCost = 28, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [21] = { 2, 55, -53, 78, 1152, manaCost = 29, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [22] = { 2, 55, -53, 80, 1198, manaCost = 29, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [23] = { 2, 55, -53, 81, 1243, manaCost = 30, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [24] = { 2, 55, -53, 82, 1291, manaCost = 30, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [25] = { 3, 55, -53, 83, 1342, manaCost = 31, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [26] = { 3, 55, -53, 84, 1392, manaCost = 32, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [27] = { 3, 55, -53, 85, 1447, manaCost = 32, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [28] = { 3, 55, -53, 86, 1502, manaCost = 33, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [29] = { 3, 55, -53, 87, 1560, manaCost = 33, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [30] = { 3, 55, -53, 88, 1620, manaCost = 34, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [31] = { 3, 55, -53, 89, 1682, manaCost = 34, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [32] = { 3, 55, -53, 90, 1747, manaCost = 35, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [33] = { 3, 55, -53, 91, 1812, manaCost = 35, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [34] = { 3, 55, -53, 92, 1882, manaCost = 35, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [35] = { 3, 55, -53, 93, 1954, manaCost = 36, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [36] = { 3, 55, -53, 94, 2028, manaCost = 36, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [37] = { 3, 55, -53, 95, 2105, manaCost = 36, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [38] = { 3, 55, -53, 96, 2184, manaCost = 37, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [39] = { 3, 55, -53, 97, 2268, manaCost = 37, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [40] = { 3, 55, -53, 98, 2352, manaCost = 37, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, }, }, }, } skills["RaiseZombie"] = { @@ -5587,37 +5587,37 @@ skills["RaiseZombie"] = { [7] = { 4, 0, 1, 20, 24, 24, manaCost = 18, levelRequirement = 20, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, [8] = { 4, 0, 1, 24, 28, 28, manaCost = 21, levelRequirement = 24, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, [9] = { 4, 0, 1, 28, 32, 32, manaCost = 24, levelRequirement = 28, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [10] = { 5, 0, 1, 32, 36, 36, manaCost = 26, levelRequirement = 32, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [11] = { 5, 0, 1, 36, 40, 40, manaCost = 28, levelRequirement = 36, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [10] = { 4, 0, 1, 32, 36, 36, manaCost = 26, levelRequirement = 32, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [11] = { 4, 0, 1, 36, 40, 40, manaCost = 28, levelRequirement = 36, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, [12] = { 5, 0, 1, 40, 44, 44, manaCost = 30, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, [13] = { 5, 0, 1, 44, 48, 48, manaCost = 31, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, [14] = { 5, 0, 1, 48, 52, 52, manaCost = 32, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [15] = { 6, 0, 1, 52, 56, 56, manaCost = 33, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [16] = { 6, 0, 1, 56, 60, 60, manaCost = 34, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [17] = { 6, 0, 1, 60, 64, 64, manaCost = 35, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [15] = { 5, 0, 1, 52, 56, 56, manaCost = 33, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [16] = { 5, 0, 1, 56, 60, 60, manaCost = 34, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [17] = { 5, 0, 1, 60, 64, 64, manaCost = 35, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, [18] = { 6, 0, 1, 64, 68, 68, manaCost = 36, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, [19] = { 6, 0, 1, 67, 72, 72, manaCost = 37, levelRequirement = 67, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [20] = { 7, 0, 1, 70, 76, 76, manaCost = 38, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [21] = { 7, 0, 1, 72, 80, 80, manaCost = 38, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [22] = { 7, 0, 1, 74, 84, 84, manaCost = 38, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [23] = { 7, 0, 1, 76, 88, 88, manaCost = 38, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [24] = { 7, 0, 1, 78, 92, 92, manaCost = 39, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [25] = { 8, 0, 1, 80, 96, 96, manaCost = 40, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [26] = { 8, 0, 1, 82, 100, 100, manaCost = 40, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [27] = { 8, 0, 1, 84, 104, 104, manaCost = 41, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [28] = { 8, 0, 1, 86, 108, 108, manaCost = 42, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [29] = { 8, 0, 1, 88, 112, 112, manaCost = 42, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [30] = { 9, 0, 1, 90, 116, 116, manaCost = 42, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [31] = { 9, 0, 1, 91, 118, 118, manaCost = 43, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [32] = { 9, 0, 1, 92, 120, 120, manaCost = 43, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [33] = { 9, 0, 1, 93, 122, 122, manaCost = 44, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [34] = { 9, 0, 1, 94, 124, 124, manaCost = 44, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [35] = { 10, 0, 1, 95, 126, 126, manaCost = 44, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [36] = { 10, 0, 1, 96, 128, 128, manaCost = 44, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [37] = { 10, 0, 1, 97, 130, 130, manaCost = 44, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [38] = { 10, 0, 1, 98, 132, 132, manaCost = 44, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [39] = { 10, 0, 1, 99, 134, 134, manaCost = 44, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [40] = { 11, 0, 1, 100, 136, 136, manaCost = 44, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [20] = { 6, 0, 1, 70, 76, 76, manaCost = 38, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [21] = { 6, 0, 1, 72, 80, 80, manaCost = 38, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [22] = { 6, 0, 1, 74, 84, 84, manaCost = 38, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [23] = { 6, 0, 1, 76, 88, 88, manaCost = 38, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [24] = { 6, 0, 1, 78, 92, 92, manaCost = 39, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [25] = { 7, 0, 1, 80, 96, 96, manaCost = 40, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [26] = { 7, 0, 1, 82, 100, 100, manaCost = 40, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [27] = { 7, 0, 1, 84, 104, 104, manaCost = 41, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [28] = { 7, 0, 1, 86, 108, 108, manaCost = 42, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [29] = { 7, 0, 1, 88, 112, 112, manaCost = 42, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [30] = { 7, 0, 1, 90, 116, 116, manaCost = 42, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [31] = { 7, 0, 1, 91, 118, 118, manaCost = 43, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [32] = { 7, 0, 1, 92, 120, 120, manaCost = 43, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [33] = { 7, 0, 1, 93, 122, 122, manaCost = 44, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [34] = { 8, 0, 1, 94, 124, 124, manaCost = 44, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [35] = { 8, 0, 1, 95, 126, 126, manaCost = 44, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [36] = { 8, 0, 1, 96, 128, 128, manaCost = 44, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [37] = { 8, 0, 1, 97, 130, 130, manaCost = 44, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [38] = { 8, 0, 1, 98, 132, 132, manaCost = 44, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [39] = { 8, 0, 1, 99, 134, 134, manaCost = 44, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [40] = { 8, 0, 1, 100, 136, 136, manaCost = 44, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, }, } skills["RighteousFire"] = { @@ -5626,7 +5626,7 @@ skills["RighteousFire"] = { baseEffectiveness = 1.6660000085831, incrementalEffectiveness = 0.050000000745058, description = "Engulfs you in magical fire that rapidly burns you and nearby enemies. Your spell damage is substantially increased while under this effect. The effect ends when you have 1 life remaining.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.CausesBurning] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.CausesBurning] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, preDamageFunc = function(activeSkill, output) @@ -5671,7 +5671,6 @@ skills["RighteousFire"] = { "base_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute", "active_skill_base_radius_+", "base_fire_damage_to_deal_per_minute", - "instant_skill_is_added_to_held_skills_list", }, levels = { [1] = { 20, 1200, 5400, 1200, 4200, 0, 66.666668156783, cooldown = 0.3, levelRequirement = 16, statInterpolation = { 1, 1, 1, 1, 1, 1, 3, }, }, @@ -5720,7 +5719,7 @@ skills["VaalRighteousFire"] = { name = "Vaal Righteous Fire", color = 3, description = "Sacrifices a portion of your Life and Energy Shield to engulf you in magical fire that rapidly burns nearby enemies for a duration. Your spell damage is substantially increased while under this effect.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.CausesBurning] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanTotem] = true, [SkillType.Vaal] = true, [SkillType.Duration] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.CausesBurning] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanTotem] = true, [SkillType.Vaal] = true, [SkillType.Duration] = true, [SkillType.AreaSpell] = true, [SkillType.Instant] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -5749,7 +5748,6 @@ skills["VaalRighteousFire"] = { "vaal_righteous_fire_spell_damage_+%_final", "is_area_damage", "modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration", - "instant_skill_is_added_to_held_skills_list", }, levels = { [1] = { 30, 161, 4000, 15, cooldown = 0.5, levelRequirement = 16, statInterpolation = { 1, 1, 1, 1, }, }, @@ -5971,7 +5969,7 @@ skills["IceSiphonTrap"] = { baseEffectiveness = 5.8765997886658, incrementalEffectiveness = 0.032499998807907, description = "Throws a trap that applies debuff beams to a number of nearby enemies for a duration. The beams chill enemies and deal cold damage over time. A beam is also applied to you, granting life and mana regeneration based on the number of debuff beams affecting enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Trap] = true, [SkillType.ColdSkill] = true, [SkillType.DamageOverTime] = true, [SkillType.Type59] = true, [SkillType.NonHitChill] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Trap] = true, [SkillType.ColdSkill] = true, [SkillType.DamageOverTime] = true, [SkillType.Type59] = true, [SkillType.NonHitChill] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 1, statMap = { @@ -6280,7 +6278,7 @@ skills["VaalSparkSpiralNova"] = { skills["SpiritOffering"] = { name = "Spirit Offering", color = 3, - description = "Consumes a corpse, granting energy shield, extra chaos damage and elemental resistances to your minions. The new energy shield is recovered as it's granted. The skill consumes other nearby corpses, increasing the duration and amount of energy shield granted for each corpse consumed.", + description = "Consumes a corpse, granting extra chaos damage, elemental resistances and chaos resistance to your minions. The skill consumes other nearby corpses, increasing the duration for each corpse consumed.", skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Minion] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.SkillCanTotem] = true, [SkillType.SpellCanCascade] = true, [SkillType.ChaosSkill] = true, }, statDescriptionScope = "offering_skill_stat_descriptions", castTime = 1, @@ -6291,6 +6289,9 @@ skills["SpiritOffering"] = { ["base_resist_all_elements_%"] = { mod("ElementalResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), }, + ["base_chaos_damage_resistance_%"] = { + mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + }, }, baseFlags = { spell = true, @@ -6306,52 +6307,52 @@ skills["SpiritOffering"] = { stats = { "base_skill_effect_duration", "offering_skill_effect_duration_per_corpse", - "spirit_offering_life_%_added_as_base_maximum_energy_shield_per_corpse_consumed", + "base_chaos_damage_resistance_%", "physical_damage_%_to_add_as_chaos", "base_resist_all_elements_%", "base_deal_no_damage", }, levels = { - [1] = { 5000, 1000, 4, 20, 20, manaCost = 16, levelRequirement = 12, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [2] = { 5000, 1000, 4, 20, 21, manaCost = 17, levelRequirement = 15, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [3] = { 5000, 1000, 4, 21, 21, manaCost = 18, levelRequirement = 19, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [4] = { 5000, 1000, 4, 21, 22, manaCost = 19, levelRequirement = 23, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [5] = { 5000, 1000, 4, 22, 22, manaCost = 20, levelRequirement = 27, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [6] = { 5000, 1000, 4, 22, 23, manaCost = 21, levelRequirement = 31, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [7] = { 5000, 1000, 4, 23, 23, manaCost = 22, levelRequirement = 35, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [8] = { 5000, 1000, 4, 23, 24, manaCost = 23, levelRequirement = 38, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [9] = { 5000, 1000, 4, 24, 24, manaCost = 24, levelRequirement = 41, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [10] = { 5000, 1000, 4, 24, 25, manaCost = 25, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [11] = { 5000, 1000, 4, 25, 25, manaCost = 26, levelRequirement = 47, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [12] = { 5000, 1000, 4, 25, 26, manaCost = 27, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [13] = { 5000, 1000, 4, 26, 26, manaCost = 28, levelRequirement = 53, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [14] = { 5000, 1000, 4, 26, 27, manaCost = 29, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [15] = { 5000, 1000, 4, 27, 27, manaCost = 29, levelRequirement = 59, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [16] = { 5000, 1000, 4, 27, 28, manaCost = 30, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [17] = { 5000, 1000, 4, 28, 28, manaCost = 30, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [18] = { 5000, 1000, 4, 28, 29, manaCost = 31, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [19] = { 5000, 1000, 4, 29, 29, manaCost = 32, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [20] = { 5000, 1000, 4, 29, 30, manaCost = 33, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [21] = { 5000, 1000, 4, 30, 30, manaCost = 34, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [22] = { 5000, 1000, 4, 30, 31, manaCost = 34, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [23] = { 5000, 1000, 4, 31, 31, manaCost = 35, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [24] = { 5000, 1000, 4, 31, 32, manaCost = 36, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [25] = { 5000, 1000, 4, 32, 32, manaCost = 37, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [26] = { 5000, 1000, 4, 32, 33, manaCost = 38, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [27] = { 5000, 1000, 4, 33, 33, manaCost = 38, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [28] = { 5000, 1000, 4, 33, 34, manaCost = 39, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [29] = { 5000, 1000, 4, 34, 34, manaCost = 40, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [30] = { 5000, 1000, 4, 34, 35, manaCost = 41, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [31] = { 5000, 1000, 4, 34, 35, manaCost = 41, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [32] = { 5000, 1000, 4, 35, 35, manaCost = 42, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [33] = { 5000, 1000, 4, 35, 35, manaCost = 42, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [34] = { 5000, 1000, 4, 35, 36, manaCost = 42, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [35] = { 5000, 1000, 4, 35, 36, manaCost = 42, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [36] = { 5000, 1000, 4, 36, 36, manaCost = 43, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [37] = { 5000, 1000, 4, 36, 36, manaCost = 43, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [38] = { 5000, 1000, 4, 36, 37, manaCost = 44, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [39] = { 5000, 1000, 4, 36, 37, manaCost = 44, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, }, }, - [40] = { 5000, 1000, 4, 37, 37, manaCost = 45, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [1] = { 5000, 1000, 20, 20, 20, manaCost = 16, levelRequirement = 12, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [2] = { 5000, 1000, 21, 20, 21, manaCost = 17, levelRequirement = 15, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [3] = { 5000, 1000, 21, 21, 21, manaCost = 18, levelRequirement = 19, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [4] = { 5000, 1000, 22, 21, 22, manaCost = 19, levelRequirement = 23, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [5] = { 5000, 1000, 22, 22, 22, manaCost = 20, levelRequirement = 27, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [6] = { 5000, 1000, 23, 22, 23, manaCost = 21, levelRequirement = 31, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [7] = { 5000, 1000, 23, 23, 23, manaCost = 22, levelRequirement = 35, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [8] = { 5000, 1000, 24, 23, 24, manaCost = 23, levelRequirement = 38, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [9] = { 5000, 1000, 24, 24, 24, manaCost = 24, levelRequirement = 41, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [10] = { 5000, 1000, 25, 24, 25, manaCost = 25, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [11] = { 5000, 1000, 25, 25, 25, manaCost = 26, levelRequirement = 47, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [12] = { 5000, 1000, 26, 25, 26, manaCost = 27, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [13] = { 5000, 1000, 26, 26, 26, manaCost = 28, levelRequirement = 53, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [14] = { 5000, 1000, 27, 26, 27, manaCost = 29, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [15] = { 5000, 1000, 27, 27, 27, manaCost = 29, levelRequirement = 59, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [16] = { 5000, 1000, 28, 27, 28, manaCost = 30, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [17] = { 5000, 1000, 28, 28, 28, manaCost = 30, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [18] = { 5000, 1000, 29, 28, 29, manaCost = 31, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [19] = { 5000, 1000, 29, 29, 29, manaCost = 32, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [20] = { 5000, 1000, 30, 29, 30, manaCost = 33, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [21] = { 5000, 1000, 30, 30, 30, manaCost = 34, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [22] = { 5000, 1000, 31, 30, 31, manaCost = 34, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [23] = { 5000, 1000, 31, 31, 31, manaCost = 35, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [24] = { 5000, 1000, 32, 31, 32, manaCost = 36, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [25] = { 5000, 1000, 32, 32, 32, manaCost = 37, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [26] = { 5000, 1000, 33, 32, 33, manaCost = 38, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [27] = { 5000, 1000, 33, 33, 33, manaCost = 38, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [28] = { 5000, 1000, 34, 33, 34, manaCost = 39, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [29] = { 5000, 1000, 34, 34, 34, manaCost = 40, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [30] = { 5000, 1000, 35, 34, 35, manaCost = 41, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [31] = { 5000, 1000, 35, 34, 35, manaCost = 41, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [32] = { 5000, 1000, 35, 35, 35, manaCost = 42, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [33] = { 5000, 1000, 35, 35, 35, manaCost = 42, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [34] = { 5000, 1000, 36, 35, 36, manaCost = 42, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [35] = { 5000, 1000, 36, 35, 36, manaCost = 42, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [36] = { 5000, 1000, 36, 36, 36, manaCost = 43, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [37] = { 5000, 1000, 36, 36, 36, manaCost = 43, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [38] = { 5000, 1000, 37, 36, 37, manaCost = 44, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [39] = { 5000, 1000, 37, 36, 37, manaCost = 44, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [40] = { 5000, 1000, 37, 37, 37, manaCost = 45, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, }, }, }, } skills["ConduitSigil"] = { @@ -6447,7 +6448,7 @@ skills["LightningExplosionMine"] = { baseEffectiveness = 1.1905000209808, incrementalEffectiveness = 0.043999999761581, description = "Throws a mine that deals damage in an area when detonated.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Mine] = true, [SkillType.LightningSkill] = true, [SkillType.AreaSpell] = true, [SkillType.ManaCostReserved] = true, [SkillType.Aura] = true, [SkillType.AuraDebuff] = true, [SkillType.NovaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Mine] = true, [SkillType.LightningSkill] = true, [SkillType.AreaSpell] = true, [SkillType.ManaCostReserved] = true, [SkillType.Aura] = true, [SkillType.AuraDebuff] = true, [SkillType.NovaSpell] = true, [SkillType.Type87] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.75, statMap = { @@ -6757,7 +6758,7 @@ skills["SummonBoneGolem"] = { baseEffectiveness = 0.28000000119209, incrementalEffectiveness = 0.020999999716878, description = "Summons a Carrion Golem that grants added physical damage for your non-golem minions. The Carrion Golem attacks with a series of slashes that increase in speed and damage, as well as a cascade of bone spikes, and deals more damage for each of your non-golem minions near it.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.PhysicalSkill] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.PhysicalSkill] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.MovementSkill] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, @@ -6797,53 +6798,53 @@ skills["SummonBoneGolem"] = { "display_minion_monster_level", }, levels = { - [1] = { 0, 1, 0.80000001192093, 1.2000000476837, 8, 80, 30, 7, 34, cooldown = 6, levelRequirement = 34, manaCost = 30, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [2] = { 1, 1, 0.80000001192093, 1.2000000476837, 8, 80, 32, 7, 36, cooldown = 6, levelRequirement = 36, manaCost = 32, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [3] = { 1, 1, 0.80000001192093, 1.2000000476837, 8, 80, 34, 7, 38, cooldown = 6, levelRequirement = 38, manaCost = 34, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [4] = { 2, 1, 0.80000001192093, 1.2000000476837, 8, 80, 36, 7, 40, cooldown = 6, levelRequirement = 40, manaCost = 36, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [5] = { 2, 1, 0.80000001192093, 1.2000000476837, 8, 80, 38, 7, 42, cooldown = 6, levelRequirement = 42, manaCost = 38, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [6] = { 3, 1, 0.80000001192093, 1.2000000476837, 8, 80, 40, 7, 44, cooldown = 6, levelRequirement = 44, manaCost = 40, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [7] = { 3, 1, 0.80000001192093, 1.2000000476837, 8, 80, 42, 7, 46, cooldown = 6, levelRequirement = 46, manaCost = 42, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [8] = { 4, 1, 0.80000001192093, 1.2000000476837, 8, 80, 44, 7, 48, cooldown = 6, levelRequirement = 48, manaCost = 44, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [9] = { 4, 1, 0.80000001192093, 1.2000000476837, 8, 80, 46, 7, 50, cooldown = 6, levelRequirement = 50, manaCost = 44, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [10] = { 5, 1, 0.80000001192093, 1.2000000476837, 8, 80, 48, 7, 52, cooldown = 6, levelRequirement = 52, manaCost = 46, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [11] = { 5, 1, 0.80000001192093, 1.2000000476837, 8, 80, 50, 7, 54, cooldown = 6, levelRequirement = 54, manaCost = 48, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [12] = { 6, 1, 0.80000001192093, 1.2000000476837, 8, 80, 52, 7, 56, cooldown = 6, levelRequirement = 56, manaCost = 48, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [13] = { 6, 1, 0.80000001192093, 1.2000000476837, 8, 80, 54, 7, 58, cooldown = 6, levelRequirement = 58, manaCost = 50, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [14] = { 7, 1, 0.80000001192093, 1.2000000476837, 8, 80, 56, 7, 60, cooldown = 6, levelRequirement = 60, manaCost = 50, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [15] = { 7, 1, 0.80000001192093, 1.2000000476837, 8, 80, 58, 7, 62, cooldown = 6, levelRequirement = 62, manaCost = 52, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [16] = { 8, 1, 0.80000001192093, 1.2000000476837, 8, 80, 60, 7, 64, cooldown = 6, levelRequirement = 64, manaCost = 52, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [17] = { 8, 1, 0.80000001192093, 1.2000000476837, 8, 80, 62, 7, 66, cooldown = 6, levelRequirement = 66, manaCost = 52, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [18] = { 9, 1, 0.80000001192093, 1.2000000476837, 8, 80, 64, 7, 68, cooldown = 6, levelRequirement = 68, manaCost = 52, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [19] = { 9, 1, 0.80000001192093, 1.2000000476837, 8, 80, 66, 7, 69, cooldown = 6, levelRequirement = 69, manaCost = 54, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [20] = { 10, 1, 0.80000001192093, 1.2000000476837, 8, 80, 68, 7, 70, cooldown = 6, levelRequirement = 70, manaCost = 54, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [21] = { 10, 1, 0.80000001192093, 1.2000000476837, 8, 80, 70, 7, 72, cooldown = 6, levelRequirement = 72, manaCost = 56, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [22] = { 11, 1, 0.80000001192093, 1.2000000476837, 8, 80, 72, 7, 74, cooldown = 6, levelRequirement = 74, manaCost = 56, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [23] = { 11, 1, 0.80000001192093, 1.2000000476837, 8, 80, 74, 7, 76, cooldown = 6, levelRequirement = 76, manaCost = 58, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [24] = { 12, 1, 0.80000001192093, 1.2000000476837, 8, 80, 76, 7, 78, cooldown = 6, levelRequirement = 78, manaCost = 58, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [25] = { 12, 1, 0.80000001192093, 1.2000000476837, 8, 80, 78, 7, 80, cooldown = 6, levelRequirement = 80, manaCost = 60, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [26] = { 13, 1, 0.80000001192093, 1.2000000476837, 8, 80, 80, 7, 82, cooldown = 6, levelRequirement = 82, manaCost = 60, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [27] = { 13, 1, 0.80000001192093, 1.2000000476837, 8, 80, 82, 7, 84, cooldown = 6, levelRequirement = 84, manaCost = 60, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [28] = { 14, 1, 0.80000001192093, 1.2000000476837, 8, 80, 84, 7, 86, cooldown = 6, levelRequirement = 86, manaCost = 60, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [29] = { 14, 1, 0.80000001192093, 1.2000000476837, 8, 80, 86, 7, 88, cooldown = 6, levelRequirement = 88, manaCost = 62, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [30] = { 15, 1, 0.80000001192093, 1.2000000476837, 8, 80, 88, 7, 90, cooldown = 6, levelRequirement = 90, manaCost = 62, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [31] = { 15, 1, 0.80000001192093, 1.2000000476837, 8, 80, 89, 7, 91, cooldown = 6, levelRequirement = 91, manaCost = 62, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [32] = { 15, 1, 0.80000001192093, 1.2000000476837, 8, 80, 90, 7, 92, cooldown = 6, levelRequirement = 92, manaCost = 63, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [33] = { 15, 1, 0.80000001192093, 1.2000000476837, 8, 80, 91, 7, 93, cooldown = 6, levelRequirement = 93, manaCost = 63, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [34] = { 16, 1, 0.80000001192093, 1.2000000476837, 8, 80, 92, 7, 94, cooldown = 6, levelRequirement = 94, manaCost = 63, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [35] = { 16, 1, 0.80000001192093, 1.2000000476837, 8, 80, 93, 7, 95, cooldown = 6, levelRequirement = 95, manaCost = 63, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [36] = { 16, 1, 0.80000001192093, 1.2000000476837, 8, 80, 94, 7, 96, cooldown = 6, levelRequirement = 96, manaCost = 64, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [37] = { 16, 1, 0.80000001192093, 1.2000000476837, 8, 80, 95, 7, 97, cooldown = 6, levelRequirement = 97, manaCost = 64, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [38] = { 17, 1, 0.80000001192093, 1.2000000476837, 8, 80, 96, 7, 98, cooldown = 6, levelRequirement = 98, manaCost = 64, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [39] = { 17, 1, 0.80000001192093, 1.2000000476837, 8, 80, 97, 7, 99, cooldown = 6, levelRequirement = 99, manaCost = 64, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, - [40] = { 17, 1, 0.80000001192093, 1.2000000476837, 8, 80, 98, 7, 100, cooldown = 6, levelRequirement = 100, manaCost = 64, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [1] = { 0, 1, 0.80000001192093, 1.2000000476837, 5, 50, 30, 7, 34, cooldown = 6, levelRequirement = 34, manaCost = 30, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [2] = { 1, 1, 0.80000001192093, 1.2000000476837, 5, 50, 32, 7, 36, cooldown = 6, levelRequirement = 36, manaCost = 32, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [3] = { 1, 1, 0.80000001192093, 1.2000000476837, 5, 50, 34, 7, 38, cooldown = 6, levelRequirement = 38, manaCost = 34, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [4] = { 2, 1, 0.80000001192093, 1.2000000476837, 5, 50, 36, 7, 40, cooldown = 6, levelRequirement = 40, manaCost = 36, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [5] = { 2, 1, 0.80000001192093, 1.2000000476837, 5, 50, 38, 7, 42, cooldown = 6, levelRequirement = 42, manaCost = 38, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [6] = { 3, 1, 0.80000001192093, 1.2000000476837, 5, 50, 40, 7, 44, cooldown = 6, levelRequirement = 44, manaCost = 40, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [7] = { 3, 1, 0.80000001192093, 1.2000000476837, 5, 50, 42, 7, 46, cooldown = 6, levelRequirement = 46, manaCost = 42, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [8] = { 4, 1, 0.80000001192093, 1.2000000476837, 5, 50, 44, 7, 48, cooldown = 6, levelRequirement = 48, manaCost = 44, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [9] = { 4, 1, 0.80000001192093, 1.2000000476837, 5, 50, 46, 7, 50, cooldown = 6, levelRequirement = 50, manaCost = 44, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [10] = { 5, 1, 0.80000001192093, 1.2000000476837, 5, 50, 48, 7, 52, cooldown = 6, levelRequirement = 52, manaCost = 46, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [11] = { 5, 1, 0.80000001192093, 1.2000000476837, 5, 50, 50, 7, 54, cooldown = 6, levelRequirement = 54, manaCost = 48, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [12] = { 6, 1, 0.80000001192093, 1.2000000476837, 5, 50, 52, 7, 56, cooldown = 6, levelRequirement = 56, manaCost = 48, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [13] = { 6, 1, 0.80000001192093, 1.2000000476837, 5, 50, 54, 7, 58, cooldown = 6, levelRequirement = 58, manaCost = 50, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [14] = { 7, 1, 0.80000001192093, 1.2000000476837, 5, 50, 56, 7, 60, cooldown = 6, levelRequirement = 60, manaCost = 50, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [15] = { 7, 1, 0.80000001192093, 1.2000000476837, 5, 50, 58, 7, 62, cooldown = 6, levelRequirement = 62, manaCost = 52, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [16] = { 8, 1, 0.80000001192093, 1.2000000476837, 5, 50, 60, 7, 64, cooldown = 6, levelRequirement = 64, manaCost = 52, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [17] = { 8, 1, 0.80000001192093, 1.2000000476837, 5, 50, 62, 7, 66, cooldown = 6, levelRequirement = 66, manaCost = 52, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [18] = { 9, 1, 0.80000001192093, 1.2000000476837, 5, 50, 64, 7, 68, cooldown = 6, levelRequirement = 68, manaCost = 52, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [19] = { 9, 1, 0.80000001192093, 1.2000000476837, 5, 50, 66, 7, 69, cooldown = 6, levelRequirement = 69, manaCost = 54, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [20] = { 10, 1, 0.80000001192093, 1.2000000476837, 5, 50, 68, 7, 70, cooldown = 6, levelRequirement = 70, manaCost = 54, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [21] = { 10, 1, 0.80000001192093, 1.2000000476837, 5, 50, 70, 7, 72, cooldown = 6, levelRequirement = 72, manaCost = 56, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [22] = { 11, 1, 0.80000001192093, 1.2000000476837, 5, 50, 72, 7, 74, cooldown = 6, levelRequirement = 74, manaCost = 56, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [23] = { 11, 1, 0.80000001192093, 1.2000000476837, 5, 50, 74, 7, 76, cooldown = 6, levelRequirement = 76, manaCost = 58, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [24] = { 12, 1, 0.80000001192093, 1.2000000476837, 5, 50, 76, 7, 78, cooldown = 6, levelRequirement = 78, manaCost = 58, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [25] = { 12, 1, 0.80000001192093, 1.2000000476837, 5, 50, 78, 7, 80, cooldown = 6, levelRequirement = 80, manaCost = 60, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [26] = { 13, 1, 0.80000001192093, 1.2000000476837, 5, 50, 80, 7, 82, cooldown = 6, levelRequirement = 82, manaCost = 60, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [27] = { 13, 1, 0.80000001192093, 1.2000000476837, 5, 50, 82, 7, 84, cooldown = 6, levelRequirement = 84, manaCost = 60, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [28] = { 14, 1, 0.80000001192093, 1.2000000476837, 5, 50, 84, 7, 86, cooldown = 6, levelRequirement = 86, manaCost = 60, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [29] = { 14, 1, 0.80000001192093, 1.2000000476837, 5, 50, 86, 7, 88, cooldown = 6, levelRequirement = 88, manaCost = 62, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [30] = { 15, 1, 0.80000001192093, 1.2000000476837, 5, 50, 88, 7, 90, cooldown = 6, levelRequirement = 90, manaCost = 62, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [31] = { 15, 1, 0.80000001192093, 1.2000000476837, 5, 50, 89, 7, 91, cooldown = 6, levelRequirement = 91, manaCost = 62, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [32] = { 15, 1, 0.80000001192093, 1.2000000476837, 5, 50, 90, 7, 92, cooldown = 6, levelRequirement = 92, manaCost = 63, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [33] = { 15, 1, 0.80000001192093, 1.2000000476837, 5, 50, 91, 7, 93, cooldown = 6, levelRequirement = 93, manaCost = 63, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [34] = { 16, 1, 0.80000001192093, 1.2000000476837, 5, 50, 92, 7, 94, cooldown = 6, levelRequirement = 94, manaCost = 63, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [35] = { 16, 1, 0.80000001192093, 1.2000000476837, 5, 50, 93, 7, 95, cooldown = 6, levelRequirement = 95, manaCost = 63, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [36] = { 16, 1, 0.80000001192093, 1.2000000476837, 5, 50, 94, 7, 96, cooldown = 6, levelRequirement = 96, manaCost = 64, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [37] = { 16, 1, 0.80000001192093, 1.2000000476837, 5, 50, 95, 7, 97, cooldown = 6, levelRequirement = 97, manaCost = 64, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [38] = { 17, 1, 0.80000001192093, 1.2000000476837, 5, 50, 96, 7, 98, cooldown = 6, levelRequirement = 98, manaCost = 64, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [39] = { 17, 1, 0.80000001192093, 1.2000000476837, 5, 50, 97, 7, 99, cooldown = 6, levelRequirement = 99, manaCost = 64, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, + [40] = { 17, 1, 0.80000001192093, 1.2000000476837, 5, 50, 98, 7, 100, cooldown = 6, levelRequirement = 100, manaCost = 64, statInterpolation = { 1, 1, 3, 3, 1, 1, 1, 1, 1, }, }, }, } skills["SummonChaosGolem"] = { name = "Summon Chaos Golem", color = 3, description = "Summons a Chaos Golem that grants you Physical Damage Reduction. The Chaos Golem can use a damage over time Chaos aura and a cascade of Chaos spikes in addition to its melee attack.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.ChaosSkill] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.ChaosSkill] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Duration] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, @@ -6924,7 +6925,7 @@ skills["SummonRelic"] = { name = "Summon Holy Relic", color = 3, description = "Summon a Holy Relic that stays near you. When you hit an enemy with an attack, the Holy Relic triggers a nova spell, with a very short cooldown, that deals physical damage to enemies and grants life regeneration to allies. This life regeneration is higher when applied to minions.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Hit] = true, [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.PhysicalSkill] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, @@ -6950,56 +6951,58 @@ skills["SummonRelic"] = { "active_skill_minion_movement_velocity_+%_final", "holy_relic_nova_life_regeneration_rate_per_minute", "holy_relic_nova_minion_life_regeneration_rate_per_second", + "display_minion_monster_level", + "display_minion_monster_type", "minions_cannot_taunt_enemies", }, levels = { - [1] = { 1, 0, 209, 6, cooldown = 2, levelRequirement = 4, manaCost = 11, statInterpolation = { 1, 1, 1, 1, }, }, - [2] = { 1, 4, 249, 8, cooldown = 2, levelRequirement = 6, manaCost = 12, statInterpolation = { 1, 1, 1, 1, }, }, - [3] = { 1, 8, 317, 11, cooldown = 2, levelRequirement = 9, manaCost = 13, statInterpolation = { 1, 1, 1, 1, }, }, - [4] = { 1, 12, 401, 14, cooldown = 2, levelRequirement = 12, manaCost = 14, statInterpolation = { 1, 1, 1, 1, }, }, - [5] = { 1, 16, 534, 18, cooldown = 2, levelRequirement = 16, manaCost = 15, statInterpolation = { 1, 1, 1, 1, }, }, - [6] = { 1, 20, 697, 25, cooldown = 2, levelRequirement = 20, manaCost = 16, statInterpolation = { 1, 1, 1, 1, }, }, - [7] = { 1, 24, 891, 33, cooldown = 2, levelRequirement = 24, manaCost = 17, statInterpolation = { 1, 1, 1, 1, }, }, - [8] = { 1, 28, 1119, 43, cooldown = 2, levelRequirement = 28, manaCost = 18, statInterpolation = { 1, 1, 1, 1, }, }, - [9] = { 1, 32, 1381, 54, cooldown = 2, levelRequirement = 32, manaCost = 19, statInterpolation = { 1, 1, 1, 1, }, }, - [10] = { 1, 36, 1681, 67, cooldown = 2, levelRequirement = 36, manaCost = 20, statInterpolation = { 1, 1, 1, 1, }, }, - [11] = { 1, 40, 2019, 83, cooldown = 2, levelRequirement = 40, manaCost = 21, statInterpolation = { 1, 1, 1, 1, }, }, - [12] = { 1, 44, 2399, 100, cooldown = 2, levelRequirement = 44, manaCost = 22, statInterpolation = { 1, 1, 1, 1, }, }, - [13] = { 1, 48, 2821, 121, cooldown = 2, levelRequirement = 48, manaCost = 23, statInterpolation = { 1, 1, 1, 1, }, }, - [14] = { 1, 52, 3288, 144, cooldown = 2, levelRequirement = 52, manaCost = 24, statInterpolation = { 1, 1, 1, 1, }, }, - [15] = { 1, 56, 3690, 167, cooldown = 2, levelRequirement = 55, manaCost = 25, statInterpolation = { 1, 1, 1, 1, }, }, - [16] = { 1, 60, 4122, 190, cooldown = 2, levelRequirement = 58, manaCost = 26, statInterpolation = { 1, 1, 1, 1, }, }, - [17] = { 1, 64, 4587, 215, cooldown = 2, levelRequirement = 61, manaCost = 26, statInterpolation = { 1, 1, 1, 1, }, }, - [18] = { 1, 68, 5085, 244, cooldown = 2, levelRequirement = 64, manaCost = 27, statInterpolation = { 1, 1, 1, 1, }, }, - [19] = { 1, 72, 5616, 275, cooldown = 2, levelRequirement = 67, manaCost = 27, statInterpolation = { 1, 1, 1, 1, }, }, - [20] = { 1, 76, 6183, 309, cooldown = 2, levelRequirement = 70, manaCost = 28, statInterpolation = { 1, 1, 1, 1, }, }, - [21] = { 1, 80, 6625, 331, cooldown = 2, levelRequirement = 72, manaCost = 28, statInterpolation = { 1, 1, 1, 1, }, }, - [22] = { 1, 84, 6949, 347, cooldown = 2, levelRequirement = 74, manaCost = 29, statInterpolation = { 1, 1, 1, 1, }, }, - [23] = { 1, 88, 7281, 364, cooldown = 2, levelRequirement = 76, manaCost = 29, statInterpolation = { 1, 1, 1, 1, }, }, - [24] = { 1, 92, 7621, 381, cooldown = 2, levelRequirement = 78, manaCost = 30, statInterpolation = { 1, 1, 1, 1, }, }, - [25] = { 1, 96, 7969, 398, cooldown = 2, levelRequirement = 80, manaCost = 30, statInterpolation = { 1, 1, 1, 1, }, }, - [26] = { 1, 100, 8325, 416, cooldown = 2, levelRequirement = 82, manaCost = 30, statInterpolation = { 1, 1, 1, 1, }, }, - [27] = { 1, 104, 8689, 434, cooldown = 2, levelRequirement = 84, manaCost = 30, statInterpolation = { 1, 1, 1, 1, }, }, - [28] = { 1, 108, 9060, 453, cooldown = 2, levelRequirement = 86, manaCost = 31, statInterpolation = { 1, 1, 1, 1, }, }, - [29] = { 1, 112, 9440, 472, cooldown = 2, levelRequirement = 88, manaCost = 31, statInterpolation = { 1, 1, 1, 1, }, }, - [30] = { 1, 116, 9828, 491, cooldown = 2, levelRequirement = 90, manaCost = 32, statInterpolation = { 1, 1, 1, 1, }, }, - [31] = { 1, 118, 9926, 496, cooldown = 2, levelRequirement = 91, manaCost = 33, statInterpolation = { 1, 1, 1, 1, }, }, - [32] = { 1, 120, 10026, 501, cooldown = 2, levelRequirement = 92, manaCost = 33, statInterpolation = { 1, 1, 1, 1, }, }, - [33] = { 1, 122, 10127, 506, cooldown = 2, levelRequirement = 93, manaCost = 33, statInterpolation = { 1, 1, 1, 1, }, }, - [34] = { 1, 124, 10229, 511, cooldown = 2, levelRequirement = 94, manaCost = 33, statInterpolation = { 1, 1, 1, 1, }, }, - [35] = { 1, 126, 10331, 516, cooldown = 2, levelRequirement = 95, manaCost = 34, statInterpolation = { 1, 1, 1, 1, }, }, - [36] = { 1, 128, 10436, 521, cooldown = 2, levelRequirement = 96, manaCost = 34, statInterpolation = { 1, 1, 1, 1, }, }, - [37] = { 1, 130, 10541, 527, cooldown = 2, levelRequirement = 97, manaCost = 34, statInterpolation = { 1, 1, 1, 1, }, }, - [38] = { 1, 132, 10646, 532, cooldown = 2, levelRequirement = 98, manaCost = 34, statInterpolation = { 1, 1, 1, 1, }, }, - [39] = { 1, 134, 10754, 538, cooldown = 2, levelRequirement = 99, manaCost = 35, statInterpolation = { 1, 1, 1, 1, }, }, - [40] = { 1, 136, 10862, 543, cooldown = 2, levelRequirement = 100, manaCost = 35, statInterpolation = { 1, 1, 1, 1, }, }, + [1] = { 1, 0, 209, 6, 4, 16, cooldown = 2, levelRequirement = 4, manaCost = 11, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [2] = { 1, 4, 249, 8, 6, 16, cooldown = 2, levelRequirement = 6, manaCost = 12, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [3] = { 1, 8, 317, 11, 9, 16, cooldown = 2, levelRequirement = 9, manaCost = 13, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [4] = { 1, 12, 401, 14, 12, 16, cooldown = 2, levelRequirement = 12, manaCost = 14, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [5] = { 1, 16, 534, 18, 16, 16, cooldown = 2, levelRequirement = 16, manaCost = 15, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [6] = { 1, 20, 697, 25, 20, 16, cooldown = 2, levelRequirement = 20, manaCost = 16, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [7] = { 1, 24, 891, 33, 24, 16, cooldown = 2, levelRequirement = 24, manaCost = 17, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [8] = { 1, 28, 1119, 43, 28, 16, cooldown = 2, levelRequirement = 28, manaCost = 18, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [9] = { 1, 32, 1381, 54, 32, 16, cooldown = 2, levelRequirement = 32, manaCost = 19, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [10] = { 1, 36, 1681, 67, 36, 16, cooldown = 2, levelRequirement = 36, manaCost = 20, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [11] = { 1, 40, 2019, 83, 40, 16, cooldown = 2, levelRequirement = 40, manaCost = 21, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [12] = { 1, 44, 2399, 100, 44, 16, cooldown = 2, levelRequirement = 44, manaCost = 22, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [13] = { 1, 48, 2821, 121, 48, 16, cooldown = 2, levelRequirement = 48, manaCost = 23, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [14] = { 1, 52, 3288, 144, 52, 16, cooldown = 2, levelRequirement = 52, manaCost = 24, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [15] = { 1, 56, 3690, 167, 55, 16, cooldown = 2, levelRequirement = 55, manaCost = 25, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [16] = { 1, 60, 4122, 190, 58, 16, cooldown = 2, levelRequirement = 58, manaCost = 26, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [17] = { 1, 64, 4587, 215, 61, 16, cooldown = 2, levelRequirement = 61, manaCost = 26, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [18] = { 1, 68, 5085, 244, 64, 16, cooldown = 2, levelRequirement = 64, manaCost = 27, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [19] = { 1, 72, 5616, 275, 67, 16, cooldown = 2, levelRequirement = 67, manaCost = 27, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [20] = { 1, 76, 6183, 309, 70, 16, cooldown = 2, levelRequirement = 70, manaCost = 28, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [21] = { 1, 80, 6625, 331, 72, 16, cooldown = 2, levelRequirement = 72, manaCost = 28, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [22] = { 1, 84, 6949, 347, 74, 16, cooldown = 2, levelRequirement = 74, manaCost = 29, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [23] = { 1, 88, 7281, 364, 76, 16, cooldown = 2, levelRequirement = 76, manaCost = 29, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [24] = { 1, 92, 7621, 381, 78, 16, cooldown = 2, levelRequirement = 78, manaCost = 30, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [25] = { 1, 96, 7969, 398, 80, 16, cooldown = 2, levelRequirement = 80, manaCost = 30, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [26] = { 1, 100, 8325, 416, 82, 16, cooldown = 2, levelRequirement = 82, manaCost = 30, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [27] = { 1, 104, 8689, 434, 84, 16, cooldown = 2, levelRequirement = 84, manaCost = 30, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [28] = { 1, 108, 9060, 453, 86, 16, cooldown = 2, levelRequirement = 86, manaCost = 31, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [29] = { 1, 112, 9440, 472, 88, 16, cooldown = 2, levelRequirement = 88, manaCost = 31, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [30] = { 1, 116, 9828, 491, 90, 16, cooldown = 2, levelRequirement = 90, manaCost = 32, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [31] = { 1, 118, 9926, 496, 91, 16, cooldown = 2, levelRequirement = 91, manaCost = 33, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [32] = { 1, 120, 10026, 501, 92, 16, cooldown = 2, levelRequirement = 92, manaCost = 33, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [33] = { 1, 122, 10127, 506, 93, 16, cooldown = 2, levelRequirement = 93, manaCost = 33, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [34] = { 1, 124, 10229, 511, 94, 16, cooldown = 2, levelRequirement = 94, manaCost = 33, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [35] = { 1, 126, 10331, 516, 95, 16, cooldown = 2, levelRequirement = 95, manaCost = 34, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [36] = { 1, 128, 10436, 521, 96, 16, cooldown = 2, levelRequirement = 96, manaCost = 34, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [37] = { 1, 130, 10541, 527, 97, 16, cooldown = 2, levelRequirement = 97, manaCost = 34, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [38] = { 1, 132, 10646, 532, 98, 16, cooldown = 2, levelRequirement = 98, manaCost = 34, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [39] = { 1, 134, 10754, 538, 99, 16, cooldown = 2, levelRequirement = 99, manaCost = 35, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [40] = { 1, 136, 10862, 543, 100, 16, cooldown = 2, levelRequirement = 100, manaCost = 35, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, }, } skills["SummonLightningGolem"] = { name = "Summon Lightning Golem", color = 3, description = "Summons a Lightning Golem that grants you increased Attack and Cast speed. The Lightning Golem fires a projectile spell, creates orbs of Lightning that zap nearby enemies, and casts a temporary aura that grants added Lightning Damage to spells and attacks used by the Golem and its nearby allies.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Aura] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Duration] = true, [SkillType.Spell] = true, [SkillType.Buff] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, @@ -7149,7 +7152,7 @@ skills["SummonSkeletons"] = { name = "Summon Skeletons", color = 3, description = "Summon Skeleton Warrior minions at the targeted location. They use a melee attack and die after a duration. If made aggressive, Skeleton Warriors will also dash towards nearby enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.CreateMinion] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.CreateMinion] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Type54] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Type66] = true, [SkillType.SkillCanVolley] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 0.5, @@ -7192,35 +7195,35 @@ skills["SummonSkeletons"] = { [9] = { 2, 6, 20000, 50, 2, 39, manaCost = 8, levelRequirement = 39, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, [10] = { 2, 6, 20000, 50, 2, 42, manaCost = 9, levelRequirement = 42, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, [11] = { 3, 6, 20000, 50, 2, 45, manaCost = 9, levelRequirement = 45, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [12] = { 3, 7, 20000, 50, 2, 48, manaCost = 9, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [13] = { 3, 7, 20000, 50, 2, 51, manaCost = 10, levelRequirement = 51, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [14] = { 3, 7, 20000, 50, 2, 54, manaCost = 10, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [15] = { 3, 7, 20000, 50, 2, 57, manaCost = 11, levelRequirement = 57, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [12] = { 3, 6, 20000, 50, 2, 48, manaCost = 9, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [13] = { 3, 6, 20000, 50, 2, 51, manaCost = 10, levelRequirement = 51, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [14] = { 3, 6, 20000, 50, 2, 54, manaCost = 10, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [15] = { 3, 6, 20000, 50, 2, 57, manaCost = 11, levelRequirement = 57, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, [16] = { 3, 7, 20000, 50, 2, 60, manaCost = 11, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, [17] = { 3, 7, 20000, 50, 2, 63, manaCost = 11, levelRequirement = 63, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [18] = { 3, 8, 20000, 50, 2, 66, manaCost = 12, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [19] = { 3, 8, 20000, 50, 2, 68, manaCost = 12, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [20] = { 3, 8, 20000, 50, 2, 70, manaCost = 12, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [21] = { 4, 8, 20000, 50, 2, 72, manaCost = 13, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [22] = { 4, 8, 20000, 50, 2, 74, manaCost = 13, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [23] = { 4, 8, 20000, 50, 2, 76, manaCost = 13, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [24] = { 4, 9, 20000, 50, 2, 78, manaCost = 13, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [25] = { 4, 9, 20000, 50, 2, 80, manaCost = 14, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [26] = { 4, 9, 20000, 50, 2, 82, manaCost = 14, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [27] = { 4, 9, 20000, 50, 2, 84, manaCost = 14, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [28] = { 4, 9, 20000, 50, 2, 86, manaCost = 14, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [29] = { 4, 9, 20000, 50, 2, 88, manaCost = 15, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [30] = { 4, 10, 20000, 50, 2, 90, manaCost = 15, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [31] = { 5, 10, 20000, 50, 2, 91, manaCost = 15, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [32] = { 5, 10, 20000, 50, 2, 92, manaCost = 16, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [33] = { 5, 10, 20000, 50, 2, 93, manaCost = 16, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [34] = { 5, 10, 20000, 50, 2, 94, manaCost = 17, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [35] = { 5, 10, 20000, 50, 2, 95, manaCost = 17, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [36] = { 5, 11, 20000, 50, 2, 96, manaCost = 17, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [37] = { 5, 11, 20000, 50, 2, 97, manaCost = 17, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [38] = { 5, 11, 20000, 50, 2, 98, manaCost = 17, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [39] = { 5, 11, 20000, 50, 2, 99, manaCost = 17, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, - [40] = { 5, 11, 20000, 50, 2, 100, manaCost = 17, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [18] = { 3, 7, 20000, 50, 2, 66, manaCost = 12, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [19] = { 3, 7, 20000, 50, 2, 68, manaCost = 12, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [20] = { 3, 7, 20000, 50, 2, 70, manaCost = 12, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [21] = { 4, 7, 20000, 50, 2, 72, manaCost = 13, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [22] = { 4, 7, 20000, 50, 2, 74, manaCost = 13, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [23] = { 4, 7, 20000, 50, 2, 76, manaCost = 13, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [24] = { 4, 7, 20000, 50, 2, 78, manaCost = 13, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [25] = { 4, 8, 20000, 50, 2, 80, manaCost = 14, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [26] = { 4, 8, 20000, 50, 2, 82, manaCost = 14, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [27] = { 4, 8, 20000, 50, 2, 84, manaCost = 14, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [28] = { 4, 8, 20000, 50, 2, 86, manaCost = 14, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [29] = { 4, 8, 20000, 50, 2, 88, manaCost = 15, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [30] = { 4, 8, 20000, 50, 2, 90, manaCost = 15, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [31] = { 5, 8, 20000, 50, 2, 91, manaCost = 15, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [32] = { 5, 8, 20000, 50, 2, 92, manaCost = 16, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [33] = { 5, 8, 20000, 50, 2, 93, manaCost = 16, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [34] = { 5, 8, 20000, 50, 2, 94, manaCost = 17, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [35] = { 5, 8, 20000, 50, 2, 95, manaCost = 17, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [36] = { 5, 8, 20000, 50, 2, 96, manaCost = 17, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [37] = { 5, 8, 20000, 50, 2, 97, manaCost = 17, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [38] = { 5, 8, 20000, 50, 2, 98, manaCost = 17, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [39] = { 5, 9, 20000, 50, 2, 99, manaCost = 17, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [40] = { 5, 9, 20000, 50, 2, 100, manaCost = 17, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, }, } skills["VaalSummonSkeletons"] = { @@ -7309,7 +7312,7 @@ skills["Skitterbots"] = { name = "Summon Skitterbots", color = 3, description = "Summon a Chilling Skitterbot and a Shocking Skitterbot, which will trigger your traps and detonate your mines. Mines detonated by Skitterbots will re-arm and can then be detonated again. The Skitterbots grant you more trap and mine damage, and cannot be targeted or damaged.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Instant] = true, [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.ColdSkill] = true, [SkillType.LightningSkill] = true, [SkillType.NonHitChill] = true, [SkillType.Area] = true, [SkillType.Aura] = true, [SkillType.AuraDebuff] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Instant] = true, [SkillType.Minion] = true, [SkillType.CreatesMinion] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.ColdSkill] = true, [SkillType.LightningSkill] = true, [SkillType.NonHitChill] = true, [SkillType.Area] = true, [SkillType.Aura] = true, [SkillType.AuraDebuff] = true, [SkillType.Type87] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 0, statMap = { @@ -7464,7 +7467,7 @@ skills["FrostBoltNova"] = { baseEffectiveness = 2.117399930954, incrementalEffectiveness = 0.045499999076128, description = "An icy blast explodes around the caster, dealing cold damage to enemies, and leaving behind a whirling vortex which deals cold damage over time and chills enemies caught in it. If the caster targets near their Frostbolt projectiles, it will explode from a number of those projectiles instead, destroying them.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Instant] = true, [SkillType.NovaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.ChillingArea] = true, [SkillType.AreaSpell] = true, [SkillType.Instant] = true, [SkillType.NovaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, baseFlags = { @@ -7491,7 +7494,6 @@ skills["FrostBoltNova"] = { "skill_override_pvp_scaling_time_ms", "is_area_damage", "spell_damage_modifiers_apply_to_skill_dot", - "instant_skill_is_added_to_held_skills_list", }, levels = { [1] = { 0.40000000596046, 0.60000002384186, 3000, 66.666668156783, 5, 0, -20, 900, critChance = 6.5, cooldown = 1.8, levelRequirement = 28, manaCost = 11, statInterpolation = { 3, 3, 1, 3, 1, 1, 1, 1, }, }, @@ -7840,7 +7842,7 @@ skills["Wrath"] = { baseEffectiveness = 2.25, incrementalEffectiveness = 0.023000000044703, description = "Casts an aura that adds lightning damage to the attacks of you and your allies, and makes your spells deal more lightning damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.LightningSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.LightningSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -7921,7 +7923,7 @@ skills["SpellDamageAura"] = { baseEffectiveness = 1.5, incrementalEffectiveness = 0.025000000372529, description = "Casts an aura that grants bonuses to damage and critical strike chance of spells to you and your allies, and gives a chance to create Consecrated Ground against stronger enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { diff --git a/Data/3_0/Skills/act_str.lua b/Data/3_0/Skills/act_str.lua index b5c069918..f175a760d 100644 --- a/Data/3_0/Skills/act_str.lua +++ b/Data/3_0/Skills/act_str.lua @@ -10,7 +10,7 @@ skills["AbyssalCry"] = { name = "Abyssal Cry", color = 1, description = "Performs a warcry, Hindering nearby enemies and causing them to explode when killed. The Hinder effect is proportional to the number of surrounding enemies. Taunts all nearby enemies to attack the user. Shares a cooldown with other Warcry skills.", - skillTypes = { [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.ChaosSkill] = true, [SkillType.Hit] = true, [SkillType.Warcry] = true, }, + skillTypes = { [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.ChaosSkill] = true, [SkillType.Hit] = true, [SkillType.Warcry] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.25, statMap = { @@ -375,7 +375,7 @@ skills["Anger"] = { baseEffectiveness = 2.25, incrementalEffectiveness = 0.023000000044703, description = "Casts an aura that adds fire damage to the attacks and spells of you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.FireSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.FireSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -458,7 +458,7 @@ skills["AnimateArmour"] = { name = "Animate Guardian", color = 1, description = "Animates a melee weapon or armour, attaching it to an invisible Guardian that fights by your side. Animating multiple items attaches them to the same Guardian. You cannot animate unidentified items.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.PhysicalSkill] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 0.6, @@ -557,7 +557,7 @@ skills["Berserk"] = { name = "Berserk", color = 1, description = "Consumes Rage at an accelerating rate to provide a powerful buff, granting more attack damage, attack speed, movement speed, and less damage taken.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "buff_skill_stat_descriptions", castTime = 0, statMap = { @@ -593,7 +593,6 @@ skills["Berserk"] = { "berserk_rage_loss_+%_per_second", "display_this_skill_cooldown_does_not_recover_during_buff", "base_deal_no_damage", - "instant_skill_is_added_to_held_skills_list", }, levels = { [1] = { 5, 15, 15, 25, -15, 25, 5, 20, cooldown = 5, levelRequirement = 34, manaCost = 10, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, @@ -743,7 +742,7 @@ skills["BloodSandStance"] = { name = "Blood and Sand", color = 1, description = "Casts a buff that grants different bonuses to melee skills depending on your stance. Using the skill again alternates between Blood Stance and Sand Stance.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Instant] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Instant] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.Instant] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -776,7 +775,6 @@ skills["BloodSandStance"] = { "blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance", "base_deal_no_damage", "console_skill_dont_chase", - "instant_skill_is_added_to_held_skills_list", }, levels = { [1] = { 0, -5, 10, 10, -5, cooldown = 2, levelRequirement = 4, manaCost = 10, statInterpolation = { 1, 1, 1, 1, 1, }, }, @@ -1053,7 +1051,7 @@ skills["DecoyTotem"] = { name = "Decoy Totem", color = 1, description = "Summons a totem that taunts nearby monsters to attack it.", - skillTypes = { [SkillType.Spell] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Totem] = true, [SkillType.SpellCanRepeat] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanMine] = true, [SkillType.Area] = true, [SkillType.Totem] = true, [SkillType.SpellCanRepeat] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", skillTotemId = 6, castTime = 1, @@ -1127,7 +1125,7 @@ skills["Determination"] = { name = "Determination", color = 1, description = "Casts an aura that grants armour to you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -1368,7 +1366,7 @@ skills["PuresteelBanner"] = { name = "Dread Banner", color = 1, description = "Casting once reserves mana to carry a banner which makes nearby allies inflict impale with attacks, and lessens the accuracy of nearby enemies. Gain stages by impaling enemies while carrying the banner. Casting the skill again places the banner, ending the mana reservation. Once placed, it becomes more powerful for each stage gained. You cannot have multiple banners at the same time.", - skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ManaCostReserved] = true, [SkillType.Aura] = true, [SkillType.ManaCostPercent] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.AuraDuration] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ManaCostReserved] = true, [SkillType.Aura] = true, [SkillType.ManaCostPercent] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.AuraDuration] = true, [SkillType.PhysicalSkill] = true, [SkillType.Type88] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "banner_aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -1643,7 +1641,7 @@ skills["EnduringCry"] = { name = "Enduring Cry", color = 1, description = "Performs a warcry, adding endurance charges proportional to the number of surrounding enemies and granting life regeneration to you for a short time if there are nearby enemies. Taunts all nearby enemies to attack the user. Shares a cooldown with other Warcry skills.", - skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.25, statMap = { @@ -1716,7 +1714,7 @@ skills["BloodSandArmour"] = { name = "Flesh and Stone", color = 1, description = "Casts an aura that affects you and nearby enemies differently depending on your stance. Using the skill again alternates between Blood Stance and Sand Stance.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Aura] = true, [SkillType.AuraDebuff] = true, [SkillType.Instant] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.Maims] = true, [SkillType.Area] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Aura] = true, [SkillType.AuraDebuff] = true, [SkillType.Instant] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.Maims] = true, [SkillType.Area] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -1742,7 +1740,6 @@ skills["BloodSandArmour"] = { "attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour", "support_maimed_enemies_physical_damage_taken_+%", "base_deal_no_damage", - "instant_skill_is_added_to_held_skills_list", }, levels = { [1] = { 0, -9, 13, cooldown = 2, levelRequirement = 16, manaCost = 25, statInterpolation = { 1, 1, 1, }, }, @@ -2196,7 +2193,7 @@ skills["HeraldOfAsh"] = { baseEffectiveness = 0.5, incrementalEffectiveness = 0.032699998468161, description = "Grants a buff providing fire damage based on your physical damage. While you have this buff, if you kill an enemy, other enemies near them will be burned based on the overkill damage. The burn inflicted by this skill can only be affected by modifiers to damage over time (burning damage is damage over time).", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.CausesBurning] = true, [SkillType.Area] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.Type27] = true, [SkillType.Herald] = true, [SkillType.Duration] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.CausesBurning] = true, [SkillType.Area] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.Type27] = true, [SkillType.Herald] = true, [SkillType.Duration] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0, statMap = { @@ -2277,7 +2274,7 @@ skills["HeraldOfPurity"] = { baseEffectiveness = 0.31700000166893, incrementalEffectiveness = 0.01799999922514, description = "Grants a buff which adds physical damage to your spells and attacks. When you kill an enemy while you have this buff, this skill will summon a Sentinel of Purity, or refresh the duration and life of an existing one instead if you have the maximum number of them. The Sentinels of Purity have a single-target melee attack and an area melee attack.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.Herald] = true, [SkillType.Minion] = true, [SkillType.Instant] = true, [SkillType.Duration] = true, [SkillType.PhysicalSkill] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.ManaCostPercent] = true, [SkillType.Herald] = true, [SkillType.Minion] = true, [SkillType.Instant] = true, [SkillType.Duration] = true, [SkillType.PhysicalSkill] = true, [SkillType.CreatesMinion] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Hit] = true, [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Area] = true, }, statDescriptionScope = "minion_skill_stat_descriptions", castTime = 0, @@ -2552,7 +2549,7 @@ skills["ImmortalCall"] = { name = "Immortal Call", color = 1, description = "Take less Physical and Elemental Damage for a short time. Consumes up to 5 Endurance Charges to lengthen the buff and further lessen Physical Damage taken. Shares a cooldown with other Guard skills.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, [SkillType.GuardSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, [SkillType.GuardSkill] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -2583,7 +2580,6 @@ skills["ImmortalCall"] = { "buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5", "base_deal_no_damage", "display_this_skill_cooldown_does_not_recover_during_buff", - "instant_skill_is_added_to_held_skills_list", }, levels = { [1] = { -25, -25, -1500, 20, levelRequirement = 34, cooldown = 3, duration = 1, manaCost = 21, statInterpolation = { 1, 1, 1, 1, }, }, @@ -2632,7 +2628,7 @@ skills["VaalImmortalCall"] = { name = "Vaal Immortal Call", color = 1, description = "Discharges Endurance Charges, making the character unable to die or gain Vaal souls for a short time, proportional to how many endurance charges were expended.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Vaal] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Vaal] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, baseFlags = { @@ -2650,7 +2646,6 @@ skills["VaalImmortalCall"] = { "immortal_call_prevent_all_damage", "base_deal_no_damage", "modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration", - "instant_skill_is_added_to_held_skills_list", "display_skill_fixed_duration_buff", }, levels = { @@ -2864,7 +2859,7 @@ skills["MoltenShell"] = { baseEffectiveness = 9.6499996185303, incrementalEffectiveness = 0.016499999910593, description = "Applies a buff that adds to your armour, and can take some of the damage from hits for you before being depleted. When the buff expires or is depleted, the skill deals reflected damage to enemies around you based on the total damage that was taken from the buff. Shares a cooldown with other Guard skills.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type31] = true, [SkillType.FireSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, [SkillType.Triggerable] = true, [SkillType.GuardSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type31] = true, [SkillType.FireSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, [SkillType.Triggerable] = true, [SkillType.GuardSkill] = true, [SkillType.Type90] = true, }, statDescriptionScope = "buff_skill_stat_descriptions", castTime = 0, statMap = { @@ -2893,7 +2888,6 @@ skills["MoltenShell"] = { "base_skill_show_average_damage_instead_of_dps", "is_area_damage", "display_this_skill_cooldown_does_not_recover_during_buff", - "instant_skill_is_added_to_held_skills_list", }, levels = { [1] = { 1, 200, 75, 20, 100, 10000, levelRequirement = 4, cooldown = 4, duration = 3, manaCost = 8, statInterpolation = { 3, 1, 1, 1, 1, 1, }, }, @@ -2944,7 +2938,7 @@ skills["VaalMoltenShell"] = { baseEffectiveness = 14.47500038147, incrementalEffectiveness = 0.016499999910593, description = "Applies a buff that adds to your armour, and can take some of the damage from hits for you before being depleted. Each second, the skill deals reflected damage to surrounding enemies based on the damage taken from the buff in that second. When the buff expires or is depleted, the skill deals reflected damage to enemies around you based on the total damage that was taken from the buff.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type31] = true, [SkillType.FireSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, [SkillType.Vaal] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type31] = true, [SkillType.FireSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, [SkillType.Vaal] = true, [SkillType.Type86] = true, [SkillType.Type85] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, statMap = { @@ -2973,7 +2967,6 @@ skills["VaalMoltenShell"] = { "molten_shell_explode_each_hit", "modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration", "display_vaal_molten_shell_alternate_description", - "instant_skill_is_added_to_held_skills_list", }, levels = { [1] = { 0.80000001192093, 1400, 80, 60, 100, 30000, levelRequirement = 4, duration = 9, cooldown = 0.5, statInterpolation = { 3, 1, 1, 1, 1, 1, }, }, @@ -3203,7 +3196,7 @@ skills["PhysicalDamageAura"] = { name = "Pride", color = 1, description = "Casts an aura that causes nearby enemies to take more physical damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, [SkillType.AuraDebuff] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, [SkillType.AuraDebuff] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, parts = { @@ -3287,7 +3280,7 @@ skills["Punishment"] = { name = "Punishment", color = 1, description = "Curses all targets in an area, causing them to grant a buff to anyone they hit with melee attacks. The buff grants more Melee Damage and increased Attack Speed.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -3366,7 +3359,7 @@ skills["FireResistAura"] = { name = "Purity of Fire", color = 1, description = "Casts an aura that grants fire resistance to you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.FireSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.FireSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -3441,7 +3434,7 @@ skills["FireImpurity"] = { name = "Vaal Impurity of Fire", color = 1, description = "Casts an aura that reduces fire damage taken and provides ignite immunity to you and nearby allies, and makes hits against nearby enemies ignore their fire resistance. ", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, [SkillType.FireSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type27] = true, [SkillType.Duration] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, [SkillType.FireSkill] = true, [SkillType.Instant] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -3520,7 +3513,7 @@ skills["RallyingCry"] = { name = "Rallying Cry", color = 1, description = "Performs a warcry, granting increased damage and mana regeneration to the user and nearby allies if there are nearby enemies. The damage increase is proportional to the number of surrounding enemies. Taunts all nearby enemies to attack the user. Shares a cooldown with other Warcry skills.", - skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.25, statMap = { @@ -3599,7 +3592,7 @@ skills["Reckoning"] = { baseEffectiveness = 0.5, incrementalEffectiveness = 0.023299999535084, description = "Perform a swift counter-attack against enemies in a cone shape when you block with your shield.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Shield] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Shield] = true, [SkillType.Melee] = true, [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.PhysicalSkill] = true, [SkillType.Type90] = true, }, weaponTypes = { ["None"] = true, ["Claw"] = true, @@ -4190,7 +4183,7 @@ skills["QuickGuard"] = { baseEffectiveness = 10, incrementalEffectiveness = 0.029999999329448, description = "Applies a buff which can take some of the damage from hits for you before being depleted. Shares a cooldown with other Guard skills.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Instant] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.GuardSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Instant] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.GuardSkill] = true, [SkillType.Type90] = true, }, statDescriptionScope = "buff_skill_stat_descriptions", castTime = 0, baseFlags = { @@ -4207,7 +4200,6 @@ skills["QuickGuard"] = { "quick_guard_damage_absorb_limit", "base_deal_no_damage", "display_this_skill_cooldown_does_not_recover_during_buff", - "instant_skill_is_added_to_held_skills_list", }, levels = { [1] = { 70, 1, levelRequirement = 4, cooldown = 3, duration = 1.5, manaCost = 4, statInterpolation = { 1, 3, }, }, @@ -4256,7 +4248,7 @@ skills["SummonFireGolem"] = { name = "Summon Flame Golem", color = 1, description = "Summons a Flame Golem that grants you increased Damage. The Flame Golem can use a fire spray, a wave of fire damage, and an explosive arcing projectile.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, @@ -4336,7 +4328,7 @@ skills["SummonRockGolem"] = { name = "Summon Stone Golem", color = 1, description = "Summons a Stone Golem that grants you life regeneration. In addition to its melee attack, the Stone Golem uses a rolling charge and a powerful slam that can taunt enemies.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, [SkillType.PhysicalSkill] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.Golem] = true, [SkillType.PhysicalSkill] = true, [SkillType.CreatesMinion] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.MovementSkill] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, @@ -4668,7 +4660,7 @@ skills["Vengeance"] = { baseEffectiveness = 0.5, incrementalEffectiveness = 0.023299999535084, description = "Chance to perform a swift counter-attack against all enemies around you when you are hit. Weapon range increases the area of this attack. Requires a Melee Weapon.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.PhysicalSkill] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -4749,7 +4741,7 @@ skills["VigilantStrike"] = { name = "Vigilant Strike", color = 1, description = "Attacks enemies with a powerful melee strike. You gain the Fortify buff, granting damage reduction. The cooldown can be bypassed by expending an Endurance Charge. Requires a Melee Weapon.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Buff] = true, [SkillType.Melee] = true, [SkillType.AttackCanRepeat] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Type53] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Buff] = true, [SkillType.Melee] = true, [SkillType.AttackCanRepeat] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Type53] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -4827,7 +4819,7 @@ skills["Vitality"] = { name = "Vitality", color = 1, description = "Casts an aura that grants life regeneration to you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.CanHaveBlessing] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, statMap = { @@ -4899,7 +4891,7 @@ skills["Vulnerability"] = { name = "Vulnerability", color = 1, description = "Curse all targets in an area, causing them to take increased physical damage and further increased physical damage over time. Attacks against cursed enemies have a chance to inflict bleeding and maim.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -4982,7 +4974,7 @@ skills["WarlordsMark"] = { name = "Warlord's Mark", color = 1, description = "Curses all targets in an area, making them more vulnerable to stuns. Hitting the cursed targets will leech life and mana, and killing them will result in a chance to gain an endurance charge.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -5066,7 +5058,7 @@ skills["BloodstainedBanner"] = { name = "War Banner", color = 1, description = "Casting once reserves mana to carry a banner which increases the accuracy of nearby allies, and physical damage taken by nearby enemies. Gain stages by killing enemies while carrying the banner. Casting the skill again places the banner, ending the mana reservation. Once placed, it becomes more powerful for each stage gained. You cannot have multiple banners at the same time.", - skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ManaCostReserved] = true, [SkillType.Aura] = true, [SkillType.ManaCostPercent] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.AuraDuration] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.ManaCostReserved] = true, [SkillType.Aura] = true, [SkillType.ManaCostPercent] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.AuraDuration] = true, [SkillType.PhysicalSkill] = true, [SkillType.Type88] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "banner_aura_skill_stat_descriptions", castTime = 0, statMap = { diff --git a/Data/3_0/Skills/glove.lua b/Data/3_0/Skills/glove.lua index d1ddca1ab..b03448f01 100644 --- a/Data/3_0/Skills/glove.lua +++ b/Data/3_0/Skills/glove.lua @@ -13,7 +13,7 @@ skills["EnchantmentOfBladesOnHit"] = { baseEffectiveness = 1.7000000476837, incrementalEffectiveness = 0.037000000476837, description = "Fires a chaining burst of ethereal blades.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -48,7 +48,7 @@ skills["EnchantmentOfBladesOnHit2"] = { baseEffectiveness = 1.7000000476837, incrementalEffectiveness = 0.037000000476837, description = "Fires a chaining burst of ethereal blades.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -83,7 +83,7 @@ skills["EnchantmentOfBladesOnHit3"] = { baseEffectiveness = 1.7000000476837, incrementalEffectiveness = 0.037000000476837, description = "Fires a chaining burst of ethereal blades.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -118,7 +118,7 @@ skills["EnchantmentOfBladesOnHit4"] = { baseEffectiveness = 1.7000000476837, incrementalEffectiveness = 0.037000000476837, description = "Fires a chaining burst of ethereal blades.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -153,7 +153,7 @@ skills["EnchantmentOfFlamesOnHit"] = { baseEffectiveness = 1.7777999639511, incrementalEffectiveness = 0.035000000149012, description = "Releases a nova of fire around you, damaging nearby enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, [SkillType.Type90] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -185,7 +185,7 @@ skills["EnchantmentOfFlamesOnHit2"] = { baseEffectiveness = 1.7777999639511, incrementalEffectiveness = 0.035000000149012, description = "Releases a nova of fire around you, damaging nearby enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, [SkillType.Type90] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -217,7 +217,7 @@ skills["EnchantmentOfFlamesOnHit3"] = { baseEffectiveness = 1.7777999639511, incrementalEffectiveness = 0.035000000149012, description = "Releases a nova of fire around you, damaging nearby enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, [SkillType.Type90] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -249,7 +249,7 @@ skills["EnchantmentOfFlamesOnHit4"] = { baseEffectiveness = 1.7777999639511, incrementalEffectiveness = 0.035000000149012, description = "Releases a nova of fire around you, damaging nearby enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, [SkillType.Type90] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -279,7 +279,7 @@ skills["EnchantmentOfForceOnHit"] = { hidden = true, color = 4, description = "Release an arc of force from your weapon or fists, damaging enemies in front of you.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -306,7 +306,7 @@ skills["EnchantmentOfForceOnHit2"] = { hidden = true, color = 4, description = "Release an arc of force from your weapon or fists, damaging enemies in front of you.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -333,7 +333,7 @@ skills["EnchantmentOfForceOnHit3"] = { hidden = true, color = 4, description = "Release an arc of force from your weapon or fists, damaging enemies in front of you.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -360,7 +360,7 @@ skills["EnchantmentOfForceOnHit4"] = { hidden = true, color = 4, description = "Release an arc of force from your weapon or fists, damaging enemies in front of you.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Hit] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -389,7 +389,7 @@ skills["EnchantmentOfFrostOnKill"] = { baseEffectiveness = 1.6363999843597, incrementalEffectiveness = 0.035000000149012, description = "Fire icy projectiles around you in all directions.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -424,7 +424,7 @@ skills["EnchantmentOfFrostOnKill2"] = { baseEffectiveness = 1.6363999843597, incrementalEffectiveness = 0.035000000149012, description = "Fire icy projectiles around you in all directions.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -459,7 +459,7 @@ skills["EnchantmentOfFrostOnKill3"] = { baseEffectiveness = 1.6363999843597, incrementalEffectiveness = 0.035000000149012, description = "Fire icy projectiles around you in all directions.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -494,7 +494,7 @@ skills["EnchantmentOfFrostOnKill4"] = { baseEffectiveness = 1.6363999843597, incrementalEffectiveness = 0.035000000149012, description = "Fire icy projectiles around you in all directions.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.SkillCanVolley] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -529,7 +529,7 @@ skills["EnchantmentOfFuryOnHit"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Repeatedly fires a piercing projectile based on your weapon, converting some physical damage to fire. The projectiles form an arc in front of you.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.Type83] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.Type83] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -582,7 +582,7 @@ skills["EnchantmentOfFuryOnHit2"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Repeatedly fires a piercing projectile based on your weapon, converting some physical damage to fire. The projectiles form an arc in front of you.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.Type83] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.Type83] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -635,7 +635,7 @@ skills["EnchantmentOfFuryOnHit3"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Repeatedly fires a piercing projectile based on your weapon, converting some physical damage to fire. The projectiles form an arc in front of you.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.Type83] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.Type83] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -688,7 +688,7 @@ skills["EnchantmentOfFuryOnHit4"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Repeatedly fires a piercing projectile based on your weapon, converting some physical damage to fire. The projectiles form an arc in front of you.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.Type83] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.Type83] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -741,7 +741,7 @@ skills["EnchantmentOfInfernoOnKill"] = { baseEffectiveness = 3.5555999279022, incrementalEffectiveness = 0.035000000149012, description = "Drops a meteor from above on a nearby foe, dealing fire damage in an area around them.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -777,7 +777,7 @@ skills["EnchantmentOfInfernoOnKill2"] = { baseEffectiveness = 3.5555999279022, incrementalEffectiveness = 0.035000000149012, description = "Drops a meteor from above on a nearby foe, dealing fire damage in an area around them.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -813,7 +813,7 @@ skills["EnchantmentOfInfernoOnKill3"] = { baseEffectiveness = 3.5555999279022, incrementalEffectiveness = 0.035000000149012, description = "Drops a meteor from above on a nearby foe, dealing fire damage in an area around them.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -849,7 +849,7 @@ skills["EnchantmentOfInfernoOnKill4"] = { baseEffectiveness = 3.5555999279022, incrementalEffectiveness = 0.035000000149012, description = "Drops a meteor from above on a nearby foe, dealing fire damage in an area around them.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -885,7 +885,7 @@ skills["EnchantmentOfIreWhenHit"] = { baseEffectiveness = 1.2000000476837, incrementalEffectiveness = 0.019999999552965, description = "Release a lightning charged spinning copy of your weapon or its projectiles that rotates around a point, damaging enemies in an area.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -935,7 +935,7 @@ skills["EnchantmentOfIreWhenHit2"] = { baseEffectiveness = 1.2000000476837, incrementalEffectiveness = 0.019999999552965, description = "Release a lightning charged spinning copy of your weapon or its projectiles that rotates around a point, damaging enemies in an area.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -985,7 +985,7 @@ skills["EnchantmentOfIreWhenHit3"] = { baseEffectiveness = 1.2000000476837, incrementalEffectiveness = 0.019999999552965, description = "Release a lightning charged spinning copy of your weapon or its projectiles that rotates around a point, damaging enemies in an area.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1035,7 +1035,7 @@ skills["EnchantmentOfIreWhenHit4"] = { baseEffectiveness = 1.2000000476837, incrementalEffectiveness = 0.019999999552965, description = "Release a lightning charged spinning copy of your weapon or its projectiles that rotates around a point, damaging enemies in an area.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1083,7 +1083,7 @@ skills["EnchantmentOfLightWhenCrit"] = { hidden = true, color = 4, description = "Deals a portion of your main hand damage in an area around you and creates Consecrated Ground, causing you and your allies to regenerate life.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -1113,7 +1113,7 @@ skills["EnchantmentOfLightWhenCrit2"] = { hidden = true, color = 4, description = "Deals a portion of your main hand damage in an area around you and creates Consecrated Ground, causing you and your allies to regenerate life.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -1143,7 +1143,7 @@ skills["EnchantmentOfLightWhenCrit3"] = { hidden = true, color = 4, description = "Deals a portion of your main hand damage in an area around you and creates Consecrated Ground, causing you and your allies to regenerate life.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -1173,7 +1173,7 @@ skills["EnchantmentOfLightWhenCrit4"] = { hidden = true, color = 4, description = "Deals a portion of your main hand damage in an area around you and creates Consecrated Ground, causing you and your allies to regenerate life.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -1203,7 +1203,7 @@ skills["EnchantmentOfReflectionWhenHit"] = { hidden = true, color = 4, description = "Creates a clone of you that attacks with your weapon.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_skill_stat_descriptions", castTime = 1, @@ -1243,7 +1243,7 @@ skills["EnchantmentOfReflectionWhenHit2"] = { hidden = true, color = 4, description = "Creates a clone of you that attacks with your weapon.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, @@ -1283,7 +1283,7 @@ skills["EnchantmentOfReflectionWhenHit3"] = { hidden = true, color = 4, description = "Creates a clone of you that attacks with your weapon.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, @@ -1323,7 +1323,7 @@ skills["EnchantmentOfReflectionWhenHit4"] = { hidden = true, color = 4, description = "Creates a clone of you that attacks with your weapon.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, @@ -1365,7 +1365,7 @@ skills["EnchantmentOfSpiteWhenHit"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Releases a circle of projectiles based on your weapon, leaving chilling ground in their wake.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.ChillingArea] = true, [SkillType.ColdSkill] = true, [SkillType.Type83] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.ChillingArea] = true, [SkillType.ColdSkill] = true, [SkillType.Type83] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1418,7 +1418,7 @@ skills["EnchantmentOfSpiteWhenHit2"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Releases a circle of projectiles based on your weapon, leaving chilling ground in their wake.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.ChillingArea] = true, [SkillType.ColdSkill] = true, [SkillType.Type83] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.ChillingArea] = true, [SkillType.ColdSkill] = true, [SkillType.Type83] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1471,7 +1471,7 @@ skills["EnchantmentOfSpiteWhenHit3"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Releases a circle of projectiles based on your weapon, leaving chilling ground in their wake.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.ChillingArea] = true, [SkillType.ColdSkill] = true, [SkillType.Type83] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.ChillingArea] = true, [SkillType.ColdSkill] = true, [SkillType.Type83] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1524,7 +1524,7 @@ skills["EnchantmentOfSpiteWhenHit4"] = { baseEffectiveness = 1, incrementalEffectiveness = 0.035000000149012, description = "Releases a circle of projectiles based on your weapon, leaving chilling ground in their wake.", - skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.ChillingArea] = true, [SkillType.ColdSkill] = true, [SkillType.Type83] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.ChillingArea] = true, [SkillType.ColdSkill] = true, [SkillType.Type83] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -1577,7 +1577,7 @@ skills["EnchantmentOfTempestOnHit"] = { baseEffectiveness = 4, incrementalEffectiveness = 0.035000000149012, description = "Charges you with lightning which lasts a duration before unleashing, damaging surrounding enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 4, cannotBeSupported = true, @@ -1612,7 +1612,7 @@ skills["EnchantmentOfTempestOnHit2"] = { baseEffectiveness = 4, incrementalEffectiveness = 0.035000000149012, description = "Charges you with lightning which lasts a duration before unleashing, damaging surrounding enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 4, cannotBeSupported = true, @@ -1647,7 +1647,7 @@ skills["EnchantmentOfTempestOnHit3"] = { baseEffectiveness = 4, incrementalEffectiveness = 0.035000000149012, description = "Charges you with lightning which lasts a duration before unleashing, damaging surrounding enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 4, cannotBeSupported = true, @@ -1682,7 +1682,7 @@ skills["EnchantmentOfTempestOnHit4"] = { baseEffectiveness = 4, incrementalEffectiveness = 0.035000000149012, description = "Charges you with lightning which lasts a duration before unleashing, damaging surrounding enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 4, cannotBeSupported = true, @@ -1715,7 +1715,7 @@ skills["EnchantmentOfTheGraveOnKill"] = { hidden = true, color = 4, description = "Summons three icy skull minions that explode at the end of their duration.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, @@ -1751,7 +1751,7 @@ skills["EnchantmentOfTheGraveOnKill2"] = { hidden = true, color = 4, description = "Summons three icy skull minions that explode at the end of their duration.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, @@ -1787,7 +1787,7 @@ skills["EnchantmentOfTheGraveOnKill3"] = { hidden = true, color = 4, description = "Summons three icy skull minions that explode at the end of their duration.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, @@ -1823,7 +1823,7 @@ skills["EnchantmentOfTheGraveOnKill4"] = { hidden = true, color = 4, description = "Summons three icy skull minions that explode at the end of their duration.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.ColdSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Duration] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, @@ -1861,7 +1861,7 @@ skills["EnchantmentOfThunderOnKill"] = { baseEffectiveness = 1.625, incrementalEffectiveness = 0.035000000149012, description = "Damaging cones of lightning surround you.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Type31] = true, [SkillType.LightningSkill] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Type31] = true, [SkillType.LightningSkill] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -1893,7 +1893,7 @@ skills["EnchantmentOfThunderOnKill2"] = { baseEffectiveness = 1.625, incrementalEffectiveness = 0.035000000149012, description = "Damaging cones of lightning surround you.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Type31] = true, [SkillType.LightningSkill] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Type31] = true, [SkillType.LightningSkill] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -1925,7 +1925,7 @@ skills["EnchantmentOfThunderOnKill3"] = { baseEffectiveness = 1.625, incrementalEffectiveness = 0.035000000149012, description = "Damaging cones of lightning surround you.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Type31] = true, [SkillType.LightningSkill] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Type31] = true, [SkillType.LightningSkill] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -1957,7 +1957,7 @@ skills["EnchantmentOfThunderOnKill4"] = { baseEffectiveness = 1.625, incrementalEffectiveness = 0.035000000149012, description = "Damaging cones of lightning surround you.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Type31] = true, [SkillType.LightningSkill] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Type31] = true, [SkillType.LightningSkill] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.NovaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -1987,7 +1987,7 @@ skills["EnchantmentOfWarOnKill"] = { hidden = true, color = 4, description = "This attack is performed repeatedly by a ghostly imitation of your weapon.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -2030,7 +2030,7 @@ skills["EnchantmentOfWarOnKill2"] = { hidden = true, color = 4, description = "This attack is performed repeatedly by a ghostly imitation of your weapon.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -2073,7 +2073,7 @@ skills["EnchantmentOfWarOnKill3"] = { hidden = true, color = 4, description = "This attack is performed repeatedly by a ghostly imitation of your weapon.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -2116,7 +2116,7 @@ skills["EnchantmentOfWarOnKill4"] = { hidden = true, color = 4, description = "This attack is performed repeatedly by a ghostly imitation of your weapon.", - skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Melee] = true, [SkillType.Duration] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -2161,7 +2161,7 @@ skills["EnchantmentOfWinterWhenHit"] = { baseEffectiveness = 1.0908999443054, incrementalEffectiveness = 0.035000000149012, description = "Unleashes an icy projectile that pulses with cold as it travels.", - skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.4, cannotBeSupported = true, @@ -2195,7 +2195,7 @@ skills["EnchantmentOfWinterWhenHit2"] = { baseEffectiveness = 1.0908999443054, incrementalEffectiveness = 0.035000000149012, description = "Unleashes an icy projectile that pulses with cold as it travels.", - skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.4, cannotBeSupported = true, @@ -2229,7 +2229,7 @@ skills["EnchantmentOfWinterWhenHit3"] = { baseEffectiveness = 1.0908999443054, incrementalEffectiveness = 0.035000000149012, description = "Unleashes an icy projectile that pulses with cold as it travels.", - skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.4, cannotBeSupported = true, @@ -2263,7 +2263,7 @@ skills["EnchantmentOfWinterWhenHit4"] = { baseEffectiveness = 1.0908999443054, incrementalEffectiveness = 0.035000000149012, description = "Unleashes an icy projectile that pulses with cold as it travels.", - skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.4, cannotBeSupported = true, diff --git a/Data/3_0/Skills/minion.lua b/Data/3_0/Skills/minion.lua index e1c0eb38d..b591c5494 100644 --- a/Data/3_0/Skills/minion.lua +++ b/Data/3_0/Skills/minion.lua @@ -138,7 +138,7 @@ skills["FireElementalConeSummoned"] = { color = 3, baseEffectiveness = 2.9867000579834, incrementalEffectiveness = 0.031700000166893, - skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.935, baseFlags = { @@ -888,46 +888,46 @@ skills["RelicTriggeredNova"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.7, cooldown = 0.25, levelRequirement = 4, statInterpolation = { 1, 1, 3, 3, }, }, - [2] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.74, cooldown = 0.25, levelRequirement = 6, statInterpolation = { 1, 1, 3, 3, }, }, - [3] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.78, cooldown = 0.25, levelRequirement = 9, statInterpolation = { 1, 1, 3, 3, }, }, - [4] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.82, cooldown = 0.25, levelRequirement = 12, statInterpolation = { 1, 1, 3, 3, }, }, - [5] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.86, cooldown = 0.25, levelRequirement = 16, statInterpolation = { 1, 1, 3, 3, }, }, - [6] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.9, cooldown = 0.25, levelRequirement = 20, statInterpolation = { 1, 1, 3, 3, }, }, - [7] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.94, cooldown = 0.25, levelRequirement = 24, statInterpolation = { 1, 1, 3, 3, }, }, - [8] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.98, cooldown = 0.25, levelRequirement = 28, statInterpolation = { 1, 1, 3, 3, }, }, - [9] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.02, cooldown = 0.25, levelRequirement = 32, statInterpolation = { 1, 1, 3, 3, }, }, - [10] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.06, cooldown = 0.25, levelRequirement = 36, statInterpolation = { 1, 1, 3, 3, }, }, - [11] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.1, cooldown = 0.25, levelRequirement = 40, statInterpolation = { 1, 1, 3, 3, }, }, - [12] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.14, cooldown = 0.25, levelRequirement = 44, statInterpolation = { 1, 1, 3, 3, }, }, - [13] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.18, cooldown = 0.25, levelRequirement = 48, statInterpolation = { 1, 1, 3, 3, }, }, - [14] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.22, cooldown = 0.25, levelRequirement = 52, statInterpolation = { 1, 1, 3, 3, }, }, - [15] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.26, cooldown = 0.25, levelRequirement = 55, statInterpolation = { 1, 1, 3, 3, }, }, - [16] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.3, cooldown = 0.25, levelRequirement = 58, statInterpolation = { 1, 1, 3, 3, }, }, - [17] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.34, cooldown = 0.25, levelRequirement = 61, statInterpolation = { 1, 1, 3, 3, }, }, - [18] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.38, cooldown = 0.25, levelRequirement = 64, statInterpolation = { 1, 1, 3, 3, }, }, - [19] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.42, cooldown = 0.25, levelRequirement = 67, statInterpolation = { 1, 1, 3, 3, }, }, - [20] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.46, cooldown = 0.25, levelRequirement = 70, statInterpolation = { 1, 1, 3, 3, }, }, - [21] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 72, statInterpolation = { 1, 1, 3, 3, }, }, - [22] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 74, statInterpolation = { 1, 1, 3, 3, }, }, - [23] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 76, statInterpolation = { 1, 1, 3, 3, }, }, - [24] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 78, statInterpolation = { 1, 1, 3, 3, }, }, - [25] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 80, statInterpolation = { 1, 1, 3, 3, }, }, - [26] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 82, statInterpolation = { 1, 1, 3, 3, }, }, - [27] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 84, statInterpolation = { 1, 1, 3, 3, }, }, - [28] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 86, statInterpolation = { 1, 1, 3, 3, }, }, - [29] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 88, statInterpolation = { 1, 1, 3, 3, }, }, - [30] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 90, statInterpolation = { 1, 1, 3, 3, }, }, - [31] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 91, statInterpolation = { 1, 1, 3, 3, }, }, - [32] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 92, statInterpolation = { 1, 1, 3, 3, }, }, - [33] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 93, statInterpolation = { 1, 1, 3, 3, }, }, - [34] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 94, statInterpolation = { 1, 1, 3, 3, }, }, - [35] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 95, statInterpolation = { 1, 1, 3, 3, }, }, - [36] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 96, statInterpolation = { 1, 1, 3, 3, }, }, - [37] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 97, statInterpolation = { 1, 1, 3, 3, }, }, - [38] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 98, statInterpolation = { 1, 1, 3, 3, }, }, - [39] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 99, statInterpolation = { 1, 1, 3, 3, }, }, - [40] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.25, levelRequirement = 100, statInterpolation = { 1, 1, 3, 3, }, }, + [1] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.7, cooldown = 0.3, levelRequirement = 4, statInterpolation = { 1, 1, 3, 3, }, }, + [2] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.74, cooldown = 0.3, levelRequirement = 6, statInterpolation = { 1, 1, 3, 3, }, }, + [3] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.78, cooldown = 0.3, levelRequirement = 9, statInterpolation = { 1, 1, 3, 3, }, }, + [4] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.82, cooldown = 0.3, levelRequirement = 12, statInterpolation = { 1, 1, 3, 3, }, }, + [5] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.86, cooldown = 0.3, levelRequirement = 16, statInterpolation = { 1, 1, 3, 3, }, }, + [6] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.9, cooldown = 0.3, levelRequirement = 20, statInterpolation = { 1, 1, 3, 3, }, }, + [7] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.94, cooldown = 0.3, levelRequirement = 24, statInterpolation = { 1, 1, 3, 3, }, }, + [8] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 0.98, cooldown = 0.3, levelRequirement = 28, statInterpolation = { 1, 1, 3, 3, }, }, + [9] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.02, cooldown = 0.3, levelRequirement = 32, statInterpolation = { 1, 1, 3, 3, }, }, + [10] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.06, cooldown = 0.3, levelRequirement = 36, statInterpolation = { 1, 1, 3, 3, }, }, + [11] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.1, cooldown = 0.3, levelRequirement = 40, statInterpolation = { 1, 1, 3, 3, }, }, + [12] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.14, cooldown = 0.3, levelRequirement = 44, statInterpolation = { 1, 1, 3, 3, }, }, + [13] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.18, cooldown = 0.3, levelRequirement = 48, statInterpolation = { 1, 1, 3, 3, }, }, + [14] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.22, cooldown = 0.3, levelRequirement = 52, statInterpolation = { 1, 1, 3, 3, }, }, + [15] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.26, cooldown = 0.3, levelRequirement = 55, statInterpolation = { 1, 1, 3, 3, }, }, + [16] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.3, cooldown = 0.3, levelRequirement = 58, statInterpolation = { 1, 1, 3, 3, }, }, + [17] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.34, cooldown = 0.3, levelRequirement = 61, statInterpolation = { 1, 1, 3, 3, }, }, + [18] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.38, cooldown = 0.3, levelRequirement = 64, statInterpolation = { 1, 1, 3, 3, }, }, + [19] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.42, cooldown = 0.3, levelRequirement = 67, statInterpolation = { 1, 1, 3, 3, }, }, + [20] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.46, cooldown = 0.3, levelRequirement = 70, statInterpolation = { 1, 1, 3, 3, }, }, + [21] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 72, statInterpolation = { 1, 1, 3, 3, }, }, + [22] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 74, statInterpolation = { 1, 1, 3, 3, }, }, + [23] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 76, statInterpolation = { 1, 1, 3, 3, }, }, + [24] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 78, statInterpolation = { 1, 1, 3, 3, }, }, + [25] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 80, statInterpolation = { 1, 1, 3, 3, }, }, + [26] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 82, statInterpolation = { 1, 1, 3, 3, }, }, + [27] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 84, statInterpolation = { 1, 1, 3, 3, }, }, + [28] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 86, statInterpolation = { 1, 1, 3, 3, }, }, + [29] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 88, statInterpolation = { 1, 1, 3, 3, }, }, + [30] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 90, statInterpolation = { 1, 1, 3, 3, }, }, + [31] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 91, statInterpolation = { 1, 1, 3, 3, }, }, + [32] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 92, statInterpolation = { 1, 1, 3, 3, }, }, + [33] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 93, statInterpolation = { 1, 1, 3, 3, }, }, + [34] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 94, statInterpolation = { 1, 1, 3, 3, }, }, + [35] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 95, statInterpolation = { 1, 1, 3, 3, }, }, + [36] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 96, statInterpolation = { 1, 1, 3, 3, }, }, + [37] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 97, statInterpolation = { 1, 1, 3, 3, }, }, + [38] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 98, statInterpolation = { 1, 1, 3, 3, }, }, + [39] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 99, statInterpolation = { 1, 1, 3, 3, }, }, + [40] = { 100, 4000, 0.80000001192093, 1.2000000476837, damageEffectiveness = 1.5, cooldown = 0.3, levelRequirement = 100, statInterpolation = { 1, 1, 3, 3, }, }, }, } skills["DominatingBlowMinionCharge"] = { @@ -1066,7 +1066,7 @@ skills["DropBearSummonedRallyingCry"] = { hidden = true, color = 1, description = "Performs a warcry, granting increased damage and mana regeneration to the user and nearby allies if there are nearby enemies. The damage increase is proportional to the number of surrounding enemies. Taunts all nearby enemies to attack the user. Shares a cooldown with other Warcry skills.", - skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.25, statMap = { diff --git a/Data/3_0/Skills/other.lua b/Data/3_0/Skills/other.lua index 1b1287314..0cd5efe2f 100644 --- a/Data/3_0/Skills/other.lua +++ b/Data/3_0/Skills/other.lua @@ -62,7 +62,7 @@ skills["GemDetonateMines"] = { name = "Detonate Mines", color = 4, description = "Detonates a Mine, starting a Detonation Sequence which will detonate other Mines around it.", - skillTypes = { [SkillType.Spell] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, baseFlags = { @@ -160,7 +160,7 @@ skills["SupportUniqueMjolnerLightningSpellsCastOnHit"] = { color = 4, support = true, requireSkillTypes = { SkillType.Spell, SkillType.LightningSkill, SkillType.Triggerable, SkillType.AND, SkillType.AND, }, - addSkillTypes = { SkillType.Triggered, }, + addSkillTypes = { SkillType.Triggered, SkillType.Type90, }, excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.Aura, SkillType.TriggeredGrantedSkill, }, statDescriptionScope = "gem_stat_descriptions", fromItem = true, @@ -223,7 +223,7 @@ skills["SupportUniqueCosprisMaliceColdSpellsCastOnMeleeCriticalStrike"] = { color = 4, support = true, requireSkillTypes = { SkillType.Spell, SkillType.ColdSkill, SkillType.Triggerable, SkillType.AND, SkillType.AND, }, - addSkillTypes = { SkillType.Triggered, }, + addSkillTypes = { SkillType.Triggered, SkillType.Type90, }, excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.Aura, SkillType.TriggeredGrantedSkill, }, statDescriptionScope = "gem_stat_descriptions", fromItem = true, @@ -275,7 +275,7 @@ skills["BirdAspect"] = { hidden = true, color = 4, description = "While active, grants the Avian's Might and Avian's Flight buffs in sequence. Avian's Might grants you and your minions a chance to deal Double Damage with hits for a duration. Avian's Flight grants you and your minions increased Movement Speed for a secondary duration.", - skillTypes = { [SkillType.Buff] = true, [SkillType.ManaCostPercent] = true, [SkillType.Spell] = true, [SkillType.ManaCostReserved] = true, [SkillType.Duration] = true, [SkillType.Instant] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.ManaCostPercent] = true, [SkillType.Spell] = true, [SkillType.ManaCostReserved] = true, [SkillType.Duration] = true, [SkillType.Instant] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, fromItem = true, @@ -315,7 +315,7 @@ skills["CatAspect"] = { hidden = true, color = 4, description = "While active, grants the Cat's Stealth and Cat's Agility buffs in sequence. Cat's Stealth increases your critical strike chance, makes you harder to see, and gives you a chance to avoid damage for a short duration. Cat's Agility increases your attack and cast speed for a longer secondary duration.", - skillTypes = { [SkillType.Buff] = true, [SkillType.ManaCostPercent] = true, [SkillType.Spell] = true, [SkillType.ManaCostReserved] = true, [SkillType.Duration] = true, [SkillType.Instant] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.ManaCostPercent] = true, [SkillType.Spell] = true, [SkillType.ManaCostReserved] = true, [SkillType.Duration] = true, [SkillType.Instant] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, fromItem = true, @@ -356,7 +356,7 @@ skills["CrabAspect"] = { hidden = true, color = 4, description = "While active, periodically adds Crab Barriers to you, and grants additional Physical Damage reduction for each Crab Barrier you have. All Crab Barriers are lost when you take physical damage from a hit.", - skillTypes = { [SkillType.Buff] = true, [SkillType.ManaCostPercent] = true, [SkillType.Spell] = true, [SkillType.ManaCostReserved] = true, [SkillType.Instant] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.ManaCostPercent] = true, [SkillType.Spell] = true, [SkillType.ManaCostReserved] = true, [SkillType.Instant] = true, [SkillType.PhysicalSkill] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, fromItem = true, @@ -388,7 +388,7 @@ skills["SpiderAspect"] = { hidden = true, color = 4, description = "While active, periodically applies a Spider's Web debuff to nearby Enemies, and Hinders them. Each Spider's Web on an Enemy increases the Damage they take. Hinder reduces their movement speed.", - skillTypes = { [SkillType.Buff] = true, [SkillType.ManaCostPercent] = true, [SkillType.Spell] = true, [SkillType.ManaCostReserved] = true, [SkillType.Duration] = true, [SkillType.Instant] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.ManaCostPercent] = true, [SkillType.Spell] = true, [SkillType.ManaCostReserved] = true, [SkillType.Duration] = true, [SkillType.Instant] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0, fromItem = true, @@ -523,7 +523,7 @@ skills["TriggeredConsecrate"] = { hidden = true, color = 4, description = "Creates an area of Consecrated Ground, providing life regeneration for you and allies who stand in it.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -662,46 +662,46 @@ skills["TouchOfGod"] = { "global_always_hit", }, levels = { - [1] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 28, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [2] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 31, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [3] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 34, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [4] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 37, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [5] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 40, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [6] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 42, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [7] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 44, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [8] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 46, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [9] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 48, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [10] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 50, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [11] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 52, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [12] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 54, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [13] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 56, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [14] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 58, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [15] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 60, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [16] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 62, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [17] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 64, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [18] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 66, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [19] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 68, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [20] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 70, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [21] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 72, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [22] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 74, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [23] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 76, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [24] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 78, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [25] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 80, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [26] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 82, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [27] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 84, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [28] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 86, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [29] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 88, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [30] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 90, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [31] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 91, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [32] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 92, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [33] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 93, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [34] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 94, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [35] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 95, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [36] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 96, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [37] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 97, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [38] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 98, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [39] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 99, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, - [40] = { 100, -50, 20, damageEffectiveness = 6, levelRequirement = 100, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [1] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 28, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [2] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 31, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [3] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 34, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [4] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 37, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [5] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 40, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [6] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 42, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [7] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 44, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [8] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 46, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [9] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 48, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [10] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 50, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [11] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 52, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [12] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 54, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [13] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 56, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [14] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 58, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [15] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 60, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [16] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 62, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [17] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 64, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [18] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 66, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [19] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 68, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [20] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 70, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [21] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 72, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [22] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 74, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [23] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 76, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [24] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 78, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [25] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 80, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [26] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 82, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [27] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 84, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [28] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 86, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [29] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 88, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [30] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 90, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [31] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 91, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [32] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 92, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [33] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 93, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [34] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 94, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [35] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 95, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [36] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 96, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [37] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 97, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [38] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 98, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [39] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 99, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, + [40] = { 100, -30, 40, damageEffectiveness = 6, levelRequirement = 100, manaCost = 8, statInterpolation = { 1, 1, 1, }, }, }, } skills["ElementalAegis"] = { @@ -808,7 +808,7 @@ skills["Envy"] = { baseEffectiveness = 1.2000000476837, incrementalEffectiveness = 0.023000000044703, description = "Casts an aura that adds chaos damage to the attacks and spells of you and your allies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.ChaosSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Buff] = true, [SkillType.ManaCostReserved] = true, [SkillType.Type27] = true, [SkillType.ManaCostPercent] = true, [SkillType.SkillCanTotem] = true, [SkillType.Aura] = true, [SkillType.ChaosSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, fromItem = true, @@ -940,7 +940,7 @@ skills["VaalAuraElementalDamageHealing"] = { hidden = true, color = 4, description = "Casts an aura that causes taking elemental damage to heal you and nearby allies instead.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Vaal] = true, [SkillType.Aura] = true, [SkillType.AreaSpell] = true, [SkillType.Instant] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "aura_skill_stat_descriptions", castTime = 0, fromItem = true, @@ -1040,7 +1040,7 @@ skills["MerveilWarp"] = { hidden = true, color = 4, description = "Teleport to a target destination. Chilled ground is spread in an area around both where the caster was and where they teleported to.", - skillTypes = { [SkillType.Spell] = true, [SkillType.MovementSkill] = true, [SkillType.Duration] = true, [SkillType.ColdSkill] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.MovementSkill] = true, [SkillType.Duration] = true, [SkillType.ColdSkill] = true, [SkillType.Area] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.6, fromItem = true, @@ -1151,7 +1151,7 @@ skills["UniqueAnimateWeapon"] = { hidden = true, color = 4, description = "Manifests Dancing Dervish to fight by your side. While Dancing Dervish is manifested, you have Onslaught and cannot use Weapons. Cannot be supported by supports that would create other minions.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Triggerable] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.Type72] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.Triggerable] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.Type72] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Area] = true, [SkillType.MovementSkill] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, @@ -1198,7 +1198,7 @@ skills["TriggeredMoltenStrike"] = { hidden = true, color = 1, description = "Launch molten projectiles from the point of impact, causing AoE attack damage to enemies where they land.", - skillTypes = { [SkillType.Projectile] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.ProjectileAttack] = true, [SkillType.Type83] = true, }, + skillTypes = { [SkillType.Projectile] = true, [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.FireSkill] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.ProjectileAttack] = true, [SkillType.Type83] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, fromItem = true, @@ -1263,11 +1263,10 @@ skills["TriggeredSummonSpider"] = { "spell_uncastable_if_triggerable", "take_no_actions_while_parent_dead", "minion_dies_when_parent_dies", - "display_skill_minions_level_is_corpse_level", "minions_cannot_taunt_enemies", }, levels = { - [1] = { 100, 30000, 20, 2, 12, -70, cooldown = 2, levelRequirement = 75, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, + [1] = { 100, 30000, 20, 2, 12, -85, cooldown = 2, levelRequirement = 75, statInterpolation = { 1, 1, 1, 1, 1, 1, }, }, }, } skills["ShadeForm"] = { @@ -1364,7 +1363,7 @@ skills["StormCascadeTriggered"] = { baseEffectiveness = 1.7555999755859, incrementalEffectiveness = 0.034600000828505, description = "Lightning crackles in a series of small bursts, each damaging enemies caught in the area.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.PhysicalSkill] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.PhysicalSkill] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.8, fromItem = true, @@ -1424,7 +1423,7 @@ skills["SummonBeastialRhoa"] = { 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.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, @@ -1466,7 +1465,7 @@ skills["SummonBeastialSnake"] = { hidden = true, color = 3, description = "Summons a Bestial Snake. The Bestial Snake fires powerful chaos projectile attacks. This minion's hits cannot be evaded.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Chaining] = true, [SkillType.ProjectileAttack] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, @@ -1508,7 +1507,7 @@ skills["SummonBeastialUrsa"] = { 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.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.AttackCanRepeat] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, @@ -1613,7 +1612,7 @@ skills["SummonHarbingerOfTheArcane"] = { hidden = true, color = 4, description = "Summons an immortal Harbinger minion. The minion will occasionally cast Arcane Surge on you, granting More Spell Damage, Cast Speed and Mana Regeneration.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -1639,7 +1638,7 @@ skills["SummonHarbingerOfBrutality"] = { hidden = true, color = 4, description = "Summons an immortal Harbinger minion. The minion will occasionally grant you significantly increased Damage, Attack Speed, Movement Speed, and reduce the Damage you take.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -1665,7 +1664,7 @@ skills["SummonHarbingerOfDirections"] = { hidden = true, color = 4, description = "Summons an immortal Harbinger minion. The minion will cast a random buff on you that grants one or all of the following: 1 additional Projectile, +1 Chain, Pierce 1 additional Target, and Projectiles Fork.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -1691,7 +1690,7 @@ skills["SummonHarbingerOfFocus"] = { hidden = true, color = 4, description = "Summons an immortal Harbinger minion. While you are channelling, the minion will occasionally cast a buff on you that reduces the Damage you take, and makes you avoid all Stuns and Ailments.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -1717,7 +1716,7 @@ skills["SummonHarbingerOfStorms"] = { hidden = true, color = 4, description = "Summons an immortal Harbinger minion. The minion will occasionally apply a Chill or Shock to an enemy that chains to other nearby enemies.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, minionSkillTypes = { [SkillType.NonHitChill] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, @@ -1744,7 +1743,7 @@ skills["SummonHarbingerOfTime"] = { hidden = true, color = 4, description = "Summons an immortal Harbinger minion. The minion will occasionally create a Slipstream aura on you that increases the Action Speed of you, and all allies and enemies near you.", - skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, }, + skillTypes = { [SkillType.Triggerable] = true, [SkillType.SkillCanMine] = true, [SkillType.Minion] = true, [SkillType.CreateMinion] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Spell] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanTrap] = true, [SkillType.CreatesMinion] = true, [SkillType.Type90] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", castTime = 1, cannotBeSupported = true, @@ -1943,7 +1942,7 @@ skills["VoidGaze"] = { hidden = true, color = 3, description = "Applies a debuff to Enemies, removing some of their resistance to Chaos damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.ChaosSkill] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Duration] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.ChaosSkill] = true, [SkillType.Area] = true, [SkillType.SkillCanTotem] = true, [SkillType.Duration] = true, [SkillType.TriggeredGrantedSkill] = true, [SkillType.Triggerable] = true, [SkillType.AreaSpell] = true, [SkillType.Type90] = true, }, statDescriptionScope = "debuff_skill_stat_descriptions", castTime = 0.21, fromItem = true, diff --git a/Data/3_0/Skills/spectre.lua b/Data/3_0/Skills/spectre.lua index 58b92c528..e8bd84972 100644 --- a/Data/3_0/Skills/spectre.lua +++ b/Data/3_0/Skills/spectre.lua @@ -880,7 +880,7 @@ skills["GoatmanMoltenShell"] = { baseEffectiveness = 4.2555999755859, incrementalEffectiveness = 0.03999999910593, description = "Summons fiery elemental shields providing additional armour for a short duration. If cumulative physical damage prevented by your blocking or armour reaches a threshold, the shields explode outwards, dealing fire damage to surrounding enemies.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type31] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Hit] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTotem] = true, [SkillType.Type31] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.5, baseFlags = { @@ -1748,7 +1748,7 @@ skills["MonsterEnduringCry"] = { hidden = true, color = 1, description = "Performs a warcry, adding endurance charges proportional to the number of surrounding enemies and granting life regeneration to you for a short time if there are nearby enemies. Taunts all nearby enemies to attack the user. Shares a cooldown with other Warcry skills.", - skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, }, + skillTypes = { [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Warcry] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.25, baseFlags = { @@ -1807,7 +1807,7 @@ skills["MonsterEnfeeble"] = { hidden = true, color = 3, description = "Curses all targets in an area, making their attacks and spells less effective.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -1920,7 +1920,7 @@ skills["MonsterFlickerStrike"] = { hidden = true, color = 4, description = "Teleports the character to a nearby monster and attacks with a melee weapon. If no specific monster is targeted, one is picked at random. Grants a buff that increases movement speed for a duration. The cooldown can be bypassed by expending a Frenzy Charge.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.MovementSkill] = true, [SkillType.Duration] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.AttackCanRepeat] = true, [SkillType.MovementSkill] = true, [SkillType.Duration] = true, [SkillType.Type90] = true, }, weaponTypes = { ["One Handed Mace"] = true, ["Sceptre"] = true, @@ -2282,7 +2282,7 @@ skills["MonsterProjectileWeakness"] = { hidden = true, color = 2, description = "Curses all targets in an area, making them easier to pierce and to knock back, and increasing the damage they take from projectiles.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2385,7 +2385,7 @@ skills["MonsterRighteousFireWhileSpectred"] = { baseEffectiveness = 1.1110999584198, incrementalEffectiveness = 0.056000001728535, description = "Engulfs you in magical fire that rapidly burns you and nearby enemies. Your spell damage is substantially increased while under this effect. The effect ends when you have 1 life remaining.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.CausesBurning] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Area] = true, [SkillType.CausesBurning] = true, [SkillType.DamageOverTime] = true, [SkillType.FireSkill] = true, [SkillType.SkillCanTotem] = true, [SkillType.Triggerable] = true, [SkillType.Instant] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, [SkillType.Type90] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1, baseFlags = { @@ -2539,7 +2539,7 @@ skills["MonsterWarlordsMark"] = { hidden = true, color = 1, description = "Curses all targets in an area, making them more vulnerable to stuns. Hitting the cursed targets will leech life and mana, and killing them will result in a chance to gain an endurance charge.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2616,7 +2616,7 @@ skills["NecromancerConductivity"] = { hidden = true, color = 3, description = "Curses all targets in an area, making them less resistant to lightning damage and giving them a chance to be shocked by lightning damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.LightningSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2657,7 +2657,7 @@ skills["NecromancerElementalWeakness"] = { hidden = true, color = 3, description = "Curses all targets in an area, making them less resistant to elemental damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2696,7 +2696,7 @@ skills["NecromancerEnfeeble"] = { hidden = true, color = 3, description = "Curses all targets in an area, making their attacks and spells less effective.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2742,7 +2742,7 @@ skills["NecromancerFlammability"] = { hidden = true, color = 3, description = "Curses all targets in an area, making them less resistant to fire damage and giving them a chance to be ignited by fire damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.FireSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2782,7 +2782,7 @@ skills["NecromancerFrostbite"] = { hidden = true, color = 3, description = "Curses all targets in an area, making them less resistant to cold damage and giving them a chance to be frozen by cold damage.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.ColdSkill] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2822,7 +2822,7 @@ skills["NecromancerProjectileWeakness"] = { hidden = true, color = 2, description = "Curses all targets in an area, making them easier to pierce and to knock back, and increasing the damage they take from projectiles.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -2893,7 +2893,7 @@ skills["NecromancerVulnerability"] = { hidden = true, color = 4, description = "Curse all targets in an area, causing them to take increased physical damage and further increased physical damage over time. Attacks against cursed enemies have a chance to inflict bleeding and maim.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { @@ -3338,7 +3338,7 @@ skills["SkeletonTemporalChains"] = { hidden = true, color = 4, description = "Curses all targets in an area, Slowing them, and making effects on them expire more slowly.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.67, statMap = { @@ -3377,7 +3377,7 @@ skills["SkeletonVulnerability"] = { hidden = true, color = 4, description = "Curse all targets in an area, causing them to take increased physical damage and further increased physical damage over time. Attacks against cursed enemies have a chance to inflict bleeding and maim.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.SkillCanTrap] = true, [SkillType.SkillCanTotem] = true, [SkillType.SkillCanMine] = true, [SkillType.SpellCanRepeat] = true, [SkillType.Curse] = true, [SkillType.Triggerable] = true, [SkillType.SpellCanCascade] = true, [SkillType.AppliesCurse] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.PhysicalSkill] = true, [SkillType.Type85] = true, [SkillType.Type86] = true, }, statDescriptionScope = "curse_skill_stat_descriptions", castTime = 0.5, statMap = { diff --git a/Data/3_0/Skills/sup_dex.lua b/Data/3_0/Skills/sup_dex.lua index 4ee5d4a16..e127f90ce 100644 --- a/Data/3_0/Skills/sup_dex.lua +++ b/Data/3_0/Skills/sup_dex.lua @@ -203,6 +203,7 @@ skills["SupportArrowNova"] = { "projectiles_nova", "projectiles_rain", "skill_can_only_use_bow", + "skill_is_rain_skill", }, levels = { [1] = { 4, -40, manaMultiplier = 40, levelRequirement = 8, statInterpolation = { 1, 1, }, }, @@ -252,9 +253,10 @@ skills["SupportArrowNovaPlus"] = { description = "Supports bow attack skills that fire arrows forwards as projectiles. These skills will instead fire a payload arrow into the air to land at a targeted location. The supported skills' arrows will then fire out in a circle from where it lands. Cannot support skills that already fire arrows into the air, channelled skills, or skills that create Minions.", color = 2, support = true, - requireSkillTypes = { SkillType.Projectile, SkillType.Type54, SkillType.Type56, SkillType.Type73, }, + requireSkillTypes = { SkillType.Projectile, SkillType.Type54, SkillType.OR, SkillType.ProjectileAttack, SkillType.Type56, SkillType.OR, SkillType.AND, SkillType.SkillCanVolley, SkillType.AND, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Channelled, }, + excludeSkillTypes = { SkillType.Channelled, SkillType.CreatesMinion, SkillType.Type83, }, + ignoreMinionTypes = true, plusVersionOf = "SupportArrowNova", statDescriptionScope = "gem_stat_descriptions", statMap = { @@ -273,6 +275,7 @@ skills["SupportArrowNovaPlus"] = { "projectiles_nova", "projectiles_rain", "skill_can_only_use_bow", + "skill_is_rain_skill", }, levels = { [1] = { 5, -30, manaMultiplier = 40, levelRequirement = 72, statInterpolation = { 1, 1, }, }, @@ -559,7 +562,7 @@ skills["SupportCastOnCritTriggered"] = { color = 2, support = true, requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, - addSkillTypes = { SkillType.Triggered, }, + addSkillTypes = { SkillType.Triggered, SkillType.Type90, }, excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.ManaCostReserved, SkillType.TriggeredGrantedSkill, }, ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", @@ -671,7 +674,7 @@ skills["SupportCastOnCritTriggeredPlus"] = { color = 2, support = true, requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, - addSkillTypes = { SkillType.Triggered, }, + addSkillTypes = { SkillType.Triggered, SkillType.Type90, }, excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.ManaCostReserved, SkillType.TriggeredGrantedSkill, }, ignoreMinionTypes = true, plusVersionOf = "SupportCastOnCritTriggered", @@ -1117,48 +1120,49 @@ skills["SupportClusterTrap"] = { "number_of_additional_traps_allowed", "throw_traps_in_circle_radius", "support_clustertrap_damage_+%_final", + "multi_trap_and_mine_support_flags", }, levels = { - [1] = { 2, 5, 20, -55, manaMultiplier = 50, levelRequirement = 38, statInterpolation = { 1, 1, 1, 1, }, }, - [2] = { 2, 5, 20, -54, manaMultiplier = 50, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, }, }, - [3] = { 2, 5, 20, -53, manaMultiplier = 50, levelRequirement = 42, statInterpolation = { 1, 1, 1, 1, }, }, - [4] = { 2, 5, 20, -52, manaMultiplier = 50, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, }, }, - [5] = { 2, 5, 20, -51, manaMultiplier = 50, levelRequirement = 46, statInterpolation = { 1, 1, 1, 1, }, }, - [6] = { 2, 5, 20, -50, manaMultiplier = 50, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, }, }, - [7] = { 2, 5, 20, -49, manaMultiplier = 50, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, }, }, - [8] = { 2, 5, 20, -48, manaMultiplier = 50, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, }, }, - [9] = { 2, 5, 20, -47, manaMultiplier = 50, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, }, }, - [10] = { 2, 5, 20, -46, manaMultiplier = 50, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, }, }, - [11] = { 2, 5, 20, -45, manaMultiplier = 50, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, }, }, - [12] = { 2, 5, 20, -44, manaMultiplier = 50, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, }, }, - [13] = { 2, 5, 20, -43, manaMultiplier = 50, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, }, }, - [14] = { 2, 5, 20, -42, manaMultiplier = 50, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, }, }, - [15] = { 2, 5, 20, -41, manaMultiplier = 50, levelRequirement = 65, statInterpolation = { 1, 1, 1, 1, }, }, - [16] = { 2, 5, 20, -40, manaMultiplier = 50, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, }, }, - [17] = { 2, 5, 20, -39, manaMultiplier = 50, levelRequirement = 67, statInterpolation = { 1, 1, 1, 1, }, }, - [18] = { 2, 5, 20, -38, manaMultiplier = 50, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, }, }, - [19] = { 2, 5, 20, -37, manaMultiplier = 50, levelRequirement = 69, statInterpolation = { 1, 1, 1, 1, }, }, - [20] = { 2, 5, 20, -36, manaMultiplier = 50, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, }, }, - [21] = { 2, 5, 20, -35, manaMultiplier = 50, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, }, }, - [22] = { 2, 5, 20, -34, manaMultiplier = 50, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, }, }, - [23] = { 2, 5, 20, -33, manaMultiplier = 50, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, }, }, - [24] = { 2, 5, 20, -32, manaMultiplier = 50, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, }, }, - [25] = { 2, 5, 20, -31, manaMultiplier = 50, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, }, }, - [26] = { 2, 5, 20, -30, manaMultiplier = 50, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, }, }, - [27] = { 2, 5, 20, -29, manaMultiplier = 50, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, }, }, - [28] = { 2, 5, 20, -28, manaMultiplier = 50, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, }, }, - [29] = { 2, 5, 20, -27, manaMultiplier = 50, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, }, }, - [30] = { 2, 5, 20, -26, manaMultiplier = 50, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, }, }, - [31] = { 2, 5, 20, -26, manaMultiplier = 50, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, }, }, - [32] = { 2, 5, 20, -25, manaMultiplier = 50, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, }, }, - [33] = { 2, 5, 20, -25, manaMultiplier = 50, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, }, }, - [34] = { 2, 5, 20, -24, manaMultiplier = 50, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, }, }, - [35] = { 2, 5, 20, -24, manaMultiplier = 50, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, }, }, - [36] = { 2, 5, 20, -23, manaMultiplier = 50, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, }, }, - [37] = { 2, 5, 20, -23, manaMultiplier = 50, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, }, }, - [38] = { 2, 5, 20, -22, manaMultiplier = 50, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, }, }, - [39] = { 2, 5, 20, -22, manaMultiplier = 50, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, }, }, - [40] = { 2, 5, 20, -21, manaMultiplier = 50, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, }, }, + [1] = { 2, 5, 20, -55, 1, manaMultiplier = 50, levelRequirement = 38, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [2] = { 2, 5, 20, -54, 1, manaMultiplier = 50, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [3] = { 2, 5, 20, -53, 1, manaMultiplier = 50, levelRequirement = 42, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [4] = { 2, 5, 20, -52, 1, manaMultiplier = 50, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [5] = { 2, 5, 20, -51, 1, manaMultiplier = 50, levelRequirement = 46, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [6] = { 2, 5, 20, -50, 1, manaMultiplier = 50, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [7] = { 2, 5, 20, -49, 1, manaMultiplier = 50, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [8] = { 2, 5, 20, -48, 1, manaMultiplier = 50, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [9] = { 2, 5, 20, -47, 1, manaMultiplier = 50, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [10] = { 2, 5, 20, -46, 1, manaMultiplier = 50, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [11] = { 2, 5, 20, -45, 1, manaMultiplier = 50, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [12] = { 2, 5, 20, -44, 1, manaMultiplier = 50, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [13] = { 2, 5, 20, -43, 1, manaMultiplier = 50, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [14] = { 2, 5, 20, -42, 1, manaMultiplier = 50, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [15] = { 2, 5, 20, -41, 1, manaMultiplier = 50, levelRequirement = 65, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [16] = { 2, 5, 20, -40, 1, manaMultiplier = 50, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [17] = { 2, 5, 20, -39, 1, manaMultiplier = 50, levelRequirement = 67, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [18] = { 2, 5, 20, -38, 1, manaMultiplier = 50, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [19] = { 2, 5, 20, -37, 1, manaMultiplier = 50, levelRequirement = 69, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [20] = { 2, 5, 20, -36, 1, manaMultiplier = 50, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [21] = { 2, 5, 20, -35, 1, manaMultiplier = 50, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [22] = { 2, 5, 20, -34, 1, manaMultiplier = 50, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [23] = { 2, 5, 20, -33, 1, manaMultiplier = 50, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [24] = { 2, 5, 20, -32, 1, manaMultiplier = 50, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [25] = { 2, 5, 20, -31, 1, manaMultiplier = 50, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [26] = { 2, 5, 20, -30, 1, manaMultiplier = 50, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [27] = { 2, 5, 20, -29, 1, manaMultiplier = 50, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [28] = { 2, 5, 20, -28, 1, manaMultiplier = 50, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [29] = { 2, 5, 20, -27, 1, manaMultiplier = 50, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [30] = { 2, 5, 20, -26, 1, manaMultiplier = 50, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [31] = { 2, 5, 20, -26, 1, manaMultiplier = 50, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [32] = { 2, 5, 20, -25, 1, manaMultiplier = 50, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [33] = { 2, 5, 20, -25, 1, manaMultiplier = 50, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [34] = { 2, 5, 20, -24, 1, manaMultiplier = 50, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [35] = { 2, 5, 20, -24, 1, manaMultiplier = 50, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [36] = { 2, 5, 20, -23, 1, manaMultiplier = 50, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [37] = { 2, 5, 20, -23, 1, manaMultiplier = 50, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [38] = { 2, 5, 20, -22, 1, manaMultiplier = 50, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [39] = { 2, 5, 20, -22, 1, manaMultiplier = 50, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [40] = { 2, 5, 20, -21, 1, manaMultiplier = 50, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, }, }, }, } skills["SupportColdPenetration"] = { @@ -2397,48 +2401,49 @@ skills["SupportMultiTrap"] = { "number_of_additional_traps_to_throw", "number_of_additional_traps_allowed", "support_multithrow_damage_+%_final", + "multi_trap_and_mine_support_flags", }, levels = { - [1] = { 2, 3, -50, manaMultiplier = 40, levelRequirement = 8, statInterpolation = { 1, 1, 1, }, }, - [2] = { 2, 3, -49, manaMultiplier = 40, levelRequirement = 10, statInterpolation = { 1, 1, 1, }, }, - [3] = { 2, 3, -48, manaMultiplier = 40, levelRequirement = 13, statInterpolation = { 1, 1, 1, }, }, - [4] = { 2, 3, -47, manaMultiplier = 40, levelRequirement = 17, statInterpolation = { 1, 1, 1, }, }, - [5] = { 2, 3, -46, manaMultiplier = 40, levelRequirement = 21, statInterpolation = { 1, 1, 1, }, }, - [6] = { 2, 3, -45, manaMultiplier = 40, levelRequirement = 25, statInterpolation = { 1, 1, 1, }, }, - [7] = { 2, 3, -44, manaMultiplier = 40, levelRequirement = 29, statInterpolation = { 1, 1, 1, }, }, - [8] = { 2, 3, -43, manaMultiplier = 40, levelRequirement = 33, statInterpolation = { 1, 1, 1, }, }, - [9] = { 2, 3, -42, manaMultiplier = 40, levelRequirement = 37, statInterpolation = { 1, 1, 1, }, }, - [10] = { 2, 3, -41, manaMultiplier = 40, levelRequirement = 40, statInterpolation = { 1, 1, 1, }, }, - [11] = { 2, 3, -40, manaMultiplier = 40, levelRequirement = 43, statInterpolation = { 1, 1, 1, }, }, - [12] = { 2, 3, -39, manaMultiplier = 40, levelRequirement = 46, statInterpolation = { 1, 1, 1, }, }, - [13] = { 2, 3, -38, manaMultiplier = 40, levelRequirement = 49, statInterpolation = { 1, 1, 1, }, }, - [14] = { 2, 3, -37, manaMultiplier = 40, levelRequirement = 52, statInterpolation = { 1, 1, 1, }, }, - [15] = { 2, 3, -36, manaMultiplier = 40, levelRequirement = 55, statInterpolation = { 1, 1, 1, }, }, - [16] = { 2, 3, -35, manaMultiplier = 40, levelRequirement = 58, statInterpolation = { 1, 1, 1, }, }, - [17] = { 2, 3, -34, manaMultiplier = 40, levelRequirement = 61, statInterpolation = { 1, 1, 1, }, }, - [18] = { 2, 3, -33, manaMultiplier = 40, levelRequirement = 64, statInterpolation = { 1, 1, 1, }, }, - [19] = { 2, 3, -32, manaMultiplier = 40, levelRequirement = 67, statInterpolation = { 1, 1, 1, }, }, - [20] = { 2, 3, -31, manaMultiplier = 40, levelRequirement = 70, statInterpolation = { 1, 1, 1, }, }, - [21] = { 2, 3, -30, manaMultiplier = 40, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, }, - [22] = { 2, 3, -29, manaMultiplier = 40, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, }, - [23] = { 2, 3, -28, manaMultiplier = 40, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, }, - [24] = { 2, 3, -27, manaMultiplier = 40, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, }, - [25] = { 2, 3, -26, manaMultiplier = 40, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, }, - [26] = { 2, 3, -25, manaMultiplier = 40, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, }, - [27] = { 2, 3, -24, manaMultiplier = 40, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, }, - [28] = { 2, 3, -23, manaMultiplier = 40, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, }, - [29] = { 2, 3, -22, manaMultiplier = 40, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, }, - [30] = { 2, 3, -21, manaMultiplier = 40, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, }, - [31] = { 2, 3, -20, manaMultiplier = 40, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, }, - [32] = { 2, 3, -19, manaMultiplier = 40, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, }, - [33] = { 2, 3, -18, manaMultiplier = 40, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, }, - [34] = { 2, 3, -17, manaMultiplier = 40, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, }, - [35] = { 2, 3, -16, manaMultiplier = 40, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, }, - [36] = { 2, 3, -15, manaMultiplier = 40, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, }, - [37] = { 2, 3, -14, manaMultiplier = 40, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, }, - [38] = { 2, 3, -13, manaMultiplier = 40, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, }, - [39] = { 2, 3, -12, manaMultiplier = 40, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, }, - [40] = { 2, 3, -11, manaMultiplier = 40, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, }, + [1] = { 2, 3, -50, 2, manaMultiplier = 40, levelRequirement = 8, statInterpolation = { 1, 1, 1, 1, }, }, + [2] = { 2, 3, -49, 2, manaMultiplier = 40, levelRequirement = 10, statInterpolation = { 1, 1, 1, 1, }, }, + [3] = { 2, 3, -48, 2, manaMultiplier = 40, levelRequirement = 13, statInterpolation = { 1, 1, 1, 1, }, }, + [4] = { 2, 3, -47, 2, manaMultiplier = 40, levelRequirement = 17, statInterpolation = { 1, 1, 1, 1, }, }, + [5] = { 2, 3, -46, 2, manaMultiplier = 40, levelRequirement = 21, statInterpolation = { 1, 1, 1, 1, }, }, + [6] = { 2, 3, -45, 2, manaMultiplier = 40, levelRequirement = 25, statInterpolation = { 1, 1, 1, 1, }, }, + [7] = { 2, 3, -44, 2, manaMultiplier = 40, levelRequirement = 29, statInterpolation = { 1, 1, 1, 1, }, }, + [8] = { 2, 3, -43, 2, manaMultiplier = 40, levelRequirement = 33, statInterpolation = { 1, 1, 1, 1, }, }, + [9] = { 2, 3, -42, 2, manaMultiplier = 40, levelRequirement = 37, statInterpolation = { 1, 1, 1, 1, }, }, + [10] = { 2, 3, -41, 2, manaMultiplier = 40, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, }, }, + [11] = { 2, 3, -40, 2, manaMultiplier = 40, levelRequirement = 43, statInterpolation = { 1, 1, 1, 1, }, }, + [12] = { 2, 3, -39, 2, manaMultiplier = 40, levelRequirement = 46, statInterpolation = { 1, 1, 1, 1, }, }, + [13] = { 2, 3, -38, 2, manaMultiplier = 40, levelRequirement = 49, statInterpolation = { 1, 1, 1, 1, }, }, + [14] = { 2, 3, -37, 2, manaMultiplier = 40, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, }, }, + [15] = { 2, 3, -36, 2, manaMultiplier = 40, levelRequirement = 55, statInterpolation = { 1, 1, 1, 1, }, }, + [16] = { 2, 3, -35, 2, manaMultiplier = 40, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, }, }, + [17] = { 2, 3, -34, 2, manaMultiplier = 40, levelRequirement = 61, statInterpolation = { 1, 1, 1, 1, }, }, + [18] = { 2, 3, -33, 2, manaMultiplier = 40, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, }, }, + [19] = { 2, 3, -32, 2, manaMultiplier = 40, levelRequirement = 67, statInterpolation = { 1, 1, 1, 1, }, }, + [20] = { 2, 3, -31, 2, manaMultiplier = 40, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, }, }, + [21] = { 2, 3, -30, 2, manaMultiplier = 40, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, }, }, + [22] = { 2, 3, -29, 2, manaMultiplier = 40, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, }, }, + [23] = { 2, 3, -28, 2, manaMultiplier = 40, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, }, }, + [24] = { 2, 3, -27, 2, manaMultiplier = 40, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, }, }, + [25] = { 2, 3, -26, 2, manaMultiplier = 40, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, }, }, + [26] = { 2, 3, -25, 2, manaMultiplier = 40, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, }, }, + [27] = { 2, 3, -24, 2, manaMultiplier = 40, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, }, }, + [28] = { 2, 3, -23, 2, manaMultiplier = 40, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, }, }, + [29] = { 2, 3, -22, 2, manaMultiplier = 40, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, }, }, + [30] = { 2, 3, -21, 2, manaMultiplier = 40, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, }, }, + [31] = { 2, 3, -20, 2, manaMultiplier = 40, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, }, }, + [32] = { 2, 3, -19, 2, manaMultiplier = 40, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, }, }, + [33] = { 2, 3, -18, 2, manaMultiplier = 40, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, }, }, + [34] = { 2, 3, -17, 2, manaMultiplier = 40, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, }, }, + [35] = { 2, 3, -16, 2, manaMultiplier = 40, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, }, }, + [36] = { 2, 3, -15, 2, manaMultiplier = 40, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, }, }, + [37] = { 2, 3, -14, 2, manaMultiplier = 40, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, }, }, + [38] = { 2, 3, -13, 2, manaMultiplier = 40, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, }, }, + [39] = { 2, 3, -12, 2, manaMultiplier = 40, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, }, }, + [40] = { 2, 3, -11, 2, manaMultiplier = 40, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, }, }, }, } skills["SupportPuncturingWeapon"] = { @@ -2909,7 +2914,7 @@ skills["SupportSwiftAfflictionPlus"] = { requireSkillTypes = { SkillType.Duration, SkillType.Type55, SkillType.Hit, SkillType.Attack, }, addSkillTypes = { }, excludeSkillTypes = { }, - plusVersionOf = "SupportSwiftAfflictionPlus", + plusVersionOf = "SupportRapidDecay", statDescriptionScope = "gem_stat_descriptions", statMap = { ["support_rapid_decay_damage_over_time_+%_final"] = { @@ -2969,48 +2974,49 @@ skills["SupportAdditionalTrapMine"] = { "support_additional_trap_mine_%_chance_for_2_additional_trap_mine", "support_additional_trap_mine_%_chance_for_3_additional_trap_mine", "throw_traps_in_circle_radius", + "multi_trap_and_mine_support_flags", }, levels = { - [1] = { 9, 6, 3, 20, manaMultiplier = 20, levelRequirement = 4, statInterpolation = { 1, 1, 1, 1, }, }, - [2] = { 10, 6, 3, 20, manaMultiplier = 20, levelRequirement = 6, statInterpolation = { 1, 1, 1, 1, }, }, - [3] = { 10, 7, 3, 20, manaMultiplier = 20, levelRequirement = 9, statInterpolation = { 1, 1, 1, 1, }, }, - [4] = { 11, 7, 3, 20, manaMultiplier = 20, levelRequirement = 12, statInterpolation = { 1, 1, 1, 1, }, }, - [5] = { 11, 7, 4, 20, manaMultiplier = 20, levelRequirement = 16, statInterpolation = { 1, 1, 1, 1, }, }, - [6] = { 12, 8, 4, 20, manaMultiplier = 20, levelRequirement = 20, statInterpolation = { 1, 1, 1, 1, }, }, - [7] = { 12, 8, 4, 20, manaMultiplier = 20, levelRequirement = 24, statInterpolation = { 1, 1, 1, 1, }, }, - [8] = { 13, 8, 4, 20, manaMultiplier = 20, levelRequirement = 28, statInterpolation = { 1, 1, 1, 1, }, }, - [9] = { 13, 9, 4, 20, manaMultiplier = 20, levelRequirement = 32, statInterpolation = { 1, 1, 1, 1, }, }, - [10] = { 13, 9, 4, 20, manaMultiplier = 20, levelRequirement = 36, statInterpolation = { 1, 1, 1, 1, }, }, - [11] = { 14, 9, 5, 20, manaMultiplier = 20, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, }, }, - [12] = { 14, 10, 5, 20, manaMultiplier = 20, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, }, }, - [13] = { 15, 10, 5, 20, manaMultiplier = 20, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, }, }, - [14] = { 15, 10, 5, 20, manaMultiplier = 20, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, }, }, - [15] = { 16, 11, 5, 20, manaMultiplier = 20, levelRequirement = 55, statInterpolation = { 1, 1, 1, 1, }, }, - [16] = { 16, 11, 5, 20, manaMultiplier = 20, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, }, }, - [17] = { 17, 11, 6, 20, manaMultiplier = 20, levelRequirement = 61, statInterpolation = { 1, 1, 1, 1, }, }, - [18] = { 17, 12, 6, 20, manaMultiplier = 20, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, }, }, - [19] = { 18, 12, 6, 20, manaMultiplier = 20, levelRequirement = 67, statInterpolation = { 1, 1, 1, 1, }, }, - [20] = { 18, 12, 6, 20, manaMultiplier = 20, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, }, }, - [21] = { 18, 13, 6, 20, manaMultiplier = 20, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, }, }, - [22] = { 19, 13, 6, 20, manaMultiplier = 20, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, }, }, - [23] = { 19, 14, 6, 20, manaMultiplier = 20, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, }, }, - [24] = { 20, 14, 7, 20, manaMultiplier = 20, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, }, }, - [25] = { 20, 14, 7, 20, manaMultiplier = 20, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, }, }, - [26] = { 21, 15, 7, 20, manaMultiplier = 20, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, }, }, - [27] = { 21, 15, 7, 20, manaMultiplier = 20, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, }, }, - [28] = { 22, 15, 7, 20, manaMultiplier = 20, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, }, }, - [29] = { 22, 16, 7, 20, manaMultiplier = 20, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, }, }, - [30] = { 23, 16, 8, 20, manaMultiplier = 20, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, }, }, - [31] = { 23, 16, 8, 20, manaMultiplier = 20, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, }, }, - [32] = { 23, 17, 8, 20, manaMultiplier = 20, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, }, }, - [33] = { 24, 17, 8, 20, manaMultiplier = 20, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, }, }, - [34] = { 24, 17, 8, 20, manaMultiplier = 20, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, }, }, - [35] = { 25, 18, 8, 20, manaMultiplier = 20, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, }, }, - [36] = { 25, 18, 9, 20, manaMultiplier = 20, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, }, }, - [37] = { 26, 18, 9, 20, manaMultiplier = 20, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, }, }, - [38] = { 26, 19, 9, 20, manaMultiplier = 20, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, }, }, - [39] = { 27, 19, 9, 20, manaMultiplier = 20, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, }, }, - [40] = { 27, 20, 9, 20, manaMultiplier = 20, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, }, }, + [1] = { 9, 6, 3, 20, 4, manaMultiplier = 20, levelRequirement = 4, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [2] = { 10, 6, 3, 20, 4, manaMultiplier = 20, levelRequirement = 6, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [3] = { 10, 7, 3, 20, 4, manaMultiplier = 20, levelRequirement = 9, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [4] = { 11, 7, 3, 20, 4, manaMultiplier = 20, levelRequirement = 12, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [5] = { 11, 7, 4, 20, 4, manaMultiplier = 20, levelRequirement = 16, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [6] = { 12, 8, 4, 20, 4, manaMultiplier = 20, levelRequirement = 20, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [7] = { 12, 8, 4, 20, 4, manaMultiplier = 20, levelRequirement = 24, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [8] = { 13, 8, 4, 20, 4, manaMultiplier = 20, levelRequirement = 28, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [9] = { 13, 9, 4, 20, 4, manaMultiplier = 20, levelRequirement = 32, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [10] = { 13, 9, 4, 20, 4, manaMultiplier = 20, levelRequirement = 36, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [11] = { 14, 9, 5, 20, 4, manaMultiplier = 20, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [12] = { 14, 10, 5, 20, 4, manaMultiplier = 20, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [13] = { 15, 10, 5, 20, 4, manaMultiplier = 20, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [14] = { 15, 10, 5, 20, 4, manaMultiplier = 20, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [15] = { 16, 11, 5, 20, 4, manaMultiplier = 20, levelRequirement = 55, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [16] = { 16, 11, 5, 20, 4, manaMultiplier = 20, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [17] = { 17, 11, 6, 20, 4, manaMultiplier = 20, levelRequirement = 61, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [18] = { 17, 12, 6, 20, 4, manaMultiplier = 20, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [19] = { 18, 12, 6, 20, 4, manaMultiplier = 20, levelRequirement = 67, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [20] = { 18, 12, 6, 20, 4, manaMultiplier = 20, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [21] = { 18, 13, 6, 20, 4, manaMultiplier = 20, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [22] = { 19, 13, 6, 20, 4, manaMultiplier = 20, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [23] = { 19, 14, 6, 20, 4, manaMultiplier = 20, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [24] = { 20, 14, 7, 20, 4, manaMultiplier = 20, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [25] = { 20, 14, 7, 20, 4, manaMultiplier = 20, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [26] = { 21, 15, 7, 20, 4, manaMultiplier = 20, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [27] = { 21, 15, 7, 20, 4, manaMultiplier = 20, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [28] = { 22, 15, 7, 20, 4, manaMultiplier = 20, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [29] = { 22, 16, 7, 20, 4, manaMultiplier = 20, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [30] = { 23, 16, 8, 20, 4, manaMultiplier = 20, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [31] = { 23, 16, 8, 20, 4, manaMultiplier = 20, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [32] = { 23, 17, 8, 20, 4, manaMultiplier = 20, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [33] = { 24, 17, 8, 20, 4, manaMultiplier = 20, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [34] = { 24, 17, 8, 20, 4, manaMultiplier = 20, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [35] = { 25, 18, 8, 20, 4, manaMultiplier = 20, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [36] = { 25, 18, 9, 20, 4, manaMultiplier = 20, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [37] = { 26, 18, 9, 20, 4, manaMultiplier = 20, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [38] = { 26, 19, 9, 20, 4, manaMultiplier = 20, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [39] = { 27, 19, 9, 20, 4, manaMultiplier = 20, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [40] = { 27, 20, 9, 20, 4, manaMultiplier = 20, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, }, }, }, } skills["SupportTrap"] = { @@ -3105,48 +3111,49 @@ skills["SupportTrapCooldown"] = { "placing_traps_cooldown_recovery_+%", "skill_effect_duration_+%", "trap_throwing_speed_+%", + "multi_trap_and_mine_support_flags", }, levels = { - [1] = { 50, 10, 15, manaMultiplier = 20, levelRequirement = 31, statInterpolation = { 1, 1, 1, }, }, - [2] = { 53, 11, 16, manaMultiplier = 20, levelRequirement = 34, statInterpolation = { 1, 1, 1, }, }, - [3] = { 56, 12, 17, manaMultiplier = 20, levelRequirement = 36, statInterpolation = { 1, 1, 1, }, }, - [4] = { 59, 13, 18, manaMultiplier = 20, levelRequirement = 38, statInterpolation = { 1, 1, 1, }, }, - [5] = { 62, 14, 19, manaMultiplier = 20, levelRequirement = 40, statInterpolation = { 1, 1, 1, }, }, - [6] = { 65, 15, 20, manaMultiplier = 20, levelRequirement = 42, statInterpolation = { 1, 1, 1, }, }, - [7] = { 68, 16, 21, manaMultiplier = 20, levelRequirement = 44, statInterpolation = { 1, 1, 1, }, }, - [8] = { 71, 17, 22, manaMultiplier = 20, levelRequirement = 46, statInterpolation = { 1, 1, 1, }, }, - [9] = { 74, 18, 23, manaMultiplier = 20, levelRequirement = 48, statInterpolation = { 1, 1, 1, }, }, - [10] = { 77, 19, 24, manaMultiplier = 20, levelRequirement = 50, statInterpolation = { 1, 1, 1, }, }, - [11] = { 80, 20, 25, manaMultiplier = 20, levelRequirement = 52, statInterpolation = { 1, 1, 1, }, }, - [12] = { 83, 21, 26, manaMultiplier = 20, levelRequirement = 54, statInterpolation = { 1, 1, 1, }, }, - [13] = { 86, 22, 27, manaMultiplier = 20, levelRequirement = 56, statInterpolation = { 1, 1, 1, }, }, - [14] = { 89, 23, 28, manaMultiplier = 20, levelRequirement = 58, statInterpolation = { 1, 1, 1, }, }, - [15] = { 92, 24, 29, manaMultiplier = 20, levelRequirement = 60, statInterpolation = { 1, 1, 1, }, }, - [16] = { 95, 25, 30, manaMultiplier = 20, levelRequirement = 62, statInterpolation = { 1, 1, 1, }, }, - [17] = { 98, 26, 31, manaMultiplier = 20, levelRequirement = 64, statInterpolation = { 1, 1, 1, }, }, - [18] = { 101, 27, 32, manaMultiplier = 20, levelRequirement = 66, statInterpolation = { 1, 1, 1, }, }, - [19] = { 104, 28, 33, manaMultiplier = 20, levelRequirement = 68, statInterpolation = { 1, 1, 1, }, }, - [20] = { 107, 29, 34, manaMultiplier = 20, levelRequirement = 70, statInterpolation = { 1, 1, 1, }, }, - [21] = { 110, 30, 35, manaMultiplier = 20, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, }, - [22] = { 113, 31, 36, manaMultiplier = 20, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, }, - [23] = { 116, 32, 37, manaMultiplier = 20, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, }, - [24] = { 119, 33, 38, manaMultiplier = 20, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, }, - [25] = { 122, 34, 39, manaMultiplier = 20, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, }, - [26] = { 125, 35, 40, manaMultiplier = 20, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, }, - [27] = { 128, 36, 41, manaMultiplier = 20, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, }, - [28] = { 131, 37, 42, manaMultiplier = 20, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, }, - [29] = { 134, 38, 43, manaMultiplier = 20, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, }, - [30] = { 137, 39, 44, manaMultiplier = 20, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, }, - [31] = { 140, 39, 44, manaMultiplier = 20, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, }, - [32] = { 143, 40, 45, manaMultiplier = 20, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, }, - [33] = { 146, 40, 45, manaMultiplier = 20, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, }, - [34] = { 149, 41, 46, manaMultiplier = 20, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, }, - [35] = { 152, 41, 46, manaMultiplier = 20, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, }, - [36] = { 155, 42, 47, manaMultiplier = 20, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, }, - [37] = { 158, 42, 47, manaMultiplier = 20, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, }, - [38] = { 161, 43, 48, manaMultiplier = 20, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, }, - [39] = { 164, 43, 48, manaMultiplier = 20, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, }, - [40] = { 167, 44, 49, manaMultiplier = 20, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, }, + [1] = { 50, 10, 15, 16, manaMultiplier = 20, levelRequirement = 31, statInterpolation = { 1, 1, 1, 1, }, }, + [2] = { 53, 11, 16, 16, manaMultiplier = 20, levelRequirement = 34, statInterpolation = { 1, 1, 1, 1, }, }, + [3] = { 56, 12, 17, 16, manaMultiplier = 20, levelRequirement = 36, statInterpolation = { 1, 1, 1, 1, }, }, + [4] = { 59, 13, 18, 16, manaMultiplier = 20, levelRequirement = 38, statInterpolation = { 1, 1, 1, 1, }, }, + [5] = { 62, 14, 19, 16, manaMultiplier = 20, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, }, }, + [6] = { 65, 15, 20, 16, manaMultiplier = 20, levelRequirement = 42, statInterpolation = { 1, 1, 1, 1, }, }, + [7] = { 68, 16, 21, 16, manaMultiplier = 20, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, }, }, + [8] = { 71, 17, 22, 16, manaMultiplier = 20, levelRequirement = 46, statInterpolation = { 1, 1, 1, 1, }, }, + [9] = { 74, 18, 23, 16, manaMultiplier = 20, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, }, }, + [10] = { 77, 19, 24, 16, manaMultiplier = 20, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, }, }, + [11] = { 80, 20, 25, 16, manaMultiplier = 20, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, }, }, + [12] = { 83, 21, 26, 16, manaMultiplier = 20, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, }, }, + [13] = { 86, 22, 27, 16, manaMultiplier = 20, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, }, }, + [14] = { 89, 23, 28, 16, manaMultiplier = 20, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, }, }, + [15] = { 92, 24, 29, 16, manaMultiplier = 20, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, }, }, + [16] = { 95, 25, 30, 16, manaMultiplier = 20, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, }, }, + [17] = { 98, 26, 31, 16, manaMultiplier = 20, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, }, }, + [18] = { 101, 27, 32, 16, manaMultiplier = 20, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, }, }, + [19] = { 104, 28, 33, 16, manaMultiplier = 20, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, }, }, + [20] = { 107, 29, 34, 16, manaMultiplier = 20, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, }, }, + [21] = { 110, 30, 35, 16, manaMultiplier = 20, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, }, }, + [22] = { 113, 31, 36, 16, manaMultiplier = 20, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, }, }, + [23] = { 116, 32, 37, 16, manaMultiplier = 20, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, }, }, + [24] = { 119, 33, 38, 16, manaMultiplier = 20, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, }, }, + [25] = { 122, 34, 39, 16, manaMultiplier = 20, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, }, }, + [26] = { 125, 35, 40, 16, manaMultiplier = 20, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, }, }, + [27] = { 128, 36, 41, 16, manaMultiplier = 20, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, }, }, + [28] = { 131, 37, 42, 16, manaMultiplier = 20, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, }, }, + [29] = { 134, 38, 43, 16, manaMultiplier = 20, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, }, }, + [30] = { 137, 39, 44, 16, manaMultiplier = 20, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, }, }, + [31] = { 140, 39, 44, 16, manaMultiplier = 20, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, }, }, + [32] = { 143, 40, 45, 16, manaMultiplier = 20, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, }, }, + [33] = { 146, 40, 45, 16, manaMultiplier = 20, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, }, }, + [34] = { 149, 41, 46, 16, manaMultiplier = 20, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, }, }, + [35] = { 152, 41, 46, 16, manaMultiplier = 20, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, }, }, + [36] = { 155, 42, 47, 16, manaMultiplier = 20, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, }, }, + [37] = { 158, 42, 47, 16, manaMultiplier = 20, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, }, }, + [38] = { 161, 43, 48, 16, manaMultiplier = 20, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, }, }, + [39] = { 164, 43, 48, 16, manaMultiplier = 20, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, }, }, + [40] = { 167, 44, 49, 16, manaMultiplier = 20, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, }, }, }, } skills["SupportTrapAndMineDamage"] = { diff --git a/Data/3_0/Skills/sup_int.lua b/Data/3_0/Skills/sup_int.lua index dce21cb90..5c0ad63aa 100644 --- a/Data/3_0/Skills/sup_int.lua +++ b/Data/3_0/Skills/sup_int.lua @@ -314,7 +314,7 @@ skills["SupportBlasphemy"] = { color = 3, support = true, requireSkillTypes = { SkillType.AppliesCurse, }, - addSkillTypes = { SkillType.ManaCostReserved, SkillType.ManaCostPercent, SkillType.Type31, SkillType.Aura, SkillType.AuraDebuff, SkillType.CanHaveBlessing, }, + addSkillTypes = { SkillType.ManaCostReserved, SkillType.ManaCostPercent, SkillType.Type31, SkillType.Aura, SkillType.AuraDebuff, SkillType.CanHaveBlessing, SkillType.Type90, }, excludeSkillTypes = { SkillType.Trap, SkillType.Mine, }, ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", @@ -377,7 +377,7 @@ skills["SupportBlasphemyPlus"] = { color = 3, support = true, requireSkillTypes = { SkillType.AppliesCurse, }, - addSkillTypes = { SkillType.ManaCostReserved, SkillType.ManaCostPercent, SkillType.Type31, SkillType.Aura, SkillType.AuraDebuff, SkillType.CanHaveBlessing, }, + addSkillTypes = { SkillType.ManaCostReserved, SkillType.ManaCostPercent, SkillType.Type31, SkillType.Aura, SkillType.AuraDebuff, SkillType.CanHaveBlessing, SkillType.Type90, }, excludeSkillTypes = { SkillType.Trap, SkillType.Mine, }, ignoreMinionTypes = true, plusVersionOf = "SupportBlasphemy", @@ -491,7 +491,7 @@ skills["SupportCastOnStunned"] = { color = 3, support = true, requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, - addSkillTypes = { SkillType.Triggered, }, + addSkillTypes = { SkillType.Triggered, SkillType.Type90, }, excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.Aura, SkillType.TriggeredGrantedSkill, }, statDescriptionScope = "gem_stat_descriptions", baseMods = { @@ -1777,46 +1777,46 @@ skills["SupportMinionOffensiveStance"] = { "minion_larger_aggro_radius", }, levels = { - [1] = { 25, 5, 4000, manaMultiplier = 30, levelRequirement = 31, statInterpolation = { 1, 1, 1, }, }, - [2] = { 25, 5, 4100, manaMultiplier = 30, levelRequirement = 34, statInterpolation = { 1, 1, 1, }, }, - [3] = { 25, 6, 4200, manaMultiplier = 30, levelRequirement = 36, statInterpolation = { 1, 1, 1, }, }, - [4] = { 25, 6, 4300, manaMultiplier = 30, levelRequirement = 38, statInterpolation = { 1, 1, 1, }, }, - [5] = { 25, 7, 4400, manaMultiplier = 30, levelRequirement = 40, statInterpolation = { 1, 1, 1, }, }, - [6] = { 25, 7, 4500, manaMultiplier = 30, levelRequirement = 42, statInterpolation = { 1, 1, 1, }, }, - [7] = { 25, 8, 4600, manaMultiplier = 30, levelRequirement = 44, statInterpolation = { 1, 1, 1, }, }, - [8] = { 25, 8, 4700, manaMultiplier = 30, levelRequirement = 46, statInterpolation = { 1, 1, 1, }, }, - [9] = { 25, 9, 4800, manaMultiplier = 30, levelRequirement = 48, statInterpolation = { 1, 1, 1, }, }, - [10] = { 25, 9, 4900, manaMultiplier = 30, levelRequirement = 50, statInterpolation = { 1, 1, 1, }, }, - [11] = { 25, 10, 5000, manaMultiplier = 30, levelRequirement = 52, statInterpolation = { 1, 1, 1, }, }, - [12] = { 25, 10, 5100, manaMultiplier = 30, levelRequirement = 54, statInterpolation = { 1, 1, 1, }, }, - [13] = { 25, 11, 5200, manaMultiplier = 30, levelRequirement = 56, statInterpolation = { 1, 1, 1, }, }, - [14] = { 25, 11, 5300, manaMultiplier = 30, levelRequirement = 58, statInterpolation = { 1, 1, 1, }, }, - [15] = { 25, 12, 5400, manaMultiplier = 30, levelRequirement = 60, statInterpolation = { 1, 1, 1, }, }, - [16] = { 25, 12, 5500, manaMultiplier = 30, levelRequirement = 62, statInterpolation = { 1, 1, 1, }, }, - [17] = { 25, 13, 5600, manaMultiplier = 30, levelRequirement = 64, statInterpolation = { 1, 1, 1, }, }, - [18] = { 25, 13, 5700, manaMultiplier = 30, levelRequirement = 66, statInterpolation = { 1, 1, 1, }, }, - [19] = { 25, 14, 5800, manaMultiplier = 30, levelRequirement = 68, statInterpolation = { 1, 1, 1, }, }, - [20] = { 25, 14, 5900, manaMultiplier = 30, levelRequirement = 70, statInterpolation = { 1, 1, 1, }, }, - [21] = { 25, 15, 6000, manaMultiplier = 30, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, }, - [22] = { 25, 15, 6100, manaMultiplier = 30, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, }, - [23] = { 25, 16, 6200, manaMultiplier = 30, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, }, - [24] = { 25, 16, 6300, manaMultiplier = 30, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, }, - [25] = { 25, 17, 6400, manaMultiplier = 30, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, }, - [26] = { 25, 17, 6500, manaMultiplier = 30, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, }, - [27] = { 25, 18, 6600, manaMultiplier = 30, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, }, - [28] = { 25, 18, 6700, manaMultiplier = 30, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, }, - [29] = { 25, 19, 6800, manaMultiplier = 30, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, }, - [30] = { 25, 19, 6900, manaMultiplier = 30, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, }, - [31] = { 25, 20, 6950, manaMultiplier = 30, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, }, - [32] = { 25, 20, 7000, manaMultiplier = 30, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, }, - [33] = { 25, 21, 7050, manaMultiplier = 30, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, }, - [34] = { 25, 21, 7100, manaMultiplier = 30, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, }, - [35] = { 25, 22, 7150, manaMultiplier = 30, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, }, - [36] = { 25, 22, 7200, manaMultiplier = 30, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, }, - [37] = { 25, 23, 7250, manaMultiplier = 30, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, }, - [38] = { 25, 23, 7300, manaMultiplier = 30, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, }, - [39] = { 25, 24, 7350, manaMultiplier = 30, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, }, - [40] = { 25, 24, 7400, manaMultiplier = 30, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, }, + [1] = { 25, 0, 4000, manaMultiplier = 30, levelRequirement = 31, statInterpolation = { 1, 1, 1, }, }, + [2] = { 26, 0, 4100, manaMultiplier = 30, levelRequirement = 34, statInterpolation = { 1, 1, 1, }, }, + [3] = { 27, 0, 4200, manaMultiplier = 30, levelRequirement = 36, statInterpolation = { 1, 1, 1, }, }, + [4] = { 28, 0, 4300, manaMultiplier = 30, levelRequirement = 38, statInterpolation = { 1, 1, 1, }, }, + [5] = { 29, 0, 4400, manaMultiplier = 30, levelRequirement = 40, statInterpolation = { 1, 1, 1, }, }, + [6] = { 30, 0, 4500, manaMultiplier = 30, levelRequirement = 42, statInterpolation = { 1, 1, 1, }, }, + [7] = { 31, 0, 4600, manaMultiplier = 30, levelRequirement = 44, statInterpolation = { 1, 1, 1, }, }, + [8] = { 32, 0, 4700, manaMultiplier = 30, levelRequirement = 46, statInterpolation = { 1, 1, 1, }, }, + [9] = { 33, 0, 4800, manaMultiplier = 30, levelRequirement = 48, statInterpolation = { 1, 1, 1, }, }, + [10] = { 34, 0, 4900, manaMultiplier = 30, levelRequirement = 50, statInterpolation = { 1, 1, 1, }, }, + [11] = { 35, 0, 5000, manaMultiplier = 30, levelRequirement = 52, statInterpolation = { 1, 1, 1, }, }, + [12] = { 36, 0, 5100, manaMultiplier = 30, levelRequirement = 54, statInterpolation = { 1, 1, 1, }, }, + [13] = { 37, 0, 5200, manaMultiplier = 30, levelRequirement = 56, statInterpolation = { 1, 1, 1, }, }, + [14] = { 38, 0, 5300, manaMultiplier = 30, levelRequirement = 58, statInterpolation = { 1, 1, 1, }, }, + [15] = { 39, 0, 5400, manaMultiplier = 30, levelRequirement = 60, statInterpolation = { 1, 1, 1, }, }, + [16] = { 40, 0, 5500, manaMultiplier = 30, levelRequirement = 62, statInterpolation = { 1, 1, 1, }, }, + [17] = { 41, 0, 5600, manaMultiplier = 30, levelRequirement = 64, statInterpolation = { 1, 1, 1, }, }, + [18] = { 42, 0, 5700, manaMultiplier = 30, levelRequirement = 66, statInterpolation = { 1, 1, 1, }, }, + [19] = { 43, 0, 5800, manaMultiplier = 30, levelRequirement = 68, statInterpolation = { 1, 1, 1, }, }, + [20] = { 44, 0, 5900, manaMultiplier = 30, levelRequirement = 70, statInterpolation = { 1, 1, 1, }, }, + [21] = { 45, 0, 6000, manaMultiplier = 30, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, }, + [22] = { 46, 0, 6100, manaMultiplier = 30, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, }, + [23] = { 47, 0, 6200, manaMultiplier = 30, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, }, + [24] = { 48, 0, 6300, manaMultiplier = 30, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, }, + [25] = { 49, 0, 6400, manaMultiplier = 30, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, }, + [26] = { 50, 0, 6500, manaMultiplier = 30, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, }, + [27] = { 51, 0, 6600, manaMultiplier = 30, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, }, + [28] = { 52, 0, 6700, manaMultiplier = 30, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, }, + [29] = { 53, 0, 6800, manaMultiplier = 30, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, }, + [30] = { 54, 0, 6900, manaMultiplier = 30, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, }, + [31] = { 54, 0, 6950, manaMultiplier = 30, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, }, + [32] = { 55, 0, 7000, manaMultiplier = 30, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, }, + [33] = { 55, 0, 7050, manaMultiplier = 30, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, }, + [34] = { 56, 0, 7100, manaMultiplier = 30, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, }, + [35] = { 56, 0, 7150, manaMultiplier = 30, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, }, + [36] = { 57, 0, 7200, manaMultiplier = 30, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, }, + [37] = { 57, 0, 7250, manaMultiplier = 30, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, }, + [38] = { 58, 0, 7300, manaMultiplier = 30, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, }, + [39] = { 58, 0, 7350, manaMultiplier = 30, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, }, + [40] = { 59, 0, 7400, manaMultiplier = 30, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, }, }, } skills["SupportRemoteMine2"] = { @@ -2088,7 +2088,7 @@ skills["SupportIncreasedAreaOfEffect"] = { }, } skills["SupportIncreasedAreaOfEffectPlus"] = { - name = "Awakened Increased Area Of Effect", + name = "Awakened Increased Area of Effect", description = "Supports any skill with an area of effect.", color = 3, support = true, @@ -2524,48 +2524,49 @@ skills["SupportHandcastSpellBoost"] = { "support_spell_boost_area_of_effect_+%_final_per_charge", "base_skill_area_of_effect_+%", "support_spell_boost_charge_loss_interval_ms_while_moving", + "maximum_intensify_stacks", }, levels = { - [1] = { 10, -12, 35, 250, manaMultiplier = 40, levelRequirement = 31, statInterpolation = { 1, 1, 1, 1, }, }, - [2] = { 10, -12, 36, 250, manaMultiplier = 40, levelRequirement = 34, statInterpolation = { 1, 1, 1, 1, }, }, - [3] = { 10, -12, 37, 250, manaMultiplier = 40, levelRequirement = 36, statInterpolation = { 1, 1, 1, 1, }, }, - [4] = { 11, -12, 38, 250, manaMultiplier = 40, levelRequirement = 38, statInterpolation = { 1, 1, 1, 1, }, }, - [5] = { 11, -12, 39, 250, manaMultiplier = 40, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, }, }, - [6] = { 11, -12, 40, 250, manaMultiplier = 40, levelRequirement = 42, statInterpolation = { 1, 1, 1, 1, }, }, - [7] = { 12, -12, 41, 250, manaMultiplier = 40, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, }, }, - [8] = { 12, -12, 42, 250, manaMultiplier = 40, levelRequirement = 46, statInterpolation = { 1, 1, 1, 1, }, }, - [9] = { 12, -12, 43, 250, manaMultiplier = 40, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, }, }, - [10] = { 13, -12, 44, 250, manaMultiplier = 40, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, }, }, - [11] = { 13, -12, 45, 250, manaMultiplier = 40, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, }, }, - [12] = { 13, -12, 46, 250, manaMultiplier = 40, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, }, }, - [13] = { 14, -12, 47, 250, manaMultiplier = 40, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, }, }, - [14] = { 14, -12, 48, 250, manaMultiplier = 40, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, }, }, - [15] = { 14, -12, 49, 250, manaMultiplier = 40, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, }, }, - [16] = { 15, -12, 50, 250, manaMultiplier = 40, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, }, }, - [17] = { 15, -12, 51, 250, manaMultiplier = 40, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, }, }, - [18] = { 15, -12, 52, 250, manaMultiplier = 40, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, }, }, - [19] = { 16, -12, 53, 250, manaMultiplier = 40, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, }, }, - [20] = { 16, -12, 54, 250, manaMultiplier = 40, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, }, }, - [21] = { 16, -12, 55, 250, manaMultiplier = 40, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, }, }, - [22] = { 17, -12, 56, 250, manaMultiplier = 40, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, }, }, - [23] = { 17, -12, 57, 250, manaMultiplier = 40, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, }, }, - [24] = { 17, -12, 58, 250, manaMultiplier = 40, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, }, }, - [25] = { 18, -12, 59, 250, manaMultiplier = 40, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, }, }, - [26] = { 18, -12, 60, 250, manaMultiplier = 40, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, }, }, - [27] = { 18, -12, 61, 250, manaMultiplier = 40, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, }, }, - [28] = { 19, -12, 62, 250, manaMultiplier = 40, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, }, }, - [29] = { 19, -12, 63, 250, manaMultiplier = 40, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, }, }, - [30] = { 19, -12, 64, 250, manaMultiplier = 40, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, }, }, - [31] = { 20, -12, 65, 250, manaMultiplier = 40, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, }, }, - [32] = { 20, -12, 66, 250, manaMultiplier = 40, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, }, }, - [33] = { 20, -12, 67, 250, manaMultiplier = 40, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, }, }, - [34] = { 21, -12, 68, 250, manaMultiplier = 40, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, }, }, - [35] = { 21, -12, 69, 250, manaMultiplier = 40, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, }, }, - [36] = { 21, -12, 70, 250, manaMultiplier = 40, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, }, }, - [37] = { 22, -12, 71, 250, manaMultiplier = 40, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, }, }, - [38] = { 22, -12, 72, 250, manaMultiplier = 40, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, }, }, - [39] = { 22, -12, 73, 250, manaMultiplier = 40, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, }, }, - [40] = { 23, -12, 74, 250, manaMultiplier = 40, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, }, }, + [1] = { 10, -12, 35, 250, 4, manaMultiplier = 40, levelRequirement = 31, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [2] = { 10, -12, 36, 250, 4, manaMultiplier = 40, levelRequirement = 34, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [3] = { 10, -12, 37, 250, 4, manaMultiplier = 40, levelRequirement = 36, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [4] = { 11, -12, 38, 250, 4, manaMultiplier = 40, levelRequirement = 38, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [5] = { 11, -12, 39, 250, 4, manaMultiplier = 40, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [6] = { 11, -12, 40, 250, 4, manaMultiplier = 40, levelRequirement = 42, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [7] = { 12, -12, 41, 250, 4, manaMultiplier = 40, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [8] = { 12, -12, 42, 250, 4, manaMultiplier = 40, levelRequirement = 46, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [9] = { 12, -12, 43, 250, 4, manaMultiplier = 40, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [10] = { 13, -12, 44, 250, 4, manaMultiplier = 40, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [11] = { 13, -12, 45, 250, 4, manaMultiplier = 40, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [12] = { 13, -12, 46, 250, 4, manaMultiplier = 40, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [13] = { 14, -12, 47, 250, 4, manaMultiplier = 40, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [14] = { 14, -12, 48, 250, 4, manaMultiplier = 40, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [15] = { 14, -12, 49, 250, 4, manaMultiplier = 40, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [16] = { 15, -12, 50, 250, 4, manaMultiplier = 40, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [17] = { 15, -12, 51, 250, 4, manaMultiplier = 40, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [18] = { 15, -12, 52, 250, 4, manaMultiplier = 40, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [19] = { 16, -12, 53, 250, 4, manaMultiplier = 40, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [20] = { 16, -12, 54, 250, 4, manaMultiplier = 40, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [21] = { 16, -12, 55, 250, 4, manaMultiplier = 40, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [22] = { 17, -12, 56, 250, 4, manaMultiplier = 40, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [23] = { 17, -12, 57, 250, 4, manaMultiplier = 40, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [24] = { 17, -12, 58, 250, 4, manaMultiplier = 40, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [25] = { 18, -12, 59, 250, 4, manaMultiplier = 40, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [26] = { 18, -12, 60, 250, 4, manaMultiplier = 40, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [27] = { 18, -12, 61, 250, 4, manaMultiplier = 40, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [28] = { 19, -12, 62, 250, 4, manaMultiplier = 40, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [29] = { 19, -12, 63, 250, 4, manaMultiplier = 40, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [30] = { 19, -12, 64, 250, 4, manaMultiplier = 40, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [31] = { 20, -12, 65, 250, 4, manaMultiplier = 40, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [32] = { 20, -12, 66, 250, 4, manaMultiplier = 40, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [33] = { 20, -12, 67, 250, 4, manaMultiplier = 40, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [34] = { 21, -12, 68, 250, 4, manaMultiplier = 40, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [35] = { 21, -12, 69, 250, 4, manaMultiplier = 40, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [36] = { 21, -12, 70, 250, 4, manaMultiplier = 40, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [37] = { 22, -12, 71, 250, 4, manaMultiplier = 40, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [38] = { 22, -12, 72, 250, 4, manaMultiplier = 40, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [39] = { 22, -12, 73, 250, 4, manaMultiplier = 40, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, }, }, + [40] = { 23, -12, 74, 250, 4, manaMultiplier = 40, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, }, }, }, } skills["SupportItemRarity"] = { @@ -2824,48 +2825,49 @@ skills["SupportMinefield"] = { "number_of_additional_mines_to_place", "support_minefield_mine_throwing_speed_+%_final", "number_of_additional_remote_mines_allowed", + "multi_trap_and_mine_support_flags", }, levels = { - [1] = { 4, -65, 4, manaMultiplier = 20, levelRequirement = 38, statInterpolation = { 1, 1, 1, }, }, - [2] = { 4, -65, 4, manaMultiplier = 20, levelRequirement = 40, statInterpolation = { 1, 1, 1, }, }, - [3] = { 4, -65, 4, manaMultiplier = 20, levelRequirement = 42, statInterpolation = { 1, 1, 1, }, }, - [4] = { 4, -64, 4, manaMultiplier = 20, levelRequirement = 44, statInterpolation = { 1, 1, 1, }, }, - [5] = { 4, -64, 4, manaMultiplier = 20, levelRequirement = 46, statInterpolation = { 1, 1, 1, }, }, - [6] = { 4, -64, 4, manaMultiplier = 20, levelRequirement = 48, statInterpolation = { 1, 1, 1, }, }, - [7] = { 4, -64, 4, manaMultiplier = 20, levelRequirement = 50, statInterpolation = { 1, 1, 1, }, }, - [8] = { 4, -63, 4, manaMultiplier = 20, levelRequirement = 52, statInterpolation = { 1, 1, 1, }, }, - [9] = { 4, -63, 4, manaMultiplier = 20, levelRequirement = 54, statInterpolation = { 1, 1, 1, }, }, - [10] = { 4, -63, 4, manaMultiplier = 20, levelRequirement = 56, statInterpolation = { 1, 1, 1, }, }, - [11] = { 4, -63, 4, manaMultiplier = 20, levelRequirement = 58, statInterpolation = { 1, 1, 1, }, }, - [12] = { 4, -62, 4, manaMultiplier = 20, levelRequirement = 60, statInterpolation = { 1, 1, 1, }, }, - [13] = { 4, -62, 4, manaMultiplier = 20, levelRequirement = 62, statInterpolation = { 1, 1, 1, }, }, - [14] = { 4, -62, 4, manaMultiplier = 20, levelRequirement = 64, statInterpolation = { 1, 1, 1, }, }, - [15] = { 4, -62, 4, manaMultiplier = 20, levelRequirement = 65, statInterpolation = { 1, 1, 1, }, }, - [16] = { 4, -61, 4, manaMultiplier = 20, levelRequirement = 66, statInterpolation = { 1, 1, 1, }, }, - [17] = { 4, -61, 4, manaMultiplier = 20, levelRequirement = 67, statInterpolation = { 1, 1, 1, }, }, - [18] = { 4, -61, 4, manaMultiplier = 20, levelRequirement = 68, statInterpolation = { 1, 1, 1, }, }, - [19] = { 4, -61, 4, manaMultiplier = 20, levelRequirement = 69, statInterpolation = { 1, 1, 1, }, }, - [20] = { 4, -60, 4, manaMultiplier = 20, levelRequirement = 70, statInterpolation = { 1, 1, 1, }, }, - [21] = { 4, -60, 4, manaMultiplier = 20, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, }, - [22] = { 4, -60, 4, manaMultiplier = 20, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, }, - [23] = { 4, -60, 4, manaMultiplier = 20, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, }, - [24] = { 4, -59, 4, manaMultiplier = 20, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, }, - [25] = { 4, -59, 4, manaMultiplier = 20, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, }, - [26] = { 4, -59, 4, manaMultiplier = 20, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, }, - [27] = { 4, -59, 4, manaMultiplier = 20, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, }, - [28] = { 4, -58, 4, manaMultiplier = 20, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, }, - [29] = { 4, -58, 4, manaMultiplier = 20, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, }, - [30] = { 4, -58, 4, manaMultiplier = 20, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, }, - [31] = { 4, -58, 4, manaMultiplier = 20, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, }, - [32] = { 4, -57, 4, manaMultiplier = 20, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, }, - [33] = { 4, -57, 4, manaMultiplier = 20, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, }, - [34] = { 4, -57, 4, manaMultiplier = 20, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, }, - [35] = { 4, -57, 4, manaMultiplier = 20, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, }, - [36] = { 4, -56, 4, manaMultiplier = 20, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, }, - [37] = { 4, -56, 4, manaMultiplier = 20, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, }, - [38] = { 4, -56, 4, manaMultiplier = 20, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, }, - [39] = { 4, -56, 4, manaMultiplier = 20, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, }, - [40] = { 4, -55, 4, manaMultiplier = 20, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, }, + [1] = { 4, -65, 4, 8, manaMultiplier = 20, levelRequirement = 38, statInterpolation = { 1, 1, 1, 1, }, }, + [2] = { 4, -65, 4, 8, manaMultiplier = 20, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, }, }, + [3] = { 4, -65, 4, 8, manaMultiplier = 20, levelRequirement = 42, statInterpolation = { 1, 1, 1, 1, }, }, + [4] = { 4, -64, 4, 8, manaMultiplier = 20, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, }, }, + [5] = { 4, -64, 4, 8, manaMultiplier = 20, levelRequirement = 46, statInterpolation = { 1, 1, 1, 1, }, }, + [6] = { 4, -64, 4, 8, manaMultiplier = 20, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, }, }, + [7] = { 4, -64, 4, 8, manaMultiplier = 20, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, }, }, + [8] = { 4, -63, 4, 8, manaMultiplier = 20, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, }, }, + [9] = { 4, -63, 4, 8, manaMultiplier = 20, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, }, }, + [10] = { 4, -63, 4, 8, manaMultiplier = 20, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, }, }, + [11] = { 4, -63, 4, 8, manaMultiplier = 20, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, }, }, + [12] = { 4, -62, 4, 8, manaMultiplier = 20, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, }, }, + [13] = { 4, -62, 4, 8, manaMultiplier = 20, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, }, }, + [14] = { 4, -62, 4, 8, manaMultiplier = 20, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, }, }, + [15] = { 4, -62, 4, 8, manaMultiplier = 20, levelRequirement = 65, statInterpolation = { 1, 1, 1, 1, }, }, + [16] = { 4, -61, 4, 8, manaMultiplier = 20, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, }, }, + [17] = { 4, -61, 4, 8, manaMultiplier = 20, levelRequirement = 67, statInterpolation = { 1, 1, 1, 1, }, }, + [18] = { 4, -61, 4, 8, manaMultiplier = 20, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, }, }, + [19] = { 4, -61, 4, 8, manaMultiplier = 20, levelRequirement = 69, statInterpolation = { 1, 1, 1, 1, }, }, + [20] = { 4, -60, 4, 8, manaMultiplier = 20, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, }, }, + [21] = { 4, -60, 4, 8, manaMultiplier = 20, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, }, }, + [22] = { 4, -60, 4, 8, manaMultiplier = 20, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, }, }, + [23] = { 4, -60, 4, 8, manaMultiplier = 20, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, }, }, + [24] = { 4, -59, 4, 8, manaMultiplier = 20, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, }, }, + [25] = { 4, -59, 4, 8, manaMultiplier = 20, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, }, }, + [26] = { 4, -59, 4, 8, manaMultiplier = 20, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, }, }, + [27] = { 4, -59, 4, 8, manaMultiplier = 20, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, }, }, + [28] = { 4, -58, 4, 8, manaMultiplier = 20, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, }, }, + [29] = { 4, -58, 4, 8, manaMultiplier = 20, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, }, }, + [30] = { 4, -58, 4, 8, manaMultiplier = 20, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, }, }, + [31] = { 4, -58, 4, 8, manaMultiplier = 20, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, }, }, + [32] = { 4, -57, 4, 8, manaMultiplier = 20, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, }, }, + [33] = { 4, -57, 4, 8, manaMultiplier = 20, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, }, }, + [34] = { 4, -57, 4, 8, manaMultiplier = 20, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, }, }, + [35] = { 4, -57, 4, 8, manaMultiplier = 20, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, }, }, + [36] = { 4, -56, 4, 8, manaMultiplier = 20, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, }, }, + [37] = { 4, -56, 4, 8, manaMultiplier = 20, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, }, }, + [38] = { 4, -56, 4, 8, manaMultiplier = 20, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, }, }, + [39] = { 4, -56, 4, 8, manaMultiplier = 20, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, }, }, + [40] = { 4, -55, 4, 8, manaMultiplier = 20, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, }, }, }, } skills["SupportMinionDamage"] = { @@ -3388,7 +3390,7 @@ skills["SupportSpellCascade"] = { support = true, requireSkillTypes = { SkillType.SpellCanCascade, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Totem, SkillType.Trap, SkillType.Mine, SkillType.ManaCostReserved, SkillType.Vaal, SkillType.Minion, }, + excludeSkillTypes = { SkillType.Totem, SkillType.Trap, SkillType.Mine, SkillType.Aura, SkillType.Vaal, SkillType.Minion, }, ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", statMap = { @@ -3459,7 +3461,7 @@ skills["SupportSpellCascadePlus"] = { support = true, requireSkillTypes = { SkillType.SpellCanCascade, }, addSkillTypes = { }, - excludeSkillTypes = { SkillType.Totem, SkillType.Trap, SkillType.Mine, SkillType.ManaCostReserved, SkillType.Vaal, SkillType.Minion, }, + excludeSkillTypes = { SkillType.Totem, SkillType.Trap, SkillType.Mine, SkillType.Aura, SkillType.Vaal, SkillType.Minion, }, ignoreMinionTypes = true, plusVersionOf = "SupportSpellCascade", statDescriptionScope = "gem_stat_descriptions", @@ -3843,46 +3845,46 @@ skills["SupportHandcastAnticipation"] = { "support_spell_rapid_fire_repeat_use_damage_+%_final", }, levels = { - [1] = { 3, 900, -35, manaMultiplier = 40, levelRequirement = 38, statInterpolation = { 1, 1, 1, }, }, - [2] = { 3, 890, -35, manaMultiplier = 40, levelRequirement = 40, statInterpolation = { 1, 1, 1, }, }, - [3] = { 3, 880, -34, manaMultiplier = 40, levelRequirement = 42, statInterpolation = { 1, 1, 1, }, }, - [4] = { 3, 870, -34, manaMultiplier = 40, levelRequirement = 44, statInterpolation = { 1, 1, 1, }, }, - [5] = { 3, 860, -33, manaMultiplier = 40, levelRequirement = 46, statInterpolation = { 1, 1, 1, }, }, - [6] = { 3, 850, -33, manaMultiplier = 40, levelRequirement = 48, statInterpolation = { 1, 1, 1, }, }, - [7] = { 3, 840, -32, manaMultiplier = 40, levelRequirement = 50, statInterpolation = { 1, 1, 1, }, }, - [8] = { 3, 830, -32, manaMultiplier = 40, levelRequirement = 52, statInterpolation = { 1, 1, 1, }, }, - [9] = { 3, 820, -31, manaMultiplier = 40, levelRequirement = 54, statInterpolation = { 1, 1, 1, }, }, - [10] = { 3, 810, -31, manaMultiplier = 40, levelRequirement = 56, statInterpolation = { 1, 1, 1, }, }, - [11] = { 3, 800, -30, manaMultiplier = 40, levelRequirement = 58, statInterpolation = { 1, 1, 1, }, }, - [12] = { 3, 790, -30, manaMultiplier = 40, levelRequirement = 60, statInterpolation = { 1, 1, 1, }, }, - [13] = { 3, 780, -29, manaMultiplier = 40, levelRequirement = 62, statInterpolation = { 1, 1, 1, }, }, - [14] = { 3, 770, -29, manaMultiplier = 40, levelRequirement = 64, statInterpolation = { 1, 1, 1, }, }, - [15] = { 3, 760, -28, manaMultiplier = 40, levelRequirement = 65, statInterpolation = { 1, 1, 1, }, }, - [16] = { 3, 750, -28, manaMultiplier = 40, levelRequirement = 66, statInterpolation = { 1, 1, 1, }, }, - [17] = { 3, 740, -27, manaMultiplier = 40, levelRequirement = 67, statInterpolation = { 1, 1, 1, }, }, - [18] = { 3, 730, -27, manaMultiplier = 40, levelRequirement = 68, statInterpolation = { 1, 1, 1, }, }, - [19] = { 3, 720, -26, manaMultiplier = 40, levelRequirement = 69, statInterpolation = { 1, 1, 1, }, }, - [20] = { 3, 710, -26, manaMultiplier = 40, levelRequirement = 70, statInterpolation = { 1, 1, 1, }, }, - [21] = { 3, 700, -25, manaMultiplier = 40, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, }, - [22] = { 3, 690, -25, manaMultiplier = 40, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, }, - [23] = { 3, 680, -24, manaMultiplier = 40, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, }, - [24] = { 3, 670, -24, manaMultiplier = 40, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, }, - [25] = { 3, 660, -23, manaMultiplier = 40, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, }, - [26] = { 3, 650, -23, manaMultiplier = 40, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, }, - [27] = { 3, 640, -22, manaMultiplier = 40, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, }, - [28] = { 3, 630, -22, manaMultiplier = 40, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, }, - [29] = { 3, 620, -21, manaMultiplier = 40, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, }, - [30] = { 3, 610, -21, manaMultiplier = 40, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, }, - [31] = { 3, 600, -21, manaMultiplier = 40, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, }, - [32] = { 3, 590, -20, manaMultiplier = 40, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, }, - [33] = { 3, 580, -20, manaMultiplier = 40, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, }, - [34] = { 3, 570, -20, manaMultiplier = 40, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, }, - [35] = { 3, 560, -20, manaMultiplier = 40, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, }, - [36] = { 3, 550, -19, manaMultiplier = 40, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, }, - [37] = { 3, 540, -19, manaMultiplier = 40, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, }, - [38] = { 3, 530, -19, manaMultiplier = 40, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, }, - [39] = { 3, 520, -19, manaMultiplier = 40, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, }, - [40] = { 3, 510, -18, manaMultiplier = 40, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, }, + [1] = { 3, 900, -20, manaMultiplier = 40, levelRequirement = 38, statInterpolation = { 1, 1, 1, }, }, + [2] = { 3, 890, -20, manaMultiplier = 40, levelRequirement = 40, statInterpolation = { 1, 1, 1, }, }, + [3] = { 3, 880, -19, manaMultiplier = 40, levelRequirement = 42, statInterpolation = { 1, 1, 1, }, }, + [4] = { 3, 870, -19, manaMultiplier = 40, levelRequirement = 44, statInterpolation = { 1, 1, 1, }, }, + [5] = { 3, 860, -18, manaMultiplier = 40, levelRequirement = 46, statInterpolation = { 1, 1, 1, }, }, + [6] = { 3, 850, -18, manaMultiplier = 40, levelRequirement = 48, statInterpolation = { 1, 1, 1, }, }, + [7] = { 3, 840, -17, manaMultiplier = 40, levelRequirement = 50, statInterpolation = { 1, 1, 1, }, }, + [8] = { 3, 830, -17, manaMultiplier = 40, levelRequirement = 52, statInterpolation = { 1, 1, 1, }, }, + [9] = { 3, 820, -16, manaMultiplier = 40, levelRequirement = 54, statInterpolation = { 1, 1, 1, }, }, + [10] = { 3, 810, -16, manaMultiplier = 40, levelRequirement = 56, statInterpolation = { 1, 1, 1, }, }, + [11] = { 3, 800, -15, manaMultiplier = 40, levelRequirement = 58, statInterpolation = { 1, 1, 1, }, }, + [12] = { 3, 790, -15, manaMultiplier = 40, levelRequirement = 60, statInterpolation = { 1, 1, 1, }, }, + [13] = { 3, 780, -14, manaMultiplier = 40, levelRequirement = 62, statInterpolation = { 1, 1, 1, }, }, + [14] = { 3, 770, -14, manaMultiplier = 40, levelRequirement = 64, statInterpolation = { 1, 1, 1, }, }, + [15] = { 3, 760, -13, manaMultiplier = 40, levelRequirement = 65, statInterpolation = { 1, 1, 1, }, }, + [16] = { 3, 750, -13, manaMultiplier = 40, levelRequirement = 66, statInterpolation = { 1, 1, 1, }, }, + [17] = { 3, 740, -12, manaMultiplier = 40, levelRequirement = 67, statInterpolation = { 1, 1, 1, }, }, + [18] = { 3, 730, -12, manaMultiplier = 40, levelRequirement = 68, statInterpolation = { 1, 1, 1, }, }, + [19] = { 3, 720, -11, manaMultiplier = 40, levelRequirement = 69, statInterpolation = { 1, 1, 1, }, }, + [20] = { 3, 710, -11, manaMultiplier = 40, levelRequirement = 70, statInterpolation = { 1, 1, 1, }, }, + [21] = { 3, 700, -10, manaMultiplier = 40, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, }, + [22] = { 3, 690, -10, manaMultiplier = 40, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, }, + [23] = { 3, 680, -9, manaMultiplier = 40, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, }, + [24] = { 3, 670, -9, manaMultiplier = 40, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, }, + [25] = { 3, 660, -8, manaMultiplier = 40, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, }, + [26] = { 3, 650, -8, manaMultiplier = 40, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, }, + [27] = { 3, 640, -7, manaMultiplier = 40, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, }, + [28] = { 3, 630, -7, manaMultiplier = 40, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, }, + [29] = { 3, 620, -6, manaMultiplier = 40, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, }, + [30] = { 3, 610, -6, manaMultiplier = 40, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, }, + [31] = { 3, 600, -5, manaMultiplier = 40, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, }, + [32] = { 3, 590, -5, manaMultiplier = 40, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, }, + [33] = { 3, 580, -4, manaMultiplier = 40, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, }, + [34] = { 3, 570, -4, manaMultiplier = 40, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, }, + [35] = { 3, 560, -3, manaMultiplier = 40, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, }, + [36] = { 3, 550, -3, manaMultiplier = 40, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, }, + [37] = { 3, 540, -2, manaMultiplier = 40, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, }, + [38] = { 3, 530, -2, manaMultiplier = 40, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, }, + [39] = { 3, 520, -1, manaMultiplier = 40, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, }, + [40] = { 3, 510, -1, manaMultiplier = 40, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, }, }, } skills["SupportUnleashPlus"] = { @@ -3906,25 +3908,25 @@ skills["SupportUnleashPlus"] = { "support_spell_rapid_fire_repeat_use_damage_+%_final", }, levels = { - [1] = { 3, 700, -25, manaMultiplier = 40, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, }, - [2] = { 3, 690, -25, manaMultiplier = 40, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, }, - [3] = { 3, 680, -24, manaMultiplier = 40, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, }, - [4] = { 3, 670, -24, manaMultiplier = 40, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, }, - [5] = { 3, 660, -23, manaMultiplier = 40, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, }, - [6] = { 3, 650, -23, manaMultiplier = 40, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, }, - [7] = { 3, 645, -22, manaMultiplier = 40, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, }, - [8] = { 3, 640, -22, manaMultiplier = 40, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, }, - [9] = { 3, 635, -21, manaMultiplier = 40, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, }, - [10] = { 3, 630, -21, manaMultiplier = 40, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, }, - [11] = { 3, 625, -20, manaMultiplier = 40, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, }, - [12] = { 3, 620, -20, manaMultiplier = 40, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, }, - [13] = { 3, 615, -20, manaMultiplier = 40, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, }, - [14] = { 3, 610, -20, manaMultiplier = 40, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, }, - [15] = { 3, 605, -19, manaMultiplier = 40, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, }, - [16] = { 3, 600, -19, manaMultiplier = 40, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, }, - [17] = { 3, 595, -19, manaMultiplier = 40, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, }, - [18] = { 3, 590, -19, manaMultiplier = 40, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, }, - [19] = { 3, 585, -18, manaMultiplier = 40, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, }, - [20] = { 3, 580, -18, manaMultiplier = 40, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, }, + [1] = { 3, 700, -10, manaMultiplier = 40, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, }, + [2] = { 3, 690, -10, manaMultiplier = 40, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, }, + [3] = { 3, 680, -9, manaMultiplier = 40, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, }, + [4] = { 3, 670, -9, manaMultiplier = 40, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, }, + [5] = { 3, 660, -8, manaMultiplier = 40, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, }, + [6] = { 3, 650, -8, manaMultiplier = 40, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, }, + [7] = { 3, 645, -7, manaMultiplier = 40, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, }, + [8] = { 3, 640, -7, manaMultiplier = 40, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, }, + [9] = { 3, 635, -6, manaMultiplier = 40, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, }, + [10] = { 3, 630, -6, manaMultiplier = 40, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, }, + [11] = { 3, 625, -5, manaMultiplier = 40, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, }, + [12] = { 3, 620, -5, manaMultiplier = 40, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, }, + [13] = { 3, 615, -4, manaMultiplier = 40, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, }, + [14] = { 3, 610, -4, manaMultiplier = 40, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, }, + [15] = { 3, 605, -3, manaMultiplier = 40, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, }, + [16] = { 3, 600, -3, manaMultiplier = 40, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, }, + [17] = { 3, 595, -2, manaMultiplier = 40, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, }, + [18] = { 3, 590, -2, manaMultiplier = 40, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, }, + [19] = { 3, 585, -1, manaMultiplier = 40, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, }, + [20] = { 3, 580, -1, manaMultiplier = 40, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, }, }, } \ No newline at end of file diff --git a/Data/3_0/Skills/sup_str.lua b/Data/3_0/Skills/sup_str.lua index 1191c18ea..f98278772 100644 --- a/Data/3_0/Skills/sup_str.lua +++ b/Data/3_0/Skills/sup_str.lua @@ -650,7 +650,7 @@ skills["SupportCastOnMeleeKillTriggered"] = { color = 1, support = true, requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, - addSkillTypes = { SkillType.Triggered, }, + addSkillTypes = { SkillType.Triggered, SkillType.Type90, }, excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.ManaCostReserved, SkillType.TriggeredGrantedSkill, }, ignoreMinionTypes = true, statDescriptionScope = "gem_stat_descriptions", @@ -719,7 +719,7 @@ skills["SupportCastOnDamageTaken"] = { color = 1, support = true, requireSkillTypes = { SkillType.Spell, SkillType.Triggerable, SkillType.AND, }, - addSkillTypes = { SkillType.Triggered, }, + addSkillTypes = { SkillType.Triggered, SkillType.Type90, }, excludeSkillTypes = { SkillType.Trap, SkillType.Mine, SkillType.Totem, SkillType.Aura, SkillType.TriggeredGrantedSkill, }, statDescriptionScope = "gem_stat_descriptions", statMap = { @@ -1046,7 +1046,7 @@ skills["SupportWeaponElementalDamage"] = { }, } skills["SupportWeaponElementalDamagePlus"] = { - name = "Awakened Elemental Damage With Attacks", + name = "Awakened Elemental Damage with Attacks", description = "Supports attack skills.", color = 1, support = true, @@ -2661,46 +2661,46 @@ skills["SupportRangedAttackTotem"] = { "is_ranged_attack_totem", }, levels = { - [1] = { 1, 8000, 60, 8, -50, -50, 2, 200, manaMultiplier = 20, levelRequirement = 8, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [2] = { 1, 8000, 60, 10, -50, -50, 2, 200, manaMultiplier = 20, levelRequirement = 10, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [3] = { 1, 8000, 60, 13, -49, -50, 2, 200, manaMultiplier = 20, levelRequirement = 13, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [4] = { 1, 8000, 60, 17, -49, -50, 2, 200, manaMultiplier = 20, levelRequirement = 17, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [5] = { 1, 8000, 60, 21, -48, -50, 2, 200, manaMultiplier = 20, levelRequirement = 21, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [6] = { 1, 8000, 60, 25, -48, -50, 2, 200, manaMultiplier = 20, levelRequirement = 25, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [7] = { 1, 8000, 60, 29, -47, -50, 2, 200, manaMultiplier = 20, levelRequirement = 29, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [8] = { 1, 8000, 60, 33, -47, -50, 2, 200, manaMultiplier = 20, levelRequirement = 33, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [9] = { 1, 8000, 60, 37, -46, -50, 2, 200, manaMultiplier = 20, levelRequirement = 37, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [10] = { 1, 8000, 60, 40, -46, -50, 2, 200, manaMultiplier = 20, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [11] = { 1, 8000, 60, 43, -45, -50, 2, 200, manaMultiplier = 20, levelRequirement = 43, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [12] = { 1, 8000, 60, 46, -45, -50, 2, 200, manaMultiplier = 20, levelRequirement = 46, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [13] = { 1, 8000, 60, 49, -44, -50, 2, 200, manaMultiplier = 20, levelRequirement = 49, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [14] = { 1, 8000, 60, 52, -44, -50, 2, 200, manaMultiplier = 20, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [15] = { 1, 8000, 60, 55, -43, -50, 2, 200, manaMultiplier = 20, levelRequirement = 55, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [16] = { 1, 8000, 60, 58, -43, -50, 2, 200, manaMultiplier = 20, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [17] = { 1, 8000, 60, 61, -42, -50, 2, 200, manaMultiplier = 20, levelRequirement = 61, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [18] = { 1, 8000, 60, 64, -42, -50, 2, 200, manaMultiplier = 20, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [19] = { 1, 8000, 60, 67, -41, -50, 2, 200, manaMultiplier = 20, levelRequirement = 67, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [20] = { 1, 8000, 60, 70, -41, -50, 2, 200, manaMultiplier = 20, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [21] = { 1, 8000, 60, 72, -40, -50, 2, 200, manaMultiplier = 20, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [22] = { 1, 8000, 60, 74, -40, -50, 2, 200, manaMultiplier = 20, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [23] = { 1, 8000, 60, 76, -39, -50, 2, 200, manaMultiplier = 20, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [24] = { 1, 8000, 60, 78, -39, -50, 2, 200, manaMultiplier = 20, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [25] = { 1, 8000, 60, 80, -38, -50, 2, 200, manaMultiplier = 20, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [26] = { 1, 8000, 60, 82, -38, -50, 2, 200, manaMultiplier = 20, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [27] = { 1, 8000, 60, 84, -37, -50, 2, 200, manaMultiplier = 20, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [28] = { 1, 8000, 60, 86, -37, -50, 2, 200, manaMultiplier = 20, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [29] = { 1, 8000, 60, 88, -36, -50, 2, 200, manaMultiplier = 20, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [30] = { 1, 8000, 60, 90, -36, -50, 2, 200, manaMultiplier = 20, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [31] = { 1, 8000, 60, 91, -35, -50, 2, 200, manaMultiplier = 20, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [32] = { 1, 8000, 60, 92, -35, -50, 2, 200, manaMultiplier = 20, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [33] = { 1, 8000, 60, 93, -34, -50, 2, 200, manaMultiplier = 20, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [34] = { 1, 8000, 60, 94, -34, -50, 2, 200, manaMultiplier = 20, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [35] = { 1, 8000, 60, 95, -33, -50, 2, 200, manaMultiplier = 20, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [36] = { 1, 8000, 60, 96, -33, -50, 2, 200, manaMultiplier = 20, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [37] = { 1, 8000, 60, 97, -32, -50, 2, 200, manaMultiplier = 20, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [38] = { 1, 8000, 60, 98, -32, -50, 2, 200, manaMultiplier = 20, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [39] = { 1, 8000, 60, 99, -31, -50, 2, 200, manaMultiplier = 20, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, - [40] = { 1, 8000, 60, 100, -31, -50, 2, 200, manaMultiplier = 20, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [1] = { 1, 8000, 60, 8, -42, -50, 2, 200, manaMultiplier = 20, levelRequirement = 8, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [2] = { 1, 8000, 60, 10, -42, -50, 2, 200, manaMultiplier = 20, levelRequirement = 10, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [3] = { 1, 8000, 60, 13, -41, -50, 2, 200, manaMultiplier = 20, levelRequirement = 13, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [4] = { 1, 8000, 60, 17, -41, -50, 2, 200, manaMultiplier = 20, levelRequirement = 17, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [5] = { 1, 8000, 60, 21, -40, -50, 2, 200, manaMultiplier = 20, levelRequirement = 21, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [6] = { 1, 8000, 60, 25, -40, -50, 2, 200, manaMultiplier = 20, levelRequirement = 25, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [7] = { 1, 8000, 60, 29, -39, -50, 2, 200, manaMultiplier = 20, levelRequirement = 29, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [8] = { 1, 8000, 60, 33, -39, -50, 2, 200, manaMultiplier = 20, levelRequirement = 33, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [9] = { 1, 8000, 60, 37, -38, -50, 2, 200, manaMultiplier = 20, levelRequirement = 37, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [10] = { 1, 8000, 60, 40, -38, -50, 2, 200, manaMultiplier = 20, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [11] = { 1, 8000, 60, 43, -37, -50, 2, 200, manaMultiplier = 20, levelRequirement = 43, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [12] = { 1, 8000, 60, 46, -37, -50, 2, 200, manaMultiplier = 20, levelRequirement = 46, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [13] = { 1, 8000, 60, 49, -36, -50, 2, 200, manaMultiplier = 20, levelRequirement = 49, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [14] = { 1, 8000, 60, 52, -36, -50, 2, 200, manaMultiplier = 20, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [15] = { 1, 8000, 60, 55, -35, -50, 2, 200, manaMultiplier = 20, levelRequirement = 55, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [16] = { 1, 8000, 60, 58, -35, -50, 2, 200, manaMultiplier = 20, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [17] = { 1, 8000, 60, 61, -34, -50, 2, 200, manaMultiplier = 20, levelRequirement = 61, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [18] = { 1, 8000, 60, 64, -34, -50, 2, 200, manaMultiplier = 20, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [19] = { 1, 8000, 60, 67, -33, -50, 2, 200, manaMultiplier = 20, levelRequirement = 67, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [20] = { 1, 8000, 60, 70, -33, -50, 2, 200, manaMultiplier = 20, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [21] = { 1, 8000, 60, 72, -33, -50, 2, 200, manaMultiplier = 20, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [22] = { 1, 8000, 60, 74, -32, -50, 2, 200, manaMultiplier = 20, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [23] = { 1, 8000, 60, 76, -32, -50, 2, 200, manaMultiplier = 20, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [24] = { 1, 8000, 60, 78, -31, -50, 2, 200, manaMultiplier = 20, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [25] = { 1, 8000, 60, 80, -31, -50, 2, 200, manaMultiplier = 20, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [26] = { 1, 8000, 60, 82, -30, -50, 2, 200, manaMultiplier = 20, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [27] = { 1, 8000, 60, 84, -30, -50, 2, 200, manaMultiplier = 20, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [28] = { 1, 8000, 60, 86, -29, -50, 2, 200, manaMultiplier = 20, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [29] = { 1, 8000, 60, 88, -29, -50, 2, 200, manaMultiplier = 20, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [30] = { 1, 8000, 60, 90, -28, -50, 2, 200, manaMultiplier = 20, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [31] = { 1, 8000, 60, 91, -28, -50, 2, 200, manaMultiplier = 20, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [32] = { 1, 8000, 60, 92, -28, -50, 2, 200, manaMultiplier = 20, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [33] = { 1, 8000, 60, 93, -28, -50, 2, 200, manaMultiplier = 20, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [34] = { 1, 8000, 60, 94, -27, -50, 2, 200, manaMultiplier = 20, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [35] = { 1, 8000, 60, 95, -27, -50, 2, 200, manaMultiplier = 20, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [36] = { 1, 8000, 60, 96, -27, -50, 2, 200, manaMultiplier = 20, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [37] = { 1, 8000, 60, 97, -27, -50, 2, 200, manaMultiplier = 20, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [38] = { 1, 8000, 60, 98, -26, -50, 2, 200, manaMultiplier = 20, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [39] = { 1, 8000, 60, 99, -26, -50, 2, 200, manaMultiplier = 20, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, + [40] = { 1, 8000, 60, 100, -26, -50, 2, 200, manaMultiplier = 20, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, 1, 1, 1, 1, }, }, }, } skills["SupportReducedMana"] = { diff --git a/Data/3_0/StatDescriptions/active_skill_gem_stat_descriptions.lua b/Data/3_0/StatDescriptions/active_skill_gem_stat_descriptions.lua index fd5075b10..ff43631ab 100644 --- a/Data/3_0/StatDescriptions/active_skill_gem_stat_descriptions.lua +++ b/Data/3_0/StatDescriptions/active_skill_gem_stat_descriptions.lua @@ -1 +1 @@ -return {[1]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Base Off Hand Physical Damage"}}},stats={[1]="off_hand_local_minimum_added_physical_damage",[2]="off_hand_local_maximum_added_physical_damage"}},[2]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Added Physical Damage per 15 Armour or Evasion Rating on Shield"}}},stats={[1]="off_hand_minimum_added_physical_damage_per_15_shield_armour_and_evasion_rating",[2]="off_hand_maximum_added_physical_damage_per_15_shield_armour_and_evasion_rating"}},[3]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Base Off Hand Attack time is %1% seconds"}}},stats={[1]="off_hand_base_weapon_attack_duration_ms"}},[4]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Physical Damage"}}},stats={[1]="global_minimum_added_physical_damage",[2]="global_maximum_added_physical_damage"}},[5]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Fire Damage"}}},stats={[1]="global_minimum_added_fire_damage",[2]="global_maximum_added_fire_damage"}},[6]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Cold Damage"}}},stats={[1]="global_minimum_added_cold_damage",[2]="global_maximum_added_cold_damage"}},[7]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Lightning Damage"}}},stats={[1]="global_minimum_added_lightning_damage",[2]="global_maximum_added_lightning_damage"}},[8]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Chaos Damage"}}},stats={[1]="global_minimum_added_chaos_damage",[2]="global_maximum_added_chaos_damage"}},[9]={lang={English={[1]={[1]={k="multiplicative_permyriad_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% of Base Attack Damage"}}},stats={[1]="active_skill_attack_damage_final_permyriad"}},[10]={lang={English={[1]={[1]={k="multiplicative_permyriad_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% of Base Damage"}}},stats={[1]="active_skill_base_attack_damage_final_+permyriad"}},[11]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% of Damage"}}},stats={[1]="active_skill_damage_+%_final"}},[12]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% of Physical Damage"}}},stats={[1]="active_skill_physical_damage_+%_final"}},[13]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% of Attack Damage"}}},stats={[1]="active_skill_attack_damage_+%_final"}},[14]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="When Dual Wielding, Deals %1%%% Damage from each Weapon combined"}}},stats={[1]="cleave_damage_+%_final_while_dual_wielding"}},[15]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Minions deal %1%%% of Damage"}}},stats={[1]="active_skill_minion_damage_+%_final"}},[16]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Minions deal %1%%% of Physical Damage"}}},stats={[1]="active_skill_minion_physical_damage_+%_final"}},[17]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage per Frenzy Charge"}}},stats={[1]="physical_damage_+%_per_frenzy_charge"}},[18]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Raised Zombie"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Raised Zombies"}}},stats={[1]="base_number_of_zombies_allowed"}},[19]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Raised Spectre"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Raised Spectres"}}},stats={[1]="base_number_of_spectres_allowed"}},[20]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Skeleton"},[2]={limit={[1]={[1]=1,[2]="#"}},text="Maximum %1% Summoned Skeletons"}}},stats={[1]="base_number_of_skeletons_allowed"}},[21]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Raging Spirit"},[2]={limit={[1]={[1]=1,[2]="#"}},text="Maximum %1% Summoned Raging Spirits"}}},stats={[1]="base_number_of_raging_spirits_allowed"}},[22]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect"}}},stats={[1]="base_aura_area_of_effect_+%"}},[23]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Aura effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Aura effect"}}},stats={[1]="aura_effect_+%"}},[24]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Base duration is %1% seconds"}}},stats={[1]="base_skill_effect_duration"}},[25]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Base secondary duration is %1% seconds"}}},stats={[1]="base_secondary_skill_effect_duration"}},[26]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Additional %1% seconds Base Duration per extra corpse Consumed"}}},stats={[1]="offering_skill_effect_duration_per_corpse"}},[27]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Buff Duration per Endurance Charge removed"}}},stats={[1]="base_buff_duration_ms_+_per_removable_endurance_charge"}},[28]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Buff and Debuff Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Buff and Debuff Duration"}}},stats={[1]="buff_duration_+%"}},[29]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1% base maximum Life"}}},stats={[1]="display_minion_base_maximum_life"}},[30]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area Damage"}}},stats={[1]="active_skill_area_damage_+%_final"}},[31]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spell Repeats once"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spell Repeats %1% times"}}},stats={[1]="base_spell_repeat_count"}},[32]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Golem"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Golems"}}},stats={[1]="base_number_of_golems_allowed"}},[33]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=1},[3]={[1]=0,[2]=0}},text="Summons a Totem which uses this Skill"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=1},[3]={[1]=0,[2]=0}},text="Summons a Ballista Totem which uses this Skill"},[3]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0}},text="Summons %1% Totems which use this Skill"},[4]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0}},text="Summons %1% Ballista Totems which use this Skill"}}},stats={[1]="is_totem",[2]="number_of_totems_to_summon",[3]="is_ranged_attack_totem"}},[34]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Summoned Ballista Totems"}}},stats={[1]="attack_skills_additional_ballista_totems_allowed"}},[35]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Summoned Totems"}}},stats={[1]="base_number_of_totems_allowed"}},[36]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating"}}},stats={[1]="accuracy_rating"}},[37]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating"}}},stats={[1]="accuracy_rating_+%"}},[38]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Damage with Two Handed Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Damage with Two Handed Weapons"}}},stats={[1]="active_skill_attack_damage_+%_final_with_two_handed_weapon"}},[39]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed with Two Handed Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed with Two Handed Weapons"}}},stats={[1]="active_skill_attack_speed_+%_final_with_two_handed_weapon"}},[40]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Poison Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Poison Duration"}}},stats={[1]="active_skill_poison_duration_+%_final"}},[41]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance"}}},stats={[1]="additional_base_critical_strike_chance"}},[42]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp_if_required",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Attack Time"}}},stats={[1]="additional_weapon_base_attack_time_ms"}},[43]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Cast Speed also apply to this Skill's Activation frequency"}}},stats={[1]="additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency"}},[44]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Mine Duration also apply to this Skill's Buff Duration"}}},stats={[1]="additive_mine_duration_modifiers_apply_to_buff_effect_duration"}},[45]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area Damage"}}},stats={[1]="area_damage_+%"}},[46]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while Dead"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while Dead"}}},stats={[1]="area_of_effect_+%_while_dead"}},[47]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Added Chaos Damage"}}},stats={[1]="attack_minimum_added_chaos_damage",[2]="attack_maximum_added_chaos_damage"}},[48]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Added Cold Damage"}}},stats={[1]="attack_minimum_added_cold_damage",[2]="attack_maximum_added_cold_damage"}},[49]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Added Fire Damage"}}},stats={[1]="attack_minimum_added_fire_damage",[2]="attack_maximum_added_fire_damage"}},[50]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Added Lightning Damage"}}},stats={[1]="attack_minimum_added_lightning_damage",[2]="attack_maximum_added_lightning_damage"}},[51]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Added Attack Physical Damage"}}},stats={[1]="attack_minimum_added_physical_damage",[2]="attack_maximum_added_physical_damage"}},[52]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed"}}},stats={[1]="attack_speed_+%"}},[53]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed"}}},stats={[1]="attack_speed_+%_granted_from_skill"}},[54]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Aura Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Aura Area of Effect"}}},stats={[1]="base_aura_area_of_effect_+%"}},[55]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Hits Enemies every %1% Seconds"}}},stats={[1]="base_blade_vortex_hit_rate_ms"}},[56]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed"}}},stats={[1]="base_cast_speed_+%"}},[57]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="Always Freezes Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0}},text="%1%%% chance to Freeze"}}},stats={[1]="base_chance_to_freeze_%",[2]="always_freeze"}},[58]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Always Ignite"}}},stats={[1]="base_chance_to_ignite_%"}},[59]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Shock"},[2]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=100,[2]="#"}},text="Always Shock"}}},stats={[1]="base_chance_to_shock_%"}},[60]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier"}}},stats={[1]="base_critical_strike_multiplier_+"}},[61]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Curse Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Curse Duration"}}},stats={[1]="base_curse_duration_+%"}},[62]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Knock Enemies Back on hit"}}},stats={[1]="base_global_chance_to_knockback_%"}},[63]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain Enemies"}}},stats={[1]="base_killed_monster_dropped_item_rarity_+%"}},[64]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained for each Enemy hit by your Attacks"}}},stats={[1]="base_life_gain_per_target"}},[65]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Mana Cost"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Mana Cost"}}},stats={[1]="base_mana_cost_-%"}},[66]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Base Mine Detonation Time is %1% seconds"}}},stats={[1]="base_mine_detonation_time_ms"}},[67]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Fires an additional Arrow"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Fires %1% additional Arrows"}}},stats={[1]="base_number_of_additional_arrows"}},[68]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Sentinel of Purity"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Sentinels of Purity"}}},stats={[1]="base_number_of_champions_of_light_allowed"}},[69]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Holy Relic"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Summoned Holy Relics"}}},stats={[1]="base_number_of_relics_allowed"}},[70]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Lightning Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_lightning"}},[71]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poison Duration"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poison Duration"}}},stats={[1]="base_poison_duration_+%"}},[72]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Speed"}}},stats={[1]="base_projectile_speed_+%"}},[73]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrates %1%%% Cold Resistance"}}},stats={[1]="base_reduce_enemy_cold_resistance_%"}},[74]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrates %1%%% Fire Resistance"}}},stats={[1]="base_reduce_enemy_fire_resistance_%"}},[75]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrates %1%%% Lightning Resistance"}}},stats={[1]="base_reduce_enemy_lightning_resistance_%"}},[76]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Activates every %1% seconds while Attached"}}},stats={[1]="base_sigil_repeat_frequency_ms"}},[77]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect"}}},stats={[1]="base_skill_area_of_effect_+%"}},[78]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration on Enemies"}}},stats={[1]="base_stun_duration_+%"}},[79]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spend Life instead of Mana"}}},stats={[1]="base_use_life_in_place_of_mana"}},[80]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lose %1% Rage per second"}}},stats={[1]="berserk_base_rage_loss_per_second"}},[81]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blinding duration"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blinding duration"}}},stats={[1]="blind_duration_+%"}},[82]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Burning Damage"}}},stats={[1]="burn_damage_+%"}},[83]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=100,[2]="#"}},text="Grants Fortify on Melee hit"},[2]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Fortify on Melee hit"}}},stats={[1]="chance_to_fortify_on_melee_hit_+%"}},[84]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Frenzy Charge on Killing a Frozen Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Frenzy Charge on Killing a Frozen Enemy"}}},stats={[1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"}},[85]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage"}}},stats={[1]="chaos_damage_+%"}},[86]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chill Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chill Duration on Enemies"}}},stats={[1]="chill_duration_+%"}},[87]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chill Effect on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chill Effect on Enemies"}}},stats={[1]="chill_effect_+%"}},[88]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Cold Damage as Extra Fire Damage"}}},stats={[1]="cold_damage_%_to_add_as_fire"}},[89]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage"}}},stats={[1]="cold_damage_+%"}},[90]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Maximum of %1% Geysers at a time"}}},stats={[1]="corpse_erruption_base_maximum_number_of_geyers"}},[91]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance"}}},stats={[1]="critical_strike_chance_+%"}},[92]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage over Time"}}},stats={[1]="damage_over_time_+%"}},[93]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage"}}},stats={[1]="damage_+%"}},[94]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Frozen Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Frozen Enemies"}}},stats={[1]="damage_+%_vs_frozen_enemies"}},[95]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Cast Speed also apply to Projectile Frequency"}}},stats={[1]="display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed"}},[96]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damages %1% nearby Enemies when you gain Stages"}}},stats={[1]="divine_tempest_base_number_of_nearby_enemies_to_zap"}},[97]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage"}}},stats={[1]="elemental_damage_+%"}},[98]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage"}}},stats={[1]="fire_damage_+%"}},[99]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fortify duration"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fortify duration"}}},stats={[1]="fortify_duration_+%"}},[100]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freeze Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freeze Duration on Enemies"}}},stats={[1]="freeze_duration_+%"}},[101]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Blind enemies on hit"}}},stats={[1]="global_chance_to_blind_on_hit_%"}},[102]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage"}}},stats={[1]="global_minimum_added_chaos_damage",[2]="global_maximum_added_chaos_damage"}},[103]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage"}}},stats={[1]="global_minimum_added_cold_damage",[2]="global_maximum_added_cold_damage"}},[104]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage"}}},stats={[1]="global_minimum_added_fire_damage",[2]="global_maximum_added_fire_damage"}},[105]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage"}}},stats={[1]="global_minimum_added_lightning_damage",[2]="global_maximum_added_lightning_damage"}},[106]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage"}}},stats={[1]="global_minimum_added_physical_damage",[2]="global_maximum_added_physical_damage"}},[107]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Block Chance"}}},stats={[1]="global_reduce_enemy_block_%"}},[108]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ignite Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ignite Duration on Enemies"}}},stats={[1]="ignite_duration_+%"}},[109]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Knockback Distance"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Knockback Distance"}}},stats={[1]="knockback_distance_+%"}},[110]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life"}}},stats={[1]="life_leech_from_any_damage_permyriad"}},[111]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage"}}},stats={[1]="lightning_damage_+%"}},[112]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Strikes every %1% seconds"}}},stats={[1]="lightning_tower_trap_base_interval_duration_ms"}},[113]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Mana"}}},stats={[1]="mana_leech_from_any_damage_permyriad"}},[114]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage"}}},stats={[1]="melee_damage_+%"}},[115]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage against Bleeding Enemies"}}},stats={[1]="melee_damage_vs_bleeding_enemies_+%"}},[116]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage"}}},stats={[1]="melee_physical_damage_+%"}},[117]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Detonation Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Detonation Area of Effect"}}},stats={[1]="mine_detonation_radius_+%"}},[118]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mines have %1%%% increased Detonation Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mines have %1%%% reduced Detonation Speed"}}},stats={[1]="mine_detonation_speed_+%"}},[119]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine duration"}}},stats={[1]="mine_duration_+%"}},[120]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Throwing Speed"}}},stats={[1]="mine_laying_speed_+%"}},[121]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Aura effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Aura effect"}}},stats={[1]="non_curse_aura_effect_+%"}},[122]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Fires %1% additional Projectiles"}}},stats={[1]="number_of_additional_projectiles"}},[123]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chains %1$+d Times"}}},stats={[1]="number_of_chains"}},[124]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% additional Remote Mine placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% additional Remote Mines placed at a time"}}},stats={[1]="number_of_additional_remote_mines_allowed"}},[125]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% additional Trap placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% additional Traps placed at a time"}}},stats={[1]="number_of_additional_traps_allowed"}},[126]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Throw up to 1 additional Trap"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Throw up to %1% additional Traps"}}},stats={[1]="number_of_additional_traps_to_throw"}},[127]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Animated Weapon"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Animated Weapons"}}},stats={[1]="number_of_animated_weapons_allowed"}},[128]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Strikes every %1% second"},[2]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Strikes every %1% seconds"}}},stats={[1]="orb_of_storms_base_bolt_frequency_ms"}},[129]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="If this Skill Ignites an Enemy, it also inflicts a Burning Debuff\nDebuff deals Fire Damage per second equal to %1%%% of Ignite Damage per second"}}},stats={[1]="base_additional_burning_debuff_%_of_ignite_damage"}},[130]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Releases waves every %1% seconds"}}},stats={[1]="phys_cascade_trap_base_interval_duration_ms"}},[131]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Fire Damage"}}},stats={[1]="physical_damage_%_to_add_as_fire"}},[132]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Lightning Damage"}}},stats={[1]="physical_damage_%_to_add_as_lightning"}},[133]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage"}}},stats={[1]="physical_damage_+%"}},[134]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cooldown Recovery Speed for throwing Traps"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cooldown Recovery Speed for throwing Traps"}}},stats={[1]="placing_traps_cooldown_recovery_+%"}},[135]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Projectiles Pierce an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Projectiles Pierce %1% additional Targets"}}},stats={[1]="projectile_base_number_of_targets_to_pierce"}},[136]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Damage"}}},stats={[1]="projectile_damage_+%"}},[137]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Split towards %1% targets"}}},stats={[1]="projectile_number_to_split"}},[138]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Fork"}}},stats={[1]="projectiles_fork"}},[139]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Projectiles Return to you after hitting targets"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Projectiles Return to you at end of flight"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Projectiles Return to you"}}},stats={[1]="projectiles_return",[2]="projectiles_return_if_no_hit_object"}},[140]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1%%% of Damage from Hits is taken from the Buff before your Life or Energy Shield\nBuff can take %2% Damage"}}},stats={[1]="quick_guard_damage_absorbed_%",[2]="quick_guard_damage_absorb_limit"}},[141]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Fires an additional sequence of arrows"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Fires %1% additional sequences of arrows"}}},stats={[1]="rain_of_arrows_additional_sequences"}},[142]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy chance to Dodge"}}},stats={[1]="reduce_enemy_dodge_%"}},[143]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shock Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shock Duration on Enemies"}}},stats={[1]="shock_duration_+%"}},[144]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Converted to Fire Damage"}}},stats={[1]="skill_cold_damage_%_to_convert_to_fire"}},[145]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skill Effect Duration"}}},stats={[1]="skill_effect_duration_+%"}},[146]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Lightning Damage"}}},stats={[1]="skill_physical_damage_%_to_convert_to_lightning"}},[147]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage"}}},stats={[1]="spell_damage_+%"}},[148]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% maximum Beam Targets"}}},stats={[1]="static_strike_number_of_beam_targets"}},[149]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Trap Damage"}}},stats={[1]="support_trap_damage_+%_final"}},[150]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Fires %1% secondary Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Fires %1% secondary Projectiles"}}},stats={[1]="tornado_shot_num_of_secondary_projectiles"}},[151]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Damage"}}},stats={[1]="trap_damage_+%"}},[152]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap duration"}}},stats={[1]="trap_duration_+%"}},[153]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Throwing Speed"}}},stats={[1]="trap_throwing_speed_+%"}},[154]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Trigger Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Trigger Area of Effect"}}},stats={[1]="trap_trigger_radius_+%"}},[155]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spawns corpses with Level %1%"}}},stats={[1]="unearth_base_corpse_level"}},[156]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Strikes an Enemy every %1% second"},[2]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Strikes an Enemy every %1% seconds"}}},stats={[1]="vaal_storm_call_base_delay_ms"}},[157]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Consumes up to 1 corpse"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Consumes up to %1% corpses"}}},stats={[1]="volatile_dead_base_number_of_corpses_to_consume"}},[158]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Weapons"}}},stats={[1]="weapon_elemental_damage_+%"}},["accuracy_rating"]=36,["accuracy_rating_+%"]=37,["active_skill_area_damage_+%_final"]=30,["active_skill_attack_damage_+%_final"]=13,["active_skill_attack_damage_+%_final_with_two_handed_weapon"]=38,["active_skill_attack_damage_final_permyriad"]=9,["active_skill_attack_speed_+%_final_with_two_handed_weapon"]=39,["active_skill_base_attack_damage_final_+permyriad"]=10,["active_skill_damage_+%_final"]=11,["active_skill_minion_damage_+%_final"]=15,["active_skill_minion_physical_damage_+%_final"]=16,["active_skill_physical_damage_+%_final"]=12,["active_skill_poison_duration_+%_final"]=40,["additional_base_critical_strike_chance"]=41,["additional_weapon_base_attack_time_ms"]=42,["additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency"]=43,["additive_mine_duration_modifiers_apply_to_buff_effect_duration"]=44,["always_freeze"]=57,["area_damage_+%"]=45,["area_of_effect_+%_while_dead"]=46,["attack_maximum_added_chaos_damage"]=47,["attack_maximum_added_cold_damage"]=48,["attack_maximum_added_fire_damage"]=49,["attack_maximum_added_lightning_damage"]=50,["attack_maximum_added_physical_damage"]=51,["attack_minimum_added_chaos_damage"]=47,["attack_minimum_added_cold_damage"]=48,["attack_minimum_added_fire_damage"]=49,["attack_minimum_added_lightning_damage"]=50,["attack_minimum_added_physical_damage"]=51,["attack_skills_additional_ballista_totems_allowed"]=34,["attack_speed_+%"]=52,["attack_speed_+%_granted_from_skill"]=53,["aura_effect_+%"]=23,["base_additional_burning_debuff_%_of_ignite_damage"]=129,["base_aura_area_of_effect_+%"]=54,["base_blade_vortex_hit_rate_ms"]=55,["base_buff_duration_ms_+_per_removable_endurance_charge"]=27,["base_cast_speed_+%"]=56,["base_chance_to_freeze_%"]=57,["base_chance_to_ignite_%"]=58,["base_chance_to_shock_%"]=59,["base_critical_strike_multiplier_+"]=60,["base_curse_duration_+%"]=61,["base_global_chance_to_knockback_%"]=62,["base_killed_monster_dropped_item_rarity_+%"]=63,["base_life_gain_per_target"]=64,["base_mana_cost_-%"]=65,["base_mine_detonation_time_ms"]=66,["base_number_of_additional_arrows"]=67,["base_number_of_champions_of_light_allowed"]=68,["base_number_of_golems_allowed"]=32,["base_number_of_raging_spirits_allowed"]=21,["base_number_of_relics_allowed"]=69,["base_number_of_skeletons_allowed"]=20,["base_number_of_spectres_allowed"]=19,["base_number_of_totems_allowed"]=35,["base_number_of_zombies_allowed"]=18,["base_physical_damage_%_to_convert_to_lightning"]=70,["base_poison_duration_+%"]=71,["base_projectile_speed_+%"]=72,["base_reduce_enemy_cold_resistance_%"]=73,["base_reduce_enemy_fire_resistance_%"]=74,["base_reduce_enemy_lightning_resistance_%"]=75,["base_secondary_skill_effect_duration"]=25,["base_sigil_repeat_frequency_ms"]=76,["base_skill_area_of_effect_+%"]=77,["base_skill_effect_duration"]=24,["base_spell_repeat_count"]=31,["base_stun_duration_+%"]=78,["base_use_life_in_place_of_mana"]=79,["berserk_base_rage_loss_per_second"]=80,["blind_duration_+%"]=81,["buff_duration_+%"]=28,["burn_damage_+%"]=82,["chance_to_fortify_on_melee_hit_+%"]=83,["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=84,["chaos_damage_+%"]=85,["chill_duration_+%"]=86,["chill_effect_+%"]=87,["cleave_damage_+%_final_while_dual_wielding"]=14,["cold_damage_%_to_add_as_fire"]=88,["cold_damage_+%"]=89,["corpse_erruption_base_maximum_number_of_geyers"]=90,["critical_strike_chance_+%"]=91,["damage_+%"]=93,["damage_+%_vs_frozen_enemies"]=94,["damage_over_time_+%"]=92,["display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed"]=95,["display_minion_base_maximum_life"]=29,["divine_tempest_base_number_of_nearby_enemies_to_zap"]=96,["elemental_damage_+%"]=97,["fire_damage_+%"]=98,["fortify_duration_+%"]=99,["freeze_duration_+%"]=100,["global_chance_to_blind_on_hit_%"]=101,["global_maximum_added_chaos_damage"]=102,["global_maximum_added_cold_damage"]=103,["global_maximum_added_fire_damage"]=104,["global_maximum_added_lightning_damage"]=105,["global_maximum_added_physical_damage"]=106,["global_minimum_added_chaos_damage"]=102,["global_minimum_added_cold_damage"]=103,["global_minimum_added_fire_damage"]=104,["global_minimum_added_lightning_damage"]=105,["global_minimum_added_physical_damage"]=106,["global_reduce_enemy_block_%"]=107,["ignite_duration_+%"]=108,["is_ranged_attack_totem"]=33,["is_totem"]=33,["knockback_distance_+%"]=109,["life_leech_from_any_damage_permyriad"]=110,["lightning_damage_+%"]=111,["lightning_tower_trap_base_interval_duration_ms"]=112,["mana_leech_from_any_damage_permyriad"]=113,["melee_damage_+%"]=114,["melee_damage_vs_bleeding_enemies_+%"]=115,["melee_physical_damage_+%"]=116,["mine_detonation_radius_+%"]=117,["mine_detonation_speed_+%"]=118,["mine_duration_+%"]=119,["mine_laying_speed_+%"]=120,["non_curse_aura_effect_+%"]=121,["number_of_additional_projectiles"]=122,["number_of_additional_remote_mines_allowed"]=124,["number_of_additional_traps_allowed"]=125,["number_of_additional_traps_to_throw"]=126,["number_of_animated_weapons_allowed"]=127,["number_of_chains"]=123,["number_of_totems_to_summon"]=33,["off_hand_base_weapon_attack_duration_ms"]=3,["off_hand_local_maximum_added_physical_damage"]=1,["off_hand_local_minimum_added_physical_damage"]=1,["off_hand_maximum_added_physical_damage_per_15_shield_armour_and_evasion_rating"]=2,["off_hand_minimum_added_physical_damage_per_15_shield_armour_and_evasion_rating"]=2,["offering_skill_effect_duration_per_corpse"]=26,["orb_of_storms_base_bolt_frequency_ms"]=128,parent="gem_stat_descriptions",["phys_cascade_trap_base_interval_duration_ms"]=130,["physical_damage_%_to_add_as_fire"]=131,["physical_damage_%_to_add_as_lightning"]=132,["physical_damage_+%"]=133,["physical_damage_+%_per_frenzy_charge"]=17,["placing_traps_cooldown_recovery_+%"]=134,["projectile_base_number_of_targets_to_pierce"]=135,["projectile_damage_+%"]=136,["projectile_number_to_split"]=137,["projectiles_fork"]=138,["projectiles_return"]=139,["projectiles_return_if_no_hit_object"]=139,["quick_guard_damage_absorb_limit"]=140,["quick_guard_damage_absorbed_%"]=140,["rain_of_arrows_additional_sequences"]=141,["reduce_enemy_dodge_%"]=142,["shock_duration_+%"]=143,["skill_cold_damage_%_to_convert_to_fire"]=144,["skill_effect_duration_+%"]=145,["skill_physical_damage_%_to_convert_to_lightning"]=146,["spell_damage_+%"]=147,["static_strike_number_of_beam_targets"]=148,["support_trap_damage_+%_final"]=149,["tornado_shot_num_of_secondary_projectiles"]=150,["trap_damage_+%"]=151,["trap_duration_+%"]=152,["trap_throwing_speed_+%"]=153,["trap_trigger_radius_+%"]=154,["unearth_base_corpse_level"]=155,["vaal_storm_call_base_delay_ms"]=156,["volatile_dead_base_number_of_corpses_to_consume"]=157,["weapon_elemental_damage_+%"]=158} \ No newline at end of file +return {[1]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Base Off Hand Physical Damage"}}},stats={[1]="off_hand_local_minimum_added_physical_damage",[2]="off_hand_local_maximum_added_physical_damage"}},[2]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Added Physical Damage per 15 Armour or Evasion Rating on Shield"}}},stats={[1]="off_hand_minimum_added_physical_damage_per_15_shield_armour_and_evasion_rating",[2]="off_hand_maximum_added_physical_damage_per_15_shield_armour_and_evasion_rating"}},[3]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Base Off Hand Attack time is %1% seconds"}}},stats={[1]="off_hand_base_weapon_attack_duration_ms"}},[4]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Physical Damage"}}},stats={[1]="global_minimum_added_physical_damage",[2]="global_maximum_added_physical_damage"}},[5]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Fire Damage"}}},stats={[1]="global_minimum_added_fire_damage",[2]="global_maximum_added_fire_damage"}},[6]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Cold Damage"}}},stats={[1]="global_minimum_added_cold_damage",[2]="global_maximum_added_cold_damage"}},[7]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Lightning Damage"}}},stats={[1]="global_minimum_added_lightning_damage",[2]="global_maximum_added_lightning_damage"}},[8]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Chaos Damage"}}},stats={[1]="global_minimum_added_chaos_damage",[2]="global_maximum_added_chaos_damage"}},[9]={lang={English={[1]={[1]={k="multiplicative_permyriad_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% of Base Attack Damage"}}},stats={[1]="active_skill_attack_damage_final_permyriad"}},[10]={lang={English={[1]={[1]={k="multiplicative_permyriad_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% of Base Damage"}}},stats={[1]="active_skill_base_attack_damage_final_+permyriad"}},[11]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% of Damage"}}},stats={[1]="active_skill_damage_+%_final"}},[12]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% of Physical Damage"}}},stats={[1]="active_skill_physical_damage_+%_final"}},[13]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% of Attack Damage"}}},stats={[1]="active_skill_attack_damage_+%_final"}},[14]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="When Dual Wielding, Deals %1%%% Damage from each Weapon combined"}}},stats={[1]="cleave_damage_+%_final_while_dual_wielding"}},[15]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Minions deal %1%%% of Damage"}}},stats={[1]="active_skill_minion_damage_+%_final"}},[16]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Minions deal %1%%% of Physical Damage"}}},stats={[1]="active_skill_minion_physical_damage_+%_final"}},[17]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage per Frenzy Charge"}}},stats={[1]="physical_damage_+%_per_frenzy_charge"}},[18]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Raised Zombie"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Raised Zombies"}}},stats={[1]="base_number_of_zombies_allowed"}},[19]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Raised Spectre"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Raised Spectres"}}},stats={[1]="base_number_of_spectres_allowed"}},[20]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Skeleton"},[2]={limit={[1]={[1]=1,[2]="#"}},text="Maximum %1% Summoned Skeletons"}}},stats={[1]="base_number_of_skeletons_allowed"}},[21]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Raging Spirit"},[2]={limit={[1]={[1]=1,[2]="#"}},text="Maximum %1% Summoned Raging Spirits"}}},stats={[1]="base_number_of_raging_spirits_allowed"}},[22]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect"}}},stats={[1]="base_aura_area_of_effect_+%"}},[23]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Aura effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Aura effect"}}},stats={[1]="aura_effect_+%"}},[24]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Base duration is %1% seconds"}}},stats={[1]="base_skill_effect_duration"}},[25]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Base secondary duration is %1% seconds"}}},stats={[1]="base_secondary_skill_effect_duration"}},[26]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Additional %1% seconds Base Duration per extra corpse Consumed"}}},stats={[1]="offering_skill_effect_duration_per_corpse"}},[27]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Buff Duration per Endurance Charge removed"}}},stats={[1]="base_buff_duration_ms_+_per_removable_endurance_charge"}},[28]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Buff and Debuff Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Buff and Debuff Duration"}}},stats={[1]="buff_duration_+%"}},[29]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1% base maximum Life"}}},stats={[1]="display_minion_base_maximum_life"}},[30]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area Damage"}}},stats={[1]="active_skill_area_damage_+%_final"}},[31]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spell Repeats once"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spell Repeats %1% times"}}},stats={[1]="base_spell_repeat_count"}},[32]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Golem"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Golems"}}},stats={[1]="base_number_of_golems_allowed"}},[33]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=1},[3]={[1]=0,[2]=0}},text="Summons a Totem which uses this Skill"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=1},[3]={[1]=0,[2]=0}},text="Summons a Ballista Totem which uses this Skill"},[3]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0}},text="Summons %1% Totems which use this Skill"},[4]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0}},text="Summons %1% Ballista Totems which use this Skill"}}},stats={[1]="is_totem",[2]="number_of_totems_to_summon",[3]="is_ranged_attack_totem"}},[34]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Summoned Ballista Totems"}}},stats={[1]="attack_skills_additional_ballista_totems_allowed"}},[35]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Summoned Totems"}}},stats={[1]="base_number_of_totems_allowed"}},[36]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating"}}},stats={[1]="accuracy_rating"}},[37]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating"}}},stats={[1]="accuracy_rating_+%"}},[38]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Damage with Two Handed Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Damage with Two Handed Weapons"}}},stats={[1]="active_skill_attack_damage_+%_final_with_two_handed_weapon"}},[39]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed with Two Handed Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed with Two Handed Weapons"}}},stats={[1]="active_skill_attack_speed_+%_final_with_two_handed_weapon"}},[40]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Poison Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Poison Duration"}}},stats={[1]="active_skill_poison_duration_+%_final"}},[41]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance"}}},stats={[1]="additional_base_critical_strike_chance"}},[42]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp_if_required",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Attack Time"}}},stats={[1]="additional_weapon_base_attack_time_ms"}},[43]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Cast Speed also apply to this Skill's Activation frequency"}}},stats={[1]="additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency"}},[44]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Mine Duration also apply to this Skill's Buff Duration"}}},stats={[1]="additive_mine_duration_modifiers_apply_to_buff_effect_duration"}},[45]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area Damage"}}},stats={[1]="area_damage_+%"}},[46]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while Dead"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while Dead"}}},stats={[1]="area_of_effect_+%_while_dead"}},[47]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Added Chaos Damage"}}},stats={[1]="attack_minimum_added_chaos_damage",[2]="attack_maximum_added_chaos_damage"}},[48]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Added Cold Damage"}}},stats={[1]="attack_minimum_added_cold_damage",[2]="attack_maximum_added_cold_damage"}},[49]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Added Fire Damage"}}},stats={[1]="attack_minimum_added_fire_damage",[2]="attack_maximum_added_fire_damage"}},[50]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Added Lightning Damage"}}},stats={[1]="attack_minimum_added_lightning_damage",[2]="attack_maximum_added_lightning_damage"}},[51]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Added Attack Physical Damage"}}},stats={[1]="attack_minimum_added_physical_damage",[2]="attack_maximum_added_physical_damage"}},[52]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed"}}},stats={[1]="attack_speed_+%"}},[53]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed"}}},stats={[1]="attack_speed_+%_granted_from_skill"}},[54]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Aura Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Aura Area of Effect"}}},stats={[1]="base_aura_area_of_effect_+%"}},[55]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Hits Enemies every %1% Seconds"}}},stats={[1]="base_blade_vortex_hit_rate_ms"}},[56]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed"}}},stats={[1]="base_cast_speed_+%"}},[57]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="Always Freezes Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0}},text="%1%%% chance to Freeze"}}},stats={[1]="base_chance_to_freeze_%",[2]="always_freeze"}},[58]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Always Ignite"}}},stats={[1]="base_chance_to_ignite_%"}},[59]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Shock"},[2]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=100,[2]="#"}},text="Always Shock"}}},stats={[1]="base_chance_to_shock_%"}},[60]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier"}}},stats={[1]="base_critical_strike_multiplier_+"}},[61]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Curse Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Curse Duration"}}},stats={[1]="base_curse_duration_+%"}},[62]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Knock Enemies Back on hit"}}},stats={[1]="base_global_chance_to_knockback_%"}},[63]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain Enemies"}}},stats={[1]="base_killed_monster_dropped_item_rarity_+%"}},[64]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained for each Enemy hit by your Attacks"}}},stats={[1]="base_life_gain_per_target"}},[65]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Mana Cost"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Mana Cost"}}},stats={[1]="base_mana_cost_-%"}},[66]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Base Mine Detonation Time is %1% seconds"}}},stats={[1]="base_mine_detonation_time_ms"}},[67]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Fires an additional Arrow"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Fires %1% additional Arrows"}}},stats={[1]="base_number_of_additional_arrows"}},[68]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Sentinel of Purity"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Sentinels of Purity"}}},stats={[1]="base_number_of_champions_of_light_allowed"}},[69]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Holy Relic"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Summoned Holy Relics"}}},stats={[1]="base_number_of_relics_allowed"}},[70]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Lightning Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_lightning"}},[71]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poison Duration"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poison Duration"}}},stats={[1]="base_poison_duration_+%"}},[72]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Speed"}}},stats={[1]="base_projectile_speed_+%"}},[73]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrates %1%%% Cold Resistance"}}},stats={[1]="base_reduce_enemy_cold_resistance_%"}},[74]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrates %1%%% Fire Resistance"}}},stats={[1]="base_reduce_enemy_fire_resistance_%"}},[75]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrates %1%%% Lightning Resistance"}}},stats={[1]="base_reduce_enemy_lightning_resistance_%"}},[76]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Activates every %1% seconds while Attached"}}},stats={[1]="base_sigil_repeat_frequency_ms"}},[77]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect"}}},stats={[1]="base_skill_area_of_effect_+%"}},[78]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration on Enemies"}}},stats={[1]="base_stun_duration_+%"}},[79]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spend Life instead of Mana"}}},stats={[1]="base_use_life_in_place_of_mana"}},[80]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lose %1% Rage per second"}}},stats={[1]="berserk_base_rage_loss_per_second"}},[81]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLingeringBlades"},limit={[1]={[1]=1,[2]=1}},text="Leaves a Lingering Blade in the ground for every Volley"},[2]={[1]={k="reminderstring",v="ReminderTextLingeringBlades"},limit={[1]={[1]="#",[2]="#"}},text="Leaves a Lingering Blade in the ground for every %1% Volleys"}}},stats={[1]="bladefall_blade_left_in_ground_for_every_X_volleys"}},[82]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="1 Volley"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% Volleys"}}},stats={[1]="bladefall_number_of_volleys"}},[83]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Leaves %1%%% more Lingering Blades in the ground if you don't Cast this Spell yourself"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Leaves %1%%% fewer Lingering Blades in the ground if you don't Cast this Spell yourself"}}},stats={[1]="blades_left_in_ground_+%_final_if_not_hand_cast"}},[84]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blinding duration"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blinding duration"}}},stats={[1]="blind_duration_+%"}},[85]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Burning Damage"}}},stats={[1]="burn_damage_+%"}},[86]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=100,[2]="#"}},text="Grants Fortify on Melee hit"},[2]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Fortify on Melee hit"}}},stats={[1]="chance_to_fortify_on_melee_hit_+%"}},[87]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Frenzy Charge on Killing a Frozen Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Frenzy Charge on Killing a Frozen Enemy"}}},stats={[1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"}},[88]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage"}}},stats={[1]="chaos_damage_+%"}},[89]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chill Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chill Duration on Enemies"}}},stats={[1]="chill_duration_+%"}},[90]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chill Effect on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chill Effect on Enemies"}}},stats={[1]="chill_effect_+%"}},[91]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Cold Damage as Extra Fire Damage"}}},stats={[1]="cold_damage_%_to_add_as_fire"}},[92]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage"}}},stats={[1]="cold_damage_+%"}},[93]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Maximum of %1% Geysers at a time"}}},stats={[1]="corpse_erruption_base_maximum_number_of_geyers"}},[94]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance"}}},stats={[1]="critical_strike_chance_+%"}},[95]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage over Time"}}},stats={[1]="damage_over_time_+%"}},[96]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage"}}},stats={[1]="damage_+%"}},[97]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Frozen Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Frozen Enemies"}}},stats={[1]="damage_+%_vs_frozen_enemies"}},[98]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Cast Speed also apply to Projectile Frequency"}}},stats={[1]="display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed"}},[99]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damages %1% nearby Enemies when you gain Stages"}}},stats={[1]="divine_tempest_base_number_of_nearby_enemies_to_zap"}},[100]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage"}}},stats={[1]="elemental_damage_+%"}},[101]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLingeringBlades"},limit={[1]={[1]=1,[2]=1}},text="Leaves a Lingering Blade in the ground for every Projectile fired"},[2]={[1]={k="reminderstring",v="ReminderTextLingeringBlades"},limit={[1]={[1]="#",[2]="#"}},text="Leaves a Lingering Blade in the ground for every %1% Projectiles fired"}}},stats={[1]="ethereal_knives_blade_left_in_ground_for_every_X_projectiles"}},[102]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage"}}},stats={[1]="fire_damage_+%"}},[103]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fortify duration"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fortify duration"}}},stats={[1]="fortify_duration_+%"}},[104]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freeze Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freeze Duration on Enemies"}}},stats={[1]="freeze_duration_+%"}},[105]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Blind enemies on hit"}}},stats={[1]="global_chance_to_blind_on_hit_%"}},[106]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage"}}},stats={[1]="global_minimum_added_chaos_damage",[2]="global_maximum_added_chaos_damage"}},[107]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage"}}},stats={[1]="global_minimum_added_cold_damage",[2]="global_maximum_added_cold_damage"}},[108]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage"}}},stats={[1]="global_minimum_added_fire_damage",[2]="global_maximum_added_fire_damage"}},[109]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage"}}},stats={[1]="global_minimum_added_lightning_damage",[2]="global_maximum_added_lightning_damage"}},[110]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage"}}},stats={[1]="global_minimum_added_physical_damage",[2]="global_maximum_added_physical_damage"}},[111]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Block Chance"}}},stats={[1]="global_reduce_enemy_block_%"}},[112]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ignite Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ignite Duration on Enemies"}}},stats={[1]="ignite_duration_+%"}},[113]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectile changes direction %1% times"}}},stats={[1]="kinetic_wand_base_number_of_zig_zags"}},[114]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Knockback Distance"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Knockback Distance"}}},stats={[1]="knockback_distance_+%"}},[115]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life"}}},stats={[1]="life_leech_from_any_damage_permyriad"}},[116]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage"}}},stats={[1]="lightning_damage_+%"}},[117]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Strikes every %1% seconds"}}},stats={[1]="lightning_tower_trap_base_interval_duration_ms"}},[118]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Mana"}}},stats={[1]="mana_leech_from_any_damage_permyriad"}},[119]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage"}}},stats={[1]="melee_damage_+%"}},[120]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage against Bleeding Enemies"}}},stats={[1]="melee_damage_vs_bleeding_enemies_+%"}},[121]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage"}}},stats={[1]="melee_physical_damage_+%"}},[122]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Detonation Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Detonation Area of Effect"}}},stats={[1]="mine_detonation_radius_+%"}},[123]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mines have %1%%% increased Detonation Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mines have %1%%% reduced Detonation Speed"}}},stats={[1]="mine_detonation_speed_+%"}},[124]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine duration"}}},stats={[1]="mine_duration_+%"}},[125]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Throwing Speed"}}},stats={[1]="mine_laying_speed_+%"}},[126]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Aura effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Aura effect"}}},stats={[1]="non_curse_aura_effect_+%"}},[127]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Fires %1% additional Projectiles"}}},stats={[1]="number_of_additional_projectiles"}},[128]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chains %1$+d Times"}}},stats={[1]="number_of_chains"}},[129]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% additional Remote Mine placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% additional Remote Mines placed at a time"}}},stats={[1]="number_of_additional_remote_mines_allowed"}},[130]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% additional Trap placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% additional Traps placed at a time"}}},stats={[1]="number_of_additional_traps_allowed"}},[131]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Throw up to 1 additional Trap"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Throw up to %1% additional Traps"}}},stats={[1]="number_of_additional_traps_to_throw"}},[132]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Animated Weapon"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Animated Weapons"}}},stats={[1]="number_of_animated_weapons_allowed"}},[133]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Strikes every %1% second"},[2]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Strikes every %1% seconds"}}},stats={[1]="orb_of_storms_base_bolt_frequency_ms"}},[134]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="If this Skill Ignites an Enemy, it also inflicts a Burning Debuff\nDebuff deals Fire Damage per second equal to %1%%% of Ignite Damage per second"}}},stats={[1]="base_additional_burning_debuff_%_of_ignite_damage"}},[135]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Releases waves every %1% seconds"}}},stats={[1]="phys_cascade_trap_base_interval_duration_ms"}},[136]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Fire Damage"}}},stats={[1]="physical_damage_%_to_add_as_fire"}},[137]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Lightning Damage"}}},stats={[1]="physical_damage_%_to_add_as_lightning"}},[138]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage"}}},stats={[1]="physical_damage_+%"}},[139]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cooldown Recovery Speed for throwing Traps"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cooldown Recovery Speed for throwing Traps"}}},stats={[1]="placing_traps_cooldown_recovery_+%"}},[140]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Projectiles Pierce an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Projectiles Pierce %1% additional Targets"}}},stats={[1]="projectile_base_number_of_targets_to_pierce"}},[141]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Damage"}}},stats={[1]="projectile_damage_+%"}},[142]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Split towards %1% targets"}}},stats={[1]="projectile_number_to_split"}},[143]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Fork"}}},stats={[1]="projectiles_fork"}},[144]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Projectiles Return to you after hitting targets"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Projectiles Return to you at end of flight"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Projectiles Return to you"}}},stats={[1]="projectiles_return",[2]="projectiles_return_if_no_hit_object"}},[145]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1%%% of Damage from Hits is taken from the Buff before your Life or Energy Shield\nBuff can take %2% Damage"}}},stats={[1]="quick_guard_damage_absorbed_%",[2]="quick_guard_damage_absorb_limit"}},[146]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Fires an additional sequence of arrows"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Fires %1% additional sequences of arrows"}}},stats={[1]="rain_of_arrows_additional_sequences"}},[147]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy chance to Dodge"}}},stats={[1]="reduce_enemy_dodge_%"}},[148]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shock Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shock Duration on Enemies"}}},stats={[1]="shock_duration_+%"}},[149]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Converted to Fire Damage"}}},stats={[1]="skill_cold_damage_%_to_convert_to_fire"}},[150]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skill Effect Duration"}}},stats={[1]="skill_effect_duration_+%"}},[151]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Lightning Damage"}}},stats={[1]="skill_physical_damage_%_to_convert_to_lightning"}},[152]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage"}}},stats={[1]="spell_damage_+%"}},[153]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% maximum Beam Targets"}}},stats={[1]="static_strike_number_of_beam_targets"}},[154]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Trap Damage"}}},stats={[1]="support_trap_damage_+%_final"}},[155]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Fires %1% secondary Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Fires %1% secondary Projectiles"}}},stats={[1]="tornado_shot_num_of_secondary_projectiles"}},[156]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Damage"}}},stats={[1]="trap_damage_+%"}},[157]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap duration"}}},stats={[1]="trap_duration_+%"}},[158]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Throwing Speed"}}},stats={[1]="trap_throwing_speed_+%"}},[159]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Trigger Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Trigger Area of Effect"}}},stats={[1]="trap_trigger_radius_+%"}},[160]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spawns corpses with Level %1%"}}},stats={[1]="unearth_base_corpse_level"}},[161]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Strikes an Enemy every %1% second"},[2]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Strikes an Enemy every %1% seconds"}}},stats={[1]="vaal_storm_call_base_delay_ms"}},[162]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Consumes up to 1 corpse"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Consumes up to %1% corpses"}}},stats={[1]="volatile_dead_base_number_of_corpses_to_consume"}},[163]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum of %1% Orbs at a time"}}},stats={[1]="volatile_dead_max_cores_allowed"}},[164]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Weapons"}}},stats={[1]="weapon_elemental_damage_+%"}},["accuracy_rating"]=36,["accuracy_rating_+%"]=37,["active_skill_area_damage_+%_final"]=30,["active_skill_attack_damage_+%_final"]=13,["active_skill_attack_damage_+%_final_with_two_handed_weapon"]=38,["active_skill_attack_damage_final_permyriad"]=9,["active_skill_attack_speed_+%_final_with_two_handed_weapon"]=39,["active_skill_base_attack_damage_final_+permyriad"]=10,["active_skill_damage_+%_final"]=11,["active_skill_minion_damage_+%_final"]=15,["active_skill_minion_physical_damage_+%_final"]=16,["active_skill_physical_damage_+%_final"]=12,["active_skill_poison_duration_+%_final"]=40,["additional_base_critical_strike_chance"]=41,["additional_weapon_base_attack_time_ms"]=42,["additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency"]=43,["additive_mine_duration_modifiers_apply_to_buff_effect_duration"]=44,["always_freeze"]=57,["area_damage_+%"]=45,["area_of_effect_+%_while_dead"]=46,["attack_maximum_added_chaos_damage"]=47,["attack_maximum_added_cold_damage"]=48,["attack_maximum_added_fire_damage"]=49,["attack_maximum_added_lightning_damage"]=50,["attack_maximum_added_physical_damage"]=51,["attack_minimum_added_chaos_damage"]=47,["attack_minimum_added_cold_damage"]=48,["attack_minimum_added_fire_damage"]=49,["attack_minimum_added_lightning_damage"]=50,["attack_minimum_added_physical_damage"]=51,["attack_skills_additional_ballista_totems_allowed"]=34,["attack_speed_+%"]=52,["attack_speed_+%_granted_from_skill"]=53,["aura_effect_+%"]=23,["base_additional_burning_debuff_%_of_ignite_damage"]=134,["base_aura_area_of_effect_+%"]=54,["base_blade_vortex_hit_rate_ms"]=55,["base_buff_duration_ms_+_per_removable_endurance_charge"]=27,["base_cast_speed_+%"]=56,["base_chance_to_freeze_%"]=57,["base_chance_to_ignite_%"]=58,["base_chance_to_shock_%"]=59,["base_critical_strike_multiplier_+"]=60,["base_curse_duration_+%"]=61,["base_global_chance_to_knockback_%"]=62,["base_killed_monster_dropped_item_rarity_+%"]=63,["base_life_gain_per_target"]=64,["base_mana_cost_-%"]=65,["base_mine_detonation_time_ms"]=66,["base_number_of_additional_arrows"]=67,["base_number_of_champions_of_light_allowed"]=68,["base_number_of_golems_allowed"]=32,["base_number_of_raging_spirits_allowed"]=21,["base_number_of_relics_allowed"]=69,["base_number_of_skeletons_allowed"]=20,["base_number_of_spectres_allowed"]=19,["base_number_of_totems_allowed"]=35,["base_number_of_zombies_allowed"]=18,["base_physical_damage_%_to_convert_to_lightning"]=70,["base_poison_duration_+%"]=71,["base_projectile_speed_+%"]=72,["base_reduce_enemy_cold_resistance_%"]=73,["base_reduce_enemy_fire_resistance_%"]=74,["base_reduce_enemy_lightning_resistance_%"]=75,["base_secondary_skill_effect_duration"]=25,["base_sigil_repeat_frequency_ms"]=76,["base_skill_area_of_effect_+%"]=77,["base_skill_effect_duration"]=24,["base_spell_repeat_count"]=31,["base_stun_duration_+%"]=78,["base_use_life_in_place_of_mana"]=79,["berserk_base_rage_loss_per_second"]=80,["bladefall_blade_left_in_ground_for_every_X_volleys"]=81,["bladefall_number_of_volleys"]=82,["blades_left_in_ground_+%_final_if_not_hand_cast"]=83,["blind_duration_+%"]=84,["buff_duration_+%"]=28,["burn_damage_+%"]=85,["chance_to_fortify_on_melee_hit_+%"]=86,["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=87,["chaos_damage_+%"]=88,["chill_duration_+%"]=89,["chill_effect_+%"]=90,["cleave_damage_+%_final_while_dual_wielding"]=14,["cold_damage_%_to_add_as_fire"]=91,["cold_damage_+%"]=92,["corpse_erruption_base_maximum_number_of_geyers"]=93,["critical_strike_chance_+%"]=94,["damage_+%"]=96,["damage_+%_vs_frozen_enemies"]=97,["damage_over_time_+%"]=95,["display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed"]=98,["display_minion_base_maximum_life"]=29,["divine_tempest_base_number_of_nearby_enemies_to_zap"]=99,["elemental_damage_+%"]=100,["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=101,["fire_damage_+%"]=102,["fortify_duration_+%"]=103,["freeze_duration_+%"]=104,["global_chance_to_blind_on_hit_%"]=105,["global_maximum_added_chaos_damage"]=106,["global_maximum_added_cold_damage"]=107,["global_maximum_added_fire_damage"]=108,["global_maximum_added_lightning_damage"]=109,["global_maximum_added_physical_damage"]=110,["global_minimum_added_chaos_damage"]=106,["global_minimum_added_cold_damage"]=107,["global_minimum_added_fire_damage"]=108,["global_minimum_added_lightning_damage"]=109,["global_minimum_added_physical_damage"]=110,["global_reduce_enemy_block_%"]=111,["ignite_duration_+%"]=112,["is_ranged_attack_totem"]=33,["is_totem"]=33,["kinetic_wand_base_number_of_zig_zags"]=113,["knockback_distance_+%"]=114,["life_leech_from_any_damage_permyriad"]=115,["lightning_damage_+%"]=116,["lightning_tower_trap_base_interval_duration_ms"]=117,["mana_leech_from_any_damage_permyriad"]=118,["melee_damage_+%"]=119,["melee_damage_vs_bleeding_enemies_+%"]=120,["melee_physical_damage_+%"]=121,["mine_detonation_radius_+%"]=122,["mine_detonation_speed_+%"]=123,["mine_duration_+%"]=124,["mine_laying_speed_+%"]=125,["non_curse_aura_effect_+%"]=126,["number_of_additional_projectiles"]=127,["number_of_additional_remote_mines_allowed"]=129,["number_of_additional_traps_allowed"]=130,["number_of_additional_traps_to_throw"]=131,["number_of_animated_weapons_allowed"]=132,["number_of_chains"]=128,["number_of_totems_to_summon"]=33,["off_hand_base_weapon_attack_duration_ms"]=3,["off_hand_local_maximum_added_physical_damage"]=1,["off_hand_local_minimum_added_physical_damage"]=1,["off_hand_maximum_added_physical_damage_per_15_shield_armour_and_evasion_rating"]=2,["off_hand_minimum_added_physical_damage_per_15_shield_armour_and_evasion_rating"]=2,["offering_skill_effect_duration_per_corpse"]=26,["orb_of_storms_base_bolt_frequency_ms"]=133,parent="gem_stat_descriptions",["phys_cascade_trap_base_interval_duration_ms"]=135,["physical_damage_%_to_add_as_fire"]=136,["physical_damage_%_to_add_as_lightning"]=137,["physical_damage_+%"]=138,["physical_damage_+%_per_frenzy_charge"]=17,["placing_traps_cooldown_recovery_+%"]=139,["projectile_base_number_of_targets_to_pierce"]=140,["projectile_damage_+%"]=141,["projectile_number_to_split"]=142,["projectiles_fork"]=143,["projectiles_return"]=144,["projectiles_return_if_no_hit_object"]=144,["quick_guard_damage_absorb_limit"]=145,["quick_guard_damage_absorbed_%"]=145,["rain_of_arrows_additional_sequences"]=146,["reduce_enemy_dodge_%"]=147,["shock_duration_+%"]=148,["skill_cold_damage_%_to_convert_to_fire"]=149,["skill_effect_duration_+%"]=150,["skill_physical_damage_%_to_convert_to_lightning"]=151,["spell_damage_+%"]=152,["static_strike_number_of_beam_targets"]=153,["support_trap_damage_+%_final"]=154,["tornado_shot_num_of_secondary_projectiles"]=155,["trap_damage_+%"]=156,["trap_duration_+%"]=157,["trap_throwing_speed_+%"]=158,["trap_trigger_radius_+%"]=159,["unearth_base_corpse_level"]=160,["vaal_storm_call_base_delay_ms"]=161,["volatile_dead_base_number_of_corpses_to_consume"]=162,["volatile_dead_max_cores_allowed"]=163,["weapon_elemental_damage_+%"]=164} \ No newline at end of file diff --git a/Data/3_0/StatDescriptions/curse_skill_stat_descriptions.lua b/Data/3_0/StatDescriptions/curse_skill_stat_descriptions.lua index f298efc81..7143fdf35 100644 --- a/Data/3_0/StatDescriptions/curse_skill_stat_descriptions.lua +++ b/Data/3_0/StatDescriptions/curse_skill_stat_descriptions.lua @@ -1 +1 @@ -return {[1]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Curse lasts %1% seconds"}}},name="buff_duration",stats={[1]="buff_effect_duration"}},[2]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed Normal and Magic Enemies have %1%%% more Action Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed Normal and Magic Enemies have %1%%% less Action Speed"}}},name="action_speed_reduction",stats={[1]="temporal_chains_action_speed_+%_final"}},[3]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Other effects on Cursed enemies expire %1%%% faster"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextSlowTimeEffects"},limit={[1]={[1]="#",[2]=-1}},text="Other effects on Cursed enemies expire %1%%% slower"}}},name="buff_time_passed_reduction",stats={[1]="buff_time_passed_+%_other_than_temporal_chains"}},[4]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies have %1$+d%% to Elemental Resistances"}}},name="elemental_resist",stats={[1]="base_resist_all_elements_%"}},[5]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies have %1$+d%% to Fire Resistance"}}},name="fire_resist",stats={[1]="base_fire_damage_resistance_%"}},[6]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies have %1$+d%% to Cold Resistance"}}},name="cold_resist",stats={[1]="base_cold_damage_resistance_%"}},[7]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies have %1$+d%% to Lightning Resistance"}}},name="lightning_resist",stats={[1]="base_lightning_damage_resistance_%"}},[8]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies have %1$+d%% to Chaos Resistance"}}},name="chaos_resist",stats={[1]="base_chaos_damage_resistance_%"}},[9]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have %1$+d%% chance to be Frozen by Cold Damage"}}},name="chance_to_be_frozen",stats={[1]="chance_to_be_frozen_%"}},[10]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have %1$+d%% chance to be Ignited by Fire Damage"}}},name="chance_to_be_ignited",stats={[1]="chance_to_be_ignited_%"}},[11]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have %1$+d%% chance to be Shocked by Lightning Damage"}}},name="chance_to_be_shocked",stats={[1]="chance_to_be_shocked_%"}},[12]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% increased Flask Charges"}}},name="monster_flask_charges_incr",stats={[1]="monster_slain_flask_charges_granted_+%"}},[13]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% Life Leech when Hit by Attacks"}}},name="life_leeched_when_hit_by_attack",stats={[1]="life_leech_on_any_damage_when_hit_by_attack_permyriad"}},[14]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% Life Leech when Hit"}}},name="life_leeched_when_hit",stats={[1]="life_leech_on_any_damage_when_hit_permyriad"}},[15]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% Mana Leech when Hit by Attacks"}}},name="mana_leeched_when_hit_by_attack",stats={[1]="mana_leech_on_any_damage_when_hit_by_attack_permyriad"}},[16]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% Mana Leech when Hit"}}},name="mana_leeched_when_hit",stats={[1]="mana_leech_on_any_damage_when_hit_permyriad"}},[17]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have a %1%%% chance to grant an Endurance Charge when slain"}}},name="chance_to_grant_endurance_charge_on_death",stats={[1]="chance_to_grant_endurance_charge_on_death_%"}},[18]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have a %1%%% chance to grant a Frenzy Charge when slain"}}},name="chance_to_grant_frenzy_charge_on_death",stats={[1]="chance_to_grant_frenzy_charge_on_death_%"}},[19]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have a %1%%% chance to grant a Power Charge when slain"}}},name="chance_to_grant_power_charge_on_death",stats={[1]="chance_to_grant_power_charge_on_death_%"}},[20]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1%%% of Physical Damage dealt by Cursed Normal Enemies"}}},name="punishment_normal",stats={[1]="punishment_physical_damage_%_reflected_for_normal_monsters"}},[21]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1%%% of Physical Damage dealt by Cursed Magic Enemies"}}},name="punishment_magic",stats={[1]="punishment_physical_damage_%_reflected_for_magic_monsters"}},[22]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1%%% of Physical Damage dealt by Cursed Rare Enemies"}}},name="punishment_rare",stats={[1]="punishment_physical_damage_%_reflected_for_rare_monsters"}},[23]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1%%% of Physical Damage dealt by Cursed Unique Enemies"}}},name="punishment_unique",stats={[1]="punishment_physical_damage_%_reflected_for_unique_monsters"}},[24]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have %1%%% increased Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies have %1%%% reduced Accuracy Rating"}}},name="accuracy_rating_incr",stats={[1]="accuracy_rating_+%"}},[25]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies have %1%%% reduced Critical Strike Chance"}}},name="critical_strike_chance_incr",stats={[1]="critical_strike_chance_+%"}},[26]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies have %1$+d%% to Critical Strike Multiplier"}}},name="critical_strike_multiplier_incr",stats={[1]="base_critical_strike_multiplier_+"}},[27]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed Normal or Magic enemies deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed Normal or Magic enemies deal %1%%% less Damage"}}},name="enfeeble_damage_scale",stats={[1]="enfeeble_damage_+%_final"}},[28]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Hits against Cursed Enemies have %1$+d%% to Critical Strike Chance"}}},name="chance_to_take_critical_strike",stats={[1]="enemy_additional_critical_strike_chance_against_self"}},[29]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies take %1%%% reduced Extra Damage from Critical Strikes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies take %1%%% increased Extra Damage from Critical Strikes"}}},name="self_critical_strike_multiplier_reduction",stats={[1]="base_self_critical_strike_multiplier_-%"}},[30]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Pierce Cursed Enemies"}}},name="be_pierced",stats={[1]="projectiles_always_pierce_you"}},[31]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Hits on Cursed Enemies have an additional %1%%% chance to Knockback"}}},name="chance_to_be_knocked_back",stats={[1]="chance_to_be_knocked_back_%"}},[32]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have %1%%% more Evasion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies have %1%%% less Evasion"}}},name="evasion_rating_poachers_mark",stats={[1]="evasion_rating_+%_final_from_poachers_mark"}},[33]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies take %1%%% increased Damage from Projectile Hits"}}},name="projectile_damage_taken_incr",stats={[1]="projectile_damage_taken_+%"}},[34]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have an additional %1%%% chance to be Stunned"}}},name="chance_to_be_stunned",stats={[1]="chance_to_be_stunned_%"}},[35]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have %1%%% increased Stun and Block Recovery"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies have %1%%% reduced Stun and Block Recovery"}}},name="stun_recovery_incr",stats={[1]="base_stun_recovery_+%"}},[36]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies take %1%%% increased Physical Damage"}}},name="physical_damage_taken_incr",stats={[1]="physical_damage_taken_+%"}},[37]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies take %1%%% increased Damage from Damage Over Time effects"}}},name="degen_effect_incr",stats={[1]="degen_effect_+%"}},[38]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ignite on Cursed enemies has %1%%% reduced Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ignite on Cursed enemies has %1%%% increased Duration"}}},name="self_burn_duration",stats={[1]="base_self_ignite_duration_-%"}},[39]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Freezes on Cursed enemies have %1%%% reduced Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Freezes on Cursed enemies have %1%%% increased Duration"}}},name="self_freeze_duration",stats={[1]="base_self_freeze_duration_-%"}},[40]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shocks on Cursed enemies have %1%%% reduced Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shocks on Cursed enemies have %1%%% increased Duration"}}},name="self_shock_duration",stats={[1]="base_self_shock_duration_-%"}},[41]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot Cast this Curse directly"}}},name="cannot_cast_curses",stats={[1]="cannot_cast_curses"}},[42]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies grant %1% Life when Hit by Attacks"}}},name="life_granted_when_hit",stats={[1]="life_granted_when_hit_by_attacks"}},[43]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies grant %1% Mana when Hit by Attacks"}}},name="mana_granted_when_hit",stats={[1]="mana_granted_when_hit_by_attacks"}},[44]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies grant %1% Life when Killed"}}},name="life_granted_when_killed",stats={[1]="life_granted_when_killed"}},[45]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies grant %1% Mana when Killed"}}},name="mana_granted_when_killed",stats={[1]="mana_granted_when_killed"}},[46]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect of Curses"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect of Curses"}}},name="curse_area",stats={[1]="curse_area_of_effect_+%"}},[47]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Curse is Cast as an Aura applying to nearby Enemies"}}},name="curse_aura",stats={[1]="curse_apply_as_aura"}},[48]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies have %1$+d%% to Physical Damage Reduction"}}},name="phys_reduction",stats={[1]="base_additional_physical_damage_reduction_%"}},[49]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]="#"}},text="Cursed Enemies have %1%%% chance to be Maimed for 4 seconds when Hit by Attacks"}}},name="maim_when_hit_chance",stats={[1]="chance_to_be_maimed_when_hit_%"}},[50]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% Energy Shield Leech when Hit"}}},name="energy_shield_leeched_when_hit",stats={[1]="energy_shield_leech_on_any_damage_when_hit_permyriad"}},[51]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed Rare or Unique enemies deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed Rare or Unique enemies deal %1%%% less Damage"}}},name="enfeeble_damage_scale_rare_or_unique",stats={[1]="enfeeble_damage_+%_vs_rare_or_unique_final"}},[52]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage to Hits against Cursed Enemies"}}},name="chaos_weakness_damage",stats={[1]="minimum_added_chaos_damage_taken",[2]="maximum_added_chaos_damage_taken"}},[53]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies take %1%%% increased Physical Damage from Damage Over Time"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies take %1%%% increased Physical Damage from Damage Over Time"}}},name="physical_dot_taken_incr",stats={[1]="base_physical_damage_over_time_taken_+%"}},[54]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]="#"}},text="Cursed Enemies have %1%%% chance to Bleed when Hit by Attacks"}}},name="bleed_when_hit_chance",stats={[1]="receive_bleeding_chance_%_when_hit_by_attack"}},[55]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed Rare and Unique Enemies have %1%%% more Action Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed Rare and Unique Enemies have %1%%% less Action Speed"}}},name="action_speed_reduction_rare_or_unique",stats={[1]="temporal_chains_action_speed_+%_vs_rare_or_unique_final"}},["accuracy_rating_+%"]=24,["base_additional_physical_damage_reduction_%"]=48,["base_chaos_damage_resistance_%"]=8,["base_cold_damage_resistance_%"]=6,["base_critical_strike_multiplier_+"]=26,["base_fire_damage_resistance_%"]=5,["base_lightning_damage_resistance_%"]=7,["base_physical_damage_over_time_taken_+%"]=53,["base_resist_all_elements_%"]=4,["base_self_critical_strike_multiplier_-%"]=29,["base_self_freeze_duration_-%"]=39,["base_self_ignite_duration_-%"]=38,["base_self_shock_duration_-%"]=40,["base_stun_recovery_+%"]=35,["buff_effect_duration"]=1,["buff_time_passed_+%_other_than_temporal_chains"]=3,["cannot_cast_curses"]=41,["chance_to_be_frozen_%"]=9,["chance_to_be_ignited_%"]=10,["chance_to_be_knocked_back_%"]=31,["chance_to_be_maimed_when_hit_%"]=49,["chance_to_be_shocked_%"]=11,["chance_to_be_stunned_%"]=34,["chance_to_grant_endurance_charge_on_death_%"]=17,["chance_to_grant_frenzy_charge_on_death_%"]=18,["chance_to_grant_power_charge_on_death_%"]=19,["critical_strike_chance_+%"]=25,["curse_apply_as_aura"]=47,["curse_area_of_effect_+%"]=46,["degen_effect_+%"]=37,["enemy_additional_critical_strike_chance_against_self"]=28,["energy_shield_leech_on_any_damage_when_hit_permyriad"]=50,["enfeeble_damage_+%_final"]=27,["enfeeble_damage_+%_vs_rare_or_unique_final"]=51,["evasion_rating_+%_final_from_poachers_mark"]=32,["life_granted_when_hit_by_attacks"]=42,["life_granted_when_killed"]=44,["life_leech_on_any_damage_when_hit_by_attack_permyriad"]=13,["life_leech_on_any_damage_when_hit_permyriad"]=14,["mana_granted_when_hit_by_attacks"]=43,["mana_granted_when_killed"]=45,["mana_leech_on_any_damage_when_hit_by_attack_permyriad"]=15,["mana_leech_on_any_damage_when_hit_permyriad"]=16,["maximum_added_chaos_damage_taken"]=52,["minimum_added_chaos_damage_taken"]=52,["monster_slain_flask_charges_granted_+%"]=12,parent="skill_stat_descriptions",["physical_damage_taken_+%"]=36,["projectile_damage_taken_+%"]=33,["projectiles_always_pierce_you"]=30,["punishment_physical_damage_%_reflected_for_magic_monsters"]=21,["punishment_physical_damage_%_reflected_for_normal_monsters"]=20,["punishment_physical_damage_%_reflected_for_rare_monsters"]=22,["punishment_physical_damage_%_reflected_for_unique_monsters"]=23,["receive_bleeding_chance_%_when_hit_by_attack"]=54,["temporal_chains_action_speed_+%_final"]=2,["temporal_chains_action_speed_+%_vs_rare_or_unique_final"]=55} \ No newline at end of file +return {[1]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Curse lasts %1% seconds"}}},name="buff_duration",stats={[1]="buff_effect_duration"}},[2]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed Normal and Magic Enemies have %1%%% more Action Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed Normal and Magic Enemies have %1%%% less Action Speed"}}},name="action_speed_reduction",stats={[1]="temporal_chains_action_speed_+%_final"}},[3]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Other effects on Cursed enemies expire %1%%% faster"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextSlowTimeEffects"},limit={[1]={[1]="#",[2]=-1}},text="Other effects on Cursed enemies expire %1%%% slower"}}},name="buff_time_passed_reduction",stats={[1]="buff_time_passed_+%_other_than_temporal_chains"}},[4]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies have %1$+d%% to Elemental Resistances"}}},name="elemental_resist",stats={[1]="base_resist_all_elements_%"}},[5]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies have %1$+d%% to Fire Resistance"}}},name="fire_resist",stats={[1]="base_fire_damage_resistance_%"}},[6]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies have %1$+d%% to Cold Resistance"}}},name="cold_resist",stats={[1]="base_cold_damage_resistance_%"}},[7]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies have %1$+d%% to Lightning Resistance"}}},name="lightning_resist",stats={[1]="base_lightning_damage_resistance_%"}},[8]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies have %1$+d%% to Chaos Resistance"}}},name="chaos_res",stats={[1]="base_chaos_damage_resistance_%"}},[9]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have %1$+d%% chance to be Frozen by Cold Damage"}}},name="chance_to_be_frozen",stats={[1]="chance_to_be_frozen_%"}},[10]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have %1$+d%% chance to be Ignited by Fire Damage"}}},name="chance_to_be_ignited",stats={[1]="chance_to_be_ignited_%"}},[11]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have %1$+d%% chance to be Shocked by Lightning Damage"}}},name="chance_to_be_shocked",stats={[1]="chance_to_be_shocked_%"}},[12]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% increased Flask Charges"}}},name="monster_flask_charges_incr",stats={[1]="monster_slain_flask_charges_granted_+%"}},[13]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% Life Leech when Hit by Attacks"}}},name="life_leeched_when_hit_by_attack",stats={[1]="life_leech_on_any_damage_when_hit_by_attack_permyriad"}},[14]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% Life Leech when Hit"}}},name="life_leeched_when_hit",stats={[1]="life_leech_on_any_damage_when_hit_permyriad"}},[15]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% Mana Leech when Hit by Attacks"}}},name="mana_leeched_when_hit_by_attack",stats={[1]="mana_leech_on_any_damage_when_hit_by_attack_permyriad"}},[16]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% Mana Leech when Hit"}}},name="mana_leeched_when_hit",stats={[1]="mana_leech_on_any_damage_when_hit_permyriad"}},[17]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have a %1%%% chance to grant an Endurance Charge when slain"}}},name="chance_to_grant_endurance_charge_on_death",stats={[1]="chance_to_grant_endurance_charge_on_death_%"}},[18]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have a %1%%% chance to grant a Frenzy Charge when slain"}}},name="chance_to_grant_frenzy_charge_on_death",stats={[1]="chance_to_grant_frenzy_charge_on_death_%"}},[19]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have a %1%%% chance to grant a Power Charge when slain"}}},name="chance_to_grant_power_charge_on_death",stats={[1]="chance_to_grant_power_charge_on_death_%"}},[20]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1%%% of Physical Damage dealt by Cursed Normal Enemies"}}},name="punishment_normal",stats={[1]="punishment_physical_damage_%_reflected_for_normal_monsters"}},[21]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1%%% of Physical Damage dealt by Cursed Magic Enemies"}}},name="punishment_magic",stats={[1]="punishment_physical_damage_%_reflected_for_magic_monsters"}},[22]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1%%% of Physical Damage dealt by Cursed Rare Enemies"}}},name="punishment_rare",stats={[1]="punishment_physical_damage_%_reflected_for_rare_monsters"}},[23]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1%%% of Physical Damage dealt by Cursed Unique Enemies"}}},name="punishment_unique",stats={[1]="punishment_physical_damage_%_reflected_for_unique_monsters"}},[24]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have %1%%% increased Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies have %1%%% reduced Accuracy Rating"}}},name="accuracy_rating_incr",stats={[1]="accuracy_rating_+%"}},[25]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies have %1%%% reduced Critical Strike Chance"}}},name="critical_strike_chance_incr",stats={[1]="critical_strike_chance_+%"}},[26]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies have %1$+d%% to Critical Strike Multiplier"}}},name="critical_strike_multiplier_incr",stats={[1]="base_critical_strike_multiplier_+"}},[27]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed Normal or Magic enemies deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed Normal or Magic enemies deal %1%%% less Damage"}}},name="enfeeble_damage_scale",stats={[1]="enfeeble_damage_+%_final"}},[28]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Hits against Cursed Enemies have %1$+d%% to Critical Strike Chance"}}},name="chance_to_take_critical_strike",stats={[1]="enemy_additional_critical_strike_chance_against_self"}},[29]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies take %1%%% reduced Extra Damage from Critical Strikes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies take %1%%% increased Extra Damage from Critical Strikes"}}},name="self_critical_strike_multiplier_reduction",stats={[1]="base_self_critical_strike_multiplier_-%"}},[30]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Pierce Cursed Enemies"}}},name="be_pierced",stats={[1]="projectiles_always_pierce_you"}},[31]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Hits on Cursed Enemies have an additional %1%%% chance to Knockback"}}},name="chance_to_be_knocked_back",stats={[1]="chance_to_be_knocked_back_%"}},[32]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have %1%%% more Evasion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies have %1%%% less Evasion"}}},name="evasion_rating_poachers_mark",stats={[1]="evasion_rating_+%_final_from_poachers_mark"}},[33]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies take %1%%% increased Damage from Projectile Hits"}}},name="projectile_damage_taken_incr",stats={[1]="projectile_damage_taken_+%"}},[34]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have an additional %1%%% chance to be Stunned"}}},name="chance_to_be_stunned",stats={[1]="chance_to_be_stunned_%"}},[35]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies have %1%%% increased Stun and Block Recovery"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies have %1%%% reduced Stun and Block Recovery"}}},name="stun_recovery_incr",stats={[1]="base_stun_recovery_+%"}},[36]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies take %1%%% increased Physical Damage"}}},name="physical_damage_taken_incr",stats={[1]="physical_damage_taken_+%"}},[37]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies take %1%%% increased Damage from Damage Over Time effects"}}},name="degen_effect_incr",stats={[1]="degen_effect_+%"}},[38]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ignite on Cursed enemies has %1%%% reduced Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ignite on Cursed enemies has %1%%% increased Duration"}}},name="self_burn_duration",stats={[1]="base_self_ignite_duration_-%"}},[39]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Freezes on Cursed enemies have %1%%% reduced Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Freezes on Cursed enemies have %1%%% increased Duration"}}},name="self_freeze_duration",stats={[1]="base_self_freeze_duration_-%"}},[40]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shocks on Cursed enemies have %1%%% reduced Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shocks on Cursed enemies have %1%%% increased Duration"}}},name="self_shock_duration",stats={[1]="base_self_shock_duration_-%"}},[41]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot Cast this Curse directly"}}},name="cannot_cast_curses",stats={[1]="cannot_cast_curses"}},[42]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies grant %1% Life when Hit by Attacks"}}},name="life_granted_when_hit",stats={[1]="life_granted_when_hit_by_attacks"}},[43]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies grant %1% Mana when Hit by Attacks"}}},name="mana_granted_when_hit",stats={[1]="mana_granted_when_hit_by_attacks"}},[44]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies grant %1% Life when Killed"}}},name="life_granted_when_killed",stats={[1]="life_granted_when_killed"}},[45]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies grant %1% Mana when Killed"}}},name="mana_granted_when_killed",stats={[1]="mana_granted_when_killed"}},[46]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect of Curses"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect of Curses"}}},name="curse_area",stats={[1]="curse_area_of_effect_+%"}},[47]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Curse is Cast as an Aura applying to nearby Enemies"}}},name="curse_aura",stats={[1]="curse_apply_as_aura"}},[48]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed enemies have %1$+d%% to Physical Damage Reduction"}}},name="phys_reduction",stats={[1]="base_additional_physical_damage_reduction_%"}},[49]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]="#"}},text="Attack Hits have %1%%% chance to Maim Cursed Enemies for 4 seconds"}}},name="maim_when_hit_chance",stats={[1]="chance_to_be_maimed_when_hit_%"}},[50]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% Energy Shield Leech when Hit"}}},name="energy_shield_leeched_when_hit",stats={[1]="energy_shield_leech_on_any_damage_when_hit_permyriad"}},[51]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed Rare or Unique enemies deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed Rare or Unique enemies deal %1%%% less Damage"}}},name="enfeeble_damage_scale_rare_or_unique",stats={[1]="enfeeble_damage_+%_vs_rare_or_unique_final"}},[52]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage to Hits against Cursed Enemies"}}},name="chaos_weakness_damage",stats={[1]="minimum_added_chaos_damage_taken",[2]="maximum_added_chaos_damage_taken"}},[53]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies take %1%%% increased Physical Damage from Damage Over Time"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies take %1%%% increased Physical Damage from Damage Over Time"}}},name="physical_dot_taken_incr",stats={[1]="base_physical_damage_over_time_taken_+%"}},[54]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]="#"}},text="Cursed Enemies have %1%%% chance to Bleed when Hit by Attacks"}}},name="bleed_when_hit_chance",stats={[1]="receive_bleeding_chance_%_when_hit_by_attack"}},[55]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed Rare and Unique Enemies have %1%%% more Action Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed Rare and Unique Enemies have %1%%% less Action Speed"}}},name="action_speed_reduction_rare_or_unique",stats={[1]="temporal_chains_action_speed_+%_vs_rare_or_unique_final"}},["accuracy_rating_+%"]=24,["base_additional_physical_damage_reduction_%"]=48,["base_chaos_damage_resistance_%"]=8,["base_cold_damage_resistance_%"]=6,["base_critical_strike_multiplier_+"]=26,["base_fire_damage_resistance_%"]=5,["base_lightning_damage_resistance_%"]=7,["base_physical_damage_over_time_taken_+%"]=53,["base_resist_all_elements_%"]=4,["base_self_critical_strike_multiplier_-%"]=29,["base_self_freeze_duration_-%"]=39,["base_self_ignite_duration_-%"]=38,["base_self_shock_duration_-%"]=40,["base_stun_recovery_+%"]=35,["buff_effect_duration"]=1,["buff_time_passed_+%_other_than_temporal_chains"]=3,["cannot_cast_curses"]=41,["chance_to_be_frozen_%"]=9,["chance_to_be_ignited_%"]=10,["chance_to_be_knocked_back_%"]=31,["chance_to_be_maimed_when_hit_%"]=49,["chance_to_be_shocked_%"]=11,["chance_to_be_stunned_%"]=34,["chance_to_grant_endurance_charge_on_death_%"]=17,["chance_to_grant_frenzy_charge_on_death_%"]=18,["chance_to_grant_power_charge_on_death_%"]=19,["critical_strike_chance_+%"]=25,["curse_apply_as_aura"]=47,["curse_area_of_effect_+%"]=46,["degen_effect_+%"]=37,["enemy_additional_critical_strike_chance_against_self"]=28,["energy_shield_leech_on_any_damage_when_hit_permyriad"]=50,["enfeeble_damage_+%_final"]=27,["enfeeble_damage_+%_vs_rare_or_unique_final"]=51,["evasion_rating_+%_final_from_poachers_mark"]=32,["life_granted_when_hit_by_attacks"]=42,["life_granted_when_killed"]=44,["life_leech_on_any_damage_when_hit_by_attack_permyriad"]=13,["life_leech_on_any_damage_when_hit_permyriad"]=14,["mana_granted_when_hit_by_attacks"]=43,["mana_granted_when_killed"]=45,["mana_leech_on_any_damage_when_hit_by_attack_permyriad"]=15,["mana_leech_on_any_damage_when_hit_permyriad"]=16,["maximum_added_chaos_damage_taken"]=52,["minimum_added_chaos_damage_taken"]=52,["monster_slain_flask_charges_granted_+%"]=12,parent="skill_stat_descriptions",["physical_damage_taken_+%"]=36,["projectile_damage_taken_+%"]=33,["projectiles_always_pierce_you"]=30,["punishment_physical_damage_%_reflected_for_magic_monsters"]=21,["punishment_physical_damage_%_reflected_for_normal_monsters"]=20,["punishment_physical_damage_%_reflected_for_rare_monsters"]=22,["punishment_physical_damage_%_reflected_for_unique_monsters"]=23,["receive_bleeding_chance_%_when_hit_by_attack"]=54,["temporal_chains_action_speed_+%_final"]=2,["temporal_chains_action_speed_+%_vs_rare_or_unique_final"]=55} \ No newline at end of file diff --git a/Data/3_0/StatDescriptions/gem_stat_descriptions.lua b/Data/3_0/StatDescriptions/gem_stat_descriptions.lua index dfd324eaf..91f7bbe7b 100644 --- a/Data/3_0/StatDescriptions/gem_stat_descriptions.lua +++ b/Data/3_0/StatDescriptions/gem_stat_descriptions.lua @@ -1 +1 @@ -return {[1]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Melee Physical Damage"}}},stats={[1]="support_melee_physical_damage_+%_final"}},[2]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Bleeding and Poison caused by Melee Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Bleeding and Poison caused by Melee Hits"}}},stats={[1]="support_melee_physical_damage_poison_and_bleeding_damage_+%_final_from_melee_hits"}},[3]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Curses are Cast as Auras"}}},stats={[1]="curse_apply_as_aura"}},[4]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_echo_damage_+%_final"}},[5]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_elemental_proliferation_damage_+%_final"}},[6]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Using Supported Skills is Instant"}}},stats={[1]="base_skill_is_instant"}},[7]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Attack Skills deal %1%%% more Damage while on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Attack Skills deal %1%%% less Damage while on Full Life"}}},stats={[1]="support_damage_while_on_full_life_+%_final"}},[8]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Attack Skills deal %1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Attack Skills deal %1%%% less Elemental Damage"}}},stats={[1]="support_attack_skills_elemental_damage_+%_final"}},[9]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Weapon Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Weapon Elemental Damage"}}},stats={[1]="support_weapon_elemental_damage_+%_final"}},[10]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Area Damage"}}},stats={[1]="support_area_concentrate_area_damage_+%_final"}},[11]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_barrage_damage_+%_final"}},[12]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_multiple_projectile_damage_+%_final"}},[13]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_rain_projectile_damage_+%_final"}},[14]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_lesser_multiple_projectile_damage_+%_final"}},[15]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_gem_mine_damage_+%_final"}},[16]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_totem_damage_+%_final"}},[17]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Spells deal %1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Spells deal %1%%% reduced Spell Damage"}}},stats={[1]="triggered_spell_spell_damage_+%"}},[18]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Spell Damage"}}},stats={[1]="support_cast_on_crit_spell_damage_+%_final"}},[19]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Spells have %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Spells have %1%%% less Spell Damage"}}},stats={[1]="support_cast_on_melee_kill_spell_damage_+%_final"}},[20]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Triggered Spells deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Triggered Spells deal %1%%% less Damage"}}},stats={[1]="support_cast_while_channelling_triggered_skill_damage_+%_final"}},[21]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% reduced Mana Cost"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% increased Mana Cost"}}},stats={[1]="base_mana_cost_-%"}},[22]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Strike Skills target %1% additional nearby Enemy"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Supported Strike Skills target %1% additional nearby Enemies"}}},stats={[1]="melee_attack_number_of_spirit_strikes"}},[23]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra Targets for Supported Skills can be found %1%%% further away"}}},stats={[1]="extra_target_targeting_distance_+%"}},[24]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Area of Effect"}}},stats={[1]="base_skill_area_of_effect_+%"}},[25]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Area of Effect"}}},stats={[1]="support_concentrated_effect_skill_area_of_effect_+%_final"}},[26]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Area of Effect while Dead"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Area of Effect while Dead"}}},stats={[1]="area_of_effect_+%_while_dead"}},[27]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Aura Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Aura Area of Effect"}}},stats={[1]="base_aura_area_of_effect_+%"}},[28]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Aura effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Aura effect"}}},stats={[1]="aura_effect_+%"}},[29]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Critical Strike Chance"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Critical Strike Chance"}}},stats={[1]="support_multiple_projectiles_critical_strike_chance_+%_final"}},[30]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills Spend Life instead of Mana"}}},stats={[1]="base_use_life_in_place_of_mana"}},[31]={lang={English={[1]={limit={[1]={[1]=0,[2]=0}},text="Supported Skills fire a Payload Arrow into the air\nProjectiles from the Supported Skill Fire from where the Payload Arrow lands"}}},stats={[1]="projectiles_rain"}},[32]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignites caused by Supported Skills spread to other Enemies within a Radius of %1%"}}},stats={[1]="support_ignite_proliferation_radius"}},[33]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Supported Skills Fire Projectiles in random directions"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Supported Skills Fire Projectiles in a spiral"},[3]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Supported Skills Fire Projectiles in a spiral"},[4]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Supported Skills Fire Projectiles in a circle"},[5]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Supported Skills Fire Projectiles sequentially"}}},stats={[1]="power_siphon_fire_at_all_targets",[2]="total_number_of_projectiles_to_fire",[3]="total_number_of_arrows_to_fire",[4]="base_number_of_projectiles_in_spiral_nova",[5]="projectile_spiral_nova_angle",[6]="projectiles_nova",[7]="projectiles_barrage",[8]="rain_of_arrows_sequences_to_fire"}},[34]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Elemental Ailments caused by Supported Skills spread to other enemies in a Radius of %1%"}}},stats={[1]="elemental_status_effect_aura_radius"}},[35]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Kill Enemies that have 10%% Life or lower when Hit by Supported Skills"}}},stats={[1]="kill_enemy_on_hit_if_under_10%_life"}},[36]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills' Projectile Attack Hits deal up to 30%% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther"}}},stats={[1]="keystone_point_blank"}},[37]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strength's damage bonus applies to Projectile Attacks made with Supported Skills"}}},stats={[1]="keystone_strong_bowman"}},[38]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strength's damage bonus applies to Spell Damage as well for Supported Skills"}}},stats={[1]="strong_casting"}},[39]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]=1}},text="Throws a Remote Mine which uses the Supported Skill when detonated"},[2]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=2,[2]="#"}},text="Throws %2% Remote Mines which use the Supported Skill when detonated"}}},stats={[1]="is_remote_mine",[2]="number_of_mines_to_place"}},[40]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Skills throw up to 1 additional Trap"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills throw up to %1% additional Traps"}}},stats={[1]="number_of_additional_traps_to_throw"}},[41]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to throw up to 1 additional Trap or Mine"}}},stats={[1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine"}},[42]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to throw up to 2 additional Traps or Mines"}}},stats={[1]="support_additional_trap_mine_%_chance_for_2_additional_trap_mine"}},[43]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to throw up to 3 additional Traps or Mines"}}},stats={[1]="support_additional_trap_mine_%_chance_for_3_additional_trap_mine"}},[44]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=1},[3]={[1]=0,[2]=0}},text="Supported Skills will summon a Totem which uses that Skill"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=1},[3]={[1]=0,[2]=0}},text="Supported Skills will summon a Ballista Totem which uses that Skill"},[3]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0}},text="Supported Skills will summon %1% Totems which use that Skill"},[4]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0}},text="Supported Skills will summon %1% Ballista Totems which use that Skill"}}},stats={[1]="is_totem",[2]="number_of_totems_to_summon",[3]="is_ranged_attack_totem"}},[45]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Totem lasts %1% seconds"}}},stats={[1]="base_totem_duration"}},[46]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Projectiles from Supported Skills Pierce an additional Targets"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Projectiles from Supported Skills Pierce %1% additional Targets"}}},stats={[1]="projectile_base_number_of_targets_to_pierce"}},[47]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Trap lasts %1% seconds"}}},stats={[1]="base_trap_duration"}},[48]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Mine lasts %1% seconds"}}},stats={[1]="base_mine_duration"}},[49]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Mine lasts %1% seconds"}}},stats={[1]="support_remote_mine_2_base_mine_duration"}},[50]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d to maximum number of Summoned Ballista Totems"}}},stats={[1]="attack_skills_additional_ballista_totems_allowed"}},[51]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d to maximum number of Summoned Totems"}}},stats={[1]="base_number_of_totems_allowed"}},[52]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills Summon two Totems instead of one"}}},stats={[1]="summon_2_totems"}},[53]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% Trap placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Traps placed at a time"}}},stats={[1]="base_number_of_traps_allowed"}},[54]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% Remote Mine placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Remote Mines placed at a time"}}},stats={[1]="base_number_of_remote_mines_allowed"}},[55]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced duration"}}},stats={[1]="trap_duration_+%"}},[56]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced duration"}}},stats={[1]="mine_duration_+%"}},[57]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to Blind enemies on hit"}}},stats={[1]="global_chance_to_blind_on_hit_%"}},[58]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Blinding duration"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Blinding duration"}}},stats={[1]="blind_duration_+%"}},[59]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Critical Strike Chance"}}},stats={[1]="critical_strike_chance_+%"}},[60]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="base_critical_strike_multiplier_+"}},[61]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills Penetrate %1%%% Fire Resistance"}}},stats={[1]="base_reduce_enemy_fire_resistance_%"}},[62]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills Penetrate %1%%% Cold Resistance"}}},stats={[1]="base_reduce_enemy_cold_resistance_%"}},[63]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills Penetrate %1%%% Elemental Resistances"}}},stats={[1]="reduce_enemy_elemental_resistance_%"}},[64]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills Penetrate %1%%% Lightning Resistance"}}},stats={[1]="base_reduce_enemy_lightning_resistance_%"}},[65]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills Chain %1$+d times"}}},stats={[1]="number_of_chains"}},[66]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles freom Supported Skills Split towards %1% targets"}}},stats={[1]="projectile_number_to_split"}},[67]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles from Supported Skills Fork"}}},stats={[1]="projectiles_fork"}},[68]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Projectiles from Supported Skills Fork an additional Time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles from Supported Skills Fork %1% additional Times"}}},stats={[1]="number_of_additional_forks_base"}},[69]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Projectiles from Supported Skills Return to you after hitting targets"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Projectiles from Supported Skills Return to you at end of flight"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Projectiles from Supported Skills Return to you"}}},stats={[1]="projectiles_return",[2]="projectiles_return_if_no_hit_object"}},[70]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Hits"}}},stats={[1]="support_chain_hit_damage_+%_final"}},[71]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_spirit_strike_damage_+%_final"}},[72]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_split_projectile_damage_+%_final"}},[73]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_fork_projectile_damage_+%_final"}},[74]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills deal %1%%% more Damage with Hits for each Poison on the Enemy, up to %2%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1},[2]={[1]="#",[2]="#"}},text="Supported Skills deal %1%%% less Damage with Hits for each Poison on the Enemy, up to %2%"}}},stats={[1]="support_debilitate_hit_damage_+%_final_per_poison_stack",[2]="support_debilitate_hit_damage_max_poison_stacks"}},[75]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Poison"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Poison"}}},stats={[1]="support_debilitate_poison_damage_+%_final"}},[76]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Poison"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Poison"}}},stats={[1]="support_poison_poison_damage_+%_final"}},[77]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_return_projectile_damage_+%_final"}},[78]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Chaos Damage"}}},stats={[1]="support_void_manipulation_chaos_damage_+%_final"}},[79]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Spell Damage"}}},stats={[1]="support_controlled_destruction_spell_damage_+%_final"}},[80]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Spell Damage"}}},stats={[1]="support_efficacy_spell_damage_+%_final"}},[81]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage over Time"}}},stats={[1]="support_rapid_decay_damage_over_time_+%_final"}},[82]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage over Time"}}},stats={[1]="support_efficacy_damage_over_time_+%_final"}},[83]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_additional_totem_damage_+%_final"}},[84]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Ailments"}}},stats={[1]="support_better_ailments_ailment_damage_+%_final"}},[85]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Hits"}}},stats={[1]="support_better_ailments_hit_damage_+%_final"}},[86]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Physical Damage"}}},stats={[1]="support_brutality_physical_damage_+%_final"}},[87]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Fire Damage"}}},stats={[1]="support_chance_to_ignite_fire_damage_+%_final"}},[88]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Elemental Damage"}}},stats={[1]="support_gem_elemental_damage_+%_final"}},[89]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Ignite"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Ignite"}}},stats={[1]="support_ignite_prolif_ignite_damage_+%_final"}},[90]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Physical Damage"}}},stats={[1]="support_maim_chance_physical_damage_+%_final"}},[91]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained for each enemy hit by Supported Attack"}}},stats={[1]="base_life_gain_per_target"}},[92]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage to main target"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage to main target"}}},stats={[1]="support_melee_splash_damage_+%_final"}},[93]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills deal Splash Damage to surrounding targets"}}},stats={[1]="melee_splash"}},[94]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage to surrounding targets"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage to surrounding targets"}}},stats={[1]="support_melee_splash_damage_+%_final_for_splash"}},[95]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills Repeat %1% additional times"}}},stats={[1]="base_melee_attack_repeat_count"}},[96]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Skills Repeat an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Supported Skills Repeat an additional %1% times"}}},stats={[1]="base_spell_repeat_count"}},[97]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Cast Speed"}}},stats={[1]="support_multicast_cast_speed_+%_final"}},[98]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Melee Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Melee Attack Speed"}}},stats={[1]="support_multiple_attacks_melee_attack_speed_+%_final"}},[99]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Attack Damage"}}},stats={[1]="support_multiple_attack_damage_+%_final"}},[100]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Trap Damage"}}},stats={[1]="support_trap_damage_+%_final"}},[101]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_multithrow_damage_+%_final"}},[102]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage while Dead"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage while Dead"}}},stats={[1]="cast_on_death_damage_+%_final_while_dead"}},[103]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="cast_on_damage_taken_damage_+%_final"}},[104]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems and Minions summoned by Supported Skills have %1$+d%% Fire Resistance"}}},stats={[1]="summon_fire_resistance_+"}},[105]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems and Minions summoned by Supported Skills have %1$+d%% Cold Resistance"}}},stats={[1]="summon_cold_resistance_+"}},[106]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems and Minions summoned by Supported Skills have %1$+d%% Lightning Resistance"}}},stats={[1]="summon_lightning_resistance_+"}},[107]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Supported Skills have a %1%%% chance to apply Supported Curses on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Supported Skills apply supported Curses on Hit"}}},stats={[1]="apply_linked_curses_on_hit_%"}},[108]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot Cast Supported Curses"}}},stats={[1]="cannot_cast_curses"}},[109]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Supported Attacks have a %1%%% chance to Trigger a Supported Spell when you Crit an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Supported Attacks will Trigger a Supported Spell when you Crit an Enemy"}}},stats={[1]="cast_linked_spells_on_attack_crit_%"}},[110]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Supported Melee Attacks have a %1%%% chance to Trigger a Supported Spell on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Supported Melee Attacks will Trigger a Supported Spell on Kill"}}},stats={[1]="cast_linked_spells_on_melee_kill_%"}},[111]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="You cannot Cast Supported Triggerable Spells directly"}}},stats={[1]="spell_uncastable_if_triggerable",[2]="spell_only_castable_on_death"}},[112]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Supported Non-Minion Spells on Death"}}},stats={[1]="cast_on_death_%"}},[113]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Supported Spells when you are Stunned, or\nBlock a Stunning Hit"}}},stats={[1]="cast_on_stunned_%"}},[114]={lang={English={[1]={limit={[1]={[1]=1,[2]=99},[2]={[1]=1,[2]="#"}},text="%1%%% chance to Trigger Supported Spells when you take a total of %2% Damage"},[2]={limit={[1]={[1]=100,[2]="#"},[2]={[1]=1,[2]="#"}},text="Trigger Supported Spells when you take a total of %2% Damage"}}},stats={[1]="cast_on_damage_taken_%",[2]="cast_on_damage_taken_threshold"}},[115]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Trigger a Supported Spell every %1% seconds while Channelling Supported Skills"}}},stats={[1]="cast_while_channelling_time_ms"}},[116]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Deals %1% Base Chaos Damage per second"}}},stats={[1]="base_chaos_damage_to_deal_per_minute"}},[117]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Deals %1% Base Fire Damage per second"}}},stats={[1]="base_fire_damage_to_deal_per_minute"}},[118]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Deals %1% Base Cold Damage per second"}}},stats={[1]="base_cold_damage_to_deal_per_minute"}},[119]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Supported Curses"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Supported Curses"}}},stats={[1]="curse_effect_+%"}},[120]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spells Cast by Totem have %1%%% more Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spells Cast by Totem have %1%%% less Cast Speed"}}},stats={[1]="support_spell_totem_cast_speed_+%_final"}},[121]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks used by Totem have %1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Attacks used by Totem have %1%%% less Attack Speed"}}},stats={[1]="support_attack_totem_attack_speed_+%_final"}},[122]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Causes Bleeding on Hit for %1% seconds"}}},stats={[1]="bleed_on_hit_base_duration"}},[123]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Auras do not affect you"}}},stats={[1]="aura_cannot_affect_self"}},[124]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Melee Physical Damage against Bleeding enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Melee Physical Damage against Bleeding enemies"}}},stats={[1]="support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"}},[125]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Projectile Speed"}}},stats={[1]="support_slower_projectiles_projectile_speed_+%_final"}},[126]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_reduced_duration_damage_+%_final"}},[127]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Skill Effect Duration"}}},stats={[1]="support_reduced_duration_skill_effect_duration_+%_final"}},[128]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]=99}},text="Supported Skills have a %1%%% chance to grant Elusive on Critical Strike"},[2]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=100,[2]="#"}},text="Supported Skills grant Elusive on Critical Strike"}}},stats={[1]="gain_elusive_on_crit_%_chance"}},[129]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills Poison Enemies on Hit"}}},stats={[1]="global_poison_on_hit"}},[130]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Supported Skills have %1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Supported Skills always Poison on Hit"}}},stats={[1]="base_chance_to_poison_on_hit_%"}},[131]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=1,[2]=99}},text="Supported Skills have %1%%% chance to inflict Withered on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=100,[2]="#"}},text="Supported Skills always inflict Withered on Hit"}}},stats={[1]="withered_on_hit_chance_%"}},[132]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills cannot inflict Elemental Ailments"}}},stats={[1]="cannot_inflict_status_ailments"}},[133]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies lose %1%%% Cold Resistance while Frozen"}}},stats={[1]="freeze_mine_cold_resistance_+_while_frozen"}},[134]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d%% to Critical Strike Multiplier while Elusive"}}},stats={[1]="critical_strike_multiplier_+_while_affected_by_elusive"}},[135]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain Arcane Surge after Spending a total of %1% Mana with Supported Skills"}}},stats={[1]="support_arcane_surge_gain_buff_on_mana_use_threshold"}},[136]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=3},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Arcane Surge grants %1%%% more Spell Damage\nArcane Surge grants %2%%% increased Cast Speed\nArcane Surge grants %3%%% of Mana Regenerated per second"}}},stats={[1]="support_arcane_surge_spell_damage_+%_final",[2]="support_arcane_surge_cast_speed_+%",[3]="support_arcane_surge_mana_regeneration_rate_per_minute_%"}},[137]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Arcane Surge lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Arcane Surge lasts %1% seconds"}}},stats={[1]="support_arcane_surge_base_duration_ms"}},[138]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Withered lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Withered lasts %1% seconds"}}},stats={[1]="support_withered_base_duration_ms"}},[139]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=1000,[2]=1000}},text="Withered lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]="#",[2]="#"}},text="Withered lasts %1% seconds"}}},stats={[1]="active_skill_withered_base_duration_ms"}},[140]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Arcane Surge lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Arcane Surge lasts %1% seconds"}}},stats={[1]="support_arcane_surge_duration_ms"}},[141]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Withered lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Withered lasts %1% seconds"}}},stats={[1]="support_withered_base_duration_ms"}},[142]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Arcane Surge lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Arcane Surge lasts %1% seconds"}}},stats={[1]="support_arcane_surge_base_duration_ms"}},[143]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain Innervation on Killing a Shocked Enemy with Supported Skills"}}},stats={[1]="support_innervate_gain_buff_on_killing_shocked_enemy"}},[144]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Innervation grants %1% to %2% Lightning Damage"}}},stats={[1]="support_innervate_minimum_added_lightning_damage",[2]="support_innervate_maximum_added_lightning_damage"}},[145]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Innervation lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Innervation lasts %1% seconds"}}},stats={[1]="support_innervate_buff_base_duration_ms"}},[146]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Every third Attack with Supported Melee Attacks deals a Ruthless Blow"}}},stats={[1]="support_ruthless_big_hit_max_count"}},[147]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ruthless Blows with Supported Skills deal %1%%% more Melee Damage"}}},stats={[1]="support_ruthless_big_hit_damage_+%_final"}},[148]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ruthless Blows with Supported Skills deal %1%%% more Damage with Bleeding caused by Melee Hits"}}},stats={[1]="support_ruthless_blow_bleeding_damage_from_melee_hits_+%_final"}},[149]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Ruthless Blows with Supported Skills have a base Stun Duration of %1% seconds"}}},stats={[1]="support_ruthless_big_hit_stun_base_duration_override_ms"}},[150]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Summon a Phantasm when Supported Skills, or Non-Phantasm Minions\nfrom Supported Skills, deal a Killing Blow"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon a Phantasm when Supported Skills, or Non-Phantasm Minions\nfrom Supported Skills, deal a Killing Blow"}}},stats={[1]="chance_to_summon_support_ghost_on_killing_blow_%"}},[151]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Effect of Chill on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Effect of Chill on Enemies"}}},stats={[1]="chill_effect_+%"}},[152]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Chill Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Chill Duration on Enemies"}}},stats={[1]="chill_duration_+%"}},[153]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]=1,[2]="#"}},text="Enemies Chilled by Supported Skills take %1%%% increased Cold Damage over Time"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]="#",[2]=-1}},text="Enemies Chilled by Supported Skills take %1%%% reduced Cold Damage over Time"}}},stats={[1]="support_chills_also_grant_cold_damage_taken_per_minute_+%"}},[154]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]="#",[2]="#"}},text="Enemies Chilled by Supported Skills have Cold Damage taken increased by Chill Effect"}}},stats={[1]="support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"}},[155]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]=1,[2]="#"}},text="Enemies in Chilling Areas from Supported Skills take %1%%% increased Cold Damage over Time"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]="#",[2]=-1}},text="Enemies in Chilling Areas from Supported Skills take %1%%% reduced Cold Damage over Time"}}},stats={[1]="support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"}},[156]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]="#",[2]="#"}},text="Enemies in Chilling Areas from Supported Skills have Cold Damage taken increased by Chill Effect"}}},stats={[1]="support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"}},[157]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Mine Throwing Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Mine Throwing Speed per Frenzy Charge"}}},stats={[1]="mine_throwing_speed_+%_per_frenzy_charge"}},[158]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Critical Strike Chance per\nPower Charge when used by Mines"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Critical Strike Chance per\nPower Charge when used by Mines"}}},stats={[1]="mine_critical_strike_chance_+%_per_power_charge"}},[159]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills have %1$+d%% to all Elemental Resistances"}}},stats={[1]="minion_elemental_resistance_%"}},[160]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills have %1$+d%% to all maximum Elemental Resistances"}}},stats={[1]="minion_maximum_all_elemental_resistances_%"}},[161]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills take %1%%% of their Maximum Life as Fire Damage per second"}}},stats={[1]="minion_fire_damage_%_of_maximum_life_taken_per_minute"}},[162]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills take %1%%% increased Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills take %1%%% reduced Fire Damage"}}},stats={[1]="minion_fire_damage_taken_+%"}},[163]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1% Fire Damage per second to Enemies near them"}}},stats={[1]="support_minion_instability_minion_base_fire_area_damage_per_minute"}},[164]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills have %1$+d to Radius of their Burning Effect"}}},stats={[1]="infernal_legion_minions_have_burning_effect_radius_+"}},[165]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d to Accuracy Rating"}}},stats={[1]="accuracy_rating"}},[166]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Accuracy Rating"}}},stats={[1]="accuracy_rating_+%"}},[167]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Supported Skills have %1%%% chance to gain a Power Charge on Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Supported Skills gain a Power Charge on Critical Strike"}}},stats={[1]="add_power_charge_on_critical_strike_%"}},[168]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d%% to Critical Strike Chance"}}},stats={[1]="additional_base_critical_strike_chance"}},[169]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$d%% chance to Freeze Enemies which are Chilled"}}},stats={[1]="additional_chance_to_freeze_chilled_enemies_%"}},[170]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d%% to Critical Strike Chance while Elusive"}}},stats={[1]="additional_critical_strike_chance_permyriad_while_affected_by_elusive"}},[171]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Overpowered applies -%1%%% chance to Block Attack and Spell Damage"}}},stats={[1]="apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"}},[172]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Area Damage"}}},stats={[1]="area_damage_+%"}},[173]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Attack Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Attack Critical Strike Chance"}}},stats={[1]="attack_critical_strike_chance_+%"}},[174]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Attack Damage"}}},stats={[1]="attack_damage_+%"}},[175]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Attacks deal %1% to %2% added Physical Damage with Weapons per 10 Rage"}}},stats={[1]="attack_minimum_added_physical_damage_per_10_rage",[2]="attack_maximum_added_physical_damage_per_10_rage"}},[176]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Attacks deal %1% to %2% added Physical Damage with Weapons while you have at least 10 Rage"}}},stats={[1]="attack_minimum_added_physical_damage_with_at_least_10_rage",[2]="attack_maximum_added_physical_damage_with_at_least_10_rage"}},[177]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Attacks deal %1% to %2% added Physical Damage with Weapons"}}},stats={[1]="attack_minimum_added_physical_damage_with_weapons",[2]="attack_maximum_added_physical_damage_with_weapons"}},[178]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="Supported Attacks have %1%%% of Damage Leeched as Mana"}}},stats={[1]="attack_skill_mana_leech_from_any_damage_permyriad"}},[179]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Attack Speed"}}},stats={[1]="attack_speed_+%"}},[180]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="Supported Attacks have %1%%% chance to Impale Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Supported Attacks always Impale Enemies on Hit"}}},stats={[1]="attacks_impale_on_hit_%_chance"}},[181]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Duration of Ailments on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Duration of Ailments on Enemies"}}},stats={[1]="base_all_ailment_duration_+%"}},[182]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Cast Speed"}}},stats={[1]="base_cast_speed_+%"}},[183]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="Supported Skills always Freeze Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0}},text="Supported Skills have %1%%% chance to Freeze"}}},stats={[1]="base_chance_to_freeze_%",[2]="always_freeze"}},[184]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="Supported Skills have %1%%% chance to Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Supported Skills always Ignite"}}},stats={[1]="base_chance_to_ignite_%"}},[185]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]=99}},text="Supported Skills have %1%%% chance to Shock"},[2]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=100,[2]="#"}},text="Supported Skills always Shock"}}},stats={[1]="base_chance_to_shock_%"}},[186]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Spells have %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Spells have %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="base_cooldown_speed_+%"}},[187]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Curse Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Curse Duration"}}},stats={[1]="base_curse_duration_+%"}},[188]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills deal no Chaos Damage"}}},stats={[1]="base_deal_no_chaos_damage"}},[189]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% chance to Knock Enemies Back on hit"}}},stats={[1]="base_global_chance_to_knockback_%"}},[190]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Enemies Slain from Supported Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Dropped by Enemies Slain from Supported Skills"}}},stats={[1]="base_killed_monster_dropped_item_quantity_+%"}},[191]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Enemies Slain from Supported Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Enemies Slain from Supported Skills"}}},stats={[1]="base_killed_monster_dropped_item_rarity_+%"}},[192]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained for each Enemy hit by Attacks from Supported Skills"}}},stats={[1]="base_life_gain_per_target"}},[193]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have a Base Mine Detonation Time of %1% seconds"}}},stats={[1]="base_mine_detonation_time_ms"}},[194]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Phantasm"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Phantasm"}}},stats={[1]="base_number_of_support_ghosts_allowed"}},[195]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% of Physical Damage Converted to Lightning Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_lightning"}},[196]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Damage with Poison"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Damage with Poison"}}},stats={[1]="base_poison_damage_+%"}},[197]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Poison Duration"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Poison Duration"}}},stats={[1]="base_poison_duration_+%"}},[198]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Projectile Speed"}}},stats={[1]="base_projectile_speed_+%"}},[199]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Stun Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Stun Duration on Enemies"}}},stats={[1]="base_stun_duration_+%"}},[200]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% reduced Enemy Stun Threshold"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% increased Enemy Stun Threshold"}}},stats={[1]="base_stun_threshold_reduction_+%"}},[201]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Supported Attacks have %1%%% chance to cause Bleeding"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Supported Attacks cause Bleeding"},[3]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0}},text="Supported Attacks cause Bleeding"},[4]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Supported Attacks cannot cause Bleeding"}}},stats={[1]="bleed_on_hit_with_attacks_%",[2]="global_bleed_on_hit",[3]="cannot_cause_bleeding"}},[202]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Attacks deal %1%%% increased Damage with Bleeding"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Attacks deal %1%%% reduced Damage with Bleeding"}}},stats={[1]="bleeding_damage_+%"}},[203]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Burning Damage"}}},stats={[1]="burn_damage_+%"}},[204]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=100,[2]="#"}},text="Supported Skills grant Fortify on Melee hit"},[2]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]=99}},text="Supported Skills have %1%%% chance to grant Fortify on Melee hit"}}},stats={[1]="chance_to_fortify_on_melee_hit_+%"}},[205]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Supported Skills have %1%%% chance to gain a Frenzy Charge on Killing a Frozen Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Supported Skills gain a Frenzy Charge on Killing a Frozen Enemy"}}},stats={[1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"}},[206]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Curse Skills have %1%%% chance to apply to Hexproof Enemies"}}},stats={[1]="chance_to_ignore_hexproof_%"}},[207]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Summon a Phantasm when Supported Skills, or Non-Phantasm Minions\nfrom Supported Skills, Hit a Rare or Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon a Phantasm when Supported Skills, or Non-Phantasm Minions\nfrom Supported Skills, Hit a Rare or Unique Enemy"}}},stats={[1]="chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"}},[208]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Channelling Skills deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Channelling Skills deal %1%%% reduced Damage"}}},stats={[1]="channelled_skill_damage_+%"}},[209]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Chaos Damage"}}},stats={[1]="chaos_damage_+%"}},[210]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills gain %1%%% of Cold Damage as Extra Fire Damage"}}},stats={[1]="cold_damage_%_to_add_as_fire"}},[211]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Cold Damage"}}},stats={[1]="cold_damage_+%"}},[212]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect of Supported Curses"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect of Supported Curses"}}},stats={[1]="curse_area_of_effect_+%"}},[213]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Damage over Time"}}},stats={[1]="damage_over_time_+%"}},[214]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Damage"}}},stats={[1]="damage_+%"}},[215]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Damage with Hits against Frozen Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Damage with Hits against Frozen Enemies"}}},stats={[1]="damage_+%_vs_frozen_enemies"}},[216]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Damage while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Damage while Leeching Energy Shield"}}},stats={[1]="damage_+%_while_es_leeching"}},[217]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Damage while Leeching Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Damage while Leeching Life"}}},stats={[1]="damage_+%_while_life_leeching"}},[218]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Damage while Leeching Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Damage while Leeching Mana"}}},stats={[1]="damage_+%_while_mana_leeching"}},[219]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]="#"}},text="Damaging Ailments inflicted with Supported Skills deal damage %1%%% faster"}}},stats={[1]="damaging_ailments_deal_damage_+%_faster"}},[220]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills inflict Decay on Hit, dealing %1% Chaos Damage per second for 8 seconds"}}},stats={[1]="deal_chaos_damage_per_second_for_10_seconds_on_hit"}},[221]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills deal no Elemental Damage"}}},stats={[1]="deal_no_elemental_damage"}},[222]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills deal %1%%% less Damage"}}},stats={[1]="deathmark_minion_damage_+%_final"}},[223]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems cannot gain Infusion"}}},stats={[1]="display_totems_no_infusion"}},[224]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Elemental Damage"}}},stats={[1]="elemental_damage_+%"}},[225]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Elusive from Supported Skills"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Elusive from Supported Skills"}}},stats={[1]="elusive_effect_+%"}},[226]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% of Damage Leeched as Energy Shield"}}},stats={[1]="energy_shield_leech_from_any_damage_permyriad"}},[227]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Fire Damage"}}},stats={[1]="fire_damage_+%"}},[228]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Fortify duration"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Fortify duration"}}},stats={[1]="fortify_duration_+%"}},[229]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Freeze Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Freeze Duration on Enemies"}}},stats={[1]="freeze_duration_+%"}},[230]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=99}},text="%2%%% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit from Supported Skills"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=100,[2]="#"}},text="Gain an Endurance Charge when you Stun an Enemy with a Melee Hit from Supported Skills"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Gain an Endurance Charge when you Stun an Enemy with a Melee Hit from Supported Skills"}}},stats={[1]="gain_endurance_charge_on_melee_stun",[2]="gain_endurance_charge_on_melee_stun_%"}},[231]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Inspiration Charge when you Spend Mana for Supported Skills"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Inspiration Charge when you Spend Mana for Supported Skills"}}},stats={[1]="gain_righteous_charge_on_mana_spent_%"}},[232]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills gain a Vaal Soul on Hit\nYou can only generate a Soul every %1% seconds"}}},stats={[1]="gain_vaal_soul_on_hit_cooldown_ms"}},[233]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %d%% chance to Cause Monsters to Flee"}}},stats={[1]="global_hit_causes_monster_flee_%"}},[234]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills have %1% to %2% added Chaos Damage"}}},stats={[1]="global_minimum_added_chaos_damage",[2]="global_maximum_added_chaos_damage"}},[235]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills have %1% to %2% added Cold Damage"}}},stats={[1]="global_minimum_added_cold_damage",[2]="global_maximum_added_cold_damage"}},[236]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills have %1% to %2% added Fire Damage"}}},stats={[1]="global_minimum_added_fire_damage",[2]="global_maximum_added_fire_damage"}},[237]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills have %1% to %2% added Lightning Damage"}}},stats={[1]="global_minimum_added_lightning_damage",[2]="global_maximum_added_lightning_damage"}},[238]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills have %1% to %2% added Physical Damage"}}},stats={[1]="global_minimum_added_physical_damage",[2]="global_maximum_added_physical_damage"}},[239]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% reduced Enemy Block Chance"}}},stats={[1]="global_reduce_enemy_block_%"}},[240]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Poison"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Poison"}}},stats={[1]="hit_and_poison_damage_+%"}},[241]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Poison for each Poison on the Enemy"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Poison for each Poison on the Enemy"}}},stats={[1]="hit_and_poison_damage_+%_per_poison_on_enemy"}},[242]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Ignite Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Ignite Duration on Enemies"}}},stats={[1]="ignite_duration_+%"}},[243]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Ignited by Supported Skills have %1$+d%% to Fire Resistance"}}},stats={[1]="ignites_apply_fire_resistance_+"}},[244]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Attacks have %1%%% increased Impale Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Attacks have %1%%% reduced Impale Effect"}}},stats={[1]="impale_debuff_effect_+%"}},[245]={lang={English={[1]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextPhysReductionNotNegative"},limit={[1]={[1]="#",[2]="#"}},text="Enemies Impaled by Supported Skills have %1$+d%% to Total Physical Damage Reduction against Impale Hits"}}},stats={[1]="impale_phys_reduction_%_penalty"}},[246]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills deal %1%%% more Physical Damage"}}},stats={[1]="impale_support_physical_damage_+%_final"}},[247]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Area Damage"}}},stats={[1]="inc_aoe_plus_more_area_damage_+%_final"}},[248]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Inspiration Charge Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Inspiration Charge Duration"}}},stats={[1]="inspiration_charge_duration_+%"}},[249]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Knockback Distance"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Knockback Distance"}}},stats={[1]="knockback_distance_+%"}},[250]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% of Damage Leeched as Life"}}},stats={[1]="life_leech_from_any_damage_permyriad"}},[251]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Lightning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Lightning Damage"}}},stats={[1]="lightning_damage_+%"}},[252]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]=99}},text="Supported Attacks have %1%%% chance to Maim on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=100,[2]="#"}},text="Supported Attacks always Maim on Hit"}}},stats={[1]="maim_on_hit_%"}},[253]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% of Damage Leeched as Mana"}}},stats={[1]="mana_leech_from_any_damage_permyriad"}},[254]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Melee Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Melee Damage"}}},stats={[1]="melee_damage_+%"}},[255]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Melee Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Melee Damage against Bleeding Enemies"}}},stats={[1]="melee_damage_vs_bleeding_enemies_+%"}},[256]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Melee Physical Damage"}}},stats={[1]="melee_physical_damage_+%"}},[257]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Melee Splash Area of Effect"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Melee Splash Area of Effect"}}},stats={[1]="melee_splash_area_of_effect_+%_final"}},[258]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Mine Detonation Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Mine Detonation Area of Effect"}}},stats={[1]="mine_detonation_radius_+%"}},[259]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mines from Supported Skills have %1%%% increased Detonation Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mines from Supported Skills have %1%%% reduced Detonation Speed"}}},stats={[1]="mine_detonation_speed_+%"}},[260]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Mine Throwing Speed"}}},stats={[1]="mine_laying_speed_+%"}},[261]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills have %1% to %2% added Cold Damage per Frenzy Charge"}}},stats={[1]="minimum_added_cold_damage_per_frenzy_charge",[2]="maximum_added_cold_damage_per_frenzy_charge"}},[262]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills have %1%%% additional Physical Damage Reduction"}}},stats={[1]="minion_additional_physical_damage_reduction_%"}},[263]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Minion Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Minion Attack Speed"}}},stats={[1]="minion_attack_speed_+%"}},[264]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Minion Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Minion Cast Speed"}}},stats={[1]="minion_cast_speed_+%"}},[265]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills have %1%%% chance to Taunt on Hit"}}},stats={[1]="minion_chance_to_taunt_on_hit_%"}},[266]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills deal %1%%% reduced Damage"}}},stats={[1]="minion_damage_+%"}},[267]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFeedingFrenzy"},limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills have %1%%% chance to grant Feeding Frenzy to you on Hit"}}},stats={[1]="minion_grant_puppet_master_buff_to_parent_on_hit_%"}},[268]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Minion maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Minion maximum Life"}}},stats={[1]="minion_maximum_life_+%"}},[269]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Minion Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Minion Movement Speed"}}},stats={[1]="minion_movement_speed_+%"}},[270]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Minions from Supported Skills have %1%%% chance to inflict Exposure on Hit, applying -10%% to the Elemental Resistance matching highest Damage type taken by Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Minions from Supported Skills inflict Exposure on Hit, applying -10%% to the Elemental Resistance matching highest Damage type taken by Enemy"}}},stats={[1]="minions_inflict_exposure_on_hit_%_chance"}},[271]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="First Repeat of Supported Skills deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="First Repeat of Supported Skills deals %1%%% less Damage"}}},stats={[1]="multistrike_damage_+%_final_on_first_repeat"}},[272]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Second Repeat of Supported Skills deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Second Repeat of Supported Skills deals %1%%% less Damage"}}},stats={[1]="multistrike_damage_+%_final_on_second_repeat"}},[273]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Third Repeat of Supported Skills deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Third Repeat of Supported Skills deals %1%%% less Damage"}}},stats={[1]="multistrike_damage_+%_final_on_third_repeat"}},[274]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elusive from Supported Skills also grants %1$+d%% to Critical Strike Multiplier for\nSkills Supported by Nightblade"}}},stats={[1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"}},[275]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Non-Curse Auras from Supported Skills have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Non-Curse Auras from Supported Skills have %1%%% reduced Effect"}}},stats={[1]="non_curse_aura_effect_+%"}},[276]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Effect of non-Damaging Ailments on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Effect of non-Damaging Ailments on Enemies"}}},stats={[1]="non_damaging_ailment_effect_+%"}},[277]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Skills can apply an additional Curse"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Supported Skills can apply %1% additional Curses"}}},stats={[1]="number_of_additional_curses_allowed"}},[278]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Skills throw up to 1 additional Mine"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Supported Skills throw up to %1% additional Mines"}}},stats={[1]="number_of_additional_mines_to_place"}},[279]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Skills fire an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Supported Skills fire %1% additional Projectiles"}}},stats={[1]="number_of_additional_projectiles"}},[280]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Skills can have up to %1% additional Remote Mine placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills can have up to %1% additional Remote Mines placed at a time"}}},stats={[1]="number_of_additional_remote_mines_allowed"}},[281]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Skills can have up to %1% additional Trap placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills can have up to %1% additional Traps placed at a time"}}},stats={[1]="number_of_additional_traps_allowed"}},[282]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills gain Onslaught for %1% seconds on Killing a Shocked Enemy"}}},stats={[1]="onslaught_time_granted_on_killing_shocked_enemy_ms"}},[283]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when a Mine from Supported\nSkills is Detonated targeting an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Frenzy Charge when a Mine from Supported Skills is Detonated targeting an Enemy"}}},stats={[1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"}},[284]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Supported Skills gain a Frenzy Charge when your Trap is triggered by an Enemy"}}},stats={[1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"}},[285]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when a Mine from Supported\nSkills is Detonated targeting an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Power Charge when a Mine from Supported Skills is Detonated targeting an Enemy"}}},stats={[1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"}},[286]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to gain a Power Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Supported Skills gain a Power Charge when your Trap is triggered by an Enemy"}}},stats={[1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"}},[287]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills gain %1%%% of Physical Damage as Extra Chaos Damage"}}},stats={[1]="physical_damage_%_to_add_as_chaos"}},[288]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills gain %1%%% of Physical Damage as Extra Fire Damage"}}},stats={[1]="physical_damage_%_to_add_as_fire"}},[289]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills gain %1%%% of Physical Damage as Extra Lightning Damage"}}},stats={[1]="physical_damage_%_to_add_as_lightning"}},[290]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Physical Damage"}}},stats={[1]="physical_damage_+%"}},[291]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Cooldown Recovery Speed for throwing Traps"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Cooldown Recovery Speed for throwing Traps"}}},stats={[1]="placing_traps_cooldown_recovery_+%"}},[292]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Projectile Damage"}}},stats={[1]="projectile_damage_+%"}},[293]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies have %1%%% reduced chance to Dodge Hits from Supported Skills"}}},stats={[1]="reduce_enemy_dodge_%"}},[294]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Shock Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Shock Duration on Enemies"}}},stats={[1]="shock_duration_+%"}},[295]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% of Cold Damage Converted to Fire Damage"}}},stats={[1]="skill_cold_damage_%_to_convert_to_fire"}},[296]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Supported Skills and Damaging Ailments they inflict"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Supported Skills and Damaging Ailments they inflict"}}},stats={[1]="skill_effect_and_damaging_ailment_duration_+%"}},[297]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Skill Effect Duration"}}},stats={[1]="skill_effect_duration_+%"}},[298]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% of Physical Damage Converted to Lightning Damage"}}},stats={[1]="skill_physical_damage_%_to_convert_to_lightning"}},[299]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Spell Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Spell Critical Strike Chance"}}},stats={[1]="spell_critical_strike_chance_+%"}},[300]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Spell Damage"}}},stats={[1]="spell_damage_+%"}},[301]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Final Repeat of Supported Skills has %1%%% chance to deal Double Damage"}}},stats={[1]="spell_echo_plus_chance_double_damage_%_final"}},[302]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="When you Hit an Enemy with an Arrow from a Supported Skill, Summon a Mirage Archer which uses that Skill"}}},stats={[1]="summon_mirage_archer_on_hit"}},[303]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Spell Damage while you have Arcane Surge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Spell Damage while you have Arcane Surge"}}},stats={[1]="support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge"}},[304]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Aura Lasts %1% seconds"}}},stats={[1]="support_aura_duration_base_buff_duration"}},[305]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Mana Reservation Lasts %1% seconds"}}},stats={[1]="support_aura_duration_base_reserve_duration"}},[306]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Attack Time per Projectile"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Attack Time per Projectile"}}},stats={[1]="support_barrage_attack_time_+%_per_projectile_fired"}},[307]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Trap and Mine Throwing Time per Projectile"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Trap and Mine Throwing Time per Projectile"}}},stats={[1]="support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired"}},[308]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Supported Skills have a %1%%% chance to Trigger Shockwave on Melee Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Supported Skills will Trigger Shockwave on Melee Hit"}}},stats={[1]="support_blunt_chance_to_trigger_shockwave_on_hit_%"}},[309]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Burning Damage"}}},stats={[1]="support_burning_damage_+%_final"}},[310]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Attacks deal %1%%% more Damage with Bleeding"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Attacks deal %1%%% less Damage with Bleeding"}}},stats={[1]="support_chance_to_bleed_bleeding_damage_+%_final"}},[311]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Chaos Damage"}}},stats={[1]="support_chaos_attacks_damage_+%_final"}},[312]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_clustertrap_damage_+%_final"}},[313]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage while on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage while on Full Energy Shield"}}},stats={[1]="support_energy_shield_leech_damage_+%_on_full_energy_shield_final"}},[314]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage while Leeching Energy Shield"}}},stats={[1]="support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"}},[315]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Ailments caused by Melee Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Ailments caused by Melee Hits"}}},stats={[1]="support_fortify_ailment_damage_+%_final_from_melee_hits"}},[316]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Melee Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Melee Damage"}}},stats={[1]="support_fortify_melee_damage_+%_final"}},[317]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Phantasms last %1% seconds"}}},stats={[1]="support_ghost_base_duration"}},[318]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Cold Damage Over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Cold Damage Over Time"}}},stats={[1]="support_hypothermia_cold_damage_over_time_+%_final"}},[319]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Hits and Ailments against Chilled Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Hits and Ailments against Chilled Enemies"}}},stats={[1]="support_hypothermia_damage_+%_vs_chilled_enemies_final"}},[320]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Maimed by Supported Skills take %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Maimed by Supported Skills take %1%%% reduced Physical Damage"}}},stats={[1]="support_maimed_enemies_physical_damage_taken_+%"}},[321]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_minefield_mine_damage_+%_final"}},[322]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Mine Throwing Speed"}}},stats={[1]="support_minefield_mine_throwing_speed_+%_final"}},[323]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills deal %1% to %2% added Fire Damage against Burning Enemies"}}},stats={[1]="global_minimum_added_fire_damage_vs_burning_enemies",[2]="global_maximum_added_fire_damage_vs_burning_enemies"}},[324]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_minion_damage_+%_final"}},[325]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1%%% more Damage to Enemies that are Near you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills deal %1%%% less Damage to Enemies that are Near you"}}},stats={[1]="support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"}},[326]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills take %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills take %1%%% less Damage"}}},stats={[1]="support_minion_defensive_stance_minion_damage_taken_+%_final"}},[327]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1%%% more Damage to your Deathmarked Enemy"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills deal %1%%% less Damage to your Deathmarked Enemy"}}},stats={[1]="support_minion_focus_fire_damage_+%_final_vs_focussed_target"}},[328]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Minion maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Minion maximum Life"}}},stats={[1]="support_minion_maximum_life_+%_final"}},[329]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1%%% more Damage while you have Feeding Frenzy"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills deal %1%%% less Damage while you have Feeding Frenzy"}}},stats={[1]="support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"}},[330]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills deal %1%%% less Elemental Damage"}}},stats={[1]="support_minion_totem_resistance_elemental_damage_+%_final"}},[331]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills always target your Deathmarked Enemy if possible"}}},stats={[1]="support_minion_use_focussed_target"}},[332]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mirage Archer uses Supported Skill with %1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mirage Archer uses Supported Skill with %1%%% less Attack Speed"}}},stats={[1]="support_mirage_archer_attack_speed_+%_final"}},[333]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mirage Archer deals %1%%% more Damage with Supported Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mirage Archer deals %1%%% less Damage with Supported Skills"}}},stats={[1]="support_mirage_archer_damage_+%_final"}},[334]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOverpowered"},limit={[1]={[1]="#",[2]="#"}},text="Inflict Overpowered for %1% seconds when Blocked"}}},stats={[1]="support_overpowered_base_duration_ms"}},[335]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Skills also fire Projectiles from up to %1% point on each side of you"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Supported Skills also fire Projectiles from up to %1% points on each side of you"}}},stats={[1]="support_parallel_projectile_number_of_points_per_side"}},[336]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_parallel_projectiles_damage_+%_final"}},[337]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Chaos Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Chaos Damage over Time"}}},stats={[1]="support_phys_chaos_projectile_chaos_damage_over_time_+%_final"}},[338]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Physical Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Physical Damage over Time"}}},stats={[1]="support_phys_chaos_projectile_physical_damage_over_time_+%_final"}},[339]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Physical Projectile Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Physical Projectile Spell Damage"}}},stats={[1]="support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final"}},[340]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Attack Skills deal %1%%% more Damage with Bleeding and Poison caused by Projectile Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Attack Skills deal %1%%% more Damage with Bleeding and Poison caused by Projectile Hits"}}},stats={[1]="support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits"}},[341]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_pierce_projectile_damage_+%_final"}},[342]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage per Power Charge"}}},stats={[1]="support_power_charge_on_crit_damage_+%_final_per_power_charge"}},[343]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Physical Projectile Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Physical Projectile Attack Damage"}}},stats={[1]="support_projectile_attack_physical_damage_+%_final"}},[344]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Projectile Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Projectile Attack Speed"}}},stats={[1]="support_projectile_attack_speed_+%_final"}},[345]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Area of Effect"}}},stats={[1]="support_pulverise_area_of_effect_+%_final"}},[346]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Attack Speed"}}},stats={[1]="support_pulverise_attack_speed_+%_final"}},[347]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Melee Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Melee Area Damage"}}},stats={[1]="support_pulverise_melee_area_damage_+%_final"}},[348]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_greater_volley_projectile_damage_+%_final"}},[349]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills grant 1 Rage on Melee Hit, no more than once every %1% seconds"}}},stats={[1]="support_rage_gain_rage_on_melee_hit_cooldown_ms"}},[350]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies have -%1%%% chance to Block Attack or Spell Damage from Supported Skills"}}},stats={[1]="support_reduce_enemy_block_and_spell_block_%"}},[351]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies have -%1%%% chance to Dodge Attack or Spell Hits from Supported Skills"}}},stats={[1]="support_reduce_enemy_dodge_and_spell_dodge_%"}},[352]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Critical Strike Chance per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Critical Strike Chance per Inspiration Charge"}}},stats={[1]="critical_strike_chance_+%_per_righteous_charge"}},[353]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Elemental Damage per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Elemental Damage per Inspiration Charge"}}},stats={[1]="elemental_damage_+%_final_per_righteous_charge"}},[354]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose all Inspiration Charges after Spending a total of %1% Mana with Supported Skills"}}},stats={[1]="lose_all_righteous_charges_on_mana_use_threshold"}},[355]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have a Base Mine Detonation Time of %1% seconds"}}},stats={[1]="support_remote_mine_2_base_mine_detonation_time_ms"}},[356]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_remote_mine_2_damage_+%_final"}},[357]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage for each prior Mine in Detonation Sequence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage for each prior Mine in Detonation Sequence"}}},stats={[1]="support_remote_mine_damage_+%_final_per_mine_detonation_cascade"}},[358]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Mine Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Mine Damage with Hits"}}},stats={[1]="support_remote_mine_hit_damage_+%_final"}},[359]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to grant Onslaught for 3 seconds when you Hit a Unique Enemy"}}},stats={[1]="support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"}},[360]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=2},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to grant Onslaught for %2% seconds on\ndealing a Killing Blow"}}},stats={[1]="support_scion_onslaught_on_killing_blow_%_chance",[2]="support_scion_onslaught_on_killing_blow_duration_ms"}},[361]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Supported Skills grant Combat Rush on Hit\nCombat Rush lasts %1% second or until you use a Travel Skill"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills grant Combat Rush on Hit\nCombat Rush lasts %1% seconds or until you use a Travel Skill"}}},stats={[1]="support_slashing_buff_base_duration_ms"}},[362]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Combat Rush grants %1%%% more Attack and Cast Speed to Travel Skills that are not Supported by Close Combat"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Combat Rush grants %1%%% less Attack and Cast Speed to Travel Skills that are not Supported by Close Combat"}}},stats={[1]="support_slashing_buff_attack_cast_speed_+%_final_to_grant"}},[363]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills deal up to %1%%% more Melee Damage to Enemies, based on proximity"}}},stats={[1]="support_slashing_damage_+%_final_from_distance"}},[364]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_slower_projectiles_damage_+%_final"}},[365]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Area Damage per Intensity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Area Damage per Intensity"}}},stats={[1]="support_spell_boost_area_damage_+%_final_per_charge"}},[366]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Area of Effect per Intensity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Area of Effect per Intensity"}}},stats={[1]="support_spell_boost_area_of_effect_+%_final_per_charge"}},[367]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills gain Intensity when used, up to a maximum of 4\nSupported Skills lose Intensity every %1% seconds while moving, or immediately if you teleport"}}},stats={[1]="support_spell_boost_charge_loss_interval_ms_while_moving"}},[368]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Area of Effect"}}},stats={[1]="support_spell_cascade_area_of_effect_+%_final"}},[369]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_spell_cascade_damage_+%_final"}},[370]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0}},text="Supported Area of Effect Skills also affect areas in front of and behind the targeted area"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0}},text="Supported Area of Effect Skills also affect areas in front of, behind,\nand on each side of the targeted area"}}},stats={[1]="support_spell_cascade_number_of_cascades_per_side",[2]="support_spell_cascade_sideways"}},[371]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Infusion lasts %1% second after you finish Channelling"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Infusion lasts %1% seconds after you finish Channelling"}}},stats={[1]="support_storm_barrier_damage_buff_base_duration_ms"}},[372]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Gain Infusion after Channelling a Supported Skill for %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain Infusion after Channelling a Supported Skill for %1% seconds"}}},stats={[1]="support_storm_barrier_damage_buff_time_threshold_ms"}},[373]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_storm_barrier_damage_+%_final"}},[374]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="While Channelling Supported Skills, take %1%%% more Physical Damage from Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="While Channelling Supported Skills, take %1%%% less Physical Damage from Hits"}}},stats={[1]="support_storm_barrier_physical_damage_taken_when_hit_+%_final"}},[375]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamageTypes"},limit={[1]={[1]=1,[2]="#"}},text="Infusion grants %1%%% more Damage of Types matching Supported Skill Gem's tags"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamageTypes"},limit={[1]={[1]="#",[2]=-1}},text="Infusion grants %1%%% less Damage of Types matching Supported Skill Gem's tags"}}},stats={[1]="support_storm_barrier_skill_type_damage_+%_final"}},[376]={lang={English={[1]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamageTypes"},limit={[1]={[1]="#",[2]="#"}},text="While Channelling a Supported Skill, take %1%%% less Damage from Hits of types matching the Skill Gem's Tags"}}},stats={[1]="support_storm_barrier_skill_type_damage_taken_when_hit_+%_final"}},[377]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Trap and Mine Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Trap and Mine Damage"}}},stats={[1]="support_trap_and_mine_damage_+%_final"}},[378]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Trap Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Trap Damage with Hits"}}},stats={[1]="support_trap_hit_damage_+%_final"}},[379]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Ailments"}}},stats={[1]="support_unbound_ailments_ailment_damage_+%_final"}},[380]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills can only be used with Axes and Swords"}}},stats={[1]="supported_skill_can_only_use_axe_and_sword"}},[381]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills can only be used with Bows"}}},stats={[1]="skill_can_only_use_bow"}},[382]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills can only be used with Claws and Daggers"}}},stats={[1]="supported_skill_can_only_use_dagger_and_claw"}},[383]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills can only be used with Maces, Sceptres and Staves"}}},stats={[1]="supported_skill_can_only_use_mace_and_staff"}},[384]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills can only be used with Bows and Wands"}}},stats={[1]="skill_can_only_use_non_melee_weapons"}},[385]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d%% to Critical Strike Multiplier per Power Charge when used by Traps"}}},stats={[1]="trap_critical_strike_multiplier_+_per_power_charge"}},[386]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Trap Damage"}}},stats={[1]="trap_damage_+%"}},[387]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Trap Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Trap Throwing Speed"}}},stats={[1]="trap_throwing_speed_+%"}},[388]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Trap Throwing Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Trap Throwing Speed per Frenzy Charge"}}},stats={[1]="trap_throwing_speed_+%_per_frenzy_charge"}},[389]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Trap Trigger Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Trap Trigger Area of Effect"}}},stats={[1]="trap_trigger_radius_+%"}},[390]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Triggered Spells deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Triggered Spells deal %1%%% reduced Damage"}}},stats={[1]="triggered_skill_damage_+%"}},[391]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Elemental Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Elemental Damage with Weapons"}}},stats={[1]="weapon_elemental_damage_+%"}},[392]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},[2]={k="reminderstring",v="ReminderTextReoccurringSpell"},limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]="#"},[3]={[1]="#",[2]="#"}},text="Supported Spells gain a Seal every %1% seconds, to a maximum of %2% Seals\nSupported Spells are Unsealed when cast, and their effects Reoccur for each Seal lost"}}},stats={[1]="support_anticipation_charge_gain_interval_ms",[2]="support_anticipation_rapid_fire_count",[3]="skill_max_unleash_seals"}},[393]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage when Reoccurring"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage when Reoccurring"}}},stats={[1]="support_spell_rapid_fire_repeat_use_damage_+%_final"}},[394]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Each Mine from Supported Skills applies %1%%% chance to deal Double Damage to Hits against Enemies near it, up to a maximum of 100%%"}}},stats={[1]="support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"}},[395]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAggressiveMinions"},limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills are Aggressive"}}},stats={[1]="minion_larger_aggro_radius"}},[396]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefensiveMinions"},limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills are Defensive"}}},stats={[1]="minions_are_defensive"}},["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=283,["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=284,["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=285,["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=286,["accuracy_rating"]=165,["accuracy_rating_+%"]=166,["active_skill_withered_base_duration_ms"]=139,["add_power_charge_on_critical_strike_%"]=167,["additional_base_critical_strike_chance"]=168,["additional_chance_to_freeze_chilled_enemies_%"]=169,["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=170,["always_freeze"]=183,["apply_linked_curses_on_hit_%"]=107,["apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"]=171,["area_damage_+%"]=172,["area_of_effect_+%_while_dead"]=26,["attack_critical_strike_chance_+%"]=173,["attack_damage_+%"]=174,["attack_maximum_added_physical_damage_per_10_rage"]=175,["attack_maximum_added_physical_damage_with_at_least_10_rage"]=176,["attack_maximum_added_physical_damage_with_weapons"]=177,["attack_minimum_added_physical_damage_per_10_rage"]=175,["attack_minimum_added_physical_damage_with_at_least_10_rage"]=176,["attack_minimum_added_physical_damage_with_weapons"]=177,["attack_skill_mana_leech_from_any_damage_permyriad"]=178,["attack_skills_additional_ballista_totems_allowed"]=50,["attack_speed_+%"]=179,["attacks_impale_on_hit_%_chance"]=180,["aura_cannot_affect_self"]=123,["aura_effect_+%"]=28,["base_all_ailment_duration_+%"]=181,["base_aura_area_of_effect_+%"]=27,["base_cast_speed_+%"]=182,["base_chance_to_freeze_%"]=183,["base_chance_to_ignite_%"]=184,["base_chance_to_poison_on_hit_%"]=130,["base_chance_to_shock_%"]=185,["base_chaos_damage_to_deal_per_minute"]=116,["base_cold_damage_to_deal_per_minute"]=118,["base_cooldown_speed_+%"]=186,["base_critical_strike_multiplier_+"]=60,["base_curse_duration_+%"]=187,["base_deal_no_chaos_damage"]=188,["base_fire_damage_to_deal_per_minute"]=117,["base_global_chance_to_knockback_%"]=189,["base_killed_monster_dropped_item_quantity_+%"]=190,["base_killed_monster_dropped_item_rarity_+%"]=191,["base_life_gain_per_target"]=192,["base_mana_cost_-%"]=21,["base_melee_attack_repeat_count"]=95,["base_mine_detonation_time_ms"]=193,["base_mine_duration"]=48,["base_number_of_projectiles_in_spiral_nova"]=33,["base_number_of_remote_mines_allowed"]=54,["base_number_of_support_ghosts_allowed"]=194,["base_number_of_totems_allowed"]=51,["base_number_of_traps_allowed"]=53,["base_physical_damage_%_to_convert_to_lightning"]=195,["base_poison_damage_+%"]=196,["base_poison_duration_+%"]=197,["base_projectile_speed_+%"]=198,["base_reduce_enemy_cold_resistance_%"]=62,["base_reduce_enemy_fire_resistance_%"]=61,["base_reduce_enemy_lightning_resistance_%"]=64,["base_skill_area_of_effect_+%"]=24,["base_skill_is_instant"]=6,["base_spell_repeat_count"]=96,["base_stun_duration_+%"]=199,["base_stun_threshold_reduction_+%"]=200,["base_totem_duration"]=45,["base_trap_duration"]=47,["base_use_life_in_place_of_mana"]=30,["bleed_on_hit_base_duration"]=122,["bleed_on_hit_with_attacks_%"]=201,["bleeding_damage_+%"]=202,["blind_duration_+%"]=58,["burn_damage_+%"]=203,["cannot_cast_curses"]=108,["cannot_cause_bleeding"]=201,["cannot_inflict_status_ailments"]=132,["cast_linked_spells_on_attack_crit_%"]=109,["cast_linked_spells_on_melee_kill_%"]=110,["cast_on_damage_taken_%"]=114,["cast_on_damage_taken_damage_+%_final"]=103,["cast_on_damage_taken_threshold"]=114,["cast_on_death_%"]=112,["cast_on_death_damage_+%_final_while_dead"]=102,["cast_on_stunned_%"]=113,["cast_while_channelling_time_ms"]=115,["chance_to_fortify_on_melee_hit_+%"]=204,["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=205,["chance_to_ignore_hexproof_%"]=206,["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=207,["chance_to_summon_support_ghost_on_killing_blow_%"]=150,["channelled_skill_damage_+%"]=208,["chaos_damage_+%"]=209,["chill_duration_+%"]=152,["chill_effect_+%"]=151,["cold_damage_%_to_add_as_fire"]=210,["cold_damage_+%"]=211,["critical_strike_chance_+%"]=59,["critical_strike_chance_+%_per_righteous_charge"]=352,["critical_strike_multiplier_+_while_affected_by_elusive"]=134,["curse_apply_as_aura"]=3,["curse_area_of_effect_+%"]=212,["curse_effect_+%"]=119,["damage_+%"]=214,["damage_+%_vs_frozen_enemies"]=215,["damage_+%_while_es_leeching"]=216,["damage_+%_while_life_leeching"]=217,["damage_+%_while_mana_leeching"]=218,["damage_over_time_+%"]=213,["damaging_ailments_deal_damage_+%_faster"]=219,["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=220,["deal_no_elemental_damage"]=221,["deathmark_minion_damage_+%_final"]=222,["display_totems_no_infusion"]=223,["elemental_damage_+%"]=224,["elemental_damage_+%_final_per_righteous_charge"]=353,["elemental_status_effect_aura_radius"]=34,["elusive_effect_+%"]=225,["energy_shield_leech_from_any_damage_permyriad"]=226,["extra_target_targeting_distance_+%"]=23,["fire_damage_+%"]=227,["fortify_duration_+%"]=228,["freeze_duration_+%"]=229,["freeze_mine_cold_resistance_+_while_frozen"]=133,["gain_elusive_on_crit_%_chance"]=128,["gain_endurance_charge_on_melee_stun"]=230,["gain_endurance_charge_on_melee_stun_%"]=230,["gain_righteous_charge_on_mana_spent_%"]=231,["gain_vaal_soul_on_hit_cooldown_ms"]=232,["global_bleed_on_hit"]=201,["global_chance_to_blind_on_hit_%"]=57,["global_hit_causes_monster_flee_%"]=233,["global_maximum_added_chaos_damage"]=234,["global_maximum_added_cold_damage"]=235,["global_maximum_added_fire_damage"]=236,["global_maximum_added_fire_damage_vs_burning_enemies"]=323,["global_maximum_added_lightning_damage"]=237,["global_maximum_added_physical_damage"]=238,["global_minimum_added_chaos_damage"]=234,["global_minimum_added_cold_damage"]=235,["global_minimum_added_fire_damage"]=236,["global_minimum_added_fire_damage_vs_burning_enemies"]=323,["global_minimum_added_lightning_damage"]=237,["global_minimum_added_physical_damage"]=238,["global_poison_on_hit"]=129,["global_reduce_enemy_block_%"]=239,["hit_and_poison_damage_+%"]=240,["hit_and_poison_damage_+%_per_poison_on_enemy"]=241,["ignite_duration_+%"]=242,["ignites_apply_fire_resistance_+"]=243,["impale_debuff_effect_+%"]=244,["impale_phys_reduction_%_penalty"]=245,["impale_support_physical_damage_+%_final"]=246,["inc_aoe_plus_more_area_damage_+%_final"]=247,["infernal_legion_minions_have_burning_effect_radius_+"]=164,["inspiration_charge_duration_+%"]=248,["is_ranged_attack_totem"]=44,["is_remote_mine"]=39,["is_totem"]=44,["keystone_point_blank"]=36,["keystone_strong_bowman"]=37,["kill_enemy_on_hit_if_under_10%_life"]=35,["knockback_distance_+%"]=249,["life_leech_from_any_damage_permyriad"]=250,["lightning_damage_+%"]=251,["lose_all_righteous_charges_on_mana_use_threshold"]=354,["maim_on_hit_%"]=252,["mana_leech_from_any_damage_permyriad"]=253,["maximum_added_cold_damage_per_frenzy_charge"]=261,["melee_attack_number_of_spirit_strikes"]=22,["melee_damage_+%"]=254,["melee_damage_vs_bleeding_enemies_+%"]=255,["melee_physical_damage_+%"]=256,["melee_splash"]=93,["melee_splash_area_of_effect_+%_final"]=257,["mine_critical_strike_chance_+%_per_power_charge"]=158,["mine_detonation_radius_+%"]=258,["mine_detonation_speed_+%"]=259,["mine_duration_+%"]=56,["mine_laying_speed_+%"]=260,["mine_throwing_speed_+%_per_frenzy_charge"]=157,["minimum_added_cold_damage_per_frenzy_charge"]=261,["minion_additional_physical_damage_reduction_%"]=262,["minion_attack_speed_+%"]=263,["minion_cast_speed_+%"]=264,["minion_chance_to_taunt_on_hit_%"]=265,["minion_damage_+%"]=266,["minion_elemental_resistance_%"]=159,["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=161,["minion_fire_damage_taken_+%"]=162,["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=267,["minion_larger_aggro_radius"]=395,["minion_maximum_all_elemental_resistances_%"]=160,["minion_maximum_life_+%"]=268,["minion_movement_speed_+%"]=269,["minions_are_defensive"]=396,["minions_inflict_exposure_on_hit_%_chance"]=270,["multistrike_damage_+%_final_on_first_repeat"]=271,["multistrike_damage_+%_final_on_second_repeat"]=272,["multistrike_damage_+%_final_on_third_repeat"]=273,["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=274,["non_curse_aura_effect_+%"]=275,["non_damaging_ailment_effect_+%"]=276,["number_of_additional_curses_allowed"]=277,["number_of_additional_forks_base"]=68,["number_of_additional_mines_to_place"]=278,["number_of_additional_projectiles"]=279,["number_of_additional_remote_mines_allowed"]=280,["number_of_additional_traps_allowed"]=281,["number_of_additional_traps_to_throw"]=40,["number_of_chains"]=65,["number_of_mines_to_place"]=39,["number_of_totems_to_summon"]=44,["onslaught_time_granted_on_killing_shocked_enemy_ms"]=282,parent="stat_descriptions",["physical_damage_%_to_add_as_chaos"]=287,["physical_damage_%_to_add_as_fire"]=288,["physical_damage_%_to_add_as_lightning"]=289,["physical_damage_+%"]=290,["placing_traps_cooldown_recovery_+%"]=291,["power_siphon_fire_at_all_targets"]=33,["projectile_base_number_of_targets_to_pierce"]=46,["projectile_damage_+%"]=292,["projectile_number_to_split"]=66,["projectile_spiral_nova_angle"]=33,["projectiles_barrage"]=33,["projectiles_fork"]=67,["projectiles_nova"]=33,["projectiles_rain"]=31,["projectiles_return"]=69,["projectiles_return_if_no_hit_object"]=69,["rain_of_arrows_sequences_to_fire"]=33,["reduce_enemy_dodge_%"]=293,["reduce_enemy_elemental_resistance_%"]=63,["shock_duration_+%"]=294,["skill_can_only_use_bow"]=381,["skill_can_only_use_non_melee_weapons"]=384,["skill_cold_damage_%_to_convert_to_fire"]=295,["skill_effect_and_damaging_ailment_duration_+%"]=296,["skill_effect_duration_+%"]=297,["skill_max_unleash_seals"]=392,["skill_physical_damage_%_to_convert_to_lightning"]=298,["spell_critical_strike_chance_+%"]=299,["spell_damage_+%"]=300,["spell_echo_plus_chance_double_damage_%_final"]=301,["spell_only_castable_on_death"]=111,["spell_uncastable_if_triggerable"]=111,["strong_casting"]=38,["summon_2_totems"]=52,["summon_cold_resistance_+"]=105,["summon_fire_resistance_+"]=104,["summon_lightning_resistance_+"]=106,["summon_mirage_archer_on_hit"]=302,["support_additional_totem_damage_+%_final"]=83,["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=41,["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=42,["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=43,["support_anticipation_charge_gain_interval_ms"]=392,["support_anticipation_rapid_fire_count"]=392,["support_arcane_surge_base_duration_ms"]=142,["support_arcane_surge_cast_speed_+%"]=136,["support_arcane_surge_duration_ms"]=140,["support_arcane_surge_gain_buff_on_mana_use_threshold"]=135,["support_arcane_surge_mana_regeneration_rate_per_minute_%"]=136,["support_arcane_surge_spell_damage_+%_final"]=136,["support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge"]=303,["support_area_concentrate_area_damage_+%_final"]=10,["support_attack_skills_elemental_damage_+%_final"]=8,["support_attack_totem_attack_speed_+%_final"]=121,["support_aura_duration_base_buff_duration"]=304,["support_aura_duration_base_reserve_duration"]=305,["support_barrage_attack_time_+%_per_projectile_fired"]=306,["support_barrage_damage_+%_final"]=11,["support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired"]=307,["support_better_ailments_ailment_damage_+%_final"]=84,["support_better_ailments_hit_damage_+%_final"]=85,["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=124,["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=308,["support_brutality_physical_damage_+%_final"]=86,["support_burning_damage_+%_final"]=309,["support_cast_on_crit_spell_damage_+%_final"]=18,["support_cast_on_melee_kill_spell_damage_+%_final"]=19,["support_cast_while_channelling_triggered_skill_damage_+%_final"]=20,["support_chain_hit_damage_+%_final"]=70,["support_chance_to_bleed_bleeding_damage_+%_final"]=310,["support_chance_to_ignite_fire_damage_+%_final"]=87,["support_chaos_attacks_damage_+%_final"]=311,["support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=156,["support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"]=155,["support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=154,["support_chills_also_grant_cold_damage_taken_per_minute_+%"]=153,["support_clustertrap_damage_+%_final"]=312,["support_concentrated_effect_skill_area_of_effect_+%_final"]=25,["support_controlled_destruction_spell_damage_+%_final"]=79,["support_damage_while_on_full_life_+%_final"]=7,["support_debilitate_hit_damage_+%_final_per_poison_stack"]=74,["support_debilitate_hit_damage_max_poison_stacks"]=74,["support_debilitate_poison_damage_+%_final"]=75,["support_echo_damage_+%_final"]=4,["support_efficacy_damage_over_time_+%_final"]=82,["support_efficacy_spell_damage_+%_final"]=80,["support_elemental_proliferation_damage_+%_final"]=5,["support_energy_shield_leech_damage_+%_on_full_energy_shield_final"]=313,["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=314,["support_fork_projectile_damage_+%_final"]=73,["support_fortify_ailment_damage_+%_final_from_melee_hits"]=315,["support_fortify_melee_damage_+%_final"]=316,["support_gem_elemental_damage_+%_final"]=88,["support_gem_mine_damage_+%_final"]=15,["support_ghost_base_duration"]=317,["support_greater_volley_projectile_damage_+%_final"]=348,["support_hypothermia_cold_damage_over_time_+%_final"]=318,["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=319,["support_ignite_prolif_ignite_damage_+%_final"]=89,["support_ignite_proliferation_radius"]=32,["support_innervate_buff_base_duration_ms"]=145,["support_innervate_gain_buff_on_killing_shocked_enemy"]=143,["support_innervate_maximum_added_lightning_damage"]=144,["support_innervate_minimum_added_lightning_damage"]=144,["support_lesser_multiple_projectile_damage_+%_final"]=14,["support_maim_chance_physical_damage_+%_final"]=90,["support_maimed_enemies_physical_damage_taken_+%"]=320,["support_melee_physical_damage_+%_final"]=1,["support_melee_physical_damage_poison_and_bleeding_damage_+%_final_from_melee_hits"]=2,["support_melee_splash_damage_+%_final"]=92,["support_melee_splash_damage_+%_final_for_splash"]=94,["support_minefield_mine_damage_+%_final"]=321,["support_minefield_mine_throwing_speed_+%_final"]=322,["support_minion_damage_+%_final"]=324,["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=325,["support_minion_defensive_stance_minion_damage_taken_+%_final"]=326,["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=327,["support_minion_instability_minion_base_fire_area_damage_per_minute"]=163,["support_minion_maximum_life_+%_final"]=328,["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=329,["support_minion_totem_resistance_elemental_damage_+%_final"]=330,["support_minion_use_focussed_target"]=331,["support_mirage_archer_attack_speed_+%_final"]=332,["support_mirage_archer_damage_+%_final"]=333,["support_multicast_cast_speed_+%_final"]=97,["support_multiple_attack_damage_+%_final"]=99,["support_multiple_attacks_melee_attack_speed_+%_final"]=98,["support_multiple_projectile_damage_+%_final"]=12,["support_multiple_projectiles_critical_strike_chance_+%_final"]=29,["support_multithrow_damage_+%_final"]=101,["support_overpowered_base_duration_ms"]=334,["support_parallel_projectile_number_of_points_per_side"]=335,["support_parallel_projectiles_damage_+%_final"]=336,["support_phys_chaos_projectile_chaos_damage_over_time_+%_final"]=337,["support_phys_chaos_projectile_physical_damage_over_time_+%_final"]=338,["support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final"]=339,["support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits"]=340,["support_pierce_projectile_damage_+%_final"]=341,["support_poison_poison_damage_+%_final"]=76,["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=342,["support_projectile_attack_physical_damage_+%_final"]=343,["support_projectile_attack_speed_+%_final"]=344,["support_pulverise_area_of_effect_+%_final"]=345,["support_pulverise_attack_speed_+%_final"]=346,["support_pulverise_melee_area_damage_+%_final"]=347,["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=349,["support_rain_projectile_damage_+%_final"]=13,["support_rapid_decay_damage_over_time_+%_final"]=81,["support_reduce_enemy_block_and_spell_block_%"]=350,["support_reduce_enemy_dodge_and_spell_dodge_%"]=351,["support_reduced_duration_damage_+%_final"]=126,["support_reduced_duration_skill_effect_duration_+%_final"]=127,["support_remote_mine_2_base_mine_detonation_time_ms"]=355,["support_remote_mine_2_base_mine_duration"]=49,["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=394,["support_remote_mine_2_damage_+%_final"]=356,["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=357,["support_remote_mine_hit_damage_+%_final"]=358,["support_return_projectile_damage_+%_final"]=77,["support_ruthless_big_hit_damage_+%_final"]=147,["support_ruthless_big_hit_max_count"]=146,["support_ruthless_big_hit_stun_base_duration_override_ms"]=149,["support_ruthless_blow_bleeding_damage_from_melee_hits_+%_final"]=148,["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=359,["support_scion_onslaught_on_killing_blow_%_chance"]=360,["support_scion_onslaught_on_killing_blow_duration_ms"]=360,["support_slashing_buff_attack_cast_speed_+%_final_to_grant"]=362,["support_slashing_buff_base_duration_ms"]=361,["support_slashing_damage_+%_final_from_distance"]=363,["support_slower_projectiles_damage_+%_final"]=364,["support_slower_projectiles_projectile_speed_+%_final"]=125,["support_spell_boost_area_damage_+%_final_per_charge"]=365,["support_spell_boost_area_of_effect_+%_final_per_charge"]=366,["support_spell_boost_charge_loss_interval_ms_while_moving"]=367,["support_spell_cascade_area_of_effect_+%_final"]=368,["support_spell_cascade_damage_+%_final"]=369,["support_spell_cascade_number_of_cascades_per_side"]=370,["support_spell_cascade_sideways"]=370,["support_spell_rapid_fire_repeat_use_damage_+%_final"]=393,["support_spell_totem_cast_speed_+%_final"]=120,["support_spirit_strike_damage_+%_final"]=71,["support_split_projectile_damage_+%_final"]=72,["support_storm_barrier_damage_+%_final"]=373,["support_storm_barrier_damage_buff_base_duration_ms"]=371,["support_storm_barrier_damage_buff_time_threshold_ms"]=372,["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=374,["support_storm_barrier_skill_type_damage_+%_final"]=375,["support_storm_barrier_skill_type_damage_taken_when_hit_+%_final"]=376,["support_totem_damage_+%_final"]=16,["support_trap_and_mine_damage_+%_final"]=377,["support_trap_damage_+%_final"]=100,["support_trap_hit_damage_+%_final"]=378,["support_unbound_ailments_ailment_damage_+%_final"]=379,["support_void_manipulation_chaos_damage_+%_final"]=78,["support_weapon_elemental_damage_+%_final"]=9,["support_withered_base_duration_ms"]=141,["supported_skill_can_only_use_axe_and_sword"]=380,["supported_skill_can_only_use_dagger_and_claw"]=382,["supported_skill_can_only_use_mace_and_staff"]=383,["total_number_of_arrows_to_fire"]=33,["total_number_of_projectiles_to_fire"]=33,["trap_critical_strike_multiplier_+_per_power_charge"]=385,["trap_damage_+%"]=386,["trap_duration_+%"]=55,["trap_throwing_speed_+%"]=387,["trap_throwing_speed_+%_per_frenzy_charge"]=388,["trap_trigger_radius_+%"]=389,["triggered_skill_damage_+%"]=390,["triggered_spell_spell_damage_+%"]=17,["weapon_elemental_damage_+%"]=391,["withered_on_hit_chance_%"]=131} \ No newline at end of file +return {[1]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Melee Physical Damage"}}},stats={[1]="support_melee_physical_damage_+%_final"}},[2]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Bleeding and Poison caused by Melee Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Bleeding and Poison caused by Melee Hits"}}},stats={[1]="support_melee_physical_damage_poison_and_bleeding_damage_+%_final_from_melee_hits"}},[3]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Curses are Cast as Auras\nSupported Curse Skills also count as Aura Skills"}}},stats={[1]="curse_apply_as_aura"}},[4]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_echo_damage_+%_final"}},[5]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_elemental_proliferation_damage_+%_final"}},[6]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Using Supported Skills is Instant"}}},stats={[1]="base_skill_is_instant"}},[7]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Attack Skills deal %1%%% more Damage while on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Attack Skills deal %1%%% less Damage while on Full Life"}}},stats={[1]="support_damage_while_on_full_life_+%_final"}},[8]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Attack Skills deal %1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Attack Skills deal %1%%% less Elemental Damage"}}},stats={[1]="support_attack_skills_elemental_damage_+%_final"}},[9]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Weapon Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Weapon Elemental Damage"}}},stats={[1]="support_weapon_elemental_damage_+%_final"}},[10]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Area Damage"}}},stats={[1]="support_area_concentrate_area_damage_+%_final"}},[11]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_barrage_damage_+%_final"}},[12]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_multiple_projectile_damage_+%_final"}},[13]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_rain_projectile_damage_+%_final"}},[14]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_lesser_multiple_projectile_damage_+%_final"}},[15]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_gem_mine_damage_+%_final"}},[16]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_totem_damage_+%_final"}},[17]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Spells deal %1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Spells deal %1%%% reduced Spell Damage"}}},stats={[1]="triggered_spell_spell_damage_+%"}},[18]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Spell Damage"}}},stats={[1]="support_cast_on_crit_spell_damage_+%_final"}},[19]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Spells have %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Spells have %1%%% less Spell Damage"}}},stats={[1]="support_cast_on_melee_kill_spell_damage_+%_final"}},[20]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Triggered Spells deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Triggered Spells deal %1%%% less Damage"}}},stats={[1]="support_cast_while_channelling_triggered_skill_damage_+%_final"}},[21]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% reduced Mana Cost"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% increased Mana Cost"}}},stats={[1]="base_mana_cost_-%"}},[22]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Strike Skills target %1% additional nearby Enemy"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Supported Strike Skills target %1% additional nearby Enemies"}}},stats={[1]="melee_attack_number_of_spirit_strikes"}},[23]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra Targets for Supported Skills can be found %1%%% further away"}}},stats={[1]="extra_target_targeting_distance_+%"}},[24]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Area of Effect"}}},stats={[1]="base_skill_area_of_effect_+%"}},[25]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Area of Effect"}}},stats={[1]="support_concentrated_effect_skill_area_of_effect_+%_final"}},[26]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Area of Effect while Dead"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Area of Effect while Dead"}}},stats={[1]="area_of_effect_+%_while_dead"}},[27]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Aura Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Aura Area of Effect"}}},stats={[1]="base_aura_area_of_effect_+%"}},[28]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Aura effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Aura effect"}}},stats={[1]="aura_effect_+%"}},[29]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Critical Strike Chance"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Critical Strike Chance"}}},stats={[1]="support_multiple_projectiles_critical_strike_chance_+%_final"}},[30]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills Spend Life instead of Mana"}}},stats={[1]="base_use_life_in_place_of_mana"}},[31]={lang={English={[1]={limit={[1]={[1]=0,[2]=0}},text="Supported Skills fire a Payload Arrow into the air\nProjectiles from the Supported Skill Fire from where the Payload Arrow lands"}}},stats={[1]="projectiles_rain"}},[32]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignites caused by Supported Skills spread to other Enemies within a Radius of %1%"}}},stats={[1]="support_ignite_proliferation_radius"}},[33]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Supported Skills Fire Projectiles in random directions"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Supported Skills Fire Projectiles in a spiral"},[3]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Supported Skills Fire Projectiles in a spiral"},[4]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Supported Skills Fire Projectiles in a circle"},[5]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Supported Skills Fire Projectiles sequentially"}}},stats={[1]="power_siphon_fire_at_all_targets",[2]="total_number_of_projectiles_to_fire",[3]="total_number_of_arrows_to_fire",[4]="base_number_of_projectiles_in_spiral_nova",[5]="projectile_spiral_nova_angle",[6]="projectiles_nova",[7]="projectiles_barrage",[8]="rain_of_arrows_sequences_to_fire"}},[34]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Elemental Ailments caused by Supported Skills spread to other enemies in a Radius of %1%"}}},stats={[1]="elemental_status_effect_aura_radius"}},[35]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Kill Enemies that have 10%% Life or lower when Hit by Supported Skills"}}},stats={[1]="kill_enemy_on_hit_if_under_10%_life"}},[36]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills' Projectile Attack Hits deal up to 30%% more Damage to targets at the start of their movement, dealing less Damage to targets as the projectile travels farther"}}},stats={[1]="keystone_point_blank"}},[37]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strength's damage bonus applies to Projectile Attacks made with Supported Skills"}}},stats={[1]="keystone_strong_bowman"}},[38]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strength's damage bonus applies to Spell Damage as well for Supported Skills"}}},stats={[1]="strong_casting"}},[39]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]=1}},text="Throws a Remote Mine which uses the Supported Skill when detonated"},[2]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=2,[2]="#"}},text="Throws %2% Remote Mines which use the Supported Skill when detonated"}}},stats={[1]="is_remote_mine",[2]="number_of_mines_to_place"}},[40]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Skills throw up to 1 additional Trap"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills throw up to %1% additional Traps"}}},stats={[1]="number_of_additional_traps_to_throw"}},[41]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to throw up to 1 additional Trap or Mine"}}},stats={[1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine"}},[42]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to throw up to 2 additional Traps or Mines"}}},stats={[1]="support_additional_trap_mine_%_chance_for_2_additional_trap_mine"}},[43]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to throw up to 3 additional Traps or Mines"}}},stats={[1]="support_additional_trap_mine_%_chance_for_3_additional_trap_mine"}},[44]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=1},[3]={[1]=0,[2]=0}},text="Supported Skills will summon a Totem which uses that Skill"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=1},[3]={[1]=0,[2]=0}},text="Supported Skills will summon a Ballista Totem which uses that Skill"},[3]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0}},text="Supported Skills will summon %1% Totems which use that Skill"},[4]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0}},text="Supported Skills will summon %1% Ballista Totems which use that Skill"}}},stats={[1]="is_totem",[2]="number_of_totems_to_summon",[3]="is_ranged_attack_totem"}},[45]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Totem lasts %1% seconds"}}},stats={[1]="base_totem_duration"}},[46]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Projectiles from Supported Skills Pierce an additional Targets"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Projectiles from Supported Skills Pierce %1% additional Targets"}}},stats={[1]="projectile_base_number_of_targets_to_pierce"}},[47]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Trap lasts %1% seconds"}}},stats={[1]="base_trap_duration"}},[48]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Mine lasts %1% seconds"}}},stats={[1]="base_mine_duration"}},[49]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Mine lasts %1% seconds"}}},stats={[1]="support_remote_mine_2_base_mine_duration"}},[50]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d to maximum number of Summoned Ballista Totems"}}},stats={[1]="attack_skills_additional_ballista_totems_allowed"}},[51]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d to maximum number of Summoned Totems"}}},stats={[1]="base_number_of_totems_allowed"}},[52]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills Summon two Totems instead of one"}}},stats={[1]="summon_2_totems"}},[53]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% Trap placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Traps placed at a time"}}},stats={[1]="base_number_of_traps_allowed"}},[54]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% Remote Mine placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Remote Mines placed at a time"}}},stats={[1]="base_number_of_remote_mines_allowed"}},[55]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced duration"}}},stats={[1]="trap_duration_+%"}},[56]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced duration"}}},stats={[1]="mine_duration_+%"}},[57]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to Blind enemies on hit"}}},stats={[1]="global_chance_to_blind_on_hit_%"}},[58]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Blinding duration"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Blinding duration"}}},stats={[1]="blind_duration_+%"}},[59]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Critical Strike Chance"}}},stats={[1]="critical_strike_chance_+%"}},[60]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="base_critical_strike_multiplier_+"}},[61]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills Penetrate %1%%% Fire Resistance"}}},stats={[1]="base_reduce_enemy_fire_resistance_%"}},[62]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills Penetrate %1%%% Cold Resistance"}}},stats={[1]="base_reduce_enemy_cold_resistance_%"}},[63]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills Penetrate %1%%% Elemental Resistances"}}},stats={[1]="reduce_enemy_elemental_resistance_%"}},[64]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills Penetrate %1%%% Lightning Resistance"}}},stats={[1]="base_reduce_enemy_lightning_resistance_%"}},[65]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills Chain %1$+d times"}}},stats={[1]="number_of_chains"}},[66]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles freom Supported Skills Split towards %1% targets"}}},stats={[1]="projectile_number_to_split"}},[67]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles from Supported Skills Fork"}}},stats={[1]="projectiles_fork"}},[68]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Projectiles from Supported Skills Fork an additional Time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles from Supported Skills Fork %1% additional Times"}}},stats={[1]="number_of_additional_forks_base"}},[69]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Projectiles from Supported Skills Return to you after hitting targets"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Projectiles from Supported Skills Return to you at end of flight"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Projectiles from Supported Skills Return to you"}}},stats={[1]="projectiles_return",[2]="projectiles_return_if_no_hit_object"}},[70]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Hits"}}},stats={[1]="support_chain_hit_damage_+%_final"}},[71]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_spirit_strike_damage_+%_final"}},[72]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_split_projectile_damage_+%_final"}},[73]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_fork_projectile_damage_+%_final"}},[74]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills deal %1%%% more Damage with Hits for each Poison on the Enemy, up to %2%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1},[2]={[1]="#",[2]="#"}},text="Supported Skills deal %1%%% less Damage with Hits for each Poison on the Enemy, up to %2%"}}},stats={[1]="support_debilitate_hit_damage_+%_final_per_poison_stack",[2]="support_debilitate_hit_damage_max_poison_stacks"}},[75]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Poison"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Poison"}}},stats={[1]="support_debilitate_poison_damage_+%_final"}},[76]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Poison"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Poison"}}},stats={[1]="support_poison_poison_damage_+%_final"}},[77]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_return_projectile_damage_+%_final"}},[78]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Chaos Damage"}}},stats={[1]="support_void_manipulation_chaos_damage_+%_final"}},[79]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Spell Damage"}}},stats={[1]="support_controlled_destruction_spell_damage_+%_final"}},[80]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Spell Damage"}}},stats={[1]="support_efficacy_spell_damage_+%_final"}},[81]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage over Time"}}},stats={[1]="support_rapid_decay_damage_over_time_+%_final"}},[82]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage over Time"}}},stats={[1]="support_efficacy_damage_over_time_+%_final"}},[83]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_additional_totem_damage_+%_final"}},[84]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Ailments"}}},stats={[1]="support_better_ailments_ailment_damage_+%_final"}},[85]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Hits"}}},stats={[1]="support_better_ailments_hit_damage_+%_final"}},[86]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Physical Damage"}}},stats={[1]="support_brutality_physical_damage_+%_final"}},[87]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Fire Damage"}}},stats={[1]="support_chance_to_ignite_fire_damage_+%_final"}},[88]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Elemental Damage"}}},stats={[1]="support_gem_elemental_damage_+%_final"}},[89]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Ignite"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Ignite"}}},stats={[1]="support_ignite_prolif_ignite_damage_+%_final"}},[90]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Physical Damage"}}},stats={[1]="support_maim_chance_physical_damage_+%_final"}},[91]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained for each enemy hit by Supported Attack"}}},stats={[1]="base_life_gain_per_target"}},[92]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage to main target"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage to main target"}}},stats={[1]="support_melee_splash_damage_+%_final"}},[93]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills deal Splash Damage to surrounding targets"}}},stats={[1]="melee_splash"}},[94]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage to surrounding targets"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage to surrounding targets"}}},stats={[1]="support_melee_splash_damage_+%_final_for_splash"}},[95]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills Repeat %1% additional times"}}},stats={[1]="base_melee_attack_repeat_count"}},[96]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Skills Repeat an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Supported Skills Repeat an additional %1% times"}}},stats={[1]="base_spell_repeat_count"}},[97]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Cast Speed"}}},stats={[1]="support_multicast_cast_speed_+%_final"}},[98]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Melee Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Melee Attack Speed"}}},stats={[1]="support_multiple_attacks_melee_attack_speed_+%_final"}},[99]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Attack Damage"}}},stats={[1]="support_multiple_attack_damage_+%_final"}},[100]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Trap Damage"}}},stats={[1]="support_trap_damage_+%_final"}},[101]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_multithrow_damage_+%_final"}},[102]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage while Dead"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage while Dead"}}},stats={[1]="cast_on_death_damage_+%_final_while_dead"}},[103]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="cast_on_damage_taken_damage_+%_final"}},[104]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems and Minions summoned by Supported Skills have %1$+d%% Fire Resistance"}}},stats={[1]="summon_fire_resistance_+"}},[105]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems and Minions summoned by Supported Skills have %1$+d%% Cold Resistance"}}},stats={[1]="summon_cold_resistance_+"}},[106]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems and Minions summoned by Supported Skills have %1$+d%% Lightning Resistance"}}},stats={[1]="summon_lightning_resistance_+"}},[107]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Supported Skills have a %1%%% chance to apply Supported Curses on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Supported Skills apply supported Curses on Hit"}}},stats={[1]="apply_linked_curses_on_hit_%"}},[108]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot Cast Supported Curses"}}},stats={[1]="cannot_cast_curses"}},[109]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Supported Attacks have a %1%%% chance to Trigger a Supported Spell when you Crit an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Supported Attacks will Trigger a Supported Spell when you Crit an Enemy"}}},stats={[1]="cast_linked_spells_on_attack_crit_%"}},[110]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Supported Melee Attacks have a %1%%% chance to Trigger a Supported Spell on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Supported Melee Attacks will Trigger a Supported Spell on Kill"}}},stats={[1]="cast_linked_spells_on_melee_kill_%"}},[111]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="You cannot Cast Supported Triggerable Spells directly"}}},stats={[1]="spell_uncastable_if_triggerable",[2]="spell_only_castable_on_death"}},[112]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Supported Non-Minion Spells on Death"}}},stats={[1]="cast_on_death_%"}},[113]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Supported Spells when you are Stunned, or\nBlock a Stunning Hit"}}},stats={[1]="cast_on_stunned_%"}},[114]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Supported Spells when you fire Projectiles from a Wand Attack"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Supported Spells when you fire Projectiles from a Wand Attack"}}},stats={[1]="spellslinger_trigger_on_wand_attack_%"}},[115]={lang={English={[1]={limit={[1]={[1]=1,[2]=99},[2]={[1]=1,[2]="#"}},text="%1%%% chance to Trigger Supported Spells when you take a total of %2% Damage"},[2]={limit={[1]={[1]=100,[2]="#"},[2]={[1]=1,[2]="#"}},text="Trigger Supported Spells when you take a total of %2% Damage"}}},stats={[1]="cast_on_damage_taken_%",[2]="cast_on_damage_taken_threshold"}},[116]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Trigger a Supported Spell every %1% seconds while Channelling Supported Skills"}}},stats={[1]="cast_while_channelling_time_ms"}},[117]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Deals %1% Base Chaos Damage per second"}}},stats={[1]="base_chaos_damage_to_deal_per_minute"}},[118]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Deals %1% Base Fire Damage per second"}}},stats={[1]="base_fire_damage_to_deal_per_minute"}},[119]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Deals %1% Base Cold Damage per second"}}},stats={[1]="base_cold_damage_to_deal_per_minute"}},[120]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Supported Curses"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Supported Curses"}}},stats={[1]="curse_effect_+%"}},[121]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spells Cast by Totem have %1%%% more Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spells Cast by Totem have %1%%% less Cast Speed"}}},stats={[1]="support_spell_totem_cast_speed_+%_final"}},[122]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks used by Totem have %1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Attacks used by Totem have %1%%% less Attack Speed"}}},stats={[1]="support_attack_totem_attack_speed_+%_final"}},[123]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Causes Bleeding on Hit for %1% seconds"}}},stats={[1]="bleed_on_hit_base_duration"}},[124]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Auras do not affect you"}}},stats={[1]="aura_cannot_affect_self"}},[125]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Melee Physical Damage against Bleeding enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Melee Physical Damage against Bleeding enemies"}}},stats={[1]="support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"}},[126]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Projectile Speed"}}},stats={[1]="support_slower_projectiles_projectile_speed_+%_final"}},[127]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_reduced_duration_damage_+%_final"}},[128]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Skill Effect Duration"}}},stats={[1]="support_reduced_duration_skill_effect_duration_+%_final"}},[129]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]=99}},text="Supported Skills have a %1%%% chance to grant Elusive on Critical Strike"},[2]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=100,[2]="#"}},text="Supported Skills grant Elusive on Critical Strike"}}},stats={[1]="gain_elusive_on_crit_%_chance"}},[130]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills Poison Enemies on Hit"}}},stats={[1]="global_poison_on_hit"}},[131]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Supported Skills have %1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Supported Skills always Poison on Hit"}}},stats={[1]="base_chance_to_poison_on_hit_%"}},[132]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=1,[2]=99}},text="Supported Skills have %1%%% chance to inflict Withered on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=100,[2]="#"}},text="Supported Skills always inflict Withered on Hit"}}},stats={[1]="withered_on_hit_chance_%"}},[133]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills cannot inflict Elemental Ailments"}}},stats={[1]="cannot_inflict_status_ailments"}},[134]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies lose %1%%% Cold Resistance while Frozen"}}},stats={[1]="freeze_mine_cold_resistance_+_while_frozen"}},[135]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d%% to Critical Strike Multiplier while Elusive"}}},stats={[1]="critical_strike_multiplier_+_while_affected_by_elusive"}},[136]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain Arcane Surge after Spending a total of %1% Mana with Supported Skills"}}},stats={[1]="support_arcane_surge_gain_buff_on_mana_use_threshold"}},[137]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=3},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Arcane Surge grants %1%%% more Spell Damage\nArcane Surge grants %2%%% increased Cast Speed\nArcane Surge grants %3%%% of Mana Regenerated per second"}}},stats={[1]="support_arcane_surge_spell_damage_+%_final",[2]="support_arcane_surge_cast_speed_+%",[3]="support_arcane_surge_mana_regeneration_rate_per_minute_%"}},[138]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Arcane Surge lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Arcane Surge lasts %1% seconds"}}},stats={[1]="support_arcane_surge_base_duration_ms"}},[139]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Withered lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Withered lasts %1% seconds"}}},stats={[1]="support_withered_base_duration_ms"}},[140]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=1000,[2]=1000}},text="Withered lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]="#",[2]="#"}},text="Withered lasts %1% seconds"}}},stats={[1]="active_skill_withered_base_duration_ms"}},[141]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Arcane Surge lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Arcane Surge lasts %1% seconds"}}},stats={[1]="support_arcane_surge_duration_ms"}},[142]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Withered lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Withered lasts %1% seconds"}}},stats={[1]="support_withered_base_duration_ms"}},[143]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Arcane Surge lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Arcane Surge lasts %1% seconds"}}},stats={[1]="support_arcane_surge_base_duration_ms"}},[144]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain Innervation on Killing a Shocked Enemy with Supported Skills"}}},stats={[1]="support_innervate_gain_buff_on_killing_shocked_enemy"}},[145]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Innervation grants %1% to %2% Lightning Damage"}}},stats={[1]="support_innervate_minimum_added_lightning_damage",[2]="support_innervate_maximum_added_lightning_damage"}},[146]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Innervation lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Innervation lasts %1% seconds"}}},stats={[1]="support_innervate_buff_base_duration_ms"}},[147]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Every third Attack with Supported Melee Attacks deals a Ruthless Blow"}}},stats={[1]="support_ruthless_big_hit_max_count"}},[148]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ruthless Blows with Supported Skills deal %1%%% more Melee Damage"}}},stats={[1]="support_ruthless_big_hit_damage_+%_final"}},[149]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ruthless Blows with Supported Skills deal %1%%% more Damage with Bleeding caused by Melee Hits"}}},stats={[1]="support_ruthless_blow_bleeding_damage_from_melee_hits_+%_final"}},[150]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Ruthless Blows with Supported Skills have a base Stun Duration of %1% seconds"}}},stats={[1]="support_ruthless_big_hit_stun_base_duration_override_ms"}},[151]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Summon a Phantasm when Supported Skills, or Non-Phantasm Minions\nfrom Supported Skills, deal a Killing Blow"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon a Phantasm when Supported Skills, or Non-Phantasm Minions\nfrom Supported Skills, deal a Killing Blow"}}},stats={[1]="chance_to_summon_support_ghost_on_killing_blow_%"}},[152]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Effect of Chill on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Effect of Chill on Enemies"}}},stats={[1]="chill_effect_+%"}},[153]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Chill Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Chill Duration on Enemies"}}},stats={[1]="chill_duration_+%"}},[154]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]=1,[2]="#"}},text="Enemies Chilled by Supported Skills take %1%%% increased Cold Damage over Time"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]="#",[2]=-1}},text="Enemies Chilled by Supported Skills take %1%%% reduced Cold Damage over Time"}}},stats={[1]="support_chills_also_grant_cold_damage_taken_per_minute_+%"}},[155]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]="#",[2]="#"}},text="Enemies Chilled by Supported Skills have Cold Damage taken increased by Chill Effect"}}},stats={[1]="support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"}},[156]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]=1,[2]="#"}},text="Enemies in Chilling Areas from Supported Skills take %1%%% increased Cold Damage over Time"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]="#",[2]=-1}},text="Enemies in Chilling Areas from Supported Skills take %1%%% reduced Cold Damage over Time"}}},stats={[1]="support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"}},[157]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]="#",[2]="#"}},text="Enemies in Chilling Areas from Supported Skills have Cold Damage taken increased by Chill Effect"}}},stats={[1]="support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"}},[158]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Mine Throwing Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Mine Throwing Speed per Frenzy Charge"}}},stats={[1]="mine_throwing_speed_+%_per_frenzy_charge"}},[159]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Critical Strike Chance per\nPower Charge when used by Mines"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Critical Strike Chance per\nPower Charge when used by Mines"}}},stats={[1]="mine_critical_strike_chance_+%_per_power_charge"}},[160]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills have %1$+d%% to all Elemental Resistances"}}},stats={[1]="minion_elemental_resistance_%"}},[161]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills have %1$+d%% to all maximum Elemental Resistances"}}},stats={[1]="minion_maximum_all_elemental_resistances_%"}},[162]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills take %1%%% of their Maximum Life as Fire Damage per second"}}},stats={[1]="minion_fire_damage_%_of_maximum_life_taken_per_minute"}},[163]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills take %1%%% increased Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills take %1%%% reduced Fire Damage"}}},stats={[1]="minion_fire_damage_taken_+%"}},[164]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1% Fire Damage per second to Enemies near them"}}},stats={[1]="support_minion_instability_minion_base_fire_area_damage_per_minute"}},[165]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills have %1$+d to Radius of their Burning Effect"}}},stats={[1]="infernal_legion_minions_have_burning_effect_radius_+"}},[166]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d to Accuracy Rating"}}},stats={[1]="accuracy_rating"}},[167]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Accuracy Rating"}}},stats={[1]="accuracy_rating_+%"}},[168]={lang={English={[1]={limit={[1]={[1]=100,[2]=100}},text="Increases and Reductions to Spell Damage also apply to Attack Damage from this Skill"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Spell Damage also apply to Attack Damage from this Skill at %1%%% of their value"}}},stats={[1]="active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value"}},[169]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Supported Skills have %1%%% chance to gain a Power Charge on Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Supported Skills gain a Power Charge on Critical Strike"}}},stats={[1]="add_power_charge_on_critical_strike_%"}},[170]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d%% to Critical Strike Chance"}}},stats={[1]="additional_base_critical_strike_chance"}},[171]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$d%% chance to Freeze Enemies which are Chilled"}}},stats={[1]="additional_chance_to_freeze_chilled_enemies_%"}},[172]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d%% to Critical Strike Chance while Elusive"}}},stats={[1]="additional_critical_strike_chance_permyriad_while_affected_by_elusive"}},[173]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Overpowered applies -%1%%% chance to Block Attack and Spell Damage"}}},stats={[1]="apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"}},[174]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Area Damage"}}},stats={[1]="area_damage_+%"}},[175]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Attack Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Attack Critical Strike Chance"}}},stats={[1]="attack_critical_strike_chance_+%"}},[176]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Attack Damage"}}},stats={[1]="attack_damage_+%"}},[177]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Attacks deal %1% to %2% added Physical Damage with Weapons per 10 Rage"}}},stats={[1]="attack_minimum_added_physical_damage_per_10_rage",[2]="attack_maximum_added_physical_damage_per_10_rage"}},[178]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Attacks deal %1% to %2% added Physical Damage with Weapons while you have at least 10 Rage"}}},stats={[1]="attack_minimum_added_physical_damage_with_at_least_10_rage",[2]="attack_maximum_added_physical_damage_with_at_least_10_rage"}},[179]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Attacks deal %1% to %2% added Physical Damage with Weapons"}}},stats={[1]="attack_minimum_added_physical_damage_with_weapons",[2]="attack_maximum_added_physical_damage_with_weapons"}},[180]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="Supported Attacks have %1%%% of Damage Leeched as Mana"}}},stats={[1]="attack_skill_mana_leech_from_any_damage_permyriad"}},[181]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Attack Speed"}}},stats={[1]="attack_speed_+%"}},[182]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="Supported Attacks have %1%%% chance to Impale Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Supported Attacks always Impale Enemies on Hit"}}},stats={[1]="attacks_impale_on_hit_%_chance"}},[183]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Duration of Ailments on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Duration of Ailments on Enemies"}}},stats={[1]="base_all_ailment_duration_+%"}},[184]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Cast Speed"}}},stats={[1]="base_cast_speed_+%"}},[185]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="Supported Skills always Freeze Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0}},text="Supported Skills have %1%%% chance to Freeze"}}},stats={[1]="base_chance_to_freeze_%",[2]="always_freeze"}},[186]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="Supported Skills have %1%%% chance to Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Supported Skills always Ignite"}}},stats={[1]="base_chance_to_ignite_%"}},[187]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]=99}},text="Supported Skills have %1%%% chance to Shock"},[2]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=100,[2]="#"}},text="Supported Skills always Shock"}}},stats={[1]="base_chance_to_shock_%"}},[188]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="base_cooldown_speed_+%"}},[189]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Curse Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Curse Duration"}}},stats={[1]="base_curse_duration_+%"}},[190]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills deal no Chaos Damage"}}},stats={[1]="base_deal_no_chaos_damage"}},[191]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% chance to Knock Enemies Back on hit"}}},stats={[1]="base_global_chance_to_knockback_%"}},[192]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Enemies Slain from Supported Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Dropped by Enemies Slain from Supported Skills"}}},stats={[1]="base_killed_monster_dropped_item_quantity_+%"}},[193]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Enemies Slain from Supported Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Enemies Slain from Supported Skills"}}},stats={[1]="base_killed_monster_dropped_item_rarity_+%"}},[194]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained for each Enemy hit by Attacks from Supported Skills"}}},stats={[1]="base_life_gain_per_target"}},[195]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have a Base Mine Detonation Time of %1% seconds"}}},stats={[1]="base_mine_detonation_time_ms"}},[196]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Phantasm"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Phantasm"}}},stats={[1]="base_number_of_support_ghosts_allowed"}},[197]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% of Physical Damage Converted to Lightning Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_lightning"}},[198]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Damage with Poison"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Damage with Poison"}}},stats={[1]="base_poison_damage_+%"}},[199]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Poison Duration"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Poison Duration"}}},stats={[1]="base_poison_duration_+%"}},[200]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Projectile Speed"}}},stats={[1]="base_projectile_speed_+%"}},[201]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Stun Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Stun Duration on Enemies"}}},stats={[1]="base_stun_duration_+%"}},[202]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% reduced Enemy Stun Threshold"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% increased Enemy Stun Threshold"}}},stats={[1]="base_stun_threshold_reduction_+%"}},[203]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Supported Attacks have %1%%% chance to cause Bleeding"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Supported Attacks cause Bleeding"},[3]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0}},text="Supported Attacks cause Bleeding"},[4]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Supported Attacks cannot cause Bleeding"}}},stats={[1]="bleed_on_hit_with_attacks_%",[2]="global_bleed_on_hit",[3]="cannot_cause_bleeding"}},[204]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Attacks deal %1%%% increased Damage with Bleeding"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Attacks deal %1%%% reduced Damage with Bleeding"}}},stats={[1]="bleeding_damage_+%"}},[205]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Burning Damage"}}},stats={[1]="burn_damage_+%"}},[206]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=100,[2]="#"}},text="Supported Skills grant Fortify on Melee hit"},[2]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]=99}},text="Supported Skills have %1%%% chance to grant Fortify on Melee hit"}}},stats={[1]="chance_to_fortify_on_melee_hit_+%"}},[207]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Supported Skills have %1%%% chance to gain a Frenzy Charge on Killing a Frozen Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Supported Skills gain a Frenzy Charge on Killing a Frozen Enemy"}}},stats={[1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"}},[208]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Curse Skills have %1%%% chance to apply to Hexproof Enemies"}}},stats={[1]="chance_to_ignore_hexproof_%"}},[209]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Summon a Phantasm when Supported Skills, or Non-Phantasm Minions\nfrom Supported Skills, Hit a Rare or Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon a Phantasm when Supported Skills, or Non-Phantasm Minions\nfrom Supported Skills, Hit a Rare or Unique Enemy"}}},stats={[1]="chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"}},[210]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Channelling Skills deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Channelling Skills deal %1%%% reduced Damage"}}},stats={[1]="channelled_skill_damage_+%"}},[211]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Chaos Damage"}}},stats={[1]="chaos_damage_+%"}},[212]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills gain %1%%% of Cold Damage as Extra Fire Damage"}}},stats={[1]="cold_damage_%_to_add_as_fire"}},[213]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Cold Damage"}}},stats={[1]="cold_damage_+%"}},[214]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect of Supported Curses"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect of Supported Curses"}}},stats={[1]="curse_area_of_effect_+%"}},[215]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Damage over Time"}}},stats={[1]="damage_over_time_+%"}},[216]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Damage"}}},stats={[1]="damage_+%"}},[217]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Damage with Hits against Frozen Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Damage with Hits against Frozen Enemies"}}},stats={[1]="damage_+%_vs_frozen_enemies"}},[218]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Damage while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Damage while Leeching Energy Shield"}}},stats={[1]="damage_+%_while_es_leeching"}},[219]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Damage while Leeching Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Damage while Leeching Life"}}},stats={[1]="damage_+%_while_life_leeching"}},[220]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Damage while Leeching Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Damage while Leeching Mana"}}},stats={[1]="damage_+%_while_mana_leeching"}},[221]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]="#"}},text="Damaging Ailments inflicted with Supported Skills deal damage %1%%% faster"}}},stats={[1]="damaging_ailments_deal_damage_+%_faster"}},[222]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills inflict Decay on Hit, dealing %1% Chaos Damage per second for 8 seconds"}}},stats={[1]="deal_chaos_damage_per_second_for_10_seconds_on_hit"}},[223]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills deal no Elemental Damage"}}},stats={[1]="deal_no_elemental_damage"}},[224]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills deal %1%%% less Damage"}}},stats={[1]="deathmark_minion_damage_+%_final"}},[225]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems cannot gain Infusion"}}},stats={[1]="display_totems_no_infusion"}},[226]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Elemental Damage"}}},stats={[1]="elemental_damage_+%"}},[227]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Elusive from Supported Skills"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Elusive from Supported Skills"}}},stats={[1]="elusive_effect_+%"}},[228]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% of Damage Leeched as Energy Shield"}}},stats={[1]="energy_shield_leech_from_any_damage_permyriad"}},[229]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Fire Damage"}}},stats={[1]="fire_damage_+%"}},[230]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Fortify duration"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Fortify duration"}}},stats={[1]="fortify_duration_+%"}},[231]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Freeze Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Freeze Duration on Enemies"}}},stats={[1]="freeze_duration_+%"}},[232]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have Added Spell Damage equal to %1%%% of Damage of Equipped Wand\nIf two Wands are Equipped, each contributes half as much Added Damage"}}},stats={[1]="gain_%_of_base_wand_damage_as_added_spell_damage"}},[233]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=99}},text="%2%%% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit from Supported Skills"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=100,[2]="#"}},text="Gain an Endurance Charge when you Stun an Enemy with a Melee Hit from Supported Skills"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Gain an Endurance Charge when you Stun an Enemy with a Melee Hit from Supported Skills"}}},stats={[1]="gain_endurance_charge_on_melee_stun",[2]="gain_endurance_charge_on_melee_stun_%"}},[234]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Inspiration Charge when you Spend Mana for Supported Skills"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Inspiration Charge when you Spend Mana for Supported Skills"}}},stats={[1]="gain_righteous_charge_on_mana_spent_%"}},[235]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills gain a Vaal Soul on Hit\nYou can only generate a Soul every %1% seconds"}}},stats={[1]="gain_vaal_soul_on_hit_cooldown_ms"}},[236]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %d%% chance to Cause Monsters to Flee"}}},stats={[1]="global_hit_causes_monster_flee_%"}},[237]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills have %1% to %2% added Chaos Damage"}}},stats={[1]="global_minimum_added_chaos_damage",[2]="global_maximum_added_chaos_damage"}},[238]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills have %1% to %2% added Cold Damage"}}},stats={[1]="global_minimum_added_cold_damage",[2]="global_maximum_added_cold_damage"}},[239]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills have %1% to %2% added Fire Damage"}}},stats={[1]="global_minimum_added_fire_damage",[2]="global_maximum_added_fire_damage"}},[240]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills have %1% to %2% added Lightning Damage"}}},stats={[1]="global_minimum_added_lightning_damage",[2]="global_maximum_added_lightning_damage"}},[241]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills have %1% to %2% added Physical Damage"}}},stats={[1]="global_minimum_added_physical_damage",[2]="global_maximum_added_physical_damage"}},[242]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% reduced Enemy Block Chance"}}},stats={[1]="global_reduce_enemy_block_%"}},[243]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Poison"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Poison"}}},stats={[1]="hit_and_poison_damage_+%"}},[244]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Poison for each Poison on the Enemy"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Poison for each Poison on the Enemy"}}},stats={[1]="hit_and_poison_damage_+%_per_poison_on_enemy"}},[245]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Ignite Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Ignite Duration on Enemies"}}},stats={[1]="ignite_duration_+%"}},[246]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Ignited by Supported Skills have %1$+d%% to Fire Resistance"}}},stats={[1]="ignites_apply_fire_resistance_+"}},[247]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Attacks have %1%%% increased Impale Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Attacks have %1%%% reduced Impale Effect"}}},stats={[1]="impale_debuff_effect_+%"}},[248]={lang={English={[1]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextPhysReductionNotNegative"},limit={[1]={[1]="#",[2]="#"}},text="Enemies Impaled by Supported Skills have %1$+d%% to Total Physical Damage Reduction against Impale Hits"}}},stats={[1]="impale_phys_reduction_%_penalty"}},[249]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills deal %1%%% more Physical Damage"}}},stats={[1]="impale_support_physical_damage_+%_final"}},[250]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Area Damage"}}},stats={[1]="inc_aoe_plus_more_area_damage_+%_final"}},[251]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Inspiration Charge Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Inspiration Charge Duration"}}},stats={[1]="inspiration_charge_duration_+%"}},[252]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Knockback Distance"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Knockback Distance"}}},stats={[1]="knockback_distance_+%"}},[253]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% of Damage Leeched as Life"}}},stats={[1]="life_leech_from_any_damage_permyriad"}},[254]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Lightning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Lightning Damage"}}},stats={[1]="lightning_damage_+%"}},[255]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]=99}},text="Supported Attacks have %1%%% chance to Maim on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=100,[2]="#"}},text="Supported Attacks always Maim on Hit"}}},stats={[1]="maim_on_hit_%"}},[256]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% of Damage Leeched as Mana"}}},stats={[1]="mana_leech_from_any_damage_permyriad"}},[257]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills have base Mana Cost equal to %1%%% of Unreserved Maximum Mana, if that value is higher\nSupported Skills gain Added Lightning Damage equal to %2%%% of Mana Cost, if Mana Cost is not higher than the maximum you could spend"}}},stats={[1]="manaweave_cost_equals_%_unreserved_mana",[2]="manaweave_added_lightning_damage_%_cost_if_payable"}},[258]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Intensity"}}},stats={[1]="maximum_intensify_stacks"}},[259]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Melee Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Melee Damage"}}},stats={[1]="melee_damage_+%"}},[260]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Melee Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Melee Damage against Bleeding Enemies"}}},stats={[1]="melee_damage_vs_bleeding_enemies_+%"}},[261]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Melee Physical Damage"}}},stats={[1]="melee_physical_damage_+%"}},[262]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Melee Splash Area of Effect"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Melee Splash Area of Effect"}}},stats={[1]="melee_splash_area_of_effect_+%_final"}},[263]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Mine Detonation Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Mine Detonation Area of Effect"}}},stats={[1]="mine_detonation_radius_+%"}},[264]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mines from Supported Skills have %1%%% increased Detonation Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mines from Supported Skills have %1%%% reduced Detonation Speed"}}},stats={[1]="mine_detonation_speed_+%"}},[265]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Mine Throwing Speed"}}},stats={[1]="mine_laying_speed_+%"}},[266]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills have %1% to %2% added Cold Damage per Frenzy Charge"}}},stats={[1]="minimum_added_cold_damage_per_frenzy_charge",[2]="maximum_added_cold_damage_per_frenzy_charge"}},[267]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills have %1%%% additional Physical Damage Reduction"}}},stats={[1]="minion_additional_physical_damage_reduction_%"}},[268]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Minion Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Minion Attack Speed"}}},stats={[1]="minion_attack_speed_+%"}},[269]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Minion Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Minion Cast Speed"}}},stats={[1]="minion_cast_speed_+%"}},[270]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills have %1%%% chance to Taunt on Hit"}}},stats={[1]="minion_chance_to_taunt_on_hit_%"}},[271]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills deal %1%%% reduced Damage"}}},stats={[1]="minion_damage_+%"}},[272]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFeedingFrenzy"},limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills have %1%%% chance to grant Feeding Frenzy to you on Hit"}}},stats={[1]="minion_grant_puppet_master_buff_to_parent_on_hit_%"}},[273]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Minion maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Minion maximum Life"}}},stats={[1]="minion_maximum_life_+%"}},[274]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Minion Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Minion Movement Speed"}}},stats={[1]="minion_movement_speed_+%"}},[275]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Minions from Supported Skills have %1%%% chance to inflict Exposure on Hit, applying -10%% to the Elemental Resistance matching highest Damage type taken by Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Minions from Supported Skills inflict Exposure on Hit, applying -10%% to the Elemental Resistance matching highest Damage type taken by Enemy"}}},stats={[1]="minions_inflict_exposure_on_hit_%_chance"}},[276]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="First Repeat of Supported Skills deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="First Repeat of Supported Skills deals %1%%% less Damage"}}},stats={[1]="multistrike_damage_+%_final_on_first_repeat"}},[277]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Second Repeat of Supported Skills deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Second Repeat of Supported Skills deals %1%%% less Damage"}}},stats={[1]="multistrike_damage_+%_final_on_second_repeat"}},[278]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Third Repeat of Supported Skills deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Third Repeat of Supported Skills deals %1%%% less Damage"}}},stats={[1]="multistrike_damage_+%_final_on_third_repeat"}},[279]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elusive from Supported Skills also grants %1$+d%% to Critical Strike Multiplier for\nSkills Supported by Nightblade"}}},stats={[1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"}},[280]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Non-Curse Auras from Supported Skills have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Non-Curse Auras from Supported Skills have %1%%% reduced Effect"}}},stats={[1]="non_curse_aura_effect_+%"}},[281]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Effect of non-Damaging Ailments on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Effect of non-Damaging Ailments on Enemies"}}},stats={[1]="non_damaging_ailment_effect_+%"}},[282]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Skills can apply an additional Curse"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Supported Skills can apply %1% additional Curses"}}},stats={[1]="number_of_additional_curses_allowed"}},[283]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]=1,[2]=1}},text="Supported Skills throw up to 1 additional Mine"},[2]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]=2,[2]="#"}},text="Supported Skills throw up to %1% additional Mines"}}},stats={[1]="number_of_additional_mines_to_place"}},[284]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Skills fire an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Supported Skills fire %1% additional Projectiles"}}},stats={[1]="number_of_additional_projectiles"}},[285]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Skills can have up to %1% additional Remote Mine placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills can have up to %1% additional Remote Mines placed at a time"}}},stats={[1]="number_of_additional_remote_mines_allowed"}},[286]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Skills can have up to %1% additional Trap placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills can have up to %1% additional Traps placed at a time"}}},stats={[1]="number_of_additional_traps_allowed"}},[287]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills gain Onslaught for %1% seconds on Killing a Shocked Enemy"}}},stats={[1]="onslaught_time_granted_on_killing_shocked_enemy_ms"}},[288]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when a Mine from Supported\nSkills is Detonated targeting an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Frenzy Charge when a Mine from Supported Skills is Detonated targeting an Enemy"}}},stats={[1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"}},[289]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Supported Skills gain a Frenzy Charge when your Trap is triggered by an Enemy"}}},stats={[1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"}},[290]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when a Mine from Supported\nSkills is Detonated targeting an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Power Charge when a Mine from Supported Skills is Detonated targeting an Enemy"}}},stats={[1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"}},[291]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to gain a Power Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Supported Skills gain a Power Charge when your Trap is triggered by an Enemy"}}},stats={[1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"}},[292]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills gain %1%%% of Physical Damage as Extra Chaos Damage"}}},stats={[1]="physical_damage_%_to_add_as_chaos"}},[293]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills gain %1%%% of Physical Damage as Extra Fire Damage"}}},stats={[1]="physical_damage_%_to_add_as_fire"}},[294]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills gain %1%%% of Physical Damage as Extra Lightning Damage"}}},stats={[1]="physical_damage_%_to_add_as_lightning"}},[295]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Physical Damage"}}},stats={[1]="physical_damage_+%"}},[296]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Cooldown Recovery Speed for throwing Traps"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Cooldown Recovery Speed for throwing Traps"}}},stats={[1]="placing_traps_cooldown_recovery_+%"}},[297]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Projectile Damage"}}},stats={[1]="projectile_damage_+%"}},[298]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies have %1%%% reduced chance to Dodge Hits from Supported Skills"}}},stats={[1]="reduce_enemy_dodge_%"}},[299]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Shock Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Shock Duration on Enemies"}}},stats={[1]="shock_duration_+%"}},[300]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% of Cold Damage Converted to Fire Damage"}}},stats={[1]="skill_cold_damage_%_to_convert_to_fire"}},[301]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Supported Skills and Damaging Ailments they inflict"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Supported Skills and Damaging Ailments they inflict"}}},stats={[1]="skill_effect_and_damaging_ailment_duration_+%"}},[302]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Skill Effect Duration"}}},stats={[1]="skill_effect_duration_+%"}},[303]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% of Physical Damage Converted to Lightning Damage"}}},stats={[1]="skill_physical_damage_%_to_convert_to_lightning"}},[304]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Spell Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Spell Critical Strike Chance"}}},stats={[1]="spell_critical_strike_chance_+%"}},[305]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Spell Damage"}}},stats={[1]="spell_damage_+%"}},[306]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Final Repeat of Supported Skills has %1%%% chance to deal Double Damage"}}},stats={[1]="spell_echo_plus_chance_double_damage_%_final"}},[307]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="When you Hit an Enemy with an Arrow from a Supported Skill, Summon a Mirage Archer which uses that Skill"}}},stats={[1]="summon_mirage_archer_on_hit"}},[308]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Non-Instant Skills have %1$+d Cooldown Use"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Supported Non-InstantSkills have %1$+d Cooldown Uses"}}},stats={[1]="support_added_cooldown_count_if_not_instant"}},[309]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Spell Damage while you have Arcane Surge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Spell Damage while you have Arcane Surge"}}},stats={[1]="support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge"}},[310]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Aura Lasts %1% seconds"}}},stats={[1]="support_aura_duration_base_buff_duration"}},[311]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Mana Reservation Lasts %1% seconds"}}},stats={[1]="support_aura_duration_base_reserve_duration"}},[312]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Attack Time per Projectile"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Attack Time per Projectile"}}},stats={[1]="support_barrage_attack_time_+%_per_projectile_fired"}},[313]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Trap and Mine Throwing Time per Projectile"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Trap and Mine Throwing Time per Projectile"}}},stats={[1]="support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired"}},[314]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Supported Skills have a %1%%% chance to Trigger Shockwave on Melee Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Supported Skills will Trigger Shockwave on Melee Hit"}}},stats={[1]="support_blunt_chance_to_trigger_shockwave_on_hit_%"}},[315]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Burning Damage"}}},stats={[1]="support_burning_damage_+%_final"}},[316]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Attacks deal %1%%% more Damage with Bleeding"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Attacks deal %1%%% less Damage with Bleeding"}}},stats={[1]="support_chance_to_bleed_bleeding_damage_+%_final"}},[317]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Chaos Damage"}}},stats={[1]="support_chaos_attacks_damage_+%_final"}},[318]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_clustertrap_damage_+%_final"}},[319]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage while on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage while on Full Energy Shield"}}},stats={[1]="support_energy_shield_leech_damage_+%_on_full_energy_shield_final"}},[320]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage while Leeching Energy Shield"}}},stats={[1]="support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"}},[321]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Ailments caused by Melee Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Ailments caused by Melee Hits"}}},stats={[1]="support_fortify_ailment_damage_+%_final_from_melee_hits"}},[322]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Melee Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Melee Damage"}}},stats={[1]="support_fortify_melee_damage_+%_final"}},[323]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Phantasms last %1% seconds"}}},stats={[1]="support_ghost_base_duration"}},[324]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Cold Damage Over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Cold Damage Over Time"}}},stats={[1]="support_hypothermia_cold_damage_over_time_+%_final"}},[325]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Hits and Ailments against Chilled Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Hits and Ailments against Chilled Enemies"}}},stats={[1]="support_hypothermia_damage_+%_vs_chilled_enemies_final"}},[326]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Maimed by Supported Skills take %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Maimed by Supported Skills take %1%%% reduced Physical Damage"}}},stats={[1]="support_maimed_enemies_physical_damage_taken_+%"}},[327]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_minefield_mine_damage_+%_final"}},[328]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Mine Throwing Speed"}}},stats={[1]="support_minefield_mine_throwing_speed_+%_final"}},[329]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills deal %1% to %2% added Fire Damage against Burning Enemies"}}},stats={[1]="global_minimum_added_fire_damage_vs_burning_enemies",[2]="global_maximum_added_fire_damage_vs_burning_enemies"}},[330]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_minion_damage_+%_final"}},[331]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1%%% more Damage to Enemies that are Near you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills deal %1%%% less Damage to Enemies that are Near you"}}},stats={[1]="support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"}},[332]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills take %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills take %1%%% less Damage"}}},stats={[1]="support_minion_defensive_stance_minion_damage_taken_+%_final"}},[333]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1%%% more Damage to your Deathmarked Enemy"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills deal %1%%% less Damage to your Deathmarked Enemy"}}},stats={[1]="support_minion_focus_fire_damage_+%_final_vs_focussed_target"}},[334]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Minion maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Minion maximum Life"}}},stats={[1]="support_minion_maximum_life_+%_final"}},[335]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1%%% more Damage while you have Feeding Frenzy"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills deal %1%%% less Damage while you have Feeding Frenzy"}}},stats={[1]="support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"}},[336]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions from Supported Skills deal %1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions from Supported Skills deal %1%%% less Elemental Damage"}}},stats={[1]="support_minion_totem_resistance_elemental_damage_+%_final"}},[337]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills always target your Deathmarked Enemy if possible"}}},stats={[1]="support_minion_use_focussed_target"}},[338]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mirage Archer uses Supported Skill with %1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mirage Archer uses Supported Skill with %1%%% less Attack Speed"}}},stats={[1]="support_mirage_archer_attack_speed_+%_final"}},[339]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mirage Archer deals %1%%% more Damage with Supported Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mirage Archer deals %1%%% less Damage with Supported Skills"}}},stats={[1]="support_mirage_archer_damage_+%_final"}},[340]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOverpowered"},limit={[1]={[1]="#",[2]="#"}},text="Inflict Overpowered for %1% seconds when Blocked"}}},stats={[1]="support_overpowered_base_duration_ms"}},[341]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Supported Skills also fire Projectiles from up to %1% point on each side of you"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Supported Skills also fire Projectiles from up to %1% points on each side of you"}}},stats={[1]="support_parallel_projectile_number_of_points_per_side"}},[342]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_parallel_projectiles_damage_+%_final"}},[343]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Chaos Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Chaos Damage over Time"}}},stats={[1]="support_phys_chaos_projectile_chaos_damage_over_time_+%_final"}},[344]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Physical Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Physical Damage over Time"}}},stats={[1]="support_phys_chaos_projectile_physical_damage_over_time_+%_final"}},[345]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Physical Projectile Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Physical Projectile Spell Damage"}}},stats={[1]="support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final"}},[346]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Attack Skills deal %1%%% more Damage with Bleeding and Poison caused by Projectile Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Attack Skills deal %1%%% more Damage with Bleeding and Poison caused by Projectile Hits"}}},stats={[1]="support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits"}},[347]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_pierce_projectile_damage_+%_final"}},[348]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage per Power Charge"}}},stats={[1]="support_power_charge_on_crit_damage_+%_final_per_power_charge"}},[349]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Physical Projectile Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Physical Projectile Attack Damage"}}},stats={[1]="support_projectile_attack_physical_damage_+%_final"}},[350]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Projectile Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Projectile Attack Speed"}}},stats={[1]="support_projectile_attack_speed_+%_final"}},[351]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Area of Effect"}}},stats={[1]="support_pulverise_area_of_effect_+%_final"}},[352]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Attack Speed"}}},stats={[1]="support_pulverise_attack_speed_+%_final"}},[353]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Melee Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Melee Area Damage"}}},stats={[1]="support_pulverise_melee_area_damage_+%_final"}},[354]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_greater_volley_projectile_damage_+%_final"}},[355]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills grant 1 Rage on Melee Hit, no more than once every %1% seconds"}}},stats={[1]="support_rage_gain_rage_on_melee_hit_cooldown_ms"}},[356]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies have -%1%%% chance to Block Attack or Spell Damage from Supported Skills"}}},stats={[1]="support_reduce_enemy_block_and_spell_block_%"}},[357]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies have -%1%%% chance to Dodge Attack or Spell Hits from Supported Skills"}}},stats={[1]="support_reduce_enemy_dodge_and_spell_dodge_%"}},[358]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Critical Strike Chance per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Critical Strike Chance per Inspiration Charge"}}},stats={[1]="critical_strike_chance_+%_per_righteous_charge"}},[359]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Elemental Damage per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Elemental Damage per Inspiration Charge"}}},stats={[1]="elemental_damage_+%_final_per_righteous_charge"}},[360]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose all Inspiration Charges after Spending a total of %1% Mana with Supported Skills"}}},stats={[1]="lose_all_righteous_charges_on_mana_use_threshold"}},[361]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have a Base Mine Detonation Time of %1% seconds"}}},stats={[1]="support_remote_mine_2_base_mine_detonation_time_ms"}},[362]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_remote_mine_2_damage_+%_final"}},[363]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage for each prior Mine in Detonation Sequence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage for each prior Mine in Detonation Sequence"}}},stats={[1]="support_remote_mine_damage_+%_final_per_mine_detonation_cascade"}},[364]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Mine Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Mine Damage with Hits"}}},stats={[1]="support_remote_mine_hit_damage_+%_final"}},[365]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to grant Onslaught for 3 seconds when you Hit a Unique Enemy"}}},stats={[1]="support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"}},[366]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=2},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Supported Skills have %1%%% chance to grant Onslaught for %2% seconds on\ndealing a Killing Blow"}}},stats={[1]="support_scion_onslaught_on_killing_blow_%_chance",[2]="support_scion_onslaught_on_killing_blow_duration_ms"}},[367]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Supported Skills grant Combat Rush on Hit\nCombat Rush lasts %1% second or until you use a Travel Skill"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills grant Combat Rush on Hit\nCombat Rush lasts %1% seconds or until you use a Travel Skill"}}},stats={[1]="support_slashing_buff_base_duration_ms"}},[368]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Combat Rush grants %1%%% more Attack and Cast Speed to Travel Skills that are not Supported by Close Combat"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Combat Rush grants %1%%% less Attack and Cast Speed to Travel Skills that are not Supported by Close Combat"}}},stats={[1]="support_slashing_buff_attack_cast_speed_+%_final_to_grant"}},[369]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills deal up to %1%%% more Melee Damage to Enemies, based on proximity"}}},stats={[1]="support_slashing_damage_+%_final_from_distance"}},[370]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_slower_projectiles_damage_+%_final"}},[371]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Area Damage per Intensity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Area Damage per Intensity"}}},stats={[1]="support_spell_boost_area_damage_+%_final_per_charge"}},[372]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Area of Effect per Intensity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Area of Effect per Intensity"}}},stats={[1]="support_spell_boost_area_of_effect_+%_final_per_charge"}},[373]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills gain Intensity when used\nSupported Skills lose Intensity every %1% seconds while moving, or immediately if you teleport"}}},stats={[1]="support_spell_boost_charge_loss_interval_ms_while_moving"}},[374]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Area of Effect"}}},stats={[1]="support_spell_cascade_area_of_effect_+%_final"}},[375]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_spell_cascade_damage_+%_final"}},[376]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0}},text="Supported Area of Effect Skills also affect areas in front of and behind the targeted area"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0}},text="Supported Area of Effect Skills also affect areas in front of, behind,\nand on each side of the targeted area"}}},stats={[1]="support_spell_cascade_number_of_cascades_per_side",[2]="support_spell_cascade_sideways"}},[377]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Infusion lasts %1% second after you finish Channelling"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Infusion lasts %1% seconds after you finish Channelling"}}},stats={[1]="support_storm_barrier_damage_buff_base_duration_ms"}},[378]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Gain Infusion after Channelling a Supported Skill for %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain Infusion after Channelling a Supported Skill for %1% seconds"}}},stats={[1]="support_storm_barrier_damage_buff_time_threshold_ms"}},[379]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage"}}},stats={[1]="support_storm_barrier_damage_+%_final"}},[380]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="While Channelling Supported Skills, take %1%%% more Physical Damage from Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="While Channelling Supported Skills, take %1%%% less Physical Damage from Hits"}}},stats={[1]="support_storm_barrier_physical_damage_taken_when_hit_+%_final"}},[381]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamageTypes"},limit={[1]={[1]=1,[2]="#"}},text="Infusion grants %1%%% more Damage of Types matching Supported Skill Gem's tags"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamageTypes"},limit={[1]={[1]="#",[2]=-1}},text="Infusion grants %1%%% less Damage of Types matching Supported Skill Gem's tags"}}},stats={[1]="support_storm_barrier_skill_type_damage_+%_final"}},[382]={lang={English={[1]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamageTypes"},limit={[1]={[1]="#",[2]="#"}},text="While Channelling a Supported Skill, take %1%%% less Damage from Hits of types matching the Skill Gem's Tags"}}},stats={[1]="support_storm_barrier_skill_type_damage_taken_when_hit_+%_final"}},[383]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Trap and Mine Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Trap and Mine Damage"}}},stats={[1]="support_trap_and_mine_damage_+%_final"}},[384]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Trap Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Trap Damage with Hits"}}},stats={[1]="support_trap_hit_damage_+%_final"}},[385]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage with Ailments"}}},stats={[1]="support_unbound_ailments_ailment_damage_+%_final"}},[386]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills can only be used with Axes or Swords"}}},stats={[1]="supported_skill_can_only_use_axe_and_sword"}},[387]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills can only be used with Bows"}}},stats={[1]="skill_can_only_use_bow"}},[388]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills can only be used with Claws or Daggers"}}},stats={[1]="supported_skill_can_only_use_dagger_and_claw"}},[389]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="Supported Skills can only be used with Maces, Sceptres or Staves"}}},stats={[1]="supported_skill_can_only_use_mace_and_staff"}},[390]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills can only be used with Bows or Wands"}}},stats={[1]="skill_can_only_use_non_melee_weapons"}},[391]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Skills have %1$+d%% to Critical Strike Multiplier per Power Charge when used by Traps"}}},stats={[1]="trap_critical_strike_multiplier_+_per_power_charge"}},[392]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Trap Damage"}}},stats={[1]="trap_damage_+%"}},[393]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Trap Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Trap Throwing Speed"}}},stats={[1]="trap_throwing_speed_+%"}},[394]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Trap Throwing Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Trap Throwing Speed per Frenzy Charge"}}},stats={[1]="trap_throwing_speed_+%_per_frenzy_charge"}},[395]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% increased Trap Trigger Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% reduced Trap Trigger Area of Effect"}}},stats={[1]="trap_trigger_radius_+%"}},[396]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Triggered Spells deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Triggered Spells deal %1%%% reduced Damage"}}},stats={[1]="triggered_skill_damage_+%"}},[397]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% increased Elemental Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% reduced Elemental Damage with Weapons"}}},stats={[1]="weapon_elemental_damage_+%"}},[398]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},[2]={k="reminderstring",v="ReminderTextReoccurringSpell"},limit={[1]={[1]=1,[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]="#"},[4]={[1]="#",[2]="#"}},text="Supported Spells gain a Seal every %1% seconds, to a maximum of %3% Seals\nSupported Spells are Unsealed when cast, and their effects Reoccur for each Seal lost"}}},stats={[1]="support_anticipation_charge_gain_interval_ms",[2]="virtual_support_anticipation_charge_gain_interval_ms",[3]="support_anticipation_rapid_fire_count",[4]="skill_max_unleash_seals"}},[399]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills deal %1%%% more Damage when Reoccurring"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills deal %1%%% less Damage when Reoccurring"}}},stats={[1]="support_spell_rapid_fire_repeat_use_damage_+%_final"}},[400]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Each Mine from Supported Skills applies %1%%% chance to deal Double Damage to Hits against Enemies near it, up to a maximum of 100%%"}}},stats={[1]="support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"}},[401]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAggressiveMinions"},limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills are Aggressive"}}},stats={[1]="minion_larger_aggro_radius"}},[402]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefensiveMinions"},limit={[1]={[1]="#",[2]="#"}},text="Minions from Supported Skills are Defensive"}}},stats={[1]="minions_are_defensive"}},["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=288,["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=289,["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=290,["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=291,["accuracy_rating"]=166,["accuracy_rating_+%"]=167,["active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value"]=168,["active_skill_withered_base_duration_ms"]=140,["add_power_charge_on_critical_strike_%"]=169,["additional_base_critical_strike_chance"]=170,["additional_chance_to_freeze_chilled_enemies_%"]=171,["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=172,["always_freeze"]=185,["apply_linked_curses_on_hit_%"]=107,["apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"]=173,["area_damage_+%"]=174,["area_of_effect_+%_while_dead"]=26,["attack_critical_strike_chance_+%"]=175,["attack_damage_+%"]=176,["attack_maximum_added_physical_damage_per_10_rage"]=177,["attack_maximum_added_physical_damage_with_at_least_10_rage"]=178,["attack_maximum_added_physical_damage_with_weapons"]=179,["attack_minimum_added_physical_damage_per_10_rage"]=177,["attack_minimum_added_physical_damage_with_at_least_10_rage"]=178,["attack_minimum_added_physical_damage_with_weapons"]=179,["attack_skill_mana_leech_from_any_damage_permyriad"]=180,["attack_skills_additional_ballista_totems_allowed"]=50,["attack_speed_+%"]=181,["attacks_impale_on_hit_%_chance"]=182,["aura_cannot_affect_self"]=124,["aura_effect_+%"]=28,["base_all_ailment_duration_+%"]=183,["base_aura_area_of_effect_+%"]=27,["base_cast_speed_+%"]=184,["base_chance_to_freeze_%"]=185,["base_chance_to_ignite_%"]=186,["base_chance_to_poison_on_hit_%"]=131,["base_chance_to_shock_%"]=187,["base_chaos_damage_to_deal_per_minute"]=117,["base_cold_damage_to_deal_per_minute"]=119,["base_cooldown_speed_+%"]=188,["base_critical_strike_multiplier_+"]=60,["base_curse_duration_+%"]=189,["base_deal_no_chaos_damage"]=190,["base_fire_damage_to_deal_per_minute"]=118,["base_global_chance_to_knockback_%"]=191,["base_killed_monster_dropped_item_quantity_+%"]=192,["base_killed_monster_dropped_item_rarity_+%"]=193,["base_life_gain_per_target"]=194,["base_mana_cost_-%"]=21,["base_melee_attack_repeat_count"]=95,["base_mine_detonation_time_ms"]=195,["base_mine_duration"]=48,["base_number_of_projectiles_in_spiral_nova"]=33,["base_number_of_remote_mines_allowed"]=54,["base_number_of_support_ghosts_allowed"]=196,["base_number_of_totems_allowed"]=51,["base_number_of_traps_allowed"]=53,["base_physical_damage_%_to_convert_to_lightning"]=197,["base_poison_damage_+%"]=198,["base_poison_duration_+%"]=199,["base_projectile_speed_+%"]=200,["base_reduce_enemy_cold_resistance_%"]=62,["base_reduce_enemy_fire_resistance_%"]=61,["base_reduce_enemy_lightning_resistance_%"]=64,["base_skill_area_of_effect_+%"]=24,["base_skill_is_instant"]=6,["base_spell_repeat_count"]=96,["base_stun_duration_+%"]=201,["base_stun_threshold_reduction_+%"]=202,["base_totem_duration"]=45,["base_trap_duration"]=47,["base_use_life_in_place_of_mana"]=30,["bleed_on_hit_base_duration"]=123,["bleed_on_hit_with_attacks_%"]=203,["bleeding_damage_+%"]=204,["blind_duration_+%"]=58,["burn_damage_+%"]=205,["cannot_cast_curses"]=108,["cannot_cause_bleeding"]=203,["cannot_inflict_status_ailments"]=133,["cast_linked_spells_on_attack_crit_%"]=109,["cast_linked_spells_on_melee_kill_%"]=110,["cast_on_damage_taken_%"]=115,["cast_on_damage_taken_damage_+%_final"]=103,["cast_on_damage_taken_threshold"]=115,["cast_on_death_%"]=112,["cast_on_death_damage_+%_final_while_dead"]=102,["cast_on_stunned_%"]=113,["cast_while_channelling_time_ms"]=116,["chance_to_fortify_on_melee_hit_+%"]=206,["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=207,["chance_to_ignore_hexproof_%"]=208,["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=209,["chance_to_summon_support_ghost_on_killing_blow_%"]=151,["channelled_skill_damage_+%"]=210,["chaos_damage_+%"]=211,["chill_duration_+%"]=153,["chill_effect_+%"]=152,["cold_damage_%_to_add_as_fire"]=212,["cold_damage_+%"]=213,["critical_strike_chance_+%"]=59,["critical_strike_chance_+%_per_righteous_charge"]=358,["critical_strike_multiplier_+_while_affected_by_elusive"]=135,["curse_apply_as_aura"]=3,["curse_area_of_effect_+%"]=214,["curse_effect_+%"]=120,["damage_+%"]=216,["damage_+%_vs_frozen_enemies"]=217,["damage_+%_while_es_leeching"]=218,["damage_+%_while_life_leeching"]=219,["damage_+%_while_mana_leeching"]=220,["damage_over_time_+%"]=215,["damaging_ailments_deal_damage_+%_faster"]=221,["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=222,["deal_no_elemental_damage"]=223,["deathmark_minion_damage_+%_final"]=224,["display_totems_no_infusion"]=225,["elemental_damage_+%"]=226,["elemental_damage_+%_final_per_righteous_charge"]=359,["elemental_status_effect_aura_radius"]=34,["elusive_effect_+%"]=227,["energy_shield_leech_from_any_damage_permyriad"]=228,["extra_target_targeting_distance_+%"]=23,["fire_damage_+%"]=229,["fortify_duration_+%"]=230,["freeze_duration_+%"]=231,["freeze_mine_cold_resistance_+_while_frozen"]=134,["gain_%_of_base_wand_damage_as_added_spell_damage"]=232,["gain_elusive_on_crit_%_chance"]=129,["gain_endurance_charge_on_melee_stun"]=233,["gain_endurance_charge_on_melee_stun_%"]=233,["gain_righteous_charge_on_mana_spent_%"]=234,["gain_vaal_soul_on_hit_cooldown_ms"]=235,["global_bleed_on_hit"]=203,["global_chance_to_blind_on_hit_%"]=57,["global_hit_causes_monster_flee_%"]=236,["global_maximum_added_chaos_damage"]=237,["global_maximum_added_cold_damage"]=238,["global_maximum_added_fire_damage"]=239,["global_maximum_added_fire_damage_vs_burning_enemies"]=329,["global_maximum_added_lightning_damage"]=240,["global_maximum_added_physical_damage"]=241,["global_minimum_added_chaos_damage"]=237,["global_minimum_added_cold_damage"]=238,["global_minimum_added_fire_damage"]=239,["global_minimum_added_fire_damage_vs_burning_enemies"]=329,["global_minimum_added_lightning_damage"]=240,["global_minimum_added_physical_damage"]=241,["global_poison_on_hit"]=130,["global_reduce_enemy_block_%"]=242,["hit_and_poison_damage_+%"]=243,["hit_and_poison_damage_+%_per_poison_on_enemy"]=244,["ignite_duration_+%"]=245,["ignites_apply_fire_resistance_+"]=246,["impale_debuff_effect_+%"]=247,["impale_phys_reduction_%_penalty"]=248,["impale_support_physical_damage_+%_final"]=249,["inc_aoe_plus_more_area_damage_+%_final"]=250,["infernal_legion_minions_have_burning_effect_radius_+"]=165,["inspiration_charge_duration_+%"]=251,["is_ranged_attack_totem"]=44,["is_remote_mine"]=39,["is_totem"]=44,["keystone_point_blank"]=36,["keystone_strong_bowman"]=37,["kill_enemy_on_hit_if_under_10%_life"]=35,["knockback_distance_+%"]=252,["life_leech_from_any_damage_permyriad"]=253,["lightning_damage_+%"]=254,["lose_all_righteous_charges_on_mana_use_threshold"]=360,["maim_on_hit_%"]=255,["mana_leech_from_any_damage_permyriad"]=256,["manaweave_added_lightning_damage_%_cost_if_payable"]=257,["manaweave_cost_equals_%_unreserved_mana"]=257,["maximum_added_cold_damage_per_frenzy_charge"]=266,["maximum_intensify_stacks"]=258,["melee_attack_number_of_spirit_strikes"]=22,["melee_damage_+%"]=259,["melee_damage_vs_bleeding_enemies_+%"]=260,["melee_physical_damage_+%"]=261,["melee_splash"]=93,["melee_splash_area_of_effect_+%_final"]=262,["mine_critical_strike_chance_+%_per_power_charge"]=159,["mine_detonation_radius_+%"]=263,["mine_detonation_speed_+%"]=264,["mine_duration_+%"]=56,["mine_laying_speed_+%"]=265,["mine_throwing_speed_+%_per_frenzy_charge"]=158,["minimum_added_cold_damage_per_frenzy_charge"]=266,["minion_additional_physical_damage_reduction_%"]=267,["minion_attack_speed_+%"]=268,["minion_cast_speed_+%"]=269,["minion_chance_to_taunt_on_hit_%"]=270,["minion_damage_+%"]=271,["minion_elemental_resistance_%"]=160,["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=162,["minion_fire_damage_taken_+%"]=163,["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=272,["minion_larger_aggro_radius"]=401,["minion_maximum_all_elemental_resistances_%"]=161,["minion_maximum_life_+%"]=273,["minion_movement_speed_+%"]=274,["minions_are_defensive"]=402,["minions_inflict_exposure_on_hit_%_chance"]=275,["multistrike_damage_+%_final_on_first_repeat"]=276,["multistrike_damage_+%_final_on_second_repeat"]=277,["multistrike_damage_+%_final_on_third_repeat"]=278,["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=279,["non_curse_aura_effect_+%"]=280,["non_damaging_ailment_effect_+%"]=281,["number_of_additional_curses_allowed"]=282,["number_of_additional_forks_base"]=68,["number_of_additional_mines_to_place"]=283,["number_of_additional_projectiles"]=284,["number_of_additional_remote_mines_allowed"]=285,["number_of_additional_traps_allowed"]=286,["number_of_additional_traps_to_throw"]=40,["number_of_chains"]=65,["number_of_mines_to_place"]=39,["number_of_totems_to_summon"]=44,["onslaught_time_granted_on_killing_shocked_enemy_ms"]=287,parent="stat_descriptions",["physical_damage_%_to_add_as_chaos"]=292,["physical_damage_%_to_add_as_fire"]=293,["physical_damage_%_to_add_as_lightning"]=294,["physical_damage_+%"]=295,["placing_traps_cooldown_recovery_+%"]=296,["power_siphon_fire_at_all_targets"]=33,["projectile_base_number_of_targets_to_pierce"]=46,["projectile_damage_+%"]=297,["projectile_number_to_split"]=66,["projectile_spiral_nova_angle"]=33,["projectiles_barrage"]=33,["projectiles_fork"]=67,["projectiles_nova"]=33,["projectiles_rain"]=31,["projectiles_return"]=69,["projectiles_return_if_no_hit_object"]=69,["rain_of_arrows_sequences_to_fire"]=33,["reduce_enemy_dodge_%"]=298,["reduce_enemy_elemental_resistance_%"]=63,["shock_duration_+%"]=299,["skill_can_only_use_bow"]=387,["skill_can_only_use_non_melee_weapons"]=390,["skill_cold_damage_%_to_convert_to_fire"]=300,["skill_effect_and_damaging_ailment_duration_+%"]=301,["skill_effect_duration_+%"]=302,["skill_max_unleash_seals"]=398,["skill_physical_damage_%_to_convert_to_lightning"]=303,["spell_critical_strike_chance_+%"]=304,["spell_damage_+%"]=305,["spell_echo_plus_chance_double_damage_%_final"]=306,["spell_only_castable_on_death"]=111,["spell_uncastable_if_triggerable"]=111,["spellslinger_trigger_on_wand_attack_%"]=114,["strong_casting"]=38,["summon_2_totems"]=52,["summon_cold_resistance_+"]=105,["summon_fire_resistance_+"]=104,["summon_lightning_resistance_+"]=106,["summon_mirage_archer_on_hit"]=307,["support_added_cooldown_count_if_not_instant"]=308,["support_additional_totem_damage_+%_final"]=83,["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=41,["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=42,["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=43,["support_anticipation_charge_gain_interval_ms"]=398,["support_anticipation_rapid_fire_count"]=398,["support_arcane_surge_base_duration_ms"]=143,["support_arcane_surge_cast_speed_+%"]=137,["support_arcane_surge_duration_ms"]=141,["support_arcane_surge_gain_buff_on_mana_use_threshold"]=136,["support_arcane_surge_mana_regeneration_rate_per_minute_%"]=137,["support_arcane_surge_spell_damage_+%_final"]=137,["support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge"]=309,["support_area_concentrate_area_damage_+%_final"]=10,["support_attack_skills_elemental_damage_+%_final"]=8,["support_attack_totem_attack_speed_+%_final"]=122,["support_aura_duration_base_buff_duration"]=310,["support_aura_duration_base_reserve_duration"]=311,["support_barrage_attack_time_+%_per_projectile_fired"]=312,["support_barrage_damage_+%_final"]=11,["support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired"]=313,["support_better_ailments_ailment_damage_+%_final"]=84,["support_better_ailments_hit_damage_+%_final"]=85,["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=125,["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=314,["support_brutality_physical_damage_+%_final"]=86,["support_burning_damage_+%_final"]=315,["support_cast_on_crit_spell_damage_+%_final"]=18,["support_cast_on_melee_kill_spell_damage_+%_final"]=19,["support_cast_while_channelling_triggered_skill_damage_+%_final"]=20,["support_chain_hit_damage_+%_final"]=70,["support_chance_to_bleed_bleeding_damage_+%_final"]=316,["support_chance_to_ignite_fire_damage_+%_final"]=87,["support_chaos_attacks_damage_+%_final"]=317,["support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=157,["support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"]=156,["support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=155,["support_chills_also_grant_cold_damage_taken_per_minute_+%"]=154,["support_clustertrap_damage_+%_final"]=318,["support_concentrated_effect_skill_area_of_effect_+%_final"]=25,["support_controlled_destruction_spell_damage_+%_final"]=79,["support_damage_while_on_full_life_+%_final"]=7,["support_debilitate_hit_damage_+%_final_per_poison_stack"]=74,["support_debilitate_hit_damage_max_poison_stacks"]=74,["support_debilitate_poison_damage_+%_final"]=75,["support_echo_damage_+%_final"]=4,["support_efficacy_damage_over_time_+%_final"]=82,["support_efficacy_spell_damage_+%_final"]=80,["support_elemental_proliferation_damage_+%_final"]=5,["support_energy_shield_leech_damage_+%_on_full_energy_shield_final"]=319,["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=320,["support_fork_projectile_damage_+%_final"]=73,["support_fortify_ailment_damage_+%_final_from_melee_hits"]=321,["support_fortify_melee_damage_+%_final"]=322,["support_gem_elemental_damage_+%_final"]=88,["support_gem_mine_damage_+%_final"]=15,["support_ghost_base_duration"]=323,["support_greater_volley_projectile_damage_+%_final"]=354,["support_hypothermia_cold_damage_over_time_+%_final"]=324,["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=325,["support_ignite_prolif_ignite_damage_+%_final"]=89,["support_ignite_proliferation_radius"]=32,["support_innervate_buff_base_duration_ms"]=146,["support_innervate_gain_buff_on_killing_shocked_enemy"]=144,["support_innervate_maximum_added_lightning_damage"]=145,["support_innervate_minimum_added_lightning_damage"]=145,["support_lesser_multiple_projectile_damage_+%_final"]=14,["support_maim_chance_physical_damage_+%_final"]=90,["support_maimed_enemies_physical_damage_taken_+%"]=326,["support_melee_physical_damage_+%_final"]=1,["support_melee_physical_damage_poison_and_bleeding_damage_+%_final_from_melee_hits"]=2,["support_melee_splash_damage_+%_final"]=92,["support_melee_splash_damage_+%_final_for_splash"]=94,["support_minefield_mine_damage_+%_final"]=327,["support_minefield_mine_throwing_speed_+%_final"]=328,["support_minion_damage_+%_final"]=330,["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=331,["support_minion_defensive_stance_minion_damage_taken_+%_final"]=332,["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=333,["support_minion_instability_minion_base_fire_area_damage_per_minute"]=164,["support_minion_maximum_life_+%_final"]=334,["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=335,["support_minion_totem_resistance_elemental_damage_+%_final"]=336,["support_minion_use_focussed_target"]=337,["support_mirage_archer_attack_speed_+%_final"]=338,["support_mirage_archer_damage_+%_final"]=339,["support_multicast_cast_speed_+%_final"]=97,["support_multiple_attack_damage_+%_final"]=99,["support_multiple_attacks_melee_attack_speed_+%_final"]=98,["support_multiple_projectile_damage_+%_final"]=12,["support_multiple_projectiles_critical_strike_chance_+%_final"]=29,["support_multithrow_damage_+%_final"]=101,["support_overpowered_base_duration_ms"]=340,["support_parallel_projectile_number_of_points_per_side"]=341,["support_parallel_projectiles_damage_+%_final"]=342,["support_phys_chaos_projectile_chaos_damage_over_time_+%_final"]=343,["support_phys_chaos_projectile_physical_damage_over_time_+%_final"]=344,["support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final"]=345,["support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits"]=346,["support_pierce_projectile_damage_+%_final"]=347,["support_poison_poison_damage_+%_final"]=76,["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=348,["support_projectile_attack_physical_damage_+%_final"]=349,["support_projectile_attack_speed_+%_final"]=350,["support_pulverise_area_of_effect_+%_final"]=351,["support_pulverise_attack_speed_+%_final"]=352,["support_pulverise_melee_area_damage_+%_final"]=353,["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=355,["support_rain_projectile_damage_+%_final"]=13,["support_rapid_decay_damage_over_time_+%_final"]=81,["support_reduce_enemy_block_and_spell_block_%"]=356,["support_reduce_enemy_dodge_and_spell_dodge_%"]=357,["support_reduced_duration_damage_+%_final"]=127,["support_reduced_duration_skill_effect_duration_+%_final"]=128,["support_remote_mine_2_base_mine_detonation_time_ms"]=361,["support_remote_mine_2_base_mine_duration"]=49,["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=400,["support_remote_mine_2_damage_+%_final"]=362,["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=363,["support_remote_mine_hit_damage_+%_final"]=364,["support_return_projectile_damage_+%_final"]=77,["support_ruthless_big_hit_damage_+%_final"]=148,["support_ruthless_big_hit_max_count"]=147,["support_ruthless_big_hit_stun_base_duration_override_ms"]=150,["support_ruthless_blow_bleeding_damage_from_melee_hits_+%_final"]=149,["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=365,["support_scion_onslaught_on_killing_blow_%_chance"]=366,["support_scion_onslaught_on_killing_blow_duration_ms"]=366,["support_slashing_buff_attack_cast_speed_+%_final_to_grant"]=368,["support_slashing_buff_base_duration_ms"]=367,["support_slashing_damage_+%_final_from_distance"]=369,["support_slower_projectiles_damage_+%_final"]=370,["support_slower_projectiles_projectile_speed_+%_final"]=126,["support_spell_boost_area_damage_+%_final_per_charge"]=371,["support_spell_boost_area_of_effect_+%_final_per_charge"]=372,["support_spell_boost_charge_loss_interval_ms_while_moving"]=373,["support_spell_cascade_area_of_effect_+%_final"]=374,["support_spell_cascade_damage_+%_final"]=375,["support_spell_cascade_number_of_cascades_per_side"]=376,["support_spell_cascade_sideways"]=376,["support_spell_rapid_fire_repeat_use_damage_+%_final"]=399,["support_spell_totem_cast_speed_+%_final"]=121,["support_spirit_strike_damage_+%_final"]=71,["support_split_projectile_damage_+%_final"]=72,["support_storm_barrier_damage_+%_final"]=379,["support_storm_barrier_damage_buff_base_duration_ms"]=377,["support_storm_barrier_damage_buff_time_threshold_ms"]=378,["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=380,["support_storm_barrier_skill_type_damage_+%_final"]=381,["support_storm_barrier_skill_type_damage_taken_when_hit_+%_final"]=382,["support_totem_damage_+%_final"]=16,["support_trap_and_mine_damage_+%_final"]=383,["support_trap_damage_+%_final"]=100,["support_trap_hit_damage_+%_final"]=384,["support_unbound_ailments_ailment_damage_+%_final"]=385,["support_void_manipulation_chaos_damage_+%_final"]=78,["support_weapon_elemental_damage_+%_final"]=9,["support_withered_base_duration_ms"]=142,["supported_skill_can_only_use_axe_and_sword"]=386,["supported_skill_can_only_use_dagger_and_claw"]=388,["supported_skill_can_only_use_mace_and_staff"]=389,["total_number_of_arrows_to_fire"]=33,["total_number_of_projectiles_to_fire"]=33,["trap_critical_strike_multiplier_+_per_power_charge"]=391,["trap_damage_+%"]=392,["trap_duration_+%"]=55,["trap_throwing_speed_+%"]=393,["trap_throwing_speed_+%_per_frenzy_charge"]=394,["trap_trigger_radius_+%"]=395,["triggered_skill_damage_+%"]=396,["triggered_spell_spell_damage_+%"]=17,["virtual_support_anticipation_charge_gain_interval_ms"]=398,["weapon_elemental_damage_+%"]=397,["withered_on_hit_chance_%"]=132} \ No newline at end of file diff --git a/Data/3_0/StatDescriptions/minion_skill_stat_descriptions.lua b/Data/3_0/StatDescriptions/minion_skill_stat_descriptions.lua index 6b5ea6c6b..5e3d6463b 100644 --- a/Data/3_0/StatDescriptions/minion_skill_stat_descriptions.lua +++ b/Data/3_0/StatDescriptions/minion_skill_stat_descriptions.lua @@ -1 +1 @@ -return {[1]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minions throw up to 1 additional Trap"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Minions throw up to %1% additional Traps"}}},name="num_additional_traps",stats={[1]="number_of_additional_traps_to_throw"}},[2]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minions throw up to 1 additional Mine"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Minions throw up to %1% additional Mines"}}},name="num_additional_mines",stats={[1]="number_of_additional_mines_to_place"}},[3]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minions can have an additional Trap placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Minions can have %1% additional Traps placed at a time"}}},name="num_additional_traps_allowed",stats={[1]="number_of_additional_traps_allowed"}},[4]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minions can have an additional Mine placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Minions can have %1% additional Mines placed at a time"}}},name="num_additional_mines_allowed",stats={[1]="number_of_additional_remote_mines_allowed"}},[5]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Traps are thrown randomly"}}},name="trap_throw_random",stats={[1]="throw_traps_in_circle_radius"}},[6]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Cast Speed"}}},name="cast_speed_incr",stats={[1]="base_cast_speed_+%"}},[7]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Cast Speed"}}},name="multicast_cast_speed_incr",stats={[1]="support_multicast_cast_speed_+%_final"}},[8]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Attack Speed"}}},name="attack_speed_incr",stats={[1]="attack_speed_+%"}},[9]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1% additional Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions lose %1% Accuracy Rating"}}},name="accuracy_rating",stats={[1]="accuracy_rating"}},[10]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Accuracy Rating"}}},name="accuracy_rating_incr",stats={[1]="accuracy_rating_+%"}},[11]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Critical Strike Chance"}}},name="critical_strike_chance_incr",stats={[1]="critical_strike_chance_+%"}},[12]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% to Critical Strike Multiplier"}}},name="critical_strike_multiplier_incr",stats={[1]="base_critical_strike_multiplier_+"}},[13]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions gain %1% Life for each enemy they Hit"}}},name="life_gain_per_target",stats={[1]="life_gain_per_target"}},[14]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Minions Leech %1%%% of Damage as Life"}}},name="life_leech_from_any",stats={[1]="life_leech_from_any_damage_permyriad"}},[15]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="Minions Leech %1%%% of Damage as Energy Shield"}}},name="energy_shield_leech_from_any",stats={[1]="energy_shield_leech_from_any_damage_permyriad"}},[16]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]=99}},text="Minions have an additional %1%%% chance to Knock Enemies Back on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=100,[2]="#"}},text="Minions knock Enemies Back on Hit"}}},name="knockback_chance",stats={[1]="base_global_chance_to_knockback_%"}},[17]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Knockback Distance"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Knockback Distance"}}},name="knockback_distance",stats={[1]="knockback_distance_+%"}},[18]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% reduced Enemy Stun Threshold"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% increased Enemy Stun Threshold"}}},name="stun_threshold_reduction_incr",stats={[1]="base_stun_threshold_reduction_+%"}},[19]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by enemies Slain by Minions"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by enemies Slain by Minions"}}},name="killed_monster_dropped_item_rarity_incr",stats={[1]="killed_monster_dropped_item_rarity_+%"}},[20]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by enemies Slain by Minions"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Dropped by enemies Slain by Minions"}}},name="killed_monster_dropped_item_quantity_incr",stats={[1]="killed_monster_dropped_item_quantity_+%"}},[21]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="Minions always Freeze Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0}},text="Minions have %1%%% chance to Freeze enemies"}}},name="freeze_chance",stats={[1]="base_chance_to_freeze_%",[2]="always_freeze"}},[22]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% chance to Shock enemies"}}},name="shock_chance",stats={[1]="base_chance_to_shock_%"}},[23]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% chance to Ignite enemies"}}},name="burn_chance",stats={[1]="base_chance_to_ignite_%"}},[24]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% chance to cause Monsters to Flee when Hit"}}},name="chance_to_flee",stats={[1]="global_hit_causes_monster_flee_%"}},[25]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Area of Effect"}}},name="area_of_effect_incr",stats={[1]="base_skill_area_of_effect_+%"}},[26]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Area of Effect"}}},name="concentrated_area_of_effect",stats={[1]="support_concentrated_effect_skill_area_of_effect_+%_final"}},[27]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Aura Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Aura Area of Effect"}}},name="aura_area_of_effect_incr",stats={[1]="base_aura_area_of_effect_+%"}},[28]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased effect of their Auras"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced effect of their Auras"}}},name="aura_effect_incr",stats={[1]="aura_effect_+%"}},[29]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Projectile Speed"}}},name="projectile_speed_incr",stats={[1]="base_projectile_speed_+%"}},[30]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minions fire %1% additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Minions fire %1% additional Projectiles"}}},name="additional_projectiles",stats={[1]="number_of_additional_projectiles"}},[31]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Stun Duration on enemies"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Stun Duration on enemies"}}},name="stun_duration_incr",stats={[1]="base_stun_duration_+%"}},[32]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Chill Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Chill Effect"}}},name="chill_effect",stats={[1]="chill_effect_+%"}},[33]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Shock Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Shock Effect"}}},name="shock_effect",stats={[1]="shock_effect_+%"}},[34]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Ignite Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Ignite Duration on enemies"}}},name="burn_duration",stats={[1]="ignite_duration_+%"}},[35]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Chill Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Chill Duration on enemies"}}},name="chill_duration",stats={[1]="chill_duration_+%"}},[36]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Freeze Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Freeze Duration on enemies"}}},name="freeze_duration",stats={[1]="freeze_duration_+%"}},[37]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Shock Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Shock Duration on enemies"}}},name="shock_duration",stats={[1]="shock_duration_+%"}},[38]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Elemental Ailments caused by Minions also spread to nearby enemies"}}},name="elemental_status_aura",stats={[1]="elemental_status_effect_aura_radius"}},[39]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignites caused by Minions spread to other nearby Enemies"}}},name="ignite_aura",stats={[1]="support_ignite_proliferation_radius"}},[40]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Melee Physical Damage"}}},name="support_melee_physical_damage_final_incr",stats={[1]="support_melee_physical_damage_+%_final"}},[41]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Bleeding and Poison caused by Melee Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Bleeding and Poison caused by Melee Hits"}}},stats={[1]="support_melee_physical_damage_poison_and_bleeding_damage_+%_final_from_melee_hits"}},[42]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Attack Skills while on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Attack Skills while on Full Life"}}},name="support_damage_full_life_incr",stats={[1]="support_damage_while_on_full_life_+%_final"}},[43]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Attack Damage"}}},name="attack_damage_incr",stats={[1]="attack_damage_+%"}},[44]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Physical Damage"}}},name="unused_identifier_physical_damage",stats={[1]="physical_damage_+%"}},[45]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Physical Damage"}}},name="unused_identifier_physical_damage_final",stats={[1]="active_skill_physical_damage_+%_final"}},[46]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Elemental Damage"}}},name="unused_identifier_elemental_damage_final",stats={[1]="active_skill_elemental_damage_+%_final"}},[47]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Projectile Damage"}}},name="multiple_projectile_damage_final",stats={[1]="support_multiple_projectile_damage_+%_final"}},[48]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Projectile Damage"}}},name="lesser_multiple_projectile_damage_final",stats={[1]="support_lesser_multiple_projectile_damage_+%_final"}},[49]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Area Damage"}}},name="area_concentrate_damage_final",stats={[1]="support_area_concentrate_area_damage_+%_final"}},[50]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions' Attacks deal %1% to %2% additional Physical Damage"}}},name="added_physical_attack_damage",stats={[1]="attack_minimum_added_physical_damage",[2]="attack_maximum_added_physical_damage"}},[51]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Cold Damage"}}},name="added_cold_damage",stats={[1]="global_minimum_added_cold_damage",[2]="global_maximum_added_cold_damage"}},[52]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Lightning Damage"}}},name="added_lightning_damage",stats={[1]="global_minimum_added_lightning_damage",[2]="global_maximum_added_lightning_damage"}},[53]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Chaos Damage"}}},name="added_chaos_damage",stats={[1]="global_minimum_added_chaos_damage",[2]="global_maximum_added_chaos_damage"}},[54]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Physical Damage with Melee Attacks"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Physical Damage with Melee Attacks"}}},name="melee_physical_damage_incr",stats={[1]="melee_physical_damage_+%"}},[55]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% of their Physical Damage as Extra Fire Damage"}}},name="physical_damage_to_add_as_fire",stats={[1]="physical_damage_%_to_add_as_fire"}},[56]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Minion Cold Damage Converted to Fire Damage"}}},name="cold_damage_to_convert_to_fire",stats={[1]="skill_cold_damage_%_to_convert_to_fire"}},[57]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% of their Physical Damage as Extra Chaos Damage"}}},name="physical_damage_to_add_as_chaos",stats={[1]="physical_damage_%_to_add_as_chaos"}},[58]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% of Physical Damage as Extra Lightning Damage"}}},name="physical_damage_to_add_as_lightning",stats={[1]="physical_damage_%_to_add_as_lightning"}},[59]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Minion Physical Damage Converted to Lightning Damage"}}},name="physical_damage_to_convert_to_lightning",stats={[1]="skill_physical_damage_%_to_convert_to_lightning"}},[60]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage"}}},name="damage_incr",stats={[1]="damage_+%"}},[61]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Fire Damage"}}},name="fire_damage_incr",stats={[1]="fire_damage_+%"}},[62]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Cold Damage"}}},name="cold_damage_incr",stats={[1]="cold_damage_+%"}},[63]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Lightning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Lightning Damage"}}},name="lightning_damage_incr",stats={[1]="lightning_damage_+%"}},[64]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Chaos Damage"}}},name="chaos_damage_incr",stats={[1]="chaos_damage_+%"}},[65]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Elemental Damage with Attack Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Elemental Damage with Attack Skills"}}},name="support_attack_elemental_damage_final",stats={[1]="support_attack_skills_elemental_damage_+%_final"}},[66]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Elemental Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Elemental Damage with Weapons"}}},name="weapon_elemental_damage_incr",stats={[1]="weapon_elemental_damage_+%"}},[67]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Elemental Damage"}}},name="elemental_damage_incr",stats={[1]="elemental_damage_+%"}},[68]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="support_more_minion_damage",stats={[1]="support_minion_damage_+%_final"}},[69]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Spell Damage"}}},name="controlled_destruction",stats={[1]="support_controlled_destruction_spell_damage_+%_final"}},[70]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Spell Damage"}}},name="support_efficacy_spell_damage",stats={[1]="support_efficacy_spell_damage_+%_final"}},[71]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Spell Damage"}}},name="spell_damage_incr",stats={[1]="spell_damage_+%"}},[72]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Ailments"}}},name="support_better_ailments_bonus",stats={[1]="support_better_ailments_ailment_damage_+%_final"}},[73]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Hits"}}},name="support_better_ailments_malus",stats={[1]="support_better_ailments_hit_damage_+%_final"}},[74]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Fire Damage"}}},name="support_chance_to_ignite_damage",stats={[1]="support_chance_to_ignite_fire_damage_+%_final"}},[75]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Ignite"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Ignite"}}},name="ignite_prolif_damage",stats={[1]="support_ignite_prolif_ignite_damage_+%_final"}},[76]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage over Time"}}},name="rapid_decay",stats={[1]="support_rapid_decay_damage_over_time_+%_final"}},[77]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage over Time"}}},name="support_efficacy_dot",stats={[1]="support_efficacy_damage_over_time_+%_final"}},[78]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1%%% more Damage with Hits for each Poison on the Enemy, up to %2%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1},[2]={[1]="#",[2]="#"}},text="Minions deal %1%%% less Damage with Hits for each Poison on the Enemy, up to %2%"}}},name="support_debilitate_hit_damage",stats={[1]="support_debilitate_hit_damage_+%_final_per_poison_stack",[2]="support_debilitate_hit_damage_max_poison_stacks"}},[79]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Poison"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Poison"}}},name="support_debilitate_poison_damage",stats={[1]="support_debilitate_poison_damage_+%_final"}},[80]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Poison"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Poison"}}},name="support_poison_poison_damage",stats={[1]="support_poison_poison_damage_+%_final"}},[81]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage over Time"}}},name="damage_over_time_incr",stats={[1]="damage_over_time_+%"}},[82]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="minion_damage_final",stats={[1]="active_skill_minion_damage_+%_final"}},[83]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Physical Damage"}}},name="minion_physical_damage_final",stats={[1]="active_skill_minion_physical_damage_+%_final"}},[84]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Raised Zombie"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Raised Zombies"}}},name="number_of_zombies",stats={[1]="number_of_zombies_allowed"}},[85]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Raised Spectre"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Raised Spectres"}}},name="number_of_spectres",stats={[1]="number_of_spectres_allowed"}},[86]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Raging Spirit"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Raging Spirits"}}},name="number_of_raging_spirits",stats={[1]="number_of_raging_spirits_allowed"}},[87]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Animated Weapon"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Animated Weapons"}}},name="number_of_animated_weapons",stats={[1]="number_of_animated_weapons_allowed"}},[88]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Bestial Minion"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Bestial Minion"}}},name="number_of_beasts",stats={[1]="base_number_of_beast_minions_allowed"}},[89]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum 1 Summoned Harbinger"}}},name="display_one_harbinger_allowed",stats={[1]="display_one_harbinger_allowed"}},[90]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Golem"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Golems"}}},name="number_of_golems",stats={[1]="number_of_golems_allowed"}},[91]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1% maximum Life"}}},name="display_minion_life",stats={[1]="display_minion_maximum_life"}},[92]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Skeleton"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Skeleton"}}},name="number_of_skeletons_allowed",stats={[1]="number_of_skeletons_allowed"}},[93]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Raised Spiders"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Raised Spiders"}}},name="number_of_spiders",stats={[1]="number_of_spider_minions_allowed"}},[94]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Summons %1% Skeleton Warrior"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Summons %1% Skeleton Warriors"}}},name="melee_skeletons_to_summon",stats={[1]="number_of_melee_skeletons_to_summon"}},[95]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Summons %1% Skeleton Archer"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Summons %1% Skeleton Archers"}}},name="archer_skeletons_to_summon",stats={[1]="number_of_archer_skeletons_to_summon"}},[96]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Summons %1% Skeleton Mage"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Summons %1% Skeleton Mages"}}},name="mage_skeletons_to_summon",stats={[1]="number_of_mage_skeletons_to_summon"}},[97]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Summons %1% Skeleton General"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Summons %1% Skeleton Generals"}}},name="leader_skeletons_to_summon",stats={[1]="number_of_leader_skeletons_to_summon"}},[98]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]=1,[2]="#"}},text="Minions have Culling Strike"}}},name="culling_strike",stats={[1]="kill_enemy_on_hit_if_under_10%_life"}},[99]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have Point Blank"}}},name="point_blank",stats={[1]="keystone_point_blank"}},[100]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to Blind enemies on hit"}}},name="chance_to_blind",stats={[1]="global_chance_to_blind_on_hit_%"}},[101]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Blinding duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Blinding duration"}}},name="blind_duration_incr",stats={[1]="blind_duration_+%"}},[102]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions Penetrate %1%%% Fire Resistance"}}},name="fire_penetration",stats={[1]="base_reduce_enemy_fire_resistance_%"}},[103]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions Penetrate %1%%% Cold Resistance"}}},name="cold_penetration",stats={[1]="base_reduce_enemy_cold_resistance_%"}},[104]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions Penetrate %1%%% Elemental Resistances"}}},name="elemental_penetration",stats={[1]="reduce_enemy_elemental_resistance_%"}},[105]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions Penetrate %1%%% Lightning Resistance"}}},name="lightning_penetration",stats={[1]="base_reduce_enemy_lightning_resistance_%"}},[106]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minion's Skills Chain %1$+d Times"}}},name="minion_chain_num",stats={[1]="number_of_chains"}},[107]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions' Projectiles Split towards %1% additional targets"}}},name="base_split_num",stats={[1]="projectile_number_to_split"}},[108]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minion's Projectiles Fork"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Minion's Projectiles Fork %1% additional times"}}},name="fork",stats={[1]="virtual_number_of_forks_for_projectiles_final"}},[109]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Minion's Projectiles Return to Them after hitting targets"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Minion's Projectiles Return to Them at end of flight"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minion's Projectiles Return to Them"}}},name="return",stats={[1]="projectiles_return",[2]="projectiles_return_if_no_hit_object"}},[110]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minion's Melee Strike Skills deal Splash Damage to Surrounding Targets"}}},name="melee_splash",stats={[1]="melee_splash"}},[111]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minion's Melee Attacks repeat %1% additional times"}}},name="melee_mulitple_attacks",stats={[1]="base_melee_attack_repeat_count"}},[112]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minion's Spells Repeat an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Minion's Spells Repeat an additional %1% times"}}},name="base_multicast",stats={[1]="base_spell_repeat_count"}},[113]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to gain a Power Charge on Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Minions gain a Power Charge on Critical Strike"}}},name="power_charge_on_crit_chance",stats={[1]="add_power_charge_on_critical_strike_%"}},[114]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Melee Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Melee Attack Speed"}}},name="multiple_attacks_speed",stats={[1]="support_multiple_attacks_melee_attack_speed_+%_final"}},[115]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Attack Damage"}}},name="multiple_attack_damage",stats={[1]="support_multiple_attack_damage_+%_final"}},[116]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Burning Damage"}}},name="burn_damage",stats={[1]="burn_damage_+%"}},[117]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="mine_damage",stats={[1]="support_gem_mine_damage_+%_final"}},[118]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="mine_damage_2_electric_boogaloo",stats={[1]="support_remote_mine_2_damage_+%_final"}},[119]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="totem_damage",stats={[1]="support_totem_damage_+%_final"}},[120]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="echo_damage",stats={[1]="support_echo_damage_+%_final"}},[121]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="multithrow_damage",stats={[1]="support_multithrow_damage_+%_final"}},[122]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="cast_on_damage_taken_damage",stats={[1]="cast_on_damage_taken_damage_+%_final"}},[123]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Hits"}}},name="chain_damage",stats={[1]="support_chain_hit_damage_+%_final"}},[124]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Projectile Damage"}}},name="split_damage",stats={[1]="support_split_projectile_damage_+%_final"}},[125]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Projectile Damage"}}},name="fork_damage",stats={[1]="support_fork_projectile_damage_+%_final"}},[126]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=99}},text="Minions have %2%%% chance to gain an Endurance Charge when they Stun an Enemy with a Melee Hit"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=100,[2]="#"}},text="Minions gain an Endurance Charge when they Stun an Enemy with a Melee Hit"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions gain an Endurance Charge when they Stun an Enemy with a Melee Hit"}}},name="endurance_charge_on_stun",stats={[1]="gain_endurance_charge_on_melee_stun",[2]="gain_endurance_charge_on_melee_stun_%"}},[127]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Movement Speed"}}},name="movement_speed_incr",stats={[1]="base_movement_velocity_+%"}},[128]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Duration"}}},name="skill_duration_incr",stats={[1]="skill_effect_duration_+%"}},[129]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Attack Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Attack Speed when on Low Life"}}},name="attack_speed_incr_on_low_life",stats={[1]="attack_speed_+%_when_on_low_life"}},[130]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Cast Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Cast Speed when on Low Life"}}},name="cast_speed_incr_on_low_life",stats={[1]="cast_speed_+%_when_on_low_life"}},[131]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions's Attacks deal %1%%% more Damage with Bleeding and Poison caused by Projectile Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions's Attacks deal %1%%% more Damage with Bleeding and Poison caused by Projectile Hits"}}},name="support_projectile_attack_phys_ailment_damage_incr",stats={[1]="support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits"}},[132]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Physical Projectile Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Physical Projectile Attack Damage"}}},name="support_projectile_attack_phys_incr",stats={[1]="support_projectile_attack_physical_damage_+%_final"}},[133]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Projectile Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Projectile Attack Speed"}}},name="support_projectile_attack_speed_incr",stats={[1]="support_projectile_attack_speed_+%_final"}},[134]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Projectile Damage"}}},name="projectile_damage_incr",stats={[1]="projectile_damage_+%"}},[135]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions Spend Life instead of Mana"}}},name="blood_magic",stats={[1]="base_use_life_in_place_of_mana"}},[136]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Melee Physical Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Melee Physical Damage against Bleeding Enemies"}}},name="bloodlust_damage",stats={[1]="support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"}},[137]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Melee Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Melee Damage against Bleeding Enemies"}}},name="bloodlust_damage_incr",stats={[1]="melee_damage_vs_bleeding_enemies_+%"}},[138]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Fortify on Melee hit"},[2]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=100,[2]="#"}},text="Minions gain Fortify on Melee hit"}}},name="chance_to_fortify_on_melee_hit",stats={[1]="chance_to_fortify_on_melee_hit_+%"}},[139]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Skill and Minions have %1%%% increased Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Skill and Minions have %1%%% reduced Mine Throwing Speed"}}},name="mine_laying_speed_incr",stats={[1]="mine_laying_speed_+%"}},[140]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$d%% chance to Freeze Enemies which are Chilled"}}},name="freeze_chance_vs_chilled",stats={[1]="additional_chance_to_freeze_chilled_enemies_%"}},[141]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Hits and Ailments against Chilled Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Hits and Ailments against Chilled Enemies"}}},name="hypothermia_damage",stats={[1]="support_hypothermia_damage_+%_vs_chilled_enemies_final"}},[142]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Throwing Speed"}}},name="trap_throw_speed_incr",stats={[1]="trap_throwing_speed_+%"}},[143]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Throwing Speed"}}},name="mine_laying_speed_incr",stats={[1]="mine_laying_speed_+%"}},[144]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Trap and Mine Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Trap and Mine Damage"}}},stats={[1]="support_trap_and_mine_damage_+%_final"}},[145]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="cluster_trap_damage_incr",stats={[1]="support_clustertrap_damage_+%_final"}},[146]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="minefield_damage",stats={[1]="support_minefield_mine_damage_+%_final"}},[147]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Chaos Damage"}}},name="void_manipulation",stats={[1]="support_void_manipulation_chaos_damage_+%_final"}},[148]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Elemental Damage"}}},name="elemental_focus_damage",stats={[1]="support_gem_elemental_damage_+%_final"}},[149]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Minions cannot inflict Elemental Ailments"}}},name="cannot_inflict_ailments",stats={[1]="cannot_inflict_status_ailments"}},[150]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Minions Poison Enemies on Hit"}}},name="poison_on_hit",stats={[1]="global_poison_on_hit"}},[151]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Damage with Poison"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Damage with Poison"}}},name="poison_damage",stats={[1]="base_poison_damage_+%"}},[152]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Poison Duration"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Poison Duration"}}},name="poison_duration",stats={[1]="base_poison_duration_+%"}},[153]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Melee Splash Area of Effect"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Melee Splash Area of Effect"}}},name="melee_splash_radius",stats={[1]="melee_splash_area_of_effect_+%_final"}},[154]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Every third use of Minion's Attacks deals a Ruthless Blow with Melee Hits"}}},name="support_ruthless_count",stats={[1]="support_ruthless_big_hit_max_count"}},[155]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minion's Ruthless Blows deal %1%%% more Melee Damage"}}},name="support_ruthless_damage",stats={[1]="support_ruthless_big_hit_damage_+%_final"}},[156]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minion's Ruthless Blows deal %1%%% more Damage with Bleeding caused by Melee Hits"}}},name="support_ruthless_bleeding_damage",stats={[1]="support_ruthless_blow_bleeding_damage_from_melee_hits_+%_final"}},[157]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Minion's Ruthless Blows have a base Stun Duration of %1% seconds"}}},name="support_ruthless_stun",stats={[1]="support_ruthless_big_hit_stun_base_duration_override_ms"}},[158]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Summoned Skitterbot of each type"}}},name="skitterbots_limit",stats={[1]="display_skitterbot_limit_per_type"}},[159]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions gain %1%%% more Added Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions gain %1%%% less Added Damage"}}},name="minion_added_damage",stats={[1]="active_skill_minion_added_damage_+%_final"}},[160]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Damage with Bows also apply to Minions"}}},name="additive_bow_damage_applies_to_minions",stats={[1]="additive_modifiers_to_bow_damage_also_apply_to_minions"}},[161]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Area Damage"}}},name="area_damage_incr",stats={[1]="area_damage_+%"}},[162]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="Minion's Attack Skills Leech %1%%% of Damage as Mana"}}},name="mana_leech_from_any",stats={[1]="attack_skill_mana_leech_from_any_damage_permyriad"}},[163]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="Minions' Attacks have %1%%% chance to Impale Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Minions' Attacks always Impale Enemies on Hit"}}},name="attack_impale_chance",stats={[1]="attacks_impale_on_hit_%_chance"}},[164]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Duration of Ailments on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Duration of Ailments on Enemies"}}},name="ailment_duration_incr",stats={[1]="base_all_ailment_duration_+%"}},[165]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Minions always Poison on Hit"}}},name="poison_chance",stats={[1]="base_chance_to_poison_on_hit_%"}},[166]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions deal no Chaos Damage"}}},name="deal_no_chaos",stats={[1]="base_deal_no_chaos_damage"}},[167]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Minions' Attacks have %1%%% chance to cause Bleeding"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Minions' Attacks cause Bleeding"},[3]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0}},text="Minions' Attacks cause Bleeding"},[4]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Minions cannot cause Bleeding"}}},name="bleeding_chance",stats={[1]="bleed_on_hit_with_attacks_%",[2]="global_bleed_on_hit",[3]="cannot_cause_bleeding"}},[168]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Summon a Phantasm when Non-Phantasm Minions Hit a Rare or Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon a Phantasm when Non-Phantasm Minions Hit a Rare or Unique Enemy"}}},name="ghost_rare_chance",stats={[1]="chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"}},[169]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Summon a Phantasm when Non-Phantasm Minions deal a Killing Blow"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon a Phantasm when Non-Phantasm Minions deal a Killing Blow"}}},name="ghost_chance",stats={[1]="chance_to_summon_support_ghost_on_killing_blow_%"}},[170]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Skill has %1%%% increased Critical Strike Chance per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Skill has %1%%% reduced Critical Strike Chance per Inspiration Charge"}}},name="crit_chance_per_righteous_charge",stats={[1]="critical_strike_chance_+%_per_righteous_charge"}},[171]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage while Leeching Energy Shield"}}},name="damage_while_es_leeching",stats={[1]="damage_+%_while_es_leeching"}},[172]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage while Leeching Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage while Leeching Life"}}},name="damage_while_life_leeching",stats={[1]="damage_+%_while_life_leeching"}},[173]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage while Leeching Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage while Leeching Mana"}}},name="damage_while_mana_leeching",stats={[1]="damage_+%_while_mana_leeching"}},[174]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]="#"}},text="Damaging Ailments inflicted by Minions deal damage %1%%% faster"}}},name="damaging_ailments_deal_damage_faster",stats={[1]="damaging_ailments_deal_damage_+%_faster"}},[175]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions inflict Decay on Hit, dealing %1% Chaos Damage per second for 8 seconds"}}},name="decay_on_hit",stats={[1]="deal_chaos_damage_per_second_for_10_seconds_on_hit"}},[176]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions deal no Elemental Damage"}}},name="deal_no_elemental",stats={[1]="deal_no_elemental_damage"}},[177]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="deathmark_minion_damage",stats={[1]="deathmark_minion_damage_+%_final"}},[178]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]="#",[2]="#"}},text="Chilling Skitterbot's Aura Chills Enemies near it"}}},name="skitterbot_chill",stats={[1]="display_skitterbot_chilling_aura"}},[179]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHitNoDuration"},limit={[1]={[1]="#",[2]="#"}},text="Shocking Skitterbot's Aura Shocks Enemies near it"}}},name="skitterbot_shock",stats={[1]="display_skitterbot_shocking_aura"}},[180]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Skill has %1%%% more Elemental Damage per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Skill has %1%%% less Elemental Damage per Inspiration Charge"}}},name="elemental_damage_per_righteous_charge",stats={[1]="elemental_damage_+%_final_per_righteous_charge"}},[181]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Ignited by Minions have %1$+d%% to Fire Resistance"}}},name="ignites_apply_fire_res",stats={[1]="ignites_apply_fire_resistance_+"}},[182]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions' Attacks have %1%%% increased Impale Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions' Attacks have %1%%% reduced Impale Effect"}}},name="impale_effect",stats={[1]="impale_debuff_effect_+%"}},[183]={lang={English={[1]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextPhysReductionNotNegative"},limit={[1]={[1]="#",[2]="#"}},text="Enemies Impaled by Minions have %1$+d%% to Total Physical Damage Reduction against Impale Hits"}}},stats={[1]="impale_phys_reduction_%_penalty"}},[184]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions deal %1%%% more Physical Damage"}}},name="impale_phys_damage",stats={[1]="impale_support_physical_damage_+%_final"}},[185]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Area Damage"}}},name="inc_area_plus_damage_final",stats={[1]="inc_aoe_plus_more_area_damage_+%_final"}},[186]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d to Radius of their Burning Effect"}}},name="infernal_legion_radius_plus",stats={[1]="infernal_legion_minions_have_burning_effect_radius_+"}},[187]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Minions Attacks have %1%%% chance to Maim on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Minions Attacks always Maim on Hit"}}},name="maim_chance",stats={[1]="maim_on_hit_%"}},[188]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions' Skills have %1%%% increased Critical Strike Chance per Power Charge if used by Mines"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions' Skills have %1%%% reduced Critical Strike Chance per Power Charge if used by Mines"}}},name="mine_crit_chance_per_power_charge",stats={[1]="mine_critical_strike_chance_+%_per_power_charge"}},[189]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Skill and Minions have %1%%% increased Mine Throwing Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Skill and Minions have %1%%% reduced Mine Throwing Speed per Frenzy Charge"}}},name="mine_throwing_speed_per_frenzy_charge",stats={[1]="mine_throwing_speed_+%_per_frenzy_charge"}},[190]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions have %1% to %2% added Cold Damage per Frenzy Charge"}}},name="support_ice_bite_damage",stats={[1]="minimum_added_cold_damage_per_frenzy_charge",[2]="maximum_added_cold_damage_per_frenzy_charge"}},[191]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions take %1%%% of their Maximum Life as Fire Damage per second"}}},name="support_burning_minions_self_burn",stats={[1]="minion_fire_damage_%_of_maximum_life_taken_per_minute"}},[192]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Rampage Kill when Minion hits a Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Rampage Kill when Minion hits a Unique Enemy"}}},name="minion_grants_rampage_on_hit",stats={[1]="minion_grants_rampage_kill_to_parent_on_hitting_unique_enemy_%"}},[193]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions cannot Taunt Enemies"}}},name="minions_cannot_taunt",stats={[1]="minions_cannot_taunt_enemies"}},[194]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minion's Melee Attack's First Repeat deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minion's Melee Attack's First Repeat deals %1%%% less Damage"}}},name="multistrike_first_repeat_damage",stats={[1]="multistrike_damage_+%_final_on_first_repeat"}},[195]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minion's Melee Attack's Second Repeat deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minion's Melee Attack's Second Repeat deals %1%%% less Damage"}}},name="multistrike_second_repeat_damage",stats={[1]="multistrike_damage_+%_final_on_second_repeat"}},[196]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minion's Melee Attack's Third Repeat deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minion's Melee Attack's Third Repeat deals %1%%% less Damage"}}},name="multistrike_third_repeat_damage",stats={[1]="multistrike_damage_+%_final_on_third_repeat"}},[197]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Effect of non-Damaging Ailments on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Effect of non-Damaging Ailments on Enemies"}}},name="ailment_non_damaging_incr_effect",stats={[1]="non_damaging_ailment_effect_+%"}},[198]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions have %1%%% chance to gain a Frenzy Charge when a Mine is Detonated targeting an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="This Skill and Minions gain a Frenzy Charge when a Mine is Detonated targeting an Enemy"}}},name="frenzy_charge_on_mine_detonate",stats={[1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"}},[199]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions have %1%%% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="This Skill and Minions have gain a Frenzy Charge when your Trap is triggered by an Enemy"}}},name="frenzy_charge_on_trap_trig",stats={[1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"}},[200]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions have %1%%% chance to gain a Power Charge when a Mine is Detonated targeting an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="This Skill and Minions gain a Power Charge when a Mine is Detonated targeting an Enemy"}}},name="power_charge_on_mine_detonate",stats={[1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"}},[201]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions have %1%%% chance to gain a Power Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="This Skill and Minions gain a Power Charge when your Trap is triggered by an Enemy"}}},name="power_charge_on_trap_trig",stats={[1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"}},[202]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minion's Projectiles Pierce an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Minion's Projectiles Pierce %1% additional Targets"}}},name="base_pierce_num",stats={[1]="projectile_base_number_of_targets_to_pierce"}},[203]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Duration of Skills and Duration of Damaging Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Duration of Skills and Damaging Ailments"}}},name="skill_and_damaging_ailment_duration_incr",stats={[1]="skill_effect_and_damaging_ailment_duration_+%"}},[204]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skitterbots grant %1%%% more Trap and Mine Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Skitterbots grant %1%%% less Trap and Mine Damage"}}},name="skitterbots_trap_mine_damage",stats={[1]="skitterbots_trap_mine_damage_+%_final"}},[205]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Physical Damage"}}},name="brutality_phys_damage",stats={[1]="support_brutality_physical_damage_+%_final"}},[206]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]=1,[2]="#"}},text="Enemies in Chilling Areas from Minion's Skills take %1%%% increased Cold Damage over Time"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]="#",[2]=-1}},text="Enemies in Chilling Areas from Minion's Skills take %1%%% reduced Cold Damage over Time"}}},name="support_chilling_areas_incr_cold_dot_taken",stats={[1]="support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"}},[207]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]="#",[2]="#"}},text="Enemies in Chilling Areas from Minion's Skills have Cold Damage taken increased by Chill Effect"}}},name="support_chilling_areas_incr_cold_damage_taken",stats={[1]="support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"}},[208]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Chilled by Minions take %1%%% increased Cold Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Chilled by Minions take %1%%% reduced Cold Damage over Time"}}},name="support_chills_incr_cold_dot_taken",stats={[1]="support_chills_also_grant_cold_damage_taken_per_minute_+%"}},[209]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Chilled by Minions have Cold Damage taken increased by Chill Effect"}}},name="support_chills_incr_cold_damage_taken",stats={[1]="support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"}},[210]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage while on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage while on Full Energy Shield"}}},stats={[1]="support_energy_shield_leech_damage_+%_on_full_energy_shield_final"}},[211]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage while Leeching Energy Shield"}}},name="damage_while_es_leeching_more",stats={[1]="support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"}},[212]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Ailments caused by Melee Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Ailments caused by Melee Hits"}}},stats={[1]="support_fortify_ailment_damage_+%_final_from_melee_hits"}},[213]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Melee Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Melee Damage"}}},name="support_fortify_melee_damage_final_incr",stats={[1]="support_fortify_melee_damage_+%_final"}},[214]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Projectile Damage"}}},name="greater_volley_projectiles_damage_final",stats={[1]="support_greater_volley_projectile_damage_+%_final"}},[215]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Cold Damage Over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Cold Damage Over Time"}}},name="hypothermia_cold_damage",stats={[1]="support_hypothermia_cold_damage_over_time_+%_final"}},[216]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Physical Damage"}}},name="maim_phys_damage",stats={[1]="support_maim_chance_physical_damage_+%_final"}},[217]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Maimed by Minions take %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Maimed by Minions take %1%%% reduced Physical Damage"}}},name="maimed_phys_damage_taken_incr",stats={[1]="support_maimed_enemies_physical_damage_taken_+%"}},[218]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% added Fire Damage against Burning Enemies"}}},name="added_fire_against_burning",stats={[1]="global_minimum_added_fire_damage_vs_burning_enemies",[2]="global_maximum_added_fire_damage_vs_burning_enemies"}},[219]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage to your Deathmarked Enemy"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage to your Deathmarked Enemy"}}},name="deathmark_damage_to_target",stats={[1]="support_minion_focus_fire_damage_+%_final_vs_focussed_target"}},[220]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1% Base Fire Damage per second to Enemies near them"}}},name="support_burning_minions_aura_burn",stats={[1]="support_minion_instability_minion_base_fire_area_damage_per_minute"}},[221]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Elemental Damage"}}},name="minion_totem_resistance_support_damage",stats={[1]="support_minion_totem_resistance_elemental_damage_+%_final"}},[222]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions always target your Deathmarked Enemy if possible"}}},name="deathmark_target",stats={[1]="support_minion_use_focussed_target"}},[223]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOverpowered"},limit={[1]={[1]="#",[2]="#"}},text="Minions inflict Overpowered for a base Duration of %1% seconds when Their Hits are Blocked"}}},name="support_overpowered_on_enemy_block_base_duration",stats={[1]="support_overpowered_base_duration_ms"}},[224]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minions also fire Projectiles from up to %1% point on each side of them"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Minions fire Projectiles from up to %1% points on each side of them"}}},name="support_parallel_projectiles",stats={[1]="support_parallel_projectile_number_of_points_per_side"}},[225]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Projectile Damage"}}},name="parallel_projectiles_damage_final",stats={[1]="support_parallel_projectiles_damage_+%_final"}},[226]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage per Power Charge"}}},name="power_charge_on_crit_damage",stats={[1]="support_power_charge_on_crit_damage_+%_final_per_power_charge"}},[227]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Area of Effect"}}},name="pulverise_area_of_effect",stats={[1]="support_pulverise_area_of_effect_+%_final"}},[228]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Attack Speed"}}},name="pulverise_attack_speed",stats={[1]="support_pulverise_attack_speed_+%_final"}},[229]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Melee Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Melee Area Damage"}}},name="pulverise_melee_area_damage",stats={[1]="support_pulverise_melee_area_damage_+%_final"}},[230]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies have -%1%%% chance to Block Attack or Spell Damage from Minions"}}},name="support_reduced_block_chance",stats={[1]="support_reduce_enemy_block_and_spell_block_%"}},[231]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies have -%1%%% chance to Dodge Attack or Spell Hits from Minions"}}},name="support_reduced_dodge_chance",stats={[1]="support_reduce_enemy_dodge_and_spell_dodge_%"}},[232]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Duration "},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Duration "}}},name="support_less_duration",stats={[1]="support_reduced_duration_skill_effect_duration_+%_final"}},[233]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to gain Onslaught for 3 seconds when you Hit a Unique Enemy"}}},name="support_scion_unique_chance",stats={[1]="support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"}},[234]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=2},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to gain Onslaught for %2% seconds on\ndealing a Killing Blow"}}},name="support_scion_chance",stats={[1]="support_scion_onslaught_on_killing_blow_%_chance",[2]="support_scion_onslaught_on_killing_blow_duration_ms"}},[235]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions deal up to %1%%% more Melee Damage to Enemies, based on proximity"}}},stats={[1]="support_slashing_damage_+%_final_from_distance"}},[236]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Ailments"}}},name="ailment_damage_incr",stats={[1]="support_unbound_ailments_ailment_damage_+%_final"}},[237]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Withered inflicted by Minions has a base duration of %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Withered inflicted by Minions has a base duration of %1% seconds"}}},name="withered_support_base_duration",stats={[1]="support_withered_base_duration_ms"}},[238]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions' Skills have %1$+d%% to Critical Strike Multiplier per Power Charge when used by Traps"}}},name="trap_crit_per_power_charge",stats={[1]="trap_critical_strike_multiplier_+_per_power_charge"}},[239]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Skill and Minions have %1%%% increased Trap Throwing Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Skill and Minions have %1%%% reduced Trap Throwing Speed per Frenzy Charge"}}},name="trap_throwing_speed_per_frenzy",stats={[1]="trap_throwing_speed_+%_per_frenzy_charge"}},[240]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to inflict Withered on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=100,[2]="#"}},text="Minions inflict Withered on Hit"}}},name="withered_on_hit_chance",stats={[1]="withered_on_hit_chance_%"}},["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=198,["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=199,["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=200,["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=201,["accuracy_rating"]=9,["accuracy_rating_+%"]=10,["active_skill_elemental_damage_+%_final"]=46,["active_skill_minion_added_damage_+%_final"]=159,["active_skill_minion_damage_+%_final"]=82,["active_skill_minion_physical_damage_+%_final"]=83,["active_skill_physical_damage_+%_final"]=45,["add_power_charge_on_critical_strike_%"]=113,["additional_chance_to_freeze_chilled_enemies_%"]=140,["additive_modifiers_to_bow_damage_also_apply_to_minions"]=160,["always_freeze"]=21,["area_damage_+%"]=161,["attack_damage_+%"]=43,["attack_maximum_added_physical_damage"]=50,["attack_minimum_added_physical_damage"]=50,["attack_skill_mana_leech_from_any_damage_permyriad"]=162,["attack_speed_+%"]=8,["attack_speed_+%_when_on_low_life"]=129,["attacks_impale_on_hit_%_chance"]=163,["aura_effect_+%"]=28,["base_all_ailment_duration_+%"]=164,["base_aura_area_of_effect_+%"]=27,["base_cast_speed_+%"]=6,["base_chance_to_freeze_%"]=21,["base_chance_to_ignite_%"]=23,["base_chance_to_poison_on_hit_%"]=165,["base_chance_to_shock_%"]=22,["base_critical_strike_multiplier_+"]=12,["base_deal_no_chaos_damage"]=166,["base_global_chance_to_knockback_%"]=16,["base_melee_attack_repeat_count"]=111,["base_movement_velocity_+%"]=127,["base_number_of_beast_minions_allowed"]=88,["base_poison_damage_+%"]=151,["base_poison_duration_+%"]=152,["base_projectile_speed_+%"]=29,["base_reduce_enemy_cold_resistance_%"]=103,["base_reduce_enemy_fire_resistance_%"]=102,["base_reduce_enemy_lightning_resistance_%"]=105,["base_skill_area_of_effect_+%"]=25,["base_spell_repeat_count"]=112,["base_stun_duration_+%"]=31,["base_stun_threshold_reduction_+%"]=18,["base_use_life_in_place_of_mana"]=135,["bleed_on_hit_with_attacks_%"]=167,["blind_duration_+%"]=101,["burn_damage_+%"]=116,["cannot_cause_bleeding"]=167,["cannot_inflict_status_ailments"]=149,["cast_on_damage_taken_damage_+%_final"]=122,["cast_speed_+%_when_on_low_life"]=130,["chance_to_fortify_on_melee_hit_+%"]=138,["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=168,["chance_to_summon_support_ghost_on_killing_blow_%"]=169,["chaos_damage_+%"]=64,["chill_duration_+%"]=35,["chill_effect_+%"]=32,["cold_damage_+%"]=62,["critical_strike_chance_+%"]=11,["critical_strike_chance_+%_per_righteous_charge"]=170,["damage_+%"]=60,["damage_+%_while_es_leeching"]=171,["damage_+%_while_life_leeching"]=172,["damage_+%_while_mana_leeching"]=173,["damage_over_time_+%"]=81,["damaging_ailments_deal_damage_+%_faster"]=174,["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=175,["deal_no_elemental_damage"]=176,["deathmark_minion_damage_+%_final"]=177,["display_minion_maximum_life"]=91,["display_one_harbinger_allowed"]=89,["display_skitterbot_chilling_aura"]=178,["display_skitterbot_limit_per_type"]=158,["display_skitterbot_shocking_aura"]=179,["elemental_damage_+%"]=67,["elemental_damage_+%_final_per_righteous_charge"]=180,["elemental_status_effect_aura_radius"]=38,["energy_shield_leech_from_any_damage_permyriad"]=15,["fire_damage_+%"]=61,["freeze_duration_+%"]=36,["gain_endurance_charge_on_melee_stun"]=126,["gain_endurance_charge_on_melee_stun_%"]=126,["global_bleed_on_hit"]=167,["global_chance_to_blind_on_hit_%"]=100,["global_hit_causes_monster_flee_%"]=24,["global_maximum_added_chaos_damage"]=53,["global_maximum_added_cold_damage"]=51,["global_maximum_added_fire_damage_vs_burning_enemies"]=218,["global_maximum_added_lightning_damage"]=52,["global_minimum_added_chaos_damage"]=53,["global_minimum_added_cold_damage"]=51,["global_minimum_added_fire_damage_vs_burning_enemies"]=218,["global_minimum_added_lightning_damage"]=52,["global_poison_on_hit"]=150,["ignite_duration_+%"]=34,["ignites_apply_fire_resistance_+"]=181,["impale_debuff_effect_+%"]=182,["impale_phys_reduction_%_penalty"]=183,["impale_support_physical_damage_+%_final"]=184,["inc_aoe_plus_more_area_damage_+%_final"]=185,["infernal_legion_minions_have_burning_effect_radius_+"]=186,["keystone_point_blank"]=99,["kill_enemy_on_hit_if_under_10%_life"]=98,["killed_monster_dropped_item_quantity_+%"]=20,["killed_monster_dropped_item_rarity_+%"]=19,["knockback_distance_+%"]=17,["life_gain_per_target"]=13,["life_leech_from_any_damage_permyriad"]=14,["lightning_damage_+%"]=63,["maim_on_hit_%"]=187,["maximum_added_cold_damage_per_frenzy_charge"]=190,["melee_damage_vs_bleeding_enemies_+%"]=137,["melee_physical_damage_+%"]=54,["melee_splash"]=110,["melee_splash_area_of_effect_+%_final"]=153,["mine_critical_strike_chance_+%_per_power_charge"]=188,["mine_laying_speed_+%"]=143,["mine_throwing_speed_+%_per_frenzy_charge"]=189,["minimum_added_cold_damage_per_frenzy_charge"]=190,["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=191,["minion_grants_rampage_kill_to_parent_on_hitting_unique_enemy_%"]=192,["minions_cannot_taunt_enemies"]=193,["multistrike_damage_+%_final_on_first_repeat"]=194,["multistrike_damage_+%_final_on_second_repeat"]=195,["multistrike_damage_+%_final_on_third_repeat"]=196,["non_damaging_ailment_effect_+%"]=197,["number_of_additional_mines_to_place"]=2,["number_of_additional_projectiles"]=30,["number_of_additional_remote_mines_allowed"]=4,["number_of_additional_traps_allowed"]=3,["number_of_additional_traps_to_throw"]=1,["number_of_animated_weapons_allowed"]=87,["number_of_archer_skeletons_to_summon"]=95,["number_of_chains"]=106,["number_of_golems_allowed"]=90,["number_of_leader_skeletons_to_summon"]=97,["number_of_mage_skeletons_to_summon"]=96,["number_of_melee_skeletons_to_summon"]=94,["number_of_raging_spirits_allowed"]=86,["number_of_skeletons_allowed"]=92,["number_of_spectres_allowed"]=85,["number_of_spider_minions_allowed"]=93,["number_of_zombies_allowed"]=84,parent="skill_stat_descriptions",["physical_damage_%_to_add_as_chaos"]=57,["physical_damage_%_to_add_as_fire"]=55,["physical_damage_%_to_add_as_lightning"]=58,["physical_damage_+%"]=44,["projectile_base_number_of_targets_to_pierce"]=202,["projectile_damage_+%"]=134,["projectile_number_to_split"]=107,["projectiles_return"]=109,["projectiles_return_if_no_hit_object"]=109,["reduce_enemy_elemental_resistance_%"]=104,["shock_duration_+%"]=37,["shock_effect_+%"]=33,["skill_cold_damage_%_to_convert_to_fire"]=56,["skill_effect_and_damaging_ailment_duration_+%"]=203,["skill_effect_duration_+%"]=128,["skill_physical_damage_%_to_convert_to_lightning"]=59,["skitterbots_trap_mine_damage_+%_final"]=204,["spell_damage_+%"]=71,["support_area_concentrate_area_damage_+%_final"]=49,["support_attack_skills_elemental_damage_+%_final"]=65,["support_better_ailments_ailment_damage_+%_final"]=72,["support_better_ailments_hit_damage_+%_final"]=73,["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=136,["support_brutality_physical_damage_+%_final"]=205,["support_chain_hit_damage_+%_final"]=123,["support_chance_to_ignite_fire_damage_+%_final"]=74,["support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=207,["support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"]=206,["support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=209,["support_chills_also_grant_cold_damage_taken_per_minute_+%"]=208,["support_clustertrap_damage_+%_final"]=145,["support_concentrated_effect_skill_area_of_effect_+%_final"]=26,["support_controlled_destruction_spell_damage_+%_final"]=69,["support_damage_while_on_full_life_+%_final"]=42,["support_debilitate_hit_damage_+%_final_per_poison_stack"]=78,["support_debilitate_hit_damage_max_poison_stacks"]=78,["support_debilitate_poison_damage_+%_final"]=79,["support_echo_damage_+%_final"]=120,["support_efficacy_damage_over_time_+%_final"]=77,["support_efficacy_spell_damage_+%_final"]=70,["support_energy_shield_leech_damage_+%_on_full_energy_shield_final"]=210,["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=211,["support_fork_projectile_damage_+%_final"]=125,["support_fortify_ailment_damage_+%_final_from_melee_hits"]=212,["support_fortify_melee_damage_+%_final"]=213,["support_gem_elemental_damage_+%_final"]=148,["support_gem_mine_damage_+%_final"]=117,["support_greater_volley_projectile_damage_+%_final"]=214,["support_hypothermia_cold_damage_over_time_+%_final"]=215,["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=141,["support_ignite_prolif_ignite_damage_+%_final"]=75,["support_ignite_proliferation_radius"]=39,["support_lesser_multiple_projectile_damage_+%_final"]=48,["support_maim_chance_physical_damage_+%_final"]=216,["support_maimed_enemies_physical_damage_taken_+%"]=217,["support_melee_physical_damage_+%_final"]=40,["support_melee_physical_damage_poison_and_bleeding_damage_+%_final_from_melee_hits"]=41,["support_minefield_mine_damage_+%_final"]=146,["support_minion_damage_+%_final"]=68,["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=219,["support_minion_instability_minion_base_fire_area_damage_per_minute"]=220,["support_minion_totem_resistance_elemental_damage_+%_final"]=221,["support_minion_use_focussed_target"]=222,["support_multicast_cast_speed_+%_final"]=7,["support_multiple_attack_damage_+%_final"]=115,["support_multiple_attacks_melee_attack_speed_+%_final"]=114,["support_multiple_projectile_damage_+%_final"]=47,["support_multithrow_damage_+%_final"]=121,["support_overpowered_base_duration_ms"]=223,["support_parallel_projectile_number_of_points_per_side"]=224,["support_parallel_projectiles_damage_+%_final"]=225,["support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits"]=131,["support_poison_poison_damage_+%_final"]=80,["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=226,["support_projectile_attack_physical_damage_+%_final"]=132,["support_projectile_attack_speed_+%_final"]=133,["support_pulverise_area_of_effect_+%_final"]=227,["support_pulverise_attack_speed_+%_final"]=228,["support_pulverise_melee_area_damage_+%_final"]=229,["support_rapid_decay_damage_over_time_+%_final"]=76,["support_reduce_enemy_block_and_spell_block_%"]=230,["support_reduce_enemy_dodge_and_spell_dodge_%"]=231,["support_reduced_duration_skill_effect_duration_+%_final"]=232,["support_remote_mine_2_damage_+%_final"]=118,["support_ruthless_big_hit_damage_+%_final"]=155,["support_ruthless_big_hit_max_count"]=154,["support_ruthless_big_hit_stun_base_duration_override_ms"]=157,["support_ruthless_blow_bleeding_damage_from_melee_hits_+%_final"]=156,["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=233,["support_scion_onslaught_on_killing_blow_%_chance"]=234,["support_scion_onslaught_on_killing_blow_duration_ms"]=234,["support_slashing_damage_+%_final_from_distance"]=235,["support_split_projectile_damage_+%_final"]=124,["support_totem_damage_+%_final"]=119,["support_trap_and_mine_damage_+%_final"]=144,["support_unbound_ailments_ailment_damage_+%_final"]=236,["support_void_manipulation_chaos_damage_+%_final"]=147,["support_withered_base_duration_ms"]=237,["throw_traps_in_circle_radius"]=5,["trap_critical_strike_multiplier_+_per_power_charge"]=238,["trap_throwing_speed_+%"]=142,["trap_throwing_speed_+%_per_frenzy_charge"]=239,["virtual_number_of_forks_for_projectiles_final"]=108,["weapon_elemental_damage_+%"]=66,["withered_on_hit_chance_%"]=240} \ No newline at end of file +return {[1]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minions throw up to 1 additional Trap"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Minions throw up to %1% additional Traps"}}},name="num_additional_traps",stats={[1]="number_of_additional_traps_to_throw"}},[2]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]=1,[2]=1}},text="Minions throw up to 1 additional Mine"},[2]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]="#",[2]="#"}},text="Minions throw up to %1% additional Mines"}}},name="num_additional_mines",stats={[1]="number_of_additional_mines_to_place"}},[3]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minions can have an additional Trap placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Minions can have %1% additional Traps placed at a time"}}},name="num_additional_traps_allowed",stats={[1]="number_of_additional_traps_allowed"}},[4]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minions can have an additional Mine placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Minions can have %1% additional Mines placed at a time"}}},name="num_additional_mines_allowed",stats={[1]="number_of_additional_remote_mines_allowed"}},[5]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Traps are thrown randomly"}}},name="trap_throw_random",stats={[1]="throw_traps_in_circle_radius"}},[6]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Cast Speed"}}},name="cast_speed_incr",stats={[1]="base_cast_speed_+%"}},[7]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Cast Speed"}}},name="multicast_cast_speed_incr",stats={[1]="support_multicast_cast_speed_+%_final"}},[8]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Attack Speed"}}},name="attack_speed_incr",stats={[1]="attack_speed_+%"}},[9]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1% additional Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions lose %1% Accuracy Rating"}}},name="accuracy_rating",stats={[1]="accuracy_rating"}},[10]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Accuracy Rating"}}},name="accuracy_rating_incr",stats={[1]="accuracy_rating_+%"}},[11]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Critical Strike Chance"}}},name="critical_strike_chance_incr",stats={[1]="critical_strike_chance_+%"}},[12]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% to Critical Strike Multiplier"}}},name="critical_strike_multiplier_incr",stats={[1]="base_critical_strike_multiplier_+"}},[13]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions gain %1% Life for each enemy they Hit"}}},name="life_gain_per_target",stats={[1]="life_gain_per_target"}},[14]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Minions Leech %1%%% of Damage as Life"}}},name="life_leech_from_any",stats={[1]="life_leech_from_any_damage_permyriad"}},[15]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="Minions Leech %1%%% of Damage as Energy Shield"}}},name="energy_shield_leech_from_any",stats={[1]="energy_shield_leech_from_any_damage_permyriad"}},[16]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]=99}},text="Minions have an additional %1%%% chance to Knock Enemies Back on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=100,[2]="#"}},text="Minions knock Enemies Back on Hit"}}},name="knockback_chance",stats={[1]="base_global_chance_to_knockback_%"}},[17]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Knockback Distance"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Knockback Distance"}}},name="knockback_distance",stats={[1]="knockback_distance_+%"}},[18]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% reduced Enemy Stun Threshold"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% increased Enemy Stun Threshold"}}},name="stun_threshold_reduction_incr",stats={[1]="base_stun_threshold_reduction_+%"}},[19]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by enemies Slain by Minions"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by enemies Slain by Minions"}}},name="killed_monster_dropped_item_rarity_incr",stats={[1]="killed_monster_dropped_item_rarity_+%"}},[20]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by enemies Slain by Minions"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Dropped by enemies Slain by Minions"}}},name="killed_monster_dropped_item_quantity_incr",stats={[1]="killed_monster_dropped_item_quantity_+%"}},[21]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="Minions always Freeze Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0}},text="Minions have %1%%% chance to Freeze enemies"}}},name="freeze_chance",stats={[1]="base_chance_to_freeze_%",[2]="always_freeze"}},[22]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% chance to Shock enemies"}}},name="shock_chance",stats={[1]="base_chance_to_shock_%"}},[23]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% chance to Ignite enemies"}}},name="burn_chance",stats={[1]="base_chance_to_ignite_%"}},[24]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% chance to cause Monsters to Flee when Hit"}}},name="chance_to_flee",stats={[1]="global_hit_causes_monster_flee_%"}},[25]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Area of Effect"}}},name="area_of_effect_incr",stats={[1]="base_skill_area_of_effect_+%"}},[26]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Area of Effect"}}},name="concentrated_area_of_effect",stats={[1]="support_concentrated_effect_skill_area_of_effect_+%_final"}},[27]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Aura Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Aura Area of Effect"}}},name="aura_area_of_effect_incr",stats={[1]="base_aura_area_of_effect_+%"}},[28]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased effect of their Auras"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced effect of their Auras"}}},name="aura_effect_incr",stats={[1]="aura_effect_+%"}},[29]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Projectile Speed"}}},name="projectile_speed_incr",stats={[1]="base_projectile_speed_+%"}},[30]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minions fire %1% additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Minions fire %1% additional Projectiles"}}},name="additional_projectiles",stats={[1]="number_of_additional_projectiles"}},[31]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Stun Duration on enemies"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Stun Duration on enemies"}}},name="stun_duration_incr",stats={[1]="base_stun_duration_+%"}},[32]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Chill Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Chill Effect"}}},name="chill_effect",stats={[1]="chill_effect_+%"}},[33]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Shock Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Shock Effect"}}},name="shock_effect",stats={[1]="shock_effect_+%"}},[34]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Ignite Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Ignite Duration on enemies"}}},name="burn_duration",stats={[1]="ignite_duration_+%"}},[35]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Chill Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Chill Duration on enemies"}}},name="chill_duration",stats={[1]="chill_duration_+%"}},[36]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Freeze Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Freeze Duration on enemies"}}},name="freeze_duration",stats={[1]="freeze_duration_+%"}},[37]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Shock Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Shock Duration on enemies"}}},name="shock_duration",stats={[1]="shock_duration_+%"}},[38]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Elemental Ailments caused by Minions also spread to nearby enemies"}}},name="elemental_status_aura",stats={[1]="elemental_status_effect_aura_radius"}},[39]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignites caused by Minions spread to other nearby Enemies"}}},name="ignite_aura",stats={[1]="support_ignite_proliferation_radius"}},[40]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Melee Physical Damage"}}},name="support_melee_physical_damage_final_incr",stats={[1]="support_melee_physical_damage_+%_final"}},[41]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Bleeding and Poison caused by Melee Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Bleeding and Poison caused by Melee Hits"}}},stats={[1]="support_melee_physical_damage_poison_and_bleeding_damage_+%_final_from_melee_hits"}},[42]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Attack Skills while on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Attack Skills while on Full Life"}}},name="support_damage_full_life_incr",stats={[1]="support_damage_while_on_full_life_+%_final"}},[43]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Attack Damage"}}},name="attack_damage_incr",stats={[1]="attack_damage_+%"}},[44]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Physical Damage"}}},name="unused_identifier_physical_damage",stats={[1]="physical_damage_+%"}},[45]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Physical Damage"}}},name="unused_identifier_physical_damage_final",stats={[1]="active_skill_physical_damage_+%_final"}},[46]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Elemental Damage"}}},name="unused_identifier_elemental_damage_final",stats={[1]="active_skill_elemental_damage_+%_final"}},[47]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Projectile Damage"}}},name="multiple_projectile_damage_final",stats={[1]="support_multiple_projectile_damage_+%_final"}},[48]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Projectile Damage"}}},name="lesser_multiple_projectile_damage_final",stats={[1]="support_lesser_multiple_projectile_damage_+%_final"}},[49]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Area Damage"}}},name="area_concentrate_damage_final",stats={[1]="support_area_concentrate_area_damage_+%_final"}},[50]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions' Attacks deal %1% to %2% additional Physical Damage"}}},name="added_physical_attack_damage",stats={[1]="attack_minimum_added_physical_damage",[2]="attack_maximum_added_physical_damage"}},[51]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLingeringBlades"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Animated Lingering Blades deal %1% to %2% Added Attack Physical Damage"}}},name="animated_vestige_damage_add",stats={[1]="attack_minimum_added_physical_damage_for_ethereal_blades",[2]="attack_maximum_added_physical_damage_for_ethereal_blades"}},[52]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Cold Damage"}}},name="added_cold_damage",stats={[1]="global_minimum_added_cold_damage",[2]="global_maximum_added_cold_damage"}},[53]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Lightning Damage"}}},name="added_lightning_damage",stats={[1]="global_minimum_added_lightning_damage",[2]="global_maximum_added_lightning_damage"}},[54]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Chaos Damage"}}},name="added_chaos_damage",stats={[1]="global_minimum_added_chaos_damage",[2]="global_maximum_added_chaos_damage"}},[55]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Physical Damage with Melee Attacks"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Physical Damage with Melee Attacks"}}},name="melee_physical_damage_incr",stats={[1]="melee_physical_damage_+%"}},[56]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% of their Physical Damage as Extra Fire Damage"}}},name="physical_damage_to_add_as_fire",stats={[1]="physical_damage_%_to_add_as_fire"}},[57]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Minion Cold Damage Converted to Fire Damage"}}},name="cold_damage_to_convert_to_fire",stats={[1]="skill_cold_damage_%_to_convert_to_fire"}},[58]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% of their Physical Damage as Extra Chaos Damage"}}},name="physical_damage_to_add_as_chaos",stats={[1]="physical_damage_%_to_add_as_chaos"}},[59]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% of Physical Damage as Extra Lightning Damage"}}},name="physical_damage_to_add_as_lightning",stats={[1]="physical_damage_%_to_add_as_lightning"}},[60]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Minion Physical Damage Converted to Lightning Damage"}}},name="physical_damage_to_convert_to_lightning",stats={[1]="skill_physical_damage_%_to_convert_to_lightning"}},[61]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage"}}},name="damage_incr",stats={[1]="damage_+%"}},[62]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Fire Damage"}}},name="fire_damage_incr",stats={[1]="fire_damage_+%"}},[63]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Cold Damage"}}},name="cold_damage_incr",stats={[1]="cold_damage_+%"}},[64]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Lightning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Lightning Damage"}}},name="lightning_damage_incr",stats={[1]="lightning_damage_+%"}},[65]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Chaos Damage"}}},name="chaos_damage_incr",stats={[1]="chaos_damage_+%"}},[66]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Elemental Damage with Attack Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Elemental Damage with Attack Skills"}}},name="support_attack_elemental_damage_final",stats={[1]="support_attack_skills_elemental_damage_+%_final"}},[67]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Elemental Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Elemental Damage with Weapons"}}},name="weapon_elemental_damage_incr",stats={[1]="weapon_elemental_damage_+%"}},[68]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Elemental Damage"}}},name="elemental_damage_incr",stats={[1]="elemental_damage_+%"}},[69]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="support_more_minion_damage",stats={[1]="support_minion_damage_+%_final"}},[70]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Spell Damage"}}},name="controlled_destruction",stats={[1]="support_controlled_destruction_spell_damage_+%_final"}},[71]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Spell Damage"}}},name="support_efficacy_spell_damage",stats={[1]="support_efficacy_spell_damage_+%_final"}},[72]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Spell Damage"}}},name="spell_damage_incr",stats={[1]="spell_damage_+%"}},[73]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Ailments"}}},name="support_better_ailments_bonus",stats={[1]="support_better_ailments_ailment_damage_+%_final"}},[74]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Hits"}}},name="support_better_ailments_malus",stats={[1]="support_better_ailments_hit_damage_+%_final"}},[75]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Fire Damage"}}},name="support_chance_to_ignite_damage",stats={[1]="support_chance_to_ignite_fire_damage_+%_final"}},[76]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Ignite"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Ignite"}}},name="ignite_prolif_damage",stats={[1]="support_ignite_prolif_ignite_damage_+%_final"}},[77]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage over Time"}}},name="rapid_decay",stats={[1]="support_rapid_decay_damage_over_time_+%_final"}},[78]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage over Time"}}},name="support_efficacy_dot",stats={[1]="support_efficacy_damage_over_time_+%_final"}},[79]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1%%% more Damage with Hits for each Poison on the Enemy, up to %2%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1},[2]={[1]="#",[2]="#"}},text="Minions deal %1%%% less Damage with Hits for each Poison on the Enemy, up to %2%"}}},name="support_debilitate_hit_damage",stats={[1]="support_debilitate_hit_damage_+%_final_per_poison_stack",[2]="support_debilitate_hit_damage_max_poison_stacks"}},[80]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Poison"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Poison"}}},name="support_debilitate_poison_damage",stats={[1]="support_debilitate_poison_damage_+%_final"}},[81]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Poison"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Poison"}}},name="support_poison_poison_damage",stats={[1]="support_poison_poison_damage_+%_final"}},[82]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage over Time"}}},name="damage_over_time_incr",stats={[1]="damage_over_time_+%"}},[83]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="minion_damage_final",stats={[1]="active_skill_minion_damage_+%_final"}},[84]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Physical Damage"}}},name="minion_physical_damage_final",stats={[1]="active_skill_minion_physical_damage_+%_final"}},[85]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Raised Zombie"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Raised Zombies"}}},name="number_of_zombies",stats={[1]="number_of_zombies_allowed"}},[86]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Raised Spectre"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Raised Spectres"}}},name="number_of_spectres",stats={[1]="number_of_spectres_allowed"}},[87]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Raging Spirit"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Raging Spirits"}}},name="number_of_raging_spirits",stats={[1]="number_of_raging_spirits_allowed"}},[88]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Animated Weapon"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Animated Weapons"}}},name="number_of_animated_weapons",stats={[1]="number_of_animated_weapons_allowed"}},[89]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Bestial Minion"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Bestial Minion"}}},name="number_of_beasts",stats={[1]="base_number_of_beast_minions_allowed"}},[90]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum 1 Summoned Harbinger"}}},name="display_one_harbinger_allowed",stats={[1]="display_one_harbinger_allowed"}},[91]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Golem"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Golems"}}},name="number_of_golems",stats={[1]="number_of_golems_allowed"}},[92]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1% maximum Life"}}},name="display_minion_life",stats={[1]="display_minion_maximum_life"}},[93]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Skeleton"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Skeleton"}}},name="number_of_skeletons_allowed",stats={[1]="number_of_skeletons_allowed"}},[94]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Raised Spiders"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Raised Spiders"}}},name="number_of_spiders",stats={[1]="number_of_spider_minions_allowed"}},[95]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Summons %1% Skeleton Warrior"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Summons %1% Skeleton Warriors"}}},name="melee_skeletons_to_summon",stats={[1]="number_of_melee_skeletons_to_summon"}},[96]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Summons %1% Skeleton Archer"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Summons %1% Skeleton Archers"}}},name="archer_skeletons_to_summon",stats={[1]="number_of_archer_skeletons_to_summon"}},[97]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Summons %1% Skeleton Mage"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Summons %1% Skeleton Mages"}}},name="mage_skeletons_to_summon",stats={[1]="number_of_mage_skeletons_to_summon"}},[98]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Summons %1% Skeleton General"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Summons %1% Skeleton Generals"}}},name="leader_skeletons_to_summon",stats={[1]="number_of_leader_skeletons_to_summon"}},[99]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]=1,[2]="#"}},text="Minions have Culling Strike"}}},name="culling_strike",stats={[1]="kill_enemy_on_hit_if_under_10%_life"}},[100]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have Point Blank"}}},name="point_blank",stats={[1]="keystone_point_blank"}},[101]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to Blind enemies on hit"}}},name="chance_to_blind",stats={[1]="global_chance_to_blind_on_hit_%"}},[102]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Blinding duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Blinding duration"}}},name="blind_duration_incr",stats={[1]="blind_duration_+%"}},[103]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions Penetrate %1%%% Fire Resistance"}}},name="fire_penetration",stats={[1]="base_reduce_enemy_fire_resistance_%"}},[104]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions Penetrate %1%%% Cold Resistance"}}},name="cold_penetration",stats={[1]="base_reduce_enemy_cold_resistance_%"}},[105]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions Penetrate %1%%% Elemental Resistances"}}},name="elemental_penetration",stats={[1]="reduce_enemy_elemental_resistance_%"}},[106]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions Penetrate %1%%% Lightning Resistance"}}},name="lightning_penetration",stats={[1]="base_reduce_enemy_lightning_resistance_%"}},[107]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minion's Skills Chain %1$+d Times"}}},name="minion_chain_num",stats={[1]="number_of_chains"}},[108]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions' Projectiles Split towards %1% additional targets"}}},name="base_split_num",stats={[1]="projectile_number_to_split"}},[109]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minion's Projectiles Fork"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Minion's Projectiles Fork %1% additional times"}}},name="fork",stats={[1]="virtual_number_of_forks_for_projectiles_final"}},[110]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Minion's Projectiles Return to Them after hitting targets"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Minion's Projectiles Return to Them at end of flight"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minion's Projectiles Return to Them"}}},name="return",stats={[1]="projectiles_return",[2]="projectiles_return_if_no_hit_object"}},[111]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minion's Melee Strike Skills deal Splash Damage to Surrounding Targets"}}},name="melee_splash",stats={[1]="melee_splash"}},[112]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minion's Melee Attacks repeat %1% additional times"}}},name="melee_mulitple_attacks",stats={[1]="base_melee_attack_repeat_count"}},[113]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minion's Spells Repeat an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Minion's Spells Repeat an additional %1% times"}}},name="base_multicast",stats={[1]="base_spell_repeat_count"}},[114]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to gain a Power Charge on Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Minions gain a Power Charge on Critical Strike"}}},name="power_charge_on_crit_chance",stats={[1]="add_power_charge_on_critical_strike_%"}},[115]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Melee Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Melee Attack Speed"}}},name="multiple_attacks_speed",stats={[1]="support_multiple_attacks_melee_attack_speed_+%_final"}},[116]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Attack Damage"}}},name="multiple_attack_damage",stats={[1]="support_multiple_attack_damage_+%_final"}},[117]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Burning Damage"}}},name="burn_damage",stats={[1]="burn_damage_+%"}},[118]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="mine_damage",stats={[1]="support_gem_mine_damage_+%_final"}},[119]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="mine_damage_2_electric_boogaloo",stats={[1]="support_remote_mine_2_damage_+%_final"}},[120]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="totem_damage",stats={[1]="support_totem_damage_+%_final"}},[121]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="echo_damage",stats={[1]="support_echo_damage_+%_final"}},[122]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="multithrow_damage",stats={[1]="support_multithrow_damage_+%_final"}},[123]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="cast_on_damage_taken_damage",stats={[1]="cast_on_damage_taken_damage_+%_final"}},[124]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Hits"}}},name="chain_damage",stats={[1]="support_chain_hit_damage_+%_final"}},[125]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Projectile Damage"}}},name="split_damage",stats={[1]="support_split_projectile_damage_+%_final"}},[126]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Projectile Damage"}}},name="fork_damage",stats={[1]="support_fork_projectile_damage_+%_final"}},[127]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=99}},text="Minions have %2%%% chance to gain an Endurance Charge when they Stun an Enemy with a Melee Hit"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=100,[2]="#"}},text="Minions gain an Endurance Charge when they Stun an Enemy with a Melee Hit"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions gain an Endurance Charge when they Stun an Enemy with a Melee Hit"}}},name="endurance_charge_on_stun",stats={[1]="gain_endurance_charge_on_melee_stun",[2]="gain_endurance_charge_on_melee_stun_%"}},[128]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Movement Speed"}}},name="movement_speed_incr",stats={[1]="base_movement_velocity_+%"}},[129]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Duration"}}},name="skill_duration_incr",stats={[1]="skill_effect_duration_+%"}},[130]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Attack Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Attack Speed when on Low Life"}}},name="attack_speed_incr_on_low_life",stats={[1]="attack_speed_+%_when_on_low_life"}},[131]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Cast Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Cast Speed when on Low Life"}}},name="cast_speed_incr_on_low_life",stats={[1]="cast_speed_+%_when_on_low_life"}},[132]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions's Attacks deal %1%%% more Damage with Bleeding and Poison caused by Projectile Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions's Attacks deal %1%%% more Damage with Bleeding and Poison caused by Projectile Hits"}}},name="support_projectile_attack_phys_ailment_damage_incr",stats={[1]="support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits"}},[133]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Physical Projectile Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Physical Projectile Attack Damage"}}},name="support_projectile_attack_phys_incr",stats={[1]="support_projectile_attack_physical_damage_+%_final"}},[134]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Projectile Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Projectile Attack Speed"}}},name="support_projectile_attack_speed_incr",stats={[1]="support_projectile_attack_speed_+%_final"}},[135]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Projectile Damage"}}},name="projectile_damage_incr",stats={[1]="projectile_damage_+%"}},[136]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions Spend Life instead of Mana"}}},name="blood_magic",stats={[1]="base_use_life_in_place_of_mana"}},[137]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Melee Physical Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Melee Physical Damage against Bleeding Enemies"}}},name="bloodlust_damage",stats={[1]="support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"}},[138]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Melee Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Melee Damage against Bleeding Enemies"}}},name="bloodlust_damage_incr",stats={[1]="melee_damage_vs_bleeding_enemies_+%"}},[139]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Fortify on Melee hit"},[2]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=100,[2]="#"}},text="Minions gain Fortify on Melee hit"}}},name="chance_to_fortify_on_melee_hit",stats={[1]="chance_to_fortify_on_melee_hit_+%"}},[140]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Skill and Minions have %1%%% increased Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Skill and Minions have %1%%% reduced Mine Throwing Speed"}}},name="mine_laying_speed_incr",stats={[1]="mine_laying_speed_+%"}},[141]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$d%% chance to Freeze Enemies which are Chilled"}}},name="freeze_chance_vs_chilled",stats={[1]="additional_chance_to_freeze_chilled_enemies_%"}},[142]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Hits and Ailments against Chilled Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Hits and Ailments against Chilled Enemies"}}},name="hypothermia_damage",stats={[1]="support_hypothermia_damage_+%_vs_chilled_enemies_final"}},[143]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Throwing Speed"}}},name="trap_throw_speed_incr",stats={[1]="trap_throwing_speed_+%"}},[144]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Throwing Speed"}}},name="mine_laying_speed_incr",stats={[1]="mine_laying_speed_+%"}},[145]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Trap and Mine Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Trap and Mine Damage"}}},stats={[1]="support_trap_and_mine_damage_+%_final"}},[146]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="cluster_trap_damage_incr",stats={[1]="support_clustertrap_damage_+%_final"}},[147]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="minefield_damage",stats={[1]="support_minefield_mine_damage_+%_final"}},[148]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Chaos Damage"}}},name="void_manipulation",stats={[1]="support_void_manipulation_chaos_damage_+%_final"}},[149]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Elemental Damage"}}},name="elemental_focus_damage",stats={[1]="support_gem_elemental_damage_+%_final"}},[150]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Minions cannot inflict Elemental Ailments"}}},name="cannot_inflict_ailments",stats={[1]="cannot_inflict_status_ailments"}},[151]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Minions Poison Enemies on Hit"}}},name="poison_on_hit",stats={[1]="global_poison_on_hit"}},[152]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Damage with Poison"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Damage with Poison"}}},name="poison_damage",stats={[1]="base_poison_damage_+%"}},[153]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Poison Duration"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Poison Duration"}}},name="poison_duration",stats={[1]="base_poison_duration_+%"}},[154]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Melee Splash Area of Effect"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Melee Splash Area of Effect"}}},name="melee_splash_radius",stats={[1]="melee_splash_area_of_effect_+%_final"}},[155]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Every third use of Minion's Attacks deals a Ruthless Blow with Melee Hits"}}},name="support_ruthless_count",stats={[1]="support_ruthless_big_hit_max_count"}},[156]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minion's Ruthless Blows deal %1%%% more Melee Damage"}}},name="support_ruthless_damage",stats={[1]="support_ruthless_big_hit_damage_+%_final"}},[157]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minion's Ruthless Blows deal %1%%% more Damage with Bleeding caused by Melee Hits"}}},name="support_ruthless_bleeding_damage",stats={[1]="support_ruthless_blow_bleeding_damage_from_melee_hits_+%_final"}},[158]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Minion's Ruthless Blows have a base Stun Duration of %1% seconds"}}},name="support_ruthless_stun",stats={[1]="support_ruthless_big_hit_stun_base_duration_override_ms"}},[159]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Summoned Skitterbot of each type"}}},name="skitterbots_limit",stats={[1]="display_skitterbot_limit_per_type"}},[160]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions gain %1%%% more Added Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions gain %1%%% less Added Damage"}}},name="minion_added_damage",stats={[1]="active_skill_minion_added_damage_+%_final"}},[161]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Damage with Bows also apply to Minions"}}},name="additive_bow_damage_applies_to_minions",stats={[1]="additive_modifiers_to_bow_damage_also_apply_to_minions"}},[162]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Area Damage"}}},name="area_damage_incr",stats={[1]="area_damage_+%"}},[163]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="Minion's Attack Skills Leech %1%%% of Damage as Mana"}}},name="mana_leech_from_any",stats={[1]="attack_skill_mana_leech_from_any_damage_permyriad"}},[164]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="Minions' Attacks have %1%%% chance to Impale Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Minions' Attacks always Impale Enemies on Hit"}}},name="attack_impale_chance",stats={[1]="attacks_impale_on_hit_%_chance"}},[165]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Duration of Ailments on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Duration of Ailments on Enemies"}}},name="ailment_duration_incr",stats={[1]="base_all_ailment_duration_+%"}},[166]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Minions always Poison on Hit"}}},name="poison_chance",stats={[1]="base_chance_to_poison_on_hit_%"}},[167]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions deal no Chaos Damage"}}},name="deal_no_chaos",stats={[1]="base_deal_no_chaos_damage"}},[168]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Minions' Attacks have %1%%% chance to cause Bleeding"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Minions' Attacks cause Bleeding"},[3]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0}},text="Minions' Attacks cause Bleeding"},[4]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Minions cannot cause Bleeding"}}},name="bleeding_chance",stats={[1]="bleed_on_hit_with_attacks_%",[2]="global_bleed_on_hit",[3]="cannot_cause_bleeding"}},[169]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Summon a Phantasm when Non-Phantasm Minions Hit a Rare or Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon a Phantasm when Non-Phantasm Minions Hit a Rare or Unique Enemy"}}},name="ghost_rare_chance",stats={[1]="chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"}},[170]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Summon a Phantasm when Non-Phantasm Minions deal a Killing Blow"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon a Phantasm when Non-Phantasm Minions deal a Killing Blow"}}},name="ghost_chance",stats={[1]="chance_to_summon_support_ghost_on_killing_blow_%"}},[171]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Skill has %1%%% increased Critical Strike Chance per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Skill has %1%%% reduced Critical Strike Chance per Inspiration Charge"}}},name="crit_chance_per_righteous_charge",stats={[1]="critical_strike_chance_+%_per_righteous_charge"}},[172]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage while Leeching Energy Shield"}}},name="damage_while_es_leeching",stats={[1]="damage_+%_while_es_leeching"}},[173]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage while Leeching Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage while Leeching Life"}}},name="damage_while_life_leeching",stats={[1]="damage_+%_while_life_leeching"}},[174]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage while Leeching Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage while Leeching Mana"}}},name="damage_while_mana_leeching",stats={[1]="damage_+%_while_mana_leeching"}},[175]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]="#"}},text="Damaging Ailments inflicted by Minions deal damage %1%%% faster"}}},name="damaging_ailments_deal_damage_faster",stats={[1]="damaging_ailments_deal_damage_+%_faster"}},[176]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions inflict Decay on Hit, dealing %1% Chaos Damage per second for 8 seconds"}}},name="decay_on_hit",stats={[1]="deal_chaos_damage_per_second_for_10_seconds_on_hit"}},[177]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions deal no Elemental Damage"}}},name="deal_no_elemental",stats={[1]="deal_no_elemental_damage"}},[178]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage"}}},name="deathmark_minion_damage",stats={[1]="deathmark_minion_damage_+%_final"}},[179]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]="#",[2]="#"}},text="Chilling Skitterbot's Aura Chills Enemies near it"}}},name="skitterbot_chill",stats={[1]="display_skitterbot_chilling_aura"}},[180]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHitNoDuration"},limit={[1]={[1]="#",[2]="#"}},text="Shocking Skitterbot's Aura Shocks Enemies near it"}}},name="skitterbot_shock",stats={[1]="display_skitterbot_shocking_aura"}},[181]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Skill has %1%%% more Elemental Damage per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Skill has %1%%% less Elemental Damage per Inspiration Charge"}}},name="elemental_damage_per_righteous_charge",stats={[1]="elemental_damage_+%_final_per_righteous_charge"}},[182]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Ignited by Minions have %1$+d%% to Fire Resistance"}}},name="ignites_apply_fire_res",stats={[1]="ignites_apply_fire_resistance_+"}},[183]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions' Attacks have %1%%% increased Impale Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions' Attacks have %1%%% reduced Impale Effect"}}},name="impale_effect",stats={[1]="impale_debuff_effect_+%"}},[184]={lang={English={[1]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextPhysReductionNotNegative"},limit={[1]={[1]="#",[2]="#"}},text="Enemies Impaled by Minions have %1$+d%% to Total Physical Damage Reduction against Impale Hits"}}},stats={[1]="impale_phys_reduction_%_penalty"}},[185]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions deal %1%%% more Physical Damage"}}},name="impale_phys_damage",stats={[1]="impale_support_physical_damage_+%_final"}},[186]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Area Damage"}}},name="inc_area_plus_damage_final",stats={[1]="inc_aoe_plus_more_area_damage_+%_final"}},[187]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d to Radius of their Burning Effect"}}},name="infernal_legion_radius_plus",stats={[1]="infernal_legion_minions_have_burning_effect_radius_+"}},[188]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Minions Attacks have %1%%% chance to Maim on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Minions Attacks always Maim on Hit"}}},name="maim_chance",stats={[1]="maim_on_hit_%"}},[189]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions' Skills have %1%%% increased Critical Strike Chance per Power Charge if used by Mines"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions' Skills have %1%%% reduced Critical Strike Chance per Power Charge if used by Mines"}}},name="mine_crit_chance_per_power_charge",stats={[1]="mine_critical_strike_chance_+%_per_power_charge"}},[190]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Skill and Minions have %1%%% increased Mine Throwing Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Skill and Minions have %1%%% reduced Mine Throwing Speed per Frenzy Charge"}}},name="mine_throwing_speed_per_frenzy_charge",stats={[1]="mine_throwing_speed_+%_per_frenzy_charge"}},[191]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions have %1% to %2% added Cold Damage per Frenzy Charge"}}},name="support_ice_bite_damage",stats={[1]="minimum_added_cold_damage_per_frenzy_charge",[2]="maximum_added_cold_damage_per_frenzy_charge"}},[192]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Attack Speed"}}},name="minion_attack_speed_more",stats={[1]="active_skill_minion_attack_speed_+%_final"}},[193]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions take %1%%% of their Maximum Life as Fire Damage per second"}}},name="support_burning_minions_self_burn",stats={[1]="minion_fire_damage_%_of_maximum_life_taken_per_minute"}},[194]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Rampage Kill when Minion hits a Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Rampage Kill when Minion hits a Unique Enemy"}}},name="minion_grants_rampage_on_hit",stats={[1]="minion_grants_rampage_kill_to_parent_on_hitting_unique_enemy_%"}},[195]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions cannot Taunt Enemies"}}},name="minions_cannot_taunt",stats={[1]="minions_cannot_taunt_enemies"}},[196]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minion's Melee Attack's First Repeat deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minion's Melee Attack's First Repeat deals %1%%% less Damage"}}},name="multistrike_first_repeat_damage",stats={[1]="multistrike_damage_+%_final_on_first_repeat"}},[197]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minion's Melee Attack's Second Repeat deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minion's Melee Attack's Second Repeat deals %1%%% less Damage"}}},name="multistrike_second_repeat_damage",stats={[1]="multistrike_damage_+%_final_on_second_repeat"}},[198]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minion's Melee Attack's Third Repeat deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minion's Melee Attack's Third Repeat deals %1%%% less Damage"}}},name="multistrike_third_repeat_damage",stats={[1]="multistrike_damage_+%_final_on_third_repeat"}},[199]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Effect of non-Damaging Ailments on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Effect of non-Damaging Ailments on Enemies"}}},name="ailment_non_damaging_incr_effect",stats={[1]="non_damaging_ailment_effect_+%"}},[200]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions have %1%%% chance to gain a Frenzy Charge when a Mine is Detonated targeting an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="This Skill and Minions gain a Frenzy Charge when a Mine is Detonated targeting an Enemy"}}},name="frenzy_charge_on_mine_detonate",stats={[1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"}},[201]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions have %1%%% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="This Skill and Minions have gain a Frenzy Charge when your Trap is triggered by an Enemy"}}},name="frenzy_charge_on_trap_trig",stats={[1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"}},[202]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions have %1%%% chance to gain a Power Charge when a Mine is Detonated targeting an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="This Skill and Minions gain a Power Charge when a Mine is Detonated targeting an Enemy"}}},name="power_charge_on_mine_detonate",stats={[1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"}},[203]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions have %1%%% chance to gain a Power Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="This Skill and Minions gain a Power Charge when your Trap is triggered by an Enemy"}}},name="power_charge_on_trap_trig",stats={[1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"}},[204]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minion's Projectiles Pierce an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Minion's Projectiles Pierce %1% additional Targets"}}},name="base_pierce_num",stats={[1]="projectile_base_number_of_targets_to_pierce"}},[205]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Duration of Skills and Duration of Damaging Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Duration of Skills and Damaging Ailments"}}},name="skill_and_damaging_ailment_duration_incr",stats={[1]="skill_effect_and_damaging_ailment_duration_+%"}},[206]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skitterbots grant %1%%% more Trap and Mine Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Skitterbots grant %1%%% less Trap and Mine Damage"}}},name="skitterbots_trap_mine_damage",stats={[1]="skitterbots_trap_mine_damage_+%_final"}},[207]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Physical Damage"}}},name="brutality_phys_damage",stats={[1]="support_brutality_physical_damage_+%_final"}},[208]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]=1,[2]="#"}},text="Enemies in Chilling Areas from Minion's Skills take %1%%% increased Cold Damage over Time"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]="#",[2]=-1}},text="Enemies in Chilling Areas from Minion's Skills take %1%%% reduced Cold Damage over Time"}}},name="support_chilling_areas_incr_cold_dot_taken",stats={[1]="support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"}},[209]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]="#",[2]="#"}},text="Enemies in Chilling Areas from Minion's Skills have Cold Damage taken increased by Chill Effect"}}},name="support_chilling_areas_incr_cold_damage_taken",stats={[1]="support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"}},[210]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Chilled by Minions take %1%%% increased Cold Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Chilled by Minions take %1%%% reduced Cold Damage over Time"}}},name="support_chills_incr_cold_dot_taken",stats={[1]="support_chills_also_grant_cold_damage_taken_per_minute_+%"}},[211]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Chilled by Minions have Cold Damage taken increased by Chill Effect"}}},name="support_chills_incr_cold_damage_taken",stats={[1]="support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"}},[212]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage while on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage while on Full Energy Shield"}}},stats={[1]="support_energy_shield_leech_damage_+%_on_full_energy_shield_final"}},[213]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage while Leeching Energy Shield"}}},name="damage_while_es_leeching_more",stats={[1]="support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"}},[214]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Ailments caused by Melee Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Ailments caused by Melee Hits"}}},stats={[1]="support_fortify_ailment_damage_+%_final_from_melee_hits"}},[215]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Melee Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Melee Damage"}}},name="support_fortify_melee_damage_final_incr",stats={[1]="support_fortify_melee_damage_+%_final"}},[216]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Projectile Damage"}}},name="greater_volley_projectiles_damage_final",stats={[1]="support_greater_volley_projectile_damage_+%_final"}},[217]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Cold Damage Over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Cold Damage Over Time"}}},name="hypothermia_cold_damage",stats={[1]="support_hypothermia_cold_damage_over_time_+%_final"}},[218]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Physical Damage"}}},name="maim_phys_damage",stats={[1]="support_maim_chance_physical_damage_+%_final"}},[219]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Maimed by Minions take %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Maimed by Minions take %1%%% reduced Physical Damage"}}},name="maimed_phys_damage_taken_incr",stats={[1]="support_maimed_enemies_physical_damage_taken_+%"}},[220]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% added Fire Damage against Burning Enemies"}}},name="added_fire_against_burning",stats={[1]="global_minimum_added_fire_damage_vs_burning_enemies",[2]="global_maximum_added_fire_damage_vs_burning_enemies"}},[221]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage to your Deathmarked Enemy"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage to your Deathmarked Enemy"}}},name="deathmark_damage_to_target",stats={[1]="support_minion_focus_fire_damage_+%_final_vs_focussed_target"}},[222]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1% Base Fire Damage per second to Enemies near them"}}},name="support_burning_minions_aura_burn",stats={[1]="support_minion_instability_minion_base_fire_area_damage_per_minute"}},[223]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Elemental Damage"}}},name="minion_totem_resistance_support_damage",stats={[1]="support_minion_totem_resistance_elemental_damage_+%_final"}},[224]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions always target your Deathmarked Enemy if possible"}}},name="deathmark_target",stats={[1]="support_minion_use_focussed_target"}},[225]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOverpowered"},limit={[1]={[1]="#",[2]="#"}},text="Minions inflict Overpowered for a base Duration of %1% seconds when Their Hits are Blocked"}}},name="support_overpowered_on_enemy_block_base_duration",stats={[1]="support_overpowered_base_duration_ms"}},[226]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Minions also fire Projectiles from up to %1% point on each side of them"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Minions fire Projectiles from up to %1% points on each side of them"}}},name="support_parallel_projectiles",stats={[1]="support_parallel_projectile_number_of_points_per_side"}},[227]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Projectile Damage"}}},name="parallel_projectiles_damage_final",stats={[1]="support_parallel_projectiles_damage_+%_final"}},[228]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage per Power Charge"}}},name="power_charge_on_crit_damage",stats={[1]="support_power_charge_on_crit_damage_+%_final_per_power_charge"}},[229]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Area of Effect"}}},name="pulverise_area_of_effect",stats={[1]="support_pulverise_area_of_effect_+%_final"}},[230]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Attack Speed"}}},name="pulverise_attack_speed",stats={[1]="support_pulverise_attack_speed_+%_final"}},[231]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Melee Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Melee Area Damage"}}},name="pulverise_melee_area_damage",stats={[1]="support_pulverise_melee_area_damage_+%_final"}},[232]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies have -%1%%% chance to Block Attack or Spell Damage from Minions"}}},name="support_reduced_block_chance",stats={[1]="support_reduce_enemy_block_and_spell_block_%"}},[233]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies have -%1%%% chance to Dodge Attack or Spell Hits from Minions"}}},name="support_reduced_dodge_chance",stats={[1]="support_reduce_enemy_dodge_and_spell_dodge_%"}},[234]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Duration "},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Duration "}}},name="support_less_duration",stats={[1]="support_reduced_duration_skill_effect_duration_+%_final"}},[235]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to gain Onslaught for 3 seconds when you Hit a Unique Enemy"}}},name="support_scion_unique_chance",stats={[1]="support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"}},[236]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=2},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to gain Onslaught for %2% seconds on\ndealing a Killing Blow"}}},name="support_scion_chance",stats={[1]="support_scion_onslaught_on_killing_blow_%_chance",[2]="support_scion_onslaught_on_killing_blow_duration_ms"}},[237]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions deal up to %1%%% more Melee Damage to Enemies, based on proximity"}}},stats={[1]="support_slashing_damage_+%_final_from_distance"}},[238]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage with Ailments"}}},name="ailment_damage_incr",stats={[1]="support_unbound_ailments_ailment_damage_+%_final"}},[239]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Withered inflicted by Minions has a base duration of %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Withered inflicted by Minions has a base duration of %1% seconds"}}},name="withered_support_base_duration",stats={[1]="support_withered_base_duration_ms"}},[240]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions' Skills have %1$+d%% to Critical Strike Multiplier per Power Charge when used by Traps"}}},name="trap_crit_per_power_charge",stats={[1]="trap_critical_strike_multiplier_+_per_power_charge"}},[241]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Skill and Minions have %1%%% increased Trap Throwing Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Skill and Minions have %1%%% reduced Trap Throwing Speed per Frenzy Charge"}}},name="trap_throwing_speed_per_frenzy",stats={[1]="trap_throwing_speed_+%_per_frenzy_charge"}},[242]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to inflict Withered on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=100,[2]="#"}},text="Minions inflict Withered on Hit"}}},name="withered_on_hit_chance",stats={[1]="withered_on_hit_chance_%"}},["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=200,["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=201,["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=202,["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=203,["accuracy_rating"]=9,["accuracy_rating_+%"]=10,["active_skill_elemental_damage_+%_final"]=46,["active_skill_minion_added_damage_+%_final"]=160,["active_skill_minion_attack_speed_+%_final"]=192,["active_skill_minion_damage_+%_final"]=83,["active_skill_minion_physical_damage_+%_final"]=84,["active_skill_physical_damage_+%_final"]=45,["add_power_charge_on_critical_strike_%"]=114,["additional_chance_to_freeze_chilled_enemies_%"]=141,["additive_modifiers_to_bow_damage_also_apply_to_minions"]=161,["always_freeze"]=21,["area_damage_+%"]=162,["attack_damage_+%"]=43,["attack_maximum_added_physical_damage"]=50,["attack_maximum_added_physical_damage_for_ethereal_blades"]=51,["attack_minimum_added_physical_damage"]=50,["attack_minimum_added_physical_damage_for_ethereal_blades"]=51,["attack_skill_mana_leech_from_any_damage_permyriad"]=163,["attack_speed_+%"]=8,["attack_speed_+%_when_on_low_life"]=130,["attacks_impale_on_hit_%_chance"]=164,["aura_effect_+%"]=28,["base_all_ailment_duration_+%"]=165,["base_aura_area_of_effect_+%"]=27,["base_cast_speed_+%"]=6,["base_chance_to_freeze_%"]=21,["base_chance_to_ignite_%"]=23,["base_chance_to_poison_on_hit_%"]=166,["base_chance_to_shock_%"]=22,["base_critical_strike_multiplier_+"]=12,["base_deal_no_chaos_damage"]=167,["base_global_chance_to_knockback_%"]=16,["base_melee_attack_repeat_count"]=112,["base_movement_velocity_+%"]=128,["base_number_of_beast_minions_allowed"]=89,["base_poison_damage_+%"]=152,["base_poison_duration_+%"]=153,["base_projectile_speed_+%"]=29,["base_reduce_enemy_cold_resistance_%"]=104,["base_reduce_enemy_fire_resistance_%"]=103,["base_reduce_enemy_lightning_resistance_%"]=106,["base_skill_area_of_effect_+%"]=25,["base_spell_repeat_count"]=113,["base_stun_duration_+%"]=31,["base_stun_threshold_reduction_+%"]=18,["base_use_life_in_place_of_mana"]=136,["bleed_on_hit_with_attacks_%"]=168,["blind_duration_+%"]=102,["burn_damage_+%"]=117,["cannot_cause_bleeding"]=168,["cannot_inflict_status_ailments"]=150,["cast_on_damage_taken_damage_+%_final"]=123,["cast_speed_+%_when_on_low_life"]=131,["chance_to_fortify_on_melee_hit_+%"]=139,["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=169,["chance_to_summon_support_ghost_on_killing_blow_%"]=170,["chaos_damage_+%"]=65,["chill_duration_+%"]=35,["chill_effect_+%"]=32,["cold_damage_+%"]=63,["critical_strike_chance_+%"]=11,["critical_strike_chance_+%_per_righteous_charge"]=171,["damage_+%"]=61,["damage_+%_while_es_leeching"]=172,["damage_+%_while_life_leeching"]=173,["damage_+%_while_mana_leeching"]=174,["damage_over_time_+%"]=82,["damaging_ailments_deal_damage_+%_faster"]=175,["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=176,["deal_no_elemental_damage"]=177,["deathmark_minion_damage_+%_final"]=178,["display_minion_maximum_life"]=92,["display_one_harbinger_allowed"]=90,["display_skitterbot_chilling_aura"]=179,["display_skitterbot_limit_per_type"]=159,["display_skitterbot_shocking_aura"]=180,["elemental_damage_+%"]=68,["elemental_damage_+%_final_per_righteous_charge"]=181,["elemental_status_effect_aura_radius"]=38,["energy_shield_leech_from_any_damage_permyriad"]=15,["fire_damage_+%"]=62,["freeze_duration_+%"]=36,["gain_endurance_charge_on_melee_stun"]=127,["gain_endurance_charge_on_melee_stun_%"]=127,["global_bleed_on_hit"]=168,["global_chance_to_blind_on_hit_%"]=101,["global_hit_causes_monster_flee_%"]=24,["global_maximum_added_chaos_damage"]=54,["global_maximum_added_cold_damage"]=52,["global_maximum_added_fire_damage_vs_burning_enemies"]=220,["global_maximum_added_lightning_damage"]=53,["global_minimum_added_chaos_damage"]=54,["global_minimum_added_cold_damage"]=52,["global_minimum_added_fire_damage_vs_burning_enemies"]=220,["global_minimum_added_lightning_damage"]=53,["global_poison_on_hit"]=151,["ignite_duration_+%"]=34,["ignites_apply_fire_resistance_+"]=182,["impale_debuff_effect_+%"]=183,["impale_phys_reduction_%_penalty"]=184,["impale_support_physical_damage_+%_final"]=185,["inc_aoe_plus_more_area_damage_+%_final"]=186,["infernal_legion_minions_have_burning_effect_radius_+"]=187,["keystone_point_blank"]=100,["kill_enemy_on_hit_if_under_10%_life"]=99,["killed_monster_dropped_item_quantity_+%"]=20,["killed_monster_dropped_item_rarity_+%"]=19,["knockback_distance_+%"]=17,["life_gain_per_target"]=13,["life_leech_from_any_damage_permyriad"]=14,["lightning_damage_+%"]=64,["maim_on_hit_%"]=188,["maximum_added_cold_damage_per_frenzy_charge"]=191,["melee_damage_vs_bleeding_enemies_+%"]=138,["melee_physical_damage_+%"]=55,["melee_splash"]=111,["melee_splash_area_of_effect_+%_final"]=154,["mine_critical_strike_chance_+%_per_power_charge"]=189,["mine_laying_speed_+%"]=144,["mine_throwing_speed_+%_per_frenzy_charge"]=190,["minimum_added_cold_damage_per_frenzy_charge"]=191,["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=193,["minion_grants_rampage_kill_to_parent_on_hitting_unique_enemy_%"]=194,["minions_cannot_taunt_enemies"]=195,["multistrike_damage_+%_final_on_first_repeat"]=196,["multistrike_damage_+%_final_on_second_repeat"]=197,["multistrike_damage_+%_final_on_third_repeat"]=198,["non_damaging_ailment_effect_+%"]=199,["number_of_additional_mines_to_place"]=2,["number_of_additional_projectiles"]=30,["number_of_additional_remote_mines_allowed"]=4,["number_of_additional_traps_allowed"]=3,["number_of_additional_traps_to_throw"]=1,["number_of_animated_weapons_allowed"]=88,["number_of_archer_skeletons_to_summon"]=96,["number_of_chains"]=107,["number_of_golems_allowed"]=91,["number_of_leader_skeletons_to_summon"]=98,["number_of_mage_skeletons_to_summon"]=97,["number_of_melee_skeletons_to_summon"]=95,["number_of_raging_spirits_allowed"]=87,["number_of_skeletons_allowed"]=93,["number_of_spectres_allowed"]=86,["number_of_spider_minions_allowed"]=94,["number_of_zombies_allowed"]=85,parent="skill_stat_descriptions",["physical_damage_%_to_add_as_chaos"]=58,["physical_damage_%_to_add_as_fire"]=56,["physical_damage_%_to_add_as_lightning"]=59,["physical_damage_+%"]=44,["projectile_base_number_of_targets_to_pierce"]=204,["projectile_damage_+%"]=135,["projectile_number_to_split"]=108,["projectiles_return"]=110,["projectiles_return_if_no_hit_object"]=110,["reduce_enemy_elemental_resistance_%"]=105,["shock_duration_+%"]=37,["shock_effect_+%"]=33,["skill_cold_damage_%_to_convert_to_fire"]=57,["skill_effect_and_damaging_ailment_duration_+%"]=205,["skill_effect_duration_+%"]=129,["skill_physical_damage_%_to_convert_to_lightning"]=60,["skitterbots_trap_mine_damage_+%_final"]=206,["spell_damage_+%"]=72,["support_area_concentrate_area_damage_+%_final"]=49,["support_attack_skills_elemental_damage_+%_final"]=66,["support_better_ailments_ailment_damage_+%_final"]=73,["support_better_ailments_hit_damage_+%_final"]=74,["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=137,["support_brutality_physical_damage_+%_final"]=207,["support_chain_hit_damage_+%_final"]=124,["support_chance_to_ignite_fire_damage_+%_final"]=75,["support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=209,["support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"]=208,["support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=211,["support_chills_also_grant_cold_damage_taken_per_minute_+%"]=210,["support_clustertrap_damage_+%_final"]=146,["support_concentrated_effect_skill_area_of_effect_+%_final"]=26,["support_controlled_destruction_spell_damage_+%_final"]=70,["support_damage_while_on_full_life_+%_final"]=42,["support_debilitate_hit_damage_+%_final_per_poison_stack"]=79,["support_debilitate_hit_damage_max_poison_stacks"]=79,["support_debilitate_poison_damage_+%_final"]=80,["support_echo_damage_+%_final"]=121,["support_efficacy_damage_over_time_+%_final"]=78,["support_efficacy_spell_damage_+%_final"]=71,["support_energy_shield_leech_damage_+%_on_full_energy_shield_final"]=212,["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=213,["support_fork_projectile_damage_+%_final"]=126,["support_fortify_ailment_damage_+%_final_from_melee_hits"]=214,["support_fortify_melee_damage_+%_final"]=215,["support_gem_elemental_damage_+%_final"]=149,["support_gem_mine_damage_+%_final"]=118,["support_greater_volley_projectile_damage_+%_final"]=216,["support_hypothermia_cold_damage_over_time_+%_final"]=217,["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=142,["support_ignite_prolif_ignite_damage_+%_final"]=76,["support_ignite_proliferation_radius"]=39,["support_lesser_multiple_projectile_damage_+%_final"]=48,["support_maim_chance_physical_damage_+%_final"]=218,["support_maimed_enemies_physical_damage_taken_+%"]=219,["support_melee_physical_damage_+%_final"]=40,["support_melee_physical_damage_poison_and_bleeding_damage_+%_final_from_melee_hits"]=41,["support_minefield_mine_damage_+%_final"]=147,["support_minion_damage_+%_final"]=69,["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=221,["support_minion_instability_minion_base_fire_area_damage_per_minute"]=222,["support_minion_totem_resistance_elemental_damage_+%_final"]=223,["support_minion_use_focussed_target"]=224,["support_multicast_cast_speed_+%_final"]=7,["support_multiple_attack_damage_+%_final"]=116,["support_multiple_attacks_melee_attack_speed_+%_final"]=115,["support_multiple_projectile_damage_+%_final"]=47,["support_multithrow_damage_+%_final"]=122,["support_overpowered_base_duration_ms"]=225,["support_parallel_projectile_number_of_points_per_side"]=226,["support_parallel_projectiles_damage_+%_final"]=227,["support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits"]=132,["support_poison_poison_damage_+%_final"]=81,["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=228,["support_projectile_attack_physical_damage_+%_final"]=133,["support_projectile_attack_speed_+%_final"]=134,["support_pulverise_area_of_effect_+%_final"]=229,["support_pulverise_attack_speed_+%_final"]=230,["support_pulverise_melee_area_damage_+%_final"]=231,["support_rapid_decay_damage_over_time_+%_final"]=77,["support_reduce_enemy_block_and_spell_block_%"]=232,["support_reduce_enemy_dodge_and_spell_dodge_%"]=233,["support_reduced_duration_skill_effect_duration_+%_final"]=234,["support_remote_mine_2_damage_+%_final"]=119,["support_ruthless_big_hit_damage_+%_final"]=156,["support_ruthless_big_hit_max_count"]=155,["support_ruthless_big_hit_stun_base_duration_override_ms"]=158,["support_ruthless_blow_bleeding_damage_from_melee_hits_+%_final"]=157,["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=235,["support_scion_onslaught_on_killing_blow_%_chance"]=236,["support_scion_onslaught_on_killing_blow_duration_ms"]=236,["support_slashing_damage_+%_final_from_distance"]=237,["support_split_projectile_damage_+%_final"]=125,["support_totem_damage_+%_final"]=120,["support_trap_and_mine_damage_+%_final"]=145,["support_unbound_ailments_ailment_damage_+%_final"]=238,["support_void_manipulation_chaos_damage_+%_final"]=148,["support_withered_base_duration_ms"]=239,["throw_traps_in_circle_radius"]=5,["trap_critical_strike_multiplier_+_per_power_charge"]=240,["trap_throwing_speed_+%"]=143,["trap_throwing_speed_+%_per_frenzy_charge"]=241,["virtual_number_of_forks_for_projectiles_final"]=109,["weapon_elemental_damage_+%"]=67,["withered_on_hit_chance_%"]=242} \ No newline at end of file diff --git a/Data/3_0/StatDescriptions/minion_spell_skill_stat_descriptions.lua b/Data/3_0/StatDescriptions/minion_spell_skill_stat_descriptions.lua index 510c14fea..6b0f9d45b 100644 --- a/Data/3_0/StatDescriptions/minion_spell_skill_stat_descriptions.lua +++ b/Data/3_0/StatDescriptions/minion_spell_skill_stat_descriptions.lua @@ -1 +1 @@ -return {[1]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Spell and Minions have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Spell and Minions have %1%%% reduced Cast Speed"}}},name="cast_speed_incr",stats={[1]="base_cast_speed_+%"}},[2]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="This Spell and Minions have %1%%% increased Cast Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="This Spell and Minions have %1%%% reduced Cast Speed when on Low Life"}}},name="cast_speed_incr_on_low_life",stats={[1]="cast_speed_+%_when_on_low_life"}},[3]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Spell and Minions have %1%%% more Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Spell and Minions have %1%%% less Cast Speed"}}},name="multicast_cast_speed_incr",stats={[1]="support_multicast_cast_speed_+%_final"}},[4]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Spell and Minions have %1%%% more Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Spell and Minions have %1%%% less Cast Speed"}}},name="totem_cast_speed",stats={[1]="support_spell_totem_cast_speed_+%_final"}},[5]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions have %1%%% chance to throw up to 1 additional Trap or Mine"}}},stats={[1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine"}},[6]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions have %1%%% chance to throw up to 2 additional Traps or Mines"}}},stats={[1]="support_additional_trap_mine_%_chance_for_2_additional_trap_mine"}},[7]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions have %1%%% chance to throw up to 3 additional Traps or Mines"}}},stats={[1]="support_additional_trap_mine_%_chance_for_3_additional_trap_mine"}},["base_cast_speed_+%"]=1,["cast_speed_+%_when_on_low_life"]=2,parent="minion_skill_stat_descriptions",["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=5,["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=6,["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=7,["support_multicast_cast_speed_+%_final"]=3,["support_spell_totem_cast_speed_+%_final"]=4} \ No newline at end of file +return {[1]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Spell and Minions have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Spell and Minions have %1%%% reduced Cast Speed"}}},name="cast_speed_incr",stats={[1]="base_cast_speed_+%"}},[2]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="This Spell and Minions have %1%%% increased Cast Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="This Spell and Minions have %1%%% reduced Cast Speed when on Low Life"}}},name="cast_speed_incr_on_low_life",stats={[1]="cast_speed_+%_when_on_low_life"}},[3]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Spell and Minions have %1%%% more Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Spell and Minions have %1%%% less Cast Speed"}}},name="multicast_cast_speed_incr",stats={[1]="support_multicast_cast_speed_+%_final"}},[4]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Spell and Minions have %1%%% more Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Spell and Minions have %1%%% less Cast Speed"}}},name="totem_cast_speed",stats={[1]="support_spell_totem_cast_speed_+%_final"}},[5]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions have %1%%% chance to throw up to 1 additional Trap or Mine"}}},stats={[1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine"}},[6]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions have %1%%% chance to throw up to 2 additional Traps or Mines"}}},stats={[1]="support_additional_trap_mine_%_chance_for_2_additional_trap_mine"}},[7]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]="#",[2]="#"}},text="This Skill and Minions have %1%%% chance to throw up to 3 additional Traps or Mines"}}},stats={[1]="support_additional_trap_mine_%_chance_for_3_additional_trap_mine"}},["base_cast_speed_+%"]=1,["cast_speed_+%_when_on_low_life"]=2,parent="minion_skill_stat_descriptions",["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=5,["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=6,["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=7,["support_multicast_cast_speed_+%_final"]=3,["support_spell_totem_cast_speed_+%_final"]=4} \ No newline at end of file diff --git a/Data/3_0/StatDescriptions/monster_stat_descriptions.lua b/Data/3_0/StatDescriptions/monster_stat_descriptions.lua index be6495ed0..daa33689b 100644 --- a/Data/3_0/StatDescriptions/monster_stat_descriptions.lua +++ b/Data/3_0/StatDescriptions/monster_stat_descriptions.lua @@ -1 +1 @@ -return {[1]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra Fire Damage"}}},stats={[1]="physical_damage_%_to_add_as_fire"}},[2]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra Lightning Damage"}}},stats={[1]="physical_damage_%_to_add_as_lightning"}},[3]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra Cold Damage"}}},stats={[1]="physical_damage_%_to_add_as_cold"}},[4]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Quick"}}},stats={[1]="base_movement_velocity_+%"}},[5]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Extra Life"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Reduced Life"}}},stats={[1]="maximum_life_+%"}},[6]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Armoured"}}},stats={[1]="physical_damage_reduction_rating_+%"}},[7]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Extra Damage"}}},stats={[1]="damage_+%"}},[8]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Leeches Life"}}},stats={[1]="life_leech_from_physical_attack_damage_permyriad"}},[9]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fast Attacks"}}},stats={[1]="attack_speed_+%"}},[10]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Life Regen"}}},stats={[1]="life_regeneration_rate_per_minute_%"}},[11]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Bonus Energy Shield"}}},stats={[1]="maximum_energy_shield_+%"}},[12]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Accurate"}}},stats={[1]="accuracy_rating_+%"}},[13]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Evasive"}}},stats={[1]="evasion_rating_+%"}},[14]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unwavering"}}},stats={[1]="base_cannot_be_stunned"}},[15]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Wealthy"}}},stats={[1]="display_monster_wealth_mod"}},[16]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra Projectiles"}}},stats={[1]="number_of_additional_projectiles"}},[17]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Powerful Crits"}}},stats={[1]="critical_strike_chance_+%"}},[18]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Immune"}}},stats={[1]="immune_to_curses"}},[19]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hexproof"}}},stats={[1]="hexproof"}},[20]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Group Frenzy on Death"}}},stats={[1]="monster_grants_frenzy_charges_to_allies_within_distance_on_death"}},[21]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Frenzy as Damaged"}}},stats={[1]="gain_frenzy_charge_for_each_quarter_life_removed"}},[22]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Power Charges as Damaged"}}},stats={[1]="gain_power_charge_for_each_quarter_life_removed"}},[23]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gains Endurance Charges"}}},stats={[1]="add_endurance_charge_on_skill_hit_%"}},[24]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gains Frenzy Charges"}}},stats={[1]="add_frenzy_charge_on_skill_hit_%"}},[25]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gains Power Charges"}}},stats={[1]="add_power_charge_on_skill_hit_%"}},[26]={lang={English={}}},[27]={lang={English={}}},[28]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Arctic Breath"}}},stats={[1]="monster_casts_arctic_breath_text"}},[29]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Firestorm"}}},stats={[1]="monster_casts_firestorm_text"}},[30]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Puncture"}}},stats={[1]="monster_casts_puncture_text"}},[31]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Cold Snap"}}},stats={[1]="monster_casts_coldsnap_text"}},[32]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Assassins's Mark"}}},stats={[1]="monster_casts_assassins_mark_curse_text"}},[33]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Elemental Weakness"}}},stats={[1]="monster_casts_elementral_weakness_curse_text"}},[34]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Enfeeble"}}},stats={[1]="monster_casts_enfeeble_curse_text"}},[35]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Fireball"}}},stats={[1]="monster_casts_fireball_text"}},[36]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Ice Nova"}}},stats={[1]="monster_casts_ice_nova_text"}},[37]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Ice Spear"}}},stats={[1]="monster_casts_ice_spear_text"}},[38]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Projectile Weakness"}}},stats={[1]="monster_casts_projectile_vulnerability_curse_text"}},[39]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Shock Nova"}}},stats={[1]="monster_casts_shock_nova_text"}},[40]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Spark"}}},stats={[1]="monster_casts_spark_text"}},[41]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Vulnerability"}}},stats={[1]="monster_casts_vulnerability_curse_text"}},[42]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Warlord's Mark"}}},stats={[1]="monster_casts_warlords_mark_curse_text"}},[43]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Detonates corpses"}}},stats={[1]="monster_detonates_corpses_text"}},[44]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Explodes"},[2]={limit={[1]={[1]=2,[2]=2}},text="Explodes when on Low Life"}}},stats={[1]="monster_explodes_on_its_target_text"}},[45]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Explodes"},[2]={limit={[1]={[1]=2,[2]=2}},text="Explodes when Killed"}}},stats={[1]="monster_explodes_on_death_text"}},[46]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Rain of Arrows"}}},stats={[1]="monster_fires_a_rain_of_arrows_text"}},[47]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires Burning Arrows"}}},stats={[1]="monster_fires_burning_arrows_text"}},[48]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires Explosive Arrows"}}},stats={[1]="monster_fires_explosive_arrows_text"}},[49]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires Lightning Arrows"}}},stats={[1]="monster_fires_lightning_arrows_text"}},[50]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires Caustic Arrows"}}},stats={[1]="monster_fires_caustic_arrows_text"}},[51]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires Split Arrows"}}},stats={[1]="monster_fires_split_arrows_text"}},[52]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Leaps"}}},stats={[1]="monster_leaps_onto_enemies_text"}},[53]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raises Undead"}}},stats={[1]="monster_raises_undead_text"}},[54]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summons Exploding Spawn"}}},stats={[1]="monster_summons_exploding_spawn_text"}},[55]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summons Apes from Trees"}}},stats={[1]="monster_summons_monkeys_from_nearby_trees_text"}},[56]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summons Skeletons"}}},stats={[1]="monster_summons_skeletons_text"}},[57]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summons Spawn"}}},stats={[1]="monster_summons_spawn_text"}},[58]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Enduring Cry"}}},stats={[1]="monster_uses_enduring_cry_text"}},[59]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Flicker Strike"}}},stats={[1]="monster_uses_flicker_strike_text"}},[60]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Glacial Hammer"}}},stats={[1]="monster_uses_glacial_hammer_text"}},[61]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Ground Slam"}}},stats={[1]="monster_uses_ground_slam_text"}},[62]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Lightning Strike"}}},stats={[1]="monster_uses_lightning_strike_text"}},[63]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Phase Run"}}},stats={[1]="monster_uses_phase_run_text"}},[64]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Charges"}}},stats={[1]="monster_casts_shield_charge_text"}},[65]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Frenzies Allies"}}},stats={[1]="monster_casts_mass_frenzy_text"}},[66]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Temporal Chains"}}},stats={[1]="monster_casts_temporal_chains_text"}},[67]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Frenzy"}}},stats={[1]="monster_casts_frenzy_text"}},[68]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Molten Shell"}}},stats={[1]="monster_casts_molten_shell_text"}},[69]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Viper Strike"}}},stats={[1]="monster_casts_viper_strike_text"}},[70]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Ailments"}}},stats={[1]="monster_casts_elemental_hit_text"}},[71]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="May inflict Vulnerability on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Vulnerability on Hit"}}},stats={[1]="curse_on_hit_%_vulnerability"}},[72]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Temporal Chains on Hit"}}},stats={[1]="curse_on_hit_%_temporal_chains"}},[73]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lightning Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_lightning"}},[74]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fire Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_fire"}},[75]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chaos Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_chaos"}},[76]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cold Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_cold"}},[77]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Frenzy as Kin Slain"}}},stats={[1]="monster_gain_frenzy_charge_on_kin_death"}},[78]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Empowered as Kin Slain"}}},stats={[1]="monster_gain_power_charge_on_kin_death"}},[79]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Burns Ground on Death"}}},stats={[1]="monster_ground_fire_on_death_%_max_damage_to_deal_per_minute"}},[80]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chills Ground on Death"}}},stats={[1]="monster_ground_ice_on_death_base_area_of_effect_radius"}},[81]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spreads Tar on Death"}}},stats={[1]="monster_ground_tar_on_death_base_area_of_effect_radius"}},[82]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spreads Caustic Ground on Death"}}},stats={[1]="monster_caustic_cloud_on_death_%_max_damage_to_deal_per_minute"}},[83]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can raise Magic monsters"},[2]={limit={[1]={[1]=2,[2]=2}},text="Can raise Rare or Magic monsters"},[3]={limit={[1]={[1]=3,[2]=3}},text="Can raise Unique, Rare or Magic monsters"}}},stats={[1]="necromancer_additional_rarity_levels_can_be_raised"}},[84]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Endurance to Allies"}}},stats={[1]="monster_uses_mass_endurance_text"}},[85]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Empowers Allies"}}},stats={[1]="monster_uses_mass_power_text"}},[86]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Shockwaves"}}},stats={[1]="monster_uses_shockwave_text"}},[87]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Blocks Attacks"}}},stats={[1]="combined_base_block_%"}},[88]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Blocks Spells"}}},stats={[1]="spell_block_%"}},[89]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Ethereal Knives"}}},stats={[1]="monster_casts_ethereal_knives_text"}},[90]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Throws Bear Traps"}}},stats={[1]="monster_throws_beartraps_text"}},[91]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Lightning Thorns"}}},stats={[1]="monster_casts_lightning_thorns_text"}},[92]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Throws Fire Bombs"}}},stats={[1]="monster_throws_fire_bombs_text"}},[93]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Throws Caustic Bombs"}}},stats={[1]="monster_throws_caustic_bombs_text"}},[94]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Throws Chaos Bombs"}}},stats={[1]="monster_throws_chaos_bombs_text"}},[95]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Freezing Pulse"}}},stats={[1]="monster_casts_freezing_pulse_text"}},[96]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Cleave"}}},stats={[1]="monster_cleaves_text"}},[97]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires Ice Shots"}}},stats={[1]="monster_fires_ice_shot_arrows_text"}},[98]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Conductivity"}}},stats={[1]="monster_casts_conductivity_text"}},[99]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Flammability"}}},stats={[1]="monster_casts_flammability_text"}},[100]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Augmented Fireballs"}}},stats={[1]="monster_casts_augmented_fireballs_text"}},[101]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Channels Lightning"}}},stats={[1]="monster_channels_lightning_text"}},[102]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Arc"}}},stats={[1]="monster_casts_arc_text"}},[103]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Raise Zombie"}}},stats={[1]="monster_raises_zombies_text"}},[104]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Arctic Armour"}}},stats={[1]="monster_casts_ice_shield_text"}},[105]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Unrighteous Fire"}}},stats={[1]="monster_casts_unholy_fire_text"}},[106]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Discharge"}}},stats={[1]="monster_casts_discharge_text"}},[107]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summons Water Elementals"}}},stats={[1]="display_summons_water_elementals_text"}},[108]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Double Strike"}}},stats={[1]="display_monster_uses_double_strike_text"}},[109]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rolls over Enemies"}}},stats={[1]="display_monster_uses_whirling_blades_text"}},[110]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Lightning Warp"}}},stats={[1]="display_monster_casts_lightning_warp_text"}},[111]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Frostbite"}}},stats={[1]="display_monster_casts_frostbite_text"}},[112]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Avoids Frozen"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Frozen"}}},stats={[1]="base_avoid_freeze_%"}},[113]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Avoids Chilled"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Chilled"}}},stats={[1]="base_avoid_chill_%"}},[114]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Avoids Ignited"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Ignited"}}},stats={[1]="base_avoid_ignite_%"}},[115]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Avoids Shocked"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Shocked"}}},stats={[1]="base_avoid_shock_%"}},[116]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Flammability on Hit"}}},stats={[1]="curse_on_hit_%_flammability"}},[117]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spikes on Death"}}},stats={[1]="display_monster_spike_nova_on_death_text"}},[118]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ice Spears on Death"}}},stats={[1]="display_monster_ice_spear_nova_on_death_text"}},[119]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Far Shot"}}},stats={[1]="display_monster_uses_far_shot_text"}},[120]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Suppressing Fire"}}},stats={[1]="display_monster_uses_suppressing_fire_text"}},[121]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Devours corpses"}}},stats={[1]="display_monster_casts_devouring_totem_skill_text"}},[122]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Lightning Nova"}}},stats={[1]="display_monster_casts_lightning_nova_text"}},[123]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Fire Nova"}}},stats={[1]="monster_casts_fire_nova_text"}},[124]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes Flask Charges"}}},stats={[1]="monster_casts_flask_charge_nova_text"}},[125]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Causes Bleeding"}}},stats={[1]="monster_casts_bleed_nova_text"}},[126]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies take increased Damage"}}},stats={[1]="monster_has_damage_taken_aura_text"}},[127]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies are affected by Temporal Chains"}}},stats={[1]="monster_has_temporal_chains_aura_text"}},[128]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies take Damage when using Movement skills"}}},stats={[1]="monster_has_movement_skill_damage_aura_text"}},[129]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Vaal Detonate Dead"}}},stats={[1]="display_monster_casts_vaal_detonate_dead_text"}},[130]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Vaal Storm Call"}}},stats={[1]="display_monster_vaal_storm_call"}},[131]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Vaal Burning Arrow"}}},stats={[1]="display_monster_uses_vaal_burning_arrow"}},[132]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Glacial Cascade"}}},stats={[1]="monster_casts_glacial_cascade_text"}},[133]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enrages on Low Life"}}},stats={[1]="monster_enrages_on_low_life_text"}},[134]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Wither"}}},stats={[1]="display_monster_casts_wither"}},[135]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Creates Desecreated Ground"}}},stats={[1]="display_monster_causes_ground_desecration"}},[136]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Dodges Attacks while Phasing"}}},stats={[1]="chance_to_dodge_attacks_%_while_phasing",[2]="chance_to_dodge_spells_%_while_phased"}},[137]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot be Slowed"}}},stats={[1]="action_speed_cannot_be_reduced_below_base"}},[138]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be fully Slowed"}}},stats={[1]="action_speed_+%_minimum_value"}},[139]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Blocks Attacks"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Blocks Spells"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Blocks Attacks and Spells"}}},stats={[1]="monster_base_block_%",[2]="base_spell_block_%"}},[140]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Dodges Attacks"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Dodges Spells"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Dodges Attacks and Spells"}}},stats={[1]="base_chance_to_dodge_%",[2]="base_chance_to_dodge_spells_%"}},[141]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Life-Leeched"}}},stats={[1]="cannot_have_life_leeched_from"}},[142]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="May inflict Bleeding"}}},stats={[1]="display_monster_may_inflict_bleeding"}},[143]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="May inflict Maim"}}},stats={[1]="display_monster_may_inflict_maim"}},[144]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignores Summoning Towers"}}},stats={[1]="is_blight_chaos_monster"}},[145]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Resilient to Cold Towers"}}},stats={[1]="is_blight_cold_monster"}},[146]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Resilient to Fire Towers"}}},stats={[1]="is_blight_fire_monster"}},[147]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Resilient to Lightning Towers"}}},stats={[1]="is_blight_lightning_monster"}},[148]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Resilient to Physical Towers"}}},stats={[1]="is_blight_physical_monster"}},[149]={lang={English={}},stats={[1]="metamorphosis_boss_item_reward_slot_1_index"}},[150]={lang={English={}},name="1"},[151]={lang={English={}},name="1"},[152]={lang={English={}},name="1"},[153]={lang={English={}},name="1"},[154]={lang={English={}},name="1"},[155]={lang={English={}},name="1"},[156]={lang={English={}},name="1"},[157]={lang={English={}},name="1"},[158]={lang={English={}},name="1"},[159]={lang={English={}},stats={[1]="metamorphosis_boss_item_reward_slot_2_index"}},[160]={lang={English={}},name="1"},[161]={lang={English={}},name="1"},[162]={lang={English={}},name="1"},[163]={lang={English={}},name="1"},[164]={lang={English={}},name="1"},[165]={lang={English={}},name="1"},[166]={lang={English={}},name="1"},[167]={lang={English={}},name="1"},[168]={lang={English={}},name="1"},[169]={lang={English={}},stats={[1]="metamorphosis_boss_item_reward_slot_3_index"}},[170]={lang={English={}},name="1"},[171]={lang={English={}},name="1"},[172]={lang={English={}},name="1"},[173]={lang={English={}},name="1"},[174]={lang={English={}},name="1"},[175]={lang={English={}},name="1"},[176]={lang={English={}},name="1"},[177]={lang={English={}},name="1"},[178]={lang={English={}},name="1"},[179]={lang={English={}},stats={[1]="metamorphosis_boss_item_reward_slot_4_index"}},[180]={lang={English={}},name="1"},[181]={lang={English={}},name="1"},[182]={lang={English={}},name="1"},[183]={lang={English={}},name="1"},[184]={lang={English={}},name="1"},[185]={lang={English={}},name="1"},[186]={lang={English={}},name="1"},[187]={lang={English={}},name="1"},[188]={lang={English={}},name="1"},[189]={lang={English={}},stats={[1]="metamorphosis_boss_item_reward_slot_5_index"}},[190]={lang={English={}},name="1"},[191]={lang={English={}},name="1"},[192]={lang={English={}},name="1"},[193]={lang={English={}},name="1"},[194]={lang={English={}},name="1"},[195]={lang={English={}},name="1"},[196]={lang={English={}},name="1"},[197]={lang={English={}},name="1"},[198]={lang={English={}},name="1"},[199]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Blocks Projectiles while charging"}}},stats={[1]="trigger_charge_additional_block_chance_against_projectiles_%"}},["accuracy_rating_+%"]=12,["action_speed_+%_minimum_value"]=138,["action_speed_cannot_be_reduced_below_base"]=137,["add_endurance_charge_on_skill_hit_%"]=23,["add_frenzy_charge_on_skill_hit_%"]=24,["add_power_charge_on_skill_hit_%"]=25,["attack_speed_+%"]=9,["base_avoid_chill_%"]=113,["base_avoid_freeze_%"]=112,["base_avoid_ignite_%"]=114,["base_avoid_shock_%"]=115,["base_cannot_be_stunned"]=14,["base_chance_to_dodge_%"]=140,["base_chance_to_dodge_spells_%"]=140,["base_movement_velocity_+%"]=4,["base_physical_damage_%_to_convert_to_chaos"]=75,["base_physical_damage_%_to_convert_to_cold"]=76,["base_physical_damage_%_to_convert_to_fire"]=74,["base_physical_damage_%_to_convert_to_lightning"]=73,["base_spell_block_%"]=139,["cannot_have_life_leeched_from"]=141,["chance_to_dodge_attacks_%_while_phasing"]=136,["chance_to_dodge_spells_%_while_phased"]=136,["combined_base_block_%"]=87,["critical_strike_chance_+%"]=17,["curse_on_hit_%_flammability"]=116,["curse_on_hit_%_temporal_chains"]=72,["curse_on_hit_%_vulnerability"]=71,["damage_+%"]=7,["display_monster_casts_devouring_totem_skill_text"]=121,["display_monster_casts_frostbite_text"]=111,["display_monster_casts_lightning_nova_text"]=122,["display_monster_casts_lightning_warp_text"]=110,["display_monster_casts_vaal_detonate_dead_text"]=129,["display_monster_casts_wither"]=134,["display_monster_causes_ground_desecration"]=135,["display_monster_ice_spear_nova_on_death_text"]=118,["display_monster_may_inflict_bleeding"]=142,["display_monster_may_inflict_maim"]=143,["display_monster_spike_nova_on_death_text"]=117,["display_monster_uses_double_strike_text"]=108,["display_monster_uses_far_shot_text"]=119,["display_monster_uses_suppressing_fire_text"]=120,["display_monster_uses_vaal_burning_arrow"]=131,["display_monster_uses_whirling_blades_text"]=109,["display_monster_vaal_storm_call"]=130,["display_monster_wealth_mod"]=15,["display_summons_water_elementals_text"]=107,["evasion_rating_+%"]=13,["gain_frenzy_charge_for_each_quarter_life_removed"]=21,["gain_power_charge_for_each_quarter_life_removed"]=22,hexproof=19,["immune_to_curses"]=18,["is_blight_chaos_monster"]=144,["is_blight_cold_monster"]=145,["is_blight_fire_monster"]=146,["is_blight_lightning_monster"]=147,["is_blight_physical_monster"]=148,["life_leech_from_physical_attack_damage_permyriad"]=8,["life_regeneration_rate_per_minute_%"]=10,["maximum_energy_shield_+%"]=11,["maximum_life_+%"]=5,["metamorphosis_boss_item_reward_slot_1_index"]=149,["metamorphosis_boss_item_reward_slot_2_index"]=159,["metamorphosis_boss_item_reward_slot_3_index"]=169,["metamorphosis_boss_item_reward_slot_4_index"]=179,["metamorphosis_boss_item_reward_slot_5_index"]=189,["monster_base_block_%"]=139,["monster_casts_arc_text"]=102,["monster_casts_arctic_breath_text"]=28,["monster_casts_assassins_mark_curse_text"]=32,["monster_casts_augmented_fireballs_text"]=100,["monster_casts_bleed_nova_text"]=125,["monster_casts_coldsnap_text"]=31,["monster_casts_conductivity_text"]=98,["monster_casts_discharge_text"]=106,["monster_casts_elemental_hit_text"]=70,["monster_casts_elementral_weakness_curse_text"]=33,["monster_casts_enfeeble_curse_text"]=34,["monster_casts_ethereal_knives_text"]=89,["monster_casts_fire_nova_text"]=123,["monster_casts_fireball_text"]=35,["monster_casts_firestorm_text"]=29,["monster_casts_flammability_text"]=99,["monster_casts_flask_charge_nova_text"]=124,["monster_casts_freezing_pulse_text"]=95,["monster_casts_frenzy_text"]=67,["monster_casts_glacial_cascade_text"]=132,["monster_casts_ice_nova_text"]=36,["monster_casts_ice_shield_text"]=104,["monster_casts_ice_spear_text"]=37,["monster_casts_lightning_thorns_text"]=91,["monster_casts_mass_frenzy_text"]=65,["monster_casts_molten_shell_text"]=68,["monster_casts_projectile_vulnerability_curse_text"]=38,["monster_casts_puncture_text"]=30,["monster_casts_shield_charge_text"]=64,["monster_casts_shock_nova_text"]=39,["monster_casts_spark_text"]=40,["monster_casts_temporal_chains_text"]=66,["monster_casts_unholy_fire_text"]=105,["monster_casts_viper_strike_text"]=69,["monster_casts_vulnerability_curse_text"]=41,["monster_casts_warlords_mark_curse_text"]=42,["monster_caustic_cloud_on_death_%_max_damage_to_deal_per_minute"]=82,["monster_channels_lightning_text"]=101,["monster_cleaves_text"]=96,["monster_detonates_corpses_text"]=43,["monster_enrages_on_low_life_text"]=133,["monster_explodes_on_death_text"]=45,["monster_explodes_on_its_target_text"]=44,["monster_fires_a_rain_of_arrows_text"]=46,["monster_fires_burning_arrows_text"]=47,["monster_fires_caustic_arrows_text"]=50,["monster_fires_explosive_arrows_text"]=48,["monster_fires_ice_shot_arrows_text"]=97,["monster_fires_lightning_arrows_text"]=49,["monster_fires_split_arrows_text"]=51,["monster_gain_frenzy_charge_on_kin_death"]=77,["monster_gain_power_charge_on_kin_death"]=78,["monster_grants_frenzy_charges_to_allies_within_distance_on_death"]=20,["monster_ground_fire_on_death_%_max_damage_to_deal_per_minute"]=79,["monster_ground_ice_on_death_base_area_of_effect_radius"]=80,["monster_ground_tar_on_death_base_area_of_effect_radius"]=81,["monster_has_damage_taken_aura_text"]=126,["monster_has_movement_skill_damage_aura_text"]=128,["monster_has_temporal_chains_aura_text"]=127,["monster_leaps_onto_enemies_text"]=52,["monster_raises_undead_text"]=53,["monster_raises_zombies_text"]=103,["monster_summons_exploding_spawn_text"]=54,["monster_summons_monkeys_from_nearby_trees_text"]=55,["monster_summons_skeletons_text"]=56,["monster_summons_spawn_text"]=57,["monster_throws_beartraps_text"]=90,["monster_throws_caustic_bombs_text"]=93,["monster_throws_chaos_bombs_text"]=94,["monster_throws_fire_bombs_text"]=92,["monster_uses_enduring_cry_text"]=58,["monster_uses_flicker_strike_text"]=59,["monster_uses_glacial_hammer_text"]=60,["monster_uses_ground_slam_text"]=61,["monster_uses_lightning_strike_text"]=62,["monster_uses_mass_endurance_text"]=84,["monster_uses_mass_power_text"]=85,["monster_uses_phase_run_text"]=63,["monster_uses_shockwave_text"]=86,["necromancer_additional_rarity_levels_can_be_raised"]=83,["number_of_additional_projectiles"]=16,["physical_damage_%_to_add_as_cold"]=3,["physical_damage_%_to_add_as_fire"]=1,["physical_damage_%_to_add_as_lightning"]=2,["physical_damage_reduction_rating_+%"]=6,["spell_block_%"]=88,["trigger_charge_additional_block_chance_against_projectiles_%"]=199} \ No newline at end of file +return {[1]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra Fire Damage"}}},stats={[1]="physical_damage_%_to_add_as_fire"}},[2]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra Lightning Damage"}}},stats={[1]="physical_damage_%_to_add_as_lightning"}},[3]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra Cold Damage"}}},stats={[1]="physical_damage_%_to_add_as_cold"}},[4]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Quick"}}},stats={[1]="base_movement_velocity_+%"}},[5]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Extra Life"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Reduced Life"}}},stats={[1]="maximum_life_+%"}},[6]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Armoured"}}},stats={[1]="physical_damage_reduction_rating_+%"}},[7]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Extra Damage"}}},stats={[1]="damage_+%"}},[8]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Leeches Life"}}},stats={[1]="life_leech_from_physical_attack_damage_permyriad"}},[9]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fast Attacks"}}},stats={[1]="attack_speed_+%"}},[10]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Life Regen"}}},stats={[1]="life_regeneration_rate_per_minute_%"}},[11]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Bonus Energy Shield"}}},stats={[1]="maximum_energy_shield_+%"}},[12]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Accurate"}}},stats={[1]="accuracy_rating_+%"}},[13]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Evasive"}}},stats={[1]="evasion_rating_+%"}},[14]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unwavering"}}},stats={[1]="base_cannot_be_stunned"}},[15]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Wealthy"}}},stats={[1]="display_monster_wealth_mod"}},[16]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra Projectiles"}}},stats={[1]="number_of_additional_projectiles"}},[17]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Powerful Crits"}}},stats={[1]="critical_strike_chance_+%"}},[18]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Immune"}}},stats={[1]="immune_to_curses"}},[19]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hexproof"}}},stats={[1]="hexproof"}},[20]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Group Frenzy on Death"}}},stats={[1]="monster_grants_frenzy_charges_to_allies_within_distance_on_death"}},[21]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Frenzy as Damaged"}}},stats={[1]="gain_frenzy_charge_for_each_quarter_life_removed"}},[22]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Power Charges as Damaged"}}},stats={[1]="gain_power_charge_for_each_quarter_life_removed"}},[23]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gains Endurance Charges"}}},stats={[1]="add_endurance_charge_on_skill_hit_%"}},[24]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gains Frenzy Charges"}}},stats={[1]="add_frenzy_charge_on_skill_hit_%"}},[25]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gains Power Charges"}}},stats={[1]="add_power_charge_on_skill_hit_%"}},[26]={lang={English={}}},[27]={lang={English={}}},[28]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Arctic Breath"}}},stats={[1]="monster_casts_arctic_breath_text"}},[29]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Firestorm"}}},stats={[1]="monster_casts_firestorm_text"}},[30]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Puncture"}}},stats={[1]="monster_casts_puncture_text"}},[31]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Cold Snap"}}},stats={[1]="monster_casts_coldsnap_text"}},[32]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Assassins's Mark"}}},stats={[1]="monster_casts_assassins_mark_curse_text"}},[33]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Elemental Weakness"}}},stats={[1]="monster_casts_elementral_weakness_curse_text"}},[34]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Enfeeble"}}},stats={[1]="monster_casts_enfeeble_curse_text"}},[35]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Fireball"}}},stats={[1]="monster_casts_fireball_text"}},[36]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Ice Nova"}}},stats={[1]="monster_casts_ice_nova_text"}},[37]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Ice Spear"}}},stats={[1]="monster_casts_ice_spear_text"}},[38]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Projectile Weakness"}}},stats={[1]="monster_casts_projectile_vulnerability_curse_text"}},[39]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Shock Nova"}}},stats={[1]="monster_casts_shock_nova_text"}},[40]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Spark"}}},stats={[1]="monster_casts_spark_text"}},[41]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Vulnerability"}}},stats={[1]="monster_casts_vulnerability_curse_text"}},[42]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Warlord's Mark"}}},stats={[1]="monster_casts_warlords_mark_curse_text"}},[43]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Detonates corpses"}}},stats={[1]="monster_detonates_corpses_text"}},[44]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Explodes"},[2]={limit={[1]={[1]=2,[2]=2}},text="Explodes when on Low Life"}}},stats={[1]="monster_explodes_on_its_target_text"}},[45]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Explodes"},[2]={limit={[1]={[1]=2,[2]=2}},text="Explodes when Killed"}}},stats={[1]="monster_explodes_on_death_text"}},[46]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Rain of Arrows"}}},stats={[1]="monster_fires_a_rain_of_arrows_text"}},[47]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires Burning Arrows"}}},stats={[1]="monster_fires_burning_arrows_text"}},[48]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires Explosive Arrows"}}},stats={[1]="monster_fires_explosive_arrows_text"}},[49]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires Lightning Arrows"}}},stats={[1]="monster_fires_lightning_arrows_text"}},[50]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires Caustic Arrows"}}},stats={[1]="monster_fires_caustic_arrows_text"}},[51]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires Split Arrows"}}},stats={[1]="monster_fires_split_arrows_text"}},[52]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Leaps"}}},stats={[1]="monster_leaps_onto_enemies_text"}},[53]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raises Undead"}}},stats={[1]="monster_raises_undead_text"}},[54]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summons Exploding Spawn"}}},stats={[1]="monster_summons_exploding_spawn_text"}},[55]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summons Apes from Trees"}}},stats={[1]="monster_summons_monkeys_from_nearby_trees_text"}},[56]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summons Skeletons"}}},stats={[1]="monster_summons_skeletons_text"}},[57]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summons Spawn"}}},stats={[1]="monster_summons_spawn_text"}},[58]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Enduring Cry"}}},stats={[1]="monster_uses_enduring_cry_text"}},[59]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Flicker Strike"}}},stats={[1]="monster_uses_flicker_strike_text"}},[60]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Glacial Hammer"}}},stats={[1]="monster_uses_glacial_hammer_text"}},[61]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Ground Slam"}}},stats={[1]="monster_uses_ground_slam_text"}},[62]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Lightning Strike"}}},stats={[1]="monster_uses_lightning_strike_text"}},[63]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Phase Run"}}},stats={[1]="monster_uses_phase_run_text"}},[64]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Charges"}}},stats={[1]="monster_casts_shield_charge_text"}},[65]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Frenzies Allies"}}},stats={[1]="monster_casts_mass_frenzy_text"}},[66]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Temporal Chains"}}},stats={[1]="monster_casts_temporal_chains_text"}},[67]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Frenzy"}}},stats={[1]="monster_casts_frenzy_text"}},[68]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Molten Shell"}}},stats={[1]="monster_casts_molten_shell_text"}},[69]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Viper Strike"}}},stats={[1]="monster_casts_viper_strike_text"}},[70]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Ailments"}}},stats={[1]="monster_casts_elemental_hit_text"}},[71]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="May inflict Vulnerability on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Vulnerability on Hit"}}},stats={[1]="curse_on_hit_%_vulnerability"}},[72]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Temporal Chains on Hit"}}},stats={[1]="curse_on_hit_%_temporal_chains"}},[73]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lightning Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_lightning"}},[74]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fire Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_fire"}},[75]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chaos Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_chaos"}},[76]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cold Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_cold"}},[77]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Frenzy as Kin Slain"}}},stats={[1]="monster_gain_frenzy_charge_on_kin_death"}},[78]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Empowered as Kin Slain"}}},stats={[1]="monster_gain_power_charge_on_kin_death"}},[79]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Burns Ground on Death"}}},stats={[1]="monster_ground_fire_on_death_%_max_damage_to_deal_per_minute"}},[80]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chills Ground on Death"}}},stats={[1]="monster_ground_ice_on_death_base_area_of_effect_radius"}},[81]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spreads Tar on Death"}}},stats={[1]="monster_ground_tar_on_death_base_area_of_effect_radius"}},[82]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spreads Caustic Ground on Death"}}},stats={[1]="monster_caustic_cloud_on_death_%_max_damage_to_deal_per_minute"}},[83]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can raise Magic monsters"},[2]={limit={[1]={[1]=2,[2]=2}},text="Can raise Rare or Magic monsters"},[3]={limit={[1]={[1]=3,[2]=3}},text="Can raise Unique, Rare or Magic monsters"}}},stats={[1]="necromancer_additional_rarity_levels_can_be_raised"}},[84]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Endurance to Allies"}}},stats={[1]="monster_uses_mass_endurance_text"}},[85]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Empowers Allies"}}},stats={[1]="monster_uses_mass_power_text"}},[86]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Shockwaves"}}},stats={[1]="monster_uses_shockwave_text"}},[87]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Blocks Attacks"}}},stats={[1]="combined_base_block_%"}},[88]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Blocks Spells"}}},stats={[1]="spell_block_%"}},[89]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Ethereal Knives"}}},stats={[1]="monster_casts_ethereal_knives_text"}},[90]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Throws Bear Traps"}}},stats={[1]="monster_throws_beartraps_text"}},[91]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Lightning Thorns"}}},stats={[1]="monster_casts_lightning_thorns_text"}},[92]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Throws Fire Bombs"}}},stats={[1]="monster_throws_fire_bombs_text"}},[93]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Throws Caustic Bombs"}}},stats={[1]="monster_throws_caustic_bombs_text"}},[94]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Throws Chaos Bombs"}}},stats={[1]="monster_throws_chaos_bombs_text"}},[95]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Freezing Pulse"}}},stats={[1]="monster_casts_freezing_pulse_text"}},[96]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Cleave"}}},stats={[1]="monster_cleaves_text"}},[97]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires Ice Shots"}}},stats={[1]="monster_fires_ice_shot_arrows_text"}},[98]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Conductivity"}}},stats={[1]="monster_casts_conductivity_text"}},[99]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Flammability"}}},stats={[1]="monster_casts_flammability_text"}},[100]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Augmented Fireballs"}}},stats={[1]="monster_casts_augmented_fireballs_text"}},[101]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Channels Lightning"}}},stats={[1]="monster_channels_lightning_text"}},[102]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Arc"}}},stats={[1]="monster_casts_arc_text"}},[103]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Raise Zombie"}}},stats={[1]="monster_raises_zombies_text"}},[104]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Arctic Armour"}}},stats={[1]="monster_casts_ice_shield_text"}},[105]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Unrighteous Fire"}}},stats={[1]="monster_casts_unholy_fire_text"}},[106]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Discharge"}}},stats={[1]="monster_casts_discharge_text"}},[107]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summons Water Elementals"}}},stats={[1]="display_summons_water_elementals_text"}},[108]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Double Strike"}}},stats={[1]="display_monster_uses_double_strike_text"}},[109]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rolls over Enemies"}}},stats={[1]="display_monster_uses_whirling_blades_text"}},[110]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Lightning Warp"}}},stats={[1]="display_monster_casts_lightning_warp_text"}},[111]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Frostbite"}}},stats={[1]="display_monster_casts_frostbite_text"}},[112]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Avoids Frozen"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Frozen"}}},stats={[1]="base_avoid_freeze_%"}},[113]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Avoids Chilled"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Chilled"}}},stats={[1]="base_avoid_chill_%"}},[114]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Avoids Ignited"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Ignited"}}},stats={[1]="base_avoid_ignite_%"}},[115]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Avoids Shocked"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Shocked"}}},stats={[1]="base_avoid_shock_%"}},[116]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Flammability on Hit"}}},stats={[1]="curse_on_hit_%_flammability"}},[117]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spikes on Death"}}},stats={[1]="display_monster_spike_nova_on_death_text"}},[118]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ice Spears on Death"}}},stats={[1]="display_monster_ice_spear_nova_on_death_text"}},[119]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Far Shot"}}},stats={[1]="display_monster_uses_far_shot_text"}},[120]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Suppressing Fire"}}},stats={[1]="display_monster_uses_suppressing_fire_text"}},[121]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Devours corpses"}}},stats={[1]="display_monster_casts_devouring_totem_skill_text"}},[122]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Lightning Nova"}}},stats={[1]="display_monster_casts_lightning_nova_text"}},[123]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Fire Nova"}}},stats={[1]="monster_casts_fire_nova_text"}},[124]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes Flask Charges"}}},stats={[1]="monster_casts_flask_charge_nova_text"}},[125]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Causes Bleeding"}}},stats={[1]="monster_casts_bleed_nova_text"}},[126]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies take increased Damage"}}},stats={[1]="monster_has_damage_taken_aura_text"}},[127]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies are affected by Temporal Chains"}}},stats={[1]="monster_has_temporal_chains_aura_text"}},[128]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies take Damage when using Movement skills"}}},stats={[1]="monster_has_movement_skill_damage_aura_text"}},[129]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Vaal Detonate Dead"}}},stats={[1]="display_monster_casts_vaal_detonate_dead_text"}},[130]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Vaal Storm Call"}}},stats={[1]="display_monster_vaal_storm_call"}},[131]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses Vaal Burning Arrow"}}},stats={[1]="display_monster_uses_vaal_burning_arrow"}},[132]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Glacial Cascade"}}},stats={[1]="monster_casts_glacial_cascade_text"}},[133]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enrages on Low Life"}}},stats={[1]="monster_enrages_on_low_life_text"}},[134]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Casts Wither"}}},stats={[1]="display_monster_casts_wither"}},[135]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Creates Desecreated Ground"}}},stats={[1]="display_monster_causes_ground_desecration"}},[136]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Dodges Attacks while Phasing"}}},stats={[1]="chance_to_dodge_attacks_%_while_phasing",[2]="chance_to_dodge_spells_%_while_phased"}},[137]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot be Slowed"}}},stats={[1]="action_speed_cannot_be_reduced_below_base"}},[138]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be fully Slowed"}}},stats={[1]="action_speed_+%_minimum_value"}},[139]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Blocks Attacks"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Blocks Spells"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Blocks Attacks and Spells"}}},stats={[1]="monster_base_block_%",[2]="base_spell_block_%"}},[140]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Dodges Attacks"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Dodges Spells"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Dodges Attacks and Spells"}}},stats={[1]="base_chance_to_dodge_%",[2]="base_chance_to_dodge_spells_%"}},[141]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Life-Leeched"}}},stats={[1]="cannot_have_life_leeched_from"}},[142]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="May inflict Bleeding"}}},stats={[1]="display_monster_may_inflict_bleeding"}},[143]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="May inflict Maim"}}},stats={[1]="display_monster_may_inflict_maim"}},[144]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignores Summoning Towers"}}},stats={[1]="is_blight_chaos_monster"}},[145]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Resilient to Cold Towers"}}},stats={[1]="is_blight_cold_monster"}},[146]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Resilient to Fire Towers"}}},stats={[1]="is_blight_fire_monster"}},[147]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Resilient to Lightning Towers"}}},stats={[1]="is_blight_lightning_monster"}},[148]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Resilient to Physical Towers"}}},stats={[1]="is_blight_physical_monster"}},[149]={lang={English={}},stats={[1]="metamorphosis_boss_item_reward_slot_1_index"}},[150]={lang={English={}},name="1"},[151]={lang={English={}},name="1"},[152]={lang={English={}},name="1"},[153]={lang={English={}},name="1"},[154]={lang={English={}},name="1"},[155]={lang={English={}},name="1"},[156]={lang={English={}},name="1"},[157]={lang={English={}},name="1"},[158]={lang={English={}},name="1"},[159]={lang={English={}},name="1"},[160]={lang={English={}},stats={[1]="metamorphosis_boss_item_reward_slot_2_index"}},[161]={lang={English={}},name="1"},[162]={lang={English={}},name="1"},[163]={lang={English={}},name="1"},[164]={lang={English={}},name="1"},[165]={lang={English={}},name="1"},[166]={lang={English={}},name="1"},[167]={lang={English={}},name="1"},[168]={lang={English={}},name="1"},[169]={lang={English={}},name="1"},[170]={lang={English={}},name="1"},[171]={lang={English={}},stats={[1]="metamorphosis_boss_item_reward_slot_3_index"}},[172]={lang={English={}},name="1"},[173]={lang={English={}},name="1"},[174]={lang={English={}},name="1"},[175]={lang={English={}},name="1"},[176]={lang={English={}},name="1"},[177]={lang={English={}},name="1"},[178]={lang={English={}},name="1"},[179]={lang={English={}},name="1"},[180]={lang={English={}},name="1"},[181]={lang={English={}},name="1"},[182]={lang={English={}},stats={[1]="metamorphosis_boss_item_reward_slot_4_index"}},[183]={lang={English={}},name="1"},[184]={lang={English={}},name="1"},[185]={lang={English={}},name="1"},[186]={lang={English={}},name="1"},[187]={lang={English={}},name="1"},[188]={lang={English={}},name="1"},[189]={lang={English={}},name="1"},[190]={lang={English={}},name="1"},[191]={lang={English={}},name="1"},[192]={lang={English={}},name="1"},[193]={lang={English={}},stats={[1]="metamorphosis_boss_item_reward_slot_5_index"}},[194]={lang={English={}},name="1"},[195]={lang={English={}},name="1"},[196]={lang={English={}},name="1"},[197]={lang={English={}},name="1"},[198]={lang={English={}},name="1"},[199]={lang={English={}},name="1"},[200]={lang={English={}},name="1"},[201]={lang={English={}},name="1"},[202]={lang={English={}},name="1"},[203]={lang={English={}},name="1"},[204]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Blocks Projectiles while charging"}}},stats={[1]="trigger_charge_additional_block_chance_against_projectiles_%"}},["accuracy_rating_+%"]=12,["action_speed_+%_minimum_value"]=138,["action_speed_cannot_be_reduced_below_base"]=137,["add_endurance_charge_on_skill_hit_%"]=23,["add_frenzy_charge_on_skill_hit_%"]=24,["add_power_charge_on_skill_hit_%"]=25,["attack_speed_+%"]=9,["base_avoid_chill_%"]=113,["base_avoid_freeze_%"]=112,["base_avoid_ignite_%"]=114,["base_avoid_shock_%"]=115,["base_cannot_be_stunned"]=14,["base_chance_to_dodge_%"]=140,["base_chance_to_dodge_spells_%"]=140,["base_movement_velocity_+%"]=4,["base_physical_damage_%_to_convert_to_chaos"]=75,["base_physical_damage_%_to_convert_to_cold"]=76,["base_physical_damage_%_to_convert_to_fire"]=74,["base_physical_damage_%_to_convert_to_lightning"]=73,["base_spell_block_%"]=139,["cannot_have_life_leeched_from"]=141,["chance_to_dodge_attacks_%_while_phasing"]=136,["chance_to_dodge_spells_%_while_phased"]=136,["combined_base_block_%"]=87,["critical_strike_chance_+%"]=17,["curse_on_hit_%_flammability"]=116,["curse_on_hit_%_temporal_chains"]=72,["curse_on_hit_%_vulnerability"]=71,["damage_+%"]=7,["display_monster_casts_devouring_totem_skill_text"]=121,["display_monster_casts_frostbite_text"]=111,["display_monster_casts_lightning_nova_text"]=122,["display_monster_casts_lightning_warp_text"]=110,["display_monster_casts_vaal_detonate_dead_text"]=129,["display_monster_casts_wither"]=134,["display_monster_causes_ground_desecration"]=135,["display_monster_ice_spear_nova_on_death_text"]=118,["display_monster_may_inflict_bleeding"]=142,["display_monster_may_inflict_maim"]=143,["display_monster_spike_nova_on_death_text"]=117,["display_monster_uses_double_strike_text"]=108,["display_monster_uses_far_shot_text"]=119,["display_monster_uses_suppressing_fire_text"]=120,["display_monster_uses_vaal_burning_arrow"]=131,["display_monster_uses_whirling_blades_text"]=109,["display_monster_vaal_storm_call"]=130,["display_monster_wealth_mod"]=15,["display_summons_water_elementals_text"]=107,["evasion_rating_+%"]=13,["gain_frenzy_charge_for_each_quarter_life_removed"]=21,["gain_power_charge_for_each_quarter_life_removed"]=22,hexproof=19,["immune_to_curses"]=18,["is_blight_chaos_monster"]=144,["is_blight_cold_monster"]=145,["is_blight_fire_monster"]=146,["is_blight_lightning_monster"]=147,["is_blight_physical_monster"]=148,["life_leech_from_physical_attack_damage_permyriad"]=8,["life_regeneration_rate_per_minute_%"]=10,["maximum_energy_shield_+%"]=11,["maximum_life_+%"]=5,["metamorphosis_boss_item_reward_slot_1_index"]=149,["metamorphosis_boss_item_reward_slot_2_index"]=160,["metamorphosis_boss_item_reward_slot_3_index"]=171,["metamorphosis_boss_item_reward_slot_4_index"]=182,["metamorphosis_boss_item_reward_slot_5_index"]=193,["monster_base_block_%"]=139,["monster_casts_arc_text"]=102,["monster_casts_arctic_breath_text"]=28,["monster_casts_assassins_mark_curse_text"]=32,["monster_casts_augmented_fireballs_text"]=100,["monster_casts_bleed_nova_text"]=125,["monster_casts_coldsnap_text"]=31,["monster_casts_conductivity_text"]=98,["monster_casts_discharge_text"]=106,["monster_casts_elemental_hit_text"]=70,["monster_casts_elementral_weakness_curse_text"]=33,["monster_casts_enfeeble_curse_text"]=34,["monster_casts_ethereal_knives_text"]=89,["monster_casts_fire_nova_text"]=123,["monster_casts_fireball_text"]=35,["monster_casts_firestorm_text"]=29,["monster_casts_flammability_text"]=99,["monster_casts_flask_charge_nova_text"]=124,["monster_casts_freezing_pulse_text"]=95,["monster_casts_frenzy_text"]=67,["monster_casts_glacial_cascade_text"]=132,["monster_casts_ice_nova_text"]=36,["monster_casts_ice_shield_text"]=104,["monster_casts_ice_spear_text"]=37,["monster_casts_lightning_thorns_text"]=91,["monster_casts_mass_frenzy_text"]=65,["monster_casts_molten_shell_text"]=68,["monster_casts_projectile_vulnerability_curse_text"]=38,["monster_casts_puncture_text"]=30,["monster_casts_shield_charge_text"]=64,["monster_casts_shock_nova_text"]=39,["monster_casts_spark_text"]=40,["monster_casts_temporal_chains_text"]=66,["monster_casts_unholy_fire_text"]=105,["monster_casts_viper_strike_text"]=69,["monster_casts_vulnerability_curse_text"]=41,["monster_casts_warlords_mark_curse_text"]=42,["monster_caustic_cloud_on_death_%_max_damage_to_deal_per_minute"]=82,["monster_channels_lightning_text"]=101,["monster_cleaves_text"]=96,["monster_detonates_corpses_text"]=43,["monster_enrages_on_low_life_text"]=133,["monster_explodes_on_death_text"]=45,["monster_explodes_on_its_target_text"]=44,["monster_fires_a_rain_of_arrows_text"]=46,["monster_fires_burning_arrows_text"]=47,["monster_fires_caustic_arrows_text"]=50,["monster_fires_explosive_arrows_text"]=48,["monster_fires_ice_shot_arrows_text"]=97,["monster_fires_lightning_arrows_text"]=49,["monster_fires_split_arrows_text"]=51,["monster_gain_frenzy_charge_on_kin_death"]=77,["monster_gain_power_charge_on_kin_death"]=78,["monster_grants_frenzy_charges_to_allies_within_distance_on_death"]=20,["monster_ground_fire_on_death_%_max_damage_to_deal_per_minute"]=79,["monster_ground_ice_on_death_base_area_of_effect_radius"]=80,["monster_ground_tar_on_death_base_area_of_effect_radius"]=81,["monster_has_damage_taken_aura_text"]=126,["monster_has_movement_skill_damage_aura_text"]=128,["monster_has_temporal_chains_aura_text"]=127,["monster_leaps_onto_enemies_text"]=52,["monster_raises_undead_text"]=53,["monster_raises_zombies_text"]=103,["monster_summons_exploding_spawn_text"]=54,["monster_summons_monkeys_from_nearby_trees_text"]=55,["monster_summons_skeletons_text"]=56,["monster_summons_spawn_text"]=57,["monster_throws_beartraps_text"]=90,["monster_throws_caustic_bombs_text"]=93,["monster_throws_chaos_bombs_text"]=94,["monster_throws_fire_bombs_text"]=92,["monster_uses_enduring_cry_text"]=58,["monster_uses_flicker_strike_text"]=59,["monster_uses_glacial_hammer_text"]=60,["monster_uses_ground_slam_text"]=61,["monster_uses_lightning_strike_text"]=62,["monster_uses_mass_endurance_text"]=84,["monster_uses_mass_power_text"]=85,["monster_uses_phase_run_text"]=63,["monster_uses_shockwave_text"]=86,["necromancer_additional_rarity_levels_can_be_raised"]=83,["number_of_additional_projectiles"]=16,["physical_damage_%_to_add_as_cold"]=3,["physical_damage_%_to_add_as_fire"]=1,["physical_damage_%_to_add_as_lightning"]=2,["physical_damage_reduction_rating_+%"]=6,["spell_block_%"]=88,["trigger_charge_additional_block_chance_against_projectiles_%"]=204} \ No newline at end of file diff --git a/Data/3_0/StatDescriptions/offering_skill_stat_descriptions.lua b/Data/3_0/StatDescriptions/offering_skill_stat_descriptions.lua index 94b40bc43..0833344ad 100644 --- a/Data/3_0/StatDescriptions/offering_skill_stat_descriptions.lua +++ b/Data/3_0/StatDescriptions/offering_skill_stat_descriptions.lua @@ -1 +1 @@ -return {[1]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Sacrifices %1%%% of your Life\nMinions Regenerate %2%%% of Sacrificed Life per second"}}},name="blood_offering_life_loss",stats={[1]="blood_offering_%_of_life_to_lose",[2]="blood_offering_%_of_lost_life_to_regenerate_as_life_per_second"}},[2]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Life Regeneration granted to Minions per corpse Consumed"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Life Regeneration granted to Minions per corpse Consumed"}}},name="blood_offering_life_regen_multi",stats={[1]="blood_offering_life_regenerated_+%_final_per_corpse"}},[3]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants Minions %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants Minions %1%%% reduced Attack Speed"}}},name="attack_speed_incr_skill_granted",stats={[1]="attack_speed_+%_granted_from_skill"}},[4]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants Minions %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants Minions %1%%% reduced Damage"}}},name="damage_incr",stats={[1]="damage_+%"}},[5]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants Minions %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants Minions %1%%% reduced Cast Speed"}}},name="cast_speed_incr_skill_granted",stats={[1]="cast_speed_+%_granted_from_skill"}},[6]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants Minions %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants Minions %1%%% reduced Movement Speed"}}},name="movement_speed_incr",stats={[1]="base_movement_velocity_+%"}},[7]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Minions %1$+d%% Chance to Block Attack Damage"}}},name="base_block",stats={[1]="monster_base_block_%"}},[8]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Minions %1$+d%% Chance to Block Spell Damage"}}},name="base_spell_block",stats={[1]="base_spell_block_%"}},[9]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions recover %1% Life when they Block"}}},name="recover_life_on_block",stats={[1]="recover_X_life_on_block"}},[10]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions gain %1%%% of their Physical Damage as Extra Chaos Damage"}}},name="physical_damage_to_add_as_chaos",stats={[1]="physical_damage_%_to_add_as_chaos"}},[11]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions gain %1%%% of their Maximum Life as\nExtra Maximum Energy Shield for each corpse Consumed"}}},name="spirit_offering_life_as_es_per_corpse",stats={[1]="spirit_offering_life_%_added_as_base_maximum_energy_shield_per_corpse_consumed"}},[12]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions gain %1$+d%% to all Elemental Resistances"}}},name="elemental_resist",stats={[1]="base_resist_all_elements_%"}},["attack_speed_+%_granted_from_skill"]=3,["base_movement_velocity_+%"]=6,["base_resist_all_elements_%"]=12,["base_spell_block_%"]=8,["blood_offering_%_of_life_to_lose"]=1,["blood_offering_%_of_lost_life_to_regenerate_as_life_per_second"]=1,["blood_offering_life_regenerated_+%_final_per_corpse"]=2,["cast_speed_+%_granted_from_skill"]=5,["damage_+%"]=4,["monster_base_block_%"]=7,parent="skill_stat_descriptions",["physical_damage_%_to_add_as_chaos"]=10,["recover_X_life_on_block"]=9,["spirit_offering_life_%_added_as_base_maximum_energy_shield_per_corpse_consumed"]=11} \ No newline at end of file +return {[1]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Sacrifices %1%%% of your Life\nMinions Regenerate %2%%% of Sacrificed Life per second"}}},name="blood_offering_life_loss",stats={[1]="blood_offering_%_of_life_to_lose",[2]="blood_offering_%_of_lost_life_to_regenerate_as_life_per_second"}},[2]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Life Regeneration granted to Minions per corpse Consumed"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Life Regeneration granted to Minions per corpse Consumed"}}},name="blood_offering_life_regen_multi",stats={[1]="blood_offering_life_regenerated_+%_final_per_corpse"}},[3]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants Minions %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants Minions %1%%% reduced Attack Speed"}}},name="attack_speed_incr_skill_granted",stats={[1]="attack_speed_+%_granted_from_skill"}},[4]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants Minions %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants Minions %1%%% reduced Damage"}}},name="damage_incr",stats={[1]="damage_+%"}},[5]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants Minions %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants Minions %1%%% reduced Cast Speed"}}},name="cast_speed_incr_skill_granted",stats={[1]="cast_speed_+%_granted_from_skill"}},[6]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants Minions %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants Minions %1%%% reduced Movement Speed"}}},name="movement_speed_incr",stats={[1]="base_movement_velocity_+%"}},[7]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Minions %1$+d%% Chance to Block Attack Damage"}}},name="base_block",stats={[1]="monster_base_block_%"}},[8]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Minions %1$+d%% Chance to Block Spell Damage"}}},name="base_spell_block",stats={[1]="base_spell_block_%"}},[9]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions recover %1% Life when they Block"}}},name="recover_life_on_block",stats={[1]="recover_X_life_on_block"}},[10]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions gain %1%%% of their Physical Damage as Extra Chaos Damage"}}},name="physical_damage_to_add_as_chaos",stats={[1]="physical_damage_%_to_add_as_chaos"}},[11]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions gain %1%%% of their Maximum Life as\nExtra Maximum Energy Shield for each corpse Consumed"}}},name="spirit_offering_life_as_es_per_corpse",stats={[1]="spirit_offering_life_%_added_as_base_maximum_energy_shield_per_corpse_consumed"}},[12]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants Minions +%1%%% to Chaos Resistance"}}},name="chaos_res",stats={[1]="base_chaos_damage_resistance_%"}},[13]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions gain %1$+d%% to all Elemental Resistances"}}},name="elemental_resist",stats={[1]="base_resist_all_elements_%"}},["attack_speed_+%_granted_from_skill"]=3,["base_chaos_damage_resistance_%"]=12,["base_movement_velocity_+%"]=6,["base_resist_all_elements_%"]=13,["base_spell_block_%"]=8,["blood_offering_%_of_life_to_lose"]=1,["blood_offering_%_of_lost_life_to_regenerate_as_life_per_second"]=1,["blood_offering_life_regenerated_+%_final_per_corpse"]=2,["cast_speed_+%_granted_from_skill"]=5,["damage_+%"]=4,["monster_base_block_%"]=7,parent="skill_stat_descriptions",["physical_damage_%_to_add_as_chaos"]=10,["recover_X_life_on_block"]=9,["spirit_offering_life_%_added_as_base_maximum_energy_shield_per_corpse_consumed"]=11} \ No newline at end of file diff --git a/Data/3_0/StatDescriptions/skill_stat_descriptions.lua b/Data/3_0/StatDescriptions/skill_stat_descriptions.lua index 5cb1ad829..e6aa2d918 100644 --- a/Data/3_0/StatDescriptions/skill_stat_descriptions.lua +++ b/Data/3_0/StatDescriptions/skill_stat_descriptions.lua @@ -1 +1 @@ -return {[1]={stats={[1]="base_actor_scale_+%"}},[2]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Sacrifices %1%%% of Skeleton's Life to deal that much Chaos Damage"}}},name="skeletal_chains_aoe_health_percent",stats={[1]="skeletal_chains_aoe_%_health_dealt_as_chaos_damage"}},[3]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Sacrifices %1%%% of your total Energy Shield and Life\nDeals %2%%% of Sacrificed Energy Shield and Life as Fire Damage per second"}}},name="vrf_loss",stats={[1]="vaal_righteous_fire_life_and_es_%_to_lose_on_use",[2]="vaal_righteous_fire_life_and_es_%_as_damage_per_second"}},[4]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Physical Damage"}}},name="weapon_physical_damage_range",stats={[1]="0"}},[5]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed"}}},name="cast_speed_incr_skill_granted",stats={[1]="cast_speed_+%_granted_from_skill"}},[6]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Fire Damage"}}},name="weapon_fire_damage_range",stats={[1]="0"}},[7]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Cold Damage"}}},name="weapon_cold_damage_range",stats={[1]="0"}},[8]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Lightning Damage"}}},name="weapon_lightning_damage_range",stats={[1]="0"}},[9]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Chaos Damage"}}},name="weapon_chaos_damage_range",stats={[1]="0"}},[10]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Physical Damage"}}},name="spell_physical_damage_range",stats={[1]="spell_minimum_physical_damage",[2]="spell_maximum_physical_damage"}},[11]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Fire Damage"}}},name="spell_fire_damage_range",stats={[1]="spell_minimum_fire_damage",[2]="spell_maximum_fire_damage"}},[12]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Cold Damage"}}},name="spell_cold_damage_range",stats={[1]="spell_minimum_cold_damage",[2]="spell_maximum_cold_damage"}},[13]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Lightning Damage"}}},name="spell_lightning_damage_range",stats={[1]="spell_minimum_lightning_damage",[2]="spell_maximum_lightning_damage"}},[14]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Chaos Damage"}}},name="spell_chaos_damage_range",stats={[1]="spell_minimum_chaos_damage",[2]="spell_maximum_chaos_damage"}},[15]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Physical Damage"}}},name="secondary_physical_damage_range",stats={[1]="secondary_minimum_physical_damage",[2]="secondary_maximum_physical_damage"}},[16]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Fire Damage"}}},name="secondary_fire_damage_range",stats={[1]="secondary_minimum_fire_damage",[2]="secondary_maximum_fire_damage"}},[17]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Cold Damage"}}},name="secondary_cold_damage_range",stats={[1]="secondary_minimum_cold_damage",[2]="secondary_maximum_cold_damage"}},[18]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Lightning Damage"}}},name="secondary_lightning_damage_range",stats={[1]="secondary_minimum_lightning_damage",[2]="secondary_maximum_lightning_damage"}},[19]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Chaos Damage"}}},name="secondary_chaos_damage_range",stats={[1]="secondary_minimum_chaos_damage",[2]="secondary_maximum_chaos_damage"}},[20]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% base Lightning Damage per Power Charge removed"}}},name="lightning_damage_per_power_charge_range",stats={[1]="spell_minimum_base_lightning_damage_per_removable_power_charge",[2]="spell_maximum_base_lightning_damage_per_removable_power_charge"}},[21]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% base Fire Damage per Endurance Charge removed"}}},name="fire_damage_per_endurance_charge_range",stats={[1]="spell_minimum_base_fire_damage_per_removable_endurance_charge",[2]="spell_maximum_base_fire_damage_per_removable_endurance_charge"}},[22]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Additional %1% seconds Base Duration per extra corpse Consumed"}}},name="offering_duration_per_corpse",stats={[1]="offering_skill_effect_duration_per_corpse"}},[23]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% base Cold Damage per Frenzy Charge removed"}}},name="cold_damage_per_frenzy_charge_range",stats={[1]="spell_minimum_base_cold_damage_per_removable_frenzy_charge",[2]="spell_maximum_base_cold_damage_per_removable_frenzy_charge"}},[24]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% base Cold Damage per 10 Intelligence"}}},name="cold_damage_per_int",stats={[1]="spell_minimum_base_cold_damage_+_per_10_intelligence",[2]="spell_maximum_base_cold_damage_+_per_10_intelligence"}},[25]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Explosion deals base Fire Damage equal to %1%%% of the corpse's Maximum Life"}}},name="corpse_life_percentage",stats={[1]="corpse_explosion_monster_life_%"}},[26]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Spell Damage apply to this Skill's Damage Over Time effect"}}},name="spell_damage_over_time",stats={[1]="spell_damage_modifiers_apply_to_skill_dot"}},[27]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Projectile Damage apply to this Skill's Damage Over Time effect"}}},name="projectile_damage_over_time",stats={[1]="projectile_damage_modifiers_apply_to_skill_dot"}},[28]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Light Radius also apply to this Skill's Area of Effect"}}},name="light_raidus_is_area",stats={[1]="light_radius_increases_apply_to_area_of_effect"}},[29]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Skill Effect Duration also apply to this Skill's Soul Gain Prevention"}}},name="soul_prevention_skill_duration",stats={[1]="modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration"}},[30]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Buff Duration also apply to this Skill's Soul Gain Prevention"}}},name="soul_prevention_buff_duration",stats={[1]="modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration"}},[31]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]=1}},text="Throws a Remote Mine which uses this Skill when detonated"},[2]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=2,[2]="#"}},text="Throws %2% Remote Mines which use this Skill when detonated"}}},name="mine",stats={[1]="is_remote_mine",[2]="number_of_mines_to_place"}},[32]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]=1}},text="Throws a Trap which uses this Skill when Triggered"},[2]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=2,[2]="#"}},text="Throws up to %2% Traps which use this Skill when Triggered"}}},name="trap",stats={[1]="is_trap",[2]="number_of_traps_to_throw"}},[33]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Traps are thrown randomly around you"}}},name="trap_throw_random",stats={[1]="throw_traps_in_circle_radius"}},[34]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=1,[2]=1},[3]={[1]=0,[2]=0}},text="Summons a Totem which uses this Skill"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=1,[2]=1},[3]={[1]=0,[2]=0}},text="Summons a Ballista Totem which uses this Skill"},[3]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0}},text="Summons %1% Totems which use this Skill"},[4]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0}},text="Summons %1% Ballista Totems which use this Skill"}}},stats={[1]="is_totem",[2]="number_of_totems_to_summon",[3]="is_ranged_attack_totem"}},[35]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Trigger Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Trigger Area of Effect"}}},name="trap_radius",stats={[1]="trap_trigger_radius_+%"}},[36]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Detonation Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Detonation Area of Effect"}}},name="mine_radius",stats={[1]="mine_detonation_radius_+%"}},[37]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Skill cannot be used with Melee Weapons"}}},name="disable_melee",stats={[1]="display_disable_melee_weapons"}},[38]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spell Repeats an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spell Repeats an additional %1% times"}}},name="multicast",stats={[1]="spell_repeat_count"}},[39]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Transfers %1%%% of Damage taken by each nearby enemy to the target"}}},name="damage_infusion",stats={[1]="damage_infusion_%"}},[40]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]="#",[2]="#"}},text="Fires Projectiles at each nearby Enemy"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires Projectiles in random directions"},[3]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires Projectiles in a spiral"},[4]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires Projectiles in a spiral"},[5]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires Projectiles in a circle"},[6]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires Projectiles sequentially"},[7]={limit={[1]={[1]=0,[2]=0},[2]={[1]=1,[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]="#",[2]="#"}},text="Fires %2% Projectiles at each nearby Enemy"},[8]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]="#"},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=1,[2]=1}},text="Fires a sequence of %3% Arrows"},[9]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]="#"},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=2,[2]="#"}},text="Fires %8% sequences of %3% Arrows"},[10]={limit={[1]={[1]=0,[2]=0},[2]={[1]=1,[2]=1},[3]={[1]=0,[2]=0},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires 1 Projectile in a random direction"},[11]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires %2% Projectiles in random directions"},[12]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]=1},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires 1 Arrow in a random direction"},[13]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]="#"},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires %3% Arrows in random directions"},[14]={limit={[1]={[1]=0,[2]=0},[2]={[1]=1,[2]=1},[3]={[1]=0,[2]=0},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires 1 Projectile"},[15]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]=1},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=1}},text="Fires 1 Arrow"},[16]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %2% Projectiles"},[17]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]="#"},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %3% Arrows"},[18]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires %2% Projectiles in a spiral"},[19]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]="#"},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires %3% Arrows in a spiral"},[20]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %2% Projectiles in a spiral"},[21]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]="#"},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %3% Arrows in a spiral"},[22]={limit={[1]={[1]=0,[2]=0},[2]={[1]=1,[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %2% Projectiles in a circle"},[23]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]="#"},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %3% Arrows in a circle"},[24]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %2% Projectiles sequentially"},[25]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]="#"},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %3% Arrows sequentially"}}},name="number_of_projectiles",stats={[1]="power_siphon_fire_at_all_targets",[2]="total_number_of_projectiles_to_fire",[3]="total_number_of_arrows_to_fire",[4]="base_number_of_projectiles_in_spiral_nova",[5]="projectile_spiral_nova_angle",[6]="projectiles_nova",[7]="projectiles_barrage",[8]="rain_of_arrows_sequences_to_fire"}},[41]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed"}}},name="attack_speed_incr",stats={[1]="attack_speed_+%"}},[42]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed"}}},name="attack_speed_incr_skill_granted",stats={[1]="attack_speed_+%_granted_from_skill"}},[43]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed when on Low Life"}}},name="attack_speed_incr_on_low_life",stats={[1]="attack_speed_+%_when_on_low_life"}},[44]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed while Totem is Active"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed while Totem is Active"}}},name="ancestor_totem_grants_attack_speed",stats={[1]="melee_ancestor_totem_grant_owner_attack_speed_+%_final"}},[45]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Melee Damage while Totem is Active"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Melee Damage while Totem is Active"}}},name="ancestor_totem_grants_melee_damage",stats={[1]="slam_ancestor_totem_grant_owner_melee_damage_+%_final"}},[46]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage gained as Extra Fire Damage while Totem is Active"}}},name="ancestor_totem_grants_fire_damage",stats={[1]="slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"}},[47]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while Totem is Active"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while Totem is Active"}}},name="ancestor_totem_grants_attack_speed_incr",stats={[1]="melee_ancestor_totem_grant_owner_attack_speed_+%"}},[48]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage while Totem is Active"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage while Totem is Active"}}},name="ancestor_totem_grants_melee_damage_incr",stats={[1]="slam_ancestor_totem_grant_owner_melee_damage_+%"}},[49]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed when on Low Life"}}},name="cast_speed_incr_on_low_life",stats={[1]="cast_speed_+%_when_on_low_life"}},[50]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed"}}},name="cast_speed_incr",stats={[1]="base_cast_speed_+%"}},[51]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Cast Speed"}}},name="multicast_cast_speed_incr",stats={[1]="support_multicast_cast_speed_+%_final"}},[52]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life"}}},name="life_leech_from_any",stats={[1]="life_leech_from_any_damage_permyriad"}},[53]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Physical Damage Leeched as Life"}}},name="life_leech_from_physical",stats={[1]="life_leech_from_physical_attack_damage_permyriad"}},[54]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Energy Shield"}}},name="energy_shield_leech_from_any",stats={[1]="energy_shield_leech_from_any_damage_permyriad"}},[55]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Knock enemies Back on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=100,[2]="#"}},text="Knocks enemies Back on Hit"}}},name="knockback",stats={[1]="global_chance_to_knockback_%"}},[56]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Knockback Distance"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Knockback Distance"}}},name="knockback_distance",stats={[1]="knockback_distance_+%"}},[57]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Stun Threshold"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Enemy Stun Threshold"}}},name="stun_threshold_reduction_incr",stats={[1]="base_stun_threshold_reduction_+%"}},[58]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to radius"}}},name="radius_add",stats={[1]="active_skill_base_radius_+"}},[59]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to radius of Consecrated Ground"}}},name="conescrated_ground_radius_add",stats={[1]="active_skill_ground_consecration_radius_+"}},[60]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect"}}},name="area_of_effect_incr",stats={[1]="base_skill_area_of_effect_+%"}},[61]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per 1 additional Melee range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per 1 additional Melee range"}}},name="cyclone_area_pluspercent_per_range_do_not_show_on_skill",stats={[1]="cyclone_area_of_effect_+%_per_additional_melee_range"}},[62]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect from additional Melee Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect from additional Melee Range"}}},name="cyclone_area_pluspercent_from_melee_range",stats={[1]="virtual_cyclone_skill_area_of_effect_+%_from_melee_range"}},[63]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while Dead"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while Dead"}}},name="area_of_effect_incr_while_dead",stats={[1]="area_of_effect_+%_while_dead"}},[64]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area of Effect"}}},name="concentrated_area_of_effect",stats={[1]="support_concentrated_effect_skill_area_of_effect_+%_final"}},[65]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Aura Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Aura Area of Effect"}}},name="aura_area_of_effect_incr",stats={[1]="base_aura_area_of_effect_+%"}},[66]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Aura"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced effect of Aura"}}},name="aura_effect_incr",stats={[1]="aura_effect_+%"}},[67]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed per Frenzy Charge"}}},name="attack_speed_per_frenzy_charge",stats={[1]="base_attack_speed_+%_per_frenzy_charge"}},[68]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Curse Lasts %1% seconds"}}},name="curse_duration",stats={[1]="curse_effect_duration"}},[69]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Buff Lasts %1% seconds"}}},name="buff_duration",stats={[1]="buff_effect_duration"}},[70]={lang={English={[1]={limit={[1]={[1]=1000,[2]=1000}},text="Secondary Buff Lasts 1 second"},[2]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Secondary Buff Lasts %1% seconds"}}},name="secondary_buff_duration",stats={[1]="secondary_buff_effect_duration"}},[71]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Duration is %1% seconds"}}},name="skill_duration",stats={[1]="skill_effect_duration"}},[72]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Secondary Duration is %1% seconds"}}},name="secondary_skill_duration",stats={[1]="secondary_skill_effect_duration"}},[73]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Ground effects last %1% seconds"}}},name="projectile_ground_effect_duration",stats={[1]="projectile_ground_effect_duration"}},[74]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},[2]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]="#"}},text="Bleeding Lasts %1% seconds"}}},name="bleeding_skill_duration",stats={[1]="bleeding_skill_effect_duration"}},[75]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},[2]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]="#"}},text="Poison Lasts %1% seconds"}}},name="poison_skill_duration",stats={[1]="poison_skill_effect_duration"}},[76]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions Last %1% seconds"}}},name="minion_duration",stats={[1]="minion_duration"}},[77]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions Last %1% seconds"}}},name="secondary_minion_duration",stats={[1]="secondary_minion_duration"}},[78]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Spectres Last %1% seconds"}}},name="spectre_duration",stats={[1]="spectre_duration"}},[79]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Endurance Charges granted per one hundred nearby enemies"}}},name="enduring_cry_charges",stats={[1]="endurance_charges_granted_per_one_hundred_nearby_enemies_during_endurance_warcry"}},[80]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Threshold reduction on enemies at Maximum charge distance"},[2]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Threshold reduction on enemies at Maximum charge distance"}}},name="shield_charge_stun_threshold",stats={[1]="shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range"}},[81]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration on enemies at Maximum charge distance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration on enemies at Maximum charge distance"}}},name="shield_charge_stun",stats={[1]="shield_charge_stun_duration_+%_maximum"}},[82]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits at Maximum Charge Distance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits at Maximum Charge Distance"}}},name="shield_charge_damage",stats={[1]="shield_charge_damage_+%_maximum"}},[83]={lang={English={[1]={limit={[1]={[1]=1,[2]=1},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0}},text="Projectiles Pierce 1 Target"},[2]={limit={[1]={[1]=2,[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0}},text="Projectiles Pierce %1% Targets"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0}},text="Projectiles Pierce all Targets"},[4]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]="#"},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0}},text="Projectiles cannot Pierce"},[5]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=1,[2]=1},[5]={[1]=0,[2]=0}},text="Arrows Pierce 1 Target"},[6]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=2,[2]="#"},[5]={[1]=0,[2]=0}},text="Arrows Pierce %4% Targets"},[7]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"}},text="Arrows Pierce all Targets"}}},name="pierce_num",stats={[1]="projectile_number_of_targets_to_pierce",[2]="virtual_always_pierce",[3]="virtual_projectiles_cannot_pierce",[4]="arrow_number_of_targets_to_pierce",[5]="arrows_always_pierce"}},[84]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Primary Projectile Pierces 1 Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Primary Projectile Pierces %1% Targets"}}},name="primary_proj_pierce_num",stats={[1]="primary_projectile_display_targets_to_pierce"}},[85]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Speed"}}},name="projectile_speed_incr",stats={[1]="base_projectile_speed_+%"}},[86]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="Always Freezes enemies"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0}},text="%1%%% chance to Freeze enemies"}}},name="freeze_chance",stats={[1]="base_chance_to_freeze_%",[2]="always_freeze"}},[87]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Shock enemies"}}},name="shock_chance",stats={[1]="base_chance_to_shock_%"}},[88]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Ignite enemies"}}},name="burn_chance",stats={[1]="base_chance_to_ignite_%"}},[89]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freeze Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freeze Duration on enemies"}}},name="freeze_duration",stats={[1]="freeze_duration_+%"}},[90]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chill Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chill Duration on enemies"}}},name="chill_duration",stats={[1]="chill_duration_+%"}},[91]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Chill"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Chill"}}},name="chill_effect",stats={[1]="chill_effect_+%"}},[92]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shock Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shock Duration on enemies"}}},name="shock_duration",stats={[1]="shock_duration_+%"}},[93]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ignite Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ignite Duration on enemies"}}},name="burn_duration",stats={[1]="ignite_duration_+%"}},[94]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Burning Damage"}}},name="burn_damage",stats={[1]="burn_damage_+%"}},[95]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed"}}},name="movement_speed_incr",stats={[1]="base_movement_velocity_+%"}},[96]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Locks enemy in place"}}},name="no_movement_speed",stats={[1]="no_movement_speed"}},[97]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain enemies"}}},name="killed_monster_dropped_item_rarity_incr",stats={[1]="killed_monster_dropped_item_rarity_+%"}},[98]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Slain enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Dropped by Slain enemies"}}},name="killed_monster_dropped_item_quantity_incr",stats={[1]="killed_monster_dropped_item_quantity_+%"}},[99]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1% additional Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Subtracts %1% from Accuracy Rating"}}},name="accuracy_rating",stats={[1]="accuracy_rating"}},[100]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating"}}},name="accuracy_rating_incr",stats={[1]="accuracy_rating_+%"}},[101]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% of your Maximum Life per second as Chaos Damage"}}},name="chaos_damage_percent_of_life_per_minute",stats={[1]="base_chaos_damage_%_of_maximum_life_to_deal_per_minute"}},[102]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% of your Maximum Life per second as Physical Damage"}}},name="physical_damage_percent_of_life_per_minute",stats={[1]="base_physical_damage_%_of_maximum_life_to_deal_per_minute"}},[103]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% of your Maximum Energy Shield per second as Physical Damage"}}},name="physical_damage_percent_of_energy_shield_per_minute",stats={[1]="base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute"}},[104]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain a Frenzy Charge on Kill"}}},name="frenzy_on_kill",stats={[1]="add_frenzy_charge_on_kill"}},[105]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Frenzy Charge on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Frenzy Charge on Kill"}}},name="frenzy_on_kill_chance",stats={[1]="add_frenzy_charge_on_kill_%_chance"}},[106]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance"}}},name="critical_strike_chance_incr",stats={[1]="critical_strike_chance_+%"}},[107]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Critical Strike Chance"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Critical Strike Chance"}}},name="mulpile_projectiles_critical_strike_chance_incr",stats={[1]="support_multiple_projectiles_critical_strike_chance_+%_final"}},[108]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier"}}},name="critical_strike_multiplier_incr",stats={[1]="base_critical_strike_multiplier_+"}},[109]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier while Elusive"}}},name="crit_multi_while_elusive",stats={[1]="critical_strike_multiplier_+_while_affected_by_elusive"}},[110]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Withered lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Withered lasts %1% seconds"}}},name="withered_duration",stats={[1]="skill_withered_duration_ms"}},[111]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1% Life gained for each enemy Hit"}}},name="life_gain_per_target",stats={[1]="life_gain_per_target"}},[112]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage"}}},name="minion_damage_incr",stats={[1]="minion_damage_+%"}},[113]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Doubles have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Doubles have %1%%% reduced Movement Speed"}}},name="doubles_have_move_speed",stats={[1]="doubles_have_movement_speed_+%"}},[114]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Attack Speed"}}},name="minion_attack_speed_incr",stats={[1]="minion_attack_speed_+%"}},[115]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Cast Speed"}}},name="minion_cast_speed_incr",stats={[1]="minion_cast_speed_+%"}},[116]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Movement Speed"}}},name="minion_movement_speed_incr",stats={[1]="minion_movement_speed_+%"}},[117]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Minion Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Minion Movement Speed"}}},name="minion_movement_speed_final",stats={[1]="active_skill_minion_movement_velocity_+%_final"}},[118]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Releases a Stronger Pulse every %1% Pulses"}}},name="lightning_tendrils_pulse_interval",stats={[1]="lightning_tendrils_channelled_larger_pulse_interval"}},[119]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minion Movement Speed is Capped"}}},name="movement_velocity_cap",stats={[1]="movement_velocity_cap"}},[120]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Life"}}},name="minion_life_final",stats={[1]="active_skill_minion_life_+%_final"}},[121]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Energy Shield"}}},name="minion_energy_shield_final",stats={[1]="active_skill_minion_energy_shield_+%_final"}},[122]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Minion maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Minion maximum Life"}}},name="minion_life_incr_final",stats={[1]="support_minion_maximum_life_+%_final"}},[123]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Maximum Life"}}},name="minion_life_incr",stats={[1]="minion_maximum_life_+%"}},[124]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneMinionInstability"},limit={[1]={[1]="#",[2]="#"}},text="Minion Instability"}}},name="minion_instability",stats={[1]="keystone_minion_instability"}},[125]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration on enemies"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration on enemies"}}},name="stun_duration_incr",stats={[1]="base_stun_duration_+%"}},[126]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Stuns Enemies"}}},name="stun",stats={[1]="always_stun"}},[127]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage when successfully Backstabbing"}}},name="backstab_damage",stats={[1]="backstab_damage_+%"}},[128]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1% seconds between appearance of Wall sections"}}},name="wall_delay",stats={[1]="wall_expand_delay_ms"}},[129]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Wall will be %1% units long"}}},name="wall_length",stats={[1]="wall_maximum_length"}},[130]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Each Viper Strike Charge deals %1% Base Chaos Damage per second"}}},name="viper_strike_orb_damage",stats={[1]="base_chaos_damage_taken_per_minute_per_viper_strike_orb"}},[131]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Chaos Damage per second"}}},name="chaos_area_damage_per_minute",stats={[1]="intermediary_chaos_area_damage_to_deal_per_minute"}},[132]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Chaos Damage per second"}}},name="chaos_damage_per_minute",stats={[1]="intermediary_chaos_damage_to_deal_per_minute"}},[133]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Chaos Damage per second"}}},name="chaos_skill_dot_area_damage_per_minute",stats={[1]="intermediary_chaos_skill_dot_area_damage_to_deal_per_minute"}},[134]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Chaos Damage per second"}}},name="chaos_skill_dot_damage_per_minute",stats={[1]="intermediary_chaos_skill_dot_damage_to_deal_per_minute"}},[135]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Cold Damage per second"}}},name="cold_area_damage_per_minute",stats={[1]="intermediary_cold_area_damage_to_deal_per_minute"}},[136]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Cold Damage per second"}}},name="cold_damage_per_minute",stats={[1]="intermediary_cold_damage_to_deal_per_minute"}},[137]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Cold Damage per second"}}},name="cold_skill_dot_area_damage_per_minute",stats={[1]="intermediary_cold_skill_dot_area_damage_to_deal_per_minute"}},[138]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Cold Damage per second"}}},name="cold_skill_dot_damage_per_minute",stats={[1]="intermediary_cold_skill_dot_damage_to_deal_per_minute"}},[139]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Fire Damage per second"}}},name="fire_area_damage_per_minute",stats={[1]="intermediary_fire_area_damage_to_deal_per_minute"}},[140]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Fire Damage per second"}}},name="fire_damage_per_minute",stats={[1]="intermediary_fire_damage_to_deal_per_minute"}},[141]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Fire Damage per second"}}},name="fire_skill_dot_area_damage_per_minute",stats={[1]="intermediary_fire_skill_dot_area_damage_to_deal_per_minute"}},[142]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Fire Damage per second"}}},name="fire_skill_dot_damage_per_minute",stats={[1]="intermediary_fire_skill_dot_damage_to_deal_per_minute"}},[143]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Adds %1% seconds to monster response time"}}},name="monster_response_time",stats={[1]="monster_response_time_ms"}},[144]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Melee Physical Damage"}}},name="phase_run_melee_physical_damage_incr_final",stats={[1]="phase_run_melee_physical_damage_+%_final"}},[145]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage"}}},name="melee_physical_damage_incr",stats={[1]="melee_physical_damage_+%"}},[146]={lang={English={[1]={[1]={k="multiplicative_permyriad_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Explosion deals %1%%% of Base Damage"}}},name="explosive_arrow_base_damage_override",stats={[1]="explosive_arrow_explosion_base_damage_+permyriad"}},[147]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Explosion will have %1% to %2% added Fire Damage"}}},name="explosive_arrow_added_fire",stats={[1]="explosive_arrow_explosion_minimum_added_fire_damage",[2]="explosive_arrow_explosion_maximum_added_fire_damage"}},[148]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Explosion deals %1% to %2% Base Fire Damage per Fuse Charge"}}},name="fuse_arrow_orb_damage",stats={[1]="minimum_fire_damage_per_fuse_arrow_orb",[2]="maximum_fire_damage_per_fuse_arrow_orb"}},[149]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0}},text="%1$+d to Explosion Radius per Explosive Arrow on Target"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="%1$+d to Explosion Radius per Explosive Arrow on Target, up to %2$+d"}}},name="fuse_arrow_explosion_radius",stats={[1]="fuse_arrow_explosion_radius_+_per_fuse_arrow_orb",[2]="explosive_arrow_maximum_bonus_explosion_radius"}},[150]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="One impact every %1% seconds"}}},name="fire_storm_delay",stats={[1]="fire_storm_fireball_delay_ms"}},[151]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Stun and Block Recovery"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Stun and Block Recovery"}}},name="stun_recovery_incr",stats={[1]="base_stun_recovery_+%"}},[152]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% faster start of Energy Shield Recharge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% slower start of Energy Shield Recharge"}}},name="energy_shield_delay",stats={[1]="energy_shield_delay_-%"}},[153]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Recharge rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Recharge rate"}}},name="energy_shield_recharge_rate",stats={[1]="energy_shield_recharge_rate_+%"}},[154]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage from Damage Over Time effects"}}},name="degen_effect_incr",stats={[1]="degen_effect_+%"}},[155]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Base Duration per Endurance Charge removed"}}},name="buff_duration_per_endurance",stats={[1]="base_buff_duration_ms_+_per_removable_endurance_charge"}},[156]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Buff Duration per Endurance Charge removed"}}},name="buff_duration_incr_per_endurance",stats={[1]="buff_effect_duration_+%_per_removable_endurance_charge"}},[157]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Buff Duration per Endurance Charge removed"}}},name="buff_duration_incr_per_endurance_limited",stats={[1]="buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5"}},[158]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skill Duration per Frenzy Charge removed"}}},name="skill_duration_incr_per_frenzy",stats={[1]="skill_effect_duration_+%_per_removable_frenzy_charge"}},[159]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while holding a Shield"}}},name="shield_block",stats={[1]="shield_block_%"}},[160]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while holding a Shield"}}},name="shield_spell_block",stats={[1]="shield_spell_block_%"}},[161]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Shields break after %1% total Damage is prevented"}}},name="fire_shield_damage_threshold",stats={[1]="fire_shield_damage_threshold"}},[162]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour"}}},name="armour_incr",stats={[1]="physical_damage_reduction_rating_+%"}},[163]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances"}}},name="elemental_resist",stats={[1]="base_resist_all_elements_%"}},[164]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% of your Maximum Life as Base Fire Damage per second"}}},name="righteous_fire_damage_to_nearby_from_life",stats={[1]="base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute"}},[165]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% of your Maximum Energy Shield as Base Fire Damage per second"}}},name="righteous_fire_damage_to_nearby_from_es",stats={[1]="base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute"}},[166]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="You Burn for %1%%% of your Maximum Life per second as Fire Damage"}}},name="righteous_fire_self_damage_from_life",stats={[1]="base_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute"}},[167]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="You Burn for %1%%% of your Maximum Energy Shield per second as Fire Damage"}}},name="righteous_fire_self_damage_from_es",stats={[1]="base_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute"}},[168]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants %1%%% less Spell Damage"}}},name="righteous_fire_spell_damage_incr",stats={[1]="righteous_fire_spell_damage_+%_final"}},[169]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants %1%%% less Spell Damage"}}},name="vaal_righteous_fire_spell_damage_incr",stats={[1]="vaal_righteous_fire_spell_damage_+%_final"}},[170]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage"}}},name="spell_damage_incr",stats={[1]="spell_damage_+%"}},[171]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% additional Armour"}}},name="base_armour",stats={[1]="base_physical_damage_reduction_rating"}},[172]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Hits up to %1% additional enemy near the target"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Hits up to %1% additional enemies near the target"}}},name="lighnting_arrow_targets",stats={[1]="lightning_arrow_maximum_number_of_extra_targets"}},[173]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Elemental Ailments caused by this skill spread to other nearby enemies"}}},name="elemental_status_aura",stats={[1]="elemental_status_effect_aura_radius"}},[174]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignites caused by this Skill spread to other nearby Enemies"}}},name="ignite_aura",stats={[1]="support_ignite_proliferation_radius"}},[175]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Cannot inflict Elemental Ailments"}}},name="cannot_inflict_ailments",stats={[1]="cannot_inflict_status_ailments"}},[176]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spend Life instead of Mana for this skill"}}},name="blood_magic",stats={[1]="base_use_life_in_place_of_mana"}},[177]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]=1,[2]="#"}},text="Culling Strike"}}},name="culling_strike",stats={[1]="kill_enemy_on_hit_if_under_10%_life"}},[178]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystonePointBlank"},limit={[1]={[1]="#",[2]="#"}},text="Point Blank"}}},name="point_blank",stats={[1]="keystone_point_blank"}},[179]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to cause Monsters to Flee when Hit"}}},name="chance_to_flee",stats={[1]="global_hit_causes_monster_flee_%"}},[180]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totem range: %1%"}}},name="totem_range",stats={[1]="totem_range"}},[181]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Totem"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Summoned Totems"}}},name="num_totems",stats={[1]="skill_display_number_of_totems_allowed"}},[182]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% Trap placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Traps placed at a time"}}},name="num_traps",stats={[1]="skill_display_number_of_traps_allowed"}},[183]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% Remote Mine placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Remote Mines placed at a time"}}},name="num_mines",stats={[1]="skill_display_number_of_remote_mines_allowed"}},[184]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Totem lasts %1% seconds"}}},name="totem_duration",stats={[1]="totem_duration"}},[185]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems Summoned by this Skill cannot Evade"}}},name="totems_cannot_evade",stats={[1]="totems_cannot_evade"}},[186]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Trap lasts %1% seconds"}}},name="trap_duration",stats={[1]="trap_duration"}},[187]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Throwing Speed"}}},name="trap_throw_speed_incr",stats={[1]="trap_throwing_speed_+%"}},[188]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Throwing Speed"}}},name="mine_laying_speed_incr",stats={[1]="mine_laying_speed_+%"}},[189]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Mine lasts %1% seconds"}}},name="mine_duration",stats={[1]="mine_duration"}},[190]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased totem life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced totem life"}}},name="totem_life_incr",stats={[1]="totem_life_+%"}},[191]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Freezes enemies as though dealing %1%%% more Damage"}}},name="freeze_mine_damage_incr",stats={[1]="freeze_as_though_dealt_damage_+%"}},[192]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Every third successive strike Freezes enemies as though dealing %1%%% more Damage"}}},name="glacial_hammer_freeze_damage_incr",stats={[1]="glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%"}},[193]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Life per second"}}},name="life_regen_per_minute",stats={[1]="base_life_regeneration_rate_per_minute"}},[194]={lang={English={[1]={[1]={k="per_minute_to_per_second_2dp_if_required",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second"}}},name="life_regen_per_minute_percent",stats={[1]="life_regeneration_rate_per_minute_%"}},[195]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Regeneration rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Regeneration rate"}}},name="life_regen_incr",stats={[1]="life_regeneration_rate_+%"}},[196]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold Resistance"}}},name="cold_resist",stats={[1]="base_cold_damage_resistance_%"}},[197]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Second form has %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Second form has %1%%% reduced Critical Strike Chance"}}},name="ice_spear_crit_bonus",stats={[1]="ice_spear_second_form_critical_strike_chance_+%"}},[198]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Second form has %1$+d%% to Critical Strike Multiplier"}}},name="ice_spear_crit_multi",stats={[1]="ice_spear_second_form_critical_strike_multiplier_+"}},[199]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Second form has %1%%% more Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Second form has %1%%% less Projectile Speed"}}},name="ice_spear_projectile_speed_incr",stats={[1]="ice_spear_second_form_projectile_speed_+%_final"}},[200]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Blind enemies on hit"}}},name="chance_to_blind",stats={[1]="global_chance_to_blind_on_hit_%"}},[201]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blinding duration"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blinding duration"}}},name="blind_duration_incr",stats={[1]="blind_duration_+%"}},[202]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrates %1%%% Fire Resistance"}}},name="fire_penetration",stats={[1]="base_reduce_enemy_fire_resistance_%"}},[203]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrates %1%%% Cold Resistance"}}},name="cold_penetration",stats={[1]="base_reduce_enemy_cold_resistance_%"}},[204]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrates %1%%% Lightning Resistance"}}},name="lightning_penetration",stats={[1]="base_reduce_enemy_lightning_resistance_%"}},[205]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrates %1%%% Elemental Resistances"}}},name="elemental_penetration",stats={[1]="reduce_enemy_elemental_resistance_%"}},[206]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses your Life if no Skeletons in range"}}},name="skeletal_chains_target_self",stats={[1]="skeletal_chains_no_minions_targets_self"}},[207]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Damage with Hits and Ailments if using your Life"}}},name="skeletal_chains_damage",stats={[1]="skeletal_chains_no_minions_damage_+%_final"}},[208]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Radius if using your Life"}}},name="skeletal_chains_radius",stats={[1]="skeletal_chains_no_minions_radius_+"}},[209]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Chains %1% Time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Chains %1% Times"}}},name="chain_num",stats={[1]="virtual_number_of_chains"}},[210]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Beams Chain %1% Time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Beams Chain %1% Times"}}},name="beam_chain_num",stats={[1]="virtual_number_of_chains_for_beams"}},[211]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Split towards %1% additional targets"}}},name="split_num",stats={[1]="virtual_projectile_number_to_split"}},[212]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Projectiles Fork"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Fork %1% times"}}},name="fork",stats={[1]="virtual_number_of_forks_for_projectiles_final"}},[213]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Projectiles Return to you after hitting targets"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Projectiles Return to you at end of flight"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Projectiles Return to you"}}},name="return",stats={[1]="projectiles_return",[2]="projectiles_return_if_no_hit_object"}},[214]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Leeches %1% Life to you for each corpse Consumed"}}},name="corpse_consumption_life",stats={[1]="corpse_consumption_life_to_gain"}},[215]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]="#",[2]="#"}},text="Leeches %1% Mana to you for each corpse Consumed"}}},name="corpse_consumption_mana",stats={[1]="corpse_consumption_mana_to_gain"}},[216]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments for each stage"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits and Ailments for each stage"}}},name="flamethrower_damage_incr",stats={[1]="flamethrower_damage_+%_per_stage_final"}},[217]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Incinerate Damage for each stage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Incinerate Damage for each stage"}}},name="incinerate_damage_incr",stats={[1]="incinerate_damage_+%_per_stage"}},[218]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Hit Rate for each blade"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Hit Rate for each blade"}}},name="blade_vortex_rate_per_blade",stats={[1]="blade_vortex_hit_rate_+%_per_blade"}},[219]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage for each blade"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage for each blade"}}},name="blade_vortex_damage_per_blade",stats={[1]="blade_vortex_damage_+%_per_blade_final"}},[220]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Ailments for each blade"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Ailments for each blade"}}},name="blade_vortex_ailment_damage_per_blade",stats={[1]="blade_vortex_ailment_damage_+%_per_blade_final"}},[221]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Movement Speed"}}},name="cyclone_movement_speed_incr",stats={[1]="cyclone_movement_speed_+%_final"}},[222]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1% Mana drained per second"}}},name="mana_degen",stats={[1]="mana_degeneration_per_minute"}},[223]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Additional %1% Mana drained per second while moving"}}},name="ice_shield_moving_mana_degen",stats={[1]="ice_shield_moving_mana_degeneration_per_minute"}},[224]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Physical Damage taken from Hits"}}},name="phys_damage_taken_plus",stats={[1]="physical_damage_taken_+"}},[225]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Fire Damage taken from Hits"}}},name="fire_damage_taken_plus",stats={[1]="fire_damage_taken_+"}},[226]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Melee Strike Skills deal Splash Damage to surrounding targets"}}},name="melee_splash",stats={[1]="melee_splash"}},[227]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attack repeats %1% additional times"}}},name="mulitple_attacks",stats={[1]="attack_repeat_count"}},[228]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge on Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge on Critical Strike"}}},name="power_charge_on_crit_chance",stats={[1]="add_power_charge_on_critical_strike_%"}},[229]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Melee Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Melee Attack Speed"}}},name="multiple_attacks_speed",stats={[1]="support_multiple_attacks_melee_attack_speed_+%_final"}},[230]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems and Minions summoned by this Skill have %1$+d%% Fire Resistance"}}},name="summon_fire_resist",stats={[1]="summon_fire_resistance_+"}},[231]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems and Minions summoned by this Skill have %1$+d%% Cold Resistance"}}},name="summon_cold_resist",stats={[1]="summon_cold_resistance_+"}},[232]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems and Minions summoned by this Skill have %1$+d%% Lightning Resistance"}}},name="summon_lightning_resist",stats={[1]="summon_lightning_resistance_+"}},[233]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% to all Elemental Resistances"}}},name="minion_elemental_resist",stats={[1]="virtual_minion_elemental_resistance_%"}},[234]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to apply linked Curses on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Applies linked Curses on Hit"}}},name="apply_linked_curses_on_hit",stats={[1]="apply_linked_curses_on_hit_%"}},[235]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Area of Effect for each stage"}}},name="reave_area_incr",stats={[1]="reave_area_of_effect_+%_final_per_stage"}},[236]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=99}},text="%2%%% chance to gain an Endurance Charge when this Skill Stuns an Enemy with a Melee Hit"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=100,[2]="#"}},text="Gain an Endurance Charge when this Skill Stuns an Enemy with a Melee Hit"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Gain an Endurance Charge when this Skill Stuns an Enemy with a Melee Hit"}}},name="endurance_charge_on_stun",stats={[1]="gain_endurance_charge_on_melee_stun",[2]="gain_endurance_charge_on_melee_stun_%"}},[237]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies lose %1%%% Cold Resistance while Frozen"}}},name="freeze_mine_cold_resist_debuff",stats={[1]="freeze_mine_cold_resistance_+_while_frozen"}},[238]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger a linked Spell when you Crit an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger a linked Spell when you Crit an Enemy"}}},name="cast_on_crit",stats={[1]="cast_linked_spells_on_attack_crit_%"}},[239]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Cast a linked Spell on Melee Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cast a linked Spell on Melee Kill"}}},name="cast_on_melee_kill",stats={[1]="cast_linked_spells_on_melee_kill_%"}},[240]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="You cannot Cast this Spell directly"}}},name="triggered_cannot_cast",stats={[1]="spell_uncastable_if_triggerable",[2]="spell_only_castable_on_death"}},[241]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when Hit"}}},name="counterattack_on_hit",stats={[1]="melee_counterattack_trigger_on_hit_%"}},[242]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill when Critically Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when Critically Hit"}}},name="counterattack_when_crit",stats={[1]="attack_trigger_when_critically_hit_%"}},[243]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill when you Block"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when you Block"}}},name="counterattack_on_block",stats={[1]="melee_counterattack_trigger_on_block_%"}},[244]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot use this Attack directly"}}},name="triggered_cannot_attack",stats={[1]="attack_unusable_if_triggerable"}},[245]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can use Items requiring up to Level %1%"}}},name="item_level_req",stats={[1]="animate_item_maximum_level_requirement"}},[246]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Attack on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Attack on Kill"}}},name="attack_on_kill",stats={[1]="attack_trigger_on_kill_%"}},[247]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Attack"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Attack"}}},name="cast_on_attack",stats={[1]="cast_on_attack_use_%"}},[248]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Use a Skill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Use a Skill"}}},name="cast_on_skill_use",stats={[1]="cast_on_skill_use_%"}},[249]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell on Kill"}}},name="cast_on_kill",stats={[1]="chance_to_cast_on_kill_%"}},[250]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell on Kill"}}},name="cast_on_kill_target_self",stats={[1]="chance_to_cast_on_kill_%_target_self"}},[251]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Use a Skill Socketed in your Body Armour"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Use a Skill Socketed in your Body Armour"}}},name="cast_on_skill_use_from_chest",stats={[1]="trigger_on_skill_use_from_chest_%"}},[252]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Use a Skill while you have a Spirit Charge"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Use a Skill while you have a Spirit Charge"}}},name="cast_on_skill_use_spirit_charge",stats={[1]="trigger_on_skill_use_%_if_you_have_a_spirit_charge"}},[253]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you're Damaged by a Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you're Damaged by a Hit"}}},name="cast_when_damaged",stats={[1]="cast_on_any_damage_taken_%"}},[254]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you're Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you're Hit"}}},name="cast_when_hit",stats={[1]="cast_when_hit_%"}},[255]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger this Spell on Death"}}},name="cast_on_death",stats={[1]="cast_on_death_%"}},[256]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger this Spell when you Rampage"}}},name="cast_on_rampage",stats={[1]="chance_to_cast_on_rampage_tier_%"}},[257]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger this Spell when you are Stunned, or\nBlock a Stunning Hit"}}},name="cast_on_stunned",stats={[1]="cast_on_stunned_%"}},[258]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you gain Avian's Might or Avian's Flight"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you gain Avian's Might or Avian's Flight"}}},name="cast_on_avian_buff",stats={[1]="cast_on_gain_avians_flight_or_avians_might_%"}},[259]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Hit"}}},name="cast_on_hit",stats={[1]="cast_on_hit_%"}},[260]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Hit an Enemy while you are Cursed"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Hit an Enemy while you are Cursed"}}},name="cast_on_hit_if_cursed",stats={[1]="cast_on_hit_if_cursed_%"}},[261]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger this Spell when you lose Cat's Stealth"}}},name="cast_on_lose_cats_stealth",stats={[1]="cast_on_lose_cats_stealth"}},[262]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill when you Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when you Hit"}}},name="attack_on_hit",stats={[1]="attack_trigger_on_hit_%"}},[263]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill on Melee Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill on Melee Hit"}}},name="attack_on_melee_hit",stats={[1]="attack_trigger_on_melee_hit_%"}},[264]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="%1%%% chance to Trigger this Spell when you take a total of %2% Damage"}}},name="cast_on_damage_taken",stats={[1]="cast_on_damage_taken_%",[2]="cast_on_damage_taken_threshold"}},[265]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when one of your Traps is Triggered"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when one of your Traps is Triggered"}}},name="cast_when_trap_triggered",stats={[1]="chance_to_cast_when_your_trap_is_triggered_%"}},[266]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed"}}},name="attack_speed_more",stats={[1]="active_skill_attack_speed_+%_final"}},[267]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Spell Damage for each stage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Spell Damage for each stage"}}},name="charged_blast_damage_per_stack",stats={[1]="charged_blast_spell_damage_+%_final_per_stack"}},[268]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Ailments for each stage"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Ailments for each stage"}}},name="charged_blast_ailment_damage_per_stack",stats={[1]="flameblast_ailment_damage_+%_final_per_stack"}},[269]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Trigger a linked Spell every %1% seconds while Channelling"}}},name="cast_while_channelling",stats={[1]="cast_while_channelling_time_ms"}},[270]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Curse"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Curse"}}},name="curse_effect",stats={[1]="curse_effect_+%"}},[271]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Curse against Players"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Curse against Players"}}},name="curse_effect_vs_players",stats={[1]="curse_effect_+%_vs_players"}},[272]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Projectile Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Projectile Attack Speed"}}},name="support_projectile_attack_speed_incr",stats={[1]="support_projectile_attack_speed_+%_final"}},[273]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spell has %1%%% more Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spell has %1%%% less Cast Speed"}}},name="totem_cast_speed",stats={[1]="support_spell_totem_cast_speed_+%_final"}},[274]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed"}}},name="totem_attack_speed",stats={[1]="support_attack_totem_attack_speed_+%_final"}},[275]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spawns %1% corpses"}}},name="desecrate_num_corpses",stats={[1]="desecrate_number_of_corpses_to_create"}},[276]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spawns corpses up to Level %1%"}}},name="desecrate_corpse_level",stats={[1]="desecrate_corpse_level"}},[277]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spawns corpses with Level %1%"}}},name="unearth_corpse_level",stats={[1]="unearth_corpse_level"}},[278]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Causes smaller novas up to %1% times on enemies hit"}}},name="ice_nova_repeat_count",stats={[1]="ice_nova_number_of_repeats"}},[279]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect each repeat"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect each repeat"}}},name="ice_nova_repeat_size",stats={[1]="ice_nova_radius_+%_per_repeat"}},[280]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Beams deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Beams deal %1%%% less Damage"}}},name="vaal_lightning_strike_beam_damage",stats={[1]="vaal_lightning_strike_beam_damage_+%_final"}},[281]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Can't be Evaded"}}},name="always_hit",stats={[1]="global_always_hit"}},[282]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemy Block Chance reduced by %1%%% against this Skill"}}},name="reduce_block",stats={[1]="global_reduce_enemy_block_%"}},[283]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies have %1%%% reduced chance to Dodge Hits from this Skill"}}},name="reduce_dodge",stats={[1]="reduce_enemy_dodge_%"}},[284]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits against Burning enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits against Burning enemies"}}},name="flame_whip_damage_incr",stats={[1]="flame_whip_damage_+%_final_vs_burning_enemies"}},[285]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Burning Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Burning Enemies"}}},name="damage_vs_burning",stats={[1]="damage_+%_vs_burning_enemies"}},[286]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Freeze"}}},name="never_freeze",stats={[1]="never_freeze"}},[287]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Ignite"}}},name="never_ignite",stats={[1]="never_ignite"}},[288]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage cannot be Reflected"}}},name="no_reflect",stats={[1]="damage_cannot_be_reflected"}},[289]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles leave Shocking Ground"}}},name="lightning_trap_shocking_ground",stats={[1]="lightning_trap_projectiles_leave_shocking_ground"}},[290]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of your Physical Damage as Extra Fire Damage"}}},name="physical_damage_to_add_as_fire",stats={[1]="physical_damage_%_to_add_as_fire"}},[291]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of your Physical Damage as Extra Chaos Damage"}}},name="physical_damage_to_add_as_chaos",stats={[1]="physical_damage_%_to_add_as_chaos"}},[292]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage"}}},name="fire_damage_incr",stats={[1]="fire_damage_+%"}},[293]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage"}}},name="cold_damage_incr",stats={[1]="cold_damage_+%"}},[294]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells"}}},name="spell_added_cold",stats={[1]="spell_minimum_added_cold_damage",[2]="spell_maximum_added_cold_damage"}},[295]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Burning Damage"}}},name="herald_of_ash_burning_damage",stats={[1]="herald_of_ash_burning_damage_+%_final"}},[296]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage"}}},name="herald_of_ash_fire_damage_incr",stats={[1]="herald_of_ash_fire_damage_+%"}},[297]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Spell Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Spell Fire Damage"}}},name="herald_of_ash_spell_fire_damage_incr",stats={[1]="herald_of_ash_spell_fire_damage_+%_final"}},[298]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage"}}},name="herald_of_ice_cold_damage_incr",stats={[1]="herald_of_ice_cold_damage_+%"}},[299]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage"}}},name="herald_of_thunder_lightning_damage_incr",stats={[1]="herald_of_thunder_lightning_damage_+%"}},[300]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells"}}},name="spell_added_lightning",stats={[1]="spell_minimum_added_lightning_damage",[2]="spell_maximum_added_lightning_damage"}},[301]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamageTypes"},limit={[1]={[1]="#",[2]="#"}},text="Only Deals Damage of the chosen Element\nDeals no Damage of other Damage Types"}}},name="elemental_hit_damage_turnoff",stats={[1]="elemental_hit_no_physical_chaos_damage"}},[302]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Explosion deals %1%%% more Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Explosion deals %1%%% less Damage with Hits and Ailments"}}},name="static_strike_damage",stats={[1]="static_strike_explosion_damage_+%_final"}},[303]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Arrow Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Arrow Speed"}}},name="arrow_speed",stats={[1]="base_arrow_speed_+%"}},[304]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Creates %1% explosions"}}},name="cluster_burst_spawn_amount",stats={[1]="cluster_burst_spawn_amount"}},[305]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed per Nearby Enemy"},[2]={limit={[1]={[1]=-300,[2]=-300}},text="Locks enemy in place"},[3]={[1]={k="divide_by_one_hundred_and_negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed per Nearby Enemy"}}},name="movement_speed_incr_per_enemy",stats={[1]="abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies"}},[306]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ring deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ring deals %1%%% less Damage"}}},name="newshocknova_first_ring_damage",stats={[1]="newshocknova_first_ring_damage_+%_final"}},[307]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Explosion deals Chaos Damage equal to %1%%% of the Monster's maximum Life"}}},name="abyssal_cry_max_life_as_chaos_on_death",stats={[1]="abyssal_cry_%_max_life_as_chaos_on_death"}},[308]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Fortify on Melee hit"},[2]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=100,[2]="#"}},text="Grants Fortify on Melee Hit"}}},name="chance_to_fortify_on_melee_hit",stats={[1]="chance_to_fortify_on_melee_hit_+%"}},[309]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fortify duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fortify duration"}}},name="fortify_duration_incr",stats={[1]="fortify_duration_+%"}},[310]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage Converted to Cold Damage"}}},name="base_physical_damage_to_convert_to_cold",stats={[1]="base_physical_damage_%_to_convert_to_cold"}},[311]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Second Stage deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Second Stage deals %1%%% less Damage"}}},name="ice_crash_second_hit_damage",stats={[1]="ice_crash_second_hit_damage_+%_final"}},[312]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Third Stage deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Third Stage deals %1%%% less Damage"}}},name="ice_crash_third_hit_damage",stats={[1]="ice_crash_third_hit_damage_+%_final"}},[313]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems Grant %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems Grant %1%%% reduced Damage"}}},name="golem_grants_damage",stats={[1]="fire_golem_grants_damage_+%"}},[314]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems Grant %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems Grant %1%%% reduced Critical Strike Chance"}}},name="golem_grants_crit_chance",stats={[1]="ice_golem_grants_critical_strike_chance_+%"}},[315]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems Grant %1%%% increased Accuracy"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems Grant %1%%% reduced Accuracy"}}},name="golem_grants_accuracy",stats={[1]="ice_golem_grants_accuracy_+%"}},[316]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Golems grant %1%%% additional Physical Damage Reduction"}}},name="golem_grants_phys_reduction",stats={[1]="chaos_golem_grants_additional_physical_damage_reduction_%"}},[317]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Golems grant %1% Life Regenerated per second"}}},name="golem_grants_life_regen",stats={[1]="stone_golem_grants_base_life_regeneration_rate_per_minute"}},[318]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems grant %1%%% increased Attack and Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems grant %1%%% reduced Attack and Cast Speed"}}},name="golem_grants_attack_and_cast_speed",stats={[1]="lightning_golem_grants_attack_and_cast_speed_+%"}},[319]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},[2]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]="#"}},text="Chilled Ground lasts %1% seconds"}}},name="ice_storm_ground_ice",stats={[1]="virtual_firestorm_drop_chilled_ground_duration_ms"}},[320]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per one hundred nearby Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per one hundred nearby Enemies"}}},name="inspiring_cry_damage",stats={[1]="inspiring_cry_damage_+%_per_one_hundred_nearby_enemies"}},[321]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed per one hundred nearby Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed per one hundred nearby Enemies"}}},name="intimidating_cry_attack_speed",stats={[1]="intimidating_cry_attack_speed_+%_per_100_enemies"}},[322]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per second"}}},stats={[1]="base_mana_regeneration_rate_per_minute"}},[323]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage"}}},name="damage_incr",stats={[1]="damage_+%"}},[324]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments per Repeat"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits and Ailments per Repeat"}}},name="fire_nova_damage",stats={[1]="fire_nova_damage_+%_per_repeat_final"}},[325]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Melee Physical Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Melee Physical Damage against Bleeding Enemies"}}},name="bloodlust_damage",stats={[1]="support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"}},[326]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage against Bleeding Enemies"}}},name="bloodlust_damage_incr",stats={[1]="melee_damage_vs_bleeding_enemies_+%"}},[327]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Totem Placement speed"}}},name="totem_summon_speed_incr",stats={[1]="summon_totem_cast_speed_+%"}},[328]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% more Melee Physical Damage on Melee hit"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies grant %1%%% less Melee Physical Damage on Melee hit"}}},name="newpunishment_melee_damage",stats={[1]="newpunishment_melee_damage_+%_final"}},[329]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% increased Attack Speed on Melee hit"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies grant %1%%% reduced Attack Speed on Melee hit"}}},name="newpunishment_attack_speed",stats={[1]="newpunishment_attack_speed_+%"}},[330]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Buff is applied for a Base Duration of %1% seconds"}}},name="newpunishment_applied_buff_duration",stats={[1]="newpunishment_applied_buff_duration_ms"}},[331]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Physical Damage taken from Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Physical Damage taken from Hits"}}},name="arctic_armour_phys_damage",stats={[1]="new_arctic_armour_physical_damage_taken_when_hit_+%_final"}},[332]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Fire Damage taken from Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Fire Damage taken from Hits"}}},name="arctic_armour_fire_damage",stats={[1]="new_arctic_armour_fire_damage_taken_when_hit_+%_final"}},[333]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Freeze, Shock and Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Always Freeze, Shock and Ignite"}}},name="elemental_status_chance",stats={[1]="chance_to_freeze_shock_ignite_%"}},[334]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="%1$d%% chance to Freeze Enemies which are Chilled"}}},name="freeze_chance_vs_chilled",stats={[1]="additional_chance_to_freeze_chilled_enemies_%"}},[335]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage Converted to Fire, Cold or Lightning Damage"}}},name="wild_strike_damage_convert",stats={[1]="elemental_strike_physical_damage_%_to_convert"}},[336]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Weapon Range"}}},name="melee_weapon_range",stats={[1]="melee_weapon_range_+"}},[337]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee range"}}},name="melee_range",stats={[1]="melee_range_+"}},[338]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments against Chilled Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits and Ailments against Chilled Enemies"}}},name="hypothermia_damage",stats={[1]="support_hypothermia_damage_+%_vs_chilled_enemies_final"}},[339]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]="#",[2]="#"}},text="Grants Phasing"}}},name="phasing",stats={[1]="phase_through_objects"}},[340]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextVisibility"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Visibility to Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextVisibility"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Visibility to Enemies"}}},name="enemy_aggro_decr",stats={[1]="enemy_aggro_radius_+%"}},[341]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Aftershock deals %1%%% more Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Aftershock deals %1%%% less Damage with Hits and Ailments"}}},name="earthquake_aftershock_damage",stats={[1]="quake_slam_fully_charged_explosion_damage_+%_final"}},[342]={lang={English={[1]={[1]={k="divide_by_one_hundred_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Debuff Damage as Life"}}},name="siphon_life_gain",stats={[1]="siphon_life_leech_from_damage_permyriad"}},[343]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% active spinning blades"}}},name="max_spinning_blades",stats={[1]="maximum_number_of_spinning_blades"}},[344]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage taken"}}},stats={[1]="chaos_damage_taken_+%"}},[345]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Always Poison on Hit"}}},name="poison_chance",stats={[1]="base_chance_to_poison_on_hit_%"}},[346]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Grants %1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Grants 100%% chance to Poison on Hit"}}},name="grants_poison_chance",stats={[1]="skill_buff_grants_chance_to_poison_%"}},[347]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage over Time"}}},name="damage_over_time_incr",stats={[1]="damage_over_time_+%"}},[348]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage per Volley"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage per Volley"}}},name="bladefall_damage_per_volley",stats={[1]="bladefall_damage_per_stage_+%_final"}},[349]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Poisons Enemies on Hit"}}},name="poison_on_hit",stats={[1]="global_poison_on_hit"}},[350]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Poison"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Poison"}}},name="poison_damage",stats={[1]="base_poison_damage_+%"}},[351]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poison Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poison Duration"}}},name="poison_duration",stats={[1]="base_poison_duration_+%"}},[352]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Melee Splash Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Melee Splash Area of Effect"}}},name="melee_splash_radius",stats={[1]="melee_splash_area_of_effect_+%_final"}},[353]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="First Hit deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="First Hit deals %1%%% less Damage"}}},name="cyclone_first_hit_damage",stats={[1]="cyclone_first_hit_damage_+%_final"}},[354]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shockwaves deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shockwaves deal %1%%% less Damage"}}},name="sunder_explosion_damage",stats={[1]="shockwave_slam_explosion_damage_+%_final"}},[355]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance"}}},name="additional_crit",stats={[1]="additional_base_critical_strike_chance"}},[356]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ring deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ring deals %1%%% reduced Damage"}}},name="shock_nova_ring_damage",stats={[1]="shock_nova_ring_damage_+%"}},[357]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Buff Effect"}}},name="skill_buff_effect",stats={[1]="skill_buff_effect_+%"}},[358]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Melee Skills deal %1%%% more Area Damage while in Blood Stance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Melee Skills deal %1%%% less Area Damage while in Blood Stance"}}},name="blood_stance_melee_area_damage",stats={[1]="blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance"}},[359]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Melee Skills have %1%%% more Area of Effect while in Blood Stance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Melee Skills have %1%%% less Area of Effect while in Blood Stance"}}},name="blood_stance_melee_area_of_effect",stats={[1]="blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance"}},[360]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Melee Skills have %1%%% more Area of Effect while in Sand Stance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Melee Skills have %1%%% less Area of Effect while in Sand Stance"}}},name="sand_stance_melee_area_of_effect",stats={[1]="blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance"}},[361]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Melee Skills deal %1%%% more Area Damage while in Sand Stance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Melee Skills deal %1%%% less Area Damage while in Sand Stance"}}},name="sand_stance_melee_area_damage",stats={[1]="blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance"}},[362]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Poison while Incubating and not at Maximum Plague Value"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Poison while Incubating and not at Maximum Plague Value"}}},name="plague_bearer_poison_damage_more",stats={[1]="corrosive_shroud_poison_damage_+%_final_while_accumulating_poison"}},[363]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextExpectedPoisonDamage"},limit={[1]={[1]="#",[2]="#"}},text="When you inflict Poison while Incubating, adds %1%%% of the Expected Poison\nDamage to Plague Value"}}},name="plague_bearer_stored_poison_percent",stats={[1]="corrosive_shroud_gains_%_of_damage_from_inflicted_poisons"}},[364]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum Plague Value is %1%"}}},name="plague_bearer_maximum",stats={[1]="corrosive_shroud_maximum_stored_poison_damage"}},[365]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="While Infecting, deals Chaos Damage per second equal to %1%%% of the Plague Value when Infecting began, and loses Plague Value at the same rate"}}},name="plague_bearer_infection_percent",stats={[1]="corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"}},[366]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants %1$+d%% to Damage over Time Multiplier for Poison while Infecting"}}},name="plague_bearer_bonus_poison_multiplier_plus",stats={[1]="corrosive_shroud_poison_dot_multiplier_+_while_aura_active"}},[367]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles deal %1%%% less Damage"}}},name="active_skill_projectile_damage_incr",stats={[1]="active_skill_projectile_damage_+%_final"}},[368]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Returning Projectiles deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Returning Projectiles deal %1%%% less Damage"}}},name="active_skill_returning_projectile_damage_incr",stats={[1]="active_skill_returning_projectile_damage_+%_final"}},[369]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Deals up to %1%%% more Damage to closer targets"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Deals up to %1%%% less Damage to closer targets"}}},name="ground_slam_close_damage",stats={[1]="groundslam_damage_to_close_targets_+%_final"}},[370]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Returning Projectiles deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Returning Projectiles deal %1%%% less Damage"}}},name="venom_gyre_whirling_projectile_damage",stats={[1]="snapping_adder_released_projectile_damage_+%_final"}},[371]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Returning Projectiles Pierce all Targets"}}},name="returning_pierce",stats={[1]="returning_projectiles_always_pierce"}},[372]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Over Time caused by Projectiles deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Damage Over Time caused by Projectiles deals %1%%% less Damage"}}},name="active_skill_projectile_dot_incr",stats={[1]="active_skill_damage_over_time_from_projectile_hits_+%_final"}},[373]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain Arcane Surge after Spending a total of %1% Mana with this Spell"}}},name="support_arcane_surge_chance",stats={[1]="support_arcane_surge_gain_buff_on_mana_use_threshold"}},[374]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=3},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Arcane Surge grants %1%%% more Spell Damage\nArcane Surge grants %2%%% increased Cast Speed\nArcane Surge grants %3%%% of Mana Regenerated per second"}}},name="support_arcane_surge_damage",stats={[1]="support_arcane_surge_spell_damage_+%_final",[2]="support_arcane_surge_cast_speed_+%",[3]="support_arcane_surge_mana_regeneration_rate_per_minute_%"}},[375]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Arcane Surge lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Arcane Surge lasts %1% seconds"}}},name="support_arcane_surge_duration",stats={[1]="support_arcane_surge_duration_ms"}},[376]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain Innervation on Killing a Shocked Enemy"}}},name="support_innervate_buff",stats={[1]="support_innervate_gain_buff_on_killing_shocked_enemy"}},[377]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Innervation grants %1% to %2% Lightning Damage"}}},name="support_innervate_damage",stats={[1]="support_innervate_minimum_added_lightning_damage",[2]="support_innervate_maximum_added_lightning_damage"}},[378]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Innervation lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Innervation lasts %1% seconds"}}},name="support_innervate_buff_duration",stats={[1]="support_innervate_buff_duration_ms"}},[379]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Every third Attack deals a Ruthless Blow with Melee Hits"}}},name="support_ruthless_count",stats={[1]="support_ruthless_big_hit_max_count"}},[380]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ruthless Blows deal %1%%% more Melee Damage"}}},name="support_ruthless_damage",stats={[1]="support_ruthless_big_hit_damage_+%_final"}},[381]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ruthless Blows deal %1%%% more Damage with Bleeding caused by Melee Hits"}}},name="support_ruthless_bleeding_damage",stats={[1]="support_ruthless_blow_bleeding_damage_from_melee_hits_+%_final"}},[382]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Ruthless Blows have a base Stun Duration of %1% seconds"}}},name="support_ruthless_stun",stats={[1]="support_ruthless_big_hit_stun_base_duration_override_ms"}},[383]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="At least %1% Rage required to start Berserking"}}},name="berserk_min_rage",stats={[1]="berserk_minimum_rage"}},[384]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Attacks"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Attacks"}}},name="berserk_attack_damage",stats={[1]="berserk_attack_damage_+%_final"}},[385]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed"}}},name="berserk_attack_speed",stats={[1]="berserk_attack_speed_+%_final"}},[386]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Movement Speed"}}},name="berserk_move_speed",stats={[1]="berserk_movement_speed_+%_final"}},[387]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage taken"}}},name="berserk_damage_taken",stats={[1]="berserk_base_damage_taken_+%_final"}},[388]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]=1,[2]="#"}},text="Lose %1% Rage per second"}}},name="berserk_rage_loss_per_second",stats={[1]="virtual_berserk_hundred_times_rage_loss_per_second"}},[389]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each second, %1%%% more Rage loss Rate"}}},name="berserk_increased_rage_loss_per_second",stats={[1]="berserk_rage_loss_+%_per_second"}},[390]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area Damage"}}},stats={[1]="active_skill_area_damage_+%_final"}},[391]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area of Effect when Cast on Frostbolt"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area of Effect when Cast on Frostbolt"}}},name="active_skill_if_used_through_frostbolt_area",stats={[1]="active_skill_area_of_effect_+%_final_when_cast_on_frostbolt"}},[392]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Area of Effect length"}}},name="area_length_add",stats={[1]="active_skill_base_area_length_+"}},[393]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chills Enemies as though dealing %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Chills Enemies as though dealing %1%%% less Damage"}}},name="chill_with_more_damage",stats={[1]="active_skill_chill_as_though_damage_+%_final"}},[394]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage when Cast on Frostbolt"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage when Cast on Frostbolt"}}},name="active_skill_if_used_through_frostbolt_damage",stats={[1]="active_skill_if_used_through_frostbolt_damage_+%_final"}},[395]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Ignite"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Ignite"}}},name="ignite_damage_final",stats={[1]="active_skill_ignite_damage_+%_final"}},[396]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Poison Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Poison Duration"}}},name="poison_duration_final",stats={[1]="active_skill_poison_duration_+%_final"}},[397]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shocks Enemies as though dealing %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shocks Enemies as though dealing %1%%% less Damage"}}},name="shock_with_more_damage",stats={[1]="active_skill_shock_as_though_damage_+%_final"}},[398]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to grant an Endurance Charge on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Grants an Endurance Charge on Hit"}}},name="endurance_on_hit",stats={[1]="add_endurance_charge_on_skill_hit_%"}},[399]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Frenzy Charge on Hit"}}},name="frenzy_on_hit_chance",stats={[1]="add_frenzy_charge_on_skill_hit_%"}},[400]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Chain an additional time"}}},name="additional_chain_chance",stats={[1]="additional_chain_chance_%"}},[401]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance while affected by Elusive"}}},name="additional_crit_while_elusive",stats={[1]="additional_critical_strike_chance_permyriad_while_affected_by_elusive"}},[402]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Arrow Speed also apply to\nthis Skill's Area of Effect"}}},name="arrow_speed_modifiers_apply_to_area",stats={[1]="additive_arrow_speed_modifiers_apply_to_area_of_effect"}},[403]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=0,[2]=0}},text="Fire Damage from Hits is taken from the Aegis before your Life or Energy Shield\nAegis can take %1% Fire Damage"},[2]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]=1}},text="Cold Damage from Hits is taken from the Aegis before your Life or Energy Shield\nAegis can take %1% Cold Damage"},[3]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=2,[2]=2}},text="Elemental Damage from Hits is taken from the Aegis before your Life or Energy Shield\nAegis can take %1% Elemental Damage"},[4]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=3,[2]=3}},text="Lightning Damage from Hits is taken from the Aegis before your Life or Energy Shield\nAegis can take %1% Lightning Damage"}}},name="aegis_value",stats={[1]="aegis_unique_shield_max_value",[2]="active_skill_display_aegis_variation"}},[404]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damaging Hits always Stun Enemies that are on Full Life"}}},name="always_stun_full_life",stats={[1]="always_stun_enemies_that_are_on_full_life"}},[405]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Curse is applied by Bane"}}},name="apply_with_dark_ritual",stats={[1]="apply_linked_curses_with_dark_ritual"}},[406]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Overpowered applies -%1%%% chance to Block Attack and Spell Damage"}}},name="support_overpowered_on_enemy_block",stats={[1]="apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"}},[407]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage for each remaining Chain"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage for each remaining Chain"}}},name="arc_damage_per_remaining_chain",stats={[1]="arc_damage_+%_final_for_each_remaining_chain"}},[408]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage for each time beam has Chained"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage for each time beam has Chained"}}},name="arc_damage_per_chain",stats={[1]="arc_damage_+%_final_per_chain"}},[409]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Chill Enemy for %1% seconds when Hit, reducing their Action Speed by 30%%"}}},name="arctic_armour_chill_when_hit_duration",stats={[1]="arctic_armour_chill_when_hit_duration"}},[410]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% Chilling Area"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Chilling Areas"}}},name="actic_breath_areas",stats={[1]="arctic_breath_maximum_number_of_skulls_allowed"}},[411]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per Stage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per Stage"}}},name="frost_fury_aoe_per_stage",stats={[1]="area_of_effect_+%_per_frost_fury_stage"}},[412]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect when Cast on Frostbolt"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect when Cast on Frostbolt"}}},name="area_of_effect_incr_when_cast_on_frostbolt",stats={[1]="area_of_effect_+%_when_cast_on_frostbolt"}},[413]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage"}}},stats={[1]="attack_damage_+%"}},[414]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Enemies are Blinded while in Sand Stance\nYou take %1%%% more Damage from Attacks from Enemies that aren't nearby while in Sand Stance\nNearby Enemies are Maimed while in Blood Stance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nearby Enemies are Blinded while in Sand Stance\nYou take %1%%% less Damage from Attacks from Enemies that aren't nearby while in Sand Stance\nNearby Enemies are Maimed while in Blood Stance"}}},name="sand_armour_damage_taken",stats={[1]="attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour"}},[415]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Mana"}}},name="mana_leech_from_any",stats={[1]="attack_skill_mana_leech_from_any_damage_permyriad"}},[416]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill when you kill a Bleeding Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when you kill a Bleeding Enemy"}}},name="attack_on_kill_bleeding_enemy",stats={[1]="attack_trigger_on_killing_bleeding_enemy_%"}},[417]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Impale Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Impale Enemies on Hit"}}},name="attack_impale_chance",stats={[1]="attacks_impale_on_hit_%_chance"}},[418]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid All Damage from Hits"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Avoid All Damage from Hits"}}},name="avoid_damage_chance",stats={[1]="avoid_damage_%"}},[419]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Aura grants %1%%% chance to Shock"}}},name="skill_grants_shock_chance",stats={[1]="base_chance_to_shock_%_from_skill"}},[420]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cooldown Recovery Speed"}}},name="cooldown_speed_incr",stats={[1]="base_cooldown_speed_+%"}},[421]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken"}}},name="damage_taken_incr",stats={[1]="base_damage_taken_+%"}},[422]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deals no Chaos Damage"}}},name="deal_no_chaos",stats={[1]="base_deal_no_chaos_damage"}},[423]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Energy Shield"}}},name="spell_es_leech",stats={[1]="base_energy_shield_leech_from_spell_damage_permyriad"}},[424]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum 1 Summoned Phantasm"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Phantasms"}}},name="ghost_limit",stats={[1]="number_of_support_ghosts_allowed"}},[425]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for each blade"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for each blade"}}},name="blade_vortex_crit_chance_per_blade",stats={[1]="blade_vortex_critical_strike_chance_+%_per_blade"}},[426]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Hits Enemies every %1% Seconds"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Never Hits Enemies"}}},name="blade_vortex_hit_rate",stats={[1]="blade_vortex_hit_rate_ms"}},[427]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Volley"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Volley"}}},name="bladefall_crit_chance_per_stage",stats={[1]="bladefall_critical_strike_chance_+%_per_stage"}},[428]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed while you're in a Blood Bladestorm"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed while you're in a Blood Bladestorm"}}},name="skill_attack_speed_in_bloodstorm",stats={[1]="bladestorm_attack_speed_+%_final_while_in_bloodstorm"}},[429]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Maximum of %1% Bladestorms at a time"}}},name="bladestorm_limit",stats={[1]="bladestorm_maximum_number_of_storms_allowed"}},[430]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Sand Bladestorms grant %1%%% increased Movement Speed to you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Sand Bladestorms grant %1%%% reduced Movement Speed to you"}}},name="sandstorm_grants_movement_speed",stats={[1]="bladestorm_movement_speed_+%_while_in_sandstorm"}},[431]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Bladestorm deals %1%%% more Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Bladestorm deals %1%%% less Damage with Hits and Ailments"}}},name="bladestorm_damage_incr",stats={[1]="bladestorm_storm_damage_+%_final"}},[432]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="%1%%% chance to cause Bleeding"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Causes Bleeding"},[3]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0}},text="Causes Bleeding"},[4]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Cannot cause Bleeding"}}},name="bleeding_chance",stats={[1]="bleed_on_hit_with_attacks_%",[2]="global_bleed_on_hit",[3]="cannot_cause_bleeding"}},[433]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Bleeding"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Bleeding"}}},name="bleeding_damage_incr",stats={[1]="bleeding_damage_+%"}},[434]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Creates %1% Spikes"}}},name="blood_spears_spear_count",stats={[1]="blood_spears_base_number_of_spears"}},[435]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Golems deal %1%%% more Damage per Non-Golem Minion near them, up to %2%%%"}}},name="bone_golem_damage_per_nearby_non_golem_minion",stats={[1]="bone_golem_damage_+%_final_per_non_golem_minion_nearby",[2]="bone_golem_damage_per_non_golem_minion_nearby_maximum_%"}},[436]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Golems grant %1% to %2% additional Physical Damage for Non-Golem Minions"}}},name="golem_grants_minion_added_physical",stats={[1]="bone_golem_grants_minion_minimum_added_physical_damage",[2]="bone_golem_grants_minion_maximum_added_physical_damage"}},[437]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill cannot Knock Enemies Back"}}},name="cannot_knockback",stats={[1]="cannot_knockback"}},[438]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Crit an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Crit an Enemy"}}},name="cast_this_spell_on_crit",stats={[1]="cast_on_crit_%"}},[439]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Spell is Triggered when Equipped"}}},name="cast_on_equip",stats={[1]="cast_on_gain_skill"}},[440]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+1 Radius per %1% Rage"}}},name="chain_strike_radius",stats={[1]="chain_strike_cone_radius_+_per_x_rage"}},[441]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Rage if this Skill Hits any Enemies"}}},name="chain_strike_rage",stats={[1]="chain_strike_gain_x_rage_if_attack_hits"}},[442]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},[2]={k="reminderstring",v="ReminderTextBloodStanceDefault"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to cause Bleeding while in Blood Stance"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},[2]={k="reminderstring",v="ReminderTextBloodStanceDefault"},limit={[1]={[1]=100,[2]="#"}},text="Causes Bleeding while in Blood Stance"}}},name="blood_stance_bleeding_chance",stats={[1]="chance_to_bleed_on_hit_%_chance_in_blood_stance"}},[443]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to deal Double Damage"}}},name="double_damage_chance",stats={[1]="chance_to_deal_double_damage_%"}},[444]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to deal Double Damage to Bleeding Enemies"}}},name="double_damage_chance_vs_bleed",stats={[1]="chance_to_deal_double_damage_%_vs_bleeding_enemies"}},[445]={lang={English={[1]={limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="%1%%% chance to gain a Frenzy Charge when an Enemy Dies while in this Skill's Area"},[2]={limit={[1]={[1]=1,[2]=99},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0}},text="%1%%% chance to gain a Frenzy Charge when an Enemy Dies while in this Skill's Area\nEvery second, gain a Frenzy Charge if an Enemy is in this Skill's Area"},[3]={limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Gain a Frenzy Charge when an Enemy Dies while in this Skill's Area"},[4]={limit={[1]={[1]=100,[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0}},text="Gain a Frenzy Charge when an Enemy Dies while in this Skill's Area\nEvery second, gain a Frenzy Charge if an Enemy is in this Skill's Area"},[5]={limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0},[3]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when an Enemy Dies while in this Skill's Area"},[6]={limit={[1]={[1]=1,[2]=99},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when an Enemy Dies while in this Skill's Area\nEvery second, gain a Power Charge if an Enemy is in this Skill's Area"},[7]={limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]="#",[2]="#"}},text="Gain a Power Charge when an Enemy Dies while in this Skill's Area"},[8]={limit={[1]={[1]=100,[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Gain a Power Charge when an Enemy Dies while in this Skill's Area\nEvery second, gain a Power Charge if an Enemy is in Skill's Area"}}},name="cold_snap_frenzy_chance",stats={[1]="chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%",[2]="vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura",[3]="active_skill_cooldown_bypass_type_override_to_power_charge"}},[446]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge when Projectile Hits a Rare or Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge when Projectile Hits a Rare or Unique Enemy"}}},name="power_charge_vs_rare_or_unique",stats={[1]="chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"}},[447]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Curse has %1%%% chance to apply to Hexproof Enemies"}}},name="ignore_hexproof_chance",stats={[1]="chance_to_ignore_hexproof_%"}},[448]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Summon a Phantasm when this Skill Hits a Rare or Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon a Phantasm when this Skill Hits a Rare or Unique Enemy"}}},name="ghost_rare_chance",stats={[1]="chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"}},[449]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Summon a Phantasm when this Skill deals a Killing Blow"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon a Phantasm when this Skill deals a Killing Blow"}}},name="ghost_chance",stats={[1]="chance_to_summon_support_ghost_on_killing_blow_%"}},[450]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill when your Animated Guardian Kills an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when your Animated Guardian Kills an Enemy"}}},name="trigger_on_animate_guardian_kill",stats={[1]="chance_to_trigger_on_animate_guardian_kill_%"}},[451]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill when an Animated Weapon Kills an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when an Animated Weapon Kills an Enemy"}}},name="trigger_on_animate_weapon_kill",stats={[1]="chance_to_trigger_on_animate_weapon_kill_%"}},[452]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments for each stage"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits and Ailments for each stage"}}},name="charged_attack_damage_stages",stats={[1]="charged_attack_damage_per_stack_+%_final"}},[453]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% more Damage while Channelling if Illusion has finished moving"}}},name="charged_dash_damage_when_stopped_moving",stats={[1]="charged_dash_channelling_damage_at_full_stacks_+%_final"}},[454]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Final wave deals %1%%% of Damage per stage"}}},name="charged_dash_final_wave_damage_per_stage",stats={[1]="charged_dash_damage_+%_final_per_stack"}},[455]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Illusion moves at %1%%% of your Movement Speed"}}},name="charged_dash_built_in_move_speed",stats={[1]="charged_dash_skill_inherent_movement_speed_+%_final"}},[456]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]="#"}},text="Chilled Ground from this Skill has a base effect of %1%%%"}}},name="chilled_ground_magnitude_override",stats={[1]="chilled_ground_base_magnitude_override"}},[457]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chilling Area has %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Chilling Area has %1%%% reduced Movement Speed"}}},name="chilling_area_movement_velocity",stats={[1]="chilling_area_movement_velocity_+%"}},[458]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cleave has +1 to Radius per Nearby Enemy, up to +10"}}},name="cleave_radius_per_enemy",stats={[1]="cleave_+1_base_radius_per_nearby_enemy_up_to_10"}},[459]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Consecrated Ground grants Immunity to Curses to you and Allies"}}},name="consecrated_ground_immune_to_curses",stats={[1]="consecrated_ground_immune_to_curses"}},[460]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Maximum of %1% Geysers at a time"}}},name="cremation_max_geysers",stats={[1]="corpse_erruption_maximum_number_of_geyers"}},[461]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area of Effect if Consuming a corpse"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area of Effect if Consuming a corpse"}}},name="bodyswap_corpse_area_incr",stats={[1]="corpse_warp_area_of_effect_+%_final_when_consuming_corpse"}},[462]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text=" Slipstreams grant %1%%% increased Action Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Slipstreams grant %1%%% reduced Action Speed"}}},name="slipstream_action_speed",stats={[1]="created_slipstream_action_speed_+%"}},[463]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Shocked Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Shocked Enemies"}}},name="crit_chance_vs_shocked_enemies",stats={[1]="critical_strike_chance_+%_vs_shocked_enemies"}},[464]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Poison from Critical Strikes"}}},name="poison_crit_multi",stats={[1]="critical_poison_dot_multiplier_+"}},[465]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Power Charge"}}},name="crit_chance_per_power_charge",stats={[1]="critical_strike_chance_+%_per_power_charge"}},[466]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Inspiration Charge"}}},name="crit_chance_per_righteous_charge",stats={[1]="critical_strike_chance_+%_per_righteous_charge"}},[467]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for each blade"}}},name="crit_multi_per_blade",stats={[1]="critical_strike_multiplier_+_per_blade"}},[468]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier per Power Charge"}}},name="crit_multi_per_power_charge",stats={[1]="critical_strike_multiplier_+_per_power_charge"}},[469]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gains 1 Stage every %1% seconds while Channelling"}}},name="cyclone_stage_gain_time",stats={[1]="cyclone_gain_stage_every_x_ms_while_channelling"}},[470]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Stages"}}},name="cyclone_max_stages",stats={[1]="cyclone_max_number_of_stages"}},[471]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to radius per Stage"}}},name="cyclone_range_per_stage",stats={[1]="cyclone_melee_weapon_range_+_per_stage"}},[472]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Lose 1 Stage every %1% seconds while not Channelling"}}},name="cyclone_stage_decay_time",stats={[1]="cyclone_stage_decay_time_ms"}},[473]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage for each time this Skill has Chained"}}},name="damage_per_chain",stats={[1]="damage_+%_per_chain"}},[474]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Leeching Energy Shield"}}},name="damage_while_es_leeching",stats={[1]="damage_+%_while_es_leeching"}},[475]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Leeching Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Leeching Life"}}},name="damage_while_life_leeching",stats={[1]="damage_+%_while_life_leeching"}},[476]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Leeching Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Leeching Mana"}}},name="damage_while_mana_leeching",stats={[1]="damage_+%_while_mana_leeching"}},[477]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]="#"}},text="Damaging Ailments deal damage %1%%% faster"}}},name="damaging_ailments_deal_damage_faster",stats={[1]="damaging_ailments_deal_damage_+%_faster"}},[478]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Damage per Curse applied"}}},name="dark_ritual_damage",stats={[1]="dark_ritual_damage_+%_final_per_curse_applied"}},[479]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Debuff Duration per Curse applied"}}},name="dark_ritual_duration",stats={[1]="dark_ritual_skill_effect_duration_+%_per_curse_applied"}},[480]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deals no Elemental Damage"}}},name="deal_no_elemental",stats={[1]="deal_no_elemental_damage"}},[481]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Maximum of %1% corpses allowed"}}},name="desecrate_maximum_corpse_count",stats={[1]="desecrate_maximum_number_of_corpses"}},[482]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Only one Mine of this type can Detonate in each Detonation Sequence"}}},name="disable_mine_detonation_cascade",stats={[1]="disable_mine_detonation_cascade"}},[483]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires an additional Projectile for every 2 prior Mines in Detonation Sequence"}}},name="additional_proj_per_2_mines_in_sequence",stats={[1]="display_additional_projectile_per_2_mines_in_detonation_sequence"}},[484]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires an additional Projectile for each prior Mine in Detonation Sequence"}}},name="additional_proj_per_mine_in_sequence",stats={[1]="display_additional_projectile_per_mine_in_detonation_sequence"}},[485]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Applied Curses have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Applied Curses have %1%%% reduced Effect"}}},name="linked_curse_effect_incr",stats={[1]="display_linked_curse_effect_+%"}},[486]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Debuff can have up to %1% layers of Damage"}}},name="blight_max_stacks",stats={[1]="display_max_blight_stacks"}},[487]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Burning Debuff can have a maximum of %1% stages"}}},name="fire_beam_max_stacks",stats={[1]="display_max_fire_beam_stacks"}},[488]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="First Mine Detonates Instantly\nMines get %1%%% more Detonation Speed for each prior Mine in Detonation Sequence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]=1,[2]="#"}},text="First Mine Detonates Instantly\nMines get %1%%% less Detonation Speed for each prior Mine in Detonation Sequence"}}},name="mine_detonation_sequence_speed_incr",stats={[1]="display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine"}},[489]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Melee Attack Range also apply to this Skill's Area radius"}}},name="display_melee_range_applies_to_radius",stats={[1]="display_modifiers_to_melee_attack_range_apply_to_skill_radius"}},[490]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]=1}},text="Removes existing Elusive before granting a new Elusive Buff when used"}}},name="elusive_swap_on_use",stats={[1]="display_removes_and_grants_elusive_when_used"}},[491]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Buff expiry rate cannot be modified"}}},name="display_fixed_duration_buff",stats={[1]="display_skill_fixed_duration_buff"}},[492]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have the same Level as the corpse"}}},name="display_minions_level_is_corpse_level",stats={[1]="display_skill_minions_level_is_corpse_level"}},[493]={lang={English={[1]={[1]={k="milliseconds_to_seconds_1dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Orbs jump every %1% seconds"}}},name="storm_burst_jump_time",stats={[1]="display_storm_burst_jump_time_ms"}},[494]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill's Cooldown does not recover during its effect"}}},name="display_no_cooldown_during_buff",stats={[1]="display_this_skill_cooldown_does_not_recover_during_buff"}},[495]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters from the Breach do not grant Experience or drop Items"}}},name="display_vaal_breach_no_drops_xp",stats={[1]="display_vaal_breach_no_drops_xp"}},[496]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles travel %1%%% increased distance before changing forms"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles travel %1%%% reduced distance before changing forms"}}},name="distance_before_form_change",stats={[1]="distance_before_form_change_+%"}},[497]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Beam deals %1%%% more Damage with Ailments per Stage after the first"}}},name="divine_tempest_stage_ailment_damage",stats={[1]="divine_tempest_ailment_damage_+%_final_per_stage"}},[498]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage while Channelling"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage while Channelling"}}},name="divine_tempest_channelling_damage",stats={[1]="divine_tempest_damage_+%_final_while_channelling"}},[499]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Beam deals %1%%% more Damage with Hits per Stage after the first"}}},name="divine_tempest_stage_hit_damage",stats={[1]="divine_tempest_hit_damage_+%_final_per_stage"}},[500]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain an additional Stage when Hitting a Normal or Magic Enemy"}}},name="divine_tempest_normal_magic_chance",stats={[1]="divine_tempest_stage_on_hitting_normal_magic_%_chance"}},[501]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gains an additional Stage when Hitting a Rare or Unique Enemy"}}},name="divine_tempest_rare_unique_chance",stats={[1]="divine_tempest_stage_on_hitting_rare_unique"}},[502]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBloodStanceDefault"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Bleeding while in Blood Stance"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextBloodStanceDefault"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Bleeding while in Blood Stance"}}},name="blood_stance_bleeding_damage",stats={[1]="double_slash_bleeding_damage_+%_final_in_blood_stance"}},[503]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Critical Strike Chance against Enemies that are on Full Life"}}},name="dual_strike_crit_full_life",stats={[1]="dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life"}},[504]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Damage with Hits and Ailments against Enemies that are on Full Life"}}},name="dual_strike_damage_full_life",stats={[1]="dual_strike_damage_+%_final_against_enemies_on_full_life"}},[505]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Aftershock deals %1% to %2% Added Attack Physical Damage"}}},name="quake_slam_aftershock_added_phys",stats={[1]="earthquake_aftershock_minimum_added_physical_damage",[2]="earthquake_aftershock_maximum_added_physical_damage"}},[506]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Elemental Damage per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Elemental Damage per Inspiration Charge"}}},name="elemental_damage_per_righteous_charge",stats={[1]="elemental_damage_+%_final_per_righteous_charge"}},[507]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="80%% more Area Radius against Enemies affected by an Ailment of the chosen Element"}}},name="elemental_hit_aoe_vs_associated_element",stats={[1]="elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"}},[508]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="10%% more Damage per Elemental Ailment on the Enemy"}}},name="elemental_hit_damage_per_ailment",stats={[1]="elemental_hit_damage_+10%_final_per_enemy_elemental_ailment"}},[509]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Elusive from this Skill"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Elusive from this Skill"}}},name="elusive_effect",stats={[1]="elusive_effect_+%"}},[510]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Charged Slam Deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Charged Slam Deals %1%%% less Damage"}}},name="endurance_charge_slam_extra_damage",stats={[1]="endurance_charge_slam_damage_+%_final_with_endurance_charge"}},[511]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Regeneration rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Regeneration rate"}}},name="energy_shield_regen_rate",stats={[1]="energy_shield_regeneration_rate_+%"}},[512]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased angle per stage, up to 300%%"}}},name="expanding_fire_cone_angle_per_stage",stats={[1]="expanding_fire_cone_angle_+%_per_stage"}},[513]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Final wave always Ignites"}}},name="expanding_fire_cone_always_ignite",stats={[1]="expanding_fire_cone_final_wave_always_ignite"}},[514]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% maximum stages"}}},name="expanding_fire_cone_stages",stats={[1]="expanding_fire_cone_maximum_number_of_stages"}},[515]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1$+d to radius per stage, up to %2$+d"}}},name="expanding_fire_cone_radius_per_stage",stats={[1]="expanding_fire_cone_radius_+_per_stage",[2]="expanding_fire_cone_radius_limit"}},[516]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Final wave deals %1%%% more Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Final wave deals %1%%% less Damage with Hits"}}},name="expanding_fire_cone_release_hit",stats={[1]="expanding_fire_cone_release_hit_damage_+%_final"}},[517]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Explosion deals %1%%% more Damage with Ignite per Explosive Arrow on Target"}}},name="fuse_arrow_ignite_damage_per_stack",stats={[1]="explosive_arrow_ignite_damage_+%_final_per_stack"}},[518]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra Targets can be found %1%%% further away"}}},stats={[1]="extra_target_targeting_distance_+%"}},[519]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},[2]={k="reminderstring",v="ReminderTextDealsDamageFaster"},limit={[1]={[1]="#",[2]="#"}},text="Bleeding inflicted by this Skill deals Damage %1%%% faster"}}},name="faster_bleed",stats={[1]="faster_bleed_%"}},[520]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Gain %1% Life per corpse Consumed\nGain %2% Mana per corpse Consumed\nGain %3% Energy Shield per corpse Consumed"}}},name="feast_of_flesh_bonus_per_corpse",stats={[1]="feast_of_flesh_gain_X_life_per_corpse_consumed",[2]="feast_of_flesh_gain_X_mana_per_corpse_consumed",[3]="feast_of_flesh_gain_X_energy_shield_per_corpse_consumed"}},[521]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Additional Debuff stages add %1%%% of Damage"}}},name="fire_beam_add_damage",stats={[1]="fire_beam_additional_stack_damage_+%_final"}},[522]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Total Fire Resistance penalty from all Beams cannot exceed %1$+d%%"}}},name="fire_beam_resistance_cap",stats={[1]="fire_beam_enemy_fire_resistance_%_maximum"}},[523]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Debuff applies %1$+d%% Fire Resistance per stage"}}},name="fire_beam_resistance_minus",stats={[1]="fire_beam_enemy_fire_resistance_%_per_stack"}},[524]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased beam length"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced beam length"}}},name="fire_beam_length_incr",stats={[1]="fire_beam_length_+%"}},[525]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill's Duration cannot be modified"}}},name="fixed_duration",stats={[1]="fixed_skill_effect_duration"}},[526]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to Ignite for each Stage"}}},name="flameblast_ignite_chance",stats={[1]="flameblast_ignite_chance_+%_per_stage"}},[527]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Cast Speed apply to the rotation speed of the Flames"}}},name="flamethrower_tower_trap_rotation",stats={[1]="flamethrower_tower_trap_display_cast_speed_affects_rotation"}},[528]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Has %1% Flames"}}},name="flamethrower_tower_trap_flames",stats={[1]="flamethrower_tower_trap_number_of_flamethrowers"}},[529]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage against Burning Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage against Burning Enemies"}}},name="flamethrower_trap_damage_against_burn",stats={[1]="flamethrower_trap_damage_+%_final_vs_burning_enemies"}},[530]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Buff grants %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Buff grants %1%%% reduced Movement Speed"}}},name="flicker_strike_move_speed",stats={[1]="flicker_strike_buff_movement_speed_+%"}},[531]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]="#"}},text="Grants Fortify on hit"}}},name="fortify_on_hit",stats={[1]="fortify_on_hit"}},[532]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Damage per Frenzy Charge"}}},name="frenzy_more_attack_damage_per_frenzy_charge",stats={[1]="frenzy_skill_attack_damage_+%_final_per_frenzy_charge"}},[533]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed per Frenzy Charge"}}},name="frenzy_more_attack_speed_per_frenzy_charge",stats={[1]="frenzy_skill_attack_speed_+%_final_per_frenzy_charge"}},[534]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can explode from 1 Frostbolt Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Can explode from up to %1% Frostbolt Projectiles"}}},name="vortex_num_frost_bolts",stats={[1]="frost_bolt_nova_number_of_frost_bolts_to_detonate"}},[535]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Base Duration per Stage"}}},name="frost_fury_added_duration",stats={[1]="frost_fury_added_duration_per_stage_ms"}},[536]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Fires projectiles every %1% seconds"}}},name="frost_fury_fire_interval",stats={[1]="frost_fury_base_fire_interval_ms"}},[537]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Duration per Stage"}}},name="frost_fury_incr_duration",stats={[1]="frost_fury_duration_+%_per_stage"}},[538]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Projectile Frequency while Channelling"}}},name="frost_fury_fire_speed_channelling",stats={[1]="frost_fury_fire_speed_+%_final_while_channelling"}},[539]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Projectile Frequency per Stage"}}},name="frost_fury_fire_speed_incr",stats={[1]="frost_fury_fire_speed_+%_per_stage"}},[540]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Stages"}}},name="frost_fury_stages",stats={[1]="frost_fury_max_number_of_stages"}},[541]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Elusive on Critical Strike with this Skill"},[2]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=100,[2]="#"}},text="Gain Elusive on Critical Strike with this Skill"}}},name="support_puncturing_elusive_chance",stats={[1]="gain_elusive_on_crit_%_chance"}},[542]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Rage on Hit"}}},name="rage_on_hit",stats={[1]="gain_rage_on_hit"}},[543]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Inspiration Charge when you Spend Mana for this Skill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Inspiration Charge when you Spend Mana for this Skill"}}},name="righteous_charge_on_spend_mana",stats={[1]="gain_righteous_charge_on_mana_spent_%"}},[544]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]="#",[2]="#"}},text="Maim on Hit"}}},name="always_maim",stats={[1]="global_maim_on_hit"}},[545]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage against Bleeding Enemies"}}},name="added_phys_vs_bleeding",stats={[1]="global_minimum_added_physical_damage_vs_bleeding_enemies",[2]="global_maximum_added_physical_damage_vs_bleeding_enemies"}},[546]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Final wave deals %1%%% more Damage with Ignite"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Final wave deals %1%%% less Damage with Ignite"}}},name="expanding_fire_cone_release_ignite",stats={[1]="grant_expanding_fire_cone_release_ignite_damage_+%_final"}},[547]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Virulence when you Poison an Enemy"}}},name="herald_of_agony_stack",stats={[1]="herald_of_agony_add_stack_on_poison"}},[548]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants %1%%% more Poison Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants %1%%% less Poison Damage"}}},name="herald_of_agony_damage",stats={[1]="herald_of_agony_poison_damage_+%_final"}},[549]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Base Burning Damage is %1%%% of Overkill Damage"}}},name="herald_of_ash_burning_percent",stats={[1]="herald_of_ash_burning_%_overkill_damage_per_minute"}},[550]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks"}}},name="herald_of_light_attack_added_physical",stats={[1]="herald_of_light_attack_minimum_added_physical_damage",[2]="herald_of_light_attack_maximum_added_physical_damage"}},[551]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Spells"}}},name="herald_of_light_spell_added_physical",stats={[1]="herald_of_light_spell_minimum_added_physical_damage",[2]="herald_of_light_spell_maximum_added_physical_damage"}},[552]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summon a Sentinel of Purity when you Kill an Enemy"}}},name="herald_of_light_summon_on_kill",stats={[1]="herald_of_light_summon_champion_on_kill"}},[553]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Summon a Sentinel of Purity when you Hit a Rare or Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon a Sentinel of Purity when you Hit a Rare or Unique Enemy"}}},name="herald_of_light_summon_on_hit",stats={[1]="herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%"}},[554]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hindered Enemies take %1%%% increased Chaos Damage"}}},name="hinder_damage_taken",stats={[1]="hinder_enemy_chaos_damage_taken_+%"}},[555]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Holy Relic's Nova Skill grants %1% Life regenerated per second to Allies"}}},name="relic_nova_life_regen_per_minute",stats={[1]="holy_relic_nova_life_regeneration_rate_per_minute"}},[556]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Holy Relic's Nova Skill grants %1% Life regenerated per second to Minions"}}},name="relic_nova_minion_life_regen_per_second",stats={[1]="holy_relic_nova_minion_life_regeneration_rate_per_second"}},[557]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]="#"}},text="%1%%% increased Cooldown Recovery Speed for each Normal or Magic Enemy in Area\n%2%%% increased Cooldown Recovery Speed for each Rare or Unique Enemy in Area"},[2]={[1]={k="negate",v=1},[2]={k="negate",v=2},limit={[1]={[1]="#",[2]=-1},[2]={[1]="#",[2]=-1}},text="%1%%% reduced Cooldown Recovery Speed for each Normal or Magic Enemy in Area\n%2%%% reduced Cooldown Recovery Speed for each Rare or Unique Enemy in Area"}}},name="ice_dash_cooldown_speed_incr",stats={[1]="ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy",[2]="ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy"}},[558]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can expand from 1 Frostbolt Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Can expand from up to %1% Frostbolt Projectiles"}}},name="ice_nova_num_frost_bolts",stats={[1]="ice_nova_number_of_frost_bolts_to_cast_on"}},[559]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Ignited by this Skill have %1$+d%% to Fire Resistance"}}},name="ignites_apply_fire_res",stats={[1]="ignites_apply_fire_resistance_+"}},[560]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Impale Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Impale Effect"}}},name="impale_effect",stats={[1]="impale_debuff_effect_+%"}},[561]={lang={English={[1]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextPhysReductionNotNegative"},limit={[1]={[1]="#",[2]="#"}},text="Enemies Impaled by this skill have %1$+d%% to Total Physical Damage Reduction against Impale Hits"}}},stats={[1]="impale_phys_reduction_%_penalty"}},[562]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Cold Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Cold Damage taken"}}},name="impurity_less_cold_damage_taken",stats={[1]="impurity_cold_damage_taken_+%_final"}},[563]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Fire Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Fire Damage taken"}}},name="impurity_less_fire_damage_taken",stats={[1]="impurity_fire_damage_taken_+%_final"}},[564]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Lightning Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Lightning Damage taken"}}},name="impurity_less_lightning_damage_taken",stats={[1]="impurity_lightning_damage_taken_+%_final"}},[565]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Debuff deals %1%%% of Damage per Charge"}}},name="infernal_blow_damage",stats={[1]="infernal_blow_explosion_damage_%_of_total_per_stack"}},[566]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Inspiration Charge Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Inspiration Charge Duration"}}},name="righteous_charge_duration",stats={[1]="inspiration_charge_duration_+%"}},[567]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments against Bleeding enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits and Ailments against Bleeding enemies"}}},name="lacerate_damage_vs_bleeding",stats={[1]="lacerate_hit_and_ailment_damage_+%_final_vs_bleeding_enemies"}},[568]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Stronger Pulses deal %1%%% more Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Stronger Pulses deal %1%%% less Damage with Hits and Ailments"}}},name="ightning_tendrils_pulse_damage",stats={[1]="lightning_tendrils_channelled_larger_pulse_damage_+%_final"}},[569]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Stronger Pulse has %1$+d to Radius"}}},name="lightning_tendrils_pulse_radius",stats={[1]="lightning_tendrils_channelled_larger_pulse_radius_+"}},[570]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Strikes %1% Areas"},[2]={[1]={k="milliseconds_to_seconds_2dp",v=2},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Strikes %1% Areas every %2% seconds"}}},name="lightning_tower_trap_number_of_beams",stats={[1]="lightning_tower_trap_number_of_beams",[2]="lightning_tower_trap_interval_duration_ms"}},[571]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose all Inspiration Charges after Spending %1% total Mana with this Skill"}}},name="lose_righteous_charges_on_mana_use_threshold",stats={[1]="lose_all_righteous_charges_on_mana_use_threshold"}},[572]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Maim"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Maim"}}},name="maim_effect",stats={[1]="maim_effect_+%"}},[573]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Maim on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=100,[2]="#"}},text="Maim on Hit"}}},name="maim_chance",stats={[1]="maim_on_hit_%"}},[574]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextExpectedPoisonDamage"},limit={[1]={[1]=1,[2]="#"}},text="Secondary Debuff deals %1%%% of the total remaining Expected Poison Damage of all Poisons on the dying Enemy per second as Chaos Damage"}}},name="pestilent_strike_remaining_poison_percent",stats={[1]="mamba_strike_deal_%_of_all_poison_total_damage_per_minute"}},[575]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Crab Barriers"}}},name="max_crab_barriers",stats={[1]="max_crab_aspect_stacks"}},[576]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Can queue up to %1% uses"}}},name="max_number_of_lightning_warp_markers",stats={[1]="max_number_of_lightning_warp_markers"}},[577]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Mirage Warriors"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Mirage Warriors"}}},name="maximum_mirage_warriors",stats={[1]="maximum_number_of_mirage_warriors"}},[578]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can catch up to %1% Returning Projectiles"}}},name="max_caught_projectiles",stats={[1]="maximum_number_of_snapping_adder_projectiles"}},[579]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Targets %1% additional nearby Enemy"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Targets %1% additional nearby Enemies"}}},name="number_of_spirit_strikes",stats={[1]="melee_attack_number_of_spirit_strikes"}},[580]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Mines cannot be Re-armed"}}},name="mine_cannot_rearm",stats={[1]="mine_cannot_rearm"}},[581]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Skill has %1%%% increased Critical Strike Chance per Power Charge if used by a Mine"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Skill has %1%%% reduced Critical Strike Chance per Power Charge if used by a Mine"}}},name="mine_crit_chance_per_power_charge",stats={[1]="mine_critical_strike_chance_+%_per_power_charge"}},[582]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Mine Detonation is Instant"}}},name="mine_detonates_instantly",stats={[1]="mine_detonates_instantly"}},[583]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mines have %1%%% increased Detonation Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mines have %1%%% reduced Detonation Speed"}}},name="mine_detonation_speed_incr",stats={[1]="mine_detonation_speed_+%"}},[584]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Throwing Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Throwing Speed per Frenzy Charge"}}},name="mine_throwing_speed_per_frenzy_charge",stats={[1]="mine_throwing_speed_+%_per_frenzy_charge"}},[585]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Cold Damage per Frenzy Charge"}}},name="support_ice_bite_damage",stats={[1]="minimum_added_cold_damage_per_frenzy_charge",[2]="maximum_added_cold_damage_per_frenzy_charge"}},[586]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage against Chilled Enemies"}}},name="added_cold_vs_chilled_enemies",stats={[1]="minimum_added_cold_damage_vs_chilled_enemies",[2]="maximum_added_cold_damage_vs_chilled_enemies"}},[587]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Aura grants %1% to %2% added Lightning Damage"}}},name="skill_grants_lightning_damage",stats={[1]="minimum_added_lightning_damage_from_skill",[2]="maximum_added_lightning_damage_from_skill"}},[588]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Base Physical Damage per 15 Strength"}}},name="secondary_physical_damage_range_per_strength",stats={[1]="minimum_secondary_physical_damage_per_15_strength",[2]="maximum_secondary_physical_damage_per_15_strength"}},[589]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% additional Physical Damage Reduction"}}},name="minion_phys_reduction",stats={[1]="minion_additional_physical_damage_reduction_%"}},[590]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions gain %1%%% chance to deal Double Damage"}}},name="minion_double_damage_chance",stats={[1]="minion_chance_to_deal_double_damage_%"}},[591]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% chance to Taunt on Hit"}}},name="minion_chance_to_taunt",stats={[1]="minion_chance_to_taunt_on_hit_%"}},[592]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions take %1%%% increased Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions take %1%%% reduced Fire Damage"}}},name="minion_fire_damage_taken",stats={[1]="minion_fire_damage_taken_+%"}},[593]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFeedingFrenzy"},limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to grant Feeding Frenzy to you on Hit"}}},name="feeding_frenzy_on_hit",stats={[1]="minion_grant_puppet_master_buff_to_parent_on_hit_%"}},[594]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% to all maximum Elemental Resistances"}}},name="minion_maximum_elemental_resist",stats={[1]="minion_maximum_all_elemental_resistances_%"}},[595]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to inflict Exposure on Hit, applying -10%% to the Elemental Resistance matching highest Damage type taken by Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Minions inflict Exposure on Hit, applying -10%% to the Elemental Resistance matching highest Damage type taken by Enemy"}}},name="minions_inflict_exposure",stats={[1]="minions_inflict_exposure_on_hit_%_chance"}},[596]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="%1%%% of Damage from Hits is taken from the Buff before your Life or Energy Shield\nBuff can take Damage equal to %2%%% of your Armour, up to a maximum of %3%"}}},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"}},[597]={lang={English={}},name="molten_shell_damage_reflect"},[598]={lang={English={}}},[599]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Elemental Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Elemental Damage taken"}}},name="immortal_call_elemental_taken",stats={[1]="mortal_call_elemental_damage_taken_+%_final"}},[600]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Physical Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Physical Damage taken"}}},name="immortal_call_phys_taken",stats={[1]="mortal_call_physical_damage_taken_+%_final"}},[601]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Physical Damage taken per Endurance Charge removed"},[2]={[1]={k="divide_by_one_hundred_and_negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Physical Damage taken per Endurance Charge removed"}}},name="immortal_call_phys_taken_per_endurance_charge",stats={[1]="mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad"}},[602]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="First Repeat deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="First Repeat deals %1%%% less Damage"}}},name="multistrike_first_repeat_damage",stats={[1]="multistrike_damage_+%_final_on_first_repeat"}},[603]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Second Repeat deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Second Repeat deals %1%%% less Damage"}}},name="multistrike_second_repeat_damage",stats={[1]="multistrike_damage_+%_final_on_second_repeat"}},[604]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Third Repeat deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Third Repeat deals %1%%% less Damage"}}},name="multistrike_third_repeat_damage",stats={[1]="multistrike_damage_+%_final_on_third_repeat"}},[605]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elusive from this Skill also grants %1$+d%% to Critical Strike Multiplier for\nSkills Supported by Nightblade"}}},name="nightblade_elusive_bullshit",stats={[1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"}},[606]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of non-Damaging Ailments on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of non-Damaging Ailments on Enemies"}}},name="ailment_non_damaging_incr_effect",stats={[1]="non_damaging_ailment_effect_+%"}},[607]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Sentinel of Purity"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Sentinels of Purity"}}},name="herald_of_light_max_champions",stats={[1]="number_of_champions_of_light_allowed"}},[608]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Consumes up to 1 corpse"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Consumes up to %1% corpses"}}},name="number_of_corpses",stats={[1]="number_of_corpses_to_consume"}},[609]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Effigy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Effigy"}}},name="number_of_effigies",stats={[1]="base_number_of_effigies_allowed"}},[610]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Agony Crawler"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Agony Crawler"}}},name="herald_of_agony_max_minions",stats={[1]="number_of_herald_scorpions_allowed"}},[611]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Holy Relic"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Summoned Holy Relics"}}},name="number_of_relics_allowed",stats={[1]="number_of_relics_allowed"}},[612]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Strikes every %1% second"},[2]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Strikes every %1% seconds"}}},name="orb_of_storms_bolt_frequency",stats={[1]="orb_of_storms_bolt_frequency_ms"}},[613]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when a Mine is Detonated targeting an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Frenzy Charge when a Mine is Detonated targeting an Enemy"}}},name="frenzy_charge_on_mine_detonate",stats={[1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"}},[614]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Frenzy Charge when your Trap is triggered by an Enemy"}}},name="frenzy_charge_on_trap_trig",stats={[1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"}},[615]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when a Mine is Detonated targeting an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Power Charge when a Mine is Detonated targeting an Enemy"}}},name="power_charge_on_mine_detonate",stats={[1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"}},[616]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Power Charge when your Trap is triggered by an Enemy"}}},name="power_charge_on_trap_trig",stats={[1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"}},[617]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="If this Skill Ignites an Enemy, it also inflicts a Burning Debuff\nDebuff deals Fire Damage per second equal to %1%%% of Ignite Damage per second"}}},name="burning_arrow_additional_burning",stats={[1]="additional_burning_debuff_%_of_ignite_damage"}},[618]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemy Action Speed is reduced by %1%%% every 0.3 seconds"}}},name="petrification_statue_action_speed",stats={[1]="petrification_statue_target_action_speed_-%"}},[619]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Each Summoned Phantasm grants you Phantasmal Might\nEach Phantasmal Might Buff grants %1% to %2% Added Spell Physical Damage"}}},name="phantasm_buff_damage",stats={[1]="phantasm_grant_buff_minimum_added_physical_damage",[2]="phantasm_grant_buff_maximum_added_physical_damage"}},[620]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Releases %1% waves"},[2]={[1]={k="milliseconds_to_seconds",v=2},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Releases %1% waves every %2% seconds"}}},name="phys_cascade_trap_number_of_cascades",stats={[1]="phys_cascade_trap_number_of_cascades",[2]="phys_cascade_trap_interval_duration_ms"}},[621]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants %1%%% additional Physical Damage Reduction per Crab Barrier"}}},name="phys_reduction_per_crab_barrier",stats={[1]="physical_damage_reduction_%_per_crab_aspect_stack"}},[622]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Poison"}}},name="poison_multi",stats={[1]="poison_dot_multiplier_+"}},[623]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="Primary Projectile has %1$+d%% chance to Impale Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Primary Projectile Impales Enemies on Hit"}}},name="primary_proj_impale_chance",stats={[1]="primary_projectile_impale_chance_%"}},[624]={lang={English={[1]={limit={[1]={[1]=0,[2]=0}},text="Fires a Payload Arrow into the air\nProjectiles Fire from where the Payload Arrow lands"}}},name="projectiles_from_payload_arrow",stats={[1]="projectiles_rain"}},[625]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Bleeding"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Bleeding"}}},name="puncture_bleeding_damage",stats={[1]="puncture_bleeding_damage_+%_final"}},[626]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Feeding Frenzy lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Feeding Frenzy lasts %1% seconds"}}},name="feeding_frenzy_duration",stats={[1]="puppet_master_duration_ms"}},[627]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Exposure applies %1$+d%% to Elemental Resistance matching highest Damage taken"}}},name="purge_resist",stats={[1]="purge_expose_resist_%_matching_highest_element_damage"}},[628]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1%%% of Damage from Hits is taken from the Buff before Life or Energy Shield\nBuff can take %2% Damage"}}},name="bone_armour_damage_buff",stats={[1]="quick_guard_damage_absorbed_%",[2]="quick_guard_damage_absorb_limit"}},[629]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to fire an additional sequence of arrows"}}},name="rain_of_arrows_additional_chance",stats={[1]="rain_of_arrows_additional_sequence_chance_%"}},[630]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raised Spectres are Level %1%"}}},name="raised_spectre_level",stats={[1]="raised_spectre_level"}},[631]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Brands gain %1%%% increased Attachment Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Brands gain %1%%% reduced Attachment Range"}}},name="sigil_target_search_range_modifier",stats={[1]="recall_sigil_target_search_range_+%"}},[632]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shockwave deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shockwave deals %1%%% less Damage"}}},name="sactify_wave_damage",stats={[1]="sanctify_wave_damage_+%_final"}},[633]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Agony Crawler has %1%%% increased Attack Speed per Virulence you have"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Agony Crawler has %1%%% reduced Attack Speed per Virulence you have"}}},name="herald_of_agony_minion_attack_speed_incr_per_virulence",stats={[1]="scorpion_minion_attack_speed_+%"}},[634]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Agony Crawler deals %1%%% increased Physical Damage per Virulence you have"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Agony Crawler deals %1%%% reduced Physical Damage per Virulence you have"}}},name="herald_of_agony_minion_damage_incr_per_virulence",stats={[1]="scorpion_minion_physical_damage_+%"}},[635]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Agony Crawler has %1% to %2% Added Physical Damage per Virulence you have"}}},name="herald_of_agony_minion_added_damage_per_virulence",stats={[1]="scorpion_minion_minimum_added_physical_damage",[2]="scorpion_minion_maximum_added_physical_damage"}},[636]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles gain Damage as they travel farther, dealing up to %1%%% more Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles gain Damage as they travel farther, dealing up to %1%%% less Damage with Hits"}}},name="shattering_steel_damage_scaling",stats={[1]="shattering_steel_damage_+%_final_scaled_by_projectile_distance"}},[637]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Shock"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Shock"}}},name="shock_effect",stats={[1]="shock_effect_+%"}},[638]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shocked Ground causes %1%%% increased Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shocked Ground causes %1%%% reduced Damage taken"}}},name="shocked_ground_stat_override",stats={[1]="shocked_ground_base_magnitude_override"}},[639]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Causes %1% smaller explosions"}}},name="shrapnel_trap_secondary_explosions",stats={[1]="shrapnel_trap_number_of_secondary_explosions"}},[640]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% of Branded Enemy's Fire Resistance"}}},name="sigil_attached_target_fire_penetration",stats={[1]="sigil_attached_target_fire_penetration_%"}},[641]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% of Branded Enemy's Lightning Resistance"}}},name="sigil_attached_target_lightning_penetration",stats={[1]="sigil_attached_target_lightning_penetration_%"}},[642]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Brands refresh their Detached Duration by up to %1% seconds"}}},name="sigil_recall_inactive_duration_extend",stats={[1]="sigil_recall_extend_base_secondary_skill_effect_duration"}},[643]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Brands refresh their Attached Duration by up to %1% seconds"}}},name="sigil_recall_active_duration_extend",stats={[1]="sigil_recall_extend_base_skill_effect_duration"}},[644]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBloodStanceDefault"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased angle while in Sand Stance"}}},name="sand_stance_angle",stats={[1]="skill_angle_+%_in_sand_stance"}},[645]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect angle"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect angle"}}},name="area_angle",stats={[1]="skill_area_angle_+%"}},[646]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum 1 Summoned Mirage Archer"}}},name="can_have_mirage_archer",stats={[1]="skill_can_own_mirage_archers"}},[647]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Movement Speed"}}},name="skill_movement_speed",stats={[1]="skill_code_movement_speed_+%_final"}},[648]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Damaging Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Damaging Ailments"}}},name="skill_and_damaging_ailment_duration_incr",stats={[1]="skill_effect_and_damaging_ailment_duration_+%"}},[649]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1% seconds additional Base Duration per 100 Intelligence"}}},name="duration_per_int",stats={[1]="skill_effect_duration_per_100_int"}},[650]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Focus"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Focus"}}},name="focus_trigger",stats={[1]="skill_triggered_when_you_focus_chance_%"}},[651]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="Skills used by Mirage Warriors deal %1%%% less Damage"}}},name="mirage_warrior_damage",stats={[1]="skill_used_by_mirage_warrior_damage_+%_final"}},[652]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Inflicts %1% Withered Debuff the first time each Enemy enters the Area"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Inflicts %1% Withered Debuffs the first time each Enemy enters the Area"}}},name="slither_wither",stats={[1]="slither_wither_stacks"}},[653]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill's Cast Speed cannot be modified"}}},name="cast_time_cannot_be_modified",stats={[1]="spell_cast_time_cannot_be_modified"}},[654]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Final Repeat has %1$+d%% chance to deal Double Damage"}}},name="spell_echo_plus_double_damage",stats={[1]="spell_echo_plus_chance_double_damage_%_final"}},[655]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can inflict up to 1 Spider's Web on an Enemy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Can inflict up to %1% Spider's Webs on an Enemy"}}},name="spider_aspect_max_webs",stats={[1]="spider_aspect_max_web_count"}},[656]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Beams Hit Enemies every %1% second"},[2]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Beams Hit Enemies every %1% seconds"}}},name="static_strike_zap_speed",stats={[1]="static_strike_base_zap_frequency_ms"}},[657]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Beams deal %1%%% more Damage while Stationary"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Beams deal %1%%% less Damage while Stationary"}}},name="static_strike_beam_damage",stats={[1]="static_strike_beam_damage_+%_final"}},[658]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Beams deal %1%%% more Damage while Moving"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Beams deal %1%%% less Damage while Moving"}}},name="static_strike_beam_damage_moving",stats={[1]="static_strike_beam_damage_+%_final_while_moving"}},[659]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% maximum Beam Targets"}}},name="static_strike_beams",stats={[1]="static_strike_number_of_beam_targets"}},[660]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Beam frequency per Buff stack"}}},name="static_strike_zap_speed_modifier",stats={[1]="static_strike_zap_speed_+%_per_stack"}},[661]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Exploding Orbs deal %1%%% of Skill Damage for each 0.4 seconds of remaining Duration"}}},name="storm_burst_new_damage_per_remaining",stats={[1]="storm_burst_new_damage_+%_final_per_remaining_teleport_zap"}},[662]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When you Hit an Enemy with an Arrow from this Skill, Summons a Mirage Archer which uses this Skill"}}},name="summon_mirage_archer",stats={[1]="summon_mirage_archer_on_hit"}},[663]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When you deal a Critical Strike with The Saviour, Summon a Mirage Warrior which uses that Attack Skill"}}},name="mirage_warriors",stats={[1]="summon_mirage_warrior_on_crit"}},[664]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Spider grants %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Spider grants %1%%% reduced Attack Speed"}}},name="spider_grants_attack_speed",stats={[1]="summoned_spider_grants_attack_speed_+%"}},[665]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Spider grants %1%%% increased Damage with Poison"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Spider grants %1%%% reduced Damage with Poison"}}},name="spider_grants_poison_damage",stats={[1]="summoned_spider_grants_poison_damage_+%"}},[666]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to throw up to 1 additional Trap or Mine"}}},stats={[1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine"}},[667]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to throw up to 2 additional Traps or Mines"}}},stats={[1]="support_additional_trap_mine_%_chance_for_2_additional_trap_mine"}},[668]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to throw up to 3 additional Traps or Mines"}}},stats={[1]="support_additional_trap_mine_%_chance_for_3_additional_trap_mine"}},[669]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Aura Lasts %1% seconds"}}},name="aura_duration_buff",stats={[1]="support_aura_duration_buff_duration"}},[670]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Mana Reservation Lasts %1% seconds"}}},name="aura_duration_reserve",stats={[1]="support_aura_duration_reserve_duration"}},[671]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Ailments"}}},name="support_better_ailments_bonus",stats={[1]="support_better_ailments_ailment_damage_+%_final"}},[672]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="This Skill has a %1%%% chance to Trigger Shockwave Skill on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="This Skill will Trigger Shockwave Skill on Hit"}}},stats={[1]="support_blunt_chance_to_trigger_shockwave_on_hit_%"}},[673]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Attacks deal %1%%% more Damage with Bleeding"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Attacks deal %1%%% less Damage with Bleeding"}}},name="chance_to_bleed_damage_incr",stats={[1]="support_chance_to_bleed_bleeding_damage_+%_final"}},[674]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]=1,[2]="#"}},text="Enemies in Chilling Areas from this Skill take %1%%% increased Cold Damage over Time"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]="#",[2]=-1}},text="Enemies in Chilling Areas from this Skill take %1%%% reduced Cold Damage over Time"}}},name="support_chilling_areas_incr_cold_dot_taken",stats={[1]="support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"}},[675]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]="#",[2]="#"}},text="Enemies in Chilling Areas from this Skill have Cold Damage taken increased by Chill Effect"}}},name="support_chilling_areas_incr_cold_damage_taken",stats={[1]="support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"}},[676]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Chilled by this Skill take %1%%% increased Cold Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Chilled by this Skill take %1%%% reduced Cold Damage over Time"}}},name="support_chills_incr_cold_dot_taken",stats={[1]="support_chills_also_grant_cold_damage_taken_per_minute_+%"}},[677]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Chilled by this Skill have Cold Damage taken increased by Chill Effect"}}},name="support_chills_incr_cold_damage_taken",stats={[1]="support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"}},[678]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]="#",[2]="#"}},text="%1%%% more Damage with Hits for each Poison on the Enemy, up to %2%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1},[2]={[1]="#",[2]="#"}},text="%1%%% less Damage with Hits for each Poison on the Enemy, up to %2%"}}},name="support_debilitate_hit_damage",stats={[1]="support_debilitate_hit_damage_+%_final_per_poison_stack",[2]="support_debilitate_hit_damage_max_poison_stacks"}},[679]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage while Leeching Energy Shield"}}},name="damage_while_es_leeching_more",stats={[1]="support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"}},[680]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Phantasms last %1% seconds"}}},name="ghost_duration",stats={[1]="support_ghost_duration"}},[681]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per Repeat"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per Repeat"}}},name="greater_spell_echo_area_per_repeat",stats={[1]="support_greater_spell_echo_area_of_effect_+%_per_repeat"}},[682]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Spell Damage per Repeat"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Spell Damage per Repeat"}}},name="greater_spell_echo_damage_per_repeat",stats={[1]="support_greater_spell_echo_spell_damage_+%_final_per_repeat"}},[683]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Ignite"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Ignite"}}},name="ignite_prolif_damage",stats={[1]="support_ignite_prolif_ignite_damage_+%_final"}},[684]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Physical Damage"}}},name="maim_phys_damage",stats={[1]="support_maim_chance_physical_damage_+%_final"}},[685]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Maimed by this Skill take %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Maimed by this Skill take %1%%% reduced Physical Damage"}}},name="maimed_phys_damage_taken_incr",stats={[1]="support_maimed_enemies_physical_damage_taken_+%"}},[686]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Mine Throwing Speed"}}},stats={[1]="support_minefield_mine_throwing_speed_+%_final"}},[687]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% added Fire Damage against Burning Enemies"}}},name="added_fire_against_burning",stats={[1]="global_minimum_added_fire_damage_vs_burning_enemies",[2]="global_maximum_added_fire_damage_vs_burning_enemies"}},[688]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage to Enemies that are Near you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage to Enemies that are Near you"}}},name="minion_defensive_damage_near_you_final",stats={[1]="support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"}},[689]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions take %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions take %1%%% less Damage"}}},name="minion_defensive_damage_taken_final",stats={[1]="support_minion_defensive_stance_minion_damage_taken_+%_final"}},[690]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage while you have Feeding Frenzy"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage while you have Feeding Frenzy"}}},name="feeding_frenzy_damage",stats={[1]="support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"}},[691]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Elemental Damage"}}},name="minion_totem_resistance_support_damage",stats={[1]="support_minion_totem_resistance_elemental_damage_+%_final"}},[692]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mirage Archer uses this Skill with %1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mirage Archer uses this Skill with %1%%% less Attack Speed"}}},name="mirage_archer_attack_speed",stats={[1]="support_mirage_archer_attack_speed_+%_final"}},[693]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Mirage Archer lasts %1% seconds"}}},name="mirage_archer_duration",stats={[1]="support_mirage_archer_duration"}},[694]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOverpowered"},limit={[1]={[1]="#",[2]="#"}},text="Inflict Overpowered for %1% seconds when Blocked"}}},name="support_overpowered_on_enemy_block_duration",stats={[1]="support_overpowered_duration_ms"}},[695]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Also fires Projectiles from up to %1% point on each side of you"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Also fires Projectiles from up to %1% points on each side of you"}}},name="support_parallel_projectiles",stats={[1]="support_parallel_projectile_number_of_points_per_side"}},[696]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage per Power Charge"}}},name="power_charge_on_crit_damage",stats={[1]="support_power_charge_on_crit_damage_+%_final_per_power_charge"}},[697]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area of Effect"}}},name="pulverise_area_of_effect",stats={[1]="support_pulverise_area_of_effect_+%_final"}},[698]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain 1 Rage on Melee Hit, no more than once every %1% seconds"}}},name="angry_hit",stats={[1]="support_rage_gain_rage_on_melee_hit_cooldown_ms"}},[699]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies have -%1%%% chance to Block Attack or Spell Damage from this Skill"}}},name="support_reduced_block_chance",stats={[1]="support_reduce_enemy_block_and_spell_block_%"}},[700]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies have -%1%%% chance to Dodge Attack or Spell Hits from this Skill"}}},name="support_reduced_dodge_chance",stats={[1]="support_reduce_enemy_dodge_and_spell_dodge_%"}},[701]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage for each prior Mine in Detonation Sequence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage for each prior Mine in Detonation Sequence"}}},name="remote_mine_cascade_damage_incr",stats={[1]="support_remote_mine_damage_+%_final_per_mine_detonation_cascade"}},[702]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain Onslaught for 3 seconds when you Hit a Unique Enemy"}}},name="support_scion_unique_chance",stats={[1]="support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"}},[703]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=2},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1%%% chance to grant Onslaught for %2% seconds on\ndealing a Killing Blow"}}},name="support_scion_chance",stats={[1]="support_scion_onslaught_on_killing_blow_%_chance",[2]="support_scion_onslaught_on_killing_blow_duration_ms"}},[704]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Grants Combat Rush on Hit\nCombat Rush lasts %1% second or until you use a Travel Skill"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Grants Combat Rush on Hit\nCombat Rush lasts %1% seconds or until you use a Travel Skill"}}},name="combat_rush_buff_duration",stats={[1]="support_slashing_buff_duration_ms"}},[705]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Combat Rush grants %1%%% more Attack and Cast Speed to Travel Skills that are not Supported by Close Combat"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Combat Rush grants %1%%% less Attack and Cast Speed to Travel Skills that are not Supported by Close Combat"}}},name="combat_rush_speed",stats={[1]="support_slashing_buff_attack_cast_speed_+%_final_to_grant"}},[706]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deals up to %1%%% more Melee Damage to Enemies, based on proximity"}}},stats={[1]="support_slashing_damage_+%_final_from_distance"}},[707]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area Damage per Intensity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area Damage per Intensity"}}},name="spell_focus_damage",stats={[1]="support_spell_boost_area_damage_+%_final_per_charge"}},[708]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area of Effect per Intensity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area of Effect per Intensity"}}},name="spell_focus_area",stats={[1]="support_spell_boost_area_of_effect_+%_final_per_charge"}},[709]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="This Skill gains Intensity when used, up to a maximum of 4\nIntensity is lowered every %1% seconds while moving, or immediately if you teleport"}}},name="spell_focus_loss",stats={[1]="support_spell_boost_charge_loss_interval_ms_while_moving"}},[710]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area of Effect"}}},name="support_cascade_area_of_effect",stats={[1]="support_spell_cascade_area_of_effect_+%_final"}},[711]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0}},text="Also affects areas in front of and behind the targeted area"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0}},text="Also affects areas in front of, behind, and on each side of targeted area"}}},name="support_spell_cascade",stats={[1]="support_spell_cascade_number_of_cascades_per_side",[2]="support_spell_cascade_sideways"}},[712]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Infusion grants %1%%% more Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Infusion grants %1%%% less Chaos Damage"}}},name="storm_barrier_damage_buff",stats={[1]="support_storm_barrier_chaos_damage_+%_final_to_apply"}},[713]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Infusion grants %1%%% more Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Infusion grants %1%%% less Cold Damage"}}},name="storm_barrier_cold_damage_buff",stats={[1]="support_storm_barrier_cold_damage_+%_final_to_apply"}},[714]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Infusion lasts %1% second after you finish Channelling"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Infusion lasts %1% seconds after you finish Channelling"}}},name="storm_barrier_damage_buff_duration",stats={[1]="support_storm_barrier_damage_buff_duration_ms"}},[715]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Infusion grants %1%%% more Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Infusion grants %1%%% less Fire Damage"}}},name="storm_barrier_fire_damage_buff",stats={[1]="support_storm_barrier_fire_damage_+%_final_to_apply"}},[716]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Infusion grants %1%%% more Lightning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Infusion grants %1%%% less Lightning Damage"}}},name="storm_barrier_lightning_damage_buff",stats={[1]="support_storm_barrier_lightning_damage_+%_final_to_apply"}},[717]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Infusion grants %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Infusion grants %1%%% less Physical Damage"}}},name="storm_barrier_phys_damage_buff",stats={[1]="support_storm_barrier_physical_damage_+%_final_to_apply"}},[718]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="While Channelling this Skill, you take %1%%% less Physical Damage from Hits"}}},name="storm_barrier_phys_damage_taken_extra",stats={[1]="support_storm_barrier_physical_damage_taken_when_hit_+%_final"}},[719]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="While Channelling this Skill, you take %1%%% less Chaos Damage from Hits"}}},name="storm_barrier_chaos_damage_taken",stats={[1]="support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling"}},[720]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="While Channelling this Skill, you take %1%%% less Cold Damage from Hits"}}},name="storm_barrier_cold_damage_taken",stats={[1]="support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling"}},[721]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="While Channelling this Skill, you take %1%%% less Fire Damage from Hits"}}},name="storm_barrier_fire_damage_taken",stats={[1]="support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling"}},[722]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="While Channelling this Skill, you take %1%%% less Lightning Damage from Hits"}}},name="storm_barrier_lightning_damage_taken",stats={[1]="support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling"}},[723]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Ailments"}}},name="ailment_damage_incr",stats={[1]="support_unbound_ailments_ailment_damage_+%_final"}},[724]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill can only be used with Axes and Swords"}}},name="skill_can_only_use_axe_sword",stats={[1]="supported_skill_can_only_use_axe_and_sword"}},[725]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill can only be used with Bows"}}},name="skill_can_only_use_bow",stats={[1]="skill_can_only_use_bow"}},[726]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"}},text="This Skill can only be used with Claws and Daggers"}}},name="skill_can_only_use_claw_dagger",stats={[1]="supported_skill_can_only_use_dagger_and_claw"}},[727]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="This Skill can only be used with Maces, Sceptres and Staves"}}},name="skill_can_only_use_mace_staff",stats={[1]="supported_skill_can_only_use_mace_and_staff"}},[728]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill can only be used with Bows and Wands"}}},name="skill_can_only_use_non_melee_weapons",stats={[1]="skill_can_only_use_non_melee_weapons"}},[729]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to consume an Endurance Charge to create a Charged Slam"}}},name="tectonic_slam_endurance_charge_use",stats={[1]="tectonic_slam_chance_to_use_endurance_charge_%"}},[730]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ensnared Enemies take %1%%% increased Projectile Damage from Attack Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ensnared Enemies take %1%%% decreased Projectile Damage from Attack Hits"}}},name="ensnaring_arrow_damage_taken",stats={[1]="tethered_enemies_take_attack_projectile_damage_taken_+%"}},[731]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Snare applies %1%%% more Movement Speed to Normal or Magic Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Snare applies %1%%% less Movement Speed to Normal or Magic Enemies"}}},name="ensnaring_arrow_move_normal",stats={[1]="tethered_movement_speed_+%_final_per_rope"}},[732]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Snare applies %1%%% more Movement Speed to Rare Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Snare applies %1%%% less Movement Speed to Rare Enemies"}}},name="ensnaring_arrow_move_rare",stats={[1]="tethered_movement_speed_+%_final_per_rope_vs_rare"}},[733]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Snare applies %1%%% more Movement Speed to Unique Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Snare applies %1%%% less Movement Speed to Unique Enemies"}}},name="ensnaring_arrow_move_unique",stats={[1]="tethered_movement_speed_+%_final_per_rope_vs_unique"}},[734]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Snares per Enemy"}}},name="snare_limit",stats={[1]="tethering_arrow_display_rope_limit"}},[735]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier per Power Charge when used by Traps"}}},name="trap_crit_per_power_charge",stats={[1]="trap_critical_strike_multiplier_+_per_power_charge"}},[736]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Throwing Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Throwing Speed per Frenzy Charge"}}},name="trap_throwing_speed_per_frenzy",stats={[1]="trap_throwing_speed_+%_per_frenzy_charge"}},[737]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill after Spending a total of 200 Mana"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill after Spending a total of 200 Mana"}}},name="trigger_on_200_mana_spent",stats={[1]="trigger_after_spending_200_mana_%_chance"}},[738]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger when you Attack with a Bow"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Attack when you Attack with a Bow"}}},name="attack_on_bow_attack",stats={[1]="trigger_on_bow_attack_%"}},[739]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="%1%%% chance to Trigger this Skill when you Consume a corpse"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when you Consume a corpse"}}},name="trigger_on_corpse_consume",stats={[1]="trigger_on_corpse_consume_%_chance"}},[740]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this skill when you Kill a Frozen Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this skill when you Kill a Frozen Enemy"}}},name="trigger_on_frozen_kill",stats={[1]="trigger_on_kill_vs_frozen_enemy_%"}},[741]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Consume a Void Charge to Trigger this Skill when you fire Arrows"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Consume a Void Charge to Trigger this Skill when you fire Arrows"}}},name="trigger_on_skill_use_void_arrow",stats={[1]="trigger_on_skill_use_%_if_you_have_a_void_arrow"}},[742]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill is Triggered by the Item granting it"}}},name="trigger_every_5_seconds",stats={[1]="triggered_by_item_buff"}},[743]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Has 10 blades"}}},name="vaal_blade_vortex_has_ten_blades",stats={[1]="vaal_blade_vortex_has_10_spinning_blades"}},[744]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ongoing effect ends after %1% Aftershocks"}}},name="vaal_earthquake_max_aftershocks",stats={[1]="vaal_earthquake_maximum_aftershocks"}},[745]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Radius for each Stage"}}},name="vaal_flameblast_radius",stats={[1]="vaal_flameblast_radius_+_per_stage"}},[746]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Strikes an Enemy every %1% second"},[2]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Strikes an Enemy every %1% seconds"}}},name="vaal_storm_call_delay",stats={[1]="vaal_storm_call_delay_ms"}},[747]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="1 Volley"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% Volleys"}}},name="bladefall_volleys",stats={[1]="virtual_bladefall_number_of_volleys"}},[748]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chills from your Hits always reduce Action Speed by at least %1%%%"}}},name="chill_minimum_slow",stats={[1]="virtual_chill_minimum_slow_%"}},[749]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damages %1% nearby Enemies when you gain Stages"}}},name="divine_tempest_zap_limit",stats={[1]="virtual_divine_tempest_number_of_nearby_enemies_to_zap"}},[750]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Mine Detonation Time is %1% seconds"}}},name="mine_detonation_time",stats={[1]="virtual_mine_detonation_time_ms"}},[751]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You can apply an additional Curse"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You can apply %1% additional Curses"}}},name="additional_curse",stats={[1]="virtual_number_of_additional_curses_allowed"}},[752]={lang={English={[1]={limit={[1]={[1]=1,[2]=1},[2]={[1]=0,[2]=0}},text="Projectiles Chain %1% Time"},[2]={limit={[1]={[1]=2,[2]="#"},[2]={[1]=0,[2]=0}},text="Projectiles Chain %1% Times"}}},name="projectile_chain_num",stats={[1]="virtual_number_of_chains_for_projectiles",[2]="display_hide_projectile_chain_num"}},[753]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Inflicts Spider's Webs and Hinder every %1% Seconds"}}},name="spider_aspect_interval",stats={[1]="virtual_spider_aspect_web_interval_ms"}},[754]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1%%% of Damage from Hits is taken from the Buff before Life or Energy Shield\nBuff can take %2% Damage"}}},name="steelskin_damage_buff",stats={[1]="virtual_steelskin_damage_%_taken_to_buff",[2]="virtual_steelskin_damage_limit"}},[755]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Gain Infusion after Channelling for %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain Infusion after Channelling for %1% seconds"}}},name="storm_barrier_damage_buff_threshold",stats={[1]="virtual_support_storm_barrier_damage_buff_time_threshold_ms"}},[756]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="While Channelling this Skill, you take %1%%% less Physical Damage from Hits"}}},name="storm_barrier_phys_damage_taken",stats={[1]="virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling"}},[757]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to create a Charged Slam"}}},name="tectonic_slam_charged_slam_chance",stats={[1]="virtual_tectonic_slam_%_chance_to_do_charged_slam"}},[758]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments per Stage"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits and Ailments per Stage"}}},name="virulent_arrow_damage_per_stage",stats={[1]="virulent_arrow_damage_+%_final_per_stage"}},[759]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% maximum Stages"}}},name="virulent_arrow_max_stacks",stats={[1]="virulent_arrow_maximum_number_of_stacks"}},[760]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Each Spore Pod fires %1% Thorn Arrows"}}},name="virulent_arrow_pod_arrows",stats={[1]="virulent_arrow_number_of_pod_projectiles"}},[761]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Thorn Arrows deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Thorn Arrows deal %1%%% less Damage"}}},name="virulent_arrow_bloom_damage",stats={[1]="virulent_arrow_pod_projectile_damage_+%_final"}},[762]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Consumes up to 1 corpse"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Consumes up to %1% corpses"}}},name="volatile_dead_number_of_corpses",stats={[1]="volatile_dead_number_of_corpses_to_consume"}},[763]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Withered on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=100,[2]="#"}},text="Inflicts Withered on Hit"}}},name="withered_on_hit_chance",stats={[1]="withered_on_hit_chance_%"}},[764]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},[2]={k="reminderstring",v="ReminderTextReoccurringSpell"},limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]="#"},[3]={[1]=1,[2]="#"}},text="Gains a Seal every %1% seconds, to a maximum of %3% Seals\nUnsealed when cast, and effects Reoccur for each Seal lost"}}},name="anticipation_reoccurring",stats={[1]="support_anticipation_charge_gain_interval_ms",[2]="support_anticipation_rapid_fire_count",[3]="skill_max_unleash_seals"}},[765]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Skill's effects deal %1%%% more Damage when Reoccurring"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Skill's effects deal %1%%% less Damage when Reoccurring"}}},name="anticipation_reoccur_damage",stats={[1]="support_spell_rapid_fire_repeat_use_damage_+%_final"}},[766]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Mine applies %1%%% increased Critical Strike Chance to Hits against Enemies near it, up to a maximum of 500%%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Mine applies %1%%% reduced Critical Strike Chance to Hits against Enemies near it, up to a maximum of 500%%"}}},name="cold_projectile_mine_crit_chance_aura",stats={[1]="cold_projectile_mine_enemy_critical_strike_chance_+%_against_self"}},[767]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Mine applies %1%%% increased Damage Taken to Enemies near it, up\nto a maximum of 150%%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Mine applies %1%%% reduced Damage Taken to Enemies near it, up\nto a maximum of 150%%"}}},name="lightning_explosion_mine_damage_taken_aura",stats={[1]="lightning_explosion_mine_aura_damage_taken_+%"}},[768]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"},[4]={[1]="#",[2]="#"}},text="Each Mine Adds %1% to %2% Fire Damage to Hits against Enemies near it, up\nto a maximum of %3% to %4%"}}},name="mortar_barrage_mine_added_fire_damage_taken",stats={[1]="mortar_barrage_mine_minimum_added_fire_damage_taken",[2]="mortar_barrage_mine_maximum_added_fire_damage_taken",[3]="mortar_barrage_mine_minimum_added_fire_damage_taken_limit",[4]="mortar_barrage_mine_maximum_added_fire_damage_taken_limit"}},[769]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Each Mine applies %1%%% chance to deal Double Damage to Hits against Enemies near it, up to a maximum of 100%%"}}},name="support_remote_mine_double_damage_aura",stats={[1]="support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"}},[770]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raised Zombies' Slam Attack has %1%%% increased Cooldown Recovery Speed"}}},name="zombie_slam_cooldown_speed",stats={[1]="zombie_slam_cooldown_speed_+%"}},[771]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAggressiveMinions"},limit={[1]={[1]="#",[2]="#"}},text="Minions are Aggressive"}}},name="minions_are_aggressive",stats={[1]="minion_larger_aggro_radius"}},[772]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefensiveMinions"},limit={[1]={[1]="#",[2]="#"}},text="Minions are Defensive"}}},name="minions_are_defensive",stats={[1]="minions_are_defensive"}},["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=613,["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=614,["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=615,["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=616,["0"]=9,["abyssal_cry_%_max_life_as_chaos_on_death"]=307,["abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies"]=305,["accuracy_rating"]=99,["accuracy_rating_+%"]=100,["active_skill_area_damage_+%_final"]=390,["active_skill_area_of_effect_+%_final_when_cast_on_frostbolt"]=391,["active_skill_attack_speed_+%_final"]=266,["active_skill_base_area_length_+"]=392,["active_skill_base_radius_+"]=58,["active_skill_chill_as_though_damage_+%_final"]=393,["active_skill_cooldown_bypass_type_override_to_power_charge"]=445,["active_skill_damage_over_time_from_projectile_hits_+%_final"]=372,["active_skill_display_aegis_variation"]=403,["active_skill_ground_consecration_radius_+"]=59,["active_skill_if_used_through_frostbolt_damage_+%_final"]=394,["active_skill_ignite_damage_+%_final"]=395,["active_skill_minion_energy_shield_+%_final"]=121,["active_skill_minion_life_+%_final"]=120,["active_skill_minion_movement_velocity_+%_final"]=117,["active_skill_poison_duration_+%_final"]=396,["active_skill_projectile_damage_+%_final"]=367,["active_skill_returning_projectile_damage_+%_final"]=368,["active_skill_shock_as_though_damage_+%_final"]=397,["add_endurance_charge_on_skill_hit_%"]=398,["add_frenzy_charge_on_kill"]=104,["add_frenzy_charge_on_kill_%_chance"]=105,["add_frenzy_charge_on_skill_hit_%"]=399,["add_power_charge_on_critical_strike_%"]=228,["additional_base_critical_strike_chance"]=355,["additional_burning_debuff_%_of_ignite_damage"]=617,["additional_chain_chance_%"]=400,["additional_chance_to_freeze_chilled_enemies_%"]=334,["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=401,["additive_arrow_speed_modifiers_apply_to_area_of_effect"]=402,["aegis_unique_shield_max_value"]=403,["always_freeze"]=86,["always_stun"]=126,["always_stun_enemies_that_are_on_full_life"]=404,["animate_item_maximum_level_requirement"]=245,["apply_linked_curses_on_hit_%"]=234,["apply_linked_curses_with_dark_ritual"]=405,["apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"]=406,["arc_damage_+%_final_for_each_remaining_chain"]=407,["arc_damage_+%_final_per_chain"]=408,["arctic_armour_chill_when_hit_duration"]=409,["arctic_breath_maximum_number_of_skulls_allowed"]=410,["area_of_effect_+%_per_frost_fury_stage"]=411,["area_of_effect_+%_when_cast_on_frostbolt"]=412,["area_of_effect_+%_while_dead"]=63,["arrow_number_of_targets_to_pierce"]=83,["arrows_always_pierce"]=83,["attack_damage_+%"]=413,["attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour"]=414,["attack_repeat_count"]=227,["attack_skill_mana_leech_from_any_damage_permyriad"]=415,["attack_speed_+%"]=41,["attack_speed_+%_granted_from_skill"]=42,["attack_speed_+%_when_on_low_life"]=43,["attack_trigger_on_hit_%"]=262,["attack_trigger_on_kill_%"]=246,["attack_trigger_on_killing_bleeding_enemy_%"]=416,["attack_trigger_on_melee_hit_%"]=263,["attack_trigger_when_critically_hit_%"]=242,["attack_unusable_if_triggerable"]=244,["attacks_impale_on_hit_%_chance"]=417,["aura_effect_+%"]=66,["avoid_damage_%"]=418,["backstab_damage_+%"]=127,["base_actor_scale_+%"]=1,["base_arrow_speed_+%"]=303,["base_attack_speed_+%_per_frenzy_charge"]=67,["base_aura_area_of_effect_+%"]=65,["base_buff_duration_ms_+_per_removable_endurance_charge"]=155,["base_cast_speed_+%"]=50,["base_chance_to_freeze_%"]=86,["base_chance_to_ignite_%"]=88,["base_chance_to_poison_on_hit_%"]=345,["base_chance_to_shock_%"]=87,["base_chance_to_shock_%_from_skill"]=419,["base_chaos_damage_%_of_maximum_life_to_deal_per_minute"]=101,["base_chaos_damage_taken_per_minute_per_viper_strike_orb"]=130,["base_cold_damage_resistance_%"]=196,["base_cooldown_speed_+%"]=420,["base_critical_strike_multiplier_+"]=108,["base_damage_taken_+%"]=421,["base_deal_no_chaos_damage"]=422,["base_energy_shield_leech_from_spell_damage_permyriad"]=423,["base_life_regeneration_rate_per_minute"]=193,["base_mana_regeneration_rate_per_minute"]=322,["base_movement_velocity_+%"]=95,["base_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute"]=167,["base_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute"]=166,["base_number_of_effigies_allowed"]=609,["base_number_of_projectiles_in_spiral_nova"]=40,["base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute"]=103,["base_physical_damage_%_of_maximum_life_to_deal_per_minute"]=102,["base_physical_damage_%_to_convert_to_cold"]=310,["base_physical_damage_reduction_rating"]=171,["base_poison_damage_+%"]=350,["base_poison_duration_+%"]=351,["base_projectile_speed_+%"]=85,["base_reduce_enemy_cold_resistance_%"]=203,["base_reduce_enemy_fire_resistance_%"]=202,["base_reduce_enemy_lightning_resistance_%"]=204,["base_resist_all_elements_%"]=163,["base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute"]=165,["base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute"]=164,["base_skill_area_of_effect_+%"]=60,["base_stun_duration_+%"]=125,["base_stun_recovery_+%"]=151,["base_stun_threshold_reduction_+%"]=57,["base_use_life_in_place_of_mana"]=176,["berserk_attack_damage_+%_final"]=384,["berserk_attack_speed_+%_final"]=385,["berserk_base_damage_taken_+%_final"]=387,["berserk_minimum_rage"]=383,["berserk_movement_speed_+%_final"]=386,["berserk_rage_loss_+%_per_second"]=389,["blade_vortex_ailment_damage_+%_per_blade_final"]=220,["blade_vortex_critical_strike_chance_+%_per_blade"]=425,["blade_vortex_damage_+%_per_blade_final"]=219,["blade_vortex_hit_rate_+%_per_blade"]=218,["blade_vortex_hit_rate_ms"]=426,["bladefall_critical_strike_chance_+%_per_stage"]=427,["bladefall_damage_per_stage_+%_final"]=348,["bladestorm_attack_speed_+%_final_while_in_bloodstorm"]=428,["bladestorm_maximum_number_of_storms_allowed"]=429,["bladestorm_movement_speed_+%_while_in_sandstorm"]=430,["bladestorm_storm_damage_+%_final"]=431,["bleed_on_hit_with_attacks_%"]=432,["bleeding_damage_+%"]=433,["bleeding_skill_effect_duration"]=74,["blind_duration_+%"]=201,["blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance"]=358,["blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance"]=361,["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance"]=359,["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance"]=360,["blood_spears_base_number_of_spears"]=434,["bone_golem_damage_+%_final_per_non_golem_minion_nearby"]=435,["bone_golem_damage_per_non_golem_minion_nearby_maximum_%"]=435,["bone_golem_grants_minion_maximum_added_physical_damage"]=436,["bone_golem_grants_minion_minimum_added_physical_damage"]=436,["buff_effect_duration"]=69,["buff_effect_duration_+%_per_removable_endurance_charge"]=156,["buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5"]=157,["burn_damage_+%"]=94,["cannot_cause_bleeding"]=432,["cannot_inflict_status_ailments"]=175,["cannot_knockback"]=437,["cast_linked_spells_on_attack_crit_%"]=238,["cast_linked_spells_on_melee_kill_%"]=239,["cast_on_any_damage_taken_%"]=253,["cast_on_attack_use_%"]=247,["cast_on_crit_%"]=438,["cast_on_damage_taken_%"]=264,["cast_on_damage_taken_threshold"]=264,["cast_on_death_%"]=255,["cast_on_gain_avians_flight_or_avians_might_%"]=258,["cast_on_gain_skill"]=439,["cast_on_hit_%"]=259,["cast_on_hit_if_cursed_%"]=260,["cast_on_lose_cats_stealth"]=261,["cast_on_skill_use_%"]=248,["cast_on_stunned_%"]=257,["cast_speed_+%_granted_from_skill"]=5,["cast_speed_+%_when_on_low_life"]=49,["cast_when_hit_%"]=254,["cast_while_channelling_time_ms"]=269,["chain_strike_cone_radius_+_per_x_rage"]=440,["chain_strike_gain_x_rage_if_attack_hits"]=441,["chance_to_bleed_on_hit_%_chance_in_blood_stance"]=442,["chance_to_cast_on_kill_%"]=249,["chance_to_cast_on_kill_%_target_self"]=250,["chance_to_cast_on_rampage_tier_%"]=256,["chance_to_cast_when_your_trap_is_triggered_%"]=265,["chance_to_deal_double_damage_%"]=443,["chance_to_deal_double_damage_%_vs_bleeding_enemies"]=444,["chance_to_fortify_on_melee_hit_+%"]=308,["chance_to_freeze_shock_ignite_%"]=333,["chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%"]=445,["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=446,["chance_to_ignore_hexproof_%"]=447,["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=448,["chance_to_summon_support_ghost_on_killing_blow_%"]=449,["chance_to_trigger_on_animate_guardian_kill_%"]=450,["chance_to_trigger_on_animate_weapon_kill_%"]=451,["chaos_damage_taken_+%"]=344,["chaos_golem_grants_additional_physical_damage_reduction_%"]=316,["charged_attack_damage_per_stack_+%_final"]=452,["charged_blast_spell_damage_+%_final_per_stack"]=267,["charged_dash_channelling_damage_at_full_stacks_+%_final"]=453,["charged_dash_damage_+%_final_per_stack"]=454,["charged_dash_skill_inherent_movement_speed_+%_final"]=455,["chill_duration_+%"]=90,["chill_effect_+%"]=91,["chilled_ground_base_magnitude_override"]=456,["chilling_area_movement_velocity_+%"]=457,["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=458,["cluster_burst_spawn_amount"]=304,["cold_damage_+%"]=293,["cold_projectile_mine_enemy_critical_strike_chance_+%_against_self"]=766,["consecrated_ground_immune_to_curses"]=459,["corpse_consumption_life_to_gain"]=214,["corpse_consumption_mana_to_gain"]=215,["corpse_erruption_maximum_number_of_geyers"]=460,["corpse_explosion_monster_life_%"]=25,["corpse_warp_area_of_effect_+%_final_when_consuming_corpse"]=461,["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=365,["corrosive_shroud_gains_%_of_damage_from_inflicted_poisons"]=363,["corrosive_shroud_maximum_stored_poison_damage"]=364,["corrosive_shroud_poison_damage_+%_final_while_accumulating_poison"]=362,["corrosive_shroud_poison_dot_multiplier_+_while_aura_active"]=366,["created_slipstream_action_speed_+%"]=462,["critical_poison_dot_multiplier_+"]=464,["critical_strike_chance_+%"]=106,["critical_strike_chance_+%_per_power_charge"]=465,["critical_strike_chance_+%_per_righteous_charge"]=466,["critical_strike_chance_+%_vs_shocked_enemies"]=463,["critical_strike_multiplier_+_per_blade"]=467,["critical_strike_multiplier_+_per_power_charge"]=468,["critical_strike_multiplier_+_while_affected_by_elusive"]=109,["curse_effect_+%"]=270,["curse_effect_+%_vs_players"]=271,["curse_effect_duration"]=68,["cyclone_area_of_effect_+%_per_additional_melee_range"]=61,["cyclone_first_hit_damage_+%_final"]=353,["cyclone_gain_stage_every_x_ms_while_channelling"]=469,["cyclone_max_number_of_stages"]=470,["cyclone_melee_weapon_range_+_per_stage"]=471,["cyclone_movement_speed_+%_final"]=221,["cyclone_stage_decay_time_ms"]=472,["damage_+%"]=323,["damage_+%_per_chain"]=473,["damage_+%_vs_burning_enemies"]=285,["damage_+%_while_es_leeching"]=474,["damage_+%_while_life_leeching"]=475,["damage_+%_while_mana_leeching"]=476,["damage_cannot_be_reflected"]=288,["damage_infusion_%"]=39,["damage_over_time_+%"]=347,["damaging_ailments_deal_damage_+%_faster"]=477,["dark_ritual_damage_+%_final_per_curse_applied"]=478,["dark_ritual_skill_effect_duration_+%_per_curse_applied"]=479,["deal_no_elemental_damage"]=480,["degen_effect_+%"]=154,["desecrate_corpse_level"]=276,["desecrate_maximum_number_of_corpses"]=481,["desecrate_number_of_corpses_to_create"]=275,["disable_mine_detonation_cascade"]=482,["display_additional_projectile_per_2_mines_in_detonation_sequence"]=483,["display_additional_projectile_per_mine_in_detonation_sequence"]=484,["display_disable_melee_weapons"]=37,["display_hide_projectile_chain_num"]=752,["display_linked_curse_effect_+%"]=485,["display_max_blight_stacks"]=486,["display_max_fire_beam_stacks"]=487,["display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine"]=488,["display_modifiers_to_melee_attack_range_apply_to_skill_radius"]=489,["display_removes_and_grants_elusive_when_used"]=490,["display_skill_fixed_duration_buff"]=491,["display_skill_minions_level_is_corpse_level"]=492,["display_storm_burst_jump_time_ms"]=493,["display_this_skill_cooldown_does_not_recover_during_buff"]=494,["display_vaal_breach_no_drops_xp"]=495,["distance_before_form_change_+%"]=496,["divine_tempest_ailment_damage_+%_final_per_stage"]=497,["divine_tempest_damage_+%_final_while_channelling"]=498,["divine_tempest_hit_damage_+%_final_per_stage"]=499,["divine_tempest_stage_on_hitting_normal_magic_%_chance"]=500,["divine_tempest_stage_on_hitting_rare_unique"]=501,["double_slash_bleeding_damage_+%_final_in_blood_stance"]=502,["doubles_have_movement_speed_+%"]=113,["dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life"]=503,["dual_strike_damage_+%_final_against_enemies_on_full_life"]=504,["earthquake_aftershock_maximum_added_physical_damage"]=505,["earthquake_aftershock_minimum_added_physical_damage"]=505,["elemental_damage_+%_final_per_righteous_charge"]=506,["elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"]=507,["elemental_hit_damage_+10%_final_per_enemy_elemental_ailment"]=508,["elemental_hit_no_physical_chaos_damage"]=301,["elemental_status_effect_aura_radius"]=173,["elemental_strike_physical_damage_%_to_convert"]=335,["elusive_effect_+%"]=509,["endurance_charge_slam_damage_+%_final_with_endurance_charge"]=510,["endurance_charges_granted_per_one_hundred_nearby_enemies_during_endurance_warcry"]=79,["enemy_aggro_radius_+%"]=340,["energy_shield_delay_-%"]=152,["energy_shield_leech_from_any_damage_permyriad"]=54,["energy_shield_recharge_rate_+%"]=153,["energy_shield_regeneration_rate_+%"]=511,["expanding_fire_cone_angle_+%_per_stage"]=512,["expanding_fire_cone_final_wave_always_ignite"]=513,["expanding_fire_cone_maximum_number_of_stages"]=514,["expanding_fire_cone_radius_+_per_stage"]=515,["expanding_fire_cone_radius_limit"]=515,["expanding_fire_cone_release_hit_damage_+%_final"]=516,["explosive_arrow_explosion_base_damage_+permyriad"]=146,["explosive_arrow_explosion_maximum_added_fire_damage"]=147,["explosive_arrow_explosion_minimum_added_fire_damage"]=147,["explosive_arrow_ignite_damage_+%_final_per_stack"]=517,["explosive_arrow_maximum_bonus_explosion_radius"]=149,["extra_target_targeting_distance_+%"]=518,["faster_bleed_%"]=519,["feast_of_flesh_gain_X_energy_shield_per_corpse_consumed"]=520,["feast_of_flesh_gain_X_life_per_corpse_consumed"]=520,["feast_of_flesh_gain_X_mana_per_corpse_consumed"]=520,["fire_beam_additional_stack_damage_+%_final"]=521,["fire_beam_enemy_fire_resistance_%_maximum"]=522,["fire_beam_enemy_fire_resistance_%_per_stack"]=523,["fire_beam_length_+%"]=524,["fire_damage_+%"]=292,["fire_damage_taken_+"]=225,["fire_golem_grants_damage_+%"]=313,["fire_nova_damage_+%_per_repeat_final"]=324,["fire_shield_damage_threshold"]=161,["fire_storm_fireball_delay_ms"]=150,["fixed_skill_effect_duration"]=525,["flame_whip_damage_+%_final_vs_burning_enemies"]=284,["flameblast_ailment_damage_+%_final_per_stack"]=268,["flameblast_ignite_chance_+%_per_stage"]=526,["flamethrower_damage_+%_per_stage_final"]=216,["flamethrower_tower_trap_display_cast_speed_affects_rotation"]=527,["flamethrower_tower_trap_number_of_flamethrowers"]=528,["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=529,["flicker_strike_buff_movement_speed_+%"]=530,["fortify_duration_+%"]=309,["fortify_on_hit"]=531,["freeze_as_though_dealt_damage_+%"]=191,["freeze_duration_+%"]=89,["freeze_mine_cold_resistance_+_while_frozen"]=237,["frenzy_skill_attack_damage_+%_final_per_frenzy_charge"]=532,["frenzy_skill_attack_speed_+%_final_per_frenzy_charge"]=533,["frost_bolt_nova_number_of_frost_bolts_to_detonate"]=534,["frost_fury_added_duration_per_stage_ms"]=535,["frost_fury_base_fire_interval_ms"]=536,["frost_fury_duration_+%_per_stage"]=537,["frost_fury_fire_speed_+%_final_while_channelling"]=538,["frost_fury_fire_speed_+%_per_stage"]=539,["frost_fury_max_number_of_stages"]=540,["fuse_arrow_explosion_radius_+_per_fuse_arrow_orb"]=149,["gain_elusive_on_crit_%_chance"]=541,["gain_endurance_charge_on_melee_stun"]=236,["gain_endurance_charge_on_melee_stun_%"]=236,["gain_rage_on_hit"]=542,["gain_righteous_charge_on_mana_spent_%"]=543,["glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%"]=192,["global_always_hit"]=281,["global_bleed_on_hit"]=432,["global_chance_to_blind_on_hit_%"]=200,["global_chance_to_knockback_%"]=55,["global_hit_causes_monster_flee_%"]=179,["global_maim_on_hit"]=544,["global_maximum_added_fire_damage_vs_burning_enemies"]=687,["global_maximum_added_physical_damage_vs_bleeding_enemies"]=545,["global_minimum_added_fire_damage_vs_burning_enemies"]=687,["global_minimum_added_physical_damage_vs_bleeding_enemies"]=545,["global_poison_on_hit"]=349,["global_reduce_enemy_block_%"]=282,["grant_expanding_fire_cone_release_ignite_damage_+%_final"]=546,["groundslam_damage_to_close_targets_+%_final"]=369,["herald_of_agony_add_stack_on_poison"]=547,["herald_of_agony_poison_damage_+%_final"]=548,["herald_of_ash_burning_%_overkill_damage_per_minute"]=549,["herald_of_ash_burning_damage_+%_final"]=295,["herald_of_ash_fire_damage_+%"]=296,["herald_of_ash_spell_fire_damage_+%_final"]=297,["herald_of_ice_cold_damage_+%"]=298,["herald_of_light_attack_maximum_added_physical_damage"]=550,["herald_of_light_attack_minimum_added_physical_damage"]=550,["herald_of_light_spell_maximum_added_physical_damage"]=551,["herald_of_light_spell_minimum_added_physical_damage"]=551,["herald_of_light_summon_champion_on_kill"]=552,["herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%"]=553,["herald_of_thunder_lightning_damage_+%"]=299,["hinder_enemy_chaos_damage_taken_+%"]=554,["holy_relic_nova_life_regeneration_rate_per_minute"]=555,["holy_relic_nova_minion_life_regeneration_rate_per_second"]=556,["ice_crash_second_hit_damage_+%_final"]=311,["ice_crash_third_hit_damage_+%_final"]=312,["ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy"]=557,["ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy"]=557,["ice_golem_grants_accuracy_+%"]=315,["ice_golem_grants_critical_strike_chance_+%"]=314,["ice_nova_number_of_frost_bolts_to_cast_on"]=558,["ice_nova_number_of_repeats"]=278,["ice_nova_radius_+%_per_repeat"]=279,["ice_shield_moving_mana_degeneration_per_minute"]=223,["ice_spear_second_form_critical_strike_chance_+%"]=197,["ice_spear_second_form_critical_strike_multiplier_+"]=198,["ice_spear_second_form_projectile_speed_+%_final"]=199,["ignite_duration_+%"]=93,["ignites_apply_fire_resistance_+"]=559,["impale_debuff_effect_+%"]=560,["impale_phys_reduction_%_penalty"]=561,["impurity_cold_damage_taken_+%_final"]=562,["impurity_fire_damage_taken_+%_final"]=563,["impurity_lightning_damage_taken_+%_final"]=564,["incinerate_damage_+%_per_stage"]=217,["infernal_blow_explosion_damage_%_of_total_per_stack"]=565,["inspiration_charge_duration_+%"]=566,["inspiring_cry_damage_+%_per_one_hundred_nearby_enemies"]=320,["intermediary_chaos_area_damage_to_deal_per_minute"]=131,["intermediary_chaos_damage_to_deal_per_minute"]=132,["intermediary_chaos_skill_dot_area_damage_to_deal_per_minute"]=133,["intermediary_chaos_skill_dot_damage_to_deal_per_minute"]=134,["intermediary_cold_area_damage_to_deal_per_minute"]=135,["intermediary_cold_damage_to_deal_per_minute"]=136,["intermediary_cold_skill_dot_area_damage_to_deal_per_minute"]=137,["intermediary_cold_skill_dot_damage_to_deal_per_minute"]=138,["intermediary_fire_area_damage_to_deal_per_minute"]=139,["intermediary_fire_damage_to_deal_per_minute"]=140,["intermediary_fire_skill_dot_area_damage_to_deal_per_minute"]=141,["intermediary_fire_skill_dot_damage_to_deal_per_minute"]=142,["intimidating_cry_attack_speed_+%_per_100_enemies"]=321,["is_ranged_attack_totem"]=34,["is_remote_mine"]=31,["is_totem"]=34,["is_trap"]=32,["keystone_minion_instability"]=124,["keystone_point_blank"]=178,["kill_enemy_on_hit_if_under_10%_life"]=177,["killed_monster_dropped_item_quantity_+%"]=98,["killed_monster_dropped_item_rarity_+%"]=97,["knockback_distance_+%"]=56,["lacerate_hit_and_ailment_damage_+%_final_vs_bleeding_enemies"]=567,["life_gain_per_target"]=111,["life_leech_from_any_damage_permyriad"]=52,["life_leech_from_physical_attack_damage_permyriad"]=53,["life_regeneration_rate_+%"]=195,["life_regeneration_rate_per_minute_%"]=194,["light_radius_increases_apply_to_area_of_effect"]=28,["lightning_arrow_maximum_number_of_extra_targets"]=172,["lightning_explosion_mine_aura_damage_taken_+%"]=767,["lightning_golem_grants_attack_and_cast_speed_+%"]=318,["lightning_tendrils_channelled_larger_pulse_damage_+%_final"]=568,["lightning_tendrils_channelled_larger_pulse_interval"]=118,["lightning_tendrils_channelled_larger_pulse_radius_+"]=569,["lightning_tower_trap_interval_duration_ms"]=570,["lightning_tower_trap_number_of_beams"]=570,["lightning_trap_projectiles_leave_shocking_ground"]=289,["lose_all_righteous_charges_on_mana_use_threshold"]=571,["maim_effect_+%"]=572,["maim_on_hit_%"]=573,["mamba_strike_deal_%_of_all_poison_total_damage_per_minute"]=574,["mana_degeneration_per_minute"]=222,["max_crab_aspect_stacks"]=575,["max_number_of_lightning_warp_markers"]=576,["maximum_added_cold_damage_per_frenzy_charge"]=585,["maximum_added_cold_damage_vs_chilled_enemies"]=586,["maximum_added_lightning_damage_from_skill"]=587,["maximum_fire_damage_per_fuse_arrow_orb"]=148,["maximum_number_of_mirage_warriors"]=577,["maximum_number_of_snapping_adder_projectiles"]=578,["maximum_number_of_spinning_blades"]=343,["maximum_secondary_physical_damage_per_15_strength"]=588,["melee_ancestor_totem_grant_owner_attack_speed_+%"]=47,["melee_ancestor_totem_grant_owner_attack_speed_+%_final"]=44,["melee_attack_number_of_spirit_strikes"]=579,["melee_counterattack_trigger_on_block_%"]=243,["melee_counterattack_trigger_on_hit_%"]=241,["melee_damage_vs_bleeding_enemies_+%"]=326,["melee_physical_damage_+%"]=145,["melee_range_+"]=337,["melee_splash"]=226,["melee_splash_area_of_effect_+%_final"]=352,["melee_weapon_range_+"]=336,["mine_cannot_rearm"]=580,["mine_critical_strike_chance_+%_per_power_charge"]=581,["mine_detonates_instantly"]=582,["mine_detonation_radius_+%"]=36,["mine_detonation_speed_+%"]=583,["mine_duration"]=189,["mine_laying_speed_+%"]=188,["mine_throwing_speed_+%_per_frenzy_charge"]=584,["minimum_added_cold_damage_per_frenzy_charge"]=585,["minimum_added_cold_damage_vs_chilled_enemies"]=586,["minimum_added_lightning_damage_from_skill"]=587,["minimum_fire_damage_per_fuse_arrow_orb"]=148,["minimum_secondary_physical_damage_per_15_strength"]=588,["minion_additional_physical_damage_reduction_%"]=589,["minion_attack_speed_+%"]=114,["minion_cast_speed_+%"]=115,["minion_chance_to_deal_double_damage_%"]=590,["minion_chance_to_taunt_on_hit_%"]=591,["minion_damage_+%"]=112,["minion_duration"]=76,["minion_fire_damage_taken_+%"]=592,["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=593,["minion_larger_aggro_radius"]=771,["minion_maximum_all_elemental_resistances_%"]=594,["minion_maximum_life_+%"]=123,["minion_movement_speed_+%"]=116,["minions_are_defensive"]=772,["minions_inflict_exposure_on_hit_%_chance"]=595,["modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration"]=30,["modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration"]=29,["molten_shell_damage_absorb_limit_%_of_armour"]=596,["molten_shell_damage_absorbed_%"]=596,["molten_shell_max_damage_absorbed"]=596,["monster_response_time_ms"]=143,["mortal_call_elemental_damage_taken_+%_final"]=599,["mortal_call_physical_damage_taken_+%_final"]=600,["mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad"]=601,["mortar_barrage_mine_maximum_added_fire_damage_taken"]=768,["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"]=768,["mortar_barrage_mine_minimum_added_fire_damage_taken"]=768,["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"]=768,["movement_velocity_cap"]=119,["multistrike_damage_+%_final_on_first_repeat"]=602,["multistrike_damage_+%_final_on_second_repeat"]=603,["multistrike_damage_+%_final_on_third_repeat"]=604,["never_freeze"]=286,["never_ignite"]=287,["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=332,["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=331,["newpunishment_applied_buff_duration_ms"]=330,["newpunishment_attack_speed_+%"]=329,["newpunishment_melee_damage_+%_final"]=328,["newshocknova_first_ring_damage_+%_final"]=306,["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=605,["no_movement_speed"]=96,["non_damaging_ailment_effect_+%"]=606,["number_of_champions_of_light_allowed"]=607,["number_of_corpses_to_consume"]=608,["number_of_herald_scorpions_allowed"]=610,["number_of_mines_to_place"]=31,["number_of_relics_allowed"]=611,["number_of_support_ghosts_allowed"]=424,["number_of_totems_to_summon"]=34,["number_of_traps_to_throw"]=32,["offering_skill_effect_duration_per_corpse"]=22,["orb_of_storms_bolt_frequency_ms"]=612,parent="active_skill_gem_stat_descriptions",["petrification_statue_target_action_speed_-%"]=618,["phantasm_grant_buff_maximum_added_physical_damage"]=619,["phantasm_grant_buff_minimum_added_physical_damage"]=619,["phase_run_melee_physical_damage_+%_final"]=144,["phase_through_objects"]=339,["phys_cascade_trap_interval_duration_ms"]=620,["phys_cascade_trap_number_of_cascades"]=620,["physical_damage_%_to_add_as_chaos"]=291,["physical_damage_%_to_add_as_fire"]=290,["physical_damage_reduction_%_per_crab_aspect_stack"]=621,["physical_damage_reduction_rating_+%"]=162,["physical_damage_taken_+"]=224,["poison_dot_multiplier_+"]=622,["poison_skill_effect_duration"]=75,["power_siphon_fire_at_all_targets"]=40,["primary_projectile_display_targets_to_pierce"]=84,["primary_projectile_impale_chance_%"]=623,["projectile_damage_modifiers_apply_to_skill_dot"]=27,["projectile_ground_effect_duration"]=73,["projectile_number_of_targets_to_pierce"]=83,["projectile_spiral_nova_angle"]=40,["projectiles_barrage"]=40,["projectiles_nova"]=40,["projectiles_rain"]=624,["projectiles_return"]=213,["projectiles_return_if_no_hit_object"]=213,["puncture_bleeding_damage_+%_final"]=625,["puppet_master_duration_ms"]=626,["purge_expose_resist_%_matching_highest_element_damage"]=627,["quake_slam_fully_charged_explosion_damage_+%_final"]=341,["quick_guard_damage_absorb_limit"]=628,["quick_guard_damage_absorbed_%"]=628,["rain_of_arrows_additional_sequence_chance_%"]=629,["rain_of_arrows_sequences_to_fire"]=40,["raised_spectre_level"]=630,["reave_area_of_effect_+%_final_per_stage"]=235,["recall_sigil_target_search_range_+%"]=631,["reduce_enemy_dodge_%"]=283,["reduce_enemy_elemental_resistance_%"]=205,["returning_projectiles_always_pierce"]=371,["righteous_fire_spell_damage_+%_final"]=168,["sanctify_wave_damage_+%_final"]=632,["scorpion_minion_attack_speed_+%"]=633,["scorpion_minion_maximum_added_physical_damage"]=635,["scorpion_minion_minimum_added_physical_damage"]=635,["scorpion_minion_physical_damage_+%"]=634,["secondary_buff_effect_duration"]=70,["secondary_maximum_chaos_damage"]=19,["secondary_maximum_cold_damage"]=17,["secondary_maximum_fire_damage"]=16,["secondary_maximum_lightning_damage"]=18,["secondary_maximum_physical_damage"]=15,["secondary_minimum_chaos_damage"]=19,["secondary_minimum_cold_damage"]=17,["secondary_minimum_fire_damage"]=16,["secondary_minimum_lightning_damage"]=18,["secondary_minimum_physical_damage"]=15,["secondary_minion_duration"]=77,["secondary_skill_effect_duration"]=72,["shattering_steel_damage_+%_final_scaled_by_projectile_distance"]=636,["shield_block_%"]=159,["shield_charge_damage_+%_maximum"]=82,["shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range"]=80,["shield_charge_stun_duration_+%_maximum"]=81,["shield_spell_block_%"]=160,["shock_duration_+%"]=92,["shock_effect_+%"]=637,["shock_nova_ring_damage_+%"]=356,["shocked_ground_base_magnitude_override"]=638,["shockwave_slam_explosion_damage_+%_final"]=354,["shrapnel_trap_number_of_secondary_explosions"]=639,["sigil_attached_target_fire_penetration_%"]=640,["sigil_attached_target_lightning_penetration_%"]=641,["sigil_recall_extend_base_secondary_skill_effect_duration"]=642,["sigil_recall_extend_base_skill_effect_duration"]=643,["siphon_life_leech_from_damage_permyriad"]=342,["skeletal_chains_aoe_%_health_dealt_as_chaos_damage"]=2,["skeletal_chains_no_minions_damage_+%_final"]=207,["skeletal_chains_no_minions_radius_+"]=208,["skeletal_chains_no_minions_targets_self"]=206,["skill_angle_+%_in_sand_stance"]=644,["skill_area_angle_+%"]=645,["skill_buff_effect_+%"]=357,["skill_buff_grants_chance_to_poison_%"]=346,["skill_can_only_use_bow"]=725,["skill_can_only_use_non_melee_weapons"]=728,["skill_can_own_mirage_archers"]=646,["skill_code_movement_speed_+%_final"]=647,["skill_display_number_of_remote_mines_allowed"]=183,["skill_display_number_of_totems_allowed"]=181,["skill_display_number_of_traps_allowed"]=182,["skill_effect_and_damaging_ailment_duration_+%"]=648,["skill_effect_duration"]=71,["skill_effect_duration_+%_per_removable_frenzy_charge"]=158,["skill_effect_duration_per_100_int"]=649,["skill_max_unleash_seals"]=764,["skill_triggered_when_you_focus_chance_%"]=650,["skill_used_by_mirage_warrior_damage_+%_final"]=651,["skill_withered_duration_ms"]=110,["slam_ancestor_totem_grant_owner_melee_damage_+%"]=48,["slam_ancestor_totem_grant_owner_melee_damage_+%_final"]=45,["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=46,["slither_wither_stacks"]=652,["snapping_adder_released_projectile_damage_+%_final"]=370,["spectre_duration"]=78,["spell_cast_time_cannot_be_modified"]=653,["spell_damage_+%"]=170,["spell_damage_modifiers_apply_to_skill_dot"]=26,["spell_echo_plus_chance_double_damage_%_final"]=654,["spell_maximum_added_cold_damage"]=294,["spell_maximum_added_lightning_damage"]=300,["spell_maximum_base_cold_damage_+_per_10_intelligence"]=24,["spell_maximum_base_cold_damage_per_removable_frenzy_charge"]=23,["spell_maximum_base_fire_damage_per_removable_endurance_charge"]=21,["spell_maximum_base_lightning_damage_per_removable_power_charge"]=20,["spell_maximum_chaos_damage"]=14,["spell_maximum_cold_damage"]=12,["spell_maximum_fire_damage"]=11,["spell_maximum_lightning_damage"]=13,["spell_maximum_physical_damage"]=10,["spell_minimum_added_cold_damage"]=294,["spell_minimum_added_lightning_damage"]=300,["spell_minimum_base_cold_damage_+_per_10_intelligence"]=24,["spell_minimum_base_cold_damage_per_removable_frenzy_charge"]=23,["spell_minimum_base_fire_damage_per_removable_endurance_charge"]=21,["spell_minimum_base_lightning_damage_per_removable_power_charge"]=20,["spell_minimum_chaos_damage"]=14,["spell_minimum_cold_damage"]=12,["spell_minimum_fire_damage"]=11,["spell_minimum_lightning_damage"]=13,["spell_minimum_physical_damage"]=10,["spell_only_castable_on_death"]=240,["spell_repeat_count"]=38,["spell_uncastable_if_triggerable"]=240,["spider_aspect_max_web_count"]=655,["static_strike_base_zap_frequency_ms"]=656,["static_strike_beam_damage_+%_final"]=657,["static_strike_beam_damage_+%_final_while_moving"]=658,["static_strike_explosion_damage_+%_final"]=302,["static_strike_number_of_beam_targets"]=659,["static_strike_zap_speed_+%_per_stack"]=660,["stone_golem_grants_base_life_regeneration_rate_per_minute"]=317,["storm_burst_new_damage_+%_final_per_remaining_teleport_zap"]=661,["summon_cold_resistance_+"]=231,["summon_fire_resistance_+"]=230,["summon_lightning_resistance_+"]=232,["summon_mirage_archer_on_hit"]=662,["summon_mirage_warrior_on_crit"]=663,["summon_totem_cast_speed_+%"]=327,["summoned_spider_grants_attack_speed_+%"]=664,["summoned_spider_grants_poison_damage_+%"]=665,["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=666,["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=667,["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=668,["support_anticipation_charge_gain_interval_ms"]=764,["support_anticipation_rapid_fire_count"]=764,["support_arcane_surge_cast_speed_+%"]=374,["support_arcane_surge_duration_ms"]=375,["support_arcane_surge_gain_buff_on_mana_use_threshold"]=373,["support_arcane_surge_mana_regeneration_rate_per_minute_%"]=374,["support_arcane_surge_spell_damage_+%_final"]=374,["support_attack_totem_attack_speed_+%_final"]=274,["support_aura_duration_buff_duration"]=669,["support_aura_duration_reserve_duration"]=670,["support_better_ailments_ailment_damage_+%_final"]=671,["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=325,["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=672,["support_chance_to_bleed_bleeding_damage_+%_final"]=673,["support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=675,["support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"]=674,["support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=677,["support_chills_also_grant_cold_damage_taken_per_minute_+%"]=676,["support_concentrated_effect_skill_area_of_effect_+%_final"]=64,["support_debilitate_hit_damage_+%_final_per_poison_stack"]=678,["support_debilitate_hit_damage_max_poison_stacks"]=678,["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=679,["support_ghost_duration"]=680,["support_greater_spell_echo_area_of_effect_+%_per_repeat"]=681,["support_greater_spell_echo_spell_damage_+%_final_per_repeat"]=682,["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=338,["support_ignite_prolif_ignite_damage_+%_final"]=683,["support_ignite_proliferation_radius"]=174,["support_innervate_buff_duration_ms"]=378,["support_innervate_gain_buff_on_killing_shocked_enemy"]=376,["support_innervate_maximum_added_lightning_damage"]=377,["support_innervate_minimum_added_lightning_damage"]=377,["support_maim_chance_physical_damage_+%_final"]=684,["support_maimed_enemies_physical_damage_taken_+%"]=685,["support_minefield_mine_throwing_speed_+%_final"]=686,["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=688,["support_minion_defensive_stance_minion_damage_taken_+%_final"]=689,["support_minion_maximum_life_+%_final"]=122,["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=690,["support_minion_totem_resistance_elemental_damage_+%_final"]=691,["support_mirage_archer_attack_speed_+%_final"]=692,["support_mirage_archer_duration"]=693,["support_multicast_cast_speed_+%_final"]=51,["support_multiple_attacks_melee_attack_speed_+%_final"]=229,["support_multiple_projectiles_critical_strike_chance_+%_final"]=107,["support_overpowered_duration_ms"]=694,["support_parallel_projectile_number_of_points_per_side"]=695,["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=696,["support_projectile_attack_speed_+%_final"]=272,["support_pulverise_area_of_effect_+%_final"]=697,["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=698,["support_reduce_enemy_block_and_spell_block_%"]=699,["support_reduce_enemy_dodge_and_spell_dodge_%"]=700,["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=769,["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=701,["support_ruthless_big_hit_damage_+%_final"]=380,["support_ruthless_big_hit_max_count"]=379,["support_ruthless_big_hit_stun_base_duration_override_ms"]=382,["support_ruthless_blow_bleeding_damage_from_melee_hits_+%_final"]=381,["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=702,["support_scion_onslaught_on_killing_blow_%_chance"]=703,["support_scion_onslaught_on_killing_blow_duration_ms"]=703,["support_slashing_buff_attack_cast_speed_+%_final_to_grant"]=705,["support_slashing_buff_duration_ms"]=704,["support_slashing_damage_+%_final_from_distance"]=706,["support_spell_boost_area_damage_+%_final_per_charge"]=707,["support_spell_boost_area_of_effect_+%_final_per_charge"]=708,["support_spell_boost_charge_loss_interval_ms_while_moving"]=709,["support_spell_cascade_area_of_effect_+%_final"]=710,["support_spell_cascade_number_of_cascades_per_side"]=711,["support_spell_cascade_sideways"]=711,["support_spell_rapid_fire_repeat_use_damage_+%_final"]=765,["support_spell_totem_cast_speed_+%_final"]=273,["support_storm_barrier_chaos_damage_+%_final_to_apply"]=712,["support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling"]=719,["support_storm_barrier_cold_damage_+%_final_to_apply"]=713,["support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling"]=720,["support_storm_barrier_damage_buff_duration_ms"]=714,["support_storm_barrier_fire_damage_+%_final_to_apply"]=715,["support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling"]=721,["support_storm_barrier_lightning_damage_+%_final_to_apply"]=716,["support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling"]=722,["support_storm_barrier_physical_damage_+%_final_to_apply"]=717,["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=718,["support_unbound_ailments_ailment_damage_+%_final"]=723,["supported_skill_can_only_use_axe_and_sword"]=724,["supported_skill_can_only_use_dagger_and_claw"]=726,["supported_skill_can_only_use_mace_and_staff"]=727,["tectonic_slam_chance_to_use_endurance_charge_%"]=729,["tethered_enemies_take_attack_projectile_damage_taken_+%"]=730,["tethered_movement_speed_+%_final_per_rope"]=731,["tethered_movement_speed_+%_final_per_rope_vs_rare"]=732,["tethered_movement_speed_+%_final_per_rope_vs_unique"]=733,["tethering_arrow_display_rope_limit"]=734,["throw_traps_in_circle_radius"]=33,["total_number_of_arrows_to_fire"]=40,["total_number_of_projectiles_to_fire"]=40,["totem_duration"]=184,["totem_life_+%"]=190,["totem_range"]=180,["totems_cannot_evade"]=185,["trap_critical_strike_multiplier_+_per_power_charge"]=735,["trap_duration"]=186,["trap_throwing_speed_+%"]=187,["trap_throwing_speed_+%_per_frenzy_charge"]=736,["trap_trigger_radius_+%"]=35,["trigger_after_spending_200_mana_%_chance"]=737,["trigger_on_bow_attack_%"]=738,["trigger_on_corpse_consume_%_chance"]=739,["trigger_on_kill_vs_frozen_enemy_%"]=740,["trigger_on_skill_use_%_if_you_have_a_spirit_charge"]=252,["trigger_on_skill_use_%_if_you_have_a_void_arrow"]=741,["trigger_on_skill_use_from_chest_%"]=251,["triggered_by_item_buff"]=742,["unearth_corpse_level"]=277,["vaal_blade_vortex_has_10_spinning_blades"]=743,["vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura"]=445,["vaal_earthquake_maximum_aftershocks"]=744,["vaal_flameblast_radius_+_per_stage"]=745,["vaal_lightning_strike_beam_damage_+%_final"]=280,["vaal_righteous_fire_life_and_es_%_as_damage_per_second"]=3,["vaal_righteous_fire_life_and_es_%_to_lose_on_use"]=3,["vaal_righteous_fire_spell_damage_+%_final"]=169,["vaal_storm_call_delay_ms"]=746,["virtual_always_pierce"]=83,["virtual_berserk_hundred_times_rage_loss_per_second"]=388,["virtual_bladefall_number_of_volleys"]=747,["virtual_chill_minimum_slow_%"]=748,["virtual_cyclone_skill_area_of_effect_+%_from_melee_range"]=62,["virtual_divine_tempest_number_of_nearby_enemies_to_zap"]=749,["virtual_firestorm_drop_chilled_ground_duration_ms"]=319,["virtual_mine_detonation_time_ms"]=750,["virtual_minion_elemental_resistance_%"]=233,["virtual_number_of_additional_curses_allowed"]=751,["virtual_number_of_chains"]=209,["virtual_number_of_chains_for_beams"]=210,["virtual_number_of_chains_for_projectiles"]=752,["virtual_number_of_forks_for_projectiles_final"]=212,["virtual_projectile_number_to_split"]=211,["virtual_projectiles_cannot_pierce"]=83,["virtual_spider_aspect_web_interval_ms"]=753,["virtual_steelskin_damage_%_taken_to_buff"]=754,["virtual_steelskin_damage_limit"]=754,["virtual_support_storm_barrier_damage_buff_time_threshold_ms"]=755,["virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling"]=756,["virtual_tectonic_slam_%_chance_to_do_charged_slam"]=757,["virulent_arrow_damage_+%_final_per_stage"]=758,["virulent_arrow_maximum_number_of_stacks"]=759,["virulent_arrow_number_of_pod_projectiles"]=760,["virulent_arrow_pod_projectile_damage_+%_final"]=761,["volatile_dead_number_of_corpses_to_consume"]=762,["wall_expand_delay_ms"]=128,["wall_maximum_length"]=129,["withered_on_hit_chance_%"]=763,["zombie_slam_cooldown_speed_+%"]=770} \ No newline at end of file +return {[1]={stats={[1]="base_actor_scale_+%"}},[2]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Sacrifices %1%%% of Skeleton's Life to deal that much Chaos Damage"}}},name="skeletal_chains_aoe_health_percent",stats={[1]="skeletal_chains_aoe_%_health_dealt_as_chaos_damage"}},[3]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Sacrifices %1%%% of your total Energy Shield and Life\nDeals %2%%% of Sacrificed Energy Shield and Life as Fire Damage per second"}}},name="vrf_loss",stats={[1]="vaal_righteous_fire_life_and_es_%_to_lose_on_use",[2]="vaal_righteous_fire_life_and_es_%_as_damage_per_second"}},[4]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Physical Damage"}}},name="weapon_physical_damage_range",stats={[1]="0"}},[5]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed"}}},name="cast_speed_incr_skill_granted",stats={[1]="cast_speed_+%_granted_from_skill"}},[6]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Fire Damage"}}},name="weapon_fire_damage_range",stats={[1]="0"}},[7]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Cold Damage"}}},name="weapon_cold_damage_range",stats={[1]="0"}},[8]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Lightning Damage"}}},name="weapon_lightning_damage_range",stats={[1]="0"}},[9]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Chaos Damage"}}},name="weapon_chaos_damage_range",stats={[1]="0"}},[10]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Physical Damage"}}},name="spell_physical_damage_range",stats={[1]="spell_minimum_physical_damage",[2]="spell_maximum_physical_damage"}},[11]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Fire Damage"}}},name="spell_fire_damage_range",stats={[1]="spell_minimum_fire_damage",[2]="spell_maximum_fire_damage"}},[12]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Cold Damage"}}},name="spell_cold_damage_range",stats={[1]="spell_minimum_cold_damage",[2]="spell_maximum_cold_damage"}},[13]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Lightning Damage"}}},name="spell_lightning_damage_range",stats={[1]="spell_minimum_lightning_damage",[2]="spell_maximum_lightning_damage"}},[14]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Chaos Damage"}}},name="spell_chaos_damage_range",stats={[1]="spell_minimum_chaos_damage",[2]="spell_maximum_chaos_damage"}},[15]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Physical Damage"}}},name="secondary_physical_damage_range",stats={[1]="secondary_minimum_physical_damage",[2]="secondary_maximum_physical_damage"}},[16]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Fire Damage"}}},name="secondary_fire_damage_range",stats={[1]="secondary_minimum_fire_damage",[2]="secondary_maximum_fire_damage"}},[17]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Cold Damage"}}},name="secondary_cold_damage_range",stats={[1]="secondary_minimum_cold_damage",[2]="secondary_maximum_cold_damage"}},[18]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Lightning Damage"}}},name="secondary_lightning_damage_range",stats={[1]="secondary_minimum_lightning_damage",[2]="secondary_maximum_lightning_damage"}},[19]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Chaos Damage"}}},name="secondary_chaos_damage_range",stats={[1]="secondary_minimum_chaos_damage",[2]="secondary_maximum_chaos_damage"}},[20]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% base Lightning Damage per Power Charge removed"}}},name="lightning_damage_per_power_charge_range",stats={[1]="spell_minimum_base_lightning_damage_per_removable_power_charge",[2]="spell_maximum_base_lightning_damage_per_removable_power_charge"}},[21]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% base Fire Damage per Endurance Charge removed"}}},name="fire_damage_per_endurance_charge_range",stats={[1]="spell_minimum_base_fire_damage_per_removable_endurance_charge",[2]="spell_maximum_base_fire_damage_per_removable_endurance_charge"}},[22]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Additional %1% seconds Base Duration per extra corpse Consumed"}}},name="offering_duration_per_corpse",stats={[1]="offering_skill_effect_duration_per_corpse"}},[23]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% base Cold Damage per Frenzy Charge removed"}}},name="cold_damage_per_frenzy_charge_range",stats={[1]="spell_minimum_base_cold_damage_per_removable_frenzy_charge",[2]="spell_maximum_base_cold_damage_per_removable_frenzy_charge"}},[24]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% base Cold Damage per 10 Intelligence"}}},name="cold_damage_per_int",stats={[1]="spell_minimum_base_cold_damage_+_per_10_intelligence",[2]="spell_maximum_base_cold_damage_+_per_10_intelligence"}},[25]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Explosion deals base Fire Damage equal to %1%%% of the corpse's Maximum Life"}}},name="corpse_life_percentage",stats={[1]="corpse_explosion_monster_life_%"}},[26]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Spell Damage apply to this Skill's Damage Over Time effect"}}},name="spell_damage_over_time",stats={[1]="spell_damage_modifiers_apply_to_skill_dot"}},[27]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Projectile Damage apply to this Skill's Damage Over Time effect"}}},name="projectile_damage_over_time",stats={[1]="projectile_damage_modifiers_apply_to_skill_dot"}},[28]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Light Radius also apply to this Skill's Area of Effect"}}},name="light_raidus_is_area",stats={[1]="light_radius_increases_apply_to_area_of_effect"}},[29]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Skill Effect Duration also apply to this Skill's Soul Gain Prevention"}}},name="soul_prevention_skill_duration",stats={[1]="modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration"}},[30]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Buff Duration also apply to this Skill's Soul Gain Prevention"}}},name="soul_prevention_buff_duration",stats={[1]="modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration"}},[31]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]=1}},text="Throws a Remote Mine which uses this Skill when detonated"},[2]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=2,[2]="#"}},text="Throws %2% Remote Mines which use this Skill when detonated"}}},name="mine",stats={[1]="is_remote_mine",[2]="number_of_mines_to_place"}},[32]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]=1}},text="Throws a Trap which uses this Skill when Triggered"},[2]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=2,[2]="#"}},text="Throws up to %2% Traps which use this Skill when Triggered"}}},name="trap",stats={[1]="is_trap",[2]="number_of_traps_to_throw"}},[33]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Traps are thrown randomly around you"}}},name="trap_throw_random",stats={[1]="throw_traps_in_circle_radius"}},[34]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=1,[2]=1},[3]={[1]=0,[2]=0}},text="Summons a Totem which uses this Skill"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=1,[2]=1},[3]={[1]=0,[2]=0}},text="Summons a Ballista Totem which uses this Skill"},[3]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0}},text="Summons %1% Totems which use this Skill"},[4]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0}},text="Summons %1% Ballista Totems which use this Skill"}}},stats={[1]="is_totem",[2]="number_of_totems_to_summon",[3]="is_ranged_attack_totem"}},[35]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Trigger Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Trigger Area of Effect"}}},name="trap_radius",stats={[1]="trap_trigger_radius_+%"}},[36]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Detonation Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Detonation Area of Effect"}}},name="mine_radius",stats={[1]="mine_detonation_radius_+%"}},[37]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Skill cannot be used with Melee Weapons"}}},name="disable_melee",stats={[1]="display_disable_melee_weapons"}},[38]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spell Repeats an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spell Repeats an additional %1% times"}}},name="multicast",stats={[1]="spell_repeat_count"}},[39]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Transfers %1%%% of Damage taken by each nearby enemy to the target"}}},name="damage_infusion",stats={[1]="damage_infusion_%"}},[40]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]="#",[2]="#"}},text="Fires Projectiles at each nearby Enemy"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires Projectiles in random directions"},[3]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires Projectiles in a spiral"},[4]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires Projectiles in a spiral"},[5]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires Projectiles in a circle"},[6]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires Projectiles sequentially"},[7]={limit={[1]={[1]=0,[2]=0},[2]={[1]=1,[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]="#",[2]="#"}},text="Fires %2% Projectiles at each nearby Enemy"},[8]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]="#"},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=1,[2]=1}},text="Fires a sequence of %3% Arrows"},[9]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]="#"},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=2,[2]="#"}},text="Fires %8% sequences of %3% Arrows"},[10]={limit={[1]={[1]=0,[2]=0},[2]={[1]=1,[2]=1},[3]={[1]=0,[2]=0},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires 1 Projectile in a random direction"},[11]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires %2% Projectiles in random directions"},[12]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]=1},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires 1 Arrow in a random direction"},[13]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]="#"},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires %3% Arrows in random directions"},[14]={limit={[1]={[1]=0,[2]=0},[2]={[1]=1,[2]=1},[3]={[1]=0,[2]=0},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires 1 Projectile"},[15]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]=1},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=1}},text="Fires 1 Arrow"},[16]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %2% Projectiles"},[17]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]="#"},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %3% Arrows"},[18]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires %2% Projectiles in a spiral"},[19]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]="#"},[4]={[1]=1,[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"},[8]={[1]=0,[2]=0}},text="Fires %3% Arrows in a spiral"},[20]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %2% Projectiles in a spiral"},[21]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]="#"},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %3% Arrows in a spiral"},[22]={limit={[1]={[1]=0,[2]=0},[2]={[1]=1,[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %2% Projectiles in a circle"},[23]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]="#"},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %3% Arrows in a circle"},[24]={limit={[1]={[1]=0,[2]=0},[2]={[1]=2,[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %2% Projectiles sequentially"},[25]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]="#"},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0},[8]={[1]=0,[2]=0}},text="Fires %3% Arrows sequentially"}}},name="number_of_projectiles",stats={[1]="power_siphon_fire_at_all_targets",[2]="total_number_of_projectiles_to_fire",[3]="total_number_of_arrows_to_fire",[4]="base_number_of_projectiles_in_spiral_nova",[5]="projectile_spiral_nova_angle",[6]="projectiles_nova",[7]="projectiles_barrage",[8]="rain_of_arrows_sequences_to_fire"}},[41]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed"}}},name="attack_speed_incr",stats={[1]="attack_speed_+%"}},[42]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed"}}},name="attack_speed_incr_skill_granted",stats={[1]="attack_speed_+%_granted_from_skill"}},[43]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed when on Low Life"}}},name="attack_speed_incr_on_low_life",stats={[1]="attack_speed_+%_when_on_low_life"}},[44]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed while Totem is Active"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed while Totem is Active"}}},name="ancestor_totem_grants_attack_speed",stats={[1]="melee_ancestor_totem_grant_owner_attack_speed_+%_final"}},[45]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Melee Damage while Totem is Active"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Melee Damage while Totem is Active"}}},name="ancestor_totem_grants_melee_damage",stats={[1]="slam_ancestor_totem_grant_owner_melee_damage_+%_final"}},[46]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage gained as Extra Fire Damage while Totem is Active"}}},name="ancestor_totem_grants_fire_damage",stats={[1]="slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"}},[47]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while Totem is Active"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while Totem is Active"}}},name="ancestor_totem_grants_attack_speed_incr",stats={[1]="melee_ancestor_totem_grant_owner_attack_speed_+%"}},[48]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage while Totem is Active"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage while Totem is Active"}}},name="ancestor_totem_grants_melee_damage_incr",stats={[1]="slam_ancestor_totem_grant_owner_melee_damage_+%"}},[49]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed when on Low Life"}}},name="cast_speed_incr_on_low_life",stats={[1]="cast_speed_+%_when_on_low_life"}},[50]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed"}}},name="cast_speed_incr",stats={[1]="base_cast_speed_+%"}},[51]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Cast Speed"}}},name="multicast_cast_speed_incr",stats={[1]="support_multicast_cast_speed_+%_final"}},[52]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life"}}},name="life_leech_from_any",stats={[1]="life_leech_from_any_damage_permyriad"}},[53]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Physical Damage Leeched as Life"}}},name="life_leech_from_physical",stats={[1]="life_leech_from_physical_attack_damage_permyriad"}},[54]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Energy Shield"}}},name="energy_shield_leech_from_any",stats={[1]="energy_shield_leech_from_any_damage_permyriad"}},[55]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Knock enemies Back on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=100,[2]="#"}},text="Knocks enemies Back on Hit"}}},name="knockback",stats={[1]="global_chance_to_knockback_%"}},[56]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Knockback Distance"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Knockback Distance"}}},name="knockback_distance",stats={[1]="knockback_distance_+%"}},[57]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Stun Threshold"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Enemy Stun Threshold"}}},name="stun_threshold_reduction_incr",stats={[1]="base_stun_threshold_reduction_+%"}},[58]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to radius"}}},name="radius_add",stats={[1]="active_skill_base_radius_+"}},[59]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to radius of Consecrated Ground"}}},name="conescrated_ground_radius_add",stats={[1]="active_skill_ground_consecration_radius_+"}},[60]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect"}}},name="area_of_effect_incr",stats={[1]="base_skill_area_of_effect_+%"}},[61]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per 1 additional Melee Strike Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per 1 additional Melee Strike Range"}}},name="cyclone_area_pluspercent_per_range_do_not_show_on_skill",stats={[1]="cyclone_area_of_effect_+%_per_additional_melee_range"}},[62]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect from additional Melee Strike Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect from additional Melee Strike Range"}}},name="cyclone_area_pluspercent_from_melee_range",stats={[1]="virtual_cyclone_skill_area_of_effect_+%_from_melee_range"}},[63]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while Dead"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while Dead"}}},name="area_of_effect_incr_while_dead",stats={[1]="area_of_effect_+%_while_dead"}},[64]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area of Effect"}}},name="concentrated_area_of_effect",stats={[1]="support_concentrated_effect_skill_area_of_effect_+%_final"}},[65]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Aura Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Aura Area of Effect"}}},name="aura_area_of_effect_incr",stats={[1]="base_aura_area_of_effect_+%"}},[66]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Aura"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced effect of Aura"}}},name="aura_effect_incr",stats={[1]="aura_effect_+%"}},[67]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed per Frenzy Charge"}}},name="attack_speed_per_frenzy_charge",stats={[1]="base_attack_speed_+%_per_frenzy_charge"}},[68]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Curse Lasts %1% seconds"}}},name="curse_duration",stats={[1]="curse_effect_duration"}},[69]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Buff Lasts %1% seconds"}}},name="buff_duration",stats={[1]="buff_effect_duration"}},[70]={lang={English={[1]={limit={[1]={[1]=1000,[2]=1000}},text="Secondary Buff Lasts 1 second"},[2]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Secondary Buff Lasts %1% seconds"}}},name="secondary_buff_duration",stats={[1]="secondary_buff_effect_duration"}},[71]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Duration is %1% seconds"}}},name="skill_duration",stats={[1]="skill_effect_duration"}},[72]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Secondary Duration is %1% seconds"}}},name="secondary_skill_duration",stats={[1]="secondary_skill_effect_duration"}},[73]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Ground effects last %1% seconds"}}},name="projectile_ground_effect_duration",stats={[1]="projectile_ground_effect_duration"}},[74]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},[2]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]="#"}},text="Bleeding Lasts %1% seconds"}}},name="bleeding_skill_duration",stats={[1]="bleeding_skill_effect_duration"}},[75]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},[2]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]="#"}},text="Poison Lasts %1% seconds"}}},name="poison_skill_duration",stats={[1]="poison_skill_effect_duration"}},[76]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions Last %1% seconds"}}},name="minion_duration",stats={[1]="minion_duration"}},[77]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions Last %1% seconds"}}},name="secondary_minion_duration",stats={[1]="secondary_minion_duration"}},[78]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Spectres Last %1% seconds"}}},name="spectre_duration",stats={[1]="spectre_duration"}},[79]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Endurance Charges granted per one hundred nearby enemies"}}},name="enduring_cry_charges",stats={[1]="endurance_charges_granted_per_one_hundred_nearby_enemies_during_endurance_warcry"}},[80]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Threshold reduction on enemies at Maximum charge distance"},[2]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Threshold reduction on enemies at Maximum charge distance"}}},name="shield_charge_stun_threshold",stats={[1]="shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range"}},[81]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration on enemies at Maximum charge distance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration on enemies at Maximum charge distance"}}},name="shield_charge_stun",stats={[1]="shield_charge_stun_duration_+%_maximum"}},[82]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits at Maximum Charge Distance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits at Maximum Charge Distance"}}},name="shield_charge_damage",stats={[1]="shield_charge_damage_+%_maximum"}},[83]={lang={English={[1]={limit={[1]={[1]=1,[2]=1},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0}},text="Projectiles Pierce 1 Target"},[2]={limit={[1]={[1]=2,[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0}},text="Projectiles Pierce %1% Targets"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0}},text="Projectiles Pierce all Targets"},[4]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]="#"},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0}},text="Projectiles cannot Pierce"},[5]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=1,[2]=1},[5]={[1]=0,[2]=0}},text="Arrows Pierce 1 Target"},[6]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=2,[2]="#"},[5]={[1]=0,[2]=0}},text="Arrows Pierce %4% Targets"},[7]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"}},text="Arrows Pierce all Targets"}}},name="pierce_num",stats={[1]="projectile_number_of_targets_to_pierce",[2]="virtual_always_pierce",[3]="virtual_projectiles_cannot_pierce",[4]="arrow_number_of_targets_to_pierce",[5]="arrows_always_pierce"}},[84]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Primary Projectile Pierces 1 Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Primary Projectile Pierces %1% Targets"}}},name="primary_proj_pierce_num",stats={[1]="primary_projectile_display_targets_to_pierce"}},[85]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Speed"}}},name="projectile_speed_incr",stats={[1]="base_projectile_speed_+%"}},[86]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="Always Freezes enemies"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0}},text="%1%%% chance to Freeze enemies"}}},name="freeze_chance",stats={[1]="base_chance_to_freeze_%",[2]="always_freeze"}},[87]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Shock enemies"}}},name="shock_chance",stats={[1]="base_chance_to_shock_%"}},[88]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Ignite enemies"}}},name="burn_chance",stats={[1]="base_chance_to_ignite_%"}},[89]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freeze Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freeze Duration on enemies"}}},name="freeze_duration",stats={[1]="freeze_duration_+%"}},[90]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chill Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chill Duration on enemies"}}},name="chill_duration",stats={[1]="chill_duration_+%"}},[91]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Chill"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Chill"}}},name="chill_effect",stats={[1]="chill_effect_+%"}},[92]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shock Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shock Duration on enemies"}}},name="shock_duration",stats={[1]="shock_duration_+%"}},[93]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ignite Duration on enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ignite Duration on enemies"}}},name="burn_duration",stats={[1]="ignite_duration_+%"}},[94]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Burning Damage"}}},name="burn_damage",stats={[1]="burn_damage_+%"}},[95]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed"}}},name="movement_speed_incr",stats={[1]="base_movement_velocity_+%"}},[96]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Locks enemy in place"}}},name="no_movement_speed",stats={[1]="no_movement_speed"}},[97]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain enemies"}}},name="killed_monster_dropped_item_rarity_incr",stats={[1]="killed_monster_dropped_item_rarity_+%"}},[98]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Slain enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Dropped by Slain enemies"}}},name="killed_monster_dropped_item_quantity_incr",stats={[1]="killed_monster_dropped_item_quantity_+%"}},[99]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1% additional Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Subtracts %1% from Accuracy Rating"}}},name="accuracy_rating",stats={[1]="accuracy_rating"}},[100]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating"}}},name="accuracy_rating_incr",stats={[1]="accuracy_rating_+%"}},[101]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% of your Maximum Life per second as Chaos Damage"}}},name="chaos_damage_percent_of_life_per_minute",stats={[1]="base_chaos_damage_%_of_maximum_life_to_deal_per_minute"}},[102]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% of your Maximum Life per second as Physical Damage"}}},name="physical_damage_percent_of_life_per_minute",stats={[1]="base_physical_damage_%_of_maximum_life_to_deal_per_minute"}},[103]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% of your Maximum Energy Shield per second as Physical Damage"}}},name="physical_damage_percent_of_energy_shield_per_minute",stats={[1]="base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute"}},[104]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain a Frenzy Charge on Kill"}}},name="frenzy_on_kill",stats={[1]="add_frenzy_charge_on_kill"}},[105]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Frenzy Charge on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Frenzy Charge on Kill"}}},name="frenzy_on_kill_chance",stats={[1]="add_frenzy_charge_on_kill_%_chance"}},[106]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance"}}},name="critical_strike_chance_incr",stats={[1]="critical_strike_chance_+%"}},[107]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Critical Strike Chance"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Critical Strike Chance"}}},name="mulpile_projectiles_critical_strike_chance_incr",stats={[1]="support_multiple_projectiles_critical_strike_chance_+%_final"}},[108]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier"}}},name="critical_strike_multiplier_incr",stats={[1]="base_critical_strike_multiplier_+"}},[109]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier while Elusive"}}},name="crit_multi_while_elusive",stats={[1]="critical_strike_multiplier_+_while_affected_by_elusive"}},[110]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Withered lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Withered lasts %1% seconds"}}},name="withered_duration",stats={[1]="skill_withered_duration_ms"}},[111]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1% Life gained for each enemy Hit"}}},name="life_gain_per_target",stats={[1]="life_gain_per_target"}},[112]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage"}}},name="minion_damage_incr",stats={[1]="minion_damage_+%"}},[113]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Doubles have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Doubles have %1%%% reduced Movement Speed"}}},name="doubles_have_move_speed",stats={[1]="doubles_have_movement_speed_+%"}},[114]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Attack Speed"}}},name="minion_attack_speed_incr",stats={[1]="minion_attack_speed_+%"}},[115]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Cast Speed"}}},name="minion_cast_speed_incr",stats={[1]="minion_cast_speed_+%"}},[116]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Movement Speed"}}},name="minion_movement_speed_incr",stats={[1]="minion_movement_speed_+%"}},[117]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Minion Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Minion Movement Speed"}}},name="minion_movement_speed_final",stats={[1]="active_skill_minion_movement_velocity_+%_final"}},[118]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Releases a Stronger Pulse every %1% Pulses"}}},name="lightning_tendrils_pulse_interval",stats={[1]="lightning_tendrils_channelled_larger_pulse_interval"}},[119]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minion Movement Speed is Capped"}}},name="movement_velocity_cap",stats={[1]="movement_velocity_cap"}},[120]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Life"}}},name="minion_life_final",stats={[1]="active_skill_minion_life_+%_final"}},[121]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Energy Shield"}}},name="minion_energy_shield_final",stats={[1]="active_skill_minion_energy_shield_+%_final"}},[122]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Skills have %1%%% more Minion maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Skills have %1%%% less Minion maximum Life"}}},name="minion_life_incr_final",stats={[1]="support_minion_maximum_life_+%_final"}},[123]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Maximum Life"}}},name="minion_life_incr",stats={[1]="minion_maximum_life_+%"}},[124]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneMinionInstability"},limit={[1]={[1]="#",[2]="#"}},text="Minion Instability"}}},name="minion_instability",stats={[1]="keystone_minion_instability"}},[125]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration on enemies"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration on enemies"}}},name="stun_duration_incr",stats={[1]="base_stun_duration_+%"}},[126]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Stuns Enemies"}}},name="stun",stats={[1]="always_stun"}},[127]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage when successfully Backstabbing"}}},name="backstab_damage",stats={[1]="backstab_damage_+%"}},[128]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1% seconds between appearance of Wall sections"}}},name="wall_delay",stats={[1]="wall_expand_delay_ms"}},[129]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Wall will be %1% units long"}}},name="wall_length",stats={[1]="wall_maximum_length"}},[130]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Each Viper Strike Charge deals %1% Base Chaos Damage per second"}}},name="viper_strike_orb_damage",stats={[1]="base_chaos_damage_taken_per_minute_per_viper_strike_orb"}},[131]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Chaos Damage per second"}}},name="chaos_area_damage_per_minute",stats={[1]="intermediary_chaos_area_damage_to_deal_per_minute"}},[132]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Chaos Damage per second"}}},name="chaos_damage_per_minute",stats={[1]="intermediary_chaos_damage_to_deal_per_minute"}},[133]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Chaos Damage per second"}}},name="chaos_skill_dot_area_damage_per_minute",stats={[1]="intermediary_chaos_skill_dot_area_damage_to_deal_per_minute"}},[134]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Chaos Damage per second"}}},name="chaos_skill_dot_damage_per_minute",stats={[1]="intermediary_chaos_skill_dot_damage_to_deal_per_minute"}},[135]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Cold Damage per second"}}},name="cold_area_damage_per_minute",stats={[1]="intermediary_cold_area_damage_to_deal_per_minute"}},[136]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Cold Damage per second"}}},name="cold_damage_per_minute",stats={[1]="intermediary_cold_damage_to_deal_per_minute"}},[137]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Cold Damage per second"}}},name="cold_skill_dot_area_damage_per_minute",stats={[1]="intermediary_cold_skill_dot_area_damage_to_deal_per_minute"}},[138]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Cold Damage per second"}}},name="cold_skill_dot_damage_per_minute",stats={[1]="intermediary_cold_skill_dot_damage_to_deal_per_minute"}},[139]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Fire Damage per second"}}},name="fire_area_damage_per_minute",stats={[1]="intermediary_fire_area_damage_to_deal_per_minute"}},[140]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Fire Damage per second"}}},name="fire_damage_per_minute",stats={[1]="intermediary_fire_damage_to_deal_per_minute"}},[141]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Fire Damage per second"}}},name="fire_skill_dot_area_damage_per_minute",stats={[1]="intermediary_fire_skill_dot_area_damage_to_deal_per_minute"}},[142]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Fire Damage per second"}}},name="fire_skill_dot_damage_per_minute",stats={[1]="intermediary_fire_skill_dot_damage_to_deal_per_minute"}},[143]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Adds %1% seconds to monster response time"}}},name="monster_response_time",stats={[1]="monster_response_time_ms"}},[144]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Melee Physical Damage"}}},name="phase_run_melee_physical_damage_incr_final",stats={[1]="phase_run_melee_physical_damage_+%_final"}},[145]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage"}}},name="melee_physical_damage_incr",stats={[1]="melee_physical_damage_+%"}},[146]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]=1,[2]="#"}},text="Explosion deals %1%%% more Base Damage"},[2]={[1]={k="divide_by_one_hundred_and_negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Explosion deals %1%%% less Base Damage"}}},name="explosive_arrow_base_damage_override",stats={[1]="explosive_arrow_explosion_base_damage_+permyriad"}},[147]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Explosion will have %1% to %2% added Fire Damage"}}},name="explosive_arrow_added_fire",stats={[1]="explosive_arrow_explosion_minimum_added_fire_damage",[2]="explosive_arrow_explosion_maximum_added_fire_damage"}},[148]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Explosion deals %1% to %2% Base Fire Damage per Fuse Charge"}}},name="fuse_arrow_orb_damage",stats={[1]="minimum_fire_damage_per_fuse_arrow_orb",[2]="maximum_fire_damage_per_fuse_arrow_orb"}},[149]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0}},text="%1$+d to Explosion Radius per Explosive Arrow on Target"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="%1$+d to Explosion Radius per Explosive Arrow on Target, up to %2$+d"}}},name="fuse_arrow_explosion_radius",stats={[1]="fuse_arrow_explosion_radius_+_per_fuse_arrow_orb",[2]="explosive_arrow_maximum_bonus_explosion_radius"}},[150]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="One impact every %1% seconds"}}},name="fire_storm_delay",stats={[1]="fire_storm_fireball_delay_ms"}},[151]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Stun and Block Recovery"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Stun and Block Recovery"}}},name="stun_recovery_incr",stats={[1]="base_stun_recovery_+%"}},[152]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% faster start of Energy Shield Recharge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% slower start of Energy Shield Recharge"}}},name="energy_shield_delay",stats={[1]="energy_shield_delay_-%"}},[153]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Recharge rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Recharge rate"}}},name="energy_shield_recharge_rate",stats={[1]="energy_shield_recharge_rate_+%"}},[154]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage from Damage Over Time effects"}}},name="degen_effect_incr",stats={[1]="degen_effect_+%"}},[155]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Base Duration per Endurance Charge removed"}}},name="buff_duration_per_endurance",stats={[1]="base_buff_duration_ms_+_per_removable_endurance_charge"}},[156]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Buff Duration per Endurance Charge removed"}}},name="buff_duration_incr_per_endurance",stats={[1]="buff_effect_duration_+%_per_removable_endurance_charge"}},[157]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Buff Duration per Endurance Charge removed"}}},name="buff_duration_incr_per_endurance_limited",stats={[1]="buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5"}},[158]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skill Duration per Frenzy Charge removed"}}},name="skill_duration_incr_per_frenzy",stats={[1]="skill_effect_duration_+%_per_removable_frenzy_charge"}},[159]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while holding a Shield"}}},name="shield_block",stats={[1]="shield_block_%"}},[160]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while holding a Shield"}}},name="shield_spell_block",stats={[1]="shield_spell_block_%"}},[161]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Shields break after %1% total Damage is prevented"}}},name="fire_shield_damage_threshold",stats={[1]="fire_shield_damage_threshold"}},[162]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour"}}},name="armour_incr",stats={[1]="physical_damage_reduction_rating_+%"}},[163]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances"}}},name="elemental_resist",stats={[1]="base_resist_all_elements_%"}},[164]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% of your Maximum Life as Base Fire Damage per second"}}},name="righteous_fire_damage_to_nearby_from_life",stats={[1]="base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute"}},[165]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% of your Maximum Energy Shield as Base Fire Damage per second"}}},name="righteous_fire_damage_to_nearby_from_es",stats={[1]="base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute"}},[166]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="You Burn for %1%%% of your Maximum Life per second as Fire Damage"}}},name="righteous_fire_self_damage_from_life",stats={[1]="base_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute"}},[167]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="You Burn for %1%%% of your Maximum Energy Shield per second as Fire Damage"}}},name="righteous_fire_self_damage_from_es",stats={[1]="base_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute"}},[168]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants %1%%% less Spell Damage"}}},name="righteous_fire_spell_damage_incr",stats={[1]="righteous_fire_spell_damage_+%_final"}},[169]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants %1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants %1%%% less Spell Damage"}}},name="vaal_righteous_fire_spell_damage_incr",stats={[1]="vaal_righteous_fire_spell_damage_+%_final"}},[170]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage"}}},name="spell_damage_incr",stats={[1]="spell_damage_+%"}},[171]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% additional Armour"}}},name="base_armour",stats={[1]="base_physical_damage_reduction_rating"}},[172]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Hits up to %1% additional enemy near the target"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Hits up to %1% additional enemies near the target"}}},name="lighnting_arrow_targets",stats={[1]="lightning_arrow_maximum_number_of_extra_targets"}},[173]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Elemental Ailments caused by this skill spread to other nearby enemies"}}},name="elemental_status_aura",stats={[1]="elemental_status_effect_aura_radius"}},[174]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignites caused by this Skill spread to other nearby Enemies"}}},name="ignite_aura",stats={[1]="support_ignite_proliferation_radius"}},[175]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Cannot inflict Elemental Ailments"}}},name="cannot_inflict_ailments",stats={[1]="cannot_inflict_status_ailments"}},[176]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spend Life instead of Mana for this skill"}}},name="blood_magic",stats={[1]="base_use_life_in_place_of_mana"}},[177]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]=1,[2]="#"}},text="Culling Strike"}}},name="culling_strike",stats={[1]="kill_enemy_on_hit_if_under_10%_life"}},[178]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystonePointBlank"},limit={[1]={[1]="#",[2]="#"}},text="Point Blank"}}},name="point_blank",stats={[1]="keystone_point_blank"}},[179]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to cause Monsters to Flee when Hit"}}},name="chance_to_flee",stats={[1]="global_hit_causes_monster_flee_%"}},[180]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totem range: %1%"}}},name="totem_range",stats={[1]="totem_range"}},[181]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Totem"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Summoned Totems"}}},name="num_totems",stats={[1]="skill_display_number_of_totems_allowed"}},[182]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% Trap placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Traps placed at a time"}}},name="num_traps",stats={[1]="skill_display_number_of_traps_allowed"}},[183]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% Remote Mine placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Remote Mines placed at a time"}}},name="num_mines",stats={[1]="skill_display_number_of_remote_mines_allowed"}},[184]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Totem lasts %1% seconds"}}},name="totem_duration",stats={[1]="totem_duration"}},[185]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems Summoned by this Skill cannot Evade"}}},name="totems_cannot_evade",stats={[1]="totems_cannot_evade"}},[186]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Trap lasts %1% seconds"}}},name="trap_duration",stats={[1]="trap_duration"}},[187]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Throwing Speed"}}},name="trap_throw_speed_incr",stats={[1]="trap_throwing_speed_+%"}},[188]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Throwing Speed"}}},name="mine_laying_speed_incr",stats={[1]="mine_laying_speed_+%"}},[189]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Mine lasts %1% seconds"}}},name="mine_duration",stats={[1]="mine_duration"}},[190]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased totem life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced totem life"}}},name="totem_life_incr",stats={[1]="totem_life_+%"}},[191]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Freezes enemies as though dealing %1%%% more Damage"}}},name="freeze_mine_damage_incr",stats={[1]="freeze_as_though_dealt_damage_+%"}},[192]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Every third successive strike Freezes enemies as though dealing %1%%% more Damage"}}},name="glacial_hammer_freeze_damage_incr",stats={[1]="glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%"}},[193]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Life per second"}}},name="life_regen_per_minute",stats={[1]="base_life_regeneration_rate_per_minute"}},[194]={lang={English={[1]={[1]={k="per_minute_to_per_second_2dp_if_required",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second"}}},name="life_regen_per_minute_percent",stats={[1]="life_regeneration_rate_per_minute_%"}},[195]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Regeneration rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Regeneration rate"}}},name="life_regen_incr",stats={[1]="life_regeneration_rate_+%"}},[196]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold Resistance"}}},name="cold_resist",stats={[1]="base_cold_damage_resistance_%"}},[197]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Second form has %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Second form has %1%%% reduced Critical Strike Chance"}}},name="ice_spear_crit_bonus",stats={[1]="ice_spear_second_form_critical_strike_chance_+%"}},[198]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Second form has %1$+d%% to Critical Strike Multiplier"}}},name="ice_spear_crit_multi",stats={[1]="ice_spear_second_form_critical_strike_multiplier_+"}},[199]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Second form has %1%%% more Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Second form has %1%%% less Projectile Speed"}}},name="ice_spear_projectile_speed_incr",stats={[1]="ice_spear_second_form_projectile_speed_+%_final"}},[200]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Blind enemies on hit"}}},name="chance_to_blind",stats={[1]="global_chance_to_blind_on_hit_%"}},[201]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blinding duration"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blinding duration"}}},name="blind_duration_incr",stats={[1]="blind_duration_+%"}},[202]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrates %1%%% Fire Resistance"}}},name="fire_penetration",stats={[1]="base_reduce_enemy_fire_resistance_%"}},[203]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrates %1%%% Cold Resistance"}}},name="cold_penetration",stats={[1]="base_reduce_enemy_cold_resistance_%"}},[204]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrates %1%%% Lightning Resistance"}}},name="lightning_penetration",stats={[1]="base_reduce_enemy_lightning_resistance_%"}},[205]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrates %1%%% Elemental Resistances"}}},name="elemental_penetration",stats={[1]="reduce_enemy_elemental_resistance_%"}},[206]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses your Life if no Skeletons in range"}}},name="skeletal_chains_target_self",stats={[1]="skeletal_chains_no_minions_targets_self"}},[207]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Damage with Hits and Ailments if using your Life"}}},name="skeletal_chains_damage",stats={[1]="skeletal_chains_no_minions_damage_+%_final"}},[208]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Radius if using your Life"}}},name="skeletal_chains_radius",stats={[1]="skeletal_chains_no_minions_radius_+"}},[209]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Chains %1% Time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Chains %1% Times"}}},name="chain_num",stats={[1]="virtual_number_of_chains"}},[210]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Beams Chain %1% Time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Beams Chain %1% Times"}}},name="beam_chain_num",stats={[1]="virtual_number_of_chains_for_beams"}},[211]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Split towards %1% additional targets"}}},name="split_num",stats={[1]="virtual_projectile_number_to_split"}},[212]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Projectiles Fork"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Fork %1% times"}}},name="fork",stats={[1]="virtual_number_of_forks_for_projectiles_final"}},[213]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Projectiles Return to you after hitting targets"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Projectiles Return to you at end of flight"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Projectiles Return to you"}}},name="return",stats={[1]="projectiles_return",[2]="projectiles_return_if_no_hit_object"}},[214]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Leeches %1% Life to you for each corpse Consumed"}}},name="corpse_consumption_life",stats={[1]="corpse_consumption_life_to_gain"}},[215]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]="#",[2]="#"}},text="Leeches %1% Mana to you for each corpse Consumed"}}},name="corpse_consumption_mana",stats={[1]="corpse_consumption_mana_to_gain"}},[216]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments for each stage"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits and Ailments for each stage"}}},name="flamethrower_damage_incr",stats={[1]="flamethrower_damage_+%_per_stage_final"}},[217]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Incinerate Damage for each stage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Incinerate Damage for each stage"}}},name="incinerate_damage_incr",stats={[1]="incinerate_damage_+%_per_stage"}},[218]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Hit Rate for each blade"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Hit Rate for each blade"}}},name="blade_vortex_rate_per_blade",stats={[1]="blade_vortex_hit_rate_+%_per_blade"}},[219]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage for each blade"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage for each blade"}}},name="blade_vortex_damage_per_blade",stats={[1]="blade_vortex_damage_+%_per_blade_final"}},[220]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Ailments for each blade"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Ailments for each blade"}}},name="blade_vortex_ailment_damage_per_blade",stats={[1]="blade_vortex_ailment_damage_+%_per_blade_final"}},[221]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Movement Speed"}}},name="cyclone_movement_speed_incr",stats={[1]="cyclone_movement_speed_+%_final"}},[222]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1% Mana drained per second"}}},name="mana_degen",stats={[1]="mana_degeneration_per_minute"}},[223]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Additional %1% Mana drained per second while moving"}}},name="ice_shield_moving_mana_degen",stats={[1]="ice_shield_moving_mana_degeneration_per_minute"}},[224]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Physical Damage taken from Hits"}}},name="phys_damage_taken_plus",stats={[1]="physical_damage_taken_+"}},[225]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Fire Damage taken from Hits"}}},name="fire_damage_taken_plus",stats={[1]="fire_damage_taken_+"}},[226]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Melee Strike Skills deal Splash Damage to surrounding targets"}}},name="melee_splash",stats={[1]="melee_splash"}},[227]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attack repeats %1% additional times"}}},name="mulitple_attacks",stats={[1]="attack_repeat_count"}},[228]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge on Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge on Critical Strike"}}},name="power_charge_on_crit_chance",stats={[1]="add_power_charge_on_critical_strike_%"}},[229]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Melee Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Melee Attack Speed"}}},name="multiple_attacks_speed",stats={[1]="support_multiple_attacks_melee_attack_speed_+%_final"}},[230]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems and Minions summoned by this Skill have %1$+d%% Fire Resistance"}}},name="summon_fire_resist",stats={[1]="summon_fire_resistance_+"}},[231]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems and Minions summoned by this Skill have %1$+d%% Cold Resistance"}}},name="summon_cold_resist",stats={[1]="summon_cold_resistance_+"}},[232]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems and Minions summoned by this Skill have %1$+d%% Lightning Resistance"}}},name="summon_lightning_resist",stats={[1]="summon_lightning_resistance_+"}},[233]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% to all Elemental Resistances"}}},name="minion_elemental_resist",stats={[1]="virtual_minion_elemental_resistance_%"}},[234]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to apply linked Curses on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Applies linked Curses on Hit"}}},name="apply_linked_curses_on_hit",stats={[1]="apply_linked_curses_on_hit_%"}},[235]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Area of Effect for each stage"}}},name="reave_area_incr",stats={[1]="reave_area_of_effect_+%_final_per_stage"}},[236]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=99}},text="%2%%% chance to gain an Endurance Charge when this Skill Stuns an Enemy with a Melee Hit"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=100,[2]="#"}},text="Gain an Endurance Charge when this Skill Stuns an Enemy with a Melee Hit"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Gain an Endurance Charge when this Skill Stuns an Enemy with a Melee Hit"}}},name="endurance_charge_on_stun",stats={[1]="gain_endurance_charge_on_melee_stun",[2]="gain_endurance_charge_on_melee_stun_%"}},[237]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies lose %1%%% Cold Resistance while Frozen"}}},name="freeze_mine_cold_resist_debuff",stats={[1]="freeze_mine_cold_resistance_+_while_frozen"}},[238]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger a linked Spell when you Crit an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger a linked Spell when you Crit an Enemy"}}},name="cast_on_crit",stats={[1]="cast_linked_spells_on_attack_crit_%"}},[239]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Cast a linked Spell on Melee Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cast a linked Spell on Melee Kill"}}},name="cast_on_melee_kill",stats={[1]="cast_linked_spells_on_melee_kill_%"}},[240]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="You cannot Cast this Spell directly"}}},name="triggered_cannot_cast",stats={[1]="spell_uncastable_if_triggerable",[2]="spell_only_castable_on_death"}},[241]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when Hit"}}},name="counterattack_on_hit",stats={[1]="melee_counterattack_trigger_on_hit_%"}},[242]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill when Critically Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when Critically Hit"}}},name="counterattack_when_crit",stats={[1]="attack_trigger_when_critically_hit_%"}},[243]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill when you Block"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when you Block"}}},name="counterattack_on_block",stats={[1]="melee_counterattack_trigger_on_block_%"}},[244]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot use this Attack directly"}}},name="triggered_cannot_attack",stats={[1]="attack_unusable_if_triggerable"}},[245]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can use Items requiring up to Level %1%"}}},name="item_level_req",stats={[1]="animate_item_maximum_level_requirement"}},[246]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Attack on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Attack on Kill"}}},name="attack_on_kill",stats={[1]="attack_trigger_on_kill_%"}},[247]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Attack"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Attack"}}},name="cast_on_attack",stats={[1]="cast_on_attack_use_%"}},[248]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Use a Skill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Use a Skill"}}},name="cast_on_skill_use",stats={[1]="cast_on_skill_use_%"}},[249]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell on Kill"}}},name="cast_on_kill",stats={[1]="chance_to_cast_on_kill_%"}},[250]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell on Kill"}}},name="cast_on_kill_target_self",stats={[1]="chance_to_cast_on_kill_%_target_self"}},[251]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Use a Skill Socketed in your Body Armour"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Use a Skill Socketed in your Body Armour"}}},name="cast_on_skill_use_from_chest",stats={[1]="trigger_on_skill_use_from_chest_%"}},[252]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Use a Skill while you have a Spirit Charge"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Use a Skill while you have a Spirit Charge"}}},name="cast_on_skill_use_spirit_charge",stats={[1]="trigger_on_skill_use_%_if_you_have_a_spirit_charge"}},[253]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you're Damaged by a Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you're Damaged by a Hit"}}},name="cast_when_damaged",stats={[1]="cast_on_any_damage_taken_%"}},[254]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you're Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you're Hit"}}},name="cast_when_hit",stats={[1]="cast_when_hit_%"}},[255]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger this Spell on Death"}}},name="cast_on_death",stats={[1]="cast_on_death_%"}},[256]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger this Spell when you Rampage"}}},name="cast_on_rampage",stats={[1]="chance_to_cast_on_rampage_tier_%"}},[257]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger this Spell when you are Stunned, or\nBlock a Stunning Hit"}}},name="cast_on_stunned",stats={[1]="cast_on_stunned_%"}},[258]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you fire Projectiles from a Wand Attack"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you fire Projectiles from a Wand Attack"}}},stats={[1]="spellslinger_trigger_on_wand_attack_%"}},[259]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you gain Avian's Might or Avian's Flight"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you gain Avian's Might or Avian's Flight"}}},name="cast_on_avian_buff",stats={[1]="cast_on_gain_avians_flight_or_avians_might_%"}},[260]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Hit"}}},name="cast_on_hit",stats={[1]="cast_on_hit_%"}},[261]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Hit an Enemy while you are Cursed"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Hit an Enemy while you are Cursed"}}},name="cast_on_hit_if_cursed",stats={[1]="cast_on_hit_if_cursed_%"}},[262]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger this Spell when you lose Cat's Stealth"}}},name="cast_on_lose_cats_stealth",stats={[1]="cast_on_lose_cats_stealth"}},[263]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill when you Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when you Hit"}}},name="attack_on_hit",stats={[1]="attack_trigger_on_hit_%"}},[264]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill on Melee Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill on Melee Hit"}}},name="attack_on_melee_hit",stats={[1]="attack_trigger_on_melee_hit_%"}},[265]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="%1%%% chance to Trigger this Spell when you take a total of %2% Damage"}}},name="cast_on_damage_taken",stats={[1]="cast_on_damage_taken_%",[2]="cast_on_damage_taken_threshold"}},[266]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when one of your Traps is Triggered"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when one of your Traps is Triggered"}}},name="cast_when_trap_triggered",stats={[1]="chance_to_cast_when_your_trap_is_triggered_%"}},[267]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed"}}},name="attack_speed_more",stats={[1]="active_skill_attack_speed_+%_final"}},[268]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Spell Damage for each stage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Spell Damage for each stage"}}},name="charged_blast_damage_per_stack",stats={[1]="charged_blast_spell_damage_+%_final_per_stack"}},[269]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Ailments for each stage"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Ailments for each stage"}}},name="charged_blast_ailment_damage_per_stack",stats={[1]="flameblast_ailment_damage_+%_final_per_stack"}},[270]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Trigger a linked Spell every %1% seconds while Channelling"}}},name="cast_while_channelling",stats={[1]="cast_while_channelling_time_ms"}},[271]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Curse"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Curse"}}},name="curse_effect",stats={[1]="curse_effect_+%"}},[272]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Curse against Players"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Curse against Players"}}},name="curse_effect_vs_players",stats={[1]="curse_effect_+%_vs_players"}},[273]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Effect of Curse against Players"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Effect of Curse against Players"}}},name="curse_effect_final_vs_players",stats={[1]="curse_effect_+%_final_vs_players"}},[274]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Projectile Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Projectile Attack Speed"}}},name="support_projectile_attack_speed_incr",stats={[1]="support_projectile_attack_speed_+%_final"}},[275]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spell has %1%%% more Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spell has %1%%% less Cast Speed"}}},name="totem_cast_speed",stats={[1]="support_spell_totem_cast_speed_+%_final"}},[276]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed"}}},name="totem_attack_speed",stats={[1]="support_attack_totem_attack_speed_+%_final"}},[277]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spawns %1% corpses"}}},name="desecrate_num_corpses",stats={[1]="desecrate_number_of_corpses_to_create"}},[278]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spawns corpses up to Level %1%"}}},name="desecrate_corpse_level",stats={[1]="desecrate_corpse_level"}},[279]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spawns corpses with Level %1%"}}},name="unearth_corpse_level",stats={[1]="unearth_corpse_level"}},[280]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Causes smaller novas up to %1% times on enemies hit"}}},name="ice_nova_repeat_count",stats={[1]="ice_nova_number_of_repeats"}},[281]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect each repeat"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect each repeat"}}},name="ice_nova_repeat_size",stats={[1]="ice_nova_radius_+%_per_repeat"}},[282]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Beams deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Beams deal %1%%% less Damage"}}},name="vaal_lightning_strike_beam_damage",stats={[1]="vaal_lightning_strike_beam_damage_+%_final"}},[283]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Can't be Evaded"}}},name="always_hit",stats={[1]="global_always_hit"}},[284]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemy Block Chance reduced by %1%%% against this Skill"}}},name="reduce_block",stats={[1]="global_reduce_enemy_block_%"}},[285]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies have %1%%% reduced chance to Dodge Hits from this Skill"}}},name="reduce_dodge",stats={[1]="reduce_enemy_dodge_%"}},[286]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits against Burning enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits against Burning enemies"}}},name="flame_whip_damage_incr",stats={[1]="flame_whip_damage_+%_final_vs_burning_enemies"}},[287]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Burning Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Burning Enemies"}}},name="damage_vs_burning",stats={[1]="damage_+%_vs_burning_enemies"}},[288]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Freeze"}}},name="never_freeze",stats={[1]="never_freeze"}},[289]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Ignite"}}},name="never_ignite",stats={[1]="never_ignite"}},[290]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage cannot be Reflected"}}},name="no_reflect",stats={[1]="damage_cannot_be_reflected"}},[291]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles leave Shocking Ground"}}},name="lightning_trap_shocking_ground",stats={[1]="lightning_trap_projectiles_leave_shocking_ground"}},[292]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of your Physical Damage as Extra Fire Damage"}}},name="physical_damage_to_add_as_fire",stats={[1]="physical_damage_%_to_add_as_fire"}},[293]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of your Physical Damage as Extra Chaos Damage"}}},name="physical_damage_to_add_as_chaos",stats={[1]="physical_damage_%_to_add_as_chaos"}},[294]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage"}}},name="fire_damage_incr",stats={[1]="fire_damage_+%"}},[295]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage"}}},name="cold_damage_incr",stats={[1]="cold_damage_+%"}},[296]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells"}}},name="spell_added_cold",stats={[1]="spell_minimum_added_cold_damage",[2]="spell_maximum_added_cold_damage"}},[297]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Burning Damage"}}},name="herald_of_ash_burning_damage",stats={[1]="herald_of_ash_burning_damage_+%_final"}},[298]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage"}}},name="herald_of_ash_fire_damage_incr",stats={[1]="herald_of_ash_fire_damage_+%"}},[299]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Spell Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Spell Fire Damage"}}},name="herald_of_ash_spell_fire_damage_incr",stats={[1]="herald_of_ash_spell_fire_damage_+%_final"}},[300]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage"}}},name="herald_of_ice_cold_damage_incr",stats={[1]="herald_of_ice_cold_damage_+%"}},[301]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage"}}},name="herald_of_thunder_lightning_damage_incr",stats={[1]="herald_of_thunder_lightning_damage_+%"}},[302]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells"}}},name="spell_added_lightning",stats={[1]="spell_minimum_added_lightning_damage",[2]="spell_maximum_added_lightning_damage"}},[303]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamageTypes"},limit={[1]={[1]="#",[2]="#"}},text="Only Deals Damage of the chosen Element\nDeals no Damage of other Damage Types"}}},name="elemental_hit_damage_turnoff",stats={[1]="elemental_hit_no_physical_chaos_damage"}},[304]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Explosion deals %1%%% more Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Explosion deals %1%%% less Damage with Hits and Ailments"}}},name="static_strike_damage",stats={[1]="static_strike_explosion_damage_+%_final"}},[305]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Arrow Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Arrow Speed"}}},name="arrow_speed",stats={[1]="base_arrow_speed_+%"}},[306]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Creates %1% explosions"}}},name="cluster_burst_spawn_amount",stats={[1]="cluster_burst_spawn_amount"}},[307]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed per Nearby Enemy"},[2]={limit={[1]={[1]=-300,[2]=-300}},text="Locks enemy in place"},[3]={[1]={k="divide_by_one_hundred_and_negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed per Nearby Enemy"}}},name="movement_speed_incr_per_enemy",stats={[1]="abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies"}},[308]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ring deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ring deals %1%%% less Damage"}}},name="newshocknova_first_ring_damage",stats={[1]="newshocknova_first_ring_damage_+%_final"}},[309]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Explosion deals Chaos Damage equal to %1%%% of the Monster's maximum Life"}}},name="abyssal_cry_max_life_as_chaos_on_death",stats={[1]="abyssal_cry_%_max_life_as_chaos_on_death"}},[310]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Fortify on Melee hit"},[2]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=100,[2]="#"}},text="Grants Fortify on Melee Hit"}}},name="chance_to_fortify_on_melee_hit",stats={[1]="chance_to_fortify_on_melee_hit_+%"}},[311]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fortify duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fortify duration"}}},name="fortify_duration_incr",stats={[1]="fortify_duration_+%"}},[312]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage Converted to Cold Damage"}}},name="base_physical_damage_to_convert_to_cold",stats={[1]="base_physical_damage_%_to_convert_to_cold"}},[313]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Second Stage deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Second Stage deals %1%%% less Damage"}}},name="ice_crash_second_hit_damage",stats={[1]="ice_crash_second_hit_damage_+%_final"}},[314]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Third Stage deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Third Stage deals %1%%% less Damage"}}},name="ice_crash_third_hit_damage",stats={[1]="ice_crash_third_hit_damage_+%_final"}},[315]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems Grant %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems Grant %1%%% reduced Damage"}}},name="golem_grants_damage",stats={[1]="fire_golem_grants_damage_+%"}},[316]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems Grant %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems Grant %1%%% reduced Critical Strike Chance"}}},name="golem_grants_crit_chance",stats={[1]="ice_golem_grants_critical_strike_chance_+%"}},[317]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems Grant %1%%% increased Accuracy"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems Grant %1%%% reduced Accuracy"}}},name="golem_grants_accuracy",stats={[1]="ice_golem_grants_accuracy_+%"}},[318]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Golems grant %1%%% additional Physical Damage Reduction"}}},name="golem_grants_phys_reduction",stats={[1]="chaos_golem_grants_additional_physical_damage_reduction_%"}},[319]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Golems grant %1% Life Regenerated per second"}}},name="golem_grants_life_regen",stats={[1]="stone_golem_grants_base_life_regeneration_rate_per_minute"}},[320]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems grant %1%%% increased Attack and Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems grant %1%%% reduced Attack and Cast Speed"}}},name="golem_grants_attack_and_cast_speed",stats={[1]="lightning_golem_grants_attack_and_cast_speed_+%"}},[321]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},[2]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]="#"}},text="Chilled Ground lasts %1% seconds"}}},name="ice_storm_ground_ice",stats={[1]="virtual_firestorm_drop_chilled_ground_duration_ms"}},[322]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per one hundred nearby Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per one hundred nearby Enemies"}}},name="inspiring_cry_damage",stats={[1]="inspiring_cry_damage_+%_per_one_hundred_nearby_enemies"}},[323]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed per one hundred nearby Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed per one hundred nearby Enemies"}}},name="intimidating_cry_attack_speed",stats={[1]="intimidating_cry_attack_speed_+%_per_100_enemies"}},[324]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per second"}}},stats={[1]="base_mana_regeneration_rate_per_minute"}},[325]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage"}}},name="damage_incr",stats={[1]="damage_+%"}},[326]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments per Repeat"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits and Ailments per Repeat"}}},name="fire_nova_damage",stats={[1]="fire_nova_damage_+%_per_repeat_final"}},[327]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Melee Physical Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Melee Physical Damage against Bleeding Enemies"}}},name="bloodlust_damage",stats={[1]="support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"}},[328]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage against Bleeding Enemies"}}},name="bloodlust_damage_incr",stats={[1]="melee_damage_vs_bleeding_enemies_+%"}},[329]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Totem Placement speed"}}},name="totem_summon_speed_incr",stats={[1]="summon_totem_cast_speed_+%"}},[330]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% more Melee Physical Damage on Melee hit"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies grant %1%%% less Melee Physical Damage on Melee hit"}}},name="newpunishment_melee_damage",stats={[1]="newpunishment_melee_damage_+%_final"}},[331]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed enemies grant %1%%% increased Attack Speed on Melee hit"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed enemies grant %1%%% reduced Attack Speed on Melee hit"}}},name="newpunishment_attack_speed",stats={[1]="newpunishment_attack_speed_+%"}},[332]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Buff is applied for a Base Duration of %1% seconds"}}},name="newpunishment_applied_buff_duration",stats={[1]="newpunishment_applied_buff_duration_ms"}},[333]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Physical Damage taken from Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Physical Damage taken from Hits"}}},name="arctic_armour_phys_damage",stats={[1]="new_arctic_armour_physical_damage_taken_when_hit_+%_final"}},[334]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Fire Damage taken from Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Fire Damage taken from Hits"}}},name="arctic_armour_fire_damage",stats={[1]="new_arctic_armour_fire_damage_taken_when_hit_+%_final"}},[335]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Freeze, Shock and Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Always Freeze, Shock and Ignite"}}},name="elemental_status_chance",stats={[1]="chance_to_freeze_shock_ignite_%"}},[336]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="%1$d%% chance to Freeze Enemies which are Chilled"}}},name="freeze_chance_vs_chilled",stats={[1]="additional_chance_to_freeze_chilled_enemies_%"}},[337]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage Converted to Fire, Cold or Lightning Damage"}}},name="wild_strike_damage_convert",stats={[1]="elemental_strike_physical_damage_%_to_convert"}},[338]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Strike Range"}}},name="melee_weapon_range",stats={[1]="melee_weapon_range_+"}},[339]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Strike Range"}}},name="melee_range",stats={[1]="melee_range_+"}},[340]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments against Chilled Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits and Ailments against Chilled Enemies"}}},name="hypothermia_damage",stats={[1]="support_hypothermia_damage_+%_vs_chilled_enemies_final"}},[341]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]="#",[2]="#"}},text="Grants Phasing"}}},name="phasing",stats={[1]="phase_through_objects"}},[342]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextVisibility"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Visibility to Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextVisibility"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Visibility to Enemies"}}},name="enemy_aggro_decr",stats={[1]="enemy_aggro_radius_+%"}},[343]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Aftershock deals %1%%% more Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Aftershock deals %1%%% less Damage with Hits and Ailments"}}},name="earthquake_aftershock_damage",stats={[1]="quake_slam_fully_charged_explosion_damage_+%_final"}},[344]={lang={English={[1]={[1]={k="divide_by_one_hundred_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Debuff Damage as Life"}}},name="siphon_life_gain",stats={[1]="siphon_life_leech_from_damage_permyriad"}},[345]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% active spinning blades"}}},name="max_spinning_blades",stats={[1]="maximum_number_of_spinning_blades"}},[346]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage taken"}}},stats={[1]="chaos_damage_taken_+%"}},[347]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Always Poison on Hit"}}},name="poison_chance",stats={[1]="base_chance_to_poison_on_hit_%"}},[348]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Grants %1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Grants 100%% chance to Poison on Hit"}}},name="grants_poison_chance",stats={[1]="skill_buff_grants_chance_to_poison_%"}},[349]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage over Time"}}},name="damage_over_time_incr",stats={[1]="damage_over_time_+%"}},[350]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage per Volley"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage per Volley"}}},name="bladefall_damage_per_volley",stats={[1]="bladefall_damage_per_stage_+%_final"}},[351]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Poisons Enemies on Hit"}}},name="poison_on_hit",stats={[1]="global_poison_on_hit"}},[352]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Poison"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Poison"}}},name="poison_damage",stats={[1]="base_poison_damage_+%"}},[353]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poison Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poison Duration"}}},name="poison_duration",stats={[1]="base_poison_duration_+%"}},[354]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Melee Splash Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Melee Splash Area of Effect"}}},name="melee_splash_radius",stats={[1]="melee_splash_area_of_effect_+%_final"}},[355]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="First Hit deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="First Hit deals %1%%% less Damage"}}},name="cyclone_first_hit_damage",stats={[1]="cyclone_first_hit_damage_+%_final"}},[356]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shockwaves deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shockwaves deal %1%%% less Damage"}}},name="sunder_explosion_damage",stats={[1]="shockwave_slam_explosion_damage_+%_final"}},[357]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance"}}},name="additional_crit",stats={[1]="additional_base_critical_strike_chance"}},[358]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ring deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ring deals %1%%% reduced Damage"}}},name="shock_nova_ring_damage",stats={[1]="shock_nova_ring_damage_+%"}},[359]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Buff Effect"}}},name="skill_buff_effect",stats={[1]="skill_buff_effect_+%"}},[360]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Melee Skills deal %1%%% more Area Damage while in Blood Stance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Melee Skills deal %1%%% less Area Damage while in Blood Stance"}}},name="blood_stance_melee_area_damage",stats={[1]="blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance"}},[361]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Melee Skills have %1%%% more Area of Effect while in Blood Stance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Melee Skills have %1%%% less Area of Effect while in Blood Stance"}}},name="blood_stance_melee_area_of_effect",stats={[1]="blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance"}},[362]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Melee Skills have %1%%% more Area of Effect while in Sand Stance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Melee Skills have %1%%% less Area of Effect while in Sand Stance"}}},name="sand_stance_melee_area_of_effect",stats={[1]="blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance"}},[363]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Melee Skills deal %1%%% more Area Damage while in Sand Stance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Melee Skills deal %1%%% less Area Damage while in Sand Stance"}}},name="sand_stance_melee_area_damage",stats={[1]="blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance"}},[364]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Poison while Incubating and not at Maximum Plague Value"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Poison while Incubating and not at Maximum Plague Value"}}},name="plague_bearer_poison_damage_more",stats={[1]="corrosive_shroud_poison_damage_+%_final_while_accumulating_poison"}},[365]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextExpectedPoisonDamage"},limit={[1]={[1]="#",[2]="#"}},text="When you inflict Poison while Incubating, adds %1%%% of the Expected Poison\nDamage to Plague Value"}}},name="plague_bearer_stored_poison_percent",stats={[1]="corrosive_shroud_gains_%_of_damage_from_inflicted_poisons"}},[366]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum Plague Value is %1%"}}},name="plague_bearer_maximum",stats={[1]="corrosive_shroud_maximum_stored_poison_damage"}},[367]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="While Infecting, deals Chaos Damage per second equal to %1%%% of the Plague Value when Infecting began, and loses Plague Value at the same rate"}}},name="plague_bearer_infection_percent",stats={[1]="corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"}},[368]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants %1$+d%% to Damage over Time Multiplier for Poison while Infecting"}}},name="plague_bearer_bonus_poison_multiplier_plus",stats={[1]="corrosive_shroud_poison_dot_multiplier_+_while_aura_active"}},[369]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles deal %1%%% less Damage"}}},name="active_skill_projectile_damage_incr",stats={[1]="active_skill_projectile_damage_+%_final"}},[370]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Returning Projectiles deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Returning Projectiles deal %1%%% less Damage"}}},name="active_skill_returning_projectile_damage_incr",stats={[1]="active_skill_returning_projectile_damage_+%_final"}},[371]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Deals up to %1%%% more Damage to closer targets"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Deals up to %1%%% less Damage to closer targets"}}},name="ground_slam_close_damage",stats={[1]="groundslam_damage_to_close_targets_+%_final"}},[372]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Returning Projectiles deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Returning Projectiles deal %1%%% less Damage"}}},name="venom_gyre_whirling_projectile_damage",stats={[1]="snapping_adder_released_projectile_damage_+%_final"}},[373]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Returning Projectiles Pierce all Targets"}}},name="returning_pierce",stats={[1]="returning_projectiles_always_pierce"}},[374]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Over Time caused by Projectiles deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Damage Over Time caused by Projectiles deals %1%%% less Damage"}}},name="active_skill_projectile_dot_incr",stats={[1]="active_skill_damage_over_time_from_projectile_hits_+%_final"}},[375]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain Arcane Surge after Spending a total of %1% Mana with this Spell"}}},name="support_arcane_surge_chance",stats={[1]="support_arcane_surge_gain_buff_on_mana_use_threshold"}},[376]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=3},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Arcane Surge grants %1%%% more Spell Damage\nArcane Surge grants %2%%% increased Cast Speed\nArcane Surge grants %3%%% of Mana Regenerated per second"}}},name="support_arcane_surge_damage",stats={[1]="support_arcane_surge_spell_damage_+%_final",[2]="support_arcane_surge_cast_speed_+%",[3]="support_arcane_surge_mana_regeneration_rate_per_minute_%"}},[377]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Arcane Surge lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Arcane Surge lasts %1% seconds"}}},name="support_arcane_surge_duration",stats={[1]="support_arcane_surge_duration_ms"}},[378]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain Innervation on Killing a Shocked Enemy"}}},name="support_innervate_buff",stats={[1]="support_innervate_gain_buff_on_killing_shocked_enemy"}},[379]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Innervation grants %1% to %2% Lightning Damage"}}},name="support_innervate_damage",stats={[1]="support_innervate_minimum_added_lightning_damage",[2]="support_innervate_maximum_added_lightning_damage"}},[380]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Innervation lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Innervation lasts %1% seconds"}}},name="support_innervate_buff_duration",stats={[1]="support_innervate_buff_duration_ms"}},[381]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Every third Attack deals a Ruthless Blow with Melee Hits"}}},name="support_ruthless_count",stats={[1]="support_ruthless_big_hit_max_count"}},[382]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ruthless Blows deal %1%%% more Melee Damage"}}},name="support_ruthless_damage",stats={[1]="support_ruthless_big_hit_damage_+%_final"}},[383]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ruthless Blows deal %1%%% more Damage with Bleeding caused by Melee Hits"}}},name="support_ruthless_bleeding_damage",stats={[1]="support_ruthless_blow_bleeding_damage_from_melee_hits_+%_final"}},[384]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Ruthless Blows have a base Stun Duration of %1% seconds"}}},name="support_ruthless_stun",stats={[1]="support_ruthless_big_hit_stun_base_duration_override_ms"}},[385]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="At least %1% Rage required to start Berserking"}}},name="berserk_min_rage",stats={[1]="berserk_minimum_rage"}},[386]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Attacks"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Attacks"}}},name="berserk_attack_damage",stats={[1]="berserk_attack_damage_+%_final"}},[387]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed"}}},name="berserk_attack_speed",stats={[1]="berserk_attack_speed_+%_final"}},[388]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Movement Speed"}}},name="berserk_move_speed",stats={[1]="berserk_movement_speed_+%_final"}},[389]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage taken"}}},name="berserk_damage_taken",stats={[1]="berserk_base_damage_taken_+%_final"}},[390]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]=1,[2]="#"}},text="Lose %1% Rage per second"}}},name="berserk_rage_loss_per_second",stats={[1]="virtual_berserk_hundred_times_rage_loss_per_second"}},[391]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each second, %1%%% more Rage loss Rate"}}},name="berserk_increased_rage_loss_per_second",stats={[1]="berserk_rage_loss_+%_per_second"}},[392]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area Damage"}}},stats={[1]="active_skill_area_damage_+%_final"}},[393]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area of Effect when Cast on Frostbolt"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area of Effect when Cast on Frostbolt"}}},name="active_skill_if_used_through_frostbolt_area",stats={[1]="active_skill_area_of_effect_+%_final_when_cast_on_frostbolt"}},[394]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Area of Effect length"}}},name="area_length_add",stats={[1]="active_skill_base_area_length_+"}},[395]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chills Enemies as though dealing %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Chills Enemies as though dealing %1%%% less Damage"}}},name="chill_with_more_damage",stats={[1]="active_skill_chill_as_though_damage_+%_final"}},[396]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage when Cast on Frostbolt"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage when Cast on Frostbolt"}}},name="active_skill_if_used_through_frostbolt_damage",stats={[1]="active_skill_if_used_through_frostbolt_damage_+%_final"}},[397]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Ignite"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Ignite"}}},name="ignite_damage_final",stats={[1]="active_skill_ignite_damage_+%_final"}},[398]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Poison Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Poison Duration"}}},name="poison_duration_final",stats={[1]="active_skill_poison_duration_+%_final"}},[399]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shocks Enemies as though dealing %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shocks Enemies as though dealing %1%%% less Damage"}}},name="shock_with_more_damage",stats={[1]="active_skill_shock_as_though_damage_+%_final"}},[400]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to grant an Endurance Charge on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Grants an Endurance Charge on Hit"}}},name="endurance_on_hit",stats={[1]="add_endurance_charge_on_skill_hit_%"}},[401]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Frenzy Charge on Hit"}}},name="frenzy_on_hit_chance",stats={[1]="add_frenzy_charge_on_skill_hit_%"}},[402]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Chain an additional time"}}},name="additional_chain_chance",stats={[1]="additional_chain_chance_%"}},[403]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance while affected by Elusive"}}},name="additional_crit_while_elusive",stats={[1]="additional_critical_strike_chance_permyriad_while_affected_by_elusive"}},[404]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Arrow Speed also apply to\nthis Skill's Area of Effect"}}},name="arrow_speed_modifiers_apply_to_area",stats={[1]="additive_arrow_speed_modifiers_apply_to_area_of_effect"}},[405]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=0,[2]=0}},text="Fire Damage from Hits is taken from the Aegis before your Life or Energy Shield\nAegis can take %1% Fire Damage"},[2]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]=1}},text="Cold Damage from Hits is taken from the Aegis before your Life or Energy Shield\nAegis can take %1% Cold Damage"},[3]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=2,[2]=2}},text="Elemental Damage from Hits is taken from the Aegis before your Life or Energy Shield\nAegis can take %1% Elemental Damage"},[4]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=3,[2]=3}},text="Lightning Damage from Hits is taken from the Aegis before your Life or Energy Shield\nAegis can take %1% Lightning Damage"}}},name="aegis_value",stats={[1]="aegis_unique_shield_max_value",[2]="active_skill_display_aegis_variation"}},[406]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damaging Hits always Stun Enemies that are on Full Life"}}},name="always_stun_full_life",stats={[1]="always_stun_enemies_that_are_on_full_life"}},[407]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Curse is applied by Bane"}}},name="apply_with_dark_ritual",stats={[1]="apply_linked_curses_with_dark_ritual"}},[408]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Overpowered applies -%1%%% chance to Block Attack and Spell Damage"}}},name="support_overpowered_on_enemy_block",stats={[1]="apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"}},[409]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage for each remaining Chain"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage for each remaining Chain"}}},name="arc_damage_per_remaining_chain",stats={[1]="arc_damage_+%_final_for_each_remaining_chain"}},[410]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage for each time beam has Chained"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage for each time beam has Chained"}}},name="arc_damage_per_chain",stats={[1]="arc_damage_+%_final_per_chain"}},[411]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spends %1%%% of current Mana"}}},name="arcane_cloak_mana",stats={[1]="arcane_cloak_consume_%_of_mana"}},[412]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage from Hits is taken from Buff before your Life or Energy Shield\nBuff can take Damage equal to Mana Spent by this Skill's effect"}}},name="arcane_cloak_buff_damage",stats={[1]="arcane_cloak_damage_absorbed_%"}},[413]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Buff grants Life Regeneration equal to %1%%% of Mana Spent by this Skill's effect per Second"}}},name="arcane_cloak_regen_buff",stats={[1]="arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"}},[414]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Buff grants Added Lightning Damage equal to %1%%% of Mana Spent by this Skill's effect"}}},name="arcane_cloak_damage_buff",stats={[1]="arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage"}},[415]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Chill Enemy for %1% seconds when Hit, reducing their Action Speed by 30%%"}}},name="arctic_armour_chill_when_hit_duration",stats={[1]="arctic_armour_chill_when_hit_duration"}},[416]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% Chilling Area"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Chilling Areas"}}},name="actic_breath_areas",stats={[1]="arctic_breath_maximum_number_of_skulls_allowed"}},[417]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per Stage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per Stage"}}},name="frost_fury_aoe_per_stage",stats={[1]="area_of_effect_+%_per_frost_fury_stage"}},[418]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect when Cast on Frostbolt"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect when Cast on Frostbolt"}}},name="area_of_effect_incr_when_cast_on_frostbolt",stats={[1]="area_of_effect_+%_when_cast_on_frostbolt"}},[419]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage"}}},stats={[1]="attack_damage_+%"}},[420]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Enemies are Blinded while in Sand Stance\nYou take %1%%% more Damage from Attacks from Enemies that aren't nearby while in Sand Stance\nNearby Enemies are Maimed while in Blood Stance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nearby Enemies are Blinded while in Sand Stance\nYou take %1%%% less Damage from Attacks from Enemies that aren't nearby while in Sand Stance\nNearby Enemies are Maimed while in Blood Stance"}}},name="sand_armour_damage_taken",stats={[1]="attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour"}},[421]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Mana"}}},name="mana_leech_from_any",stats={[1]="attack_skill_mana_leech_from_any_damage_permyriad"}},[422]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill when you kill a Bleeding Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when you kill a Bleeding Enemy"}}},name="attack_on_kill_bleeding_enemy",stats={[1]="attack_trigger_on_killing_bleeding_enemy_%"}},[423]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Impale Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Impale Enemies on Hit"}}},name="attack_impale_chance",stats={[1]="attacks_impale_on_hit_%_chance"}},[424]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid All Damage from Hits"},[2]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]=100,[2]="#"}},text="Avoid All Damage from Hits"}}},name="avoid_damage_chance",stats={[1]="avoid_damage_%"}},[425]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Aura grants %1%%% chance to Shock"}}},name="skill_grants_shock_chance",stats={[1]="base_chance_to_shock_%_from_skill"}},[426]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cooldown Recovery Speed"}}},name="cooldown_speed_incr",stats={[1]="base_cooldown_speed_+%"}},[427]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken"}}},name="damage_taken_incr",stats={[1]="base_damage_taken_+%"}},[428]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deals no Chaos Damage"}}},name="deal_no_chaos",stats={[1]="base_deal_no_chaos_damage"}},[429]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Energy Shield"}}},name="spell_es_leech",stats={[1]="base_energy_shield_leech_from_spell_damage_permyriad"}},[430]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum 1 Summoned Phantasm"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Phantasms"}}},name="ghost_limit",stats={[1]="number_of_support_ghosts_allowed"}},[431]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area of Effect per Blade Vortex blade detonated"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area of Effect per Blade Vortex blade detonated"}}},name="blade_burst_area_per_vortex",stats={[1]="blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated"}},[432]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for each blade"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for each blade"}}},name="blade_vortex_crit_chance_per_blade",stats={[1]="blade_vortex_critical_strike_chance_+%_per_blade"}},[433]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Hits Enemies every %1% Seconds"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Never Hits Enemies"}}},name="blade_vortex_hit_rate",stats={[1]="blade_vortex_hit_rate_ms"}},[434]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Volley"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Volley"}}},name="bladefall_crit_chance_per_stage",stats={[1]="bladefall_critical_strike_chance_+%_per_stage"}},[435]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLingeringBlades"},limit={[1]={[1]=1,[2]=1}},text="Each Volley leaves a Lingering Blade in the ground"},[2]={[1]={k="reminderstring",v="ReminderTextLingeringBlades"},limit={[1]={[1]=2,[2]="#"}},text="Every %1% Volleys leave a Lingering Blade in the ground"}}},name="bladefall_leaves_blades",stats={[1]="bladefall_volleys_needed_per_vestige_blade"}},[436]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed while you're in a Blood Bladestorm"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed while you're in a Blood Bladestorm"}}},name="skill_attack_speed_in_bloodstorm",stats={[1]="bladestorm_attack_speed_+%_final_while_in_bloodstorm"}},[437]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Maximum of %1% Bladestorms at a time"}}},name="bladestorm_limit",stats={[1]="bladestorm_maximum_number_of_storms_allowed"}},[438]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Sand Bladestorms grant %1%%% increased Movement Speed to you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Sand Bladestorms grant %1%%% reduced Movement Speed to you"}}},name="sandstorm_grants_movement_speed",stats={[1]="bladestorm_movement_speed_+%_while_in_sandstorm"}},[439]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Bladestorm deals %1%%% more Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Bladestorm deals %1%%% less Damage with Hits and Ailments"}}},name="bladestorm_damage_incr",stats={[1]="bladestorm_storm_damage_+%_final"}},[440]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="%1%%% chance to cause Bleeding"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Causes Bleeding"},[3]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0}},text="Causes Bleeding"},[4]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Cannot cause Bleeding"}}},name="bleeding_chance",stats={[1]="bleed_on_hit_with_attacks_%",[2]="global_bleed_on_hit",[3]="cannot_cause_bleeding"}},[441]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Bleeding"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Bleeding"}}},name="bleeding_damage_incr",stats={[1]="bleeding_damage_+%"}},[442]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Creates %1% Spikes"}}},name="blood_spears_spear_count",stats={[1]="blood_spears_base_number_of_spears"}},[443]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Golems deal %1%%% more Damage per Non-Golem Minion near them, up to %2%%%"}}},name="bone_golem_damage_per_nearby_non_golem_minion",stats={[1]="bone_golem_damage_+%_final_per_non_golem_minion_nearby",[2]="bone_golem_damage_per_non_golem_minion_nearby_maximum_%"}},[444]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Golems grant %1% to %2% additional Physical Damage for Non-Golem Minions"}}},name="golem_grants_minion_added_physical",stats={[1]="bone_golem_grants_minion_minimum_added_physical_damage",[2]="bone_golem_grants_minion_maximum_added_physical_damage"}},[445]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill cannot Knock Enemies Back"}}},name="cannot_knockback",stats={[1]="cannot_knockback"}},[446]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Crit an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Crit an Enemy"}}},name="cast_this_spell_on_crit",stats={[1]="cast_on_crit_%"}},[447]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Spell is Triggered when Equipped"}}},name="cast_on_equip",stats={[1]="cast_on_gain_skill"}},[448]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+1 Radius per %1% Rage"}}},name="chain_strike_radius",stats={[1]="chain_strike_cone_radius_+_per_x_rage"}},[449]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Rage if this Skill Hits any Enemies"}}},name="chain_strike_rage",stats={[1]="chain_strike_gain_x_rage_if_attack_hits"}},[450]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},[2]={k="reminderstring",v="ReminderTextBloodStanceDefault"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to cause Bleeding while in Blood Stance"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},[2]={k="reminderstring",v="ReminderTextBloodStanceDefault"},limit={[1]={[1]=100,[2]="#"}},text="Causes Bleeding while in Blood Stance"}}},name="blood_stance_bleeding_chance",stats={[1]="chance_to_bleed_on_hit_%_chance_in_blood_stance"}},[451]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to deal Double Damage"}}},name="double_damage_chance",stats={[1]="chance_to_deal_double_damage_%"}},[452]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to deal Double Damage to Bleeding Enemies"}}},name="double_damage_chance_vs_bleed",stats={[1]="chance_to_deal_double_damage_%_vs_bleeding_enemies"}},[453]={lang={English={[1]={limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="%1%%% chance to gain a Frenzy Charge when an Enemy Dies while in this Skill's Area"},[2]={limit={[1]={[1]=1,[2]=99},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0}},text="%1%%% chance to gain a Frenzy Charge when an Enemy Dies while in this Skill's Area\nEvery second, gain a Frenzy Charge if an Enemy is in this Skill's Area"},[3]={limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Gain a Frenzy Charge when an Enemy Dies while in this Skill's Area"},[4]={limit={[1]={[1]=100,[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0}},text="Gain a Frenzy Charge when an Enemy Dies while in this Skill's Area\nEvery second, gain a Frenzy Charge if an Enemy is in this Skill's Area"},[5]={limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0},[3]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when an Enemy Dies while in this Skill's Area"},[6]={limit={[1]={[1]=1,[2]=99},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when an Enemy Dies while in this Skill's Area\nEvery second, gain a Power Charge if an Enemy is in this Skill's Area"},[7]={limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]="#",[2]="#"}},text="Gain a Power Charge when an Enemy Dies while in this Skill's Area"},[8]={limit={[1]={[1]=100,[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Gain a Power Charge when an Enemy Dies while in this Skill's Area\nEvery second, gain a Power Charge if an Enemy is in Skill's Area"}}},name="cold_snap_frenzy_chance",stats={[1]="chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%",[2]="vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura",[3]="active_skill_cooldown_bypass_type_override_to_power_charge"}},[454]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge when Projectile Hits a Rare or Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge when Projectile Hits a Rare or Unique Enemy"}}},name="power_charge_vs_rare_or_unique",stats={[1]="chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"}},[455]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Curse has %1%%% chance to apply to Hexproof Enemies"}}},name="ignore_hexproof_chance",stats={[1]="chance_to_ignore_hexproof_%"}},[456]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Summon a Phantasm when this Skill Hits a Rare or Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon a Phantasm when this Skill Hits a Rare or Unique Enemy"}}},name="ghost_rare_chance",stats={[1]="chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"}},[457]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Summon a Phantasm when this Skill deals a Killing Blow"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon a Phantasm when this Skill deals a Killing Blow"}}},name="ghost_chance",stats={[1]="chance_to_summon_support_ghost_on_killing_blow_%"}},[458]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill when your Animated Guardian Kills an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when your Animated Guardian Kills an Enemy"}}},name="trigger_on_animate_guardian_kill",stats={[1]="chance_to_trigger_on_animate_guardian_kill_%"}},[459]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill when an Animated Weapon Kills an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when an Animated Weapon Kills an Enemy"}}},name="trigger_on_animate_weapon_kill",stats={[1]="chance_to_trigger_on_animate_weapon_kill_%"}},[460]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnnerve"},limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to Unnerve Enemies for 4 seconds on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextUnnerve"},limit={[1]={[1]=100,[2]="#"}},text="Unnerve Enemies for 4 seconds on Hit"}}},stats={[1]="chance_to_unnerve_on_hit_%"}},[461]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments for each stage"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits and Ailments for each stage"}}},name="charged_attack_damage_stages",stats={[1]="charged_attack_damage_per_stack_+%_final"}},[462]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deals %1%%% more Damage while Channelling if Illusion has finished moving"}}},name="charged_dash_damage_when_stopped_moving",stats={[1]="charged_dash_channelling_damage_at_full_stacks_+%_final"}},[463]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Final wave deals %1%%% of Damage per stage"}}},name="charged_dash_final_wave_damage_per_stage",stats={[1]="charged_dash_damage_+%_final_per_stack"}},[464]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Illusion moves at %1%%% of your Movement Speed"}}},name="charged_dash_built_in_move_speed",stats={[1]="charged_dash_skill_inherent_movement_speed_+%_final"}},[465]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]="#"}},text="Chilled Ground from this Skill has a base effect of %1%%%"}}},name="chilled_ground_magnitude_override",stats={[1]="chilled_ground_base_magnitude_override"}},[466]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chilling Area has %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Chilling Area has %1%%% reduced Movement Speed"}}},name="chilling_area_movement_velocity",stats={[1]="chilling_area_movement_velocity_+%"}},[467]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cleave has +1 to Radius per Nearby Enemy, up to +10"}}},name="cleave_radius_per_enemy",stats={[1]="cleave_+1_base_radius_per_nearby_enemy_up_to_10"}},[468]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Consecrated Ground grants Immunity to Curses to you and Allies"}}},name="consecrated_ground_immune_to_curses",stats={[1]="consecrated_ground_immune_to_curses"}},[469]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Maximum of %1% Geysers at a time"}}},name="cremation_max_geysers",stats={[1]="corpse_erruption_maximum_number_of_geyers"}},[470]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area of Effect if Consuming a corpse"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area of Effect if Consuming a corpse"}}},name="bodyswap_corpse_area_incr",stats={[1]="corpse_warp_area_of_effect_+%_final_when_consuming_corpse"}},[471]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text=" Slipstreams grant %1%%% increased Action Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Slipstreams grant %1%%% reduced Action Speed"}}},name="slipstream_action_speed",stats={[1]="created_slipstream_action_speed_+%"}},[472]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Shocked Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Shocked Enemies"}}},name="crit_chance_vs_shocked_enemies",stats={[1]="critical_strike_chance_+%_vs_shocked_enemies"}},[473]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Poison from Critical Strikes"}}},name="poison_crit_multi",stats={[1]="critical_poison_dot_multiplier_+"}},[474]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Power Charge"}}},name="crit_chance_per_power_charge",stats={[1]="critical_strike_chance_+%_per_power_charge"}},[475]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Inspiration Charge"}}},name="crit_chance_per_righteous_charge",stats={[1]="critical_strike_chance_+%_per_righteous_charge"}},[476]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for each blade"}}},name="crit_multi_per_blade",stats={[1]="critical_strike_multiplier_+_per_blade"}},[477]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier per Power Charge"}}},name="crit_multi_per_power_charge",stats={[1]="critical_strike_multiplier_+_per_power_charge"}},[478]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gains 1 Stage every %1% seconds while Channelling"}}},name="cyclone_stage_gain_time",stats={[1]="cyclone_gain_stage_every_x_ms_while_channelling"}},[479]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Stages"}}},name="cyclone_max_stages",stats={[1]="cyclone_max_number_of_stages"}},[480]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to radius per Stage"}}},name="cyclone_range_per_stage",stats={[1]="cyclone_melee_weapon_range_+_per_stage"}},[481]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Lose 1 Stage every %1% seconds while not Channelling"}}},name="cyclone_stage_decay_time",stats={[1]="cyclone_stage_decay_time_ms"}},[482]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage for each time this Skill has Chained"}}},name="damage_per_chain",stats={[1]="damage_+%_per_chain"}},[483]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Leeching Energy Shield"}}},name="damage_while_es_leeching",stats={[1]="damage_+%_while_es_leeching"}},[484]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Leeching Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Leeching Life"}}},name="damage_while_life_leeching",stats={[1]="damage_+%_while_life_leeching"}},[485]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Leeching Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Leeching Mana"}}},name="damage_while_mana_leeching",stats={[1]="damage_+%_while_mana_leeching"}},[486]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]="#"}},text="Damaging Ailments deal damage %1%%% faster"}}},name="damaging_ailments_deal_damage_faster",stats={[1]="damaging_ailments_deal_damage_+%_faster"}},[487]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Damage per Curse applied"}}},name="dark_ritual_damage",stats={[1]="dark_ritual_damage_+%_final_per_curse_applied"}},[488]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Debuff Duration per Curse applied"}}},name="dark_ritual_duration",stats={[1]="dark_ritual_skill_effect_duration_+%_per_curse_applied"}},[489]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deals no Elemental Damage"}}},name="deal_no_elemental",stats={[1]="deal_no_elemental_damage"}},[490]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Maximum of %1% corpses allowed"}}},name="desecrate_maximum_corpse_count",stats={[1]="desecrate_maximum_number_of_corpses"}},[491]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Only one Mine of this type can Detonate in each Detonation Sequence"}}},name="disable_mine_detonation_cascade",stats={[1]="disable_mine_detonation_cascade"}},[492]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires an additional Projectile for every 2 prior Mines in Detonation Sequence"}}},name="additional_proj_per_2_mines_in_sequence",stats={[1]="display_additional_projectile_per_2_mines_in_detonation_sequence"}},[493]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires an additional Projectile for every 4 prior Mines in Detonation Sequence"}}},name="additional_proj_per_4_mines_in_sequence",stats={[1]="display_additional_projectile_per_4_mines_in_detonation_sequence"}},[494]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fires an additional Projectile for each prior Mine in Detonation Sequence"}}},name="additional_proj_per_mine_in_sequence",stats={[1]="display_additional_projectile_per_mine_in_detonation_sequence"}},[495]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Applied Curses have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Applied Curses have %1%%% reduced Effect"}}},name="linked_curse_effect_incr",stats={[1]="display_linked_curse_effect_+%"}},[496]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Debuff can have up to %1% layers of Damage"}}},name="blight_max_stacks",stats={[1]="display_max_blight_stacks"}},[497]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Burning Debuff can have a maximum of %1% stages"}}},name="fire_beam_max_stacks",stats={[1]="display_max_fire_beam_stacks"}},[498]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="First Mine Detonates Instantly\nMines get %1%%% more Detonation Speed for each prior Mine in Detonation Sequence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]=1,[2]="#"}},text="First Mine Detonates Instantly\nMines get %1%%% less Detonation Speed for each prior Mine in Detonation Sequence"}}},name="mine_detonation_sequence_speed_incr",stats={[1]="display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine"}},[499]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Melee Strike Range also apply to this Skill's Area radius"}}},name="display_melee_range_applies_to_radius",stats={[1]="display_modifiers_to_melee_attack_range_apply_to_skill_radius"}},[500]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]=1}},text="Removes existing Elusive before granting a new Elusive Buff when used"}}},name="elusive_swap_on_use",stats={[1]="display_removes_and_grants_elusive_when_used"}},[501]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Buff expiry rate cannot be modified"}}},name="display_fixed_duration_buff",stats={[1]="display_skill_fixed_duration_buff"}},[502]={lang={English={[1]={[1]={k="milliseconds_to_seconds_1dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Orbs jump every %1% seconds"}}},name="storm_burst_jump_time",stats={[1]="display_storm_burst_jump_time_ms"}},[503]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill's Cooldown does not recover during its effect"}}},name="display_no_cooldown_during_buff",stats={[1]="display_this_skill_cooldown_does_not_recover_during_buff"}},[504]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters from the Breach do not grant Experience or drop Items"}}},name="display_vaal_breach_no_drops_xp",stats={[1]="display_vaal_breach_no_drops_xp"}},[505]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles travel %1%%% increased distance before changing forms"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles travel %1%%% reduced distance before changing forms"}}},name="distance_before_form_change",stats={[1]="distance_before_form_change_+%"}},[506]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Beam deals %1%%% more Damage with Ailments per Stage after the first"}}},name="divine_tempest_stage_ailment_damage",stats={[1]="divine_tempest_ailment_damage_+%_final_per_stage"}},[507]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage while Channelling"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage while Channelling"}}},name="divine_tempest_channelling_damage",stats={[1]="divine_tempest_damage_+%_final_while_channelling"}},[508]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Beam deals %1%%% more Damage with Hits per Stage after the first"}}},name="divine_tempest_stage_hit_damage",stats={[1]="divine_tempest_hit_damage_+%_final_per_stage"}},[509]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain an additional Stage when Hitting a Normal or Magic Enemy"}}},name="divine_tempest_normal_magic_chance",stats={[1]="divine_tempest_stage_on_hitting_normal_magic_%_chance"}},[510]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gains an additional Stage when Hitting a Rare or Unique Enemy"}}},name="divine_tempest_rare_unique_chance",stats={[1]="divine_tempest_stage_on_hitting_rare_unique"}},[511]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBloodStanceDefault"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Bleeding while in Blood Stance"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextBloodStanceDefault"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Bleeding while in Blood Stance"}}},name="blood_stance_bleeding_damage",stats={[1]="double_slash_bleeding_damage_+%_final_in_blood_stance"}},[512]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Critical Strike Chance against Enemies that are on Full Life"}}},name="dual_strike_crit_full_life",stats={[1]="dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life"}},[513]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Damage with Hits and Ailments against Enemies that are on Full Life"}}},name="dual_strike_damage_full_life",stats={[1]="dual_strike_damage_+%_final_against_enemies_on_full_life"}},[514]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Aftershock deals %1% to %2% Added Attack Physical Damage"}}},name="quake_slam_aftershock_added_phys",stats={[1]="earthquake_aftershock_minimum_added_physical_damage",[2]="earthquake_aftershock_maximum_added_physical_damage"}},[515]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Elemental Damage per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Elemental Damage per Inspiration Charge"}}},name="elemental_damage_per_righteous_charge",stats={[1]="elemental_damage_+%_final_per_righteous_charge"}},[516]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="80%% more Area Radius against Enemies affected by an Ailment of the chosen Element"}}},name="elemental_hit_aoe_vs_associated_element",stats={[1]="elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"}},[517]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="10%% more Damage per Elemental Ailment on the Enemy"}}},name="elemental_hit_damage_per_ailment",stats={[1]="elemental_hit_damage_+10%_final_per_enemy_elemental_ailment"}},[518]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Elusive from this Skill"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Elusive from this Skill"}}},name="elusive_effect",stats={[1]="elusive_effect_+%"}},[519]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="+%1% seconds to Cooldown while you have Glorious Madness"}}},name="embrace_maddness_cooldown",stats={[1]="embrace_madness_amount_of_cooldown_to_gain_ms"}},[520]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Charged Slam Deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Charged Slam Deals %1%%% less Damage"}}},name="endurance_charge_slam_extra_damage",stats={[1]="endurance_charge_slam_damage_+%_final_with_endurance_charge"}},[521]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Regeneration rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Regeneration rate"}}},name="energy_shield_regen_rate",stats={[1]="energy_shield_regeneration_rate_+%"}},[522]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLingeringBlades"},limit={[1]={[1]=1,[2]=1}},text="Leaves a Lingering Blade in the ground for every Projectile fired"},[2]={[1]={k="reminderstring",v="ReminderTextLingeringBlades"},limit={[1]={[1]=2,[2]="#"}},text="Leaves a Lingering Blades in the ground for every %1% Projectiles fired"}}},name="ethereal_knives_leaves_blades",stats={[1]="ethereal_knives_projectiles_needed_per_vestige_blade"}},[523]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased angle per stage, up to 300%%"}}},name="expanding_fire_cone_angle_per_stage",stats={[1]="expanding_fire_cone_angle_+%_per_stage"}},[524]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Final wave always Ignites"}}},name="expanding_fire_cone_always_ignite",stats={[1]="expanding_fire_cone_final_wave_always_ignite"}},[525]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% maximum stages"}}},name="expanding_fire_cone_stages",stats={[1]="expanding_fire_cone_maximum_number_of_stages"}},[526]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1$+d to radius per stage, up to %2$+d"}}},name="expanding_fire_cone_radius_per_stage",stats={[1]="expanding_fire_cone_radius_+_per_stage",[2]="expanding_fire_cone_radius_limit"}},[527]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Final wave deals %1%%% more Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Final wave deals %1%%% less Damage with Hits"}}},name="expanding_fire_cone_release_hit",stats={[1]="expanding_fire_cone_release_hit_damage_+%_final"}},[528]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Explosion deals %1%%% more Damage with Hits and Ailments per Explosive Arrow on Target"}}},name="fuse_arrow_ignite_damage_per_stack",stats={[1]="explosive_arrow_hit_and_ailment_damage_+%_final_per_stack"}},[529]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Explosive Arrows stuck in an Enemy"}}},stats={[1]="explosive_arrow_stack_limit"}},[530]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra Targets can be found %1%%% further away"}}},stats={[1]="extra_target_targeting_distance_+%"}},[531]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},[2]={k="reminderstring",v="ReminderTextDealsDamageFaster"},limit={[1]={[1]="#",[2]="#"}},text="Bleeding inflicted by this Skill deals Damage %1%%% faster"}}},name="faster_bleed",stats={[1]="faster_bleed_%"}},[532]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Gain %1% Life per corpse Consumed\nGain %2% Mana per corpse Consumed\nGain %3% Energy Shield per corpse Consumed"}}},name="feast_of_flesh_bonus_per_corpse",stats={[1]="feast_of_flesh_gain_X_life_per_corpse_consumed",[2]="feast_of_flesh_gain_X_mana_per_corpse_consumed",[3]="feast_of_flesh_gain_X_energy_shield_per_corpse_consumed"}},[533]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Additional Debuff stages add %1%%% of Damage"}}},name="fire_beam_add_damage",stats={[1]="fire_beam_additional_stack_damage_+%_final"}},[534]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Total Fire Resistance penalty from all Beams cannot exceed %1$+d%%"}}},name="fire_beam_resistance_cap",stats={[1]="fire_beam_enemy_fire_resistance_%_maximum"}},[535]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Debuff applies %1$+d%% Fire Resistance per stage"}}},name="fire_beam_resistance_minus",stats={[1]="fire_beam_enemy_fire_resistance_%_per_stack"}},[536]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased beam length"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced beam length"}}},name="fire_beam_length_incr",stats={[1]="fire_beam_length_+%"}},[537]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill's Duration cannot be modified"}}},name="fixed_duration",stats={[1]="fixed_skill_effect_duration"}},[538]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to Ignite for each Stage"}}},name="flameblast_ignite_chance",stats={[1]="flameblast_ignite_chance_+%_per_stage"}},[539]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Cast Speed apply to the rotation speed of the Flames"}}},name="flamethrower_tower_trap_rotation",stats={[1]="flamethrower_tower_trap_display_cast_speed_affects_rotation"}},[540]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Has %1% Flames"}}},name="flamethrower_tower_trap_flames",stats={[1]="flamethrower_tower_trap_number_of_flamethrowers"}},[541]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage against Burning Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage against Burning Enemies"}}},name="flamethrower_trap_damage_against_burn",stats={[1]="flamethrower_trap_damage_+%_final_vs_burning_enemies"}},[542]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Buff grants %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Buff grants %1%%% reduced Movement Speed"}}},name="flicker_strike_move_speed",stats={[1]="flicker_strike_buff_movement_speed_+%"}},[543]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]="#"}},text="Grants Fortify on hit"}}},name="fortify_on_hit",stats={[1]="fortify_on_hit"}},[544]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Damage per Frenzy Charge"}}},name="frenzy_more_attack_damage_per_frenzy_charge",stats={[1]="frenzy_skill_attack_damage_+%_final_per_frenzy_charge"}},[545]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed per Frenzy Charge"}}},name="frenzy_more_attack_speed_per_frenzy_charge",stats={[1]="frenzy_skill_attack_speed_+%_final_per_frenzy_charge"}},[546]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can explode from 1 Frostbolt Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Can explode from up to %1% Frostbolt Projectiles"}}},name="vortex_num_frost_bolts",stats={[1]="frost_bolt_nova_number_of_frost_bolts_to_detonate"}},[547]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Base Duration per Stage"}}},name="frost_fury_added_duration",stats={[1]="frost_fury_added_duration_per_stage_ms"}},[548]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Fires projectiles every %1% seconds"}}},name="frost_fury_fire_interval",stats={[1]="frost_fury_base_fire_interval_ms"}},[549]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Duration per Stage"}}},name="frost_fury_incr_duration",stats={[1]="frost_fury_duration_+%_per_stage"}},[550]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Projectile Frequency while Channelling"}}},name="frost_fury_fire_speed_channelling",stats={[1]="frost_fury_fire_speed_+%_final_while_channelling"}},[551]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Projectile Frequency per Stage"}}},name="frost_fury_fire_speed_incr",stats={[1]="frost_fury_fire_speed_+%_per_stage"}},[552]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Stages"}}},name="frost_fury_stages",stats={[1]="frost_fury_max_number_of_stages"}},[553]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Elusive on Critical Strike with this Skill"},[2]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=100,[2]="#"}},text="Gain Elusive on Critical Strike with this Skill"}}},name="support_puncturing_elusive_chance",stats={[1]="gain_elusive_on_crit_%_chance"}},[554]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Rage on Hit"}}},name="rage_on_hit",stats={[1]="gain_rage_on_hit"}},[555]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Inspiration Charge when you Spend Mana for this Skill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Inspiration Charge when you Spend Mana for this Skill"}}},name="righteous_charge_on_spend_mana",stats={[1]="gain_righteous_charge_on_mana_spent_%"}},[556]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]="#",[2]="#"}},text="Maim on Hit"}}},name="always_maim",stats={[1]="global_maim_on_hit"}},[557]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage against Bleeding Enemies"}}},name="added_phys_vs_bleeding",stats={[1]="global_minimum_added_physical_damage_vs_bleeding_enemies",[2]="global_maximum_added_physical_damage_vs_bleeding_enemies"}},[558]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Glorious Madness inflicts a random Touched Debuff every second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Glorious Madness inflicts a random Touched Debuff every %1% seconds"}}},name="glorious_madness_timer",stats={[1]="glorious_madness_timer_ms"}},[559]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Final wave deals %1%%% more Damage with Ignite"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Final wave deals %1%%% less Damage with Ignite"}}},name="expanding_fire_cone_release_ignite",stats={[1]="grant_expanding_fire_cone_release_ignite_damage_+%_final"}},[560]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Virulence when you Poison an Enemy"}}},name="herald_of_agony_stack",stats={[1]="herald_of_agony_add_stack_on_poison"}},[561]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants %1%%% more Poison Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants %1%%% less Poison Damage"}}},name="herald_of_agony_damage",stats={[1]="herald_of_agony_poison_damage_+%_final"}},[562]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Base Burning Damage is %1%%% of Overkill Damage"}}},name="herald_of_ash_burning_percent",stats={[1]="herald_of_ash_burning_%_overkill_damage_per_minute"}},[563]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks"}}},name="herald_of_light_attack_added_physical",stats={[1]="herald_of_light_attack_minimum_added_physical_damage",[2]="herald_of_light_attack_maximum_added_physical_damage"}},[564]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Spells"}}},name="herald_of_light_spell_added_physical",stats={[1]="herald_of_light_spell_minimum_added_physical_damage",[2]="herald_of_light_spell_maximum_added_physical_damage"}},[565]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summon a Sentinel of Purity when you Kill an Enemy"}}},name="herald_of_light_summon_on_kill",stats={[1]="herald_of_light_summon_champion_on_kill"}},[566]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Summon a Sentinel of Purity when you Hit a Rare or Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon a Sentinel of Purity when you Hit a Rare or Unique Enemy"}}},name="herald_of_light_summon_on_hit",stats={[1]="herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%"}},[567]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hindered Enemies take %1%%% increased Chaos Damage"}}},name="hinder_damage_taken",stats={[1]="hinder_enemy_chaos_damage_taken_+%"}},[568]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Holy Relic's Nova Skill grants %1% Life regenerated per second to Allies"}}},name="relic_nova_life_regen_per_minute",stats={[1]="holy_relic_nova_life_regeneration_rate_per_minute"}},[569]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Holy Relic's Nova Skill grants %1% Life regenerated per second to Minions"}}},name="relic_nova_minion_life_regen_per_second",stats={[1]="holy_relic_nova_minion_life_regeneration_rate_per_second"}},[570]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]="#"}},text="%1%%% increased Cooldown Recovery Speed for each Normal or Magic Enemy in Area\n%2%%% increased Cooldown Recovery Speed for each Rare or Unique Enemy in Area"},[2]={[1]={k="negate",v=1},[2]={k="negate",v=2},limit={[1]={[1]="#",[2]=-1},[2]={[1]="#",[2]=-1}},text="%1%%% reduced Cooldown Recovery Speed for each Normal or Magic Enemy in Area\n%2%%% reduced Cooldown Recovery Speed for each Rare or Unique Enemy in Area"}}},name="ice_dash_cooldown_speed_incr",stats={[1]="ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy",[2]="ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy"}},[571]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can expand from 1 Frostbolt Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Can expand from up to %1% Frostbolt Projectiles"}}},name="ice_nova_num_frost_bolts",stats={[1]="ice_nova_number_of_frost_bolts_to_cast_on"}},[572]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Ignited by this Skill have %1$+d%% to Fire Resistance"}}},name="ignites_apply_fire_res",stats={[1]="ignites_apply_fire_resistance_+"}},[573]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Impale Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Impale Effect"}}},name="impale_effect",stats={[1]="impale_debuff_effect_+%"}},[574]={lang={English={[1]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextPhysReductionNotNegative"},limit={[1]={[1]="#",[2]="#"}},text="Enemies Impaled by this skill have %1$+d%% to Total Physical Damage Reduction against Impale Hits"}}},stats={[1]="impale_phys_reduction_%_penalty"}},[575]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Cold Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Cold Damage taken"}}},name="impurity_less_cold_damage_taken",stats={[1]="impurity_cold_damage_taken_+%_final"}},[576]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Fire Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Fire Damage taken"}}},name="impurity_less_fire_damage_taken",stats={[1]="impurity_fire_damage_taken_+%_final"}},[577]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Lightning Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Lightning Damage taken"}}},name="impurity_less_lightning_damage_taken",stats={[1]="impurity_lightning_damage_taken_+%_final"}},[578]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Debuff deals %1%%% of Damage per Charge"}}},name="infernal_blow_damage",stats={[1]="infernal_blow_explosion_damage_%_of_total_per_stack"}},[579]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Inspiration Charge Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Inspiration Charge Duration"}}},name="righteous_charge_duration",stats={[1]="inspiration_charge_duration_+%"}},[580]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers which would cause projectiles to Fork instead cause them to change direction additional times"}}},name="zig_zags_from_forks",stats={[1]="kinetic_bolt_forks_apply_to_zig_zags"}},[581]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments against Bleeding enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits and Ailments against Bleeding enemies"}}},name="lacerate_damage_vs_bleeding",stats={[1]="lacerate_hit_and_ailment_damage_+%_final_vs_bleeding_enemies"}},[582]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Stronger Pulses deal %1%%% more Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Stronger Pulses deal %1%%% less Damage with Hits and Ailments"}}},name="ightning_tendrils_pulse_damage",stats={[1]="lightning_tendrils_channelled_larger_pulse_damage_+%_final"}},[583]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Stronger Pulse has %1$+d to Radius"}}},name="lightning_tendrils_pulse_radius",stats={[1]="lightning_tendrils_channelled_larger_pulse_radius_+"}},[584]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Strikes %1% Areas"},[2]={[1]={k="milliseconds_to_seconds_2dp",v=2},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Strikes %1% Areas every %2% seconds"}}},name="lightning_tower_trap_number_of_beams",stats={[1]="lightning_tower_trap_number_of_beams",[2]="lightning_tower_trap_interval_duration_ms"}},[585]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose all Inspiration Charges after Spending %1% total Mana with this Skill"}}},name="lose_righteous_charges_on_mana_use_threshold",stats={[1]="lose_all_righteous_charges_on_mana_use_threshold"}},[586]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Maim"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Maim"}}},name="maim_effect",stats={[1]="maim_effect_+%"}},[587]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Maim on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=100,[2]="#"}},text="Maim on Hit"}}},name="maim_chance",stats={[1]="maim_on_hit_%"}},[588]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextExpectedPoisonDamage"},limit={[1]={[1]=1,[2]="#"}},text="Secondary Debuff deals %1%%% of the total remaining Expected Poison Damage of all Poisons on the dying Enemy per second as Chaos Damage"}}},name="pestilent_strike_remaining_poison_percent",stats={[1]="mamba_strike_deal_%_of_all_poison_total_damage_per_minute"}},[589]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Crab Barriers"}}},name="max_crab_barriers",stats={[1]="max_crab_aspect_stacks"}},[590]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Can queue up to %1% uses"}}},name="max_number_of_lightning_warp_markers",stats={[1]="max_number_of_lightning_warp_markers"}},[591]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Intensity"}}},stats={[1]="maximum_intensify_stacks"}},[592]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Lingering Blades can be left in the ground at a time"}}},name="max_vestige_blades",stats={[1]="maximum_number_of_blades_left_in_ground"}},[593]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Mirage Warriors"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Mirage Warriors"}}},name="maximum_mirage_warriors",stats={[1]="maximum_number_of_mirage_warriors"}},[594]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can catch up to %1% Returning Projectiles"}}},name="max_caught_projectiles",stats={[1]="maximum_number_of_snapping_adder_projectiles"}},[595]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Virulence"}}},stats={[1]="maximum_virulence_stacks"}},[596]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Targets %1% additional nearby Enemy"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Targets %1% additional nearby Enemies"}}},name="number_of_spirit_strikes",stats={[1]="melee_attack_number_of_spirit_strikes"}},[597]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Mines cannot be Re-armed"}}},name="mine_cannot_rearm",stats={[1]="mine_cannot_rearm"}},[598]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Skill has %1%%% increased Critical Strike Chance per Power Charge if used by a Mine"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Skill has %1%%% reduced Critical Strike Chance per Power Charge if used by a Mine"}}},name="mine_crit_chance_per_power_charge",stats={[1]="mine_critical_strike_chance_+%_per_power_charge"}},[599]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Mine Detonation is Instant"}}},name="mine_detonates_instantly",stats={[1]="mine_detonates_instantly"}},[600]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mines have %1%%% increased Detonation Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mines have %1%%% reduced Detonation Speed"}}},name="mine_detonation_speed_incr",stats={[1]="mine_detonation_speed_+%"}},[601]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Throwing Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Throwing Speed per Frenzy Charge"}}},name="mine_throwing_speed_per_frenzy_charge",stats={[1]="mine_throwing_speed_+%_per_frenzy_charge"}},[602]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Cold Damage per Frenzy Charge"}}},name="support_ice_bite_damage",stats={[1]="minimum_added_cold_damage_per_frenzy_charge",[2]="maximum_added_cold_damage_per_frenzy_charge"}},[603]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage against Chilled Enemies"}}},name="added_cold_vs_chilled_enemies",stats={[1]="minimum_added_cold_damage_vs_chilled_enemies",[2]="maximum_added_cold_damage_vs_chilled_enemies"}},[604]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Aura grants %1% to %2% added Lightning Damage"}}},name="skill_grants_lightning_damage",stats={[1]="minimum_added_lightning_damage_from_skill",[2]="maximum_added_lightning_damage_from_skill"}},[605]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Base Physical Damage per 15 Strength"}}},name="secondary_physical_damage_range_per_strength",stats={[1]="minimum_secondary_physical_damage_per_15_strength",[2]="maximum_secondary_physical_damage_per_15_strength"}},[606]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% additional Physical Damage Reduction"}}},name="minion_phys_reduction",stats={[1]="minion_additional_physical_damage_reduction_%"}},[607]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions gain %1%%% chance to deal Double Damage"}}},name="minion_double_damage_chance",stats={[1]="minion_chance_to_deal_double_damage_%"}},[608]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% chance to Taunt on Hit"}}},name="minion_chance_to_taunt",stats={[1]="minion_chance_to_taunt_on_hit_%"}},[609]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions take %1%%% increased Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions take %1%%% reduced Fire Damage"}}},name="minion_fire_damage_taken",stats={[1]="minion_fire_damage_taken_+%"}},[610]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFeedingFrenzy"},limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to grant Feeding Frenzy to you on Hit"}}},name="feeding_frenzy_on_hit",stats={[1]="minion_grant_puppet_master_buff_to_parent_on_hit_%"}},[611]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% to all maximum Elemental Resistances"}}},name="minion_maximum_elemental_resist",stats={[1]="minion_maximum_all_elemental_resistances_%"}},[612]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to inflict Exposure on Hit, applying -10%% to the Elemental Resistance matching highest Damage type taken by Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Minions inflict Exposure on Hit, applying -10%% to the Elemental Resistance matching highest Damage type taken by Enemy"}}},name="minions_inflict_exposure",stats={[1]="minions_inflict_exposure_on_hit_%_chance"}},[613]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="%1%%% of Damage from Hits is taken from the Buff before your Life or Energy Shield\nBuff can take Damage equal to %2%%% of your Armour, up to a maximum of %3%"}}},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"}},[614]={lang={English={}},name="molten_shell_damage_reflect"},[615]={lang={English={}}},[616]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Elemental Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Elemental Damage taken"}}},name="immortal_call_elemental_taken",stats={[1]="mortal_call_elemental_damage_taken_+%_final"}},[617]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Physical Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Physical Damage taken"}}},name="immortal_call_phys_taken",stats={[1]="mortal_call_physical_damage_taken_+%_final"}},[618]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Physical Damage taken per Endurance Charge removed"},[2]={[1]={k="divide_by_one_hundred_and_negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Physical Damage taken per Endurance Charge removed"}}},name="immortal_call_phys_taken_per_endurance_charge",stats={[1]="mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad"}},[619]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="First Repeat deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="First Repeat deals %1%%% less Damage"}}},name="multistrike_first_repeat_damage",stats={[1]="multistrike_damage_+%_final_on_first_repeat"}},[620]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Second Repeat deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Second Repeat deals %1%%% less Damage"}}},name="multistrike_second_repeat_damage",stats={[1]="multistrike_damage_+%_final_on_second_repeat"}},[621]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Third Repeat deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Third Repeat deals %1%%% less Damage"}}},name="multistrike_third_repeat_damage",stats={[1]="multistrike_damage_+%_final_on_third_repeat"}},[622]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elusive from this Skill also grants %1$+d%% to Critical Strike Multiplier for\nSkills Supported by Nightblade"}}},name="nightblade_elusive_bullshit",stats={[1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"}},[623]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of non-Damaging Ailments on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of non-Damaging Ailments on Enemies"}}},name="ailment_non_damaging_incr_effect",stats={[1]="non_damaging_ailment_effect_+%"}},[624]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Sentinel of Purity"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Sentinels of Purity"}}},name="herald_of_light_max_champions",stats={[1]="number_of_champions_of_light_allowed"}},[625]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Consumes up to 1 corpse"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Consumes up to %1% corpses"}}},name="number_of_corpses",stats={[1]="number_of_corpses_to_consume"}},[626]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Effigy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Effigy"}}},name="number_of_effigies",stats={[1]="base_number_of_effigies_allowed"}},[627]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Agony Crawler"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Agony Crawler"}}},name="herald_of_agony_max_minions",stats={[1]="number_of_herald_scorpions_allowed"}},[628]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Holy Relic"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Summoned Holy Relics"}}},name="number_of_relics_allowed",stats={[1]="number_of_relics_allowed"}},[629]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Strikes every %1% second"},[2]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Strikes every %1% seconds"}}},name="orb_of_storms_bolt_frequency",stats={[1]="orb_of_storms_bolt_frequency_ms"}},[630]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when a Mine is Detonated targeting an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Frenzy Charge when a Mine is Detonated targeting an Enemy"}}},name="frenzy_charge_on_mine_detonate",stats={[1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"}},[631]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Frenzy Charge when your Trap is triggered by an Enemy"}}},name="frenzy_charge_on_trap_trig",stats={[1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"}},[632]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when a Mine is Detonated targeting an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Power Charge when a Mine is Detonated targeting an Enemy"}}},name="power_charge_on_mine_detonate",stats={[1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"}},[633]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Power Charge when your Trap is triggered by an Enemy"}}},name="power_charge_on_trap_trig",stats={[1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"}},[634]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="If this Skill Ignites an Enemy, it also inflicts a Burning Debuff\nDebuff deals Fire Damage per second equal to %1%%% of Ignite Damage per second"}}},name="burning_arrow_additional_burning",stats={[1]="additional_burning_debuff_%_of_ignite_damage"}},[635]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemy Action Speed is reduced by %1%%% every 0.3 seconds"}}},name="petrification_statue_action_speed",stats={[1]="petrification_statue_target_action_speed_-%"}},[636]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Each Summoned Phantasm grants you Phantasmal Might\nEach Phantasmal Might Buff grants %1% to %2% Added Spell Physical Damage"}}},name="phantasm_buff_damage",stats={[1]="phantasm_grant_buff_minimum_added_physical_damage",[2]="phantasm_grant_buff_maximum_added_physical_damage"}},[637]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Releases %1% waves"},[2]={[1]={k="milliseconds_to_seconds",v=2},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Releases %1% waves every %2% seconds"}}},name="phys_cascade_trap_number_of_cascades",stats={[1]="phys_cascade_trap_number_of_cascades",[2]="phys_cascade_trap_interval_duration_ms"}},[638]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants %1%%% additional Physical Damage Reduction per Crab Barrier"}}},name="phys_reduction_per_crab_barrier",stats={[1]="physical_damage_reduction_%_per_crab_aspect_stack"}},[639]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Poison"}}},name="poison_multi",stats={[1]="poison_dot_multiplier_+"}},[640]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="Primary Projectile has %1$+d%% chance to Impale Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Primary Projectile Impales Enemies on Hit"}}},name="primary_proj_impale_chance",stats={[1]="primary_projectile_impale_chance_%"}},[641]={lang={English={[1]={limit={[1]={[1]=0,[2]=0}},text="Fires a Payload Arrow into the air\nProjectiles Fire from where the Payload Arrow lands"}}},name="projectiles_from_payload_arrow",stats={[1]="projectiles_rain"}},[642]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Bleeding"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Bleeding"}}},name="puncture_bleeding_damage",stats={[1]="puncture_bleeding_damage_+%_final"}},[643]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Feeding Frenzy lasts %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Feeding Frenzy lasts %1% seconds"}}},name="feeding_frenzy_duration",stats={[1]="puppet_master_duration_ms"}},[644]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Exposure applies %1$+d%% to Elemental Resistance matching highest Damage taken"}}},name="purge_resist",stats={[1]="purge_expose_resist_%_matching_highest_element_damage"}},[645]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1%%% of Damage from Hits is taken from the Buff before Life or Energy Shield\nBuff can take %2% Damage"}}},name="bone_armour_damage_buff",stats={[1]="quick_guard_damage_absorbed_%",[2]="quick_guard_damage_absorb_limit"}},[646]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to fire an additional sequence of arrows"}}},name="rain_of_arrows_additional_chance",stats={[1]="rain_of_arrows_additional_sequence_chance_%"}},[647]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raised Spectres are Level %1%"}}},name="raised_spectre_level",stats={[1]="raised_spectre_level"}},[648]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Brands gain %1%%% increased Attachment Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Brands gain %1%%% reduced Attachment Range"}}},name="sigil_target_search_range_modifier",stats={[1]="recall_sigil_target_search_range_+%"}},[649]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Runes have %1%%% more Area of Effect for each time they have been Improved"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Runes have %1%%% less Area of Effect for each time they have been Improved"}}},name="stormbind_area_per_improve",stats={[1]="rune_paint_area_of_effect_+%_final_per_rune_level"}},[650]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Runes deal %1%%% more Damage for each time they have been Improved"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Runes deal %1%%% less Damage for each time they have been Improved"}}},name="stormbind_damage_per_improve",stats={[1]="rune_paint_damage_+%_final_per_rune_level"}},[651]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="A Rune is Improved for each %1% Mana Spent"}}},stats={[1]="rune_paint_mana_spend_per_rune_upgrade"}},[652]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Runes can be improved once"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Runes can be improved %1% times"}}},stats={[1]="rune_paint_max_rune_level"}},[653]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shockwave deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shockwave deals %1%%% less Damage"}}},name="sactify_wave_damage",stats={[1]="sanctify_wave_damage_+%_final"}},[654]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Agony Crawler has %1%%% increased Attack Speed per Virulence you have"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Agony Crawler has %1%%% reduced Attack Speed per Virulence you have"}}},name="herald_of_agony_minion_attack_speed_incr_per_virulence",stats={[1]="scorpion_minion_attack_speed_+%"}},[655]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Agony Crawler deals %1%%% increased Physical Damage per Virulence you have"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Agony Crawler deals %1%%% reduced Physical Damage per Virulence you have"}}},name="herald_of_agony_minion_damage_incr_per_virulence",stats={[1]="scorpion_minion_physical_damage_+%"}},[656]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Agony Crawler has %1% to %2% Added Physical Damage per Virulence you have"}}},name="herald_of_agony_minion_added_damage_per_virulence",stats={[1]="scorpion_minion_minimum_added_physical_damage",[2]="scorpion_minion_maximum_added_physical_damage"}},[657]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles gain Damage as they travel farther, dealing up to %1%%% more Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles gain Damage as they travel farther, dealing up to %1%%% less Damage with Hits"}}},name="shattering_steel_damage_scaling",stats={[1]="shattering_steel_damage_+%_final_scaled_by_projectile_distance"}},[658]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Shock"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Shock"}}},name="shock_effect",stats={[1]="shock_effect_+%"}},[659]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shocked Ground causes %1%%% increased Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shocked Ground causes %1%%% reduced Damage taken"}}},name="shocked_ground_stat_override",stats={[1]="shocked_ground_base_magnitude_override"}},[660]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Causes %1% smaller explosions"}}},name="shrapnel_trap_secondary_explosions",stats={[1]="shrapnel_trap_number_of_secondary_explosions"}},[661]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% of Branded Enemy's Fire Resistance"}}},name="sigil_attached_target_fire_penetration",stats={[1]="sigil_attached_target_fire_penetration_%"}},[662]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% of Branded Enemy's Lightning Resistance"}}},name="sigil_attached_target_lightning_penetration",stats={[1]="sigil_attached_target_lightning_penetration_%"}},[663]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Brands refresh their Detached Duration by up to %1% seconds"}}},name="sigil_recall_inactive_duration_extend",stats={[1]="sigil_recall_extend_base_secondary_skill_effect_duration"}},[664]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Brands refresh their Attached Duration by up to %1% seconds"}}},name="sigil_recall_active_duration_extend",stats={[1]="sigil_recall_extend_base_skill_effect_duration"}},[665]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBloodStanceDefault"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased angle while in Sand Stance"}}},name="sand_stance_angle",stats={[1]="skill_angle_+%_in_sand_stance"}},[666]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect angle"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect angle"}}},name="area_angle",stats={[1]="skill_area_angle_+%"}},[667]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum 1 Summoned Mirage Archer"}}},name="can_have_mirage_archer",stats={[1]="skill_can_own_mirage_archers"}},[668]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Movement Speed"}}},name="skill_movement_speed",stats={[1]="skill_code_movement_speed_+%_final"}},[669]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Damaging Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Damaging Ailments"}}},name="skill_and_damaging_ailment_duration_incr",stats={[1]="skill_effect_and_damaging_ailment_duration_+%"}},[670]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1% seconds additional Base Duration per 100 Intelligence"}}},name="duration_per_int",stats={[1]="skill_effect_duration_per_100_int"}},[671]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased maximum travel distance"}}},name="skill_maximum_travel_distance",stats={[1]="skill_maximum_travel_distance_+%"}},[672]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased travel distance"}}},name="skill_travel_distance",stats={[1]="skill_travel_distance_+%"}},[673]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill is Triggered by Snipe"}}},name="triggered_by_snipe",stats={[1]="skill_triggered_by_snipe"}},[674]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Spell when you Focus"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Spell when you Focus"}}},name="focus_trigger",stats={[1]="skill_triggered_when_you_focus_chance_%"}},[675]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="Skills used by Mirage Warriors deal %1%%% less Damage"}}},name="mirage_warrior_damage",stats={[1]="skill_used_by_mirage_warrior_damage_+%_final"}},[676]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Inflicts %1% Withered Debuff the first time each Enemy enters the Area"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Inflicts %1% Withered Debuffs the first time each Enemy enters the Area"}}},name="slither_wither",stats={[1]="slither_wither_stacks"}},[677]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Stages"}}},name="snipe_max_stacks",stats={[1]="snipe_max_stacks"}},[678]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=0,[2]=0},[2]={[1]=1,[2]="#"}},text="%2%%% more Damage with Ailments per Snipe Stage"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]=-1}},text="%2%%% less Damage with Ailments per Snipe Stage"},[3]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="This Skill's Arrows deal %2%%% more Damage with Ailments per Stage"},[4]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]=-1}},text="This Skill's Arrows deal %2%%% less Damage with Ailments per Stage"}}},name="ailment_snipe_damage_per_stage",stats={[1]="is_snipe_default_projectile_2",[2]="snipe_triggered_skill_ailment_damage_+%_final_per_stage"}},[679]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=1,[2]="#"}},text="%2%%% more Damage with Hits per Snipe Stage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]=-1}},text="%2%%% less Damage with Hits per Snipe Stage"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="This Skill's Arrows deal %2%%% more Damage with Hits per Stage"},[4]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]=-1}},text="This Skill's Arrows deal %2%%% less Damage with Hits per Stage"}}},name="hit_snipe_damage_per_stage",stats={[1]="is_snipe_default_projectile",[2]="snipe_triggered_skill_hit_damage_+%_final_per_stage"}},[680]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill's Cast Speed cannot be modified"}}},name="cast_time_cannot_be_modified",stats={[1]="spell_cast_time_cannot_be_modified"}},[681]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Final Repeat has %1$+d%% chance to deal Double Damage"}}},name="spell_echo_plus_double_damage",stats={[1]="spell_echo_plus_chance_double_damage_%_final"}},[682]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill's Mana Reservation is the total of the Mana Reservations of Supported Skills, and cannot be further modified"}}},name="spellslinger_mana_reservation",stats={[1]="spellslinger_mana_reservation"}},[683]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can inflict up to 1 Spider's Web on an Enemy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Can inflict up to %1% Spider's Webs on an Enemy"}}},name="spider_aspect_max_webs",stats={[1]="spider_aspect_max_web_count"}},[684]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Beams Hit Enemies every %1% second"},[2]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Beams Hit Enemies every %1% seconds"}}},name="static_strike_zap_speed",stats={[1]="static_strike_base_zap_frequency_ms"}},[685]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Beams deal %1%%% more Damage while Stationary"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Beams deal %1%%% less Damage while Stationary"}}},name="static_strike_beam_damage",stats={[1]="static_strike_beam_damage_+%_final"}},[686]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Beams deal %1%%% more Damage while Moving"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Beams deal %1%%% less Damage while Moving"}}},name="static_strike_beam_damage_moving",stats={[1]="static_strike_beam_damage_+%_final_while_moving"}},[687]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% maximum Beam Targets"}}},name="static_strike_beams",stats={[1]="static_strike_number_of_beam_targets"}},[688]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Beam frequency per Buff stack"}}},name="static_strike_zap_speed_modifier",stats={[1]="static_strike_zap_speed_+%_per_stack"}},[689]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Exploding Orbs deal %1%%% of Skill Damage for each 0.4 seconds of remaining Duration"}}},name="storm_burst_new_damage_per_remaining",stats={[1]="storm_burst_new_damage_+%_final_per_remaining_teleport_zap"}},[690]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When you Hit an Enemy with an Arrow from this Skill, Summons a Mirage Archer which uses this Skill"}}},name="summon_mirage_archer",stats={[1]="summon_mirage_archer_on_hit"}},[691]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When you deal a Critical Strike with The Saviour, Summon a Mirage Warrior which uses that Attack Skill"}}},name="mirage_warriors",stats={[1]="summon_mirage_warrior_on_crit"}},[692]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Spider grants %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Spider grants %1%%% reduced Attack Speed"}}},name="spider_grants_attack_speed",stats={[1]="summoned_spider_grants_attack_speed_+%"}},[693]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Spider grants %1%%% increased Damage with Poison"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Spider grants %1%%% reduced Damage with Poison"}}},name="spider_grants_poison_damage",stats={[1]="summoned_spider_grants_poison_damage_+%"}},[694]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to throw up to 1 additional Trap or Mine"}}},stats={[1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine"}},[695]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to throw up to 2 additional Traps or Mines"}}},stats={[1]="support_additional_trap_mine_%_chance_for_2_additional_trap_mine"}},[696]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to throw up to 3 additional Traps or Mines"}}},stats={[1]="support_additional_trap_mine_%_chance_for_3_additional_trap_mine"}},[697]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Aura Lasts %1% seconds"}}},name="aura_duration_buff",stats={[1]="support_aura_duration_buff_duration"}},[698]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Mana Reservation Lasts %1% seconds"}}},name="aura_duration_reserve",stats={[1]="support_aura_duration_reserve_duration"}},[699]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Ailments"}}},name="support_better_ailments_bonus",stats={[1]="support_better_ailments_ailment_damage_+%_final"}},[700]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="This Skill has a %1%%% chance to Trigger Shockwave Skill on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="This Skill will Trigger Shockwave Skill on Hit"}}},stats={[1]="support_blunt_chance_to_trigger_shockwave_on_hit_%"}},[701]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Attacks deal %1%%% more Damage with Bleeding"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Supported Attacks deal %1%%% less Damage with Bleeding"}}},name="chance_to_bleed_damage_incr",stats={[1]="support_chance_to_bleed_bleeding_damage_+%_final"}},[702]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]=1,[2]="#"}},text="Enemies in Chilling Areas from this Skill take %1%%% increased Cold Damage over Time"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]="#",[2]=-1}},text="Enemies in Chilling Areas from this Skill take %1%%% reduced Cold Damage over Time"}}},name="support_chilling_areas_incr_cold_dot_taken",stats={[1]="support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"}},[703]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]="#",[2]="#"}},text="Enemies in Chilling Areas from this Skill have Cold Damage taken increased by Chill Effect"}}},name="support_chilling_areas_incr_cold_damage_taken",stats={[1]="support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"}},[704]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Chilled by this Skill take %1%%% increased Cold Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Chilled by this Skill take %1%%% reduced Cold Damage over Time"}}},name="support_chills_incr_cold_dot_taken",stats={[1]="support_chills_also_grant_cold_damage_taken_per_minute_+%"}},[705]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Chilled by this Skill have Cold Damage taken increased by Chill Effect"}}},name="support_chills_incr_cold_damage_taken",stats={[1]="support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"}},[706]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]="#",[2]="#"}},text="%1%%% more Damage with Hits for each Poison on the Enemy, up to %2%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1},[2]={[1]="#",[2]="#"}},text="%1%%% less Damage with Hits for each Poison on the Enemy, up to %2%"}}},name="support_debilitate_hit_damage",stats={[1]="support_debilitate_hit_damage_+%_final_per_poison_stack",[2]="support_debilitate_hit_damage_max_poison_stacks"}},[707]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage while Leeching Energy Shield"}}},name="damage_while_es_leeching_more",stats={[1]="support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"}},[708]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Phantasms last %1% seconds"}}},name="ghost_duration",stats={[1]="support_ghost_duration"}},[709]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per Repeat"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per Repeat"}}},name="greater_spell_echo_area_per_repeat",stats={[1]="support_greater_spell_echo_area_of_effect_+%_per_repeat"}},[710]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Spell Damage per Repeat"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Spell Damage per Repeat"}}},name="greater_spell_echo_damage_per_repeat",stats={[1]="support_greater_spell_echo_spell_damage_+%_final_per_repeat"}},[711]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Ignite"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Ignite"}}},name="ignite_prolif_damage",stats={[1]="support_ignite_prolif_ignite_damage_+%_final"}},[712]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Physical Damage"}}},name="maim_phys_damage",stats={[1]="support_maim_chance_physical_damage_+%_final"}},[713]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Maimed by this Skill take %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Maimed by this Skill take %1%%% reduced Physical Damage"}}},name="maimed_phys_damage_taken_incr",stats={[1]="support_maimed_enemies_physical_damage_taken_+%"}},[714]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Mine Throwing Speed"}}},stats={[1]="support_minefield_mine_throwing_speed_+%_final"}},[715]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% added Fire Damage against Burning Enemies"}}},name="added_fire_against_burning",stats={[1]="global_minimum_added_fire_damage_vs_burning_enemies",[2]="global_maximum_added_fire_damage_vs_burning_enemies"}},[716]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage to Enemies that are Near you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage to Enemies that are Near you"}}},name="minion_defensive_damage_near_you_final",stats={[1]="support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"}},[717]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions take %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions take %1%%% less Damage"}}},name="minion_defensive_damage_taken_final",stats={[1]="support_minion_defensive_stance_minion_damage_taken_+%_final"}},[718]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Damage while you have Feeding Frenzy"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Damage while you have Feeding Frenzy"}}},name="feeding_frenzy_damage",stats={[1]="support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"}},[719]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% less Elemental Damage"}}},name="minion_totem_resistance_support_damage",stats={[1]="support_minion_totem_resistance_elemental_damage_+%_final"}},[720]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mirage Archer uses this Skill with %1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mirage Archer uses this Skill with %1%%% less Attack Speed"}}},name="mirage_archer_attack_speed",stats={[1]="support_mirage_archer_attack_speed_+%_final"}},[721]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Mirage Archer lasts %1% seconds"}}},name="mirage_archer_duration",stats={[1]="support_mirage_archer_duration"}},[722]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOverpowered"},limit={[1]={[1]="#",[2]="#"}},text="Inflict Overpowered for %1% seconds when Blocked"}}},name="support_overpowered_on_enemy_block_duration",stats={[1]="support_overpowered_duration_ms"}},[723]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Also fires Projectiles from up to %1% point on each side of you"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Also fires Projectiles from up to %1% points on each side of you"}}},name="support_parallel_projectiles",stats={[1]="support_parallel_projectile_number_of_points_per_side"}},[724]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage per Power Charge"}}},name="power_charge_on_crit_damage",stats={[1]="support_power_charge_on_crit_damage_+%_final_per_power_charge"}},[725]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area of Effect"}}},name="pulverise_area_of_effect",stats={[1]="support_pulverise_area_of_effect_+%_final"}},[726]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain 1 Rage on Melee Hit, no more than once every %1% seconds"}}},name="angry_hit",stats={[1]="support_rage_gain_rage_on_melee_hit_cooldown_ms"}},[727]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies have -%1%%% chance to Block Attack or Spell Damage from this Skill"}}},name="support_reduced_block_chance",stats={[1]="support_reduce_enemy_block_and_spell_block_%"}},[728]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies have -%1%%% chance to Dodge Attack or Spell Hits from this Skill"}}},name="support_reduced_dodge_chance",stats={[1]="support_reduce_enemy_dodge_and_spell_dodge_%"}},[729]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage for each prior Mine in Detonation Sequence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage for each prior Mine in Detonation Sequence"}}},name="remote_mine_cascade_damage_incr",stats={[1]="support_remote_mine_damage_+%_final_per_mine_detonation_cascade"}},[730]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain Onslaught for 3 seconds when you Hit a Unique Enemy"}}},name="support_scion_unique_chance",stats={[1]="support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"}},[731]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=2},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1%%% chance to grant Onslaught for %2% seconds on\ndealing a Killing Blow"}}},name="support_scion_chance",stats={[1]="support_scion_onslaught_on_killing_blow_%_chance",[2]="support_scion_onslaught_on_killing_blow_duration_ms"}},[732]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Grants Combat Rush on Hit\nCombat Rush lasts %1% second or until you use a Travel Skill"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Grants Combat Rush on Hit\nCombat Rush lasts %1% seconds or until you use a Travel Skill"}}},name="combat_rush_buff_duration",stats={[1]="support_slashing_buff_duration_ms"}},[733]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Combat Rush grants %1%%% more Attack and Cast Speed to Travel Skills that are not Supported by Close Combat"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Combat Rush grants %1%%% less Attack and Cast Speed to Travel Skills that are not Supported by Close Combat"}}},name="combat_rush_speed",stats={[1]="support_slashing_buff_attack_cast_speed_+%_final_to_grant"}},[734]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deals up to %1%%% more Melee Damage to Enemies, based on proximity"}}},stats={[1]="support_slashing_damage_+%_final_from_distance"}},[735]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area Damage per Intensity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area Damage per Intensity"}}},name="spell_focus_damage",stats={[1]="support_spell_boost_area_damage_+%_final_per_charge"}},[736]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area of Effect per Intensity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area of Effect per Intensity"}}},name="spell_focus_area",stats={[1]="support_spell_boost_area_of_effect_+%_final_per_charge"}},[737]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="This Skill gains Intensity when used\nIntensity is lowered every %1% seconds while moving, or immediately if you teleport"}}},name="spell_focus_loss",stats={[1]="support_spell_boost_charge_loss_interval_ms_while_moving"}},[738]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Area of Effect"}}},name="support_cascade_area_of_effect",stats={[1]="support_spell_cascade_area_of_effect_+%_final"}},[739]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0}},text="Also affects areas in front of and behind the targeted area"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0}},text="Also affects areas in front of, behind, and on each side of targeted area"}}},name="support_spell_cascade",stats={[1]="support_spell_cascade_number_of_cascades_per_side",[2]="support_spell_cascade_sideways"}},[740]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Infusion grants %1%%% more Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Infusion grants %1%%% less Chaos Damage"}}},name="storm_barrier_damage_buff",stats={[1]="support_storm_barrier_chaos_damage_+%_final_to_apply"}},[741]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Infusion grants %1%%% more Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Infusion grants %1%%% less Cold Damage"}}},name="storm_barrier_cold_damage_buff",stats={[1]="support_storm_barrier_cold_damage_+%_final_to_apply"}},[742]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Infusion lasts %1% second after you finish Channelling"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Infusion lasts %1% seconds after you finish Channelling"}}},name="storm_barrier_damage_buff_duration",stats={[1]="support_storm_barrier_damage_buff_duration_ms"}},[743]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Infusion grants %1%%% more Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Infusion grants %1%%% less Fire Damage"}}},name="storm_barrier_fire_damage_buff",stats={[1]="support_storm_barrier_fire_damage_+%_final_to_apply"}},[744]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Infusion grants %1%%% more Lightning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Infusion grants %1%%% less Lightning Damage"}}},name="storm_barrier_lightning_damage_buff",stats={[1]="support_storm_barrier_lightning_damage_+%_final_to_apply"}},[745]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Infusion grants %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Infusion grants %1%%% less Physical Damage"}}},name="storm_barrier_phys_damage_buff",stats={[1]="support_storm_barrier_physical_damage_+%_final_to_apply"}},[746]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="While Channelling this Skill, you take %1%%% less Physical Damage from Hits"}}},name="storm_barrier_phys_damage_taken_extra",stats={[1]="support_storm_barrier_physical_damage_taken_when_hit_+%_final"}},[747]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="While Channelling this Skill, you take %1%%% less Chaos Damage from Hits"}}},name="storm_barrier_chaos_damage_taken",stats={[1]="support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling"}},[748]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="While Channelling this Skill, you take %1%%% less Cold Damage from Hits"}}},name="storm_barrier_cold_damage_taken",stats={[1]="support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling"}},[749]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="While Channelling this Skill, you take %1%%% less Fire Damage from Hits"}}},name="storm_barrier_fire_damage_taken",stats={[1]="support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling"}},[750]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="While Channelling this Skill, you take %1%%% less Lightning Damage from Hits"}}},name="storm_barrier_lightning_damage_taken",stats={[1]="support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling"}},[751]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Ailments"}}},name="ailment_damage_incr",stats={[1]="support_unbound_ailments_ailment_damage_+%_final"}},[752]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill can only be used with Axes or Swords"}}},name="skill_can_only_use_axe_sword",stats={[1]="supported_skill_can_only_use_axe_and_sword"}},[753]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill can only be used with Bows"}}},name="skill_can_only_use_bow",stats={[1]="skill_can_only_use_bow"}},[754]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"}},text="This Skill can only be used with Claws or Daggers"}}},name="skill_can_only_use_claw_dagger",stats={[1]="supported_skill_can_only_use_dagger_and_claw"}},[755]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="This Skill can only be used with Maces, Sceptres or Staves"}}},name="skill_can_only_use_mace_staff",stats={[1]="supported_skill_can_only_use_mace_and_staff"}},[756]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill can only be used with Bows or Wands"}}},name="skill_can_only_use_non_melee_weapons",stats={[1]="skill_can_only_use_non_melee_weapons"}},[757]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to consume an Endurance Charge to create a Charged Slam"}}},name="tectonic_slam_endurance_charge_use",stats={[1]="tectonic_slam_chance_to_use_endurance_charge_%"}},[758]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ensnared Enemies take %1%%% increased Projectile Damage from Attack Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ensnared Enemies take %1%%% decreased Projectile Damage from Attack Hits"}}},name="ensnaring_arrow_damage_taken",stats={[1]="tethered_enemies_take_attack_projectile_damage_taken_+%"}},[759]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Snare applies %1%%% more Movement Speed to Normal or Magic Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Snare applies %1%%% less Movement Speed to Normal or Magic Enemies"}}},name="ensnaring_arrow_move_normal",stats={[1]="tethered_movement_speed_+%_final_per_rope"}},[760]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Snare applies %1%%% more Movement Speed to Rare Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Snare applies %1%%% less Movement Speed to Rare Enemies"}}},name="ensnaring_arrow_move_rare",stats={[1]="tethered_movement_speed_+%_final_per_rope_vs_rare"}},[761]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Snare applies %1%%% more Movement Speed to Unique Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Snare applies %1%%% less Movement Speed to Unique Enemies"}}},name="ensnaring_arrow_move_unique",stats={[1]="tethered_movement_speed_+%_final_per_rope_vs_unique"}},[762]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% Snares per Enemy"}}},name="snare_limit",stats={[1]="tethering_arrow_display_rope_limit"}},[763]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier per Power Charge when used by Traps"}}},name="trap_crit_per_power_charge",stats={[1]="trap_critical_strike_multiplier_+_per_power_charge"}},[764]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Throwing Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Throwing Speed per Frenzy Charge"}}},name="trap_throwing_speed_per_frenzy",stats={[1]="trap_throwing_speed_+%_per_frenzy_charge"}},[765]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this Skill after Spending a total of 200 Mana"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill after Spending a total of 200 Mana"}}},name="trigger_on_200_mana_spent",stats={[1]="trigger_after_spending_200_mana_%_chance"}},[766]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger when you Attack with a Bow"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Attack when you Attack with a Bow"}}},name="attack_on_bow_attack",stats={[1]="trigger_on_bow_attack_%"}},[767]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="%1%%% chance to Trigger this Skill when you Consume a corpse"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this Skill when you Consume a corpse"}}},name="trigger_on_corpse_consume",stats={[1]="trigger_on_corpse_consume_%_chance"}},[768]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this skill when you Kill a Frozen Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this skill when you Kill a Frozen Enemy"}}},name="trigger_on_frozen_kill",stats={[1]="trigger_on_kill_vs_frozen_enemy_%"}},[769]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Consume a Void Charge to Trigger this Skill when you fire Arrows"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Consume a Void Charge to Trigger this Skill when you fire Arrows"}}},name="trigger_on_skill_use_void_arrow",stats={[1]="trigger_on_skill_use_%_if_you_have_a_void_arrow"}},[770]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Skill is Triggered by the Item granting it"}}},name="trigger_every_5_seconds",stats={[1]="triggered_by_item_buff"}},[771]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Has 10 blades"}}},name="vaal_blade_vortex_has_ten_blades",stats={[1]="vaal_blade_vortex_has_10_spinning_blades"}},[772]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ongoing effect ends after %1% Aftershocks"}}},name="vaal_earthquake_max_aftershocks",stats={[1]="vaal_earthquake_maximum_aftershocks"}},[773]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Radius for each Stage"}}},name="vaal_flameblast_radius",stats={[1]="vaal_flameblast_radius_+_per_stage"}},[774]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Strikes an Enemy every %1% second"},[2]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Strikes an Enemy every %1% seconds"}}},name="vaal_storm_call_delay",stats={[1]="vaal_storm_call_delay_ms"}},[775]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="1 Volley"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% Volleys"}}},name="bladefall_volleys",stats={[1]="virtual_bladefall_number_of_volleys"}},[776]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chills from your Hits always reduce Action Speed by at least %1%%%"}}},name="chill_minimum_slow",stats={[1]="virtual_chill_minimum_slow_%"}},[777]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damages %1% nearby Enemies when you gain Stages"}}},name="divine_tempest_zap_limit",stats={[1]="virtual_divine_tempest_number_of_nearby_enemies_to_zap"}},[778]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Mine Detonation Time is %1% seconds"}}},name="mine_detonation_time",stats={[1]="virtual_mine_detonation_time_ms"}},[779]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You can apply an additional Curse"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You can apply %1% additional Curses"}}},name="additional_curse",stats={[1]="virtual_number_of_additional_curses_allowed"}},[780]={lang={English={[1]={limit={[1]={[1]=1,[2]=1},[2]={[1]=0,[2]=0}},text="Projectiles Chain %1% Time"},[2]={limit={[1]={[1]=2,[2]="#"},[2]={[1]=0,[2]=0}},text="Projectiles Chain %1% Times"}}},name="projectile_chain_num",stats={[1]="virtual_number_of_chains_for_projectiles",[2]="display_hide_projectile_chain_num"}},[781]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Inflicts Spider's Webs and Hinder every %1% Seconds"}}},name="spider_aspect_interval",stats={[1]="virtual_spider_aspect_web_interval_ms"}},[782]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1%%% of Damage from Hits is taken from the Buff before Life or Energy Shield\nBuff can take %2% Damage"}}},name="steelskin_damage_buff",stats={[1]="virtual_steelskin_damage_%_taken_to_buff",[2]="virtual_steelskin_damage_limit"}},[783]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Gain Infusion after Channelling for %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain Infusion after Channelling for %1% seconds"}}},name="storm_barrier_damage_buff_threshold",stats={[1]="virtual_support_storm_barrier_damage_buff_time_threshold_ms"}},[784]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="While Channelling this Skill, you take %1%%% less Physical Damage from Hits"}}},name="storm_barrier_phys_damage_taken",stats={[1]="virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling"}},[785]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to create a Charged Slam"}}},name="tectonic_slam_charged_slam_chance",stats={[1]="virtual_tectonic_slam_%_chance_to_do_charged_slam"}},[786]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skill has %1%%% more Trap and Mine Throwing Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Skill has %1%%% less Trap and Mine Throwing Time"}}},name="trap_and_mine_throwing_time_pluspercent_final",stats={[1]="virtual_trap_and_mine_throwing_time_+%_final"}},[787]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments per Stage"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits and Ailments per Stage"}}},name="virulent_arrow_damage_per_stage",stats={[1]="virulent_arrow_damage_+%_final_per_stage"}},[788]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% maximum Stages"}}},name="virulent_arrow_max_stacks",stats={[1]="virulent_arrow_maximum_number_of_stacks"}},[789]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Each Spore Pod fires %1% Thorn Arrows"}}},name="virulent_arrow_pod_arrows",stats={[1]="virulent_arrow_number_of_pod_projectiles"}},[790]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Thorn Arrows deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Thorn Arrows deal %1%%% less Damage"}}},name="virulent_arrow_bloom_damage",stats={[1]="virulent_arrow_pod_projectile_damage_+%_final"}},[791]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum of %1% Orbs at a time"}}},name="number_of_cores_allowed",stats={[1]="volatile_dead_max_cores_allowed"}},[792]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Consumes up to 1 corpse"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Consumes up to %1% corpses"}}},name="volatile_dead_number_of_corpses",stats={[1]="volatile_dead_number_of_corpses_to_consume"}},[793]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Withered on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=100,[2]="#"}},text="Inflicts Withered on Hit"}}},name="withered_on_hit_chance",stats={[1]="withered_on_hit_chance_%"}},[794]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=2},[2]={k="reminderstring",v="ReminderTextReoccurringSpell"},limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"},[3]={[1]=1,[2]="#"},[4]={[1]=1,[2]="#"}},text="Gains a Seal every %2% seconds, to a maximum of %4% Seals\nUnsealed when cast, and effects Reoccur for each Seal lost"}}},name="anticipation_reoccurring",stats={[1]="support_anticipation_charge_gain_interval_ms",[2]="virtual_support_anticipation_charge_gain_interval_ms",[3]="support_anticipation_rapid_fire_count",[4]="skill_max_unleash_seals"}},[795]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Skill's effects deal %1%%% more Damage when Reoccurring"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Skill's effects deal %1%%% less Damage when Reoccurring"}}},name="anticipation_reoccur_damage",stats={[1]="support_spell_rapid_fire_repeat_use_damage_+%_final"}},[796]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectile changes direction %1% times"}}},name="zig_zags",stats={[1]="kinetic_bolt_number_of_zig_zags"}},[797]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Mine applies %1%%% increased Critical Strike Chance to Hits against Enemies near it, up to a maximum of 500%%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Mine applies %1%%% reduced Critical Strike Chance to Hits against Enemies near it, up to a maximum of 500%%"}}},name="cold_projectile_mine_crit_chance_aura",stats={[1]="cold_projectile_mine_enemy_critical_strike_chance_+%_against_self"}},[798]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Mine applies %1%%% increased Damage Taken to Enemies near it, up\nto a maximum of 150%%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Mine applies %1%%% reduced Damage Taken to Enemies near it, up\nto a maximum of 150%%"}}},name="lightning_explosion_mine_damage_taken_aura",stats={[1]="lightning_explosion_mine_aura_damage_taken_+%"}},[799]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"},[4]={[1]="#",[2]="#"}},text="Each Mine Adds %1% to %2% Fire Damage to Hits against Enemies near it, up\nto a maximum of %3% to %4%"}}},name="mortar_barrage_mine_added_fire_damage_taken",stats={[1]="mortar_barrage_mine_minimum_added_fire_damage_taken",[2]="mortar_barrage_mine_maximum_added_fire_damage_taken",[3]="mortar_barrage_mine_minimum_added_fire_damage_taken_limit",[4]="mortar_barrage_mine_maximum_added_fire_damage_taken_limit"}},[800]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Each Mine applies %1%%% chance to deal Double Damage to Hits against Enemies near it, up to a maximum of 100%%"}}},name="support_remote_mine_double_damage_aura",stats={[1]="support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"}},[801]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raised Zombies' Slam Attack has %1%%% increased Cooldown Recovery Speed"}}},name="zombie_slam_cooldown_speed",stats={[1]="zombie_slam_cooldown_speed_+%"}},[802]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAggressiveMinions"},limit={[1]={[1]="#",[2]="#"}},text="Minions are Aggressive"}}},name="minions_are_aggressive",stats={[1]="minion_larger_aggro_radius"}},[803]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefensiveMinions"},limit={[1]={[1]="#",[2]="#"}},text="Minions are Defensive"}}},name="minions_are_defensive",stats={[1]="minions_are_defensive"}},["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=630,["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=631,["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=632,["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=633,["0"]=9,["abyssal_cry_%_max_life_as_chaos_on_death"]=309,["abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies"]=307,["accuracy_rating"]=99,["accuracy_rating_+%"]=100,["active_skill_area_damage_+%_final"]=392,["active_skill_area_of_effect_+%_final_when_cast_on_frostbolt"]=393,["active_skill_attack_speed_+%_final"]=267,["active_skill_base_area_length_+"]=394,["active_skill_base_radius_+"]=58,["active_skill_chill_as_though_damage_+%_final"]=395,["active_skill_cooldown_bypass_type_override_to_power_charge"]=453,["active_skill_damage_over_time_from_projectile_hits_+%_final"]=374,["active_skill_display_aegis_variation"]=405,["active_skill_ground_consecration_radius_+"]=59,["active_skill_if_used_through_frostbolt_damage_+%_final"]=396,["active_skill_ignite_damage_+%_final"]=397,["active_skill_minion_energy_shield_+%_final"]=121,["active_skill_minion_life_+%_final"]=120,["active_skill_minion_movement_velocity_+%_final"]=117,["active_skill_poison_duration_+%_final"]=398,["active_skill_projectile_damage_+%_final"]=369,["active_skill_returning_projectile_damage_+%_final"]=370,["active_skill_shock_as_though_damage_+%_final"]=399,["add_endurance_charge_on_skill_hit_%"]=400,["add_frenzy_charge_on_kill"]=104,["add_frenzy_charge_on_kill_%_chance"]=105,["add_frenzy_charge_on_skill_hit_%"]=401,["add_power_charge_on_critical_strike_%"]=228,["additional_base_critical_strike_chance"]=357,["additional_burning_debuff_%_of_ignite_damage"]=634,["additional_chain_chance_%"]=402,["additional_chance_to_freeze_chilled_enemies_%"]=336,["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=403,["additive_arrow_speed_modifiers_apply_to_area_of_effect"]=404,["aegis_unique_shield_max_value"]=405,["always_freeze"]=86,["always_stun"]=126,["always_stun_enemies_that_are_on_full_life"]=406,["animate_item_maximum_level_requirement"]=245,["apply_linked_curses_on_hit_%"]=234,["apply_linked_curses_with_dark_ritual"]=407,["apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"]=408,["arc_damage_+%_final_for_each_remaining_chain"]=409,["arc_damage_+%_final_per_chain"]=410,["arcane_cloak_consume_%_of_mana"]=411,["arcane_cloak_damage_absorbed_%"]=412,["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=413,["arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage"]=414,["arctic_armour_chill_when_hit_duration"]=415,["arctic_breath_maximum_number_of_skulls_allowed"]=416,["area_of_effect_+%_per_frost_fury_stage"]=417,["area_of_effect_+%_when_cast_on_frostbolt"]=418,["area_of_effect_+%_while_dead"]=63,["arrow_number_of_targets_to_pierce"]=83,["arrows_always_pierce"]=83,["attack_damage_+%"]=419,["attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour"]=420,["attack_repeat_count"]=227,["attack_skill_mana_leech_from_any_damage_permyriad"]=421,["attack_speed_+%"]=41,["attack_speed_+%_granted_from_skill"]=42,["attack_speed_+%_when_on_low_life"]=43,["attack_trigger_on_hit_%"]=263,["attack_trigger_on_kill_%"]=246,["attack_trigger_on_killing_bleeding_enemy_%"]=422,["attack_trigger_on_melee_hit_%"]=264,["attack_trigger_when_critically_hit_%"]=242,["attack_unusable_if_triggerable"]=244,["attacks_impale_on_hit_%_chance"]=423,["aura_effect_+%"]=66,["avoid_damage_%"]=424,["backstab_damage_+%"]=127,["base_actor_scale_+%"]=1,["base_arrow_speed_+%"]=305,["base_attack_speed_+%_per_frenzy_charge"]=67,["base_aura_area_of_effect_+%"]=65,["base_buff_duration_ms_+_per_removable_endurance_charge"]=155,["base_cast_speed_+%"]=50,["base_chance_to_freeze_%"]=86,["base_chance_to_ignite_%"]=88,["base_chance_to_poison_on_hit_%"]=347,["base_chance_to_shock_%"]=87,["base_chance_to_shock_%_from_skill"]=425,["base_chaos_damage_%_of_maximum_life_to_deal_per_minute"]=101,["base_chaos_damage_taken_per_minute_per_viper_strike_orb"]=130,["base_cold_damage_resistance_%"]=196,["base_cooldown_speed_+%"]=426,["base_critical_strike_multiplier_+"]=108,["base_damage_taken_+%"]=427,["base_deal_no_chaos_damage"]=428,["base_energy_shield_leech_from_spell_damage_permyriad"]=429,["base_life_regeneration_rate_per_minute"]=193,["base_mana_regeneration_rate_per_minute"]=324,["base_movement_velocity_+%"]=95,["base_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute"]=167,["base_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute"]=166,["base_number_of_effigies_allowed"]=626,["base_number_of_projectiles_in_spiral_nova"]=40,["base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute"]=103,["base_physical_damage_%_of_maximum_life_to_deal_per_minute"]=102,["base_physical_damage_%_to_convert_to_cold"]=312,["base_physical_damage_reduction_rating"]=171,["base_poison_damage_+%"]=352,["base_poison_duration_+%"]=353,["base_projectile_speed_+%"]=85,["base_reduce_enemy_cold_resistance_%"]=203,["base_reduce_enemy_fire_resistance_%"]=202,["base_reduce_enemy_lightning_resistance_%"]=204,["base_resist_all_elements_%"]=163,["base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute"]=165,["base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute"]=164,["base_skill_area_of_effect_+%"]=60,["base_stun_duration_+%"]=125,["base_stun_recovery_+%"]=151,["base_stun_threshold_reduction_+%"]=57,["base_use_life_in_place_of_mana"]=176,["berserk_attack_damage_+%_final"]=386,["berserk_attack_speed_+%_final"]=387,["berserk_base_damage_taken_+%_final"]=389,["berserk_minimum_rage"]=385,["berserk_movement_speed_+%_final"]=388,["berserk_rage_loss_+%_per_second"]=391,["blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated"]=431,["blade_vortex_ailment_damage_+%_per_blade_final"]=220,["blade_vortex_critical_strike_chance_+%_per_blade"]=432,["blade_vortex_damage_+%_per_blade_final"]=219,["blade_vortex_hit_rate_+%_per_blade"]=218,["blade_vortex_hit_rate_ms"]=433,["bladefall_critical_strike_chance_+%_per_stage"]=434,["bladefall_damage_per_stage_+%_final"]=350,["bladefall_volleys_needed_per_vestige_blade"]=435,["bladestorm_attack_speed_+%_final_while_in_bloodstorm"]=436,["bladestorm_maximum_number_of_storms_allowed"]=437,["bladestorm_movement_speed_+%_while_in_sandstorm"]=438,["bladestorm_storm_damage_+%_final"]=439,["bleed_on_hit_with_attacks_%"]=440,["bleeding_damage_+%"]=441,["bleeding_skill_effect_duration"]=74,["blind_duration_+%"]=201,["blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance"]=360,["blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance"]=363,["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance"]=361,["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance"]=362,["blood_spears_base_number_of_spears"]=442,["bone_golem_damage_+%_final_per_non_golem_minion_nearby"]=443,["bone_golem_damage_per_non_golem_minion_nearby_maximum_%"]=443,["bone_golem_grants_minion_maximum_added_physical_damage"]=444,["bone_golem_grants_minion_minimum_added_physical_damage"]=444,["buff_effect_duration"]=69,["buff_effect_duration_+%_per_removable_endurance_charge"]=156,["buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5"]=157,["burn_damage_+%"]=94,["cannot_cause_bleeding"]=440,["cannot_inflict_status_ailments"]=175,["cannot_knockback"]=445,["cast_linked_spells_on_attack_crit_%"]=238,["cast_linked_spells_on_melee_kill_%"]=239,["cast_on_any_damage_taken_%"]=253,["cast_on_attack_use_%"]=247,["cast_on_crit_%"]=446,["cast_on_damage_taken_%"]=265,["cast_on_damage_taken_threshold"]=265,["cast_on_death_%"]=255,["cast_on_gain_avians_flight_or_avians_might_%"]=259,["cast_on_gain_skill"]=447,["cast_on_hit_%"]=260,["cast_on_hit_if_cursed_%"]=261,["cast_on_lose_cats_stealth"]=262,["cast_on_skill_use_%"]=248,["cast_on_stunned_%"]=257,["cast_speed_+%_granted_from_skill"]=5,["cast_speed_+%_when_on_low_life"]=49,["cast_when_hit_%"]=254,["cast_while_channelling_time_ms"]=270,["chain_strike_cone_radius_+_per_x_rage"]=448,["chain_strike_gain_x_rage_if_attack_hits"]=449,["chance_to_bleed_on_hit_%_chance_in_blood_stance"]=450,["chance_to_cast_on_kill_%"]=249,["chance_to_cast_on_kill_%_target_self"]=250,["chance_to_cast_on_rampage_tier_%"]=256,["chance_to_cast_when_your_trap_is_triggered_%"]=266,["chance_to_deal_double_damage_%"]=451,["chance_to_deal_double_damage_%_vs_bleeding_enemies"]=452,["chance_to_fortify_on_melee_hit_+%"]=310,["chance_to_freeze_shock_ignite_%"]=335,["chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%"]=453,["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=454,["chance_to_ignore_hexproof_%"]=455,["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=456,["chance_to_summon_support_ghost_on_killing_blow_%"]=457,["chance_to_trigger_on_animate_guardian_kill_%"]=458,["chance_to_trigger_on_animate_weapon_kill_%"]=459,["chance_to_unnerve_on_hit_%"]=460,["chaos_damage_taken_+%"]=346,["chaos_golem_grants_additional_physical_damage_reduction_%"]=318,["charged_attack_damage_per_stack_+%_final"]=461,["charged_blast_spell_damage_+%_final_per_stack"]=268,["charged_dash_channelling_damage_at_full_stacks_+%_final"]=462,["charged_dash_damage_+%_final_per_stack"]=463,["charged_dash_skill_inherent_movement_speed_+%_final"]=464,["chill_duration_+%"]=90,["chill_effect_+%"]=91,["chilled_ground_base_magnitude_override"]=465,["chilling_area_movement_velocity_+%"]=466,["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=467,["cluster_burst_spawn_amount"]=306,["cold_damage_+%"]=295,["cold_projectile_mine_enemy_critical_strike_chance_+%_against_self"]=797,["consecrated_ground_immune_to_curses"]=468,["corpse_consumption_life_to_gain"]=214,["corpse_consumption_mana_to_gain"]=215,["corpse_erruption_maximum_number_of_geyers"]=469,["corpse_explosion_monster_life_%"]=25,["corpse_warp_area_of_effect_+%_final_when_consuming_corpse"]=470,["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=367,["corrosive_shroud_gains_%_of_damage_from_inflicted_poisons"]=365,["corrosive_shroud_maximum_stored_poison_damage"]=366,["corrosive_shroud_poison_damage_+%_final_while_accumulating_poison"]=364,["corrosive_shroud_poison_dot_multiplier_+_while_aura_active"]=368,["created_slipstream_action_speed_+%"]=471,["critical_poison_dot_multiplier_+"]=473,["critical_strike_chance_+%"]=106,["critical_strike_chance_+%_per_power_charge"]=474,["critical_strike_chance_+%_per_righteous_charge"]=475,["critical_strike_chance_+%_vs_shocked_enemies"]=472,["critical_strike_multiplier_+_per_blade"]=476,["critical_strike_multiplier_+_per_power_charge"]=477,["critical_strike_multiplier_+_while_affected_by_elusive"]=109,["curse_effect_+%"]=271,["curse_effect_+%_final_vs_players"]=273,["curse_effect_+%_vs_players"]=272,["curse_effect_duration"]=68,["cyclone_area_of_effect_+%_per_additional_melee_range"]=61,["cyclone_first_hit_damage_+%_final"]=355,["cyclone_gain_stage_every_x_ms_while_channelling"]=478,["cyclone_max_number_of_stages"]=479,["cyclone_melee_weapon_range_+_per_stage"]=480,["cyclone_movement_speed_+%_final"]=221,["cyclone_stage_decay_time_ms"]=481,["damage_+%"]=325,["damage_+%_per_chain"]=482,["damage_+%_vs_burning_enemies"]=287,["damage_+%_while_es_leeching"]=483,["damage_+%_while_life_leeching"]=484,["damage_+%_while_mana_leeching"]=485,["damage_cannot_be_reflected"]=290,["damage_infusion_%"]=39,["damage_over_time_+%"]=349,["damaging_ailments_deal_damage_+%_faster"]=486,["dark_ritual_damage_+%_final_per_curse_applied"]=487,["dark_ritual_skill_effect_duration_+%_per_curse_applied"]=488,["deal_no_elemental_damage"]=489,["degen_effect_+%"]=154,["desecrate_corpse_level"]=278,["desecrate_maximum_number_of_corpses"]=490,["desecrate_number_of_corpses_to_create"]=277,["disable_mine_detonation_cascade"]=491,["display_additional_projectile_per_2_mines_in_detonation_sequence"]=492,["display_additional_projectile_per_4_mines_in_detonation_sequence"]=493,["display_additional_projectile_per_mine_in_detonation_sequence"]=494,["display_disable_melee_weapons"]=37,["display_hide_projectile_chain_num"]=780,["display_linked_curse_effect_+%"]=495,["display_max_blight_stacks"]=496,["display_max_fire_beam_stacks"]=497,["display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine"]=498,["display_modifiers_to_melee_attack_range_apply_to_skill_radius"]=499,["display_removes_and_grants_elusive_when_used"]=500,["display_skill_fixed_duration_buff"]=501,["display_storm_burst_jump_time_ms"]=502,["display_this_skill_cooldown_does_not_recover_during_buff"]=503,["display_vaal_breach_no_drops_xp"]=504,["distance_before_form_change_+%"]=505,["divine_tempest_ailment_damage_+%_final_per_stage"]=506,["divine_tempest_damage_+%_final_while_channelling"]=507,["divine_tempest_hit_damage_+%_final_per_stage"]=508,["divine_tempest_stage_on_hitting_normal_magic_%_chance"]=509,["divine_tempest_stage_on_hitting_rare_unique"]=510,["double_slash_bleeding_damage_+%_final_in_blood_stance"]=511,["doubles_have_movement_speed_+%"]=113,["dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life"]=512,["dual_strike_damage_+%_final_against_enemies_on_full_life"]=513,["earthquake_aftershock_maximum_added_physical_damage"]=514,["earthquake_aftershock_minimum_added_physical_damage"]=514,["elemental_damage_+%_final_per_righteous_charge"]=515,["elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"]=516,["elemental_hit_damage_+10%_final_per_enemy_elemental_ailment"]=517,["elemental_hit_no_physical_chaos_damage"]=303,["elemental_status_effect_aura_radius"]=173,["elemental_strike_physical_damage_%_to_convert"]=337,["elusive_effect_+%"]=518,["embrace_madness_amount_of_cooldown_to_gain_ms"]=519,["endurance_charge_slam_damage_+%_final_with_endurance_charge"]=520,["endurance_charges_granted_per_one_hundred_nearby_enemies_during_endurance_warcry"]=79,["enemy_aggro_radius_+%"]=342,["energy_shield_delay_-%"]=152,["energy_shield_leech_from_any_damage_permyriad"]=54,["energy_shield_recharge_rate_+%"]=153,["energy_shield_regeneration_rate_+%"]=521,["ethereal_knives_projectiles_needed_per_vestige_blade"]=522,["expanding_fire_cone_angle_+%_per_stage"]=523,["expanding_fire_cone_final_wave_always_ignite"]=524,["expanding_fire_cone_maximum_number_of_stages"]=525,["expanding_fire_cone_radius_+_per_stage"]=526,["expanding_fire_cone_radius_limit"]=526,["expanding_fire_cone_release_hit_damage_+%_final"]=527,["explosive_arrow_explosion_base_damage_+permyriad"]=146,["explosive_arrow_explosion_maximum_added_fire_damage"]=147,["explosive_arrow_explosion_minimum_added_fire_damage"]=147,["explosive_arrow_hit_and_ailment_damage_+%_final_per_stack"]=528,["explosive_arrow_maximum_bonus_explosion_radius"]=149,["explosive_arrow_stack_limit"]=529,["extra_target_targeting_distance_+%"]=530,["faster_bleed_%"]=531,["feast_of_flesh_gain_X_energy_shield_per_corpse_consumed"]=532,["feast_of_flesh_gain_X_life_per_corpse_consumed"]=532,["feast_of_flesh_gain_X_mana_per_corpse_consumed"]=532,["fire_beam_additional_stack_damage_+%_final"]=533,["fire_beam_enemy_fire_resistance_%_maximum"]=534,["fire_beam_enemy_fire_resistance_%_per_stack"]=535,["fire_beam_length_+%"]=536,["fire_damage_+%"]=294,["fire_damage_taken_+"]=225,["fire_golem_grants_damage_+%"]=315,["fire_nova_damage_+%_per_repeat_final"]=326,["fire_shield_damage_threshold"]=161,["fire_storm_fireball_delay_ms"]=150,["fixed_skill_effect_duration"]=537,["flame_whip_damage_+%_final_vs_burning_enemies"]=286,["flameblast_ailment_damage_+%_final_per_stack"]=269,["flameblast_ignite_chance_+%_per_stage"]=538,["flamethrower_damage_+%_per_stage_final"]=216,["flamethrower_tower_trap_display_cast_speed_affects_rotation"]=539,["flamethrower_tower_trap_number_of_flamethrowers"]=540,["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=541,["flicker_strike_buff_movement_speed_+%"]=542,["fortify_duration_+%"]=311,["fortify_on_hit"]=543,["freeze_as_though_dealt_damage_+%"]=191,["freeze_duration_+%"]=89,["freeze_mine_cold_resistance_+_while_frozen"]=237,["frenzy_skill_attack_damage_+%_final_per_frenzy_charge"]=544,["frenzy_skill_attack_speed_+%_final_per_frenzy_charge"]=545,["frost_bolt_nova_number_of_frost_bolts_to_detonate"]=546,["frost_fury_added_duration_per_stage_ms"]=547,["frost_fury_base_fire_interval_ms"]=548,["frost_fury_duration_+%_per_stage"]=549,["frost_fury_fire_speed_+%_final_while_channelling"]=550,["frost_fury_fire_speed_+%_per_stage"]=551,["frost_fury_max_number_of_stages"]=552,["fuse_arrow_explosion_radius_+_per_fuse_arrow_orb"]=149,["gain_elusive_on_crit_%_chance"]=553,["gain_endurance_charge_on_melee_stun"]=236,["gain_endurance_charge_on_melee_stun_%"]=236,["gain_rage_on_hit"]=554,["gain_righteous_charge_on_mana_spent_%"]=555,["glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%"]=192,["global_always_hit"]=283,["global_bleed_on_hit"]=440,["global_chance_to_blind_on_hit_%"]=200,["global_chance_to_knockback_%"]=55,["global_hit_causes_monster_flee_%"]=179,["global_maim_on_hit"]=556,["global_maximum_added_fire_damage_vs_burning_enemies"]=715,["global_maximum_added_physical_damage_vs_bleeding_enemies"]=557,["global_minimum_added_fire_damage_vs_burning_enemies"]=715,["global_minimum_added_physical_damage_vs_bleeding_enemies"]=557,["global_poison_on_hit"]=351,["global_reduce_enemy_block_%"]=284,["glorious_madness_timer_ms"]=558,["grant_expanding_fire_cone_release_ignite_damage_+%_final"]=559,["groundslam_damage_to_close_targets_+%_final"]=371,["herald_of_agony_add_stack_on_poison"]=560,["herald_of_agony_poison_damage_+%_final"]=561,["herald_of_ash_burning_%_overkill_damage_per_minute"]=562,["herald_of_ash_burning_damage_+%_final"]=297,["herald_of_ash_fire_damage_+%"]=298,["herald_of_ash_spell_fire_damage_+%_final"]=299,["herald_of_ice_cold_damage_+%"]=300,["herald_of_light_attack_maximum_added_physical_damage"]=563,["herald_of_light_attack_minimum_added_physical_damage"]=563,["herald_of_light_spell_maximum_added_physical_damage"]=564,["herald_of_light_spell_minimum_added_physical_damage"]=564,["herald_of_light_summon_champion_on_kill"]=565,["herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%"]=566,["herald_of_thunder_lightning_damage_+%"]=301,["hinder_enemy_chaos_damage_taken_+%"]=567,["holy_relic_nova_life_regeneration_rate_per_minute"]=568,["holy_relic_nova_minion_life_regeneration_rate_per_second"]=569,["ice_crash_second_hit_damage_+%_final"]=313,["ice_crash_third_hit_damage_+%_final"]=314,["ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy"]=570,["ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy"]=570,["ice_golem_grants_accuracy_+%"]=317,["ice_golem_grants_critical_strike_chance_+%"]=316,["ice_nova_number_of_frost_bolts_to_cast_on"]=571,["ice_nova_number_of_repeats"]=280,["ice_nova_radius_+%_per_repeat"]=281,["ice_shield_moving_mana_degeneration_per_minute"]=223,["ice_spear_second_form_critical_strike_chance_+%"]=197,["ice_spear_second_form_critical_strike_multiplier_+"]=198,["ice_spear_second_form_projectile_speed_+%_final"]=199,["ignite_duration_+%"]=93,["ignites_apply_fire_resistance_+"]=572,["impale_debuff_effect_+%"]=573,["impale_phys_reduction_%_penalty"]=574,["impurity_cold_damage_taken_+%_final"]=575,["impurity_fire_damage_taken_+%_final"]=576,["impurity_lightning_damage_taken_+%_final"]=577,["incinerate_damage_+%_per_stage"]=217,["infernal_blow_explosion_damage_%_of_total_per_stack"]=578,["inspiration_charge_duration_+%"]=579,["inspiring_cry_damage_+%_per_one_hundred_nearby_enemies"]=322,["intermediary_chaos_area_damage_to_deal_per_minute"]=131,["intermediary_chaos_damage_to_deal_per_minute"]=132,["intermediary_chaos_skill_dot_area_damage_to_deal_per_minute"]=133,["intermediary_chaos_skill_dot_damage_to_deal_per_minute"]=134,["intermediary_cold_area_damage_to_deal_per_minute"]=135,["intermediary_cold_damage_to_deal_per_minute"]=136,["intermediary_cold_skill_dot_area_damage_to_deal_per_minute"]=137,["intermediary_cold_skill_dot_damage_to_deal_per_minute"]=138,["intermediary_fire_area_damage_to_deal_per_minute"]=139,["intermediary_fire_damage_to_deal_per_minute"]=140,["intermediary_fire_skill_dot_area_damage_to_deal_per_minute"]=141,["intermediary_fire_skill_dot_damage_to_deal_per_minute"]=142,["intimidating_cry_attack_speed_+%_per_100_enemies"]=323,["is_ranged_attack_totem"]=34,["is_remote_mine"]=31,["is_snipe_default_projectile"]=679,["is_snipe_default_projectile_2"]=678,["is_totem"]=34,["is_trap"]=32,["keystone_minion_instability"]=124,["keystone_point_blank"]=178,["kill_enemy_on_hit_if_under_10%_life"]=177,["killed_monster_dropped_item_quantity_+%"]=98,["killed_monster_dropped_item_rarity_+%"]=97,["kinetic_bolt_forks_apply_to_zig_zags"]=580,["kinetic_bolt_number_of_zig_zags"]=796,["knockback_distance_+%"]=56,["lacerate_hit_and_ailment_damage_+%_final_vs_bleeding_enemies"]=581,["life_gain_per_target"]=111,["life_leech_from_any_damage_permyriad"]=52,["life_leech_from_physical_attack_damage_permyriad"]=53,["life_regeneration_rate_+%"]=195,["life_regeneration_rate_per_minute_%"]=194,["light_radius_increases_apply_to_area_of_effect"]=28,["lightning_arrow_maximum_number_of_extra_targets"]=172,["lightning_explosion_mine_aura_damage_taken_+%"]=798,["lightning_golem_grants_attack_and_cast_speed_+%"]=320,["lightning_tendrils_channelled_larger_pulse_damage_+%_final"]=582,["lightning_tendrils_channelled_larger_pulse_interval"]=118,["lightning_tendrils_channelled_larger_pulse_radius_+"]=583,["lightning_tower_trap_interval_duration_ms"]=584,["lightning_tower_trap_number_of_beams"]=584,["lightning_trap_projectiles_leave_shocking_ground"]=291,["lose_all_righteous_charges_on_mana_use_threshold"]=585,["maim_effect_+%"]=586,["maim_on_hit_%"]=587,["mamba_strike_deal_%_of_all_poison_total_damage_per_minute"]=588,["mana_degeneration_per_minute"]=222,["max_crab_aspect_stacks"]=589,["max_number_of_lightning_warp_markers"]=590,["maximum_added_cold_damage_per_frenzy_charge"]=602,["maximum_added_cold_damage_vs_chilled_enemies"]=603,["maximum_added_lightning_damage_from_skill"]=604,["maximum_fire_damage_per_fuse_arrow_orb"]=148,["maximum_intensify_stacks"]=591,["maximum_number_of_blades_left_in_ground"]=592,["maximum_number_of_mirage_warriors"]=593,["maximum_number_of_snapping_adder_projectiles"]=594,["maximum_number_of_spinning_blades"]=345,["maximum_secondary_physical_damage_per_15_strength"]=605,["maximum_virulence_stacks"]=595,["melee_ancestor_totem_grant_owner_attack_speed_+%"]=47,["melee_ancestor_totem_grant_owner_attack_speed_+%_final"]=44,["melee_attack_number_of_spirit_strikes"]=596,["melee_counterattack_trigger_on_block_%"]=243,["melee_counterattack_trigger_on_hit_%"]=241,["melee_damage_vs_bleeding_enemies_+%"]=328,["melee_physical_damage_+%"]=145,["melee_range_+"]=339,["melee_splash"]=226,["melee_splash_area_of_effect_+%_final"]=354,["melee_weapon_range_+"]=338,["mine_cannot_rearm"]=597,["mine_critical_strike_chance_+%_per_power_charge"]=598,["mine_detonates_instantly"]=599,["mine_detonation_radius_+%"]=36,["mine_detonation_speed_+%"]=600,["mine_duration"]=189,["mine_laying_speed_+%"]=188,["mine_throwing_speed_+%_per_frenzy_charge"]=601,["minimum_added_cold_damage_per_frenzy_charge"]=602,["minimum_added_cold_damage_vs_chilled_enemies"]=603,["minimum_added_lightning_damage_from_skill"]=604,["minimum_fire_damage_per_fuse_arrow_orb"]=148,["minimum_secondary_physical_damage_per_15_strength"]=605,["minion_additional_physical_damage_reduction_%"]=606,["minion_attack_speed_+%"]=114,["minion_cast_speed_+%"]=115,["minion_chance_to_deal_double_damage_%"]=607,["minion_chance_to_taunt_on_hit_%"]=608,["minion_damage_+%"]=112,["minion_duration"]=76,["minion_fire_damage_taken_+%"]=609,["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=610,["minion_larger_aggro_radius"]=802,["minion_maximum_all_elemental_resistances_%"]=611,["minion_maximum_life_+%"]=123,["minion_movement_speed_+%"]=116,["minions_are_defensive"]=803,["minions_inflict_exposure_on_hit_%_chance"]=612,["modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration"]=30,["modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration"]=29,["molten_shell_damage_absorb_limit_%_of_armour"]=613,["molten_shell_damage_absorbed_%"]=613,["molten_shell_max_damage_absorbed"]=613,["monster_response_time_ms"]=143,["mortal_call_elemental_damage_taken_+%_final"]=616,["mortal_call_physical_damage_taken_+%_final"]=617,["mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad"]=618,["mortar_barrage_mine_maximum_added_fire_damage_taken"]=799,["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"]=799,["mortar_barrage_mine_minimum_added_fire_damage_taken"]=799,["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"]=799,["movement_velocity_cap"]=119,["multistrike_damage_+%_final_on_first_repeat"]=619,["multistrike_damage_+%_final_on_second_repeat"]=620,["multistrike_damage_+%_final_on_third_repeat"]=621,["never_freeze"]=288,["never_ignite"]=289,["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=334,["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=333,["newpunishment_applied_buff_duration_ms"]=332,["newpunishment_attack_speed_+%"]=331,["newpunishment_melee_damage_+%_final"]=330,["newshocknova_first_ring_damage_+%_final"]=308,["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=622,["no_movement_speed"]=96,["non_damaging_ailment_effect_+%"]=623,["number_of_champions_of_light_allowed"]=624,["number_of_corpses_to_consume"]=625,["number_of_herald_scorpions_allowed"]=627,["number_of_mines_to_place"]=31,["number_of_relics_allowed"]=628,["number_of_support_ghosts_allowed"]=430,["number_of_totems_to_summon"]=34,["number_of_traps_to_throw"]=32,["offering_skill_effect_duration_per_corpse"]=22,["orb_of_storms_bolt_frequency_ms"]=629,parent="active_skill_gem_stat_descriptions",["petrification_statue_target_action_speed_-%"]=635,["phantasm_grant_buff_maximum_added_physical_damage"]=636,["phantasm_grant_buff_minimum_added_physical_damage"]=636,["phase_run_melee_physical_damage_+%_final"]=144,["phase_through_objects"]=341,["phys_cascade_trap_interval_duration_ms"]=637,["phys_cascade_trap_number_of_cascades"]=637,["physical_damage_%_to_add_as_chaos"]=293,["physical_damage_%_to_add_as_fire"]=292,["physical_damage_reduction_%_per_crab_aspect_stack"]=638,["physical_damage_reduction_rating_+%"]=162,["physical_damage_taken_+"]=224,["poison_dot_multiplier_+"]=639,["poison_skill_effect_duration"]=75,["power_siphon_fire_at_all_targets"]=40,["primary_projectile_display_targets_to_pierce"]=84,["primary_projectile_impale_chance_%"]=640,["projectile_damage_modifiers_apply_to_skill_dot"]=27,["projectile_ground_effect_duration"]=73,["projectile_number_of_targets_to_pierce"]=83,["projectile_spiral_nova_angle"]=40,["projectiles_barrage"]=40,["projectiles_nova"]=40,["projectiles_rain"]=641,["projectiles_return"]=213,["projectiles_return_if_no_hit_object"]=213,["puncture_bleeding_damage_+%_final"]=642,["puppet_master_duration_ms"]=643,["purge_expose_resist_%_matching_highest_element_damage"]=644,["quake_slam_fully_charged_explosion_damage_+%_final"]=343,["quick_guard_damage_absorb_limit"]=645,["quick_guard_damage_absorbed_%"]=645,["rain_of_arrows_additional_sequence_chance_%"]=646,["rain_of_arrows_sequences_to_fire"]=40,["raised_spectre_level"]=647,["reave_area_of_effect_+%_final_per_stage"]=235,["recall_sigil_target_search_range_+%"]=648,["reduce_enemy_dodge_%"]=285,["reduce_enemy_elemental_resistance_%"]=205,["returning_projectiles_always_pierce"]=373,["righteous_fire_spell_damage_+%_final"]=168,["rune_paint_area_of_effect_+%_final_per_rune_level"]=649,["rune_paint_damage_+%_final_per_rune_level"]=650,["rune_paint_mana_spend_per_rune_upgrade"]=651,["rune_paint_max_rune_level"]=652,["sanctify_wave_damage_+%_final"]=653,["scorpion_minion_attack_speed_+%"]=654,["scorpion_minion_maximum_added_physical_damage"]=656,["scorpion_minion_minimum_added_physical_damage"]=656,["scorpion_minion_physical_damage_+%"]=655,["secondary_buff_effect_duration"]=70,["secondary_maximum_chaos_damage"]=19,["secondary_maximum_cold_damage"]=17,["secondary_maximum_fire_damage"]=16,["secondary_maximum_lightning_damage"]=18,["secondary_maximum_physical_damage"]=15,["secondary_minimum_chaos_damage"]=19,["secondary_minimum_cold_damage"]=17,["secondary_minimum_fire_damage"]=16,["secondary_minimum_lightning_damage"]=18,["secondary_minimum_physical_damage"]=15,["secondary_minion_duration"]=77,["secondary_skill_effect_duration"]=72,["shattering_steel_damage_+%_final_scaled_by_projectile_distance"]=657,["shield_block_%"]=159,["shield_charge_damage_+%_maximum"]=82,["shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range"]=80,["shield_charge_stun_duration_+%_maximum"]=81,["shield_spell_block_%"]=160,["shock_duration_+%"]=92,["shock_effect_+%"]=658,["shock_nova_ring_damage_+%"]=358,["shocked_ground_base_magnitude_override"]=659,["shockwave_slam_explosion_damage_+%_final"]=356,["shrapnel_trap_number_of_secondary_explosions"]=660,["sigil_attached_target_fire_penetration_%"]=661,["sigil_attached_target_lightning_penetration_%"]=662,["sigil_recall_extend_base_secondary_skill_effect_duration"]=663,["sigil_recall_extend_base_skill_effect_duration"]=664,["siphon_life_leech_from_damage_permyriad"]=344,["skeletal_chains_aoe_%_health_dealt_as_chaos_damage"]=2,["skeletal_chains_no_minions_damage_+%_final"]=207,["skeletal_chains_no_minions_radius_+"]=208,["skeletal_chains_no_minions_targets_self"]=206,["skill_angle_+%_in_sand_stance"]=665,["skill_area_angle_+%"]=666,["skill_buff_effect_+%"]=359,["skill_buff_grants_chance_to_poison_%"]=348,["skill_can_only_use_bow"]=753,["skill_can_only_use_non_melee_weapons"]=756,["skill_can_own_mirage_archers"]=667,["skill_code_movement_speed_+%_final"]=668,["skill_display_number_of_remote_mines_allowed"]=183,["skill_display_number_of_totems_allowed"]=181,["skill_display_number_of_traps_allowed"]=182,["skill_effect_and_damaging_ailment_duration_+%"]=669,["skill_effect_duration"]=71,["skill_effect_duration_+%_per_removable_frenzy_charge"]=158,["skill_effect_duration_per_100_int"]=670,["skill_max_unleash_seals"]=794,["skill_maximum_travel_distance_+%"]=671,["skill_travel_distance_+%"]=672,["skill_triggered_by_snipe"]=673,["skill_triggered_when_you_focus_chance_%"]=674,["skill_used_by_mirage_warrior_damage_+%_final"]=675,["skill_withered_duration_ms"]=110,["slam_ancestor_totem_grant_owner_melee_damage_+%"]=48,["slam_ancestor_totem_grant_owner_melee_damage_+%_final"]=45,["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=46,["slither_wither_stacks"]=676,["snapping_adder_released_projectile_damage_+%_final"]=372,["snipe_max_stacks"]=677,["snipe_triggered_skill_ailment_damage_+%_final_per_stage"]=678,["snipe_triggered_skill_hit_damage_+%_final_per_stage"]=679,["spectre_duration"]=78,["spell_cast_time_cannot_be_modified"]=680,["spell_damage_+%"]=170,["spell_damage_modifiers_apply_to_skill_dot"]=26,["spell_echo_plus_chance_double_damage_%_final"]=681,["spell_maximum_added_cold_damage"]=296,["spell_maximum_added_lightning_damage"]=302,["spell_maximum_base_cold_damage_+_per_10_intelligence"]=24,["spell_maximum_base_cold_damage_per_removable_frenzy_charge"]=23,["spell_maximum_base_fire_damage_per_removable_endurance_charge"]=21,["spell_maximum_base_lightning_damage_per_removable_power_charge"]=20,["spell_maximum_chaos_damage"]=14,["spell_maximum_cold_damage"]=12,["spell_maximum_fire_damage"]=11,["spell_maximum_lightning_damage"]=13,["spell_maximum_physical_damage"]=10,["spell_minimum_added_cold_damage"]=296,["spell_minimum_added_lightning_damage"]=302,["spell_minimum_base_cold_damage_+_per_10_intelligence"]=24,["spell_minimum_base_cold_damage_per_removable_frenzy_charge"]=23,["spell_minimum_base_fire_damage_per_removable_endurance_charge"]=21,["spell_minimum_base_lightning_damage_per_removable_power_charge"]=20,["spell_minimum_chaos_damage"]=14,["spell_minimum_cold_damage"]=12,["spell_minimum_fire_damage"]=11,["spell_minimum_lightning_damage"]=13,["spell_minimum_physical_damage"]=10,["spell_only_castable_on_death"]=240,["spell_repeat_count"]=38,["spell_uncastable_if_triggerable"]=240,["spellslinger_mana_reservation"]=682,["spellslinger_trigger_on_wand_attack_%"]=258,["spider_aspect_max_web_count"]=683,["static_strike_base_zap_frequency_ms"]=684,["static_strike_beam_damage_+%_final"]=685,["static_strike_beam_damage_+%_final_while_moving"]=686,["static_strike_explosion_damage_+%_final"]=304,["static_strike_number_of_beam_targets"]=687,["static_strike_zap_speed_+%_per_stack"]=688,["stone_golem_grants_base_life_regeneration_rate_per_minute"]=319,["storm_burst_new_damage_+%_final_per_remaining_teleport_zap"]=689,["summon_cold_resistance_+"]=231,["summon_fire_resistance_+"]=230,["summon_lightning_resistance_+"]=232,["summon_mirage_archer_on_hit"]=690,["summon_mirage_warrior_on_crit"]=691,["summon_totem_cast_speed_+%"]=329,["summoned_spider_grants_attack_speed_+%"]=692,["summoned_spider_grants_poison_damage_+%"]=693,["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=694,["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=695,["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=696,["support_anticipation_charge_gain_interval_ms"]=794,["support_anticipation_rapid_fire_count"]=794,["support_arcane_surge_cast_speed_+%"]=376,["support_arcane_surge_duration_ms"]=377,["support_arcane_surge_gain_buff_on_mana_use_threshold"]=375,["support_arcane_surge_mana_regeneration_rate_per_minute_%"]=376,["support_arcane_surge_spell_damage_+%_final"]=376,["support_attack_totem_attack_speed_+%_final"]=276,["support_aura_duration_buff_duration"]=697,["support_aura_duration_reserve_duration"]=698,["support_better_ailments_ailment_damage_+%_final"]=699,["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=327,["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=700,["support_chance_to_bleed_bleeding_damage_+%_final"]=701,["support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=703,["support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"]=702,["support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=705,["support_chills_also_grant_cold_damage_taken_per_minute_+%"]=704,["support_concentrated_effect_skill_area_of_effect_+%_final"]=64,["support_debilitate_hit_damage_+%_final_per_poison_stack"]=706,["support_debilitate_hit_damage_max_poison_stacks"]=706,["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=707,["support_ghost_duration"]=708,["support_greater_spell_echo_area_of_effect_+%_per_repeat"]=709,["support_greater_spell_echo_spell_damage_+%_final_per_repeat"]=710,["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=340,["support_ignite_prolif_ignite_damage_+%_final"]=711,["support_ignite_proliferation_radius"]=174,["support_innervate_buff_duration_ms"]=380,["support_innervate_gain_buff_on_killing_shocked_enemy"]=378,["support_innervate_maximum_added_lightning_damage"]=379,["support_innervate_minimum_added_lightning_damage"]=379,["support_maim_chance_physical_damage_+%_final"]=712,["support_maimed_enemies_physical_damage_taken_+%"]=713,["support_minefield_mine_throwing_speed_+%_final"]=714,["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=716,["support_minion_defensive_stance_minion_damage_taken_+%_final"]=717,["support_minion_maximum_life_+%_final"]=122,["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=718,["support_minion_totem_resistance_elemental_damage_+%_final"]=719,["support_mirage_archer_attack_speed_+%_final"]=720,["support_mirage_archer_duration"]=721,["support_multicast_cast_speed_+%_final"]=51,["support_multiple_attacks_melee_attack_speed_+%_final"]=229,["support_multiple_projectiles_critical_strike_chance_+%_final"]=107,["support_overpowered_duration_ms"]=722,["support_parallel_projectile_number_of_points_per_side"]=723,["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=724,["support_projectile_attack_speed_+%_final"]=274,["support_pulverise_area_of_effect_+%_final"]=725,["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=726,["support_reduce_enemy_block_and_spell_block_%"]=727,["support_reduce_enemy_dodge_and_spell_dodge_%"]=728,["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=800,["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=729,["support_ruthless_big_hit_damage_+%_final"]=382,["support_ruthless_big_hit_max_count"]=381,["support_ruthless_big_hit_stun_base_duration_override_ms"]=384,["support_ruthless_blow_bleeding_damage_from_melee_hits_+%_final"]=383,["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=730,["support_scion_onslaught_on_killing_blow_%_chance"]=731,["support_scion_onslaught_on_killing_blow_duration_ms"]=731,["support_slashing_buff_attack_cast_speed_+%_final_to_grant"]=733,["support_slashing_buff_duration_ms"]=732,["support_slashing_damage_+%_final_from_distance"]=734,["support_spell_boost_area_damage_+%_final_per_charge"]=735,["support_spell_boost_area_of_effect_+%_final_per_charge"]=736,["support_spell_boost_charge_loss_interval_ms_while_moving"]=737,["support_spell_cascade_area_of_effect_+%_final"]=738,["support_spell_cascade_number_of_cascades_per_side"]=739,["support_spell_cascade_sideways"]=739,["support_spell_rapid_fire_repeat_use_damage_+%_final"]=795,["support_spell_totem_cast_speed_+%_final"]=275,["support_storm_barrier_chaos_damage_+%_final_to_apply"]=740,["support_storm_barrier_chaos_damage_taken_+%_final_from_hits_while_channelling"]=747,["support_storm_barrier_cold_damage_+%_final_to_apply"]=741,["support_storm_barrier_cold_damage_taken_+%_final_from_hits_while_channelling"]=748,["support_storm_barrier_damage_buff_duration_ms"]=742,["support_storm_barrier_fire_damage_+%_final_to_apply"]=743,["support_storm_barrier_fire_damage_taken_+%_final_from_hits_while_channelling"]=749,["support_storm_barrier_lightning_damage_+%_final_to_apply"]=744,["support_storm_barrier_lightning_damage_taken_+%_final_from_hits_while_channelling"]=750,["support_storm_barrier_physical_damage_+%_final_to_apply"]=745,["support_storm_barrier_physical_damage_taken_when_hit_+%_final"]=746,["support_unbound_ailments_ailment_damage_+%_final"]=751,["supported_skill_can_only_use_axe_and_sword"]=752,["supported_skill_can_only_use_dagger_and_claw"]=754,["supported_skill_can_only_use_mace_and_staff"]=755,["tectonic_slam_chance_to_use_endurance_charge_%"]=757,["tethered_enemies_take_attack_projectile_damage_taken_+%"]=758,["tethered_movement_speed_+%_final_per_rope"]=759,["tethered_movement_speed_+%_final_per_rope_vs_rare"]=760,["tethered_movement_speed_+%_final_per_rope_vs_unique"]=761,["tethering_arrow_display_rope_limit"]=762,["throw_traps_in_circle_radius"]=33,["total_number_of_arrows_to_fire"]=40,["total_number_of_projectiles_to_fire"]=40,["totem_duration"]=184,["totem_life_+%"]=190,["totem_range"]=180,["totems_cannot_evade"]=185,["trap_critical_strike_multiplier_+_per_power_charge"]=763,["trap_duration"]=186,["trap_throwing_speed_+%"]=187,["trap_throwing_speed_+%_per_frenzy_charge"]=764,["trap_trigger_radius_+%"]=35,["trigger_after_spending_200_mana_%_chance"]=765,["trigger_on_bow_attack_%"]=766,["trigger_on_corpse_consume_%_chance"]=767,["trigger_on_kill_vs_frozen_enemy_%"]=768,["trigger_on_skill_use_%_if_you_have_a_spirit_charge"]=252,["trigger_on_skill_use_%_if_you_have_a_void_arrow"]=769,["trigger_on_skill_use_from_chest_%"]=251,["triggered_by_item_buff"]=770,["unearth_corpse_level"]=279,["vaal_blade_vortex_has_10_spinning_blades"]=771,["vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura"]=453,["vaal_earthquake_maximum_aftershocks"]=772,["vaal_flameblast_radius_+_per_stage"]=773,["vaal_lightning_strike_beam_damage_+%_final"]=282,["vaal_righteous_fire_life_and_es_%_as_damage_per_second"]=3,["vaal_righteous_fire_life_and_es_%_to_lose_on_use"]=3,["vaal_righteous_fire_spell_damage_+%_final"]=169,["vaal_storm_call_delay_ms"]=774,["virtual_always_pierce"]=83,["virtual_berserk_hundred_times_rage_loss_per_second"]=390,["virtual_bladefall_number_of_volleys"]=775,["virtual_chill_minimum_slow_%"]=776,["virtual_cyclone_skill_area_of_effect_+%_from_melee_range"]=62,["virtual_divine_tempest_number_of_nearby_enemies_to_zap"]=777,["virtual_firestorm_drop_chilled_ground_duration_ms"]=321,["virtual_mine_detonation_time_ms"]=778,["virtual_minion_elemental_resistance_%"]=233,["virtual_number_of_additional_curses_allowed"]=779,["virtual_number_of_chains"]=209,["virtual_number_of_chains_for_beams"]=210,["virtual_number_of_chains_for_projectiles"]=780,["virtual_number_of_forks_for_projectiles_final"]=212,["virtual_projectile_number_to_split"]=211,["virtual_projectiles_cannot_pierce"]=83,["virtual_spider_aspect_web_interval_ms"]=781,["virtual_steelskin_damage_%_taken_to_buff"]=782,["virtual_steelskin_damage_limit"]=782,["virtual_support_anticipation_charge_gain_interval_ms"]=794,["virtual_support_storm_barrier_damage_buff_time_threshold_ms"]=783,["virtual_support_storm_barrier_physical_damage_taken_+%_final_from_hits_while_channelling"]=784,["virtual_tectonic_slam_%_chance_to_do_charged_slam"]=785,["virtual_trap_and_mine_throwing_time_+%_final"]=786,["virulent_arrow_damage_+%_final_per_stage"]=787,["virulent_arrow_maximum_number_of_stacks"]=788,["virulent_arrow_number_of_pod_projectiles"]=789,["virulent_arrow_pod_projectile_damage_+%_final"]=790,["volatile_dead_max_cores_allowed"]=791,["volatile_dead_number_of_corpses_to_consume"]=792,["wall_expand_delay_ms"]=128,["wall_maximum_length"]=129,["withered_on_hit_chance_%"]=793,["zombie_slam_cooldown_speed_+%"]=801} \ No newline at end of file diff --git a/Data/3_0/StatDescriptions/stat_descriptions.lua b/Data/3_0/StatDescriptions/stat_descriptions.lua index dc8b2e0a9..462a87c01 100644 --- a/Data/3_0/StatDescriptions/stat_descriptions.lua +++ b/Data/3_0/StatDescriptions/stat_descriptions.lua @@ -1 +1 @@ -return {[1]={stats={[1]="level"}},[2]={stats={[1]="running"}},[3]={stats={[1]="item_drop_slots"}},[4]={stats={[1]="main_hand_weapon_type"}},[5]={stats={[1]="off_hand_weapon_type"}},[6]={stats={[1]="current_endurance_charges"}},[7]={stats={[1]="current_frenzy_charges"}},[8]={stats={[1]="current_power_charges"}},[9]={stats={[1]="monster_slain_experience_+%"}},[10]={stats={[1]="monster_dropped_item_rarity_+%"}},[11]={stats={[1]="monster_dropped_item_quantity_+%"}},[12]={stats={[1]="main_hand_quality"}},[13]={stats={[1]="off_hand_quality"}},[14]={stats={[1]="trap"}},[15]={stats={[1]="skill_visual_scale_+%"}},[16]={stats={[1]="main_hand_base_weapon_attack_duration_ms"}},[17]={stats={[1]="off_hand_base_weapon_attack_duration_ms"}},[18]={stats={[1]="main_hand_minimum_attack_distance"}},[19]={stats={[1]="off_hand_minimum_attack_distance"}},[20]={stats={[1]="main_hand_maximum_attack_distance"}},[21]={stats={[1]="off_hand_maximum_attack_distance"}},[22]={stats={[1]="chest_item_quantity_+%"}},[23]={stats={[1]="chest_item_quality_+%"}},[24]={stats={[1]="chest_level_+"}},[25]={stats={[1]="chest_only_normal_rarity"}},[26]={stats={[1]="chest_only_magic_rarity"}},[27]={stats={[1]="chest_only_rare_rarity"}},[28]={stats={[1]="chest_only_unique_rarity"}},[29]={stats={[1]="chest_only_currency_items"}},[30]={stats={[1]="chest_only_gems"}},[31]={stats={[1]="map_item_drop_quantity_+%"}},[32]={stats={[1]="map_item_drop_rarity_+%"}},[33]={stats={[1]="map_tempest_display_prefix"}},[34]={stats={[1]="map_tempest_display_suffix"}},[35]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=1,[2]=1},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]=1}},text="Bathed in the blood of %2% sacrificed in the name of Xibaqua\nPassives in radius are Conquered by the Vaal"},[2]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=1,[2]=1},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]=2}},text="Bathed in the blood of %2% sacrificed in the name of Zerphi\nPassives in radius are Conquered by the Vaal"},[3]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=1,[2]=1},[2]={[1]="#",[2]="#"},[3]={[1]=3,[2]=3}},text="Bathed in the blood of %2% sacrificed in the name of Doryani\nPassives in radius are Conquered by the Vaal"},[4]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=2,[2]=2},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]=1}},text="Commanded leadership over %2% warriors under Kaom\nPassives in radius are Conquered by the Karui"},[5]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=2,[2]=2},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]=2}},text="Commanded leadership over %2% warriors under Rakiata\nPassives in radius are Conquered by the Karui"},[6]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=2,[2]=2},[2]={[1]="#",[2]="#"},[3]={[1]=3,[2]=3}},text="Commanded leadership over %2% warriors under Kiloava\nPassives in radius are Conquered by the Karui"},[7]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=3,[2]=3},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]=1}},text="Denoted service of %2% dekhara in the akhara of Deshret\nPassives in radius are Conquered by the Maraketh"},[8]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=3,[2]=3},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]=2}},text="Denoted service of %2% dekhara in the akhara of Asenath\nPassives in radius are Conquered by the Maraketh"},[9]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=3,[2]=3},[2]={[1]="#",[2]="#"},[3]={[1]=3,[2]=3}},text="Denoted service of %2% dekhara in the akhara of Nasima\nPassives in radius are Conquered by the Maraketh"},[10]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=4,[2]=4},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]=1}},text="Carved to glorify %2% new faithful converted by High Templar Venarius\nPassives in radius are Conquered by the Templars"},[11]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=4,[2]=4},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]=2}},text="Carved to glorify %2% new faithful converted by High Templar Dominus\nPassives in radius are Conquered by the Templars"},[12]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=4,[2]=4},[2]={[1]="#",[2]="#"},[3]={[1]=3,[2]=3}},text="Carved to glorify %2% new faithful converted by High Templar Avarius\nPassives in radius are Conquered by the Templars"},[13]={[1]={k="times_twenty",v=2},[2]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=5,[2]=5},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]=1}},text="Commissioned %2% coins to commemorate Cadiro\nPassives in radius are Conquered by the Eternal Empire"},[14]={[1]={k="times_twenty",v=2},[2]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=5,[2]=5},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]=2}},text="Commissioned %2% coins to commemorate Victario\nPassives in radius are Conquered by the Eternal Empire"},[15]={[1]={k="times_twenty",v=2},[2]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=5,[2]=5},[2]={[1]="#",[2]="#"},[3]={[1]=3,[2]=3}},text="Commissioned %2% coins to commemorate Chitus\nPassives in radius are Conquered by the Eternal Empire"}}},stats={[1]="local_unique_jewel_alternate_tree_version",[2]="local_unique_jewel_alternate_tree_seed",[3]="local_unique_jewel_alternate_tree_keystone"}},[36]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can be modified while Corrupted"}}},stats={[1]="local_item_allow_modification_while_corrupted"}},[37]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Affects Passives in Small Ring"},[2]={limit={[1]={[1]=2,[2]=2}},text="Affects Passives in Medium Ring"},[3]={limit={[1]={[1]=3,[2]=3}},text="Affects Passives in Large Ring"},[4]={limit={[1]={[1]=4,[2]=4}},text="Affects Passives in Very Large Ring"}}},stats={[1]="local_jewel_variable_ring_radius_value"}},[38]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have a second Enchantment Modifier"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Can have %1% extra Enchantment Modifiers"}}},stats={[1]="local_item_can_have_x_additional_enchantments"}},[39]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCorruptionUniqueTooManyImplicits"},limit={[1]={[1]=1,[2]=1}},text="Can have a up to 1 Implicit Modifier while Item has this Modifier"},[2]={[1]={k="reminderstring",v="ReminderTextCorruptionUniqueTooManyImplicits"},limit={[1]={[1]=2,[2]="#"}},text="Can have up to %1% Implicit Modifiers while Item has this Modifier"}}},stats={[1]="local_item_implicit_modifier_limit"}},[40]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can roll Minion Modifiers"}}},stats={[1]="display_item_generation_can_roll_minion_affixes"}},[41]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Prefixes Cannot Be Changed"}}},stats={[1]="item_generation_cannot_change_prefixes"}},[42]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Suffixes Cannot Be Changed"}}},stats={[1]="item_generation_cannot_change_suffixes"}},[43]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot roll Caster Modifiers"}}},stats={[1]="item_generation_cannot_roll_caster_affixes"}},[44]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot roll Attack Modifiers"}}},stats={[1]="item_generation_cannot_roll_attack_affixes"}},[45]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to 3 Crafted Modifiers"}}},stats={[1]="item_generation_can_have_multiple_crafted_mods"}},[46]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot roll Modifiers with Required Level above %1%"}}},stats={[1]="item_generation_local_maximum_mod_required_level_override"}},[47]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImplicitMod"},limit={[1]={[1]=100,[2]=100}},text="Implicit Modifier magnitudes are doubled"},[2]={[1]={k="reminderstring",v="ReminderTextImplicitMod"},limit={[1]={[1]=200,[2]=200}},text="Implicit Modifier magnitudes are tripled"},[3]={[1]={k="reminderstring",v="ReminderTextImplicitMod"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Implicit Modifier magnitudes"},[4]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextImplicitMod"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Implicit Modifier magnitudes"}}},stats={[1]="local_implicit_stat_magnitude_+%"}},[48]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Has no Sockets"}}},stats={[1]="local_has_no_sockets"}},[49]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAbyssalSockets"},limit={[1]={[1]=1,[2]=1}},text="Has 1 Abyssal Socket"},[2]={[1]={k="reminderstring",v="ReminderTextAbyssalSockets"},limit={[1]={[1]=2,[2]="#"}},text="Has %1% Abyssal Sockets"}}},stats={[1]="local_has_X_abyss_sockets"}},[50]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Has 1 Socket"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Has %1% Sockets"}}},stats={[1]="local_has_X_sockets"}},[51]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Sockets cannot be modified"}}},stats={[1]="local_six_linked_random_sockets"}},[52]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="All Sockets Linked"}}},stats={[1]="local_all_sockets_linked"}},[53]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Has one socket of each colour"}}},stats={[1]="local_one_socket_each_colour_only"}},[54]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gems can be Socketed in this Item ignoring Socket Colour"}}},stats={[1]="local_can_socket_gems_ignoring_colour"}},[55]={lang={English={[1]={limit={[1]={[1]=1,[2]=1},[2]={[1]=0,[2]=0}},text="Consumes Socketed Support Gems when they reach Maximum Level\nCan Consume %1% Support Gem\nHas not Consumed any Gems"},[2]={limit={[1]={[1]=1,[2]=1},[2]={[1]="#",[2]="#"}},text="Consumes Socketed Support Gems when they reach Maximum Level\nCan Consume %1% additional Support Gem"},[3]={limit={[1]={[1]=2,[2]="#"},[2]={[1]=0,[2]=0}},text="Consumes Socketed Support Gems when they reach Maximum Level\nCan Consume %1% Support Gems\nHas not Consumed any Gems"},[4]={limit={[1]={[1]=2,[2]="#"},[2]={[1]="#",[2]="#"}},text="Consumes Socketed Support Gems when they reach Maximum Level\nCan Consume %1% additional Support Gems"},[5]={limit={[1]={[1]=-1,[2]=-1},[2]={[1]=1,[2]=1}},text="Has Consumed 1 Gem"}}},stats={[1]="local_unique_hungry_loop_number_of_gems_to_consume",[2]="local_unique_hungry_loop_has_consumed_gem"}},[56]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to Trigger a Socketed Warcry Skill when you lose Endurance Charges"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger a Socketed Warcry Skill when you lose Endurance Charges"}}},stats={[1]="trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance"}},[57]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d to Level of Socketed Gems"}}},stats={[1]="local_gem_level_+"}},[58]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Strength Gems"}}},stats={[1]="local_socketed_strength_gem_level_+"}},[59]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Dexterity Gems"}}},stats={[1]="local_socketed_dexterity_gem_level_+"}},[60]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Intelligence Gems"}}},stats={[1]="local_socketed_intelligence_gem_level_+"}},[61]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Gems"}}},stats={[1]="local_socketed_gem_level_+"}},[62]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="+1 to Level of Socketed Active Skill Gems per %1% Player Levels"}}},stats={[1]="local_socketed_skill_gem_level_+1_per_x_player_levels"}},[63]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gems Socketed in Red Sockets have %1$+d to Level"}}},stats={[1]="local_socketed_gems_in_red_sockets_get_level_+"}},[64]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gems Socketed in Green Sockets have %1$+d%% to Quality"}}},stats={[1]="local_socketed_gems_in_green_sockets_get_quality_%"}},[65]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gems Socketed in Blue Sockets gain %1%%% increased Experience"}}},stats={[1]="local_socketed_gems_in_blue_sockets_experience_gained_+%"}},[66]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Fire Gems"}}},stats={[1]="local_socketed_fire_gem_level_+"}},[67]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Cold Gems"}}},stats={[1]="local_socketed_cold_gem_level_+"}},[68]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Lightning Gems"}}},stats={[1]="local_socketed_lightning_gem_level_+"}},[69]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Chaos Gems"}}},stats={[1]="local_socketed_chaos_gem_level_+"}},[70]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Spell Gems"}}},stats={[1]="local_socketed_spell_gem_level_+"}},[71]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Duration Gems"}}},stats={[1]="local_socketed_duration_gem_level_+"}},[72]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed AoE Gems"}}},stats={[1]="local_socketed_area_of_effect_gem_level_+"}},[73]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Projectile Gems"}}},stats={[1]="local_socketed_projectile_gem_level_+"}},[74]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Bow Gems"}}},stats={[1]="local_socketed_bow_gem_level_+"}},[75]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Melee Gems"}}},stats={[1]="local_socketed_melee_gem_level_+"}},[76]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Minion Gems"}}},stats={[1]="local_socketed_minion_gem_level_+"}},[77]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Aura Gems"}}},stats={[1]="local_socketed_aura_gem_level_+"}},[78]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Herald Gems"}}},stats={[1]="local_socketed_herald_gem_level_+"}},[79]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Movement Gems"}}},stats={[1]="local_socketed_movement_gem_level_+"}},[80]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Curse Gems"}}},stats={[1]="local_socketed_curse_gem_level_+"}},[81]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Trap Gems"}}},stats={[1]="local_socketed_trap_gem_level_+"}},[82]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Trap or Mine Gems"}}},stats={[1]="local_socketed_trap_and_mine_gem_level_+"}},[83]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Vaal Gems"}}},stats={[1]="local_socketed_vaal_gem_level_+"}},[84]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Support Gems"}}},stats={[1]="local_socketed_support_gem_level_+"}},[85]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Active Skill Gems"}}},stats={[1]="local_socketed_skill_gem_level_+"}},[86]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Warcry Gems"}}},stats={[1]="local_socketed_warcry_gem_level_+"}},[87]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Golem Skills have %1%%% increased Attack and Cast Speed"}}},stats={[1]="local_display_socketed_golem_attack_and_cast_speed_+%"}},[88]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Buffs granted by Socketed Golem Skills"}}},stats={[1]="local_display_socketed_golem_buff_effect_+%"}},[89]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Golem Skills have %1%%% chance to Taunt on Hit"}}},stats={[1]="local_display_socketed_golem_chance_to_taunt_%"}},[90]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Socketed Golem Skills have Minions Regenerate %1%%% of Life per second"}}},stats={[1]="local_display_socketed_golem_life_regeneration_rate_per_minute_%"}},[91]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Gain Onslaught for %1% seconds when you Cast Socketed Golem Skill"}}},stats={[1]="local_display_socketed_golem_skill_grants_onslaught_when_summoned"}},[92]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Golem Skills gain %1%%% of Maximum Life as Extra Maximum Energy Shield"}}},stats={[1]="local_display_socketed_golem_skills_minions_life_%_to_add_as_energy_shield"}},[93]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Golem Gems"}}},stats={[1]="local_socketed_golem_gem_level_+"}},[94]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Gems"}}},stats={[1]="local_socketed_gem_quality_+"}},[95]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Support Gems"}}},stats={[1]="local_socketed_support_gem_quality_+"}},[96]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Elemental Gems"}}},stats={[1]="local_socketed_elemental_gem_level_+"}},[97]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Socketed Abyss Jewels"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Socketed Abyss Jewels"}}},stats={[1]="local_socketed_abyss_jewel_effect_+%"}},[98]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Increased Area of Effect"}}},stats={[1]="local_display_socketed_gems_get_increased_area_level"}},[99]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Arcane Surge"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_arcane_surge"}},[100]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Blessing"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_aura_duration"}},[101]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Barrage"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_barrage"}},[102]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Bloodlust"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_bloodlust"}},[103]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Bonechill"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_bonechill"}},[104]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Brutality"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_brutality"}},[105]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Cast when Damage Taken"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken"}},[106]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Cast On Melee Kill"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_cast_on_kill"}},[107]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Cast While Channelling"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_cast_while_channelling"}},[108]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Chain"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_chain"}},[109]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Chance To Bleed"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_chance_to_bleed"}},[110]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Combustion"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_chance_to_ignite"}},[111]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Charged Mines"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_charged_mines"}},[112]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Close Combat"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_close_combat"}},[113]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Culling Strike"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_culling_strike"}},[114]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Curse On Hit"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_curse_on_hit"}},[115]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Deadly Ailments"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_deadly_ailments"}},[116]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Decay"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_decay"}},[117]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Efficacy"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_efficacy"}},[118]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Elemental Focus"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_elemental_focus"}},[119]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Elemental Penetration"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_elemental_penetration"}},[120]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Empower"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_empower"}},[121]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Energy Leech"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_energy_leech"}},[122]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Enhance"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_enhance"}},[123]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Enlighten"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_enlighten"}},[124]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Feeding Frenzy"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_feeding_frenzy"}},[125]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Fire Penetration"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_fire_penetration"}},[126]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Charged Traps"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger"}},[127]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Greater Multiple Projectiles"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles"}},[128]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Greater Spell Echo"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_greater_spell_echo"}},[129]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Greater Volley"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_greater_volley"}},[130]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Ignite Proliferation"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_ignite_proliferation"}},[131]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Immolate"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_immolate"}},[132]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Impale"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_impale"}},[133]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Burning Damage"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_increased_burning_damage"}},[134]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Increased Critical Strikes"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_increased_critical_strikes"}},[135]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Increased Duration"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_increased_duration"}},[136]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Infernal Legion"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_infernal_legion"}},[137]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Iron Grip"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_iron_grip"}},[138]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Item Quantity"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_item_quantity"}},[139]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Item Rarity"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_item_rarity"}},[140]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Life Gain On Hit"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_life_gain_on_hit"}},[141]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Lightning Penetration"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_lightning_penetration"}},[142]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Maim"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_maim"}},[143]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Meat Shield"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_meat_shield"}},[144]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Damage On Full Life"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life"}},[145]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Minefield"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_minefield"}},[146]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Mirage Archer"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_mirage_archer"}},[147]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Multiple Totems"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_multi_totem"}},[148]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Spell Echo"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_multicast"}},[149]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Onslaught"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_onslaught"}},[150]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Volley"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_parallel_projectiles"}},[151]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Vicious Projectiles"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage"}},[152]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Physical To Lightning"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_physical_to_lightning"}},[153]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Point Blank"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_point_blank"}},[154]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Poison"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_poison"}},[155]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Power Charge On Critical Strike"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_power_charge_on_crit"}},[156]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Pulverise"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_pulverise"}},[157]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Rage"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_rage"}},[158]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Arrow Nova"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_rain"}},[159]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Ballista Totem"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_ranged_attack_totem"}},[160]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Swift Affliction"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_rapid_decay"}},[161]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Block Chance Reduction"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_reduced_block_chance"}},[162]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Less Duration"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_reduced_duration"}},[163]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% High-Impact Mine"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_remote_mine_2"}},[164]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Ruthless"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_ruthless"}},[165]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Shockwave"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_shockwave"}},[166]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Slower Projectiles"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_slower_projectiles"}},[167]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Spell Cascade"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_spell_cascade"}},[168]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Intensify"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_spell_focus"}},[169]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Ancestral Call"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_spirit_strike"}},[170]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Infused Channelling"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_storm_barrier"}},[171]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Elemental Army Support"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance"}},[172]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Summon Phantasm"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill"}},[173]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Swift Assembly"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_swift_assembly"}},[174]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Advanced Traps"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_trap_cooldown"}},[175]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Unbound Ailments"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_unbound_ailments"}},[176]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Unleash"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_unleash"}},[177]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Void Manipulation"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_void_manipulation"}},[178]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Withering Touch"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_chaos_attacks"}},[179]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Added Chaos Damage"}}},stats={[1]="local_display_supported_by_level_x_awakened_added_chaos_damage"}},[180]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Added Cold Damage"}}},stats={[1]="local_display_supported_by_level_x_awakened_added_cold_damage"}},[181]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Added Fire Damage"}}},stats={[1]="local_display_supported_by_level_x_awakened_added_fire_damage"}},[182]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Added Lightning Damage"}}},stats={[1]="local_display_supported_by_level_x_awakened_added_lightning_damage"}},[183]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Ancestral Call"}}},stats={[1]="local_display_supported_by_level_x_awakened_ancestral_call"}},[184]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Arrow Nova"}}},stats={[1]="local_display_supported_by_level_x_awakened_arrow_nova"}},[185]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Blasphemy"}}},stats={[1]="local_display_supported_by_level_x_awakened_blasphemy"}},[186]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Brutality"}}},stats={[1]="local_display_supported_by_level_x_awakened_brutality"}},[187]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Burning Damage"}}},stats={[1]="local_display_supported_by_level_x_awakened_burning_damage"}},[188]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Cast On Critical Strike"}}},stats={[1]="local_display_supported_by_level_x_awakened_cast_on_crit"}},[189]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Cast While Channelling"}}},stats={[1]="local_display_supported_by_level_x_awakened_cast_while_channelling"}},[190]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Chain"}}},stats={[1]="local_display_supported_by_level_x_awakened_chain"}},[191]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Cold Penetration"}}},stats={[1]="local_display_supported_by_level_x_awakened_cold_penetration"}},[192]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Controlled Destruction"}}},stats={[1]="local_display_supported_by_level_x_awakened_controlled_destruction"}},[193]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Curse On Hit"}}},stats={[1]="local_display_supported_by_level_x_awakened_curse_on_hit"}},[194]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Deadly Ailments"}}},stats={[1]="local_display_supported_by_level_x_awakened_deadly_ailments"}},[195]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Elemental Focus"}}},stats={[1]="local_display_supported_by_level_x_awakened_elemental_focus"}},[196]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Fire Penetration"}}},stats={[1]="local_display_supported_by_level_x_awakened_fire_penetration"}},[197]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Fork"}}},stats={[1]="local_display_supported_by_level_x_awakened_fork"}},[198]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Generosity"}}},stats={[1]="local_display_supported_by_level_x_awakened_generosity"}},[199]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Greater Multiple Projectiles"}}},stats={[1]="local_display_supported_by_level_x_awakened_greater_multiple_projectiles"}},[200]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Increased Area Of Effect"}}},stats={[1]="local_display_supported_by_level_x_awakened_increased_area_of_effect"}},[201]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Lightning Penetration"}}},stats={[1]="local_display_supported_by_level_x_awakened_lightning_penetration"}},[202]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Melee Physical Damage"}}},stats={[1]="local_display_supported_by_level_x_awakened_melee_physical_damage"}},[203]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Melee Splash"}}},stats={[1]="local_display_supported_by_level_x_awakened_melee_splash"}},[204]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Minion Damage"}}},stats={[1]="local_display_supported_by_level_x_awakened_minion_damage"}},[205]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Multistrike"}}},stats={[1]="local_display_supported_by_level_x_awakened_multistrike"}},[206]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Spell Cascade"}}},stats={[1]="local_display_supported_by_level_x_awakened_spell_cascade"}},[207]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Spell Echo"}}},stats={[1]="local_display_supported_by_level_x_awakened_spell_echo"}},[208]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Swift Affliction"}}},stats={[1]="local_display_supported_by_level_x_awakened_swift_affliction"}},[209]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Unbound Ailments"}}},stats={[1]="local_display_supported_by_level_x_awakened_unbound_ailments"}},[210]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Unleash"}}},stats={[1]="local_display_supported_by_level_x_awakened_unleash"}},[211]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Vicious Projectiles"}}},stats={[1]="local_display_supported_by_level_x_awakened_vicious_projectiles"}},[212]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Void Manipulation"}}},stats={[1]="local_display_supported_by_level_x_awakened_void_manipulation"}},[213]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Elemental Damage With Attacks"}}},stats={[1]="local_display_supported_by_level_x_awakened_weapon_elemental_damage"}},[214]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Concentrated Effect"}}},stats={[1]="local_display_socketed_gems_get_concentrated_area_level"}},[215]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Trap"}}},stats={[1]="local_display_socketed_gems_get_trap_level"}},[216]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Cluster Trap"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_cluster_trap"}},[217]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Multiple Traps"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_multi_trap"}},[218]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Trap And Mine Damage"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage"}},[219]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Added Chaos Damage"}}},stats={[1]="local_display_socketed_gems_get_added_chaos_damage_level"}},[220]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Blood Magic"}}},stats={[1]="local_display_socketed_gems_get_blood_magic_level"}},[221]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Increased Duration"}}},stats={[1]="local_display_socketed_gems_get_increased_duration_level"}},[222]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Added Fire Damage"}}},stats={[1]="local_display_socketed_gems_get_added_fire_damage_level"}},[223]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Cold to Fire"}}},stats={[1]="local_display_socketed_gems_get_cold_to_fire_level"}},[224]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Spell Totem"}}},stats={[1]="local_display_socketed_gems_get_spell_totem_level"}},[225]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Fire Penetration"}}},stats={[1]="local_display_socketed_gems_get_fire_penetration_level"}},[226]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Elemental Proliferation"}}},stats={[1]="local_display_socketed_gems_get_elemental_proliferation_level"}},[227]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Added Lightning Damage"}}},stats={[1]="local_display_socketed_gems_get_added_lightning_damage_level"}},[228]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Melee Physical Damage"}}},stats={[1]="local_display_socketed_gems_get_melee_physical_damage_level"}},[229]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Faster Attacks"}}},stats={[1]="local_display_socketed_gems_get_faster_attacks_level"}},[230]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Blind"}}},stats={[1]="local_display_socketed_gems_get_blind_level"}},[231]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Melee Splash"}}},stats={[1]="local_display_socketed_gems_get_melee_splash_level"}},[232]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Cast On Critical Strike"}}},stats={[1]="local_display_socketed_gems_get_cast_on_crit_level"}},[233]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Cast when Stunned"}}},stats={[1]="local_display_socketed_gems_get_cast_when_stunned_level"}},[234]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Cast on Death"}}},stats={[1]="local_display_socketed_gems_get_cast_on_death_level"}},[235]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Stun"}}},stats={[1]="local_display_socketed_gems_get_stun_level"}},[236]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Additional Accuracy"}}},stats={[1]="local_display_socketed_gems_get_additional_accuracy_level"}},[237]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Multistrike"}}},stats={[1]="local_display_socketed_gems_get_multistrike_level"}},[238]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Faster Projectiles"}}},stats={[1]="local_display_socketed_gems_get_faster_projectiles_level"}},[239]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Life Leech"}}},stats={[1]="local_display_socketed_gems_get_life_leech_level"}},[240]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Increased Critical Damage"}}},stats={[1]="local_display_socketed_gems_get_increased_critical_damage_level"}},[241]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Fork"}}},stats={[1]="local_display_socketed_gems_get_fork_level"}},[242]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Elemental Damage with Attacks"}}},stats={[1]="local_display_socketed_gems_get_weapon_elemental_damage_level"}},[243]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Spell Echo"}}},stats={[1]="local_display_socketed_gems_get_echo_level"}},[244]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Inspiration"}}},stats={[1]="local_display_socketed_gems_get_reduced_mana_cost_level"}},[245]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Generosity"}}},stats={[1]="local_display_socketed_gems_get_generosity_level"}},[246]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Fortify"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_fortify"}},[247]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Blastchain Mine"}}},stats={[1]="local_display_socketed_gems_get_remote_mine_level"}},[248]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Chance to Flee"}}},stats={[1]="local_display_socketed_gems_get_flee_level"}},[249]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Faster Casting"}}},stats={[1]="local_display_socketed_gems_get_faster_cast_level"}},[250]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Iron Will"}}},stats={[1]="local_display_socketed_gems_get_iron_will_level"}},[251]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Knockback"}}},stats={[1]="local_display_socketed_gems_supported_by_x_knockback_level"}},[252]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Minion Life"}}},stats={[1]="local_display_socketed_gems_supported_by_x_increased_minion_life_level"}},[253]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Lesser Multiple Projectiles"}}},stats={[1]="local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level"}},[254]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Minion Damage"}}},stats={[1]="local_display_socketed_gems_supported_by_x_increased_minion_damage_level"}},[255]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Increased Critical Damage"}}},stats={[1]="local_display_socketed_gems_supported_by_x_increased_critical_damage_level"}},[256]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Minion Speed"}}},stats={[1]="local_display_socketed_gems_supported_by_x_increased_minion_speed_level"}},[257]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Pierce"}}},stats={[1]="local_display_socketed_gems_supported_by_pierce_level"}},[258]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Pierce"}}},stats={[1]="local_display_socketed_gems_get_pierce_level"}},[259]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Hypothermia"}}},stats={[1]="local_display_socketed_gems_supported_by_x_hypothermia"}},[260]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Ice Bite"}}},stats={[1]="local_display_socketed_gems_supported_by_x_ice_bite"}},[261]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Cold Penetration"}}},stats={[1]="local_display_socketed_gems_supported_by_x_cold_penetration"}},[262]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Mana Leech"}}},stats={[1]="local_display_socketed_gems_supported_by_x_mana_leech"}},[263]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Added Cold Damage"}}},stats={[1]="local_display_socketed_gems_supported_by_x_added_cold_damage"}},[264]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Inspiration"}}},stats={[1]="local_display_socketed_gems_supported_by_x_reduced_mana_cost"}},[265]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Blasphemy"}}},stats={[1]="local_display_socketed_curse_gems_supported_by_level_x_blasphemy"}},[266]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Innervate"}}},stats={[1]="local_display_socketed_gems_supported_by_x_innervate_level"}},[267]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Vile Toxins"}}},stats={[1]="local_display_socketed_gems_supported_by_X_vile_toxins"}},[268]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Lesser Poison"}}},stats={[1]="local_display_socketed_gems_supported_by_X_lesser_poison"}},[269]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Minion Gems are Supported by Level %1% Life Leech"}}},stats={[1]="display_socketed_minion_gems_supported_by_level_X_life_leech"}},[270]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Controlled Destruction"}}},stats={[1]="local_display_socketed_gems_supported_by_x_controlled_destruction"}},[271]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Endurance Charge on Melee Stun"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun"}},[272]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems have Blood Magic"}}},stats={[1]="local_display_socketed_gems_have_blood_magic"}},[273]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems have %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Gems have %1%%% reduced Mana Reservation"}}},stats={[1]="local_display_socketed_gems_have_mana_reservation_+%"}},[274]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems Reserve No Mana"}}},stats={[1]="local_display_socketed_aura_gems_reserve_no_mana"}},[275]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Skill Gems get a %1%%% Mana Multiplier"}}},stats={[1]="local_display_socketed_gems_get_mana_multplier_%"}},[276]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Melee Gems have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Melee Gems have %1%%% reduced Area of Effect"}}},stats={[1]="local_display_socketed_melee_gems_have_area_radius_+%"}},[277]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Red Gems get %1%%% Physical Damage as Extra Fire Damage"}}},stats={[1]="local_display_socketed_red_gems_have_%_of_physical_damage_to_add_as_fire"}},[278]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Skills Summon your maximum number of Totems in formation"}}},stats={[1]="local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation"}},[279]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Socketed Gems have %1%%% chance to Ignite"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Socketed Gems always Ignite"}}},stats={[1]="local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage"}},[280]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems have %1%%% chance to cause Enemies to Flee on Hit"}}},stats={[1]="local_display_socketed_gems_have_chance_to_flee_%"}},[281]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies slain by Socketed Gems drop %1%%% increased item quantity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies slain by Socketed Gems drop %1%%% reduced item quantity"}}},stats={[1]="local_display_socketed_gems_get_item_quantity_+%"}},[282]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curses in this item are reflected back to you"}}},stats={[1]="local_display_socketed_gems_get_curse_reflection"}},[283]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems have Iron Will"}}},stats={[1]="local_display_socketed_gems_have_iron_will"}},[284]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems Chain %1% additional times"}}},stats={[1]="local_display_socketed_gems_chain_X_additional_times"}},[285]={lang={English={[1]={limit={[1]={[1]=3,[2]=3}},text="Socketed Gems have +3.5%% Critical Strike Chance"},[2]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems have %1$+d%% Critical Strike Chance"}}},stats={[1]="local_display_socketed_gems_additional_critical_strike_chance_%"}},[286]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spells in this item Repeat an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spells in this item Repeat an additional %1% times"}}},stats={[1]="local_display_socketed_spells_repeat_count"}},[287]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger a Socketed Spell when you Attack with a Bow"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger a Socketed Spell when you Attack with a Bow"}}},stats={[1]="chance_to_trigger_socketed_spell_on_bow_attack_%"}},[288]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Skills deal %1%%% more Attack Damage"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Socketed Skills deal %1%%% less Attack Damage"}}},stats={[1]="local_display_socketed_attack_damage_+%_final"}},[289]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Socketed Attacks have %1$+d%% to Critical Strike Chance"}}},stats={[1]="local_display_socketed_attacks_additional_critical_strike_chance"}},[290]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Attacks have %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="local_display_socketed_attacks_critical_strike_multiplier_+"}},[291]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Attacks have %1$+d to Total Mana Cost"}}},stats={[1]="local_display_socketed_attacks_mana_cost_+"}},[292]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems have %1%%% more Attack and Cast Speed"}}},stats={[1]="local_display_socketed_gems_attack_and_cast_speed_+%_final"}},[293]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems deal %1%%% more Elemental Damage"}}},stats={[1]="local_display_socketed_gems_elemental_damage_+%_final"}},[294]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems have %1%%% reduced Mana Cost"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Gems have %1%%% increased Mana Cost"}}},stats={[1]="local_display_socketed_gems_mana_cost_-%"}},[295]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Socketed Gems deal %1% to %2% additional Fire Damage"}}},stats={[1]="local_display_socketed_gems_minimum_added_fire_damage",[2]="local_display_socketed_gems_maximum_added_fire_damage"}},[296]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems gain %1%%% of Physical Damage as extra Lightning Damage"}}},stats={[1]="local_display_socketed_gems_physical_damage_%_to_add_as_lightning"}},[297]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Movement Skills have no Mana Cost"}}},stats={[1]="local_display_socketed_movement_skills_have_no_mana_cost"}},[298]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Skills have %1%%% increased Attack Speed"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Socketed Skills have %1%%% reduced Attack Speed"}}},stats={[1]="local_display_socketed_skills_attack_speed_+%"}},[299]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Skills have %1%%% increased Cast Speed"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Socketed Skills have %1%%% reduced Cast Speed"}}},stats={[1]="local_display_socketed_skills_cast_speed_+%"}},[300]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles from Socketed Gems Fork"}}},stats={[1]="local_display_socketed_skills_fork"}},[301]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Skills deal %1%%% more Spell Damage"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Socketed Skills deal %1%%% less Spell Damage"}}},stats={[1]="local_display_socketed_spell_damage_+%_final"}},[302]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Socketed Spells have %1$+d%% to Critical Strike Chance"}}},stats={[1]="local_display_socketed_spells_additional_critical_strike_chance"}},[303]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Spells have %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="local_display_socketed_spells_critical_strike_multiplier_+"}},[304]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Spells have %1%%% increased Mana Cost"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Spells have %1%%% reduced Mana Cost"}}},stats={[1]="local_display_socketed_spells_mana_cost_+%"}},[305]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems deal %1%%% more Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Gems deal %1%%% less Damage over Time"}}},stats={[1]="local_display_socketed_gems_damage_over_time_+%_final"}},[306]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneElementalEquilibrium"},limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems have Elemental Equilibrium"}}},stats={[1]="local_display_socketed_gems_have_elemental_equilibrium"}},[307]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Non-Curse Aura Gems have %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Non-Curse Aura Gems have %1%%% reduced Aura Effect"}}},stats={[1]="local_display_socketed_non_curse_aura_gems_effect_+%"}},[308]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneElementalEquilibrium"},limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems have %1%%% increased Elemental Equilibrium effect"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextKeystoneElementalEquilibrium"},limit={[1]={[1]="#",[2]=-1}},text="Socketed Gems have %1%%% reduced Elemental Equilibrium effect"}}},stats={[1]="local_display_socketed_gems_have_elemental_equilibrium_effect_pluspercent"}},[309]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Socketed Gems fire an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems fire %1% additional Projectiles"}}},stats={[1]="local_display_socketed_gems_have_number_of_additional_projectiles"}},[310]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems fire Projectiles in a circle"}}},stats={[1]="local_display_socketed_gems_projectiles_nova"}},[311]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems have %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Gems have %1%%% reduced Skill Effect Duration"}}},stats={[1]="local_display_socketed_gems_skill_effect_duration_+%"}},[312]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSmokeCloud"},limit={[1]={[1]=1,[2]="#"}},text="Traps from Socketed Skills create a Smoke Cloud when triggered"}}},stats={[1]="local_display_socketed_trap_skills_create_smoke_cloud"}},[313]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Curse Gems have %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Curse Gems have %1%%% reduced Mana Reservation"}}},stats={[1]="local_display_socketed_curse_gems_have_mana_reservation_+%"}},[314]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Socketed Jewels"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Socketed Jewels"}}},stats={[1]="local_socketed_abyss_jewel_effect_+%"}},[315]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skills from your Helmet Penetrate 20%% Elemental Resistances"}}},stats={[1]="hierophant_helmet_supported_by_elemental_penetration"}},[316]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skills from your Gloves have 40%% increased Area of Effect"}}},stats={[1]="hierophant_gloves_supported_by_increased_area_of_effect"}},[317]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skills from your Boots Leech 2%% of Damage as Life"}}},stats={[1]="hierophant_boots_supported_by_life_leech"}},[318]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Skills in your Helm have %1$+d to maximum number of Summoned Totems"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Skills in your Helm have %1$+d to maximum number of Summoned Totems"}}},stats={[1]="scion_helmet_skill_maximum_totems_+"}},[319]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Frostblink Skill"}}},stats={[1]="local_display_grants_skill_frostblink_level"}},[320]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Purity of Fire Skill"}}},stats={[1]="local_display_grants_skill_purity_of_fire_level"}},[321]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Illusory Warp Skill"}}},stats={[1]="local_display_illusory_warp_level"}},[322]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Bear Trap Skill"}}},stats={[1]="local_display_grants_skill_bear_trap_level"}},[323]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Summon Stone Golem Skill"}}},stats={[1]="local_display_grants_level_x_summon_stone_golem"}},[324]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Vengeance Skill"}}},stats={[1]="local_display_grants_level_X_vengeance"}},[325]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Despair Skill"}}},stats={[1]="local_display_grants_level_x_despair"}},[326]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Purity of Ice Skill"}}},stats={[1]="local_display_grants_skill_purity_of_cold_level"}},[327]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Grants Level 20 Summon Bestial Rhoa Skill"},[2]={limit={[1]={[1]=2,[2]=2}},text="Grants Level 20 Summon Bestial Ursa Skill"},[3]={limit={[1]={[1]=3,[2]=3}},text="Grants Level 20 Summon Bestial Snake Skill"}}},stats={[1]="local_display_grants_summon_beast_companion"}},[328]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Purity of Lightning Skill"}}},stats={[1]="local_display_grants_skill_purity_of_lightning_level"}},[329]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Flammability Skill"}}},stats={[1]="local_display_grants_skill_flammability_level"}},[330]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Grants Summon Harbinger of the Arcane Skill"},[2]={limit={[1]={[1]=2,[2]=2}},text="Grants Summon Harbinger of Time Skill"},[3]={limit={[1]={[1]=3,[2]=3}},text="Grants Summon Harbinger of Focus Skill"},[4]={limit={[1]={[1]=4,[2]=4}},text="Grants Summon Harbinger of Directions Skill"},[5]={limit={[1]={[1]=5,[2]=5}},text="Grants Summon Harbinger of Storms Skill"},[6]={limit={[1]={[1]=6,[2]=6}},text="Grants Summon Harbinger of Brutality Skill"}}},stats={[1]="local_display_summon_harbinger_x_on_equip"}},[331]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Conductivity Skill"}}},stats={[1]="local_display_grants_skill_conductivity_level"}},[332]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Frostbite Skill"}}},stats={[1]="local_display_grants_skill_frostbite_level"}},[333]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Temporal Chains Skill"}}},stats={[1]="local_display_grants_skill_temporal_chains_level"}},[334]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Haste Skill"}}},stats={[1]="local_display_grants_skill_haste_level"}},[335]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Has an additional Implicit Mod"}}},stats={[1]="local_display_has_additional_implicit_mod"}},[336]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Clarity Skill"}}},stats={[1]="local_display_grants_skill_clarity_level"}},[337]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Vitality Skill"}}},stats={[1]="local_display_grants_skill_vitality_level"}},[338]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Purity of Elements Skill"}}},stats={[1]="local_display_grants_skill_purity_level"}},[339]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Gluttony of Elements Skill"}}},stats={[1]="local_display_grants_skill_gluttony_of_elements_level"}},[340]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Assassin's Mark Skill"}}},stats={[1]="local_display_grants_skill_critical_weakness_level"}},[341]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Wrath Skill"}}},stats={[1]="local_display_grants_skill_wrath_level"}},[342]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Hatred Skill"}}},stats={[1]="local_display_grants_skill_hatred_level"}},[343]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Anger Skill"}}},stats={[1]="local_display_grants_skill_anger_level"}},[344]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Determination Skill"}}},stats={[1]="local_display_grants_skill_determination_level"}},[345]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Grace Skill"}}},stats={[1]="local_display_grants_skill_grace_level"}},[346]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Scorching Ray Skill"}}},stats={[1]="local_display_grants_skill_scorching_ray_level"}},[347]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Discipline Skill"}}},stats={[1]="local_display_grants_skill_discipline_level"}},[348]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Envy Skill"}}},stats={[1]="local_display_grants_level_X_envy"}},[349]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Reckoning Skill"}}},stats={[1]="local_display_grants_level_X_reckoning"}},[350]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Blight Skill"}}},stats={[1]="local_display_grants_skill_blight_level"}},[351]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Projectile Weakness Skill"}}},stats={[1]="local_display_grants_skill_projectile_weakness_level"}},[352]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Elemental Weakness Skill"}}},stats={[1]="local_display_grants_skill_elemental_weakness_level"}},[353]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Doryani's Touch Skill"}}},stats={[1]="local_display_grants_skill_doryanis_touch_level"}},[354]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Vulnerability Skill"}}},stats={[1]="local_display_grants_skill_vulnerability_level"}},[355]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Death Aura Skill"}}},stats={[1]="local_display_grants_skill_death_aura_level"}},[356]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Icestorm Skill"}}},stats={[1]="local_display_grants_skill_icestorm_level"}},[357]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCreateLesserShrineCooldown"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextCreateLesserShrineCooldown"},limit={[1]={[1]="#",[2]="#"}},text="Trigger Level 1 Create Lesser Shrine when you Kill an Enemy"}}},stats={[1]="local_display_cast_level_1_summon_lesser_shrine_on_kill_%"}},[358]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Consecrate when you deal a Critical Strike"}}},stats={[1]="local_display_cast_level_X_consecrate_on_crit"}},[359]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Shock Ground when Hit"}}},stats={[1]="local_display_cast_level_x_shock_ground_when_hit"}},[360]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Petrification Statue Skill"}}},stats={[1]="local_display_grant_level_x_petrification_statue"}},[361]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Blinding Aura when Equipped"}}},stats={[1]="local_display_trigger_level_X_blinding_aura_skill_on_equip"}},[362]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants Level %1% Blood Offering Skill"}}},stats={[1]="local_display_grants_level_x_blood_offering_skill"}},[363]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Summon Doedre's Effigy Skill\nSocketed Curses are Triggered by Doedre's Effigy when Summoned\nSocketed Curses ignore Curse Limit"}}},stats={[1]="local_display_grants_level_x_curse_pillar_skill"}},[364]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Abyssal Cry Skill"}}},stats={[1]="local_display_grants_skill_abyssal_cry_level"}},[365]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Precision Skill"}}},stats={[1]="local_display_grants_skill_accuracy_crits_aura_level"}},[366]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Aspect of the Avian Skill"}}},stats={[1]="local_display_grants_skill_bird_aspect_level"}},[367]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Bone Armour Skill"}}},stats={[1]="local_display_grants_skill_bone_armour"}},[368]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Aspect of the Cat Skill"}}},stats={[1]="local_display_grants_skill_cat_aspect_level"}},[369]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Aspect of the Crab Skill"}}},stats={[1]="local_display_grants_skill_crab_aspect_level"}},[370]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Decoy Totem Skill"}}},stats={[1]="local_display_grants_skill_decoy_totem_level"}},[371]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Enduring Cry Skill"}}},stats={[1]="local_display_grants_skill_enduring_cry_level"}},[372]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Herald of Ash Skill"}}},stats={[1]="local_display_grants_skill_herald_of_ash_level"}},[373]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Herald of Ice Skill"}}},stats={[1]="local_display_grants_skill_herald_of_ice_level"}},[374]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Herald of Thunder Skill"}}},stats={[1]="local_display_grants_skill_herald_of_thunder_level"}},[375]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Intimidating Cry Skill"}}},stats={[1]="local_display_grants_skill_intimidating_cry_level"}},[376]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Lightning Warp Skill"}}},stats={[1]="local_display_grants_skill_lightning_warp_level"}},[377]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Malevolence Skill"}}},stats={[1]="local_display_grants_skill_malevolence_level"}},[378]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Pride Skill"}}},stats={[1]="local_display_grants_skill_pride_level"}},[379]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Rallying Cry Skill"}}},stats={[1]="local_display_grants_skill_rallying_cry_level"}},[380]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Smite Skill"}}},stats={[1]="local_display_grants_skill_smite_level"}},[381]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Aspect of the Spider Skill"}}},stats={[1]="local_display_grants_skill_spider_aspect_level"}},[382]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Vaal Impurity of Fire Skill"}}},stats={[1]="local_display_grants_skill_vaal_impurity_of_fire_level"}},[383]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Vaal Impurity of Ice Skill"}}},stats={[1]="local_display_grants_skill_vaal_impurity_of_ice_level"}},[384]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Vaal Impurity of Lightning Skill"}}},stats={[1]="local_display_grants_skill_vaal_impurity_of_lightning_level"}},[385]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Zealotry Skill"}}},stats={[1]="local_display_grants_skill_zealotry_level"}},[386]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Darktongue's Kiss when you Cast a Curse Skill"}}},stats={[1]="local_display_trigger_level_X_darktongue_kiss_on_curse"}},[387]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Void Gaze when you use a Skill"}}},stats={[1]="local_display_trigger_level_X_void_gaze_on_skill_use"}},[388]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Storm Cascade when you Attack"}}},stats={[1]="local_display_trigger_level_x_storm_cascade_on_attack"}},[389]={lang={English={[1]={limit={[1]={[1]=3,[2]=3}},text="Triggers Level 20 Spectral Spirits when Equipped"}}},stats={[1]="base_number_of_essence_spirits_allowed"}},[390]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Socketed Spells on Killing a Shocked Enemy"}}},stats={[1]="cast_linked_spells_on_shocked_enemy_kill_%"}},[391]={lang={English={[1]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Socketed Minion Spells on Kill with this Weapon"},[2]={limit={[1]={[1]=0,[2]=99}},text="%1%%% chance to Trigger Socketed Minion Spells on Kill with this Weapon"}}},stats={[1]="cast_socketed_minion_skills_on_bow_kill_%"}},[392]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=100,[2]="#"}},text="Trigger Socketed Spells when\nyou Spend at least %1% Mana to Use a Skill"},[2]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%2%%% chance to Trigger Socketed Spells when\nyou Spend at least %1% Mana to Use a Skill"}}},stats={[1]="cast_socketed_spells_on_X_mana_spent",[2]="cast_socketed_spells_on_mana_spent_%_chance"}},[393]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger a Socketed Bow Skill when you Attack with a Bow"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger a Socketed Bow Skill when you Attack with a Bow"}}},stats={[1]="chance_to_trigger_socketed_bow_skill_on_bow_attack_%"}},[394]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Abberath's Fury when Equipped"}}},stats={[1]="display_abberaths_hooves_skill_level"}},[395]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Fire Burst on Kill"}}},stats={[1]="display_cast_fire_burst_on_kill"}},[396]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Level 20 Arcane Wake after Spending a total of 200 Mana"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Level 20 Arcane Wake after Spending a total of 200 Mana"}}},stats={[1]="display_trigger_arcane_wake_after_spending_200_mana_%_chance"}},[397]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Bone Nova when you Kill a Bleeding Enemy"}}},stats={[1]="local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill"}},[398]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Level 20 Animate Weapon on Kill"}}},stats={[1]="local_display_cast_animate_weapon_on_kill_%_chance"}},[399]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Cold Aegis when Equipped"}}},stats={[1]="local_display_cast_cold_aegis_on_gain_skill"}},[400]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Elemental Aegis when Equipped"}}},stats={[1]="local_display_cast_elemental_aegis_on_gain_skill"}},[401]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Fire Aegis when Equipped"}}},stats={[1]="local_display_cast_fire_aegis_on_gain_skill"}},[402]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Lightning Aegis when Equipped"}}},stats={[1]="local_display_cast_lightning_aegis_on_gain_skill"}},[403]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Lightning Bolt when you deal a Critical Strike"}}},stats={[1]="local_display_cast_lightning_on_critical_strike"}},[404]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Cast Level 20 Fire Burst on Hit"}}},stats={[1]="local_display_fire_burst_on_hit_%"}},[405]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Trigger Level 16 Molten Burst on Melee Hit"}}},stats={[1]="local_display_molten_burst_on_melee_hit_%"}},[406]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Level 1 Raise Spiders on Kill"}}},stats={[1]="local_display_raise_spider_on_kill_%_chance"}},[407]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to Trigger Level 8 Summon Raging Spirit on Kill"},[2]={limit={[1]={[1]=100,[2]=100}},text="Trigger Level 8 Summon Raging Spirit on Kill"}}},stats={[1]="local_display_summon_raging_spirit_on_kill_%"}},[408]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% Chance to Trigger Level 18 Summon Spectral Wolf on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Level 18 Summon Spectral Wolf on Kill"}}},stats={[1]="local_display_summon_wolf_on_kill_%"}},[409]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Inferno on Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Inferno on Critical Strike"}}},stats={[1]="local_display_trigger_commandment_of_inferno_on_crit_%"}},[410]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Contaminate when you Kill an Enemy"}}},stats={[1]="local_display_trigger_level_x_create_fungal_ground_on_kill"}},[411]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Death Walk when Equipped"}}},stats={[1]="local_display_trigger_death_walk_on_equip_level"}},[412]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="10%% Chance to Trigger Level 18 Summon Spectral Wolf on Kill"}}},stats={[1]="local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance"}},[413]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Level 1 Blood Rage when you Kill an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Level 1 Blood Rage when you Kill an Enemy"}}},stats={[1]="local_display_trigger_level_1_blood_rage_on_kill_chance_%"}},[414]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"}}},stats={[1]="local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance"}},[415]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"}}},stats={[1]="local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance"}},[416]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill"}}},stats={[1]="local_display_trigger_level_20_shade_form_on_skill_use_%"}},[417]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight"}}},stats={[1]="local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%"}},[418]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Trigger Level %1% Feast of Flesh every 5 seconds"}}},stats={[1]="local_display_trigger_level_X_feast_of_flesh_every_5_seconds"}},[419]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Trigger Level %1% Bone Offering, Flesh Offering or Spirit Offering every 5 seconds\nOffering Skills Triggered this way also affect you"}}},stats={[1]="local_display_trigger_level_X_offering_every_5_seconds"}},[420]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Trigger Level %1% Elemental Warding when you Hit an Enemy while Cursed"}}},stats={[1]="local_display_trigger_level_x_curse_nova_on_hit_while_cursed"}},[421]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Icicle Burst when you Kill a Frozen Enemy"}}},stats={[1]="local_display_trigger_level_x_icicle_nova_on_kill_vs_frozen_enemy"}},[422]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Trigger Level %1% Intimidating Cry when you lose Cat's Stealth"}}},stats={[1]="local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth"}},[423]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Rain of Arrows when you Attack with a Bow"}}},stats={[1]="local_display_trigger_level_x_rain_of_arrows_on_bow_attack"}},[424]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Reflection when Equipped"}}},stats={[1]="local_display_trigger_level_x_reflection_skill_on_equip"}},[425]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Trigger Level %1% Fog of War when your Trap is triggered"}}},stats={[1]="local_display_trigger_level_x_smoke_cloud_on_trap_triggered"}},[426]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Spirit Burst when you Use a Skill while you have a Spirit Charge"}}},stats={[1]="local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge"}},[427]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Summon Phantasm Skill when you Consume a corpse"}}},stats={[1]="local_display_trigger_level_x_summon_phantasm_on_corpse_consume"}},[428]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Consumes a Void Charge to Trigger Level %1% Void Shot when you fire Arrows"}}},stats={[1]="local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow"}},[429]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to Trigger Socketed Curse Skill when you cast a Curse Skill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Socketed Curse Skill when you cast a Curse Skill"}}},stats={[1]="local_display_trigger_socketed_curses_on_casting_curse_%_chance"}},[430]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Level 20 Glimpse of Eternity when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Level 20 Glimpse of Eternity when Hit"}}},stats={[1]="local_display_trigger_temporal_anomaly_when_hit_%_chance"}},[431]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Level 20 Tentacle Whip on Kill"}}},stats={[1]="local_display_trigger_tentacle_smash_on_kill_%_chance"}},[432]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"}}},stats={[1]="local_display_trigger_void_sphere_on_kill_%_chance"}},[433]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Abyssal Cry on Hit"}}},stats={[1]="local_display_use_level_X_abyssal_cry_on_hit"}},[434]={lang={English={[1]={limit={[1]={[1]=100,[2]="#"}},text="Trigger a Socketed Lightning Spell on Hit\nSocketed Lightning Spells deal 100%% increased Spell Damage if Triggered"},[2]={limit={[1]={[1]=0,[2]=99}},text="%1%%% chance to Trigger a Socketed Lightning Spell on Hit\nSocketed Lightning Spells deal 100%% increased Spell Damage if Triggered"}}},stats={[1]="local_unique_attacks_cast_socketed_lightning_spells_%"}},[435]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger a Socketed Cold Spell on Melee Critical Strike"}}},stats={[1]="local_unique_cast_socketed_cold_skills_on_melee_critical_strike"}},[436]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this skill when you Kill a Frozen Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this skill when you Kill a Frozen Enemy"}}},stats={[1]="trigger_on_kill_vs_frozen_enemy_%"}},[437]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger a Socketed Spell when you Attack with this Weapon"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger a Socketed Spell when you Attack with this Weapon"}}},stats={[1]="trigger_socketed_spell_on_attack_%"}},[438]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger a Socketed Spell when you Use a Skill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger a Socketed Spell when you Use a Skill"}}},stats={[1]="trigger_socketed_spell_on_skill_use_%"}},[439]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Socketed Spells when you Focus"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Socketed Spells when you Focus"}}},stats={[1]="trigger_socketed_spells_when_you_focus_%"}},[440]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses both hand slots"}}},stats={[1]="local_weapon_uses_both_hands"}},[441]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Life Recovered"}}},stats={[1]="local_flask_life_to_recover"}},[442]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovered"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Recovered"}}},stats={[1]="local_flask_life_to_recover_+%"}},[443]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Mana Recovered"}}},stats={[1]="local_flask_mana_to_recover"}},[444]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Recovered"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Recovered"}}},stats={[1]="local_flask_mana_to_recover_+%"}},[445]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Amount Recovered"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Amount Recovered"}}},stats={[1]="local_flask_amount_to_recover_+%"}},[446]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Recovery rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Recovery rate"}}},stats={[1]="local_flask_recovery_speed_+%"}},[447]={lang={English={[1]={[1]={k="deciseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds of Recovery"}}},stats={[1]="local_flask_deciseconds_to_recover"}},[448]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Recovery when on Low Life"}}},stats={[1]="local_flask_amount_to_recover_+%_when_on_low_life"}},[449]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="Instant Recovery when on Low Life"}}},stats={[1]="local_flask_recover_instantly_when_on_low_life"}},[450]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% of Recovery applied Instantly"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Instant Recovery"}}},stats={[1]="local_flask_recovery_amount_%_to_recover_instantly"}},[451]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Mana Recovery occurs instantly at the end of the Flask effect"}}},stats={[1]="local_flask_mana_recovery_occurs_instantly_at_end_of_flask_effect"}},[452]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Instant Recovery"}}},stats={[1]="local_flask_recovers_instantly"}},[453]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes %1%%% of Mana Recovered from Life when used"}}},stats={[1]="local_flask_removes_%_of_mana_recovery_from_life_on_use"}},[454]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes %1%%% of Life Recovered from Life when used"}}},stats={[1]="local_flask_removes_%_of_life_recovery_from_life_on_use"}},[455]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes %1%%% of Life Recovered from Mana when used"}}},stats={[1]="local_flask_removes_%_of_life_recovery_from_mana_on_use"}},[456]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes Frozen and Chilled on use"}}},stats={[1]="local_flask_dispels_freeze_and_chill"}},[457]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes Burning on use"}}},stats={[1]="local_flask_dispels_burning"}},[458]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="An Enemy Writhing Worms escape the Flask when used\nWrithing Worms are destroyed when Hit"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% Enemy Writhing Worms escape the Flask when used\nWrithing Worms are destroyed when Hit"}}},stats={[1]="local_number_of_bloodworms_to_spawn_on_flask_use"}},[459]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Charges"}}},stats={[1]="local_max_charges_+%"}},[460]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Charges"}}},stats={[1]="local_extra_max_charges"}},[461]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Charge Recovery"}}},stats={[1]="local_charges_added_+%"}},[462]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Charges used"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Charges used"}}},stats={[1]="local_charges_used_+%"}},[463]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Recharges %1% Charge when you Consume an Ignited corpse"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Recharges %1% Charges when you Consume an Ignited corpse"}}},stats={[1]="local_flask_gain_X_charges_on_consuming_ignited_corpse"}},[464]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Recharges %1% Charge when you deal a Critical Strike"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Recharges %1% Charges when you deal a Critical Strike"}}},stats={[1]="local_recharge_on_crit"}},[465]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Flask Charge when you deal a Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Flask Charge when you deal a Critical Strike"}}},stats={[1]="local_recharge_on_crit_%"}},[466]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Gain %1% Charge when you are Hit by an Enemy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Gain %1% Charges when you are Hit by an Enemy"}}},stats={[1]="local_flask_gain_X_charges_when_hit"}},[467]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Recharges %1% Charge when you take a Critical Strike"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Recharges %1% Charges when you take a Critical Strike"}}},stats={[1]="local_recharge_on_take_crit"}},[468]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour during Flask effect"}}},stats={[1]="local_flask_armour_+%_while_healing"}},[469]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating during Flask effect"}}},stats={[1]="local_flask_evasion_+%_while_healing"}},[470]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield during Flask effect"}}},stats={[1]="local_flask_energy_shield_+%_while_healing"}},[471]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed during Flask effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed during Flask effect"}}},stats={[1]="local_flask_attack_speed_+%_while_healing"}},[472]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed during Flask effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed during Flask effect"}}},stats={[1]="local_flask_cast_speed_+%_while_healing"}},[473]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed during Flask effect"}}},stats={[1]="local_flask_movement_speed_+%_while_healing"}},[474]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Block and Stun Recovery during Flask effect"}}},stats={[1]="local_flask_stun_recovery_+%_while_healing"}},[475]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Elemental Resistances during Flask effect"}}},stats={[1]="local_flask_resistances_+%_while_healing"}},[476]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life during Flask effect"}}},stats={[1]="old_do_not_use_local_flask_life_leech_%_while_healing"}},[477]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Energy Shield during Flask effect"}}},stats={[1]="local_flask_energy_shield_leech_from_spell_damage_permyriad_while_healing"}},[478]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life during Flask effect"}}},stats={[1]="local_flask_life_leech_from_attack_damage_permyriad_while_healing"}},[479]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life during Flask effect"}}},stats={[1]="local_flask_life_leech_permyriad_while_healing"}},[480]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana during Flask effect"}}},stats={[1]="old_do_not_use_local_flask_mana_leech_%_while_healing"}},[481]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana during Flask effect"}}},stats={[1]="local_flask_mana_leech_permyriad_while_healing"}},[482]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Adds Knockback to Melee Attacks during Flask effect"}}},stats={[1]="local_flask_adds_knockback_while_healing"}},[483]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Cold Damage during Flask effect"}}},stats={[1]="local_unique_flask_physical_damage_taken_%_as_cold_while_healing"}},[484]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Cold Damage during effect"}}},stats={[1]="local_unique_flask_physical_damage_%_to_add_as_cold_while_healing"}},[485]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Chilled during Flask effect"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Chilled during Flask effect"}}},stats={[1]="local_unique_flask_avoid_chill_%_while_healing"}},[486]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chaos Damage does not bypass Energy Shield during effect"}}},stats={[1]="local_unique_chaos_damage_does_not_bypass_energy_shield_during_flask_effect"}},[487]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Frozen during Flask effect"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Frozen during Flask effect"}}},stats={[1]="local_unique_flask_avoid_freeze_%_while_healing"}},[488]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLastBreath"},limit={[1]={[1]="#",[2]="#"}},text="Grants Last Breath when you Use a Skill during Flask Effect, for %1%%% of Mana Cost"}}},stats={[1]="local_flask_life_gain_on_skill_use_%_mana_cost"}},[489]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Freeze, Shock and Ignite during Flask effect"}}},stats={[1]="local_flask_chance_to_freeze_shock_ignite_%_while_healing"}},[490]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Skills fire an additional Projectile during Flask Effect"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Skills fire %1% additional Projectiles during Flask Effect"}}},stats={[1]="local_flask_number_of_additional_projectiles_during_flask_effect"}},[491]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills during Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills during Flask Effect"}}},stats={[1]="local_flask_skill_mana_cost_+%_during_flask_effect"}},[492]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Freeze, Chill, Curses and Stuns during Flask Effect"}}},stats={[1]="local_unique_flask_kiaras_determination"}},[493]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Ignited by you during Flask Effect take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Ignited by you during Flask Effect take %1%%% reduced Damage"}}},stats={[1]="local_flask_enemies_ignited_during_flask_effect_damage_taken_+%"}},[494]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life when you Kill an Enemy during Flask Effect"}}},stats={[1]="local_flask_recover_%_maximum_life_on_kill_during_flask_effect"}},[495]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Mana when you Kill an Enemy during Flask Effect"}}},stats={[1]="local_flask_recover_%_maximum_mana_on_kill_during_flask_effect"}},[496]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Energy Shield when you Kill an Enemy during Flask Effect"}}},stats={[1]="local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect"}},[497]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants %1%%% of Life Recovery to Minions"}}},stats={[1]="local_flask_minion_heal_%"}},[498]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]="#",[2]="#"}},text="Gain Unholy Might during Flask Effect"}}},stats={[1]="local_flask_unholy_might_during_flask_effect"}},[499]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Prevents Death during Flask effect"}}},stats={[1]="local_flask_prevents_death_while_healing"}},[500]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Immunity to Ignite during Flask effect\nRemoves Burning on use"}}},stats={[1]="local_flask_ignite_immunity_while_healing"}},[501]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Take %1% Chaos Damage per Second during Flask effect"}}},stats={[1]="local_chaos_damage_taken_per_minute_during_flask_effect"}},[502]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Immunity to Freeze and Chill during Flask effect\nRemoves Freeze and Chill on use"}}},stats={[1]="local_flask_chill_and_freeze_immunity_while_healing"}},[503]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Immunity to Shock during Flask effect\nRemoves Shock on use"}}},stats={[1]="local_flask_shock_immunity_while_healing"}},[504]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Immunity to Bleeding during Flask effect\nRemoves Bleeding on use"}}},stats={[1]="local_flask_bleeding_immunity_while_healing"}},[505]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Immune to Curses during Flask effect\nRemoves Curses on use"}}},stats={[1]="local_flask_curse_immunity_while_healing"}},[506]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Experience gain"}}},stats={[1]="map_experience_gain_+%"}},[507]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monster Level: %1%"}}},stats={[1]="map_item_level_override"}},[508]={lang={English={[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"}},[509]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attribute Requirements"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attribute Requirements"}}},stats={[1]="local_attribute_requirements_+%"}},[510]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be used with Chaos Inoculation"}}},stats={[1]="local_cannot_be_used_with_chaos_innoculation"}},[511]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Dexterity Requirement"}}},stats={[1]="local_dexterity_requirement_+"}},[512]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dexterity Requirement"},[2]={[1]={k="negate",v=1},limit={[1]={[1]=-99,[2]=-1}},text="%1%%% reduced Dexterity Requirement"},[3]={limit={[1]={[1]="#",[2]=-100}},text="No Dexterity Requirement"}}},stats={[1]="local_dexterity_requirement_+%"}},[513]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Intelligence Requirement"}}},stats={[1]="local_intelligence_requirement_+"}},[514]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Intelligence Requirement"},[2]={[1]={k="negate",v=1},limit={[1]={[1]=-99,[2]=-1}},text="%1%%% reduced Intelligence Requirement"},[3]={limit={[1]={[1]="#",[2]=-100}},text="No Intelligence Requirement"}}},stats={[1]="local_intelligence_requirement_+%"}},[515]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d reduced Level Requirement"}}},stats={[1]="local_level_requirement_-"}},[516]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]="#"}},text="Has no Attribute Requirements"}}},stats={[1]="local_no_attribute_requirements"}},[517]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Strength and Intelligence Requirement"}}},stats={[1]="local_strength_and_intelligence_requirement_+"}},[518]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Strength Requirement"}}},stats={[1]="local_strength_requirement_+"}},[519]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Strength Requirement"},[2]={[1]={k="negate",v=1},limit={[1]={[1]=-99,[2]=-1}},text="%1%%% reduced Strength Requirement"},[3]={limit={[1]={[1]="#",[2]=-100}},text="No Strength Requirement"}}},stats={[1]="local_strength_requirement_+%"}},[520]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% Chance to Block Attack Damage"}}},stats={[1]="monster_base_block_%"}},[521]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while holding a Shield"}}},stats={[1]="shield_block_%"}},[522]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while holding a Shield"}}},stats={[1]="shield_spell_block_%"}},[523]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while Dual Wielding"}}},stats={[1]="spell_block_while_dual_wielding_%"}},[524]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while on Low Life"}}},stats={[1]="spell_block_%_while_on_low_life"}},[525]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while wielding a Bow"}}},stats={[1]="spell_block_with_bow_%"}},[526]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while wielding a Staff"}}},stats={[1]="spell_block_with_staff_%"}},[527]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while wielding a Staff"}}},stats={[1]="staff_block_%"}},[528]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage per 50 Strength"}}},stats={[1]="block_chance_%_per_50_strength"}},[529]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while wielding a Staff"}}},stats={[1]="additional_staff_block_%"}},[530]={lang={English={[1]={[1]={k="30%_of_value",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance to Block Spell Damage"}}},stats={[1]="old_do_not_use_spell_block_%_from_assumed_block_value"}},[531]={lang={English={[1]={[1]={k="30%_of_value",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% Chance to Block Spell Damage while on Low Life"}}},stats={[1]="old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value"}},[532]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chance to Block Spell Damage is equal to Chance to Block Attack Damage\nMaximum Chance to Block Spell Damage is equal to Maximum Chance to Block Attack Damage"}}},stats={[1]="spell_block_equals_attack_block"}},[533]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage"}}},stats={[1]="additional_spell_block_%"}},[534]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]=1,[2]="#"}},text="Chance to Block Spell Damage is Lucky"},[2]={[1]={k="reminderstring",v="ReminderTextUnlucky"},limit={[1]={[1]="#",[2]=-1}},text="Chance to Block Spell Damage is Unlucky"}}},stats={[1]="base_spell_block_luck"}},[535]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% Chance to Block Spell Damage"}}},stats={[1]="base_spell_block_%"}},[536]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while Dual Wielding"}}},stats={[1]="block_while_dual_wielding_%"}},[537]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while Dual Wielding Claws"}}},stats={[1]="block_while_dual_wielding_claws_%"}},[538]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while Dual Wielding or holding a Shield"}}},stats={[1]="dual_wield_or_shield_block_%"}},[539]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chance to Block Attack and Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chance to Block Attack and Spell Damage"}}},stats={[1]="block_chance_+%"}},[540]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Block Recovery"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Block Recovery"}}},stats={[1]="block_recovery_+%"}},[541]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Melee Strike Skills deal Splash Damage to surrounding targets"}}},stats={[1]="melee_splash"}},[542]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Offering Skills also affect you"}}},stats={[1]="offerings_also_buff_you"}},[543]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Offerings have %1%%% increased Effect on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Offerings have %1%%% reduced Effect on you"}}},stats={[1]="self_offering_effect_+%"}},[544]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage to surrounding targets"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage to surrounding targets"}}},stats={[1]="slayer_ascendancy_melee_splash_damage_+%_final_for_splash"}},[545]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to all Attributes"}}},stats={[1]="additional_all_attributes"}},[546]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Strength"}}},stats={[1]="additional_strength"}},[547]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Dexterity"}}},stats={[1]="additional_dexterity"}},[548]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Intelligence"}}},stats={[1]="additional_intelligence"}},[549]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Strength and Dexterity"}}},stats={[1]="additional_strength_and_dexterity"}},[550]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Strength and Intelligence"}}},stats={[1]="additional_strength_and_intelligence"}},[551]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Dexterity and Intelligence"}}},stats={[1]="additional_dexterity_and_intelligence"}},[552]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attributes"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attributes"}}},stats={[1]="all_attributes_+%"}},[553]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Strength"}}},stats={[1]="strength_+%"}},[554]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dexterity"}}},stats={[1]="dexterity_+%"}},[555]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Intelligence"}}},stats={[1]="intelligence_+%"}},[556]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage"}}},stats={[1]="damage_+%"}},[557]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Damage"}}},stats={[1]="on_weapon_global_damage_+%"}},[558]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Damage"}}},stats={[1]="totem_damage_+%"}},[559]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Damage"}}},stats={[1]="trap_damage_+%"}},[560]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Damage"}}},stats={[1]="mine_damage_+%"}},[561]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Mine Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Mine Damage"}}},stats={[1]="unique_mine_damage_+%_final"}},[562]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage"}}},stats={[1]="attack_damage_+%"}},[563]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Maximum Physical Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Maximum Physical Attack Damage"}}},stats={[1]="unique_ryuslathas_clutches_maximum_physical_attack_damage_+%_final"}},[564]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Minimum Physical Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Minimum Physical Attack Damage"}}},stats={[1]="unique_ryuslathas_clutches_minimum_physical_attack_damage_+%_final"}},[565]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Cold Damage"}}},stats={[1]="cold_attack_damage_+%"}},[566]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Fire Damage"}}},stats={[1]="fire_attack_damage_+%"}},[567]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Physical Damage"}}},stats={[1]="physical_attack_damage_+%"}},[568]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Attack Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Attack Damage while holding a Shield"}}},stats={[1]="cold_attack_damage_+%_while_holding_a_shield"}},[569]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Attack Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Attack Damage while holding a Shield"}}},stats={[1]="fire_attack_damage_+%_while_holding_a_shield"}},[570]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage while holding a Shield"}}},stats={[1]="attack_damage_+%_while_holding_a_shield"}},[571]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Attack Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Attack Damage while holding a Shield"}}},stats={[1]="physical_attack_damage_+%_while_holding_a_shield"}},[572]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage over Time"}}},stats={[1]="damage_over_time_+%"}},[573]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage over Time"}}},stats={[1]="physical_damage_over_time_+%"}},[574]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage over Time"}}},stats={[1]="fire_damage_over_time_+%"}},[575]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage over Time"}}},stats={[1]="cold_damage_over_time_+%"}},[576]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage when on Low Life"}}},stats={[1]="damage_+%_when_on_low_life"}},[577]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Curse on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Curse on you"}}},stats={[1]="damage_+%_per_active_curse_on_self"}},[578]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Leeching Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Leeching Life"}}},stats={[1]="damage_+%_while_life_leeching"}},[579]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage while Leeching Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage while Leeching Life"}}},stats={[1]="physical_damage_+%_while_life_leeching"}},[580]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Leeching Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Leeching Mana"}}},stats={[1]="damage_+%_while_mana_leeching"}},[581]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Leeching Energy Shield"}}},stats={[1]="damage_+%_while_es_leeching"}},[582]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed when on Low Life"}}},stats={[1]="attack_speed_+%_when_on_low_life"}},[583]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed when on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed when on Full Life"}}},stats={[1]="attack_speed_+%_when_on_full_life"}},[584]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage"}}},stats={[1]="spell_damage_+%"}},[585]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Fire Damage"}}},stats={[1]="spell_fire_damage_+%"}},[586]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Cold Damage"}}},stats={[1]="spell_cold_damage_+%"}},[587]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while wielding a Staff"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while wielding a Staff"}}},stats={[1]="spell_staff_damage_+%"}},[588]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while wielding a Bow"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while wielding a Bow"}}},stats={[1]="spell_bow_damage_+%"}},[589]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while holding a Shield"}}},stats={[1]="spell_damage_+%_while_holding_shield"}},[590]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while Dual Wielding"}}},stats={[1]="spell_damage_+%_while_dual_wielding"}},[591]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Physical Damage"}}},stats={[1]="physical_damage_+%"}},[592]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="No Physical Damage"},[2]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]=-1}},text="No Physical Damage"},[3]={limit={[1]={[1]="#",[2]=-100},[2]={[1]="#",[2]="#"}},text="No Physical Damage"},[4]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=0,[2]=0}},text="%1%%% increased Physical Damage"},[5]={[1]={k="negate",v=1},limit={[1]={[1]=-99,[2]=-1},[2]={[1]=0,[2]=0}},text="%1%%% reduced Physical Damage"}}},stats={[1]="local_physical_damage_+%",[2]="local_weapon_no_physical_damage"}},[593]={lang={English={[1]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextPhysReductionNotNegative"},limit={[1]={[1]="#",[2]="#"}},text="Enemies have %1$+d%% to Total Physical Damage Reduction against this Weapon's Hits"}}},stats={[1]="local_weapon_enemy_phys_reduction_%_penalty"}},[594]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage"}}},stats={[1]="melee_damage_+%"}},[595]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage against Frozen Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage against Frozen Enemies"}}},stats={[1]="melee_damage_+%_vs_frozen_enemies"}},[596]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Frozen Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Frozen Enemies"}}},stats={[1]="damage_+%_vs_frozen_enemies"}},[597]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage against Shocked Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage against Shocked Enemies"}}},stats={[1]="melee_damage_+%_vs_shocked_enemies"}},[598]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Shocked Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Shocked Enemies"}}},stats={[1]="damage_vs_shocked_enemies_+%"}},[599]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage against Ignited Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage against Ignited Enemies"}}},stats={[1]="melee_damage_+%_vs_burning_enemies"}},[600]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments per Freeze, Shock and Ignite on Enemy"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments per Freeze, Shock and Ignite on Enemy"}}},stats={[1]="damage_+%_vs_enemies_per_freeze_shock_ignite"}},[601]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Frozen, Shocked or Ignited Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Frozen, Shocked or Ignited Enemies"}}},stats={[1]="damage_+%_vs_frozen_shocked_ignited_enemies"}},[602]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier"}}},stats={[1]="dot_multiplier_+"}},[603]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Ailments"}}},stats={[1]="ailment_dot_multiplier_+"}},[604]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Ailments from Critical Strikes"}}},stats={[1]="critical_ailment_dot_multiplier_+"}},[605]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Physical Damage over Time Multiplier"}}},stats={[1]="physical_dot_multiplier_+"}},[606]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Bleeding"}}},stats={[1]="bleeding_dot_multiplier_+"}},[607]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Bleeding from Critical Strikes"}}},stats={[1]="critical_bleeding_dot_multiplier_+"}},[608]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Fire Damage over Time Multiplier"}}},stats={[1]="fire_dot_multiplier_+"}},[609]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Ignite from Critical Strikes"}}},stats={[1]="critical_ignite_dot_multiplier_+"}},[610]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Ignite"}}},stats={[1]="ignite_dot_multiplier_+"}},[611]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold Damage over Time Multiplier while affected by Malevolence"}}},stats={[1]="cold_damage_over_time_multiplier_+_while_affected_by_malevolence"}},[612]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold Damage over Time Multiplier"}}},stats={[1]="cold_dot_multiplier_+"}},[613]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Lightning Damage over Time Multiplier"}}},stats={[1]="lightning_dot_multiplier_+"}},[614]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Damage over Time Multiplier while affected by Malevolence"}}},stats={[1]="chaos_damage_over_time_multiplier_+_while_affected_by_malevolence"}},[615]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Damage over Time Multiplier"}}},stats={[1]="chaos_dot_multiplier_+"}},[616]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Non-Ailment Chaos Damage over Time Multiplier"}}},stats={[1]="chaos_non_ailment_damage_over_time_multiplier_+"}},[617]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Poison from Critical Strikes"}}},stats={[1]="critical_poison_dot_multiplier_+"}},[618]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Poison"}}},stats={[1]="poison_dot_multiplier_+"}},[619]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage"}}},stats={[1]="global_minimum_added_physical_damage",[2]="global_maximum_added_physical_damage"}},[620]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks"}}},stats={[1]="attack_minimum_added_physical_damage",[2]="attack_maximum_added_physical_damage"}},[621]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks with Weapons"}}},stats={[1]="attack_minimum_added_physical_damage_with_weapons",[2]="attack_maximum_added_physical_damage_with_weapons"}},[622]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks with this Weapon per 3 Player Levels"}}},stats={[1]="local_attack_minimum_added_physical_damage_per_3_levels",[2]="local_attack_maximum_added_physical_damage_per_3_levels"}},[623]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks against Frozen Enemies"}}},stats={[1]="minimum_added_physical_damage_vs_frozen_enemies",[2]="maximum_added_physical_damage_vs_frozen_enemies"}},[624]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Attacks against Ignited Enemies"}}},stats={[1]="minimum_added_fire_damage_vs_ignited_enemies",[2]="maximum_added_fire_damage_vs_ignited_enemies"}},[625]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Attack Damage per Buff on you"}}},stats={[1]="minimum_added_fire_attack_damage_per_active_buff",[2]="maximum_added_fire_attack_damage_per_active_buff"}},[626]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Spell Damage per Buff on you"}}},stats={[1]="minimum_added_fire_spell_damage_per_active_buff",[2]="maximum_added_fire_spell_damage_per_active_buff"}},[627]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage per Buff on you"}}},stats={[1]="minimum_added_fire_damage_per_active_buff",[2]="maximum_added_fire_damage_per_active_buff"}},[628]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage"}}},stats={[1]="local_minimum_added_physical_damage",[2]="local_maximum_added_physical_damage"}},[629]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Weapon Damage while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Weapon Damage while Dual Wielding"}}},stats={[1]="damage_while_dual_wielding_+%"}},[630]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Weapon Damage while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Weapon Damage while Dual Wielding"}}},stats={[1]="physical_damage_while_dual_wielding_+%"}},[631]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Weapon Damage while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Weapon Damage while Dual Wielding"}}},stats={[1]="fire_damage_while_dual_wielding_+%"}},[632]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Weapon Cold Damage while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Weapon Cold Damage while Dual Wielding"}}},stats={[1]="cold_damage_while_dual_wielding_+%"}},[633]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage with Main Hand"}}},stats={[1]="base_main_hand_damage_+%"}},[634]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with One Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with One Handed Melee Weapons"}}},stats={[1]="one_handed_melee_physical_damage_+%"}},[635]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with One Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with One Handed Melee Weapons"}}},stats={[1]="one_handed_melee_fire_damage_+%"}},[636]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with One Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with One Handed Melee Weapons"}}},stats={[1]="one_handed_melee_cold_damage_+%"}},[637]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Two Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Two Handed Melee Weapons"}}},stats={[1]="two_handed_melee_physical_damage_+%"}},[638]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Two Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Two Handed Melee Weapons"}}},stats={[1]="two_handed_melee_fire_damage_+%"}},[639]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Two Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Two Handed Melee Weapons"}}},stats={[1]="two_handed_melee_cold_damage_+%"}},[640]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage with Unarmed Attacks"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage with Unarmed Attacks"}}},stats={[1]="unarmed_melee_physical_damage_+%"}},[641]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Axes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Axes"}}},stats={[1]="axe_damage_+%"}},[642]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Axes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Axes"}}},stats={[1]="physical_axe_damage_+%"}},[643]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Axes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Axes"}}},stats={[1]="fire_axe_damage_+%"}},[644]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Axes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Axes"}}},stats={[1]="cold_axe_damage_+%"}},[645]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Staves"}}},stats={[1]="physical_staff_damage_+%"}},[646]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Staves"}}},stats={[1]="staff_damage_+%"}},[647]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Staves"}}},stats={[1]="fire_staff_damage_+%"}},[648]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Staves"}}},stats={[1]="cold_staff_damage_+%"}},[649]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Claws"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Claws"}}},stats={[1]="claw_damage_+%"}},[650]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Claws"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Claws"}}},stats={[1]="physical_claw_damage_+%"}},[651]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Claws"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Claws"}}},stats={[1]="fire_claw_damage_+%"}},[652]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Claws"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Claws"}}},stats={[1]="cold_claw_damage_+%"}},[653]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Daggers"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Daggers"}}},stats={[1]="dagger_damage_+%"}},[654]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Daggers"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Daggers"}}},stats={[1]="physical_dagger_damage_+%"}},[655]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Daggers"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Daggers"}}},stats={[1]="fire_dagger_damage_+%"}},[656]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Daggers"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Daggers"}}},stats={[1]="cold_dagger_damage_+%"}},[657]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Maces and Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Maces and Sceptres"}}},stats={[1]="mace_damage_+%"}},[658]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Maces and Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Maces and Sceptres"}}},stats={[1]="physical_mace_damage_+%"}},[659]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Maces and Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Maces and Sceptres"}}},stats={[1]="fire_mace_damage_+%"}},[660]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Maces and Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Maces and Sceptres"}}},stats={[1]="cold_mace_damage_+%"}},[661]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Bows"}}},stats={[1]="physical_bow_damage_+%"}},[662]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Bows"}}},stats={[1]="fire_bow_damage_+%"}},[663]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Bows"}}},stats={[1]="cold_bow_damage_+%"}},[664]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Bows"}}},stats={[1]="bow_damage_+%"}},[665]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Bows"}}},stats={[1]="bow_elemental_damage_+%"}},[666]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Swords"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Swords"}}},stats={[1]="physical_sword_damage_+%"}},[667]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Swords"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Swords"}}},stats={[1]="sword_damage_+%"}},[668]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Swords"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Swords"}}},stats={[1]="fire_sword_damage_+%"}},[669]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Swords"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Swords"}}},stats={[1]="cold_sword_damage_+%"}},[670]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Wands"}}},stats={[1]="physical_wand_damage_+%"}},[671]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Wands"}}},stats={[1]="fire_wand_damage_+%"}},[672]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Wands"}}},stats={[1]="cold_wand_damage_+%"}},[673]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Weapons"}}},stats={[1]="weapon_elemental_damage_+%"}},[674]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage"}}},stats={[1]="fire_damage_+%"}},[675]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage"}}},stats={[1]="global_minimum_added_fire_damage",[2]="global_maximum_added_fire_damage"}},[676]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Attacks"}}},stats={[1]="attack_minimum_added_fire_damage",[2]="attack_maximum_added_fire_damage"}},[677]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage"}}},stats={[1]="local_minimum_added_fire_damage",[2]="local_maximum_added_fire_damage"}},[678]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage in Main Hand"}}},stats={[1]="unique_local_minimum_added_fire_damage_when_in_main_hand",[2]="unique_local_maximum_added_fire_damage_when_in_main_hand"}},[679]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Fire Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Fire Skills"}}},stats={[1]="damage_with_fire_skills_+%"}},[680]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed with Fire Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed with Fire Skills"}}},stats={[1]="cast_speed_for_fire_skills_+%"}},[681]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage"}}},stats={[1]="cold_damage_+%"}},[682]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage"}}},stats={[1]="global_minimum_added_cold_damage",[2]="global_maximum_added_cold_damage"}},[683]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Attacks"}}},stats={[1]="attack_minimum_added_cold_damage",[2]="attack_maximum_added_cold_damage"}},[684]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage"}}},stats={[1]="local_minimum_added_cold_damage",[2]="local_maximum_added_cold_damage"}},[685]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage in Off Hand"}}},stats={[1]="unique_local_minimum_added_cold_damage_when_in_off_hand",[2]="unique_local_maximum_added_cold_damage_when_in_off_hand"}},[686]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Spells and Attacks"}}},stats={[1]="spell_and_attack_minimum_added_fire_damage",[2]="spell_and_attack_maximum_added_fire_damage"}},[687]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells and Attacks"}}},stats={[1]="spell_and_attack_minimum_added_cold_damage",[2]="spell_and_attack_maximum_added_cold_damage"}},[688]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Cold Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Cold Skills"}}},stats={[1]="damage_with_cold_skills_+%"}},[689]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed with Cold Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed with Cold Skills"}}},stats={[1]="cast_speed_for_cold_skills_+%"}},[690]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage"}}},stats={[1]="lightning_damage_+%"}},[691]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage"}}},stats={[1]="global_minimum_added_lightning_damage",[2]="global_maximum_added_lightning_damage"}},[692]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage",[2]="attack_maximum_added_lightning_damage"}},[693]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage"}}},stats={[1]="local_minimum_added_lightning_damage",[2]="local_maximum_added_lightning_damage"}},[694]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Lightning Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Lightning Skills"}}},stats={[1]="damage_with_lightning_skills_+%"}},[695]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed with Lightning Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed with Lightning Skills"}}},stats={[1]="cast_speed_for_lightning_skills_+%"}},[696]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage"}}},stats={[1]="chaos_damage_+%"}},[697]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage"}}},stats={[1]="global_minimum_added_chaos_damage",[2]="global_maximum_added_chaos_damage"}},[698]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage to Attacks"}}},stats={[1]="attack_minimum_added_chaos_damage",[2]="attack_maximum_added_chaos_damage"}},[699]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage"}}},stats={[1]="local_minimum_added_chaos_damage",[2]="local_maximum_added_chaos_damage"}},[700]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage in Off Hand"}}},stats={[1]="unique_local_minimum_added_chaos_damage_when_in_off_hand",[2]="unique_local_maximum_added_chaos_damage_when_in_off_hand"}},[701]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed with Chaos Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed with Chaos Skills"}}},stats={[1]="cast_speed_for_chaos_skills_+%"}},[702]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Physical Damage"}}},stats={[1]="spell_minimum_base_physical_damage",[2]="spell_maximum_base_physical_damage"}},[703]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0}},text="Deals %1% to %2% Fire Damage"},[2]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]="#"}},text="This Spell deals %1% to %2%, plus %3%%% of your maximum Life, as base Fire Damage"}}},stats={[1]="spell_minimum_base_fire_damage",[2]="spell_maximum_base_fire_damage",[3]="spell_base_fire_damage_%_maximum_life"}},[704]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Cold Damage"}}},stats={[1]="spell_minimum_base_cold_damage",[2]="spell_maximum_base_cold_damage"}},[705]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Lightning Damage"}}},stats={[1]="spell_minimum_base_lightning_damage",[2]="spell_maximum_base_lightning_damage"}},[706]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Chaos Damage"}}},stats={[1]="spell_minimum_base_chaos_damage",[2]="spell_maximum_base_chaos_damage"}},[707]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Physical Damage"}}},stats={[1]="secondary_minimum_base_physical_damage",[2]="secondary_maximum_base_physical_damage"}},[708]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Fire Damage"}}},stats={[1]="secondary_minimum_base_fire_damage",[2]="secondary_maximum_base_fire_damage"}},[709]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Cold Damage"}}},stats={[1]="secondary_minimum_base_cold_damage",[2]="secondary_maximum_base_cold_damage"}},[710]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Lightning Damage"}}},stats={[1]="secondary_minimum_base_lightning_damage",[2]="secondary_maximum_base_lightning_damage"}},[711]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Chaos Damage"}}},stats={[1]="secondary_minimum_base_chaos_damage",[2]="secondary_maximum_base_chaos_damage"}},[712]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Spells"}}},stats={[1]="spell_minimum_added_physical_damage",[2]="spell_maximum_added_physical_damage"}},[713]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Spells"}}},stats={[1]="spell_minimum_added_fire_damage",[2]="spell_maximum_added_fire_damage"}},[714]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells"}}},stats={[1]="spell_minimum_added_cold_damage",[2]="spell_maximum_added_cold_damage"}},[715]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells"}}},stats={[1]="spell_minimum_added_lightning_damage",[2]="spell_maximum_added_lightning_damage"}},[716]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage to Spells"}}},stats={[1]="spell_minimum_added_chaos_damage",[2]="spell_maximum_added_chaos_damage"}},[717]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Cold Damage per 10 Intelligence"}}},stats={[1]="spell_minimum_base_cold_damage_+_per_10_intelligence",[2]="spell_maximum_base_cold_damage_+_per_10_intelligence"}},[718]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells and Attacks"}}},stats={[1]="spell_and_attack_minimum_added_lightning_damage",[2]="spell_and_attack_maximum_added_lightning_damage"}},[719]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed"}}},stats={[1]="attack_speed_+%"}},[720]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed"}}},stats={[1]="active_skill_attack_speed_+%_final"}},[721]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed"}}},stats={[1]="flicker_strike_more_attack_speed_+%_final"}},[722]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed"}}},stats={[1]="local_attack_speed_+%"}},[723]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Attack Speed"}}},stats={[1]="melee_attack_speed_+%"}},[724]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while Dual Wielding"}}},stats={[1]="attack_speed_while_dual_wielding_+%"}},[725]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Off Hand"}}},stats={[1]="base_off_hand_attack_speed_+%"}},[726]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while holding a Shield"}}},stats={[1]="attack_speed_+%_while_holding_shield"}},[727]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Two Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Two Handed Melee Weapons"}}},stats={[1]="two_handed_melee_attack_speed_+%"}},[728]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with One Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with One Handed Melee Weapons"}}},stats={[1]="one_handed_melee_attack_speed_+%"}},[729]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Axes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Axes"}}},stats={[1]="axe_attack_speed_+%"}},[730]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Staves"}}},stats={[1]="staff_attack_speed_+%"}},[731]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Claws"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Claws"}}},stats={[1]="claw_attack_speed_+%"}},[732]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Daggers"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Daggers"}}},stats={[1]="dagger_attack_speed_+%"}},[733]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Maces and Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Maces and Sceptres"}}},stats={[1]="mace_attack_speed_+%"}},[734]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Bows"}}},stats={[1]="bow_attack_speed_+%"}},[735]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Swords"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Swords"}}},stats={[1]="sword_attack_speed_+%"}},[736]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Wands"}}},stats={[1]="wand_attack_speed_+%"}},[737]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while holding a Shield"}}},stats={[1]="shield_attack_speed_+%"}},[738]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmed"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Unarmed Attacks"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUnarmed"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Unarmed Attacks"}}},stats={[1]="unarmed_melee_attack_speed_+%"}},[739]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed Enemies grant %1%%% increased Attack Speed on Melee hit"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed Enemies grant %1%%% reduced Attack Speed on Melee hit"}}},stats={[1]="newpunishment_attack_speed_+%"}},[740]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Movement Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Movement Skills"}}},stats={[1]="damage_+%_with_movement_skills"}},[741]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Movement Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Movement Skills"}}},stats={[1]="attack_speed_+%_with_movement_skills"}},[742]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating"}}},stats={[1]="accuracy_rating"}},[743]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Accuracy Rating"}}},stats={[1]="accuracy_rating_+%"}},[744]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating while Dual Wielding"}}},stats={[1]="accuracy_rating_while_dual_wielding_+%"}},[745]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with One Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with One Handed Melee Weapons"}}},stats={[1]="one_handed_melee_accuracy_rating_+%"}},[746]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Two Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Two Handed Melee Weapons"}}},stats={[1]="two_handed_melee_accuracy_rating_+%"}},[747]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Axes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Axes"}}},stats={[1]="axe_accuracy_rating_+%"}},[748]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Staves"}}},stats={[1]="staff_accuracy_rating_+%"}},[749]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Claws"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Claws"}}},stats={[1]="claw_accuracy_rating_+%"}},[750]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Daggers"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Daggers"}}},stats={[1]="dagger_accuracy_rating_+%"}},[751]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Maces and Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Maces and Sceptres"}}},stats={[1]="mace_accuracy_rating_+%"}},[752]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Bows"}}},stats={[1]="bow_accuracy_rating_+%"}},[753]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Swords"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Swords"}}},stats={[1]="sword_accuracy_rating_+%"}},[754]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Wands"}}},stats={[1]="wand_accuracy_rating_+%"}},[755]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed"}}},stats={[1]="base_cast_speed_+%"}},[756]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed while Dual Wielding"}}},stats={[1]="cast_speed_while_dual_wielding_+%"}},[757]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed while holding a Shield"}}},stats={[1]="cast_speed_+%_while_holding_shield"}},[758]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed while wielding a Staff"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed while wielding a Staff"}}},stats={[1]="cast_speed_+%_while_holding_staff"}},[759]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed while wielding a Bow"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed while wielding a Bow"}}},stats={[1]="cast_speed_+%_while_holding_bow"}},[760]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed per Power Charge"}}},stats={[1]="cast_speed_+%_per_power_charge"}},[761]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="Critical Strikes with Daggers Poison the Enemy"}}},stats={[1]="poison_on_critical_strike_with_dagger"}},[762]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Critical Strikes with Bows have a %1%%% chance to Poison the Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Critical Strikes with Bows Poison the Enemy"}}},stats={[1]="chance_to_poison_on_critical_strike_with_bow_%"}},[763]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]=99}},text="Critical Strikes with Daggers have a %1%%% chance to Poison the Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=100,[2]="#"}},text="Critical Strikes with Daggers Poison the Enemy"}}},stats={[1]="chance_to_poison_on_critical_strike_with_dagger_%"}},[764]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]="#"}},text="Critical Strikes with Bows Poison the Enemy"}}},stats={[1]="poison_on_critical_strike_with_bow"}},[765]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% Critical Strike Chance"}}},stats={[1]="base_spell_critical_strike_chance"}},[766]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Base Off Hand Critical Strike Chance is %1%%%"}}},stats={[1]="override_off_hand_base_critical_strike_chance"}},[767]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Base Off Hand Critical Strike Chance is 5%%"}}},stats={[1]="override_off_hand_base_critical_strike_chance_to_5%"}},[768]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance"}}},stats={[1]="additional_base_critical_strike_chance"}},[769]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Spells"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Spells"}}},stats={[1]="spell_critical_strike_chance_+%"}},[770]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Critical Strike Chance"}}},stats={[1]="critical_strike_chance_+%"}},[771]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="30%% increased Global Critical Strike Chance"}}},stats={[1]="old_dagger_implicit_critical_strike_chance_+30%"}},[772]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="40%% increased Global Critical Strike Chance"}}},stats={[1]="old_dagger_implicit_critical_strike_chance_+40%"}},[773]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="50%% increased Global Critical Strike Chance"}}},stats={[1]="old_dagger_implicit_critical_strike_chance_+50%"}},[774]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance"}}},stats={[1]="local_critical_strike_chance_+%"}},[775]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Bows"}}},stats={[1]="bow_critical_strike_chance_+%"}},[776]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Claws"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Claws"}}},stats={[1]="claw_critical_strike_chance_+%"}},[777]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Daggers"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Daggers"}}},stats={[1]="dagger_critical_strike_chance_+%"}},[778]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Swords"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Swords"}}},stats={[1]="sword_critical_strike_chance_+%"}},[779]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Maces and Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Maces and Sceptres"}}},stats={[1]="mace_critical_strike_chance_+%"}},[780]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Staves"}}},stats={[1]="staff_critical_strike_chance_+%"}},[781]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Wands"}}},stats={[1]="wand_critical_strike_chance_+%"}},[782]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Axes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Axes"}}},stats={[1]="axe_critical_strike_chance_+%"}},[783]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance while holding a Shield"}}},stats={[1]="critical_strike_chance_while_wielding_shield_+%"}},[784]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Traps"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Traps"}}},stats={[1]="trap_critical_strike_chance_+%"}},[785]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Mines"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Mines"}}},stats={[1]="mine_critical_strike_chance_+%"}},[786]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Two Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Two Handed Melee Weapons"}}},stats={[1]="two_handed_melee_critical_strike_chance_+%"}},[787]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Two Handed Melee Weapons"}}},stats={[1]="two_handed_melee_critical_strike_multiplier_+"}},[788]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with One Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with One Handed Melee Weapons"}}},stats={[1]="one_handed_melee_critical_strike_chance_+%"}},[789]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Critical Strike Chance"}}},stats={[1]="melee_critical_strike_chance_+%"}},[790]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Weapon Critical Strike Chance while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Weapon Critical Strike Chance while Dual Wielding"}}},stats={[1]="critical_strike_chance_while_dual_wielding_+%"}},[791]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Fire Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Fire Skills"}}},stats={[1]="fire_critical_strike_chance_+%"}},[792]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Lightning Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Lightning Skills"}}},stats={[1]="lightning_critical_strike_chance_+%"}},[793]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Cold Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Cold Skills"}}},stats={[1]="cold_critical_strike_chance_+%"}},[794]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Elemental Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Elemental Skills"}}},stats={[1]="elemental_critical_strike_chance_+%"}},[795]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Chaos Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Chaos Skills"}}},stats={[1]="chaos_critical_strike_chance_+%"}},[796]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Totem Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Totem Skills"}}},stats={[1]="totem_critical_strike_chance_+%"}},[797]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=4000,[2]=4000}},text="100%% increased Global Critical Strike Chance if you've Summoned a Totem Recently"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="100%% increased Global Critical Strike Chance if you've Summoned a Totem in the past %1% seconds"}}},stats={[1]="increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem"}},[798]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Global Critical Strike Multiplier"}}},stats={[1]="base_critical_strike_multiplier_+"}},[799]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier"}}},stats={[1]="local_critical_strike_multiplier_+"}},[800]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for Spells"}}},stats={[1]="spell_critical_strike_multiplier_+"}},[801]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for Spells"}}},stats={[1]="base_spell_critical_strike_multiplier_+"}},[802]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Daggers"}}},stats={[1]="critical_strike_multiplier_with_dagger_+"}},[803]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Maces and Sceptres"}}},stats={[1]="mace_critical_strike_multiplier_+"}},[804]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Axes"}}},stats={[1]="axe_critical_strike_multiplier_+"}},[805]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Bows"}}},stats={[1]="bow_critical_strike_multiplier_+"}},[806]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Swords"}}},stats={[1]="sword_critical_strike_multiplier_+"}},[807]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Wands"}}},stats={[1]="wand_critical_strike_multiplier_+"}},[808]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Claws"}}},stats={[1]="claw_critical_strike_multiplier_+"}},[809]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Staves"}}},stats={[1]="staff_critical_strike_multiplier_+"}},[810]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with One Handed Melee Weapons"}}},stats={[1]="one_handed_melee_critical_strike_multiplier_+"}},[811]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Melee Critical Strike Multiplier"}}},stats={[1]="melee_weapon_critical_strike_multiplier_+"}},[812]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Weapon Critical Strike Multiplier while Dual Wielding"}}},stats={[1]="critical_strike_multiplier_while_dual_wielding_+"}},[813]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Melee Critical Strike Multiplier while holding a Shield"}}},stats={[1]="melee_critical_strike_multiplier_+_while_wielding_shield"}},[814]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Traps"}}},stats={[1]="trap_critical_strike_multiplier_+"}},[815]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Mines"}}},stats={[1]="mine_critical_strike_multiplier_+"}},[816]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Fire Skills"}}},stats={[1]="fire_critical_strike_multiplier_+"}},[817]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Lightning Skills"}}},stats={[1]="lightning_critical_strike_multiplier_+"}},[818]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Cold Skills"}}},stats={[1]="cold_critical_strike_multiplier_+"}},[819]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Elemental Skills"}}},stats={[1]="elemental_critical_strike_multiplier_+"}},[820]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Chaos Skills"}}},stats={[1]="chaos_critical_strike_multiplier_+"}},[821]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% reduced Extra Damage from Critical Strikes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You take %1%%% increased Extra Damage from Critical Strikes"}}},stats={[1]="base_self_critical_strike_multiplier_-%"}},[822]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% reduced Extra Damage from Critical Strikes per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You take %1%%% increased Extra Damage from Critical Strikes per Endurance Charge"}}},stats={[1]="self_critical_strike_multiplier_-%_per_endurance_charge"}},[823]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Critical Strikes do not deal extra Damage"}}},stats={[1]="critical_strike_multiplier_is_100"}},[824]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Totem Skills"}}},stats={[1]="totem_critical_strike_multiplier_+"}},[825]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Stun Threshold"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Enemy Stun Threshold"}}},stats={[1]="base_stun_threshold_reduction_+%"}},[826]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Stun Threshold with Maces and Sceptres"}}},stats={[1]="while_using_mace_stun_threshold_reduction_+%"}},[827]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Stun Threshold with Bows"}}},stats={[1]="bow_stun_threshold_reduction_+%"}},[828]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Enemies Back on Hit"}}},stats={[1]="global_knockback"}},[829]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot be Knocked Back"}}},stats={[1]="cannot_be_knocked_back"}},[830]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Knocked Back"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Knocked Back"}}},stats={[1]="avoid_knockback_%"}},[831]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Enemies Back when Hit by a Bow"}}},stats={[1]="knockback_with_bow"}},[832]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Enemies Back when Hit by a Staff"}}},stats={[1]="knockback_with_staff"}},[833]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Enemies Back when Hit by a Wand"}}},stats={[1]="knockback_with_wand"}},[834]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Enemies Back on Hit"}}},stats={[1]="local_knockback"}},[835]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Armour"}}},stats={[1]="maximum_physical_damage_reduction_%"}},[836]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour"}}},stats={[1]="base_physical_damage_reduction_rating"}},[837]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour"}}},stats={[1]="local_base_physical_damage_reduction_rating"}},[838]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour"}}},stats={[1]="physical_damage_reduction_rating_+%"}},[839]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour"}}},stats={[1]="local_physical_damage_reduction_rating_+%"}},[840]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating and Armour"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion Rating and Armour"}}},stats={[1]="evasion_and_physical_damage_reduction_rating_+%"}},[841]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour while you have Fortify"}}},stats={[1]="physical_damage_reduction_rating_+%_while_fortify_is_active"}},[842]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating"}}},stats={[1]="base_evasion_rating"}},[843]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating while on Low Life"}}},stats={[1]="evasion_rating_+_when_on_low_life"}},[844]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating while on Full Life"}}},stats={[1]="evasion_rating_+_when_on_full_life"}},[845]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating per 1 Maximum Energy Shield on Helmet"}}},stats={[1]="evasion_rating_+_per_1_helmet_energy_shield"}},[846]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating"}}},stats={[1]="local_base_evasion_rating"}},[847]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion Rating"}}},stats={[1]="evasion_rating_+%"}},[848]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion Rating"}}},stats={[1]="local_evasion_rating_+%"}},[849]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating during Onslaught"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion Rating during Onslaught"}}},stats={[1]="evasion_rating_+%_while_onslaught_is_active"}},[850]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour and Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour and Energy Shield"}}},stats={[1]="local_armour_and_energy_shield_+%"}},[851]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour and Evasion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour and Evasion"}}},stats={[1]="local_armour_and_evasion_+%"}},[852]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion and Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion and Energy Shield"}}},stats={[1]="local_evasion_and_energy_shield_+%"}},[853]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour, Evasion and Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour, Evasion and Energy Shield"}}},stats={[1]="local_armour_and_evasion_and_energy_shield_+%"}},[854]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion Rating per Frenzy Charge"}}},stats={[1]="evasion_rating_+%_per_frenzy_charge"}},[855]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Energy Shield"}}},stats={[1]="base_maximum_energy_shield"}},[856]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Energy Shield"}}},stats={[1]="local_energy_shield"}},[857]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield"}}},stats={[1]="local_energy_shield_+%"}},[858]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased maximum Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced maximum Energy Shield"}}},stats={[1]="maximum_energy_shield_+%"}},[859]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% faster start of Energy Shield Recharge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% slower start of Energy Shield Recharge"}}},stats={[1]="energy_shield_delay_-%"}},[860]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Energy Shield Recharge not delayed by Damage"}}},stats={[1]="energy_shield_recharge_not_delayed_by_damage"}},[861]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Energy Shield Recharged per second"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% of Energy Shield Lost per minute"}}},stats={[1]="energy_shield_recharge_rate_per_minute_%"}},[862]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Recharge Rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Recharge Rate"}}},stats={[1]="energy_shield_recharge_rate_+%"}},[863]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Energy Shield per 100 Reserved Life"}}},stats={[1]="maximum_energy_shield_+_per_100_life_reserved"}},[864]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Energy Shield per 6 Evasion Rating on Body Armour"}}},stats={[1]="maximum_energy_shield_+_per_6_body_armour_evasion_rating"}},[865]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Life"}}},stats={[1]="base_maximum_life"}},[866]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased maximum Life, Mana and Global Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced maximum Life, Mana and Global Energy Shield"}}},stats={[1]="maximum_life_mana_and_energy_shield_+%"}},[867]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced maximum Life"}}},stats={[1]="maximum_life_+%"}},[868]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less maximum Life"}}},stats={[1]="monster_life_+%_final_from_rarity"}},[869]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less maximum Life"}}},stats={[1]="monster_life_+%_final_from_map"}},[870]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second"}}},stats={[1]="base_life_regeneration_rate_per_minute"}},[871]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second per Endurance Charge"}}},stats={[1]="life_regeneration_rate_per_minute_%_per_endurance_charge"}},[872]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Mana"}}},stats={[1]="base_maximum_mana"}},[873]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased maximum Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced maximum Mana"}}},stats={[1]="maximum_mana_+%"}},[874]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Mana per second"}}},stats={[1]="mana_regeneration_rate_per_minute_%"}},[875]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Mana per second"}}},stats={[1]="base_mana_regeneration_rate_per_minute"}},[876]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate"}}},stats={[1]="mana_regeneration_rate_+%"}},[877]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Mana per second per Power Charge"}}},stats={[1]="mana_regeneration_rate_per_minute_%_per_power_charge"}},[878]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot be Damaged"}}},stats={[1]="cannot_be_damaged"}},[879]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items found"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items found"}}},stats={[1]="item_found_quantity_+%"}},[880]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items found"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items found"}}},stats={[1]="base_item_found_quantity_+%"}},[881]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items found when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items found when on Low Life"}}},stats={[1]="item_found_quantity_+%_when_on_low_life"}},[882]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Found from Chests"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Found from Chests"}}},stats={[1]="chest_item_quantity_+%"}},[883]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items found"}}},stats={[1]="item_found_rarity_+%"}},[884]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items found"}}},stats={[1]="base_item_found_rarity_+%"}},[885]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Allies have %1%%% increased Item Rarity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nearby Allies have %1%%% reduced Item Rarity"}}},stats={[1]="local_display_aura_allies_have_increased_item_rarity_+%"}},[886]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items found when on Low Life"}}},stats={[1]="item_found_rarity_+%_when_on_low_life"}},[887]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Found from Chests"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Found from Chests"}}},stats={[1]="chest_item_rarity_+%"}},[888]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quality of Items Found"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quality of Items Found"}}},stats={[1]="item_found_quality_+%"}},[889]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Relevancy of Items Found"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Relevancy of Items Found"}}},stats={[1]="item_found_relevancy_+%"}},[890]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Experience gain"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Experience gain"}}},stats={[1]="experience_gain_+%"}},[891]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Experience loss on Death"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Experience loss on Death"}}},stats={[1]="experience_loss_on_death_-%"}},[892]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can't use other Rings"}}},stats={[1]="local_ring_disable_other_ring"}},[893]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Fire Damage"}}},stats={[1]="base_fire_immunity"}},[894]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems are Immune to Fire Damage"}}},stats={[1]="totem_fire_immunity"}},[895]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Spell Skill Gems"}}},stats={[1]="spell_skill_gem_level_+"}},[896]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Physical Spell Skill Gems"}}},stats={[1]="physical_spell_skill_gem_level_+"}},[897]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Fire Spell Skill Gems"}}},stats={[1]="fire_spell_skill_gem_level_+"}},[898]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Cold Spell Skill Gems"}}},stats={[1]="cold_spell_skill_gem_level_+"}},[899]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Lightning Spell Skill Gems"}}},stats={[1]="lightning_spell_skill_gem_level_+"}},[900]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Chaos Spell Skill Gems"}}},stats={[1]="chaos_spell_skill_gem_level_+"}},[901]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Minion Skill Gems"}}},stats={[1]="minion_skill_gem_level_+"}},[902]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Raise Zombie Gems"}}},stats={[1]="raise_zombie_gem_level_+"}},[903]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Raise Spectre Gems"}}},stats={[1]="raise_spectre_gem_level_+"}},[904]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Summon Skeleton Gems"}}},stats={[1]="summon_skeleton_gem_level_+"}},[905]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances"}}},stats={[1]="base_resist_all_elements_%"}},[906]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances per Endurance Charge"}}},stats={[1]="resist_all_elements_%_per_endurance_charge"}},[907]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Elemental Resistances while holding a Shield"}}},stats={[1]="resist_all_elements_+%_while_holding_shield"}},[908]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances while on Low Life"}}},stats={[1]="elemental_resistance_%_when_on_low_life"}},[909]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Fire Resistance"}}},stats={[1]="base_maximum_fire_damage_resistance_%"}},[910]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fire Resistance is %1%%%"}}},stats={[1]="fire_damage_resistance_is_%"}},[911]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Fire Resistance"}}},stats={[1]="base_fire_damage_resistance_%"}},[912]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Fire Resistance when Socketed with a Red Gem"}}},stats={[1]="unique_fire_damage_resistance_%_when_red_gem_socketed"}},[913]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Fire Resistance while on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1$+d%% to Fire Resistance while on Low Life"}}},stats={[1]="fire_damage_resistance_%_when_on_low_life"}},[914]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Resistance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Resistance"}}},stats={[1]="fire_damage_resistance_+%"}},[915]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Cold Resistance"}}},stats={[1]="base_maximum_cold_damage_resistance_%"}},[916]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cold Resistance is %1%%%"}}},stats={[1]="cold_damage_resistance_is_%"}},[917]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold Resistance"}}},stats={[1]="base_cold_damage_resistance_%"}},[918]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold Resistance when Socketed with a Green Gem"}}},stats={[1]="unique_cold_damage_resistance_%_when_green_gem_socketed"}},[919]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Resistance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Resistance"}}},stats={[1]="cold_damage_resistance_+%"}},[920]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Lightning Resistance"}}},stats={[1]="base_maximum_lightning_damage_resistance_%"}},[921]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lightning Resistance is %1%%%"}}},stats={[1]="lightning_damage_resistance_is_%"}},[922]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Lightning Resistance"}}},stats={[1]="base_lightning_damage_resistance_%"}},[923]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Lightning Resistance when Socketed with a Blue Gem"}}},stats={[1]="unique_lightning_damage_resistance_%_when_blue_gem_socketed"}},[924]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Resistance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Resistance"}}},stats={[1]="lightning_damage_resistance_+%"}},[925]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Chaos Resistance"}}},stats={[1]="base_maximum_chaos_damage_resistance_%"}},[926]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Resistance"}}},stats={[1]="base_chaos_damage_resistance_%"}},[927]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all maximum Resistances"}}},stats={[1]="additional_maximum_all_resistances_%"}},[928]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all maximum Elemental Resistances"}}},stats={[1]="additional_maximum_all_elemental_resistances_%"}},[929]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Temporal Chains has %1%%% increased Effect on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Temporal Chains has %1%%% reduced Effect on you"}}},stats={[1]="temporal_chains_effeciveness_+%"}},[930]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Chill on you"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Chill on you"}}},stats={[1]="chill_effectiveness_on_self_+%"}},[931]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life"}}},stats={[1]="old_do_not_use_life_leech_from_physical_damage_%"}},[932]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life"}}},stats={[1]="life_leech_from_physical_attack_damage_permyriad"}},[933]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life"}}},stats={[1]="old_do_not_use_local_life_leech_from_physical_damage_%"}},[934]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life"}}},stats={[1]="local_life_leech_from_physical_damage_permyriad"}},[935]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Dealt with Claws Leeched as Life"}}},stats={[1]="old_do_not_use_life_leech_from_physical_damage_with_claw_%"}},[936]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Dealt with Claws Leeched as Life"}}},stats={[1]="life_leech_from_physical_damage_with_claw_permyriad"}},[937]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Dealt with Bows Leeched as Life"}}},stats={[1]="life_leech_from_physical_damage_with_bow_permyriad"}},[938]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},[3]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life and Mana"}}},stats={[1]="life_and_mana_leech_from_physical_damage_permyriad"}},[939]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},[3]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life and Mana"}}},stats={[1]="local_life_and_mana_leech_from_physical_damage_permyriad"}},[940]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Dealt with Claws Leeched as Mana"}}},stats={[1]="old_do_not_use_mana_leech_from_physical_damage_with_claw_%"}},[941]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Dealt with Claws Leeched as Mana"}}},stats={[1]="mana_leech_from_physical_damage_with_claw_permyriad"}},[942]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Dealt with Bows Leeched as Mana"}}},stats={[1]="mana_leech_from_physical_damage_with_bow_permyriad"}},[943]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life"}}},stats={[1]="life_leech_from_any_damage_permyriad"}},[944]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Life"}}},stats={[1]="old_do_not_use_life_leech_from_spell_damage_%"}},[945]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_spell_damage_permyriad"}},[946]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_attack_damage_permyriad"}},[947]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Leeched as Life"}}},stats={[1]="old_do_not_use_base_life_leech_from_physical_damage_permyriad"}},[948]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_physical_damage_permyriad"}},[949]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage Leeched as Life"}}},stats={[1]="old_do_not_use_base_life_leech_from_fire_damage_permyriad"}},[950]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_fire_damage_permyriad"}},[951]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Leeched as Life"}}},stats={[1]="old_do_not_use_base_life_leech_from_cold_damage_permyriad"}},[952]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_cold_damage_permyriad"}},[953]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Leeched as Life"}}},stats={[1]="old_do_not_use_base_life_leech_from_lightning_damage_permyriad"}},[954]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_lightning_damage_permyriad"}},[955]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Chaos Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_chaos_damage_permyriad"}},[956]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Elemental Damage Leeched as Life"}}},stats={[1]="old_do_not_use_base_life_leech_from_elemental_damage_permyriad"}},[957]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Elemental Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_elemental_damage_permyriad"}},[958]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life against Shocked Enemies"}}},stats={[1]="old_do_not_use_life_leech_permyriad_vs_shocked_enemies"}},[959]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life against Shocked Enemies"}}},stats={[1]="base_life_leech_permyriad_vs_shocked_enemies"}},[960]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage against Frozen Enemies Leeched as Life"}}},stats={[1]="old_do_not_use_life_leech_%_vs_frozen_enemies"}},[961]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage against Frozen Enemies Leeched as Life"}}},stats={[1]="base_life_leech_permyriad_vs_frozen_enemies"}},[962]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life against Chilled Enemies"}}},stats={[1]="old_do_not_use_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"}},[963]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life against Chilled Enemies"}}},stats={[1]="base_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"}},[964]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life on Critical Strike"}}},stats={[1]="old_do_not_use_life_leech_permyriad_on_crit"}},[965]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life on Critical Strike"}}},stats={[1]="life_leech_permyriad_on_crit"}},[966]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life against Bleeding Enemies"}}},stats={[1]="life_leech_from_attack_damage_permyriad_vs_bleeding_enemies"}},[967]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana"}}},stats={[1]="old_do_not_use_mana_leech_from_physical_damage_%"}},[968]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana"}}},stats={[1]="mana_leech_from_physical_attack_damage_permyriad"}},[969]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana"}}},stats={[1]="old_do_not_use_local_mana_leech_from_physical_damage_%"}},[970]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana"}}},stats={[1]="local_mana_leech_from_physical_damage_permyriad"}},[971]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Mana"}}},stats={[1]="mana_leech_from_any_damage_permyriad"}},[972]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Mana"}}},stats={[1]="old_do_not_use_mana_leech_from_spell_damage_%"}},[973]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_spell_damage_permyriad"}},[974]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_attack_damage_permyriad"}},[975]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_physical_damage_permyriad"}},[976]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_fire_damage_permyriad"}},[977]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_cold_damage_permyriad"}},[978]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Leeched as Mana"}}},stats={[1]="old_do_not_use_base_mana_leech_from_lightning_damage_permyriad"}},[979]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_lightning_damage_permyriad"}},[980]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Chaos Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_chaos_damage_permyriad"}},[981]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Elemental Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_elemental_damage_permyriad"}},[982]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage against Shocked Enemies Leeched as Mana"}}},stats={[1]="old_do_not_use_mana_leech_%_vs_shocked_enemies"}},[983]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage against Shocked Enemies Leeched as Mana"}}},stats={[1]="base_mana_leech_permyriad_vs_shocked_enemies"}},[984]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana per Power Charge"}}},stats={[1]="old_do_not_use_mana_leech_from_physical_damage_%_per_power_charge"}},[985]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana per Power Charge"}}},stats={[1]="mana_leech_from_physical_damage_permyriad_per_power_charge"}},[986]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Energy Shield"}}},stats={[1]="energy_shield_leech_from_any_damage_permyriad"}},[987]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Energy Shield"}}},stats={[1]="base_energy_shield_leech_from_spell_damage_permyriad"}},[988]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Energy Shield for each Curse on Enemy"}}},stats={[1]="energy_shield_leech_from_spell_damage_permyriad_per_curse_on_enemy"}},[989]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Recovery per Life Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Recovery per Life Leech"}}},stats={[1]="maximum_life_leech_amount_per_leech_+%"}},[990]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Recovery per Mana Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Recovery per Mana Leech"}}},stats={[1]="maximum_mana_leech_amount_per_leech_+%"}},[991]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Recovery per Energy Shield Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Recovery per Energy Shield Leech"}}},stats={[1]="maximum_energy_shield_leech_amount_per_leech_+%"}},[992]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% of Maximum Life to Maximum total Recovery per second from Life Leech"}}},stats={[1]="maximum_life_leech_rate_%_per_minute"}},[993]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% of Maximum Energy Shield to maximum total Recovery per second from Energy Shield Leech"}}},stats={[1]="maximum_energy_shield_leech_rate_%_per_minute"}},[994]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% of Maximum Energy Shield to maximum Recovery per Energy Shield Leech"}}},stats={[1]="maximum_energy_shield_leech_amount_per_leech_%_max_energy_shield"}},[995]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% of Maximum Mana to maximum total Recovery per second from Mana Leech"}}},stats={[1]="maximum_mana_leech_rate_%_per_minute"}},[996]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum total Recovery per second from Life Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum total Recovery per second from Life Leech"}}},stats={[1]="maximum_life_leech_rate_+%"}},[997]={lang={English={[1]={[1]={k="divide_by_twelve",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum total Recovery per second from Life Leech"},[2]={[1]={k="divide_by_twelve",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum total Recovery per second from Life Leech"}}},stats={[1]="maximum_life_leech_rate_+1%_per_12_stat_value"}},[998]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum total Recovery per second from Mana Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum total Recovery per second from Mana Leech"}}},stats={[1]="maximum_mana_leech_rate_+%"}},[999]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum total Recovery per second from Energy Shield Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum total Recovery per second from Energy Shield Leech"}}},stats={[1]="maximum_energy_shield_leech_rate_+%"}},[1000]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum total Recovery per second from Energy Shield Leech while affected by Zealotry"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum total Recovery per second from Energy Shield Leech while affected by Zealotry"}}},stats={[1]="maximum_energy_shield_leech_rate_+%_while_affected_by_zealotry"}},[1001]={lang={English={[1]={[1]={k="divide_by_six",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum total Recovery per second from Energy Shield Leech while affected by Zealotry"}}},stats={[1]="maximum_es_leech_rate_+1%_per_6_stat_value_while_affected_by_zealotry"}},[1002]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained for each Enemy hit by your Attacks"}}},stats={[1]="life_gain_per_target"}},[1003]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained for each Enemy hit by Attacks"}}},stats={[1]="local_life_gain_per_target"}},[1004]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained for each Enemy hit by your Spells"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lose %1% Life for each Enemy hit by your Spells"}}},stats={[1]="base_life_gained_on_spell_hit"}},[1005]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained for each Enemy hit by your Attacks"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lose %1% Life for each Enemy hit by your Attacks"}}},stats={[1]="base_life_gain_per_target"}},[1006]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life and Mana gained for each Enemy hit by your Attacks"}}},stats={[1]="life_and_mana_gain_per_hit"}},[1007]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life and Mana gained for each Enemy hit"}}},stats={[1]="local_life_and_mana_gain_per_target"}},[1008]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life gained for each Ignited Enemy hit by your Attacks"}}},stats={[1]="life_gain_on_ignited_enemy_hit"}},[1009]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained for each Enemy hit by your Attacks"}}},stats={[1]="mana_gain_per_target"}},[1010]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained for each Enemy hit by Attacks"}}},stats={[1]="local_mana_gain_per_target"}},[1011]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained for each Enemy hit by your Attacks"}}},stats={[1]="virtual_mana_gain_per_target"}},[1012]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Energy Shield gained for each Enemy hit by your Attacks"}}},stats={[1]="energy_shield_gain_per_target"}},[1013]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained on Kill"}}},stats={[1]="base_life_gained_on_enemy_death"}},[1014]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Recover %1%%% of Life on Kill"}}},stats={[1]="recover_%_maximum_life_on_kill"}},[1015]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Energy Shield on Kill"}}},stats={[1]="recover_energy_shield_%_on_kill"}},[1016]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Recover %1%%% of Mana on Kill"}}},stats={[1]="recover_%_maximum_mana_on_kill"}},[1017]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Recover %1%%% of Mana when you Kill a Cursed Enemy"}}},stats={[1]="recover_%_maximum_mana_on_killing_cursed_enemy"}},[1018]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained on Killing Ignited Enemies"}}},stats={[1]="life_gained_on_killing_ignited_enemies"}},[1019]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose %1%%% of Life on Kill"}}},stats={[1]="maximum_life_%_lost_on_kill"}},[1020]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Mana on Kill"}}},stats={[1]="maximum_mana_%_gained_on_kill"}},[1021]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose %1%%% of Energy Shield on Kill"}}},stats={[1]="maximum_energy_shield_%_lost_on_kill"}},[1022]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life gained when you Block"}}},stats={[1]="life_gained_on_block"}},[1023]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Mana gained when you Block"}}},stats={[1]="mana_gained_on_block"}},[1024]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1% Life when you Block"}}},stats={[1]="recover_X_life_on_block"}},[1025]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions recover %1% Life when they Block"}}},stats={[1]="minion_recover_X_life_on_block"}},[1026]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained on Kill"}}},stats={[1]="base_mana_gained_on_enemy_death"}},[1027]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less maximum Life"}}},stats={[1]="support_minion_maximum_life_+%_final"}},[1028]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced maximum Life"}}},stats={[1]="minion_maximum_life_+%"}},[1029]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased maximum Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced maximum Mana"}}},stats={[1]="minion_maximum_mana_+%"}},[1030]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased maximum Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced maximum Energy Shield"}}},stats={[1]="minion_maximum_energy_shield_+%"}},[1031]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Movement Speed"}}},stats={[1]="minion_movement_speed_+%"}},[1032]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spectres have %1%%% increased maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spectres have %1%%% reduced maximum Life"}}},stats={[1]="base_spectre_maximum_life_+%"}},[1033]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Raised Zombies have %1%%% increased maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Raised Zombies have %1%%% reduced maximum Life"}}},stats={[1]="base_zombie_maximum_life_+%"}},[1034]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Fire Elementals have %1%%% increased maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Fire Elementals have %1%%% reduced maximum Life"}}},stats={[1]="base_fire_elemental_maximum_life_+%"}},[1035]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ravens have %1%%% increased maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ravens have %1%%% reduced maximum Life"}}},stats={[1]="base_raven_maximum_life_+%"}},[1036]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Life"}}},stats={[1]="totem_life_+%"}},[1037]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Mana"}}},stats={[1]="totem_mana_+%"}},[1038]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Energy Shield"}}},stats={[1]="totem_energy_shield_+%"}},[1039]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Range"}}},stats={[1]="totem_range_+%"}},[1040]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Duration"}}},stats={[1]="totem_duration_+%"}},[1041]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skeleton Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skeleton Duration"}}},stats={[1]="skeleton_duration_+%"}},[1042]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Buffs and Debuffs you create from skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Buffs and Debuffs you create from skills"}}},stats={[1]="buff_duration_+%"}},[1043]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Buff is applied for %1% seconds"}}},stats={[1]="newpunishment_applied_buff_duration_ms"}},[1044]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Curse Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Curse Duration"}}},stats={[1]="base_curse_duration_+%"}},[1045]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Taunt Duration"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Taunt Duration"}}},stats={[1]="taunt_duration_+%"}},[1046]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1$+d Life when you Taunt an Enemy"}}},stats={[1]="life_gained_on_taunting_enemy"}},[1047]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1$+d Mana when you hit a Taunted Enemy"}}},stats={[1]="mana_gained_on_hitting_taunted_enemy"}},[1048]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Buffs affect your Party members"}}},stats={[1]="buff_affects_party"}},[1049]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect of Buffs affecting Party members"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect of Buffs affecting Party members"}}},stats={[1]="buff_party_effect_radius_+%"}},[1050]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles do not Chain"}}},stats={[1]="do_not_chain"}},[1051]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skills Chain %1$+d times"}}},stats={[1]="number_of_chains"}},[1052]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Projectiles Pierce an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Projectiles Pierce %1% additional Targets"}}},stats={[1]="projectile_base_number_of_targets_to_pierce"}},[1053]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Arrows Pierce an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Arrows Pierce %1% additional Targets"}}},stats={[1]="arrow_base_number_of_targets_to_pierce"}},[1054]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Skills fire an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Skills fire %1% additional Projectiles"}}},stats={[1]="number_of_additional_projectiles"}},[1055]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Bow Attacks fire an additional Arrow"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Bow Attacks fire %1% additional Arrows"}}},stats={[1]="base_number_of_additional_arrows"}},[1056]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Speed"}}},stats={[1]="base_projectile_speed_+%"}},[1057]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Arrow Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Arrow Speed"}}},stats={[1]="base_arrow_speed_+%"}},[1058]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed"}}},stats={[1]="base_movement_velocity_+%"}},[1059]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed when on Low Life"}}},stats={[1]="movement_velocity_+%_when_on_low_life"}},[1060]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed when on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed when on Full Life"}}},stats={[1]="movement_velocity_+%_when_on_full_life"}},[1061]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield per second while on Low Life"}}},stats={[1]="energy_shield_regeneration_rate_per_minute_%_while_on_low_life"}},[1062]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed per Frenzy Charge"}}},stats={[1]="movement_velocity_+%_per_frenzy_charge"}},[1063]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Endurance Charges"}}},stats={[1]="base_minimum_endurance_charges"}},[1064]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Endurance Charges"}}},stats={[1]="max_endurance_charges"}},[1065]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Frenzy Charges"}}},stats={[1]="base_minimum_frenzy_charges"}},[1066]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Frenzy Charges"}}},stats={[1]="max_frenzy_charges"}},[1067]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Power Charges"}}},stats={[1]="base_minimum_power_charges"}},[1068]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Power Charges"}}},stats={[1]="max_power_charges"}},[1069]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Frenzy Charges and Maximum Power Charges"}}},stats={[1]="maximum_power_and_frenzy_charges_+"}},[1070]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain an Endurance Charge on Critical Strike"}}},stats={[1]="add_endurance_charge_on_critical_strike"}},[1071]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge on Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge on Critical Strike"}}},stats={[1]="chance_to_gain_endurance_charge_on_crit_%"}},[1072]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge on Melee Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge on Melee Critical Strike"}}},stats={[1]="chance_to_gain_endurance_charge_on_melee_crit_%"}},[1073]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain an Endurance Charge when you use a Fire skill"}}},stats={[1]="gain_endurance_charge_%_chance_on_using_fire_skill"}},[1074]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge on Bow Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge on Bow Critical Strike"}}},stats={[1]="chance_to_gain_endurance_charge_on_bow_crit_%"}},[1075]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Frenzy Charge on Killing a Frozen Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Frenzy Charge on Killing a Frozen Enemy"}}},stats={[1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"}},[1076]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge on Killing a Frozen Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge on Killing a Frozen Enemy"}}},stats={[1]="chance_to_gain_power_charge_on_killing_frozen_enemy_%"}},[1077]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Adds %1% minimum Cold Damage to Spells per Power Charge"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Adds %2% maximum Cold Damage to Spells per Power Charge"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells per Power Charge"}}},stats={[1]="spell_minimum_added_cold_damage_per_power_charge",[2]="spell_maximum_added_cold_damage_per_power_charge"}},[1078]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Skills Chain an additional time while at maximum Frenzy Charges"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Skills Chain %1% additional times while at maximum Frenzy Charges"}}},stats={[1]="num_of_additional_chains_at_max_frenzy_charges"}},[1079]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain a Frenzy Charge on Critical Strike"}}},stats={[1]="add_frenzy_charge_on_critical_strike"}},[1080]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain a Power Charge on Critical Strike"}}},stats={[1]="add_power_charge_on_critical_strike"}},[1081]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge on Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge on Critical Strike"}}},stats={[1]="add_power_charge_on_critical_strike_%"}},[1082]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain a Power Charge on Melee Critical Strike"}}},stats={[1]="add_power_charge_on_melee_critical_strike"}},[1083]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain an Endurance Charge on Hit"}}},stats={[1]="add_endurance_charge_on_skill_hit_%"}},[1084]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Frenzy Charge on Hit"}}},stats={[1]="add_frenzy_charge_on_skill_hit_%"}},[1085]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Power Charge on Hit"}}},stats={[1]="add_power_charge_on_skill_hit_%"}},[1086]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain an Endurance Charge when you take a Critical Strike"}}},stats={[1]="add_endurance_charge_on_enemy_critical_strike"}},[1087]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Gain an Endurance Charge when you suffer an Elemental Ailment"}}},stats={[1]="add_endurance_charge_on_status_ailment"}},[1088]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Chilled"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Chilled"}}},stats={[1]="avoid_chill_%"}},[1089]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Frozen"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Frozen"}}},stats={[1]="avoid_freeze_%"}},[1090]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Ignited"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Ignited"}}},stats={[1]="avoid_ignite_%"}},[1091]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Shocked"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Shocked"}}},stats={[1]="avoid_shock_%"}},[1092]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Elemental Ailments"},[2]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=100,[2]="#"}},text="Cannot receive Elemental Ailments"}}},stats={[1]="avoid_all_elemental_status_%"}},[1093]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Chilled"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Chilled"}}},stats={[1]="base_avoid_chill_%"}},[1094]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Frozen"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Frozen"}}},stats={[1]="base_avoid_freeze_%"}},[1095]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Ignited"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Ignited"}}},stats={[1]="base_avoid_ignite_%"}},[1096]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Ignited while on Low Life"},[2]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=100,[2]="#"}},text="Cannot be Ignited while on Low Life"}}},stats={[1]="avoid_ignite_%_when_on_low_life"}},[1097]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Shocked"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Shocked"}}},stats={[1]="base_avoid_shock_%"}},[1098]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Poisoned"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Poisoned"}}},stats={[1]="base_avoid_poison_%"}},[1099]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Stunned"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Stunned"}}},stats={[1]="avoid_stun_%"}},[1100]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Stunned"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Stunned"}}},stats={[1]="base_avoid_stun_%"}},[1101]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]="#"}},text="Always Ignites Enemies on Hit"}}},stats={[1]="always_ignite"}},[1102]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]="#"}},text="Always Shocks Enemies on Hit"}}},stats={[1]="always_shock"}},[1103]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Always Stuns Enemies on Hit"}}},stats={[1]="always_stun"}},[1104]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chill Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chill Duration on Enemies"}}},stats={[1]="chill_duration_+%"}},[1105]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shock Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shock Duration on Enemies"}}},stats={[1]="shock_duration_+%"}},[1106]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freeze Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freeze Duration on Enemies"}}},stats={[1]="freeze_duration_+%"}},[1107]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ignite Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ignite Duration on Enemies"}}},stats={[1]="ignite_duration_+%"}},[1108]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Ailments on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Ailments on Enemies"}}},stats={[1]="base_all_ailment_duration_+%"}},[1109]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Elemental Ailments on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Elemental Ailments on Enemies"}}},stats={[1]="base_elemental_status_ailment_duration_+%"}},[1110]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Cannot inflict Elemental Ailments"}}},stats={[1]="cannot_inflict_status_ailments"}},[1111]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration on Enemies"}}},stats={[1]="base_stun_duration_+%"}},[1112]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration with Two Handed Melee Weapons on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration with Two Handed Melee Weapons on Enemies"}}},stats={[1]="two_handed_melee_stun_duration_+%"}},[1113]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration with Bows on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration with Bows on Enemies"}}},stats={[1]="bow_stun_duration_+%"}},[1114]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration with Staves on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration with Staves on Enemies"}}},stats={[1]="staff_stun_duration_+%"}},[1115]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Elemental Ailment Duration on you"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Elemental Ailment Duration on you"}}},stats={[1]="self_elemental_status_duration_-%"}},[1116]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Chill Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Chill Duration on you"}}},stats={[1]="self_chill_duration_-%"}},[1117]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Shock Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Shock Duration on you"}}},stats={[1]="self_shock_duration_-%"}},[1118]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Freeze Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Freeze Duration on you"}}},stats={[1]="self_freeze_duration_-%"}},[1119]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Ignite Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Ignite Duration on you"}}},stats={[1]="self_ignite_duration_-%"}},[1120]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Chill Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Chill Duration on you"}}},stats={[1]="base_self_chill_duration_-%"}},[1121]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Shock Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Shock Duration on you"}}},stats={[1]="base_self_shock_duration_-%"}},[1122]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Freeze Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Freeze Duration on you"}}},stats={[1]="base_self_freeze_duration_-%"}},[1123]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Ignite Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Ignite Duration on you"}}},stats={[1]="base_self_ignite_duration_-%"}},[1124]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance of Fire Spreading between Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% chance of Fire Spreading between Enemies"}}},stats={[1]="chance_per_second_of_fire_spreading_between_enemies_%"}},[1125]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Burning Damage"}}},stats={[1]="burn_damage_+%"}},[1126]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d to Level of Active Skills"}}},stats={[1]="active_skill_level_+"}},[1127]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Experience Gain of Gems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Experience Gain of Gems"}}},stats={[1]="gem_experience_gain_+%"}},[1128]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect"}}},stats={[1]="base_skill_area_of_effect_+%"}},[1129]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Mana Cost of Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Mana Cost of Skills"}}},stats={[1]="base_mana_cost_-%"}},[1130]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills while on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills while on Full Energy Shield"}}},stats={[1]="mana_cost_+%_while_on_full_energy_shield"}},[1131]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills when on Low Life"}}},stats={[1]="mana_cost_+%_when_on_low_life"}},[1132]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Total Mana Cost of Skills"}}},stats={[1]="skill_mana_cost_+"}},[1133]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Attacks do not cost Mana"}}},stats={[1]="attacks_do_not_cost_mana"}},[1134]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Skills Repeat an additional Time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Skills Repeat an additional %1% Times"}}},stats={[1]="skill_repeat_count"}},[1135]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spells Repeat an additional Time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spells Repeat an additional %1% Times"}}},stats={[1]="spell_repeat_count"}},[1136]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skill Effect Duration"}}},stats={[1]="skill_effect_duration_+%"}},[1137]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chaos Skills have %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Chaos Skills have %1%%% reduced Skill Effect Duration"}}},stats={[1]="chaos_skill_effect_duration_+%"}},[1138]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Skill Cooldown"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Skill Cooldown"}}},stats={[1]="skill_cooldown_-%"}},[1139]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Avoid interruption from Stuns while Casting"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% chance to Avoid interruption from Stuns while Casting"}}},stats={[1]="avoid_interruption_while_casting_%"}},[1140]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="%1% additional target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% additional targets"}}},stats={[1]="attack_repeat_count"}},[1141]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun and Block Recovery"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun and Block Recovery"}}},stats={[1]="base_stun_recovery_+%"}},[1142]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun and Block Recovery per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun and Block Recovery per Frenzy Charge"}}},stats={[1]="stun_recovery_+%_per_frenzy_charge"}},[1143]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Chance to Block Sword Attacks"}}},stats={[1]="while_using_sword_reduce_enemy_block_%"}},[1144]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Chance to Block Bow Attacks"}}},stats={[1]="bow_enemy_block_-%"}},[1145]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Block Chance"}}},stats={[1]="global_reduce_enemy_block_%"}},[1146]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies have %1%%% reduced chance to Dodge your Hits"}}},stats={[1]="reduce_enemy_dodge_%"}},[1147]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damaged Monsters do not Heal"}}},stats={[1]="prevent_monster_heal"}},[1148]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration that Monsters do not Heal"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration that Monsters do not Heal"}}},stats={[1]="prevent_monster_heal_duration_+%"}},[1149]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance of Defusing Trapped Chests"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% chance of Defusing Trapped Chests"}}},stats={[1]="chest_trap_defuse_%"}},[1150]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHit"},limit={[1]={[1]=1,[2]="#"}},text="Enemies Become Chilled as they Unfreeze"}}},stats={[1]="enemies_chill_as_unfrozen"}},[1151]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHit"},limit={[1]={[1]="#",[2]="#"}},text="Enemies you kill are Shocked"}}},stats={[1]="enemy_shock_on_kill"}},[1152]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHit"},limit={[1]={[1]=1,[2]="#"}},text="While Casting, Enemies that Hit you are Shocked"}}},stats={[1]="shocks_enemies_that_hit_actor_while_actor_is_casting"}},[1153]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Has maximum Quality"}}},stats={[1]="local_is_max_quality"}},[1154]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra Socket"}}},stats={[1]="local_extra_socket"}},[1155]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Blood Magic"}}},stats={[1]="use_life_in_place_of_mana"}},[1156]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Evade Enemy Attacks"}}},stats={[1]="base_cannot_evade"}},[1157]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="All Sockets are White"}}},stats={[1]="local_all_sockets_are_white"}},[1158]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems Do Not Gain Experience"}}},stats={[1]="local_disable_gem_experience_gain"}},[1159]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Gem gains %1%%% increased Experience"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Gem gains %1%%% reduced Experience"}}},stats={[1]="local_gem_experience_gain_+%"}},[1160]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Sockets"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Sockets"}}},stats={[1]="local_quantity_of_sockets_+%"}},[1161]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Socket Connectivity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Socket Connectivity"}}},stats={[1]="local_connectivity_of_sockets_+%"}},[1162]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Duration"}}},stats={[1]="trap_duration_+%"}},[1163]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Duration"}}},stats={[1]="mine_duration_+%"}},[1164]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Trigger Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Trigger Area of Effect"}}},stats={[1]="trap_trigger_radius_+%"}},[1165]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Detonation Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Detonation Area of Effect"}}},stats={[1]="mine_detonation_radius_+%"}},[1166]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Throwing Speed"}}},stats={[1]="trap_throwing_speed_+%"}},[1167]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Throwing Speed"}}},stats={[1]="mine_laying_speed_+%"}},[1168]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Monster Responsiveness"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Monster Responsiveness"}}},stats={[1]="skill_internal_monster_responsiveness_+%"}},[1169]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Endurance Charges granted per one hundred nearby Enemies"}}},stats={[1]="endurance_charges_granted_per_one_hundred_nearby_enemies_during_endurance_warcry"}},[1170]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skill Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skill Range"}}},stats={[1]="skill_range_+%"}},[1171]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Fire Damage"}}},stats={[1]="physical_damage_%_to_add_as_fire"}},[1172]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Cold Damage"}}},stats={[1]="physical_damage_%_to_add_as_cold"}},[1173]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Lightning Damage"}}},stats={[1]="physical_damage_%_to_add_as_lightning"}},[1174]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Chaos Damage"}}},stats={[1]="physical_damage_%_to_add_as_chaos"}},[1175]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Lightning Damage as Extra Fire Damage"}}},stats={[1]="lightning_damage_%_to_add_as_fire"}},[1176]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Lightning Damage as Extra Cold Damage"}}},stats={[1]="lightning_damage_%_to_add_as_cold"}},[1177]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Lightning Damage as Extra Chaos Damage"}}},stats={[1]="lightning_damage_%_to_add_as_chaos"}},[1178]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Cold Damage as Extra Fire Damage"}}},stats={[1]="cold_damage_%_to_add_as_fire"}},[1179]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Cold Damage as Extra Chaos Damage"}}},stats={[1]="cold_damage_%_to_add_as_chaos"}},[1180]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Fire Damage as Extra Chaos Damage"}}},stats={[1]="fire_damage_%_to_add_as_chaos"}},[1181]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Elemental Damage as Extra Chaos Damage"}}},stats={[1]="elemental_damage_%_to_add_as_chaos"}},[1182]={lang={English={[1]={[1]={k="per_minute_to_per_second_2dp_if_required",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second"}}},stats={[1]="life_regeneration_rate_per_minute_%"}},[1183]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second while on Low Life"}}},stats={[1]="life_regeneration_rate_per_minute_%_when_on_low_life"}},[1184]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Maximum Life taken per second as Chaos Damage"}}},stats={[1]="base_chaos_damage_%_of_maximum_life_taken_per_minute"}},[1185]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1% Chaos Damage taken per second"}}},stats={[1]="base_chaos_damage_taken_per_minute"}},[1186]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage taken over time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage taken over time"}}},stats={[1]="chaos_damage_taken_over_time_+%"}},[1187]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Mana Cost"}}},stats={[1]="display_mana_cost_reduction_%"}},[1188]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1% maximum Life"}}},stats={[1]="display_minion_maximum_life"}},[1189]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Back Enemies if you get a Critical Strike"}}},stats={[1]="global_knockback_on_crit"}},[1190]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Back Enemies if you get a Critical Strike with a Bow"}}},stats={[1]="knockback_on_crit_with_bow"}},[1191]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Back Enemies if you get a Critical Strike with a Staff"}}},stats={[1]="knockback_on_crit_with_staff"}},[1192]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Back Enemies if you get a Critical Strike with a Wand"}}},stats={[1]="knockback_on_crit_with_wand"}},[1193]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Back Enemies in an Area when you use a Flask"}}},stats={[1]="local_flask_use_causes_area_knockback"}},[1194]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Fire Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_fire"}},[1195]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Fire Damage"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_fire"}},[1196]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Cold Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_cold"}},[1197]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Cold Damage"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_cold"}},[1198]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Lightning Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_lightning"}},[1199]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Lightning Damage"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_lightning"}},[1200]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Chaos Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_chaos"}},[1201]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Chaos Damage"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_chaos"}},[1202]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Converted to Fire Damage"}}},stats={[1]="base_lightning_damage_%_to_convert_to_fire"}},[1203]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Converted to Cold Damage"}}},stats={[1]="base_lightning_damage_%_to_convert_to_cold"}},[1204]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Converted to Chaos Damage"}}},stats={[1]="base_lightning_damage_%_to_convert_to_chaos"}},[1205]={lang={English={[1]={[1]={k="60%_of_value",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Converted to Chaos Damage"}}},stats={[1]="base_lightning_damage_%_to_convert_to_chaos_60%_value"}},[1206]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Converted to Fire Damage"}}},stats={[1]="base_cold_damage_%_to_convert_to_fire"}},[1207]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Converted to Chaos Damage"}}},stats={[1]="base_cold_damage_%_to_convert_to_chaos"}},[1208]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage Converted to Chaos Damage"}}},stats={[1]="base_fire_damage_%_to_convert_to_chaos"}},[1209]={lang={English={[1]={[1]={k="60%_of_value",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage Converted to Chaos Damage"}}},stats={[1]="base_fire_damage_%_to_convert_to_chaos_60%_value"}},[1210]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Fire Damage"}}},stats={[1]="skill_physical_damage_%_to_convert_to_fire"}},[1211]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Cold Damage"}}},stats={[1]="skill_physical_damage_%_to_convert_to_cold"}},[1212]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Lightning Damage"}}},stats={[1]="skill_physical_damage_%_to_convert_to_lightning"}},[1213]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Chaos Damage"}}},stats={[1]="skill_physical_damage_%_to_convert_to_chaos"}},[1214]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Converted to Fire Damage"}}},stats={[1]="skill_lightning_damage_%_to_convert_to_fire"}},[1215]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Converted to Cold Damage"}}},stats={[1]="skill_lightning_damage_%_to_convert_to_cold"}},[1216]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Converted to Chaos Damage"}}},stats={[1]="skill_lightning_damage_%_to_convert_to_chaos"}},[1217]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Converted to Fire Damage"}}},stats={[1]="skill_cold_damage_%_to_convert_to_fire"}},[1218]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Converted to Chaos Damage"}}},stats={[1]="skill_cold_damage_%_to_convert_to_chaos"}},[1219]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage Converted to Chaos Damage"}}},stats={[1]="skill_fire_damage_%_to_convert_to_chaos"}},[1220]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield from Equipped Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield from Equipped Shield"}}},stats={[1]="shield_maximum_energy_shield_+%"}},[1221]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage"}}},stats={[1]="minion_damage_+%"}},[1222]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage if you've used a Minion Skill Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage if you've used a Minion Skill Recently"}}},stats={[1]="minion_damage_+%_if_have_used_a_minion_skill_recently"}},[1223]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage"}}},stats={[1]="virtual_minion_damage_+%"}},[1224]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage per 10 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage per 10 Dexterity"}}},stats={[1]="minion_damage_+%_per_10_dex"}},[1225]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed Enemies grant %1%%% more Melee Physical Damage on Melee hit"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed Enemies grant %1%%% less Melee Physical Damage on Melee hit"}}},stats={[1]="newpunishment_melee_physical_damage_+%_final"}},[1226]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants attacked Enemy %1%%% more Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants attacked Enemy %1%%% less Melee Physical Damage"}}},stats={[1]="newpunishment_melee_damage_+%_final"}},[1227]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate per Power Charge"}}},stats={[1]="mana_regeneration_rate_+%_per_power_charge"}},[1228]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage"}}},stats={[1]="elemental_damage_+%"}},[1229]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage"}}},stats={[1]="melee_physical_damage_+%"}},[1230]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Fire Damage"}}},stats={[1]="melee_fire_damage_+%"}},[1231]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Cold Damage"}}},stats={[1]="melee_cold_damage_+%"}},[1232]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage while holding a Shield"}}},stats={[1]="melee_physical_damage_+%_while_holding_shield"}},[1233]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Fire Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Fire Damage while holding a Shield"}}},stats={[1]="melee_fire_damage_+%_while_holding_shield"}},[1234]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Cold Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Cold Damage while holding a Shield"}}},stats={[1]="melee_cold_damage_+%_while_holding_shield"}},[1235]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bow Physical Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bow Physical Damage while holding a Shield"}}},stats={[1]="bow_physical_damage_+%_while_holding_shield"}},[1236]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Chance to Block Attack Damage"}}},stats={[1]="maximum_block_%"}},[1237]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Chance to Block Spell Damage"}}},stats={[1]="base_maximum_spell_block_%"}},[1238]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Chance to Block Spell Damage per 50 Strength"}}},stats={[1]="maximum_spell_block_chance_per_50_strength"}},[1239]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion from Equipped Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion from Equipped Shield"}}},stats={[1]="shield_evasion_rating_+%"}},[1240]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour from Equipped Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour from Equipped Shield"}}},stats={[1]="shield_physical_damage_reduction_rating_+%"}},[1241]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Defences from Equipped Shield"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Defences from Equipped Shield"}}},stats={[1]="shield_armour_+%"}},[1242]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Knock Enemies Back on hit"}}},stats={[1]="base_global_chance_to_knockback_%"}},[1243]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Damage"}}},stats={[1]="projectile_damage_+%"}},[1244]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Attack Damage"}}},stats={[1]="projectile_attack_damage_+%"}},[1245]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1% Evasion Rating from Equipped Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1% Evasion Rating from Equipped Shield"}}},stats={[1]="base_shield_evasion_rating"}},[1246]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1% Armour from Equipped Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1% Armour from Equipped Shield"}}},stats={[1]="base_shield_physical_damage_reduction_rating"}},[1247]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1% Energy Shield from Equipped Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1% Energy Shield from Equipped Shield"}}},stats={[1]="base_shield_maximum_energy_shield"}},[1248]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Ranged Weapons"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Ranged Weapons"}}},stats={[1]="ranged_weapon_physical_damage_+%"}},[1249]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed when on Low Life"}}},stats={[1]="cast_speed_+%_when_on_low_life"}},[1250]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed when on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed when on Full Life"}}},stats={[1]="cast_speed_+%_when_on_full_life"}},[1251]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed per Frenzy Charge"}}},stats={[1]="cast_speed_+%_per_frenzy_charge"}},[1252]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Knockback Distance"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Knockback Distance"}}},stats={[1]="knockback_distance_+%"}},[1253]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration on Enemies"}}},stats={[1]="stun_duration_+%"}},[1254]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Swords"}}},stats={[1]="sword_accuracy_rating"}},[1255]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Bows"}}},stats={[1]="bow_accuracy_rating"}},[1256]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Daggers"}}},stats={[1]="dagger_accuracy_rating"}},[1257]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Axes"}}},stats={[1]="axe_accuracy_rating"}},[1258]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Claws"}}},stats={[1]="claw_accuracy_rating"}},[1259]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Staves"}}},stats={[1]="staff_accuracy_rating"}},[1260]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Maces and Sceptres"}}},stats={[1]="mace_accuracy_rating"}},[1261]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Wands"}}},stats={[1]="wand_accuracy_rating"}},[1262]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain Enemies"}}},stats={[1]="base_killed_monster_dropped_item_rarity_+%"}},[1263]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Slain Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Dropped by Slain Enemies"}}},stats={[1]="base_killed_monster_dropped_item_quantity_+%"}},[1264]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration per 10 Strength"}}},stats={[1]="skill_effect_duration_+%_per_10_strength"}},[1265]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strength provides no bonus to Maximum Life"}}},stats={[1]="gain_no_maximum_life_from_strength"}},[1266]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Intelligence provides no bonus to Maximum Mana"}}},stats={[1]="gain_no_maximum_mana_from_intelligence"}},[1267]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Accuracy Rating per 2 Intelligence"}}},stats={[1]="X_accuracy_per_2_intelligence"}},[1268]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life per 4 Dexterity"}}},stats={[1]="X_life_per_4_dexterity"}},[1269]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Mana per 4 Strength"}}},stats={[1]="X_mana_per_4_strength"}},[1270]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Life per 2 Intelligence"}}},stats={[1]="x_to_maximum_life_per_2_intelligence"}},[1271]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating"}}},stats={[1]="local_accuracy_rating"}},[1272]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating"}}},stats={[1]="local_accuracy_rating_+%"}},[1273]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Always Ignite"}}},stats={[1]="base_chance_to_ignite_%"}},[1274]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextScorch"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Scorch Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextScorch"},limit={[1]={[1]=100,[2]="#"}},text="Always Scorch Enemies"}}},stats={[1]="chance_to_scorch_%"}},[1275]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Burning Damage"}}},stats={[1]="chieftain_burning_damage_+%_final"}},[1276]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="Always Freezes Enemies on Hit"},[2]={[1]={k="canonical_line",v="canonical"},[2]={k="_stat",v=1},[3]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0}},text="%1%%% chance to Freeze"}}},stats={[1]="base_chance_to_freeze_%",[2]="always_freeze"}},[1277]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBrittle"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Brittle"},[2]={[1]={k="reminderstring",v="ReminderTextBrittle"},limit={[1]={[1]=100,[2]="#"}},text="Always inflict Brittle"}}},stats={[1]="chance_to_inflict_frostburn_%"}},[1278]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Critical Strikes do not inherently Freeze"}}},stats={[1]="critical_strikes_do_not_always_freeze"}},[1279]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="%1$d%% chance to Freeze Enemies which are Chilled"}}},stats={[1]="additional_chance_to_freeze_chilled_enemies_%"}},[1280]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Shock"},[2]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=100,[2]="#"}},text="Always Shock"}}},stats={[1]="base_chance_to_shock_%"}},[1281]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSapped"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Sap Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextSapped"},limit={[1]={[1]=100,[2]="#"}},text="Always Sap Enemies"}}},stats={[1]="chance_to_inflict_sapped_%"}},[1282]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area Damage"}}},stats={[1]="area_damage_+%"}},[1283]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Wand Physical Damage as Extra Fire Damage"}}},stats={[1]="wand_physical_damage_%_to_add_as_fire"}},[1284]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Wand Physical Damage as Extra Cold Damage"}}},stats={[1]="wand_physical_damage_%_to_add_as_cold"}},[1285]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Wand Physical Damage as Extra Lightning Damage"}}},stats={[1]="wand_physical_damage_%_to_add_as_lightning"}},[1286]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]=1,[2]="#"}},text="Culling Strike"}}},stats={[1]="kill_enemy_on_hit_if_under_10%_life"}},[1287]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]="#",[2]="#"}},text="Hits that Stun Enemies have Culling Strike"}}},stats={[1]="stuns_have_culling_strike"}},[1288]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%d%% chance to Cause Monsters to Flee"}}},stats={[1]="local_hit_causes_monster_flee_%"}},[1289]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%d%% chance to Cause Monsters to Flee"}}},stats={[1]="global_hit_causes_monster_flee_%"}},[1290]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hits can't be Evaded"}}},stats={[1]="local_always_hit"}},[1291]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your hits can't be Evaded"}}},stats={[1]="global_always_hit"}},[1292]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="All hits are Critical Strikes"}}},stats={[1]="always_crit"}},[1293]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Increases wall length by %1%"}}},stats={[1]="wall_maximum_length"}},[1294]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed"}}},stats={[1]="attack_and_cast_speed_+%"}},[1295]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed per Frenzy Charge"}}},stats={[1]="attack_speed_+%_per_frenzy_charge"}},[1296]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed per Frenzy Charge"}}},stats={[1]="attack_and_cast_speed_+%_per_frenzy_charge"}},[1297]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed per Frenzy Charge"}}},stats={[1]="base_attack_speed_+%_per_frenzy_charge"}},[1298]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating per Frenzy Charge"}}},stats={[1]="accuracy_rating_+%_per_frenzy_charge"}},[1299]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frenzy Charge Duration per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frenzy Charge Duration per Frenzy Charge"}}},stats={[1]="frenzy_charge_duration_+%_per_frenzy_charge"}},[1300]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="While at maximum Frenzy Charges, Attacks Poison Enemies"}}},stats={[1]="attacks_poison_while_at_max_frenzy_charges"}},[1301]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Attacks have %1%%% chance to Poison while at maximum Frenzy Charges"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Attacks always Poison while at maximum Frenzy Charges"}}},stats={[1]="attacks_chance_to_poison_%_on_max_frenzy_charges"}},[1302]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Global Critical Strike Multiplier while you have no Frenzy Charges"}}},stats={[1]="global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges"}},[1303]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while you have no Frenzy Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while you have no Frenzy Charges"}}},stats={[1]="skill_area_of_effect_+%_while_no_frenzy_charges"}},[1304]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Character Size"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Character Size"}}},stats={[1]="base_actor_scale_+%"}},[1305]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain a Power Charge when a Minion Dies"}}},stats={[1]="add_power_charge_on_minion_death"}},[1306]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovery from Flasks"}}},stats={[1]="flask_life_to_recover_+%"}},[1307]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Recovery from Flasks"}}},stats={[1]="flask_mana_to_recover_+%"}},[1308]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Recovery rate"}}},stats={[1]="flask_recovery_speed_+%"}},[1309]={lang={English={[1]={limit={[1]={[1]=100,[2]=100},[2]={[1]=1,[2]=1}},text="Flasks gain a Charge when you take a Critical Strike"},[2]={limit={[1]={[1]=100,[2]=100},[2]={[1]="#",[2]="#"}},text="Flasks gain %2% Charges when you take a Critical Strike"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]=1}},text="%1%%% chance for Flasks to gain a Charge when you take a Critical Strike"},[4]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1%%% chance for Flasks to gain %2% Charges when you take a Critical Strike"}}},stats={[1]="gain_flask_charge_when_crit_%",[2]="gain_flask_charge_when_crit_amount"}},[1310]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Weapons"}}},stats={[1]="weapon_fire_damage_+%"}},[1311]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Weapons"}}},stats={[1]="weapon_cold_damage_+%"}},[1312]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage with Weapons"}}},stats={[1]="weapon_lightning_damage_+%"}},[1313]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage with Weapons"}}},stats={[1]="weapon_chaos_damage_+%"}},[1314]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Elemental Damage"}}},stats={[1]="spell_elemental_damage_+%"}},[1315]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Wand Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_wand",[2]="attack_maximum_added_lightning_damage_with_wand"}},[1316]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Wand Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_wand",[2]="attack_maximum_added_fire_damage_with_wand"}},[1317]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Wand Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_wand",[2]="attack_maximum_added_cold_damage_with_wand"}},[1318]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Bow Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_bow",[2]="attack_maximum_added_physical_damage_with_bow"}},[1319]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Axe Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_axes",[2]="attack_maximum_added_cold_damage_with_axes"}},[1320]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Bow Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_bows",[2]="attack_maximum_added_cold_damage_with_bows"}},[1321]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Claw Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_claws",[2]="attack_maximum_added_cold_damage_with_claws"}},[1322]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Dagger Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_daggers",[2]="attack_maximum_added_cold_damage_with_daggers"}},[1323]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Mace and Sceptre Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_maces",[2]="attack_maximum_added_cold_damage_with_maces"}},[1324]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Staff Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_staves",[2]="attack_maximum_added_cold_damage_with_staves"}},[1325]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Sword Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_swords",[2]="attack_maximum_added_cold_damage_with_swords"}},[1326]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Axe Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_axes",[2]="attack_maximum_added_fire_damage_with_axes"}},[1327]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Bow Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_bow",[2]="attack_maximum_added_fire_damage_with_bow"}},[1328]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Claw Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_claws",[2]="attack_maximum_added_fire_damage_with_claws"}},[1329]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Dagger Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_daggers",[2]="attack_maximum_added_fire_damage_with_daggers"}},[1330]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Mace and Sceptre Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_maces",[2]="attack_maximum_added_fire_damage_with_maces"}},[1331]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Staff Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_staves",[2]="attack_maximum_added_fire_damage_with_staves"}},[1332]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Sword Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_swords",[2]="attack_maximum_added_fire_damage_with_swords"}},[1333]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Axe Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_axes",[2]="attack_maximum_added_lightning_damage_with_axes"}},[1334]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Bow Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_bows",[2]="attack_maximum_added_lightning_damage_with_bows"}},[1335]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Claw Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_claws",[2]="attack_maximum_added_lightning_damage_with_claws"}},[1336]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Dagger Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_daggers",[2]="attack_maximum_added_lightning_damage_with_daggers"}},[1337]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Mace and Sceptre Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_maces",[2]="attack_maximum_added_lightning_damage_with_maces"}},[1338]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Staff Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_staves",[2]="attack_maximum_added_lightning_damage_with_staves"}},[1339]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Sword Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_swords",[2]="attack_maximum_added_lightning_damage_with_swords"}},[1340]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks while holding a Shield"}}},stats={[1]="attack_minimum_added_physical_damage_while_holding_a_shield",[2]="attack_maximum_added_physical_damage_while_holding_a_shield"}},[1341]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Unarmed Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_while_unarmed",[2]="attack_maximum_added_physical_damage_while_unarmed"}},[1342]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Axe Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_axes",[2]="attack_maximum_added_physical_damage_with_axes"}},[1343]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Claw Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_claws",[2]="attack_maximum_added_physical_damage_with_claws"}},[1344]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Dagger Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_daggers",[2]="attack_maximum_added_physical_damage_with_daggers"}},[1345]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Mace and Sceptre Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_maces",[2]="attack_maximum_added_physical_damage_with_maces"}},[1346]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Staff Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_staves",[2]="attack_maximum_added_physical_damage_with_staves"}},[1347]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Sword Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_swords",[2]="attack_maximum_added_physical_damage_with_swords"}},[1348]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Wand Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_wands",[2]="attack_maximum_added_physical_damage_with_wands"}},[1349]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage to Spells while Dual Wielding"}}},stats={[1]="spell_minimum_added_chaos_damage_while_dual_wielding",[2]="spell_maximum_added_chaos_damage_while_dual_wielding"}},[1350]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage to Spells while holding a Shield"}}},stats={[1]="spell_minimum_added_chaos_damage_while_holding_a_shield",[2]="spell_maximum_added_chaos_damage_while_holding_a_shield"}},[1351]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage to Spells while wielding a Two Handed Weapon"}}},stats={[1]="spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon",[2]="spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon"}},[1352]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells while Dual Wielding"}}},stats={[1]="spell_minimum_added_cold_damage_while_dual_wielding",[2]="spell_maximum_added_cold_damage_while_dual_wielding"}},[1353]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells while holding a Shield"}}},stats={[1]="spell_minimum_added_cold_damage_while_holding_a_shield",[2]="spell_maximum_added_cold_damage_while_holding_a_shield"}},[1354]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells while wielding a Two Handed Weapon"}}},stats={[1]="spell_minimum_added_cold_damage_while_wielding_two_handed_weapon",[2]="spell_maximum_added_cold_damage_while_wielding_two_handed_weapon"}},[1355]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Spells while Dual Wielding"}}},stats={[1]="spell_minimum_added_fire_damage_while_dual_wielding",[2]="spell_maximum_added_fire_damage_while_dual_wielding"}},[1356]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Spells while holding a Shield"}}},stats={[1]="spell_minimum_added_fire_damage_while_holding_a_shield",[2]="spell_maximum_added_fire_damage_while_holding_a_shield"}},[1357]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Spells while wielding a Two Handed Weapon"}}},stats={[1]="spell_minimum_added_fire_damage_while_wielding_two_handed_weapon",[2]="spell_maximum_added_fire_damage_while_wielding_two_handed_weapon"}},[1358]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells while Dual Wielding"}}},stats={[1]="spell_minimum_added_lightning_damage_while_dual_wielding",[2]="spell_maximum_added_lightning_damage_while_dual_wielding"}},[1359]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells while holding a Shield"}}},stats={[1]="spell_minimum_added_lightning_damage_while_holding_a_shield",[2]="spell_maximum_added_lightning_damage_while_holding_a_shield"}},[1360]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells while wielding a Two Handed Weapon"}}},stats={[1]="spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon",[2]="spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon"}},[1361]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Spells while Dual Wielding"}}},stats={[1]="spell_minimum_added_physical_damage_while_dual_wielding",[2]="spell_maximum_added_physical_damage_while_dual_wielding"}},[1362]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Spells while holding a Shield"}}},stats={[1]="spell_minimum_added_physical_damage_while_holding_a_shield",[2]="spell_maximum_added_physical_damage_while_holding_a_shield"}},[1363]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Spells while wielding a Two Handed Weapon"}}},stats={[1]="spell_minimum_added_physical_damage_while_wielding_two_handed_weapon",[2]="spell_maximum_added_physical_damage_while_wielding_two_handed_weapon"}},[1364]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Wands"}}},stats={[1]="wand_elemental_damage_+%"}},[1365]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Staves"}}},stats={[1]="staff_elemental_damage_+%"}},[1366]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Maces and Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Maces and Sceptres"}}},stats={[1]="mace_elemental_damage_+%"}},[1367]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge when you Block"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge when you Block"}}},stats={[1]="chance_to_gain_endurance_charge_on_block_%"}},[1368]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Endurance Charge Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Endurance Charge Duration"}}},stats={[1]="endurance_charge_duration_+%"}},[1369]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain a Frenzy Charge when an Enemy Blocks your Damage"}}},stats={[1]="add_frenzy_charge_on_enemy_block"}},[1370]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frenzy Charge Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frenzy Charge Duration"}}},stats={[1]="base_frenzy_charge_duration_+%"}},[1371]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when you Block"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Power Charge when you Block"}}},stats={[1]="chance_to_gain_power_charge_when_block_%"}},[1372]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per Power Charge"}}},stats={[1]="skill_area_of_effect_+%_per_power_charge"}},[1373]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Power Charge when your Trap is triggered by an Enemy"}}},stats={[1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"}},[1374]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Power Charge when your Mine is Detonated targeting an Enemy"}}},stats={[1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"}},[1375]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time per Frenzy Charge"}}},stats={[1]="damage_over_time_+%_per_frenzy_charge"}},[1376]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time per Power Charge"}}},stats={[1]="damage_over_time_+%_per_power_charge"}},[1377]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time while Dual Wielding"}}},stats={[1]="damage_over_time_+%_while_dual_wielding"}},[1378]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time while holding a Shield"}}},stats={[1]="damage_over_time_+%_while_holding_a_shield"}},[1379]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time while wielding a Two Handed Weapon"}}},stats={[1]="damage_over_time_+%_while_wielding_two_handed_weapon"}},[1380]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per Frenzy Charge"}}},stats={[1]="elemental_damage_+%_per_frenzy_charge"}},[1381]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage per Endurance Charge"}}},stats={[1]="physical_damage_per_endurance_charge_+%"}},[1382]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per Power Charge"}}},stats={[1]="spell_damage_+%_per_power_charge"}},[1383]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Wand Damage per Power Charge"}}},stats={[1]="wand_damage_+%_per_power_charge"}},[1384]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Power Charge Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Power Charge Duration"}}},stats={[1]="power_charge_duration_+%"}},[1385]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain a Power Charge when you Kill a Shocked Enemy"}}},stats={[1]="add_power_charge_when_kill_shocked_enemy"}},[1386]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Buffs on you"}}},stats={[1]="buff_effect_on_self_+%"}},[1387]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Auras on you"}}},stats={[1]="aura_effect_on_self_+%"}},[1388]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Auras on your Minions"}}},stats={[1]="minions_have_aura_effect_+%"}},[1389]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Movement Speed on Shocked Ground"}}},stats={[1]="movement_velocity_+%_when_on_shocked_ground"}},[1390]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage on Burning Ground"}}},stats={[1]="damage_+%_when_on_burning_ground"}},[1391]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second on Chilled Ground"}}},stats={[1]="life_regeneration_rate_per_minute_%_when_on_chilled_ground"}},[1392]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Chilled Ground on you"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Chilled Ground on you"}}},stats={[1]="chilled_ground_effect_on_self_+%"}},[1393]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% increased Effect of Burning Ground on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Burning Ground on you"}}},stats={[1]="burning_ground_effect_on_self_+%"}},[1394]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% increased Effect of Shocked Ground on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Shocked Ground on you"}}},stats={[1]="shocked_ground_effect_on_self_+%"}},[1395]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% increased Effect of Desecrated Ground on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Desecrated Ground on you"}}},stats={[1]="desecrated_ground_effect_on_self_+%"}},[1396]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Power Charge when an Enemy Interrupts you while you're Casting a Spell"}}},stats={[1]="add_power_charge_when_interrupted_while_casting"}},[1397]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Party members gain Endurance Charges whenever you do"}}},stats={[1]="share_endurance_charges_with_party_within_distance"}},[1398]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Party members gain Frenzy Charges whenever you do"}}},stats={[1]="share_frenzy_charges_with_party_within_distance"}},[1399]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Party members gain Power Charges whenever you do"}}},stats={[1]="share_power_charges_with_party_within_distance"}},[1400]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased total Recovery per second from Life Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced total Recovery per second from Life Leech"}}},stats={[1]="life_leech_speed_+%"}},[1401]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased total Recovery per second from Mana Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced total Recovery per second from Mana Leech"}}},stats={[1]="mana_leech_speed_+%"}},[1402]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased total Recovery per second from Energy Shield Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced total Recovery per second from Energy Shield Leech"}}},stats={[1]="energy_shield_leech_speed_+%"}},[1403]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Raised Zombies"}}},stats={[1]="base_number_of_zombies_allowed"}},[1404]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Spectres"}}},stats={[1]="base_number_of_spectres_allowed"}},[1405]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Skeletons"}}},stats={[1]="base_number_of_skeletons_allowed"}},[1406]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Raging Spirits"}}},stats={[1]="base_number_of_raging_spirits_allowed"}},[1407]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curses you Cast never expire"}}},stats={[1]="curses_never_expire"}},[1408]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Attack Hits"}}},stats={[1]="base_chance_to_dodge_%"}},[1409]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Spell Hits"}}},stats={[1]="base_chance_to_dodge_spells_%"}},[1410]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes all Armour"}}},stats={[1]="no_physical_damage_reduction_rating"}},[1411]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes all Energy Shield"}}},stats={[1]="no_energy_shield"}},[1412]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Provides Immunity to Chaos Damage"}}},stats={[1]="chaos_immunity"}},[1413]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You can apply an additional Curse"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You can apply %1% additional Curses"}}},stats={[1]="number_of_additional_curses_allowed"}},[1414]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="An additional Curse can be applied to you"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% additional Curses can be applied to you"}}},stats={[1]="number_of_additional_curses_allowed_on_self"}},[1415]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Curses on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Curses on you"}}},stats={[1]="curse_effect_on_self_+%"}},[1416]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Curses on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Curses on you"}}},stats={[1]="self_curse_duration_+%"}},[1417]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned"}}},stats={[1]="cannot_be_stunned"}},[1418]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned"}}},stats={[1]="base_cannot_be_stunned"}},[1419]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned when on Low Life"}}},stats={[1]="cannot_be_stunned_when_on_low_life"}},[1420]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Maximum Mana as Extra Maximum Energy Shield"}}},stats={[1]="mana_%_to_add_as_energy_shield"}},[1421]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="All Physical Damage Converted to Fire Damage"}}},stats={[1]="convert_all_physical_damage_to_fire"}},[1422]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Fire Damage against Ignited Enemies"}}},stats={[1]="physical_damage_as_fire_damage_vs_ignited_enemies_%"}},[1423]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Never deal Critical Strikes"}}},stats={[1]="global_cannot_crit"}},[1424]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes all Mana"}}},stats={[1]="no_mana"}},[1425]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignore all Movement Penalties from Armour"}}},stats={[1]="ignore_armour_movement_penalties"}},[1426]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Minions use your Flasks when summoned"}}},stats={[1]="minions_use_parents_flasks_on_summon"}},[1427]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Charges gained"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flask Charges gained"}}},stats={[1]="charges_gained_+%"}},[1428]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Charges used"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flask Charges used"}}},stats={[1]="flask_charges_used_+%"}},[1429]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Charges used from Mana Flasks"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flask Charges used from Mana Flasks"}}},stats={[1]="flask_mana_charges_used_+%"}},[1430]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Flask Charges used"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Flask Charges used"}}},stats={[1]="minion_flask_charges_used_+%"}},[1431]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flask Effect Duration"}}},stats={[1]="flask_duration_+%"}},[1432]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Flask Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Flask Effect Duration"}}},stats={[1]="flask_duration_on_minions_+%"}},[1433]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Life Recovery rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flask Life Recovery rate"}}},stats={[1]="flask_life_recovery_rate_+%"}},[1434]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Mana Recovery rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flask Mana Recovery rate"}}},stats={[1]="flask_mana_recovery_rate_+%"}},[1435]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot Resist Cold Damage"}}},stats={[1]="cannot_resist_cold_damage"}},[1436]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="All bonuses from an Equipped Shield apply to your Minions instead of you"}}},stats={[1]="minions_get_shield_stats_instead_of_you"}},[1437]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more maximum Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less maximum Energy Shield"}}},stats={[1]="chaos_inoculation_keystone_energy_shield_+%_final"}},[1438]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Spell Damage"}}},stats={[1]="pain_attunement_keystone_spell_damage_+%_final"}},[1439]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Elemental Equilibrium"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased effect of Elemental Equilibrium"}}},stats={[1]="elemental_equilibrium_effect_+%"}},[1440]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=0,[2]=0}},text="Enemies you Attack Reflect %1% Physical Damage to you"},[2]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=1,[2]="#"}},text="Enemies you Attack Reflect %1% to %2% Physical Damage to you"}}},stats={[1]="minimum_physical_damage_to_reflect_to_self_on_attack",[2]="maximum_physical_damage_to_reflect_to_self_on_attack"}},[1441]={lang={English={[1]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=0,[2]="#"}},text="Reflects %1% to %2% Physical Damage to Melee Attackers"}}},stats={[1]="minimum_physical_damage_to_return_to_melee_attacker",[2]="maximum_physical_damage_to_return_to_melee_attacker"}},[1442]={lang={English={[1]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=0,[2]="#"}},text="Reflects %1% to %2% Fire Damage to Melee Attackers"}}},stats={[1]="minimum_fire_damage_to_return_to_melee_attacker",[2]="maximum_fire_damage_to_return_to_melee_attacker"}},[1443]={lang={English={[1]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=0,[2]="#"}},text="Reflects %1% to %2% Cold Damage to Melee Attackers"}}},stats={[1]="minimum_cold_damage_to_return_to_melee_attacker",[2]="maximum_cold_damage_to_return_to_melee_attacker"}},[1444]={lang={English={[1]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=0,[2]="#"}},text="Reflects %1% to %2% Lightning Damage to Melee Attackers"}}},stats={[1]="minimum_lightning_damage_to_return_to_melee_attacker",[2]="maximum_lightning_damage_to_return_to_melee_attacker"}},[1445]={lang={English={[1]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=0,[2]="#"}},text="Reflects %1% to %2% Chaos Damage to Melee Attackers"}}},stats={[1]="minimum_chaos_damage_to_return_to_melee_attacker",[2]="maximum_chaos_damage_to_return_to_melee_attacker"}},[1446]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Physical Damage to Melee Attackers"}}},stats={[1]="physical_damage_to_return_to_melee_attacker"}},[1447]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Cold Damage to Melee Attackers"}}},stats={[1]="cold_damage_to_return_to_melee_attacker"}},[1448]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Fire Damage to Melee Attackers"}}},stats={[1]="fire_damage_to_return_to_melee_attacker"}},[1449]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Lightning Damage to Melee Attackers"}}},stats={[1]="lightning_damage_to_return_to_melee_attacker"}},[1450]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Chaos Damage to Melee Attackers"}}},stats={[1]="chaos_damage_to_return_to_melee_attacker"}},[1451]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Physical Damage when Hit"}}},stats={[1]="physical_damage_to_return_when_hit"}},[1452]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Fire Damage when Hit"}}},stats={[1]="fire_damage_to_return_when_hit"}},[1453]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Cold Damage when Hit"}}},stats={[1]="cold_damage_to_return_when_hit"}},[1454]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Lightning Damage when Hit"}}},stats={[1]="lightning_damage_to_return_when_hit"}},[1455]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Chaos Damage when Hit"}}},stats={[1]="chaos_damage_to_return_when_hit"}},[1456]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Physical Damage taken from Attack Hits"}}},stats={[1]="physical_damage_taken_when_hit_by_attack"}},[1457]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Fire Damage taken from Attack Hits"}}},stats={[1]="fire_damage_taken_when_hit_by_attack"}},[1458]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Cold Damage taken from Attack Hits"}}},stats={[1]="cold_damage_taken_when_hit_by_attack"}},[1459]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Lightning Damage taken from Attack Hits"}}},stats={[1]="lightning_damage_taken_when_hit_by_attack"}},[1460]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Chaos Damage taken from Attack Hits"}}},stats={[1]="chaos_damage_taken_when_hit_by_attack"}},[1461]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles deal %1%%% less Damage"}}},stats={[1]="active_skill_projectile_damage_+%_final"}},[1462]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Over Time caused by Projectiles deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Damage Over Time caused by Projectiles deals %1%%% less Damage"}}},stats={[1]="active_skill_damage_over_time_from_projectile_hits_+%_final"}},[1463]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional chance to Dodge Attack Hits"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1$+d%% chance to Dodge Attack Hits"}}},stats={[1]="acrobatics_additional_chance_to_dodge_%"}},[1464]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional chance to Dodge Spell Hits"}}},stats={[1]="phase_acrobatics_additional_chance_to_dodge_spells_%"}},[1465]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Skills deal you %1%%% of Mana Spent on Skill Mana Costs as Physical Damage"}}},stats={[1]="self_physical_damage_on_skill_use_%_mana_cost"}},[1466]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Curse Skills have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Curse Skills have %1%%% reduced Cast Speed"}}},stats={[1]="curse_cast_speed_+%"}},[1467]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Elemental Ailments you cause also affect other nearby Enemies"}}},stats={[1]="elemental_status_effect_aura_radius"}},[1468]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignites you inflict spread to other Enemies within a Radius of %1%"}}},stats={[1]="base_ignite_proliferation_radius"}},[1469]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Shocks you inflict spread to other Enemies within a Radius of %1%"}}},stats={[1]="base_shock_proliferation_radius"}},[1470]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect of Aura Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect of Aura Skills"}}},stats={[1]="base_aura_area_of_effect_+%"}},[1471]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect of Curse Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect of Curse Skills"}}},stats={[1]="curse_area_of_effect_+%"}},[1472]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Reserved"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Reserved"}}},stats={[1]="base_mana_reservation_+%"}},[1473]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Physical Damage taken from Attack Hits"}}},stats={[1]="physical_attack_damage_taken_+"}},[1474]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Physical Damage taken from Hits"}}},stats={[1]="physical_damage_taken_+"}},[1475]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Physical Damage taken from Hits per Level"}}},stats={[1]="physical_damage_taken_+_per_level"}},[1476]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Fire Damage taken from Hits"}}},stats={[1]="fire_damage_taken_+"}},[1477]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken"}}},stats={[1]="base_damage_taken_+%"}},[1478]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area Damage taken from Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area Damage taken from Hits"}}},stats={[1]="area_damage_taken_from_hits_+%"}},[1479]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Hits"}}},stats={[1]="damage_taken_+%_from_hits"}},[1480]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage taken"}}},stats={[1]="physical_damage_taken_+%"}},[1481]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage taken"}}},stats={[1]="fire_damage_taken_+%"}},[1482]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage taken"}}},stats={[1]="chaos_damage_taken_+%"}},[1483]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken while on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken while on Full Energy Shield"}}},stats={[1]="damage_taken_+%_while_es_full"}},[1484]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Damage Over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Damage Over Time"}}},stats={[1]="degen_effect_+%"}},[1485]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Physical Damage taken from Projectile Attacks"}}},stats={[1]="physical_ranged_attack_damage_taken_+"}},[1486]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Skeletons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Skeletons"}}},stats={[1]="damage_taken_+%_from_skeletons"}},[1487]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Ghosts"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Ghosts"}}},stats={[1]="damage_taken_+%_from_ghosts"}},[1488]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block"}}},stats={[1]="local_additional_block_chance_%"}},[1489]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can't deal Damage with your Skills yourself"}}},stats={[1]="deal_no_damage_yourself"}},[1490]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Summoned Totems"}}},stats={[1]="base_number_of_totems_allowed"}},[1491]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% Trap placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Traps placed at a time"}}},stats={[1]="base_number_of_traps_allowed"}},[1492]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% Remote Mine placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Remote Mines placed at a time"}}},stats={[1]="base_number_of_remote_mines_allowed"}},[1493]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Summoned Totems"}}},stats={[1]="number_of_additional_totems_allowed"}},[1494]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% additional Trap placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% additional Traps placed at a time"}}},stats={[1]="number_of_additional_traps_allowed"}},[1495]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% additional Remote Mine placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% additional Remote Mines placed at a time"}}},stats={[1]="number_of_additional_remote_mines_allowed"}},[1496]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Block Attacks"}}},stats={[1]="cannot_block_attacks"}},[1497]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction when on Low Life"}}},stats={[1]="additional_physical_damage_reduction_%_when_on_low_life"}},[1498]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Share Endurance Charges with nearby party members"}}},stats={[1]="endurance_only_conduit"}},[1499]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Share Frenzy Charges with nearby party members"}}},stats={[1]="frenzy_only_conduit"}},[1500]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Share Power Charges with nearby party members"}}},stats={[1]="power_only_conduit"}},[1501]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Blind Enemies on hit"}}},stats={[1]="local_chance_to_blind_on_hit_%"}},[1502]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=100,[2]="#"}},text="Grants Fortify on Melee hit"},[2]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Fortify on Melee hit"}}},stats={[1]="chance_to_fortify_on_melee_hit_+%"}},[1503]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fortify duration"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fortify duration"}}},stats={[1]="fortify_duration_+%"}},[1504]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fortify Buffs you create instead grant 30%% more Evasion Rating"}}},stats={[1]="should_use_alternate_fortify"}},[1505]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while you have Fortify"}}},stats={[1]="attack_and_cast_speed_+%_while_you_have_fortify"}},[1506]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fortify Effect"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fortify Effect"}}},stats={[1]="fortify_effect_+%"}},[1507]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage while you have Fortify"}}},stats={[1]="melee_physical_damage_+%_while_fortify_is_active"}},[1508]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You have no Life Regeneration"}}},stats={[1]="no_life_regeneration"}},[1509]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You have no Mana Regeneration"}}},stats={[1]="no_mana_regeneration"}},[1510]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction"}}},stats={[1]="base_additional_physical_damage_reduction_%"}},[1511]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% additional Physical Damage Reduction"}}},stats={[1]="minion_additional_physical_damage_reduction_%"}},[1512]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction per Endurance Charge"}}},stats={[1]="physical_damage_reduction_%_per_endurance_charge"}},[1513]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is %1%%% larger"}}},stats={[1]="map_size_+%"}},[1514]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is a Maze"}}},stats={[1]="map_is_branchy"}},[1515]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains unbridged gaps to cross"}}},stats={[1]="map_display_area_contains_unbridged_gaps_to_cross"}},[1516]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has increased monster variety"}}},stats={[1]="map_additional_number_of_packs_to_choose"}},[1517]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of burning ground"}}},stats={[1]="map_base_ground_fire_damage_to_deal_per_minute"}},[1518]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of burning ground"}}},stats={[1]="map_base_ground_fire_damage_to_deal_per_10_seconds"}},[1519]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]="#"}},text="Area has patches of chilled ground"}}},stats={[1]="map_ground_ice"}},[1520]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]="#"}},text="Area has patches of chilled ground"}}},stats={[1]="map_ground_ice_base_magnitude"}},[1521]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of shocking ground"}}},stats={[1]="map_ground_lightning"}},[1522]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of shocking ground"}}},stats={[1]="map_ground_lightning_base_magnitude"}},[1523]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of tar"}}},stats={[1]="map_ground_tar_movement_speed_+%"}},[1524]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of desecrated ground"}}},stats={[1]="map_base_ground_desecration_damage_to_deal_per_minute"}},[1525]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of burning ground"}}},stats={[1]="map_tempest_base_ground_fire_damage_to_deal_per_minute"}},[1526]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]="#"}},text="Area has patches of chilled ground"}}},stats={[1]="map_tempest_ground_ice"}},[1527]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of shocking ground"}}},stats={[1]="map_tempest_ground_lightning"}},[1528]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of tar"}}},stats={[1]="map_tempest_ground_tar_movement_speed_+%"}},[1529]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of desecrated ground"}}},stats={[1]="map_tempest_base_ground_desecration_damage_to_deal_per_minute"}},[1530]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Areas Have the Same Layout for all Players"}}},stats={[1]="map_fixed_seed"}},[1531]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minimap is Revealed"}}},stats={[1]="map_minimap_revealed"}},[1532]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Life, Mana, Energy Shield and Flasks are not refilled in Towns"}}},stats={[1]="map_no_refills_in_town"}},[1533]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains many Totems"}}},stats={[1]="map_packs_are_totems"}},[1534]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has Damaging Totems"}}},stats={[1]="map_packs_are_str_mission_totems"}},[1535]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Skeletons"}}},stats={[1]="map_packs_are_skeletons"}},[1536]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Bandits"}}},stats={[1]="map_packs_are_bandits"}},[1537]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Goatmen"}}},stats={[1]="map_packs_are_goatmen"}},[1538]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Animals"}}},stats={[1]="map_packs_are_animals"}},[1539]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Demons"}}},stats={[1]="map_packs_are_demons"}},[1540]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Humanoids"}}},stats={[1]="map_packs_are_humanoids"}},[1541]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Sea Witches and their Spawn"}}},stats={[1]="map_packs_are_sea_witches_and_spawn"}},[1542]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Undead"}}},stats={[1]="map_packs_are_undead_and_necromancers"}},[1543]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by ranged monsters"}}},stats={[1]="map_packs_fire_projectiles"}},[1544]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by wild Animals"}}},stats={[1]="display_map_inhabited_by_wild_beasts"}},[1545]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Unique Boss drops an additional Map"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Unique Boss drops %1% additional Maps"}}},stats={[1]="map_display_unique_boss_drops_X_maps"}},[1546]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Map areas are +%1% Tier"}}},stats={[1]="map_additional_tier"}},[1547]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area is inhabited by %1% additional Rogue Exile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area is inhabited by %1% additional Rogue Exiles"}}},stats={[1]="map_spawn_extra_exiles"}},[1548]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Map areas have Warlord's Influence"}}},stats={[1]="map_warlord_influence"}},[1549]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area is inhabited by %1% additional Warband"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area is inhabited by %1% additional Warbands"}}},stats={[1]="map_spawn_extra_warbands"}},[1550]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an extra Shrine"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% extra Shrines"}}},stats={[1]="map_num_extra_shrines"}},[1551]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Shrines are corrupted by Darkness"}}},stats={[1]="map_shrines_are_darkshrines"}},[1552]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area can contain Mysterious Harbingers"}}},stats={[1]="map_spawn_harbingers"}},[1553]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Ancient Talismans possess monsters throughout Wraeclast"}}},stats={[1]="map_spawn_talismans"}},[1554]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Caches of Perandus wealth can be found throughout Wraeclast"}}},stats={[1]="map_spawn_perandus_chests"}},[1555]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains %1% additional Monster possessed by an Ancient Talisman"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Monsters possessed by Ancient Talismans"}}},stats={[1]="map_spawn_extra_talismans"}},[1556]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Stone Circle"}}},stats={[1]="map_force_stone_circle"}},[1557]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area is haunted by %1% additional Tormented Spirit"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area is haunted by %1% additional Tormented Spirits"}}},stats={[1]="map_spawn_extra_torment_spirits"}},[1558]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an extra Strongbox"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% extra Strongboxes"}}},stats={[1]="map_num_extra_strongboxes"}},[1559]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Magic Monsters"}}},stats={[1]="map_number_of_magic_packs_+%"}},[1560]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Rare Monsters"}}},stats={[1]="map_number_of_rare_packs_+%"}},[1561]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters Fracture"}}},stats={[1]="map_non_unique_monsters_spawn_X_monsters_on_death"}},[1562]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Players take %1% Chaos Damage per second"}}},stats={[1]="map_player_base_chaos_damage_taken_per_minute"}},[1563]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have Blood Magic"}}},stats={[1]="map_player_has_blood_magic_keystone"}},[1564]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have Elemental Equilibrium"}}},stats={[1]="map_player_has_elemental_equilibrium_keystone"}},[1565]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have Chaos Inoculation"}}},stats={[1]="map_player_has_chaos_inoculation_keystone"}},[1566]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Vulnerability"}}},stats={[1]="map_player_has_level_X_vulnerability"}},[1567]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Warlord's Mark"}}},stats={[1]="map_player_has_level_X_warlords_mark"}},[1568]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Enfeeble"}}},stats={[1]="map_player_has_level_X_enfeeble"}},[1569]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Temporal Chains"}}},stats={[1]="map_player_has_level_X_temporal_chains"}},[1570]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Elemental Weakness"}}},stats={[1]="map_player_has_level_X_elemental_weakness"}},[1571]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Punishment"}}},stats={[1]="map_player_has_level_X_punishment"}},[1572]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have no Life or Mana Regeneration"}}},stats={[1]="map_player_no_regeneration"}},[1573]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% maximum Player Resistances"}}},stats={[1]="map_additional_player_maximum_resistances_%"}},[1574]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% more Recovery of Life, Mana and Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% less Recovery of Life, Mana and Energy Shield"}}},stats={[1]="map_player_status_recovery_speed_+%"}},[1575]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players deal %1%%% less Projectile Damage"}}},stats={[1]="map_player_projectile_damage_+%_final"}},[1576]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players convert all Physical Damage to Fire"}}},stats={[1]="map_players_convert_all_physical_damage_to_fire"}},[1577]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles move at %1%%% increased Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles move at %1%%% reduced Speed"}}},stats={[1]="map_projectile_speed_+%"}},[1578]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Monster Life"}}},stats={[1]="map_monsters_life_+%"}},[1579]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters have %1%%% reduced Area of Effect"}}},stats={[1]="map_monsters_area_of_effect_+%"}},[1580]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Monsters have %1%%% chance to Avoid being Chilled or Frozen"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Monsters cannot be Chilled or Frozen"}}},stats={[1]="map_monsters_avoid_freeze_and_chill_%"}},[1581]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Monsters have %1%%% chance to Avoid being Ignited"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Monsters cannot be Ignited"}}},stats={[1]="map_monsters_avoid_ignite_%"}},[1582]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Monsters have %1%%% chance to Avoid being Shocked"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Monsters cannot be Shocked"}}},stats={[1]="map_monsters_avoid_shock_%"}},[1583]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]=99}},text="Monsters have %1%%% chance to Avoid Ailments"},[2]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=100,[2]="#"}},text="Monsters cannot be affected by Ailments"}}},stats={[1]="map_monsters_avoid_ailments_%"}},[1584]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]=99}},text="Monsters have %1%%% chance to Avoid Elemental Ailments"},[2]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=100,[2]="#"}},text="Monsters cannot be affected by Elemental Ailments"}}},stats={[1]="map_monsters_avoid_elemental_ailments_%"}},[1585]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters have %1%%% reduced Critical Strike Chance"}}},stats={[1]="map_monsters_critical_strike_chance_+%"}},[1586]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Monster Critical Strike Multiplier"}}},stats={[1]="map_monsters_critical_strike_multiplier_+"}},[1587]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1$+d%% Monster Life Leech Resistance"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot Leech Life from Monsters"}}},stats={[1]="map_monsters_life_leech_resistance_%"}},[1588]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1$+d%% Monster Mana Leech Resistance"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot Leech Mana from Monsters"}}},stats={[1]="map_monsters_mana_leech_resistance_%"}},[1589]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Monster Damage"}}},stats={[1]="map_monsters_damage_+%"}},[1590]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Monsters have Onslaught"}}},stats={[1]="map_monsters_have_onslaught"}},[1591]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Monster Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Monster Movement Speed"}}},stats={[1]="map_monsters_movement_speed_+%"}},[1592]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Monster Attack Speed"}}},stats={[1]="map_monsters_attack_speed_+%"}},[1593]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Monster Cast Speed"}}},stats={[1]="map_monsters_cast_speed_+%"}},[1594]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters reflect %1%%% of Physical Damage"}}},stats={[1]="map_monsters_reflect_%_physical_damage"}},[1595]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters reflect %1%%% of Elemental Damage"}}},stats={[1]="map_monsters_reflect_%_elemental_damage"}},[1596]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Monsters fire %1% additional Projectiles"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Players fire %2% additional Projectiles"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Players and Monsters fire %1% additional Projectiles"}}},stats={[1]="map_monsters_additional_number_of_projecitles",[2]="map_players_additional_number_of_projectiles"}},[1597]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1%%% Monster Fire Resistance"}}},stats={[1]="map_monsters_additional_fire_resistance"}},[1598]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1%%% Monster Cold Resistance"}}},stats={[1]="map_monsters_additional_cold_resistance"}},[1599]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1%%% Monster Lightning Resistance"}}},stats={[1]="map_monsters_additional_lightning_resistance"}},[1600]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1%%% Monster Physical Damage Reduction"}}},stats={[1]="map_monsters_additional_physical_damage_reduction"}},[1601]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters cannot be Stunned"}}},stats={[1]="map_monsters_cannot_be_stunned"}},[1602]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Monsters Poison on Hit"}}},stats={[1]="map_monsters_poison_on_hit"}},[1603]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Monster Damage is Converted to Fire"}}},stats={[1]="map_monsters_%_physical_damage_to_convert_to_fire"}},[1604]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Monster Damage is Converted to Cold"}}},stats={[1]="map_monsters_%_physical_damage_to_convert_to_cold"}},[1605]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Monster Damage is Converted to Lightning"}}},stats={[1]="map_monsters_%_physical_damage_to_convert_to_lightning"}},[1606]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters deal %1%%% extra Damage as Fire"}}},stats={[1]="map_monsters_%_physical_damage_to_add_as_fire"}},[1607]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters deal %1%%% extra Damage as Cold"}}},stats={[1]="map_monsters_%_physical_damage_to_add_as_cold"}},[1608]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters deal %1%%% extra Damage as Lightning"}}},stats={[1]="map_monsters_%_physical_damage_to_add_as_lightning"}},[1609]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters deal extra Chaos Damage"}}},stats={[1]="map_monsters_%_physical_damage_to_convert_to_chaos"}},[1610]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters gain %1% Frenzy Charge every 20 seconds"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Monsters gain %1% Frenzy Charges every 20 seconds"}}},stats={[1]="map_monsters_gain_x_frenzy_charges_every_20_seconds"}},[1611]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters gain %1% Endurance Charge every 20 seconds"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Monsters gain %1% Endurance Charges every 20 seconds"}}},stats={[1]="map_monsters_gain_x_endurance_charges_every_20_seconds"}},[1612]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters gain %1% Power Charge every 20 seconds"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Monsters gain %1% Power Charges every 20 seconds"}}},stats={[1]="map_monsters_gain_x_power_charges_every_20_seconds"}},[1613]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Monsters are Immune to randomly chosen Elemental Ailments or Stun"}}},stats={[1]="map_monsters_immune_to_a_random_status_ailment_or_stun"}},[1614]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters' Melee Attacks apply random Curses on Hit"}}},stats={[1]="map_monster_melee_attacks_apply_random_curses"}},[1615]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters reflect Curses"}}},stats={[1]="map_monsters_reflect_curses"}},[1616]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters' skills Chain %1% additional times"}}},stats={[1]="map_monster_skills_chain_X_additional_times"}},[1617]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters convert all Physical Damage to Fire"}}},stats={[1]="map_monsters_convert_all_physical_damage_to_fire"}},[1618]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters drop Burning Ground on death"}}},stats={[1]="map_monsters_drop_ground_fire_on_death_base_radius"}},[1619]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters are Immune to Curses"}}},stats={[1]="map_monsters_are_immune_to_curses"}},[1620]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters are Hexproof"}}},stats={[1]="map_monsters_are_hexproof"}},[1621]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Curses have %1%%% increased effect on Monsters"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Curses have %1%%% reduced effect on Monsters"}}},stats={[1]="map_monsters_curse_effect_+%"}},[1622]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters drop no items"}}},stats={[1]="map_monster_no_drops"}},[1623]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains two Unique Bosses"}}},stats={[1]="map_spawn_two_bosses"}},[1624]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss deals %1%%% increased Damage"}}},stats={[1]="map_boss_damage_+%"}},[1625]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss has %1%%% increased Attack and Cast Speed"}}},stats={[1]="map_boss_attack_and_cast_speed_+%"}},[1626]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss has %1%%% increased Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Unique Boss has %1%%% reduced Life"}}},stats={[1]="map_boss_maximum_life_+%"}},[1627]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Unique Boss has %1%%% reduced Area of Effect"}}},stats={[1]="map_boss_area_of_effect_+%"}},[1628]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chests have %1%%% increased Item Quantity"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Chests have %1%%% reduced Item Quantity"}}},stats={[1]="map_chest_item_quantity_+%"}},[1629]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chests have %1%%% increased Item Rarity"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Chests have %1%%% reduced Item Rarity"}}},stats={[1]="map_chest_item_rarity_+%"}},[1630]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has %1% waves of monsters"}}},stats={[1]="map_has_X_waves_of_monsters"}},[1631]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has %1% seconds between monster waves"}}},stats={[1]="map_has_X_seconds_between_waves"}},[1632]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains no monsters"}}},stats={[1]="display_map_no_monsters"}},[1633]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Physical Damage with Unarmed Attacks"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Physical Damage with Unarmed Attacks"}}},stats={[1]="unique_facebreaker_unarmed_physical_damage_+%_final"}},[1634]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Unarmed Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_while_unarmed",[2]="attack_maximum_added_lightning_damage_while_unarmed"}},[1635]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmed"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells while Unarmed"}}},stats={[1]="spell_minimum_added_lightning_damage_while_unarmed",[2]="spell_maximum_added_lightning_damage_while_unarmed"}},[1636]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Reserves %1%%% of Life"}}},stats={[1]="life_reserved_by_stat_%"}},[1637]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Cannot Leech Life From you"}}},stats={[1]="cannot_have_life_leeched_from"}},[1638]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Cannot Leech Mana From you"}}},stats={[1]="cannot_have_mana_leeched_from"}},[1639]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% More Damage with Arrow Hits at Close Range"}}},stats={[1]="unique_chin_sol_close_range_bow_damage_+%_final"}},[1640]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]="#",[2]="#"}},text="Bow Knockback at Close Range"}}},stats={[1]="unique_chin_sol_close_range_knockback"}},[1641]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage from Hits taken as Physical Damage"}}},stats={[1]="base_fire_hit_damage_taken_%_as_physical"}},[1642]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% of Fire Damage from Hits taken as Physical Damage"}}},stats={[1]="base_fire_hit_damage_taken_%_as_physical_value_negated"}},[1643]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Fire Damage"}}},stats={[1]="physical_damage_taken_%_as_fire"}},[1644]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Cold Damage"}}},stats={[1]="physical_damage_taken_%_as_cold"}},[1645]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Lightning Damage"}}},stats={[1]="physical_damage_taken_%_as_lightning"}},[1646]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You take Chaos Damage instead of Physical Damage from Bleeding"}}},stats={[1]="bleeding_damage_on_self_converted_to_chaos"}},[1647]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Chaos Damage"}}},stats={[1]="physical_damage_taken_%_as_chaos"}},[1648]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Elemental Damage from Hits taken as Chaos Damage"}}},stats={[1]="elemental_damage_taken_%_as_chaos"}},[1649]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Fire Damage taken causes extra Physical Damage"}}},stats={[1]="fire_damage_taken_%_causes_additional_physical_damage"}},[1650]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage taken gained as Mana over 4 seconds when Hit"}}},stats={[1]="damage_taken_goes_to_mana_%"}},[1651]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage"}}},stats={[1]="unique_quill_rain_damage_+%_final"}},[1652]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Melee Physical Damage taken reflected to Attacker"}}},stats={[1]="melee_physical_damage_taken_%_to_deal_to_attacker"}},[1653]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage"}}},stats={[1]="additional_block_%"}},[1654]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage for 2 seconds every 5 seconds"}}},stats={[1]="additional_block_chance_%_for_1_second_every_5_seconds"}},[1655]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while wielding a Bow"}}},stats={[1]="with_bow_additional_block_%"}},[1656]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Frozen by you take 20%% increased Damage"}}},stats={[1]="frozen_monsters_take_increased_damage"}},[1657]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Enemies take %1%%% increased Damage for each type of Ailment you have inflicted on them"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="Enemies take %1%%% reduced Damage for each type of Ailment you have inflicted on them"}}},stats={[1]="ailment_types_apply_damage_taken_+%"}},[1658]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour against Projectiles"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour against Projectiles"}}},stats={[1]="physical_damage_reduction_rating_+%_against_projectiles"}},[1659]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Projectile Attack Damage"}}},stats={[1]="additional_block_chance_against_projectiles_%"}},[1660]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Leech"}}},stats={[1]="base_cannot_leech"}},[1661]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]=1,[2]="#"}},text="Your Attacks deal %1$+d Physical Damage"}}},stats={[1]="unique_dewaths_hide_physical_attack_damage_dealt_-"}},[1662]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Energy Shield when you Block"}}},stats={[1]="energy_shield_%_gained_on_block"}},[1663]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Replenishes Energy Shield by %1%%% of Armour when you Block"}}},stats={[1]="energy_shield_%_of_armour_rating_gained_on_block"}},[1664]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Poisonous Hit"}}},stats={[1]="local_poison_on_hit"}},[1665]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowMana"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage taken when on Low Mana"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowMana"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage taken when on Low Mana"}}},stats={[1]="spell_damage_taken_+%_when_on_low_mana"}},[1666]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Critical Strike Chance while wielding a Staff"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Critical Strike Chance while wielding a Staff"}}},stats={[1]="global_critical_strike_chance_+%_while_holding_staff"}},[1667]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Global Critical Strike Multiplier while wielding a Staff"}}},stats={[1]="global_critical_strike_multiplier_+_while_holding_staff"}},[1668]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Critical Strike Chance while wielding a Bow"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Critical Strike Chance while wielding a Bow"}}},stats={[1]="global_critical_strike_chance_+%_while_holding_bow"}},[1669]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Global Critical Strike Multiplier while wielding a Bow"}}},stats={[1]="global_critical_strike_multiplier_+_while_holding_bow"}},[1670]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Reflection"}}},stats={[1]="reflect_curses"}},[1671]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Curses"}}},stats={[1]="unaffected_by_curses"}},[1672]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attacks deal no Physical Damage"}}},stats={[1]="attacks_deal_no_physical_damage"}},[1673]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Causes Bleeding on Hit"}}},stats={[1]="local_bleed_on_hit"}},[1674]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="25%% chance to cause Bleeding on Hit"}}},stats={[1]="local_chance_to_bleed_on_hit_25%"}},[1675]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="50%% chance to cause Bleeding on Hit"}}},stats={[1]="local_chance_to_bleed_on_hit_50%"}},[1676]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to cause Bleeding on Hit"}}},stats={[1]="local_chance_to_bleed_on_hit_%"}},[1677]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Causes Bleeding when you Stun"}}},stats={[1]="attacks_bleed_on_stun"}},[1678]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to inflict Bleeding on Critical Strike with Attacks"}}},stats={[1]="bleed_on_crit_%_with_attacks"}},[1679]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99}},text="Melee Critical Strikes have %1%%% chance to cause Bleeding"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"}},text="Melee Critical Strikes cause Bleeding"}}},stats={[1]="bleed_on_melee_crit_chance_%"}},[1680]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99}},text="Melee Attacks have %1%%% chance to cause Bleeding"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"}},text="Melee Attacks cause Bleeding"}}},stats={[1]="bleed_on_melee_attack_chance_%"}},[1681]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99}},text="Bow Attacks have %1%%% chance to cause Bleeding"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"}},text="Bow Attacks cause Bleeding"}}},stats={[1]="bleed_on_bow_attack_chance_%"}},[1682]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Attacks have %1%%% chance to cause Bleeding"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Attacks cause Bleeding"},[3]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0}},text="Attacks cause Bleeding"},[4]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Attacks cannot cause Bleeding"}}},stats={[1]="bleed_on_hit_with_attacks_%",[2]="global_bleed_on_hit",[3]="cannot_cause_bleeding"}},[1683]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage against Bleeding Enemies"}}},stats={[1]="attack_damage_vs_bleeding_enemies_+%"}},[1684]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage against Bleeding Enemies"}}},stats={[1]="melee_damage_vs_bleeding_enemies_+%"}},[1685]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies you inflict Bleeding on grant %1%%% increased Flask Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies you inflict Bleeding on grant %1%%% reduced Flask Charges"}}},stats={[1]="enemies_you_bleed_grant_flask_charges_+%"}},[1686]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage against Bleeding Enemies"}}},stats={[1]="minimum_added_physical_damage_vs_bleeding_enemies",[2]="maximum_added_physical_damage_vs_bleeding_enemies"}},[1687]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Golden Radiance"}}},stats={[1]="display_golden_radiance"}},[1688]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Attack Skills cannot be used with Melee Weapons"}}},stats={[1]="disable_skill_if_melee_attack"}},[1689]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Stun Threshold with this Weapon"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Enemy Stun Threshold with this Weapon"}}},stats={[1]="local_stun_threshold_reduction_+%"}},[1690]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Light Radius also apply to Area of Effect at %1%%% of their value"}}},stats={[1]="light_radius_additive_modifiers_apply_to_area_%_value"}},[1691]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Light Radius also apply to Damage"}}},stats={[1]="light_radius_additive_modifiers_apply_to_damage"}},[1692]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Light Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Light Radius"}}},stats={[1]="light_radius_+%"}},[1693]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Light Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Light Radius"}}},stats={[1]="virtual_light_radius_+%"}},[1694]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]="#",[2]="#"}},text="You have Phasing while at maximum Frenzy Charges"}}},stats={[1]="gain_phasing_while_at_maximum_frenzy_charges"}},[1695]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]="#",[2]="#"}},text="You have Phasing during Onslaught"}}},stats={[1]="gain_phasing_while_you_have_onslaught"}},[1696]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You have Phasing if Energy Shield Recharge has started Recently"}}},stats={[1]="gain_phasing_for_4_seconds_on_begin_es_recharge"}},[1697]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits while Phasing"}}},stats={[1]="chance_to_dodge_attacks_%_while_phasing"}},[1698]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Rarity of Items found while Phasing"}}},stats={[1]="item_found_rarity_+%_while_phasing"}},[1699]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate while Phasing"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate while Phasing"}}},stats={[1]="mana_regeneration_rate_+%_while_phasing"}},[1700]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Light Radius while Phasing"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Light Radius while Phasing"}}},stats={[1]="light_radius_+%_while_phased"}},[1701]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chaos Damage does not bypass Energy Shield"}}},stats={[1]="chaos_damage_does_not_bypass_energy_shield"}},[1702]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextGroundTar"},limit={[1]={[1]="#",[2]="#"}},text="Spreads Tar when you take a Critical Strike"}}},stats={[1]="ground_tar_on_take_crit_base_area_of_effect_radius"}},[1703]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Curse Enemies with a random Curse on Hit"}}},stats={[1]="random_curse_on_hit_%"}},[1704]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Curse Enemies with Enfeeble on Hit"}}},stats={[1]="curse_on_hit_%_enfeeble"}},[1705]={lang={English={[1]={limit={[1]={[1]=100,[2]=100}},text="Curse Enemies with Temporal Chains on Hit"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Curse Enemies with Temporal Chains on Hit"}}},stats={[1]="curse_on_hit_%_temporal_chains"}},[1706]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Temporal Chains on Hit"}}},stats={[1]="curse_on_hit_level_temporal_chains"}},[1707]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Vulnerability on Hit"}}},stats={[1]="curse_on_hit_level_vulnerability"}},[1708]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Curse Enemies with Level 10 Vulnerability on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Curse Enemies with Level 10 Vulnerability on Hit"}}},stats={[1]="curse_on_hit_level_10_vulnerability_%"}},[1709]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Elemental Weakness on Hit"}}},stats={[1]="curse_on_hit_level_elemental_weakness"}},[1710]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Assassin's Mark on Hit"}}},stats={[1]="curse_on_hit_level_assassins_mark"}},[1711]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Frostbite on Hit"}}},stats={[1]="curse_on_hit_level_cold_weakness"}},[1712]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Curse Enemies with Level %1% Conductivity on Hit"}}},stats={[1]="curse_on_hit_level_conductivity"}},[1713]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Despair on Hit"}}},stats={[1]="curse_on_hit_level_despair"}},[1714]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Enfeeble on Hit"}}},stats={[1]="curse_on_hit_level_enfeeble"}},[1715]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Curse Enemies with Level %1% Flammability on Hit"}}},stats={[1]="curse_on_hit_level_flammability"}},[1716]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Curse Enemies with Level %1% Frostbite on Hit"}}},stats={[1]="curse_on_hit_level_frostbite"}},[1717]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Poacher's Mark on Hit"}}},stats={[1]="curse_on_hit_level_poachers_mark"}},[1718]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Projectile Weakness on Hit"}}},stats={[1]="curse_on_hit_level_projectile_weakness"}},[1719]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Warlord's Mark on Hit"}}},stats={[1]="curse_on_hit_level_warlords_mark"}},[1720]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]="#",[2]="#"}},text="Your Spells have Culling Strike"}}},stats={[1]="spells_have_culling_strike"}},[1721]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]="#",[2]="#"}},text="Nearby Allies have Culling Strike"}}},stats={[1]="local_display_aura_allies_have_culling_strike"}},[1722]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Weapon and Unarmed Attack range"}}},stats={[1]="melee_range_+"}},[1723]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Evasion Rating when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Evasion Rating when on Low Life"}}},stats={[1]="evasion_rating_+%_when_on_low_life"}},[1724]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Life Leech is instant"}}},stats={[1]="base_life_leech_is_instant"}},[1725]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Life Leech from Hits with this Weapon is instant"}}},stats={[1]="local_life_leech_is_instant"}},[1726]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Life and Mana Leech from Critical Strikes are instant"}}},stats={[1]="base_leech_is_instant_on_critical"}},[1727]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Life and Mana Leech from Critical Strikes are instant"}}},stats={[1]="unqiue_atzitis_acuity_instant_leech_60%_effectiveness_on_crit"}},[1728]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Restless Dead"}}},stats={[1]="display_map_restless_dead"}},[1729]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is a large Maze"}}},stats={[1]="display_map_larger_maze"}},[1730]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Large Chest"}}},stats={[1]="display_map_large_chest"}},[1731]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per 20 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per 20 Intelligence"}}},stats={[1]="area_of_effect_+%_per_20_int"}},[1732]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed per 10 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed per 10 Dexterity"}}},stats={[1]="attack_speed_+%_per_10_dex"}},[1733]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Weapon Damage per 10 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Weapon Damage per 10 Strength"}}},stats={[1]="physical_weapon_damage_+%_per_10_str"}},[1734]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits per Frenzy Charge"}}},stats={[1]="chance_to_dodge_%_per_frenzy_charge"}},[1735]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Power Charge for each Enemy you hit with a Critical Strike"}}},stats={[1]="gain_power_charge_per_enemy_you_crit"}},[1736]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Burning Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Burning Damage taken"}}},stats={[1]="burning_damage_taken_+%"}},[1737]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot increase the Rarity of Items found"}}},stats={[1]="cannot_increase_rarity_of_dropped_items"}},[1738]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot increase the Quantity of Items found"}}},stats={[1]="cannot_increase_quantity_of_dropped_items"}},[1739]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Inflicts a random Level %1% Curse on you when your Totems die"}}},stats={[1]="randomly_cursed_when_totems_die_curse_level"}},[1740]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]=1,[2]="#"}},text="Items and Gems have %1%%% increased Attribute Requirements"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]=-1}},text="Items and Gems have %1%%% reduced Attribute Requirements"}}},stats={[1]="global_item_attribute_requirements_+%"}},[1741]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemy hits on you roll low Damage"}}},stats={[1]="enemy_hits_roll_low_damage"}},[1742]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Emits a golden glow"}}},stats={[1]="unique_loris_lantern_golden_light"}},[1743]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Resistance when on Low Life"}}},stats={[1]="chaos_damage_resistance_%_when_on_low_life"}},[1744]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},[2]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]=1,[2]="#"}},text="Damage from Enemies Hitting you is Lucky while you are on Low Life"},[2]={[1]={k="reminderstring",v="ReminderTextLowLife"},[2]={k="reminderstring",v="ReminderTextUnlucky"},limit={[1]={[1]="#",[2]=-1}},text="Damage from Enemies Hitting you is Unlucky while you are on Low Life"}}},stats={[1]="enemy_extra_damage_rolls_when_on_low_life"}},[1745]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deal %1% to %2% Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge"}}},stats={[1]="base_minimum_lightning_damage_on_charge_expiry",[2]="base_maximum_lightning_damage_on_charge_expiry"}},[1746]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Item drops on death"}}},stats={[1]="item_drops_on_death"}},[1747]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Item drops on Death if Equipped by an Animated Guardian"}}},stats={[1]="local_item_drops_on_death_if_equipped_by_animate_armour"}},[1748]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot inflict Ignite"}}},stats={[1]="never_ignite"}},[1749]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot inflict Freeze"}}},stats={[1]="never_freeze"}},[1750]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot inflict Freeze or Chill"}}},stats={[1]="never_freeze_or_chill"}},[1751]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot inflict Shock"}}},stats={[1]="never_shock"}},[1752]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDealsDamageFaster"},limit={[1]={[1]="#",[2]="#"}},text="Ignites you inflict deal Damage %1%%% faster"}}},stats={[1]="faster_burn_%"}},[1753]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignited Enemies Burn %1%%% slower"}}},stats={[1]="ignite_slower_burn_%"}},[1754]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDealsDamageFaster"},limit={[1]={[1]="#",[2]="#"}},text="Ignites you inflict with Attacks deal Damage %1%%% faster"}}},stats={[1]="faster_burn_from_attacks_%"}},[1755]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Leech Life"}}},stats={[1]="base_cannot_leech_life"}},[1756]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Leech Mana"}}},stats={[1]="base_cannot_leech_mana"}},[1757]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Leech or Regenerate Mana"}}},stats={[1]="cannot_leech_or_regenerate_mana"}},[1758]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="Cannot Leech when on Low Life"}}},stats={[1]="cannot_leech_when_on_low_life"}},[1759]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Energy Shield gained on Kill"}}},stats={[1]="base_energy_shield_gained_on_enemy_death"}},[1760]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Energy Shield gained on Killing a Shocked Enemy"}}},stats={[1]="gain_X_energy_shield_on_killing_shocked_enemy"}},[1761]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to create Consecrated Ground when you Block"}}},stats={[1]="consecrate_on_block_%_chance_to_create"}},[1762]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDesecratedGround"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to create Desecrated Ground when you Block"}}},stats={[1]="desecrate_on_block_%_chance_to_create"}},[1763]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Blind"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Blinded"}}},stats={[1]="avoid_blind_%"}},[1764]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSmokeCloud"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to create a Smoke Cloud when Hit"},[2]={[1]={k="reminderstring",v="ReminderTextSmokeCloud"},limit={[1]={[1]=100,[2]=100}},text="Create a Smoke Cloud when Hit"}}},stats={[1]="ground_smoke_when_hit_%"}},[1765]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to create Shocked Ground when Hit"},[2]={limit={[1]={[1]=100,[2]=100}},text="Create Shocked Ground when Hit"}}},stats={[1]="shocked_ground_when_hit_%"}},[1766]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Totem Placement speed"}}},stats={[1]="summon_totem_cast_speed_+%"}},[1767]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spells Cast by Totems have %1%%% increased Cast Speed"}}},stats={[1]="totem_skill_cast_speed_+%"}},[1768]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attacks used by Totems have %1%%% increased Attack Speed"}}},stats={[1]="totem_skill_attack_speed_+%"}},[1769]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Area of Effect for Skills used by Totems"}}},stats={[1]="totem_skill_area_of_effect_+%"}},[1770]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage Leeched as Life for Skills used by Totems"}}},stats={[1]="life_leech_from_skills_used_by_totems_permyriad"}},[1771]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can't use Chest armour"}}},stats={[1]="disable_chest_slot"}},[1772]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Claw Physical Damage when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Claw Physical Damage when on Low Life"}}},stats={[1]="physical_claw_damage_+%_when_on_low_life"}},[1773]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating when on Low Life"}}},stats={[1]="accuracy_rating_+%_when_on_low_life"}},[1774]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=0,[2]=0}},text="Reflects %1% Physical Damage to Attackers on Block"},[2]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=1,[2]="#"}},text="Reflects %1% to %2% Physical Damage to Attackers on Block"}}},stats={[1]="minimum_physical_damage_to_return_on_block",[2]="maximum_physical_damage_to_return_on_block"}},[1775]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=0,[2]=0}},text="Reflects %1% Lightning Damage to Attackers on Block"},[2]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=1,[2]="#"}},text="Reflects %1% to %2% Lightning Damage to Attackers on Block"}}},stats={[1]="minimum_lightning_damage_to_return_on_block",[2]="maximum_lightning_damage_to_return_on_block"}},[1776]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased maximum number of Raised Zombies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced maximum number of Raised Zombies"}}},stats={[1]="number_of_zombies_allowed_+%"}},[1777]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raised Zombies have %1$+d to maximum Life"}}},stats={[1]="zombie_maximum_life_+"}},[1778]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raised Zombies have %1$+d%% to all Resistances"}}},stats={[1]="zombie_chaos_elemental_damage_resistance_%"}},[1779]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chill Effect and Freeze Duration on you are based on %1%%% of Energy Shield"}}},stats={[1]="chill_and_freeze_duration_based_on_%_energy_shield"}},[1780]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Intelligence for each Unique Item Equipped"}}},stats={[1]="intelligence_+%_per_equipped_unique"}},[1781]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignited Enemies you hit are destroyed on Kill"}}},stats={[1]="ignited_enemies_explode_on_kill"}},[1782]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can inflict up to 300 Ignites on an Enemy"}}},stats={[1]="can_inflict_multiple_ignites"}},[1783]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional chance for Slain monsters to drop Scrolls of Wisdom"}}},stats={[1]="additional_scroll_of_wisdom_drop_chance_%"}},[1784]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found during Flask effect"}}},stats={[1]="local_unique_flask_item_rarity_+%_while_healing"}},[1785]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items found during Flask effect"}}},stats={[1]="local_unique_flask_item_quantity_+%_while_healing"}},[1786]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Light Radius during Flask effect"}}},stats={[1]="local_unique_flask_light_radius_+%_while_healing"}},[1787]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all maximum Elemental Resistances during Flask effect"}}},stats={[1]="local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing"}},[1788]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Elemental Resistances during Flask Effect"}}},stats={[1]="local_unique_flask_resist_all_elements_%_during_flask_effect"}},[1789]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of your Curses"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of your Curses"}}},stats={[1]="curse_effect_+%"}},[1790]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Curses can apply to Hexproof Enemies"}}},stats={[1]="ignore_hexproof"}},[1791]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while Phasing"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while Phasing"}}},stats={[1]="movement_velocity_+%_while_phasing"}},[1792]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rogue Exiles roam Wraeclast"}}},stats={[1]="map_spawn_exile_per_area_%"}},[1793]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strongboxes are guarded by ambushing monsters"}}},stats={[1]="map_ambush_chests"}},[1794]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area can contain Breaches"}}},stats={[1]="map_breach_rules"}},[1795]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains Immortal Syndicate activity"}}},stats={[1]="map_spawn_betrayals"}},[1796]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters and bosses invade from elsewhere in Wraeclast"}}},stats={[1]="map_invasion_monster_packs"}},[1797]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area is inhabited by an additional Invasion Boss"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area is inhabited by %1% additional Invasion Bosses"}}},stats={[1]="map_num_extra_invasion_bosses"}},[1798]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rare Monsters each have a Nemesis Mod"}}},stats={[1]="map_rare_monsters_have_nemesis_mod"}},[1799]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Magic Monster Packs each have a Bloodline Mod"}}},stats={[1]="map_magic_pack_mod_rules"}},[1800]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Tormented Spirits haunt Wraeclast"}}},stats={[1]="map_spawn_tormented_spirits"}},[1801]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Powerful Tempests can affect both Monsters and you"}}},stats={[1]="map_always_has_weather"}},[1802]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Powerful Shrines can affect both Monsters and you"}}},stats={[1]="map_allow_shrines"}},[1803]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRampage"},limit={[1]={[1]="#",[2]="#"}},text="Slaying Enemies in a kill streak grants Rampage bonuses"}}},stats={[1]="map_players_gain_rampage_stacks"}},[1804]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Slaying Enemies close together can attract monsters from Beyond this realm"}}},stats={[1]="map_beyond_rules"}},[1805]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Slaying Enemies close together has a %1%%% chance to attract monsters from Beyond"},[2]={limit={[1]={[1]=100,[2]=100}},text="Slaying Enemies close together attracts monsters from Beyond"}}},stats={[1]="map_beyond_chance_%"}},[1806]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while Cursed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while Cursed"}}},stats={[1]="movement_velocity_+%_while_cursed"}},[1807]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second per Frenzy Charge"}}},stats={[1]="life_regeneration_rate_per_minute_%_per_frenzy_charge"}},[1808]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Frenzy Charge on Kill"}}},stats={[1]="add_frenzy_charge_on_kill_%_chance"}},[1809]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge on Kill"}}},stats={[1]="endurance_charge_on_kill_%"}},[1810]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Power Charge on Kill"}}},stats={[1]="add_power_charge_on_kill_%_chance"}},[1811]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Frenzy Charge and a Power Charge on Kill"}}},stats={[1]="gain_frenzy_and_power_charge_on_kill_%"}},[1812]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain an Endurance Charge when you lose a Power Charge"}}},stats={[1]="gain_endurance_charge_on_power_charge_expiry"}},[1813]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies on Low Life take %1%%% increased Damage per Frenzy Charge"}}},stats={[1]="enemy_on_low_life_damage_taken_+%_per_frenzy_charge"}},[1814]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage when on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage when on Full Life"}}},stats={[1]="melee_damage_+%_when_on_full_life"}},[1815]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=100,[2]="#"}},text="Creates Consecrated Ground on Critical Strike"},[2]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=0,[2]=99}},text="%1%%% chance on Critical Strike to create Consecrated Ground"}}},stats={[1]="consecrate_on_crit_%_chance_to_create"}},[1816]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Speed per Frenzy Charge"}}},stats={[1]="projectile_speed_+%_per_frenzy_charge"}},[1817]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Damage per Power Charge"}}},stats={[1]="projectile_damage_+%_per_power_charge"}},[1818]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Enemies killed with a Critical Strike"}}},stats={[1]="killed_monster_dropped_item_rarity_+%_on_crit"}},[1819]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds on Kill"}}},stats={[1]="onslaught_buff_duration_on_kill_ms"}},[1820]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds on Killing Taunted Enemies"}}},stats={[1]="onslaught_buff_duration_on_killing_taunted_enemy_ms"}},[1821]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Energy Shield per second"}}},stats={[1]="base_energy_shield_regeneration_rate_per_minute"}},[1822]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield per second"}}},stats={[1]="base_energy_shield_regeneration_rate_per_minute_%"}},[1823]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Right ring slot: You cannot Regenerate Mana"}}},stats={[1]="local_right_ring_slot_no_mana_regeneration"}},[1824]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Right ring slot: Regenerate %1%%% of Energy Shield per second"}}},stats={[1]="local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%"}},[1825]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Right ring slot: %1$+d to maximum Mana"}}},stats={[1]="local_right_ring_slot_maximum_mana"}},[1826]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Right ring slot: %1$+d to Energy Shield"}}},stats={[1]="local_right_ring_slot_energy_shield"}},[1827]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Left ring slot: You cannot Recharge or Regenerate Energy Shield"}}},stats={[1]="local_left_ring_slot_no_energy_shield_recharge_or_regeneration"}},[1828]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Left ring slot: Regenerate %1% Mana per Second"}}},stats={[1]="local_left_ring_slot_mana_regeneration_rate_per_minute"}},[1829]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Left ring slot: %1%%% increased Mana Regeneration Rate"}}},stats={[1]="local_left_ring_slot_mana_regeneration_rate_+%"}},[1830]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Left ring slot: %1$+d to maximum Mana"}}},stats={[1]="local_left_ring_slot_maximum_mana"}},[1831]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Left ring slot: %1$+d to maximum Energy Shield"}}},stats={[1]="local_left_ring_slot_energy_shield"}},[1832]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot Recharge or Regenerate Energy Shield"}}},stats={[1]="no_energy_shield_recharge_or_regeneration"}},[1833]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]=1,[2]="#"}},text="Your Critical Strike Chance is Lucky"},[2]={[1]={k="reminderstring",v="ReminderTextUnlucky"},limit={[1]={[1]="#",[2]=-1}},text="Your Critical Strike Chance is Unlucky"}}},stats={[1]="extra_critical_rolls"}},[1834]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1%% increased Movement Speed per %1% Evasion Rating, up to 75%%"}}},stats={[1]="movement_velocity_+1%_per_X_evasion_rating"}},[1835]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be killed by reflected Elemental Damage"}}},stats={[1]="cannot_be_killed_by_elemental_reflect"}},[1836]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Critical Strikes cannot Freeze, Shock, or Ignite Enemies"}}},stats={[1]="cannot_freeze_shock_ignite_on_critical"}},[1837]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Critical Strikes do not deal extra Damage"}}},stats={[1]="no_critical_strike_multiplier"}},[1838]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds on Critical Strike"}}},stats={[1]="onslaught_on_crit_duration_ms"}},[1839]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Raised Zombie Size"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Raised Zombie Size"}}},stats={[1]="zombie_scale_+%"}},[1840]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Raised Zombies deal %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Raised Zombies deal %1%%% reduced Physical Damage"}}},stats={[1]="zombie_physical_damage_+%"}},[1841]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies killed by Zombies explode dealing %1%%% of their Maximum Life as Fire Damage"}}},stats={[1]="zombie_explode_on_kill_%_fire_damage_to_deal"}},[1842]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Weapons per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Weapons per Power Charge"}}},stats={[1]="weapon_elemental_damage_+%_per_power_charge"}},[1843]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot Cast Curses"}}},stats={[1]="cannot_cast_curses"}},[1844]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Insufficient Mana doesn't prevent your Melee Attacks"}}},stats={[1]="melee_attacks_usable_without_mana_cost"}},[1845]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Spell Damage also apply to Attack Damage"}}},stats={[1]="spell_damage_modifiers_apply_to_attack_damage"}},[1846]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Spell Damage also apply to Attacks"}}},stats={[1]="additive_spell_damage_modifiers_apply_to_attack_damage"}},[1847]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Damage of Vaal Skills also apply to Non-Vaal Skills"}}},stats={[1]="additive_vaal_skill_damage_modifiers_apply_to_all_skills"}},[1848]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Spell Damage apply to this Skill's Damage Over Time effect"}}},stats={[1]="spell_damage_modifiers_apply_to_skill_dot"}},[1849]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Projectile Damage apply to this Skill's Damage Over Time effect"}}},stats={[1]="projectile_damage_modifiers_apply_to_skill_dot"}},[1850]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes %1%%% of your maximum Energy Shield on use"}}},stats={[1]="local_flask_removes_%_maximum_energy_shield_on_use"}},[1851]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Consumes 1 Frenzy Charge on use"},[2]={limit={[1]={[1]=2,[2]=99}},text="Consumes %1% Frenzy Charges on use"},[3]={limit={[1]={[1]=100,[2]="#"}},text="Consumes Frenzy Charges on use"}}},stats={[1]="local_flask_consumes_x_frenzy_charges_on_use"}},[1852]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Consumes 1 Endurance Charge on use"},[2]={limit={[1]={[1]=2,[2]=99}},text="Consumes %1% Endurance Charges on use"},[3]={limit={[1]={[1]=100,[2]="#"}},text="Consumes Endurance Charges on use"}}},stats={[1]="local_flask_consumes_x_endurance_charges_on_use"}},[1853]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Consumes 1 Power Charge on use"},[2]={limit={[1]={[1]=2,[2]=99}},text="Consumes %1% Power Charges on use"},[3]={limit={[1]={[1]=100,[2]="#"}},text="Consumes Power Charges on use"}}},stats={[1]="local_flask_consumes_x_power_charges_on_use"}},[1854]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]=1}},text="Gain Onslaught for %1% second per Frenzy Charge on use"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=2,[2]="#"}},text="Gain Onslaught for %1% seconds per Frenzy Charge on use"}}},stats={[1]="local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge"}},[1855]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You take %1%%% of your maximum Life as Chaos Damage on use"}}},stats={[1]="local_flask_deals_%_maximum_life_as_chaos_damage_on_use"}},[1856]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You gain a Power Charge on use"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You gain %1% Power Charges on use"}}},stats={[1]="local_flask_gain_power_charges_on_use"}},[1857]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You gain a Frenzy Charge on use"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You gain %1% Frenzy Charges on use"}}},stats={[1]="local_flask_gain_frenzy_charges_on_use"}},[1858]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You gain an Endurance Charge on use"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You gain %1% Endurance Charges on use"}}},stats={[1]="local_flask_gain_endurance_charges_on_use"}},[1859]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to cause Enemies to Flee on use"}}},stats={[1]="local_flask_use_causes_monster_flee_chance_%"}},[1860]={lang={English={[1]={[1]={k="per_minute_to_per_second_0dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Chaos Damage per second to nearby Enemies"}}},stats={[1]="local_display_aura_base_chaos_damage_to_deal_per_minute"}},[1861]={lang={English={[1]={[1]={k="milliseconds_to_seconds_0dp",v=1},[2]={k="per_minute_to_per_second_0dp",v=2},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="You take %2% Chaos Damage per second for %1% seconds on Kill"}}},stats={[1]="deaths_oath_debuff_on_kill_duration_ms",[2]="deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute"}},[1862]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Slain Frozen Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Dropped by Slain Frozen Enemies"}}},stats={[1]="killed_monster_dropped_item_quantity_+%_when_frozen"}},[1863]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain Frozen or Shocked Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain Frozen or Shocked Enemies"}}},stats={[1]="killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked"}},[1864]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain Shocked Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain Shocked Enemies"}}},stats={[1]="killed_monster_dropped_item_rarity_+%_when_shocked"}},[1865]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Frozen Enemies"}}},stats={[1]="killed_monster_dropped_item_rarity_+%_when_frozen"}},[1866]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Counts as Dual Wielding"}}},stats={[1]="local_unique_counts_as_dual_wielding"}},[1867]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage is taken from Mana before Life"}}},stats={[1]="base_damage_removed_from_mana_before_life_%"}},[1868]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You and nearby allies gain %1%%% increased Damage"}}},stats={[1]="local_display_aura_damage_+%"}},[1869]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies have %1%%% increased Effect of Curses on them"}}},stats={[1]="local_display_aura_curse_effect_on_self_+%"}},[1870]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="Attacks have %1%%% chance to Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Attacks always Ignite"}}},stats={[1]="attack_ignite_chance_%"}},[1871]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="Projectiles have %1%%% chance to Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Projectiles always Ignite"}}},stats={[1]="projectile_ignite_chance_%"}},[1872]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99}},text="Projectiles have %1%%% chance to Freeze"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=100,[2]="#"}},text="Projectiles always Freeze"}}},stats={[1]="projectile_freeze_chance_%"}},[1873]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Projectiles have %1%%% chance to Shock"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Projectiles always Shock"}}},stats={[1]="projectile_shock_chance_%"}},[1874]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies killed explode dealing %1%%% of their Life as Fire Damage"}}},stats={[1]="explode_on_kill_%_fire_damage_to_deal"}},[1875]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage taken reflected to Melee Attackers"}}},stats={[1]="melee_damage_taken_%_to_deal_to_attacker"}},[1876]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained when you are Hit"}}},stats={[1]="mana_gained_when_hit"}},[1877]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Elemental Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Elemental Damage taken"}}},stats={[1]="elemental_reflect_damage_taken_+%"}},[1878]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Physical Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Physical Damage taken"}}},stats={[1]="physical_reflect_damage_taken_+%"}},[1879]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Left ring slot: %1%%% increased Reflected Elemental Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Left ring slot: %1%%% reduced Reflected Elemental Damage taken"}}},stats={[1]="local_left_ring_slot_elemental_reflect_damage_taken_+%"}},[1880]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Right ring slot: %1%%% increased Reflected Physical Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Right ring slot: %1%%% reduced Reflected Physical Damage taken"}}},stats={[1]="local_right_ring_slot_physical_reflect_damage_taken_+%"}},[1881]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage you Reflect to Enemies when Hit is gained as Life"}}},stats={[1]="damage_reflected_to_enemies_%_gained_as_life"}},[1882]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can only deal Damage with this Weapon and Ignite"}}},stats={[1]="local_can_only_deal_damage_with_this_weapon"}},[1883]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Non-critical strikes deal %1%%% Damage"}}},stats={[1]="non_critical_damage_multiplier_+%"}},[1884]={lang={English={[1]={[1]={k="mod_value_to_item_class",v=2},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Unique Boss drops %1% additional Rare %2%"}}},stats={[1]="unique_map_boss_number_of_rare_items_to_drop",[2]="unique_map_boss_class_of_rare_items_to_drop"}},[1885]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attack Skills gain %1%%% of Physical Damage as Extra Fire Damage per Socketed Red Gem"}}},stats={[1]="attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem"}},[1886]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1% to Maximum Life per Red Socket"}}},stats={[1]="base_maximum_life_per_red_socket_on_item"}},[1887]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life per Red Socket"}}},stats={[1]="global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad"}},[1888]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Global Physical Damage with Weapons per Red Socket"}}},stats={[1]="global_weapon_physical_damage_+%_per_red_socket_on_item"}},[1889]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Fire Damage per Red Socket"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_fire_per_red_socket_on_item"}},[1890]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1% to Maximum Mana per Green Socket"}}},stats={[1]="base_maximum_mana_per_green_socket_on_item"}},[1891]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Global Attack Speed per Green Socket"}}},stats={[1]="global_attack_speed_+%_per_green_socket_on_item"}},[1892]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="+%1%%% to Global Critical Strike Multiplier per Green Socket"}}},stats={[1]="global_critical_strike_mulitplier_+_per_green_socket_on_item"}},[1893]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Cold Damage per Green Socket"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_cold_per_green_socket_on_item"}},[1894]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1% to Maximum Energy Shield per Blue Socket"}}},stats={[1]="base_maximum_energy_shield_per_blue_socket_on_item"}},[1895]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Lightning Damage per Blue Socket"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_lightning_per_blue_socket_on_item"}},[1896]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana per Blue Socket"}}},stats={[1]="old_do_not_use_global_mana_leech_from_physical_attack_damage_%_per_blue_socket_on_item"}},[1897]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana per Blue Socket"}}},stats={[1]="global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item"}},[1898]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Item Quantity per White Socket"}}},stats={[1]="item_found_quantity_+%_per_white_socket_on_item"}},[1899]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Chaos Damage per White Socket"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_chaos_per_white_socket_on_item"}},[1900]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Item Rarity per White Socket"}}},stats={[1]="item_found_rarity_+%_per_white_socket_on_item"}},[1901]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Defences per White Socket"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Defences per White Socket"}}},stats={[1]="global_defences_+%_per_white_socket_on_item"}},[1902]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Weapon Range per White Socket"}}},stats={[1]="global_melee_range_+_per_white_socket_on_item"}},[1903]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage when you have no Energy Shield"}}},stats={[1]="damage_+%_when_currently_has_no_energy_shield"}},[1904]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Spell Damage per 5%% Chance to Block Attack Damage"}}},stats={[1]="spell_damage_+%_per_5%_block_chance"}},[1905]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Spell Damage per 10 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% reduced Spell Damage per 10 Intelligence"}}},stats={[1]="spell_damage_+%_per_10_int"}},[1906]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose %1%%% of your Energy Shield when you Block"}}},stats={[1]="energy_shield_%_to_lose_on_block"}},[1907]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Leech %1%%% of your Armour as Life when you Block"}}},stats={[1]="armour_%_to_leech_as_life_on_block"}},[1908]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Light Radius is based on Energy Shield instead of Life"}}},stats={[1]="light_radius_scales_with_energy_shield"}},[1909]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flasks applied to you have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flasks applied to you have %1%%% reduced Effect"}}},stats={[1]="flask_effect_+%"}},[1910]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Non-Unique Flasks applied to you have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Non-Unique Flasks applied to you have %1%%% reduced Effect"}}},stats={[1]="non_unique_flask_effect_+%"}},[1911]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Weapon range"}}},stats={[1]="local_weapon_range_+"}},[1912]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Weapons"}}},stats={[1]="weapon_physical_damage_+%"}},[1913]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% maximum Critical Strike Chance"}}},stats={[1]="maximum_critical_strike_chance"}},[1914]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Melee Attacks"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Melee Attacks"}}},stats={[1]="melee_damage_taken_+%"}},[1915]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Projectiles"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Projectiles"}}},stats={[1]="projectile_damage_taken_+%"}},[1916]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds when you Stun an Enemy"}}},stats={[1]="gain_onslaught_on_stun_duration_ms"}},[1917]={lang={English={[1]={limit={[1]={[1]=100,[2]=100}},text="Curse Enemies with Flammability on Hit"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Curse Enemies with Flammability on Hit"}}},stats={[1]="curse_on_hit_%_flammability"}},[1918]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge when you are Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge when you are Hit"}}},stats={[1]="chance_to_gain_endurance_charge_when_hit_%"}},[1919]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You lose all Endurance Charges on reaching maximum Endurance Charges"}}},stats={[1]="lose_all_endurance_charges_when_reaching_maximum"}},[1920]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds at maximum Endurance Charges"}}},stats={[1]="gain_onslaught_ms_when_reaching_maximum_endurance_charges"}},[1921]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot gain Endurance Charges during Onslaught"}}},stats={[1]="cannot_gain_endurance_charges_while_have_onslaught"}},[1922]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes Burning when you use a Flask"}}},stats={[1]="flasks_dispel_burning"}},[1923]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items found during any Flask Effect"}}},stats={[1]="item_rarity_+%_while_using_flask"}},[1924]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Attack Skills during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Attack Skills during any Flask Effect"}}},stats={[1]="elemental_damage_with_attack_skills_+%_while_using_flask"}},[1925]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Weapons during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Weapons during any Flask Effect"}}},stats={[1]="weapon_elemental_damage_+%_while_using_flask"}},[1926]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You have Fortify during Effect of any Life Flask"}}},stats={[1]="fortify_during_life_flask_effect"}},[1927]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Supported Active Skill Gems"}}},stats={[1]="supported_active_skill_gem_level_+"}},[1928]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour per Level"}}},stats={[1]="physical_damage_reduction_rating_per_level"}},[1929]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Life per 10 Levels"}}},stats={[1]="maximum_life_per_10_levels"}},[1930]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances per 10 Levels"}}},stats={[1]="resist_all_elements_%_per_10_levels"}},[1931]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to inflict a Curse on you when Hit per 10 Levels"}}},stats={[1]="chance_to_gain_random_curse_when_hit_%_per_10_levels"}},[1932]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Demons during Flask effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Demons during Flask effect"}}},stats={[1]="local_unique_flask_damage_taken_+%_vs_demons_while_healing"}},[1933]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage against Demons during Flask effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage against Demons during Flask effect"}}},stats={[1]="local_unique_flask_damage_+%_vs_demons_while_healing"}},[1934]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Recharges %1% Charge when you Kill a Demon"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Recharges %1% Charges when you Kill a Demon"}}},stats={[1]="local_recharge_on_demon_killed"}},[1935]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Demons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Demons"}}},stats={[1]="damage_taken_+%_vs_demons"}},[1936]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Demons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Demons"}}},stats={[1]="damage_+%_vs_demons"}},[1937]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Chilled by you take %1%%% increased Burning Damage"}}},stats={[1]="chilled_monsters_take_+%_burning_damage"}},[1938]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Ignite when in Main Hand"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Always Ignite when in Main Hand"}}},stats={[1]="unique_ignite_chance_%_when_in_main_hand"}},[1939]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chill Duration on Enemies when in Off Hand"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chill Duration on Enemies when in Off Hand"}}},stats={[1]="unique_chill_duration_+%_when_in_off_hand"}},[1940]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=99}},text="%2%%% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=100,[2]="#"}},text="Gain an Endurance Charge when you Stun an Enemy with a Melee Hit"},[3]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Gain an Endurance Charge when you Stun an Enemy with a Melee Hit"}}},stats={[1]="gain_endurance_charge_on_melee_stun",[2]="gain_endurance_charge_on_melee_stun_%"}},[1941]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when you Stun with Melee Damage"}}},stats={[1]="chance_to_gain_power_charge_on_melee_stun_%"}},[1942]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when you Stun"}}},stats={[1]="chance_to_gain_power_charge_on_stun_%"}},[1943]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="30%% increased Movement Speed for %1% seconds on Throwing a Trap"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="%2%%% increased Movement Speed for %1% seconds on Throwing a Trap"}}},stats={[1]="movement_speed_bonus_when_throwing_trap_ms",[2]="movement_speed_+%_on_throwing_trap"}},[1944]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Melee Critical Strikes have %1%%% chance to Poison the Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Melee Critical Strikes Poison the Enemy"}}},stats={[1]="poison_on_melee_critical_strike_%"}},[1945]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHit"},limit={[1]={[1]="#",[2]="#"}},text="Shocks you cause are reflected back to you"}}},stats={[1]="shocks_reflected_to_self"}},[1946]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Shocked"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Shocked"}}},stats={[1]="damage_+%_per_shock"}},[1947]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1%% increased Damage per %1% Strength when in Main Hand"}}},stats={[1]="damage_+1%_per_X_strength_when_in_main_hand"}},[1948]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1%% increased Armour per %1% Strength when in Off Hand"}}},stats={[1]="physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand"}},[1949]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Freeze Mine causes Enemies to lose an additional %1%%% Cold Resistance while Frozen"}}},stats={[1]="freeze_mine_cold_resistance_+_while_frozen"}},[1950]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Traps do not Trigger at the end of their Duration"}}},stats={[1]="traps_do_not_explode_on_timeout"}},[1951]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Traps Trigger at the end of their Duration"}}},stats={[1]="traps_explode_on_timeout"}},[1952]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Detonating Mines is Instant"}}},stats={[1]="mine_detonation_is_instant"}},[1953]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Trap Damage Penetrates %1%%% Elemental Resistances"}}},stats={[1]="trap_damage_penetrates_%_elemental_resistance"}},[1954]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mine Damage Penetrates %1%%% Elemental Resistances"}}},stats={[1]="mine_damage_penetrates_%_elemental_resistance"}},[1955]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Trap and Mine Damage Penetrates %1%%% Elemental Resistances"}}},stats={[1]="trap_and_mine_damage_penetrates_%_elemental_resistance"}},[1956]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Traps cannot be Damaged for %1% seconds after being Thrown"}}},stats={[1]="traps_invulnerable_for_duration_ms"}},[1957]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Mines cannot be Damaged for %1% seconds after being thrown"}}},stats={[1]="mines_invulnerable_for_duration_ms"}},[1958]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems gain %1$+d%% to all Elemental Resistances"}}},stats={[1]="totem_elemental_resistance_%"}},[1959]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ancestral Protector Totems gain %1$+d%% to all Elemental Resistances"}}},stats={[1]="slash_ancestor_totem_elemental_resistance_%"}},[1960]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems have %1%%% additional Physical Damage Reduction"}}},stats={[1]="totem_additional_physical_damage_reduction_%"}},[1961]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deal no Physical Damage"}}},stats={[1]="base_deal_no_physical_damage"}},[1962]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deal no Non-Fire Damage"}}},stats={[1]="deal_no_non_fire_damage"}},[1963]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can use Items requiring up to Level %1%"}}},stats={[1]="animate_item_maximum_level_requirement"}},[1964]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Animate Weapon Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Animate Weapon Duration"}}},stats={[1]="jorrhasts_blacksteel_animate_weapon_duration_+%_final"}},[1965]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Animate Weapon Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Animate Weapon Duration"}}},stats={[1]="animate_weapon_duration_+%"}},[1966]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Weapons you Animate create an additional copy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Weapons you Animate create %1% additional copies"}}},stats={[1]="animate_weapon_number_of_additional_copies"}},[1967]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Fire and Cold Resistances"}}},stats={[1]="fire_and_cold_damage_resistance_%"}},[1968]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Fire and Lightning Resistances"}}},stats={[1]="fire_and_lightning_damage_resistance_%"}},[1969]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold and Lightning Resistances"}}},stats={[1]="cold_and_lightning_damage_resistance_%"}},[1970]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Freeze, Shock and Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Always Freeze, Shock and Ignite"}}},stats={[1]="chance_to_freeze_shock_ignite_%"}},[1971]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Ignited"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Ignited"}}},stats={[1]="damage_+%_while_ignited"}},[1972]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour while Frozen"}}},stats={[1]="physical_damage_reduction_rating_while_frozen"}},[1973]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage taken while Frozen"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage taken while Frozen"}}},stats={[1]="physical_damage_taken_+%_while_frozen"}},[1974]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while Ignited"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while Ignited"}}},stats={[1]="movement_velocity_+%_while_ignited"}},[1975]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while Shocked"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while Shocked"}}},stats={[1]="movement_velocity_+%_per_shock"}},[1976]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Rare monsters"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Rare monsters"}}},stats={[1]="damage_+%_vs_rare_monsters"}},[1977]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Enemies that are on Low Life"}}},stats={[1]="damage_vs_enemies_on_low_life_+%"}},[1978]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments against Enemies that are on Low Life"}}},stats={[1]="damage_vs_enemies_on_low_life_+%_final"}},[1979]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Frenzy Charge with Hits against Enemies on Low Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Frenzy Charge with Hits against Enemies on Low Life"}}},stats={[1]="damage_+%_vs_enemies_on_low_life_per_frenzy_charge"}},[1980]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Blinded Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Blinded Enemies"}}},stats={[1]="damage_+%_vs_blinded_enemies"}},[1981]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Shrine Buffs on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Shrine Buffs on you"}}},stats={[1]="shrine_buff_effect_on_self_+%"}},[1982]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Shrine Effects on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Shrine Effects on you"}}},stats={[1]="shrine_effect_duration_+%"}},[1983]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot gain Life during effect"}}},stats={[1]="local_unique_flask_cannot_recover_life_while_healing"}},[1984]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Recover %1%%% of Life at the end of the Flask Effect"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Recover Full Life at the end of the Flask Effect"}}},stats={[1]="local_unique_flask_recover_%_maximum_life_when_effect_reaches_duration"}},[1985]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Skills have no Mana Cost during Flask effect"}}},stats={[1]="local_unique_flask_no_mana_cost_while_healing"}},[1986]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHit"},limit={[1]={[1]=1,[2]=1}},text="When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy"}}},stats={[1]="shock_X_nearby_enemies_for_2_s_on_killing_shocked_enemy"}},[1987]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgniteNonHitNoDuration"},limit={[1]={[1]=1,[2]=1}},text="When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy"}}},stats={[1]="ignite_X_nearby_enemies_for_4_s_on_killing_ignited_enemy"}},[1988]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="When you Kill a Rare monster, you gain its Modifiers for %1% seconds"}}},stats={[1]="gain_rare_monster_mods_on_kill_ms"}},[1989]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour while not Ignited, Frozen or Shocked"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour while not Ignited, Frozen or Shocked"}}},stats={[1]="physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked"}},[1990]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Auras from your Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced effect of Auras from your Skills"}}},stats={[1]="aura_effect_+%"}},[1991]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Supported Active Skill Gems"}}},stats={[1]="supported_active_skill_gem_quality_%"}},[1992]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]="#",[2]="#"}},text="Phasing"}}},stats={[1]="phase_through_objects"}},[1993]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Gem can only Support Skill Gems requiring Level %1% or lower"}}},stats={[1]="local_support_gem_max_skill_level_requirement_to_support"}},[1994]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Projectiles Return to you after Hitting targets"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Projectiles Return to you at end of flight"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Projectiles Return to you"}}},stats={[1]="projectiles_return",[2]="projectiles_return_if_no_hit_object"}},[1995]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Attack Projectiles Return to you from final Target"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Attack Projectiles Return to you at end of flight"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Attack Projectiles Return to you"}}},stats={[1]="attack_projectiles_return",[2]="attack_projectiles_return_if_no_hit_object"}},[1996]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Critical Strike Chance"},[2]={[1]={k="canonical_line",v="negate"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Critical Strike Chance"}}},stats={[1]="unique_critical_strike_chance_+%_final"}},[1997]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You lose all Endurance Charges when Hit"}}},stats={[1]="unique_lose_all_endurance_charges_when_hit"}},[1998]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds when Hit"}}},stats={[1]="unique_gain_onslaught_when_hit_duration_ms"}},[1999]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You gain an Endurance Charge on Kill"}}},stats={[1]="add_endurance_charge_on_kill"}},[2000]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Counterattack when Hit"}}},stats={[1]="chance_to_counter_strike_when_hit_%"}},[2001]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Leech %1% Life for each Spell you Cast"}}},stats={[1]="leech_X_life_per_spell_cast"}},[2002]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Life over 1 second when you Cast a Spell"}}},stats={[1]="regenerate_X_life_over_1_second_on_cast"}},[2003]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of your Armour as Life over 1 second when you Block"}}},stats={[1]="regenerate_%_armour_as_life_over_1_second_on_block"}},[2004]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Defences"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Defences"}}},stats={[1]="global_defences_+%"}},[2005]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Resistances are Zero"}}},stats={[1]="zero_elemental_resistance"}},[2006]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]="#",[2]="#"}},text="Culling Strike against Burning Enemies"}}},stats={[1]="culling_strike_on_burning_enemies"}},[2007]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Frenzy Charge if an Attack Ignites an Enemy"}}},stats={[1]="gain_frenzy_charge_if_attack_ignites"}},[2008]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per 10 Levels"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per 10 Levels"}}},stats={[1]="damage_+%_per_10_levels"}},[2009]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Chaos Damage taken"}}},stats={[1]="chaos_damage_taken_+"}},[2010]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Final Boss drops higher Level Items"}}},stats={[1]="display_map_final_boss_drops_higher_level_gear"}},[2011]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss gives %1%%% increased Experience"}}},stats={[1]="display_map_boss_gives_experience_+%"}},[2012]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1000,[2]=1000}},text="You gain Onslaught for %1% second per Endurance Charge when Hit"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds per Endurance Charge when Hit"}}},stats={[1]="unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge"}},[2013]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Projectile Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Projectile Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_slower_projectiles_damage_+%_final"}},[2014]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fishing Line Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fishing Line Strength"}}},stats={[1]="fishing_line_strength_+%"}},[2015]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fishing Pool Consumption"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fishing Pool Consumption"}}},stats={[1]="fishing_pool_consumption_+%"}},[2016]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Rhoa Feather Lure"},[2]={limit={[1]={[1]=2,[2]=2}},text="Siren Worm Bait"},[3]={limit={[1]={[1]=3,[2]=3}},text="Totemic Wood Lure"},[4]={limit={[1]={[1]=4,[2]=4}},text="Thaumaturgical Lure"}}},stats={[1]="fishing_lure_type"}},[2017]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Karui Stone Hook"},[2]={limit={[1]={[1]=2,[2]=2}},text="Ezomyte Shell Hook"},[3]={limit={[1]={[1]=3,[2]=3}},text="Vaal Soul Hook"},[4]={limit={[1]={[1]=4,[2]=4}},text="Eternal Iron Hook"}}},stats={[1]="fishing_hook_type"}},[2018]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fishing Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fishing Range"}}},stats={[1]="fishing_range_+%"}},[2019]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Fish Caught"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Fish Caught"}}},stats={[1]="fish_quantity_+%"}},[2020]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Fish Caught"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Fish Caught"}}},stats={[1]="fish_rarity_+%"}},[2021]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="On Killing a Poisoned Enemy, nearby Enemies are Poisoned"}}},stats={[1]="unique_spread_poison_to_nearby_enemies_on_kill"}},[2022]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="and nearby Allies Regenerate 200 Life per second"}}},stats={[1]="unique_spread_poison_to_nearby_allies_as_200_life_regeneration_per_second_on_kill"}},[2023]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="On Killing a Poisoned Enemy, nearby Allies Regenerate Life"}}},stats={[1]="unique_spread_poison_to_nearby_allies_as_regeneration_on_kill"}},[2024]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Duplicates your other ring"}}},stats={[1]="local_ring_duplicate_other_ring"}},[2025]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can catch Exotic Fish"}}},stats={[1]="can_catch_exotic_fish"}},[2026]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can catch Corrupted Fish"}}},stats={[1]="can_catch_corrupted_fish"}},[2027]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Your Fire Damage can Shock but not Ignite"}}},stats={[1]="unique_fire_damage_shocks"}},[2028]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="Your Cold Damage can Ignite but not Freeze or Chill"}}},stats={[1]="unique_cold_damage_ignites"}},[2029]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="Your Lightning Damage can Freeze but not Shock"}}},stats={[1]="unique_lightning_damage_freezes"}},[2030]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="All your Damage can Freeze"}}},stats={[1]="all_damage_can_freeze"}},[2031]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="All Damage from Hits can cause Elemental Ailments you are suffering"}}},stats={[1]="base_all_damage_can_cause_elemental_ailments_you_are_suffering_from"}},[2032]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Your Cold Damage can Poison"}}},stats={[1]="base_cold_damage_can_poison"}},[2033]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Your Fire Damage can Poison"}}},stats={[1]="base_fire_damage_can_poison"}},[2034]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Your Lightning Damage can Poison"}}},stats={[1]="base_lightning_damage_can_poison"}},[2035]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]="#",[2]="#"}},text="Your Chaos Damage can Chill"}}},stats={[1]="chaos_damage_can_chill"}},[2036]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="Your Chaos Damage can Freeze"}}},stats={[1]="chaos_damage_can_freeze"}},[2037]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Your Chaos Damage can Shock"}}},stats={[1]="chaos_damage_can_shock"}},[2038]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="Your Cold Damage can Ignite"}}},stats={[1]="cold_damage_can_ignite"}},[2039]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Your Cold Damage can Shock"}}},stats={[1]="cold_damage_can_shock"}},[2040]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Your Elemental Damage can Shock"}}},stats={[1]="elemental_damage_can_shock"}},[2041]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]="#",[2]="#"}},text="Your Fire Damage can Chill"}}},stats={[1]="fire_damage_can_chill"}},[2042]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="Your Fire Damage can Freeze"}}},stats={[1]="fire_damage_can_freeze"}},[2043]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Your Fire Damage can Shock"}}},stats={[1]="fire_damage_can_shock"}},[2044]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]="#",[2]="#"}},text="Your Lightning Damage can Chill"}}},stats={[1]="lightning_damage_can_chill"}},[2045]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Lightning Damage can Ignite"}}},stats={[1]="lightning_damage_can_ignite"}},[2046]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]="#",[2]="#"}},text="Your Physical Damage can Chill"}}},stats={[1]="physical_damage_can_chill"}},[2047]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="Your Physical Damage can Freeze"}}},stats={[1]="physical_damage_can_freeze"}},[2048]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Your Physical Damage can Shock"}}},stats={[1]="physical_damage_can_shock"}},[2049]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="Your Cold Damage can Ignite"}}},stats={[1]="unique_cold_damage_can_also_ignite"}},[2050]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="Your Lightning Damage can Freeze"}}},stats={[1]="lightning_damage_can_freeze"}},[2051]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Fire Damage cannot Ignite"}}},stats={[1]="fire_damage_cannot_ignite"}},[2052]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Cold Damage cannot Freeze"}}},stats={[1]="cold_damage_cannot_freeze"}},[2053]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Cold Damage cannot Chill"}}},stats={[1]="cold_damage_cannot_chill"}},[2054]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chaos Damage can Ignite, Chill and Shock"}}},stats={[1]="chaos_damage_can_ignite_chill_and_shock"}},[2055]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Chaos Damage cannot Poison"}}},stats={[1]="chaos_damage_cannot_poison"}},[2056]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Lightning Damage cannot Shock"}}},stats={[1]="lightning_damage_cannot_shock"}},[2057]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Physical Damage cannot Poison"}}},stats={[1]="physical_damage_cannot_poison"}},[2058]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Active Skill Gems gain %1%%% increased Experience"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Active Skill Gems gain %1%%% reduced Experience"}}},stats={[1]="supported_active_skill_gem_expereince_gained_+%"}},[2059]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies are Frozen as if you had dealt %1%%% more Damage"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Enemies are Frozen as if you had dealt %1%%% less Damage"}}},stats={[1]="freeze_as_though_dealt_damage_+%"}},[2060]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="You cannot be Chilled for %1% second after being Chilled"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="You cannot be Chilled for %1% seconds after being Chilled"}}},stats={[1]="chill_prevention_ms_when_chilled"}},[2061]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="You cannot be Frozen for %1% second after being Frozen"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="You cannot be Frozen for %1% seconds after being Frozen"}}},stats={[1]="freeze_prevention_ms_when_frozen"}},[2062]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="You cannot be Ignited for %1% second after being Ignited"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="You cannot be Ignited for %1% seconds after being Ignited"}}},stats={[1]="ignite_prevention_ms_when_ignited"}},[2063]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="You cannot be Shocked for %1% second after being Shocked"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="You cannot be Shocked for %1% seconds after being Shocked"}}},stats={[1]="shock_prevention_ms_when_shocked"}},[2064]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be Shocked while Frozen"}}},stats={[1]="cannot_be_shocked_while_frozen"}},[2065]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You grant %1% Frenzy Charges to allies on Death"}}},stats={[1]="grant_X_frenzy_charges_to_nearby_allies_on_death"}},[2066]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Power Charge on Non-Critical Strike"}}},stats={[1]="unique_gain_power_charge_on_non_crit"}},[2067]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose all Power Charges on Critical Strike"}}},stats={[1]="unique_lose_all_power_charges_on_crit"}},[2068]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Flask Life Recovery granted to Minions"}}},stats={[1]="flask_minion_heal_%"}},[2069]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% Chance to Block Attack Damage"}}},stats={[1]="minion_block_%"}},[2070]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% Chance to Block Spell Damage"}}},stats={[1]="minion_additional_spell_block_%"}},[2071]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1$+d to Armour"}}},stats={[1]="minion_physical_damage_reduction_rating"}},[2072]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby allies gain %1%%% increased Damage"}}},stats={[1]="local_display_aura_damage_+%_allies_only"}},[2073]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Attack Speed"}}},stats={[1]="minion_attack_speed_+%"}},[2074]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Cast Speed"}}},stats={[1]="minion_cast_speed_+%"}},[2075]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Minions Leech %1%%% of Damage as Life"}}},stats={[1]="old_do_not_use_minion_life_leech_from_any_damage_permyriad"}},[2076]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Minions Leech %1%%% of Damage as Life"}}},stats={[1]="minion_life_leech_from_any_damage_permyriad"}},[2077]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions Regenerate %1%%% of Life per second"}}},stats={[1]="minion_life_regeneration_rate_per_minute_%"}},[2078]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% to all Elemental Resistances"}}},stats={[1]="minion_elemental_resistance_%"}},[2079]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% to Chaos Resistance"}}},stats={[1]="minion_chaos_resistance_%"}},[2080]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]="#"}},text="Gain Unholy Might for 2 seconds on Melee Critical Strike"}}},stats={[1]="gain_unholy_might_for_2_seconds_on_melee_crit"}},[2081]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]="#"}},text="Gain Unholy Might for 2 seconds on Critical Strike"}}},stats={[1]="gain_unholy_might_for_2_seconds_on_crit"}},[2082]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]="#"}},text="Gain Unholy Might for 4 seconds on Critical Strike"}}},stats={[1]="gain_unholy_might_for_4_seconds_on_crit"}},[2083]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]="#"}},text="Minions gain Unholy Might for %1% seconds on Kill"}}},stats={[1]="minion_unholy_might_on_kill_duration_ms"}},[2084]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Chaos Damage Leeched as Life during Flask effect"}}},stats={[1]="old_do_not_use_local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"}},[2085]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Chaos Damage Leeched as Life during Flask effect"}}},stats={[1]="local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"}},[2086]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Chaos Damage during effect"}}},stats={[1]="local_unique_flask_physical_damage_%_to_add_as_chaos_while_healing"}},[2087]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Melee Physical Damage during effect"}}},stats={[1]="local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect"}},[2088]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Melee Physical Damage during effect"}}},stats={[1]="unique_lions_roar_melee_physical_damage_+%_final"}},[2089]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Elemental Damage as Extra Chaos Damage during effect"}}},stats={[1]="local_unique_flask_elemental_damage_%_to_add_as_chaos_while_healing"}},[2090]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds on using a Vaal Skill"}}},stats={[1]="onslaught_on_vaal_skill_use_duration_ms"}},[2091]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]=1,[2]="#"}},text="You gain Phasing for %1% seconds on using a Vaal Skill"}}},stats={[1]="phase_on_vaal_skill_use_duration_ms"}},[2092]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Ignite during any Flask Effect"}}},stats={[1]="chance_to_ignite_%_while_using_flask"}},[2093]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Freeze during any Flask Effect"}}},stats={[1]="chance_to_freeze_%_while_using_flask"}},[2094]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Shock during any Flask Effect"}}},stats={[1]="chance_to_shock_%_while_using_flask"}},[2095]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]="#"}},text="Your spells have %1%%% chance to Shock against Frozen Enemies"}}},stats={[1]="spell_chance_to_shock_frozen_enemies_%"}},[2096]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% reduced Enemy Stun Threshold during any Flask Effect"}}},stats={[1]="stun_threshold_reduction_+%_while_using_flask"}},[2097]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Physical Damage taken from Hits by Animals"}}},stats={[1]="physical_damage_taken_+_vs_beasts"}},[2098]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks with this Weapon have %1%%% increased Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Attacks with this Weapon have %1%%% reduced Elemental Damage"}}},stats={[1]="local_attacks_with_this_weapon_elemental_damage_+%"}},[2099]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken per Frenzy Charge"}}},stats={[1]="damage_taken_+%_per_frenzy_charge"}},[2100]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage per Frenzy Charge"}}},stats={[1]="lightning_damage_+%_per_frenzy_charge"}},[2101]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained on Kill per Frenzy Charge"}}},stats={[1]="life_gained_on_enemy_death_per_frenzy_charge"}},[2102]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Curses on Slain Enemies are transferred to a nearby Enemy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Curses on Slain Enemies are transferred to %1% nearby Enemies"}}},stats={[1]="transfer_curses_to_X_nearby_enemies_on_kill"}},[2103]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Weapon Physical Damage as Extra Damage of a random Element"}}},stats={[1]="weapon_physical_damage_%_to_add_as_random_element"}},[2104]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Damage of a random Element"}}},stats={[1]="physical_damage_%_to_add_as_random_element"}},[2105]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Recover %1%%% of Life on use"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Recover Full Life on use"}}},stats={[1]="local_unique_flask_instantly_recovers_%_maximum_life"}},[2106]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Maximum Life taken as Chaos Damage per second"}}},stats={[1]="local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing"}},[2107]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge if you Knock an Enemy Back with Melee Damage"}}},stats={[1]="unique_add_power_charge_on_melee_knockback_%"}},[2108]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge when you Throw a Trap"},[2]={limit={[1]={[1]=100,[2]="#"}},text="You gain a Power Charge when you Throw a Trap"}}},stats={[1]="gain_power_charge_when_throwing_trap_%"}},[2109]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Critical Strike Chance per 8 Strength"}}},stats={[1]="critical_strike_chance_+%_per_8_strength"}},[2110]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage during Flask effect"}}},stats={[1]="local_unique_flask_block_%_while_healing"}},[2111]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage during Flask effect"}}},stats={[1]="local_unique_flask_spell_block_%_while_healing"}},[2112]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while Ignited"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while Ignited"}}},stats={[1]="attack_speed_+%_while_ignited"}},[2113]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed while Ignited"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed while Ignited"}}},stats={[1]="cast_speed_+%_while_ignited"}},[2114]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Ignite while Ignited"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Always Ignite while Ignited"}}},stats={[1]="chance_to_ignite_%_while_ignited"}},[2115]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Wands"}}},stats={[1]="wand_damage_+%"}},[2116]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks with this Weapon have %1%%% increased Physical Damage per 250 Evasion Rating"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Attacks with this Weapon have %1%%% reduced Physical Damage per 250 Evasion Rating"}}},stats={[1]="local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion"}},[2117]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage per 450 Evasion Rating"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage per 450 Evasion Rating"}}},stats={[1]="attack_damage_+%_per_450_evasion"}},[2118]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to be Ignited"}}},stats={[1]="chance_to_be_ignited_%"}},[2119]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHit"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to be Shocked"}}},stats={[1]="chance_to_be_shocked_%"}},[2120]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Steal Power, Frenzy, and Endurance Charges on Hit with Claws"}}},stats={[1]="claw_steal_power_frenzy_endurance_charges_on_hit_%"}},[2121]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Bows"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Steal Power, Frenzy, and Endurance Charges on Hit with Bows"}}},stats={[1]="bow_steal_power_frenzy_endurance_charges_on_hit_%"}},[2122]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage against Ignited Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage against Ignited Enemies"}}},stats={[1]="damage_+%_vs_ignited_enemies"}},[2123]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life on Rampage"}}},stats={[1]="recover_%_maximum_life_on_rampage_threshold"}},[2124]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Removes Elemental Ailments on Rampage"}}},stats={[1]="dispel_status_ailments_on_rampage_threshold"}},[2125]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Gain Immunity to Physical Damage for %1% second on Rampage"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain Immunity to Physical Damage for %1% seconds on Rampage"}}},stats={[1]="gain_physical_damage_immunity_on_rampage_threshold_ms"}},[2126]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRampage"},limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Souls for Vaal Skills on Rampage"}}},stats={[1]="gain_X_vaal_souls_on_rampage_threshold"}},[2127]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% Global chance to Blind Enemies on hit"}}},stats={[1]="global_chance_to_blind_on_hit_%"}},[2128]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage against Poisoned Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage against Poisoned Enemies"}}},stats={[1]="physical_damage_+%_vs_poisoned_enemies"}},[2129]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance to Cause Monster to Flee on Block"}}},stats={[1]="block_causes_monster_flee_%"}},[2130]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second per Level"}}},stats={[1]="life_regeneration_rate_per_minute_per_level"}},[2131]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Critical Strike Chance per Level"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Critical Strike Chance per Level"}}},stats={[1]="critical_strike_chance_+%_per_level"}},[2132]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage per Level"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage per Level"}}},stats={[1]="attack_damage_+%_per_level"}},[2133]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per Level"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage per Level"}}},stats={[1]="spell_damage_+%_per_level"}},[2134]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Gain a Flask Charge when you deal a Critical Strike"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Gain %1% Flask Charges when you deal a Critical Strike"}}},stats={[1]="recharge_flasks_on_crit"}},[2135]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies you inflict Bleeding on have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies you inflict Bleeding on have %1%%% reduced Movement Speed"}}},stats={[1]="bleeding_monsters_movement_velocity_+%"}},[2136]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSmokeCloud"},limit={[1]={[1]="#",[2]="#"}},text="Creates a Smoke Cloud on Rampage"}}},stats={[1]="ground_smoke_on_rampage_threshold_ms"}},[2137]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Enemies do not block your movement for %1% second on Rampage"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Enemies do not block your movement for %1% seconds on Rampage"}}},stats={[1]="phasing_on_rampage_threshold_ms"}},[2138]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while on Full Energy Shield"}}},stats={[1]="movement_velocity_+%_on_full_energy_shield"}},[2139]={lang={English={[1]={limit={[1]={[1]=1,[2]=99},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Enemies you Attack have %1%%% chance to Reflect %2% to %3% Chaos Damage to you"},[2]={limit={[1]={[1]=100,[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Enemies you Attack Reflect %2% to %3% Chaos Damage to you"}}},stats={[1]="unique_chaos_damage_to_reflect_to_self_on_attack_%_chance",[2]="unique_minimum_chaos_damage_to_reflect_to_self_on_attack",[3]="unique_maximum_chaos_damage_to_reflect_to_self_on_attack"}},[2140]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Regeneration rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Regeneration rate"}}},stats={[1]="life_regeneration_rate_+%"}},[2141]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovery rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Recovery rate"}}},stats={[1]="life_recovery_rate_+%"}},[2142]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Recovery rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Recovery rate"}}},stats={[1]="mana_recovery_rate_+%"}},[2143]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Recovery rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Recovery rate"}}},stats={[1]="energy_shield_recovery_rate_+%"}},[2144]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained on Kill per Level"}}},stats={[1]="life_gained_on_enemy_death_per_level"}},[2145]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained on Kill per Level"}}},stats={[1]="mana_gained_on_enemy_death_per_level"}},[2146]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Energy Shield gained on Kill per Level"}}},stats={[1]="energy_shield_gained_on_enemy_death_per_level"}},[2147]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Blinded"}}},stats={[1]="cannot_be_blinded"}},[2148]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1000,[2]=1000}},text="Gain Unholy Might for %1% second on Rampage"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]="#",[2]="#"}},text="Gain Unholy Might for %1% seconds on Rampage"}}},stats={[1]="gain_unholy_might_on_rampage_threshold_ms"}},[2149]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per Level"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per Level"}}},stats={[1]="elemental_damage_+%_per_level"}},[2150]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage per Level"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage per Level"}}},stats={[1]="chaos_damage_+%_per_level"}},[2151]={lang={English={[1]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextPhysReductionNotNegative"},limit={[1]={[1]="#",[2]="#"}},text="Enemies have %1$+d%% to Total Physical Damage Reduction against your Hits"}}},stats={[1]="enemy_phys_reduction_%_penalty_vs_hit"}},[2152]={lang={English={[1]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextPhysReductionNotNegative"},limit={[1]={[1]="#",[2]="#"}},text="Enemies you Impale have %1$+d%% to Total Physical Damage Reduction against Impale Hits"}}},stats={[1]="impale_phys_reduction_%_penalty"}},[2153]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Elemental Resistances"}}},stats={[1]="reduce_enemy_elemental_resistance_%"}},[2154]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Fire Resistance"}}},stats={[1]="base_reduce_enemy_fire_resistance_%"}},[2155]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Cold Resistance"}}},stats={[1]="base_reduce_enemy_cold_resistance_%"}},[2156]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Lightning Resistance"}}},stats={[1]="base_reduce_enemy_lightning_resistance_%"}},[2157]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level 5 Vulnerability on Block"}}},stats={[1]="curse_on_block_level_5_vulnerability"}},[2158]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Applies Level 15 Punishment on Blocking a Melee Attack, ignoring Curse Limit"}}},stats={[1]="curse_on_melee_block_level_15_punishment"}},[2159]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Applies Level 15 Temporal Chains on Blocking a Projectile Attack, ignoring Curse Limit"}}},stats={[1]="curse_on_projectile_block_level_15_temporal_chains"}},[2160]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Applies Level 15 Elemental Weakness on Blocking a Spell, ignoring Curse Limit"}}},stats={[1]="curse_on_spell_block_level_15_elemental_weakness"}},[2161]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area becomes fatal after some time"}}},stats={[1]="display_map_has_oxygen"}},[2162]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Nearby allies Recover %1%%% of your Maximum Life when you Die"}}},stats={[1]="unique_nearby_allies_recover_permyriad_max_life_on_death"}},[2163]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Steal Power, Frenzy, and Endurance Charges on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Steal Power, Frenzy, and Endurance Charges on Hit"}}},stats={[1]="base_steal_power_frenzy_endurance_charges_on_hit_%"}},[2164]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"},[2]={[1]=0,[2]=0}},text="%1%%% chance to gain Onslaught for 4 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]=100},[2]={[1]=0,[2]=0}},text="Gain Onslaught for 4 seconds on Kill"},[3]={[1]={k="milliseconds_to_seconds",v=2},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]="#"}},text="%1%%% chance to gain Onslaught for %2% seconds on Kill"},[4]={[1]={k="milliseconds_to_seconds",v=2},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]=100},[2]={[1]=1,[2]="#"}},text="Gain Onslaught for %2% seconds on Kill"}}},stats={[1]="chance_to_gain_onslaught_on_kill_%",[2]="onslaught_time_granted_on_kill_ms"}},[2165]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="Gain Onslaught for %1% seconds on Killing a Shocked Enemy"}}},stats={[1]="onslaught_time_granted_on_killing_shocked_enemy_ms"}},[2166]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrate %1%%% Elemental Resistances per Frenzy Charge"}}},stats={[1]="penetrate_elemental_resistance_per_frenzy_charge_%"}},[2167]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Power Charge with Hits against Enemies on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Power Charge with Hits against Enemies on Full Life"}}},stats={[1]="damage_vs_enemies_on_full_life_per_power_charge_+%"}},[2168]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Power Charge with Hits against Enemies on Low Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Power Charge with Hits against Enemies on Low Life"}}},stats={[1]="damage_vs_enemies_on_low_life_per_power_charge_+%"}},[2169]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Nearby Allies gain %1%%% of Life Regenerated per second"}}},stats={[1]="local_display_aura_life_regeneration_rate_per_minute_%"}},[2170]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies have %1%%% to all Resistances"}}},stats={[1]="local_display_nearby_enemies_all_resistances_%"}},[2171]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]=1,[2]="#"}},text="Nearby Allies have %1%%% increased Defences per 100 Strength you have"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]="#",[2]=-1}},text="Nearby Allies have %1%%% reduced Defences per 100 Strength you have"}}},stats={[1]="dominance_defences_+%_on_nearby_allies_per_100_strength"}},[2172]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Allies have %1$+d%% to Critical Strike Multiplier per 100 Dexterity you have"}}},stats={[1]="dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity"}},[2173]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Allies have %1%%% increased Cast Speed per 100 Intelligence you have"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nearby Allies have %1%%% reduced Cast Speed per 100 Intelligence you have"}}},stats={[1]="dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence"}},[2174]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Allies gain %1%%% increased Mana Regeneration Rate"}}},stats={[1]="local_display_aura_mana_regeneration_rate_+%"}},[2175]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="You and Nearby Allies have %1% to %2% added Fire Damage per Red Socket"}}},stats={[1]="local_grants_aura_minimum_added_fire_damage_per_red_socket",[2]="local_grants_aura_maximum_added_fire_damage_per_red_socket"}},[2176]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="You and Nearby Allies have %1% to %2% added Cold Damage per Green Socket"}}},stats={[1]="local_grants_aura_minimum_added_cold_damage_per_green_socket",[2]="local_grants_aura_maximum_added_cold_damage_per_green_socket"}},[2177]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="You and Nearby Allies have %1% to %2% added Lightning Damage per Blue Socket"}}},stats={[1]="local_grants_aura_minimum_added_lightning_damage_per_blue_socket",[2]="local_grants_aura_maximum_added_lightning_damage_per_blue_socket"}},[2178]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="You and Nearby Allies have %1% to %2% added Chaos Damage per White Socket"}}},stats={[1]="local_grants_aura_minimum_added_chaos_damage_per_white_socket",[2]="local_grants_aura_maximum_added_chaos_damage_per_white_socket"}},[2179]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second per Endurance Charge"}}},stats={[1]="life_regen_per_minute_per_endurance_charge"}},[2180]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot Knock Enemies Back"}}},stats={[1]="cannot_knockback"}},[2181]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]=1,[2]="#"}},text="All Attack Damage Chills when you Stun"}}},stats={[1]="attack_damage_that_stuns_also_chills"}},[2182]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains the Immortalised Grandmasters\nPvP damage scaling in effect"}}},stats={[1]="display_map_contains_grandmasters"}},[2183]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1% Life when you lose an Endurance Charge"}}},stats={[1]="gain_x_life_when_endurance_charge_expires_or_consumed"}},[2184]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments per Curse on Enemy"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments per Curse on Enemy"}}},stats={[1]="damage_vs_cursed_enemies_per_enemy_curse_+%"}},[2185]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot gain Power Charges"}}},stats={[1]="cannot_gain_power_charges"}},[2186]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum Power Charges is 0"}}},stats={[1]="no_maximum_power_charges"}},[2187]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]="#",[2]="#"}},text="Knockback direction is reversed"}}},stats={[1]="enemy_knockback_direction_is_reversed"}},[2188]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Allies' Aura Buffs do not affect you"}}},stats={[1]="immune_to_ally_buff_auras"}},[2189]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Aura Buffs do not affect allies"}}},stats={[1]="buff_auras_dont_affect_allies"}},[2190]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Hits can only Kill Frozen Enemies"}}},stats={[1]="hits_can_only_kill_frozen_enemies"}},[2191]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Maximum Life taken as Physical Damage on Minion Death"}}},stats={[1]="maximum_life_taken_as_physical_damage_on_minion_death_%"}},[2192]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Maximum Energy Shield taken as Physical Damage on Minion Death"}}},stats={[1]="maximum_es_taken_as_physical_damage_on_minion_death_%"}},[2193]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Area of Effect"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Area of Effect"}}},stats={[1]="minion_skill_area_of_effect_+%"}},[2194]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield per second while Shocked"}}},stats={[1]="energy_shield_regeneration_%_per_minute_while_shocked"}},[2195]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Endurance, Frenzy and Power Charge Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Endurance, Frenzy and Power Charge Duration"}}},stats={[1]="charge_duration_+%"}},[2196]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1% Physical Damage taken on Minion Death"}}},stats={[1]="physical_damage_taken_on_minion_death"}},[2197]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds on Culling Strike"}}},stats={[1]="onslaught_buff_duration_on_culling_strike_ms"}},[2198]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed during Onslaught"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed during Onslaught"}}},stats={[1]="attack_and_cast_speed_+%_during_onslaught"}},[2199]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Chilled during Onslaught"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Chilled during Onslaught"}}},stats={[1]="base_avoid_chill_%_while_have_onslaught"}},[2200]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Your Chaos Damage Poisons Enemies"}}},stats={[1]="chaos_damage_poisons"}},[2201]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Your Chaos Damage has %1%%% chance to Poison Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Your Chaos Damage Poisons Enemies"}}},stats={[1]="chaos_damage_chance_to_poison_%"}},[2202]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Mines can be Detonated an additional time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Mines can be Detonated %1% additional times"}}},stats={[1]="mine_extra_uses"}},[2203]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Taking Fire Damage instead heals you"}}},stats={[1]="base_fire_damage_heals"}},[2204]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Taking Cold Damage instead heals you"}}},stats={[1]="base_cold_damage_heals"}},[2205]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Taking Lightning Damage instead heals you"}}},stats={[1]="base_lightning_damage_heals"}},[2206]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Taking Elemental Damage instead heals you"}}},stats={[1]="base_elemental_damage_heals"}},[2207]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Chilled, Frozen or Ignited during Onslaught"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Chilled, Frozen or Ignited during Onslaught"}}},stats={[1]="avoid_freeze_chill_ignite_%_while_have_onslaught"}},[2208]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="Ignites you cause are reflected back to you"}}},stats={[1]="ignites_reflected_to_self"}},[2209]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Sword Physical Damage as Extra Fire Damage"}}},stats={[1]="sword_physical_damage_%_to_add_as_fire"}},[2210]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1000,[2]=1000}},text="You gain Onslaught for %1% second on being Ignited"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds on being Ignited"}}},stats={[1]="gain_onslaught_when_ignited_ms"}},[2211]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Blind nearby Enemies on being Ignited"},[2]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=100,[2]="#"}},text="Blind nearby Enemies on being Ignited"}}},stats={[1]="blind_nearby_enemies_when_ignited_%"}},[2212]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Transmogrification"}}},stats={[1]="map_non_unique_equipment_drops_as_sell_price"}},[2213]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Atziri's Influence"}}},stats={[1]="map_items_drop_corrupted"}},[2214]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Found Items have a %1%%% chance to drop Corrupted in Area"}}},stats={[1]="map_items_drop_corrupted_%"}},[2215]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Living Weapons"}}},stats={[1]="map_weapons_drop_animated"}},[2216]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Adds Knockback during Flask effect"}}},stats={[1]="local_flask_adds_knockback_during_flask_effect"}},[2217]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0}},text="%1%%% chance to gain Unholy Might on block for 3 seconds"},[2]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0}},text="Gain Unholy Might on block for 3 seconds"},[3]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},[2]={k="milliseconds_to_seconds",v=2},limit={[1]={[1]=1,[2]=99},[2]={[1]=1,[2]="#"}},text="%1%%% chance to gain Unholy Might on block for %2% seconds"},[4]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},[2]={k="milliseconds_to_seconds",v=2},limit={[1]={[1]=100,[2]="#"},[2]={[1]=1,[2]="#"}},text="Gain Unholy Might on block for %2% seconds"}}},stats={[1]="chance_to_gain_unholy_might_on_block_%",[2]="chance_to_gain_unholy_might_on_block_ms"}},[2218]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strength from Passives in Radius is Transformed to Dexterity"}}},stats={[1]="local_jewel_nearby_passives_str_to_dex"}},[2219]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strength from Passives in Radius is Transformed to Intelligence"}}},stats={[1]="local_jewel_nearby_passives_str_to_int"}},[2220]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Dexterity from Passives in Radius is Transformed to Strength"}}},stats={[1]="local_jewel_nearby_passives_dex_to_str"}},[2221]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Dexterity from Passives in Radius is Transformed to Intelligence"}}},stats={[1]="local_jewel_nearby_passives_dex_to_int"}},[2222]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Intelligence from Passives in Radius is Transformed to Strength"}}},stats={[1]="local_jewel_nearby_passives_int_to_str"}},[2223]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Intelligence from Passives in Radius is Transformed to Dexterity"}}},stats={[1]="local_jewel_nearby_passives_int_to_dex"}},[2224]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmed"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while Unarmed"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUnarmed"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while Unarmed"}}},stats={[1]="skill_area_of_effect_when_unarmed_+%"}},[2225]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life when you Consume a corpse"}}},stats={[1]="recover_%_maximum_life_when_corpse_destroyed_or_consumed"}},[2226]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Life per 10 Strength Allocated in Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Life per 10 Strength Allocated in Radius"}}},stats={[1]="local_unique_jewel_totem_life_+X%_per_10_str_in_radius"}},[2227]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to Dodge Attack Hits"}}},stats={[1]="minion_chance_to_dodge_%"}},[2228]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain %1% of its Modifiers for 20 seconds"}}},stats={[1]="local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill"}},[2229]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When you Kill a Rare monster, you gain %1% of its Modifiers for 20 seconds"}}},stats={[1]="gain_X_random_rare_monster_mods_on_kill"}},[2230]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life when you Block"}}},stats={[1]="recover_%_of_maximum_life_on_block"}},[2231]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions Recover %1%%% of their Life when they Block"}}},stats={[1]="minion_recover_%_of_maximum_life_on_block"}},[2232]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems cannot be Stunned"}}},stats={[1]="totems_cannot_be_stunned"}},[2233]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Leeching"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Leeching"}}},stats={[1]="damage_+%_while_leeching"}},[2234]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Bow range"}}},stats={[1]="display_bow_range_+"}},[2235]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers"}}},stats={[1]="local_unique_jewel_melee_applies_to_bow"}},[2236]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Dexterity per 1 Dexterity on Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius"}},[2237]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Intelligence per 1 Intelligence on Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius"}},[2238]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Strength per 1 Strength on Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_X_strength_per_1_strength_allocated_in_radius"}},[2239]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage per 10 Intelligence from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_chaos_damage_+%_per_10_int_in_radius"}},[2240]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Passives in Radius apply to Minions instead of you"}}},stats={[1]="local_unique_jewel_passives_in_radius_applied_to_minions_instead"}},[2241]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Passive applies to your Minions instead of you"}}},stats={[1]="passive_applies_to_minions"}},[2242]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life gained for each Elemental Ailment on Enemies hit by your Attacks"}}},stats={[1]="life_gained_on_hit_per_enemy_status_ailment"}},[2243]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life gained for each Elemental Ailment on Enemies hit by your Spells"}}},stats={[1]="life_gained_on_spell_hit_per_enemy_status_ailment"}},[2244]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Regeneration rate when on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Regeneration rate when on Full Energy Shield"}}},stats={[1]="life_regeneration_rate_+%_while_es_full"}},[2245]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least %1% Intelligence Allocated in Radius, You can apply an additional Curse"}}},stats={[1]="local_unique_jewel_with_x_int_in_radius_+1_curse"}},[2246]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Unarmed Attack range"}}},stats={[1]="melee_range_+_while_unarmed"}},[2247]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage for each Magic Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage for each Magic Item Equipped"}}},stats={[1]="damage_+%_per_equipped_magic_item"}},[2248]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while on Full Energy Shield"}}},stats={[1]="spell_damage_+%_while_es_full"}},[2249]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Totems fire %1% additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Totems fire %1% additional Projectiles"}}},stats={[1]="totem_number_of_additional_projectiles"}},[2250]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Spell Hits while on Full Energy Shield"}}},stats={[1]="chance_to_dodge_spells_%_while_es_full"}},[2251]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Gain Unholy Might for 4 seconds on Melee Kill"}}},stats={[1]="chance_to_gain_unholy_might_on_melee_kill_%"}},[2252]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while no Mana is Reserved"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while no Mana is Reserved"}}},stats={[1]="spell_damage_+%_while_no_mana_reserved"}},[2253]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowMana"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while not on Low Mana"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowMana"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while not on Low Mana"}}},stats={[1]="spell_damage_+%_while_not_low_mana"}},[2254]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowMana"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost while not on Low Mana"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowMana"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost while not on Low Mana"}}},stats={[1]="mana_cost_+%_while_not_low_mana"}},[2255]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attributes per allocated Keystone"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attributes per allocated Keystone"}}},stats={[1]="all_attributes_+%_per_assigned_keystone"}},[2256]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Mirror Arrow and Clone Arrow spawn one additional Clone"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Mirror Arrow and Clone Arrow spawn %1$+d additional Clones"}}},stats={[1]="number_of_additional_clones"}},[2257]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Attack Skills per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Attack Skills per Freeze Charge"}}},stats={[1]="object_inherent_attack_skills_damage_+%_final_per_frenzy_charge"}},[2258]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1% seconds additional Base Duration per 100 Intelligence"}}},stats={[1]="skill_effect_duration_per_100_int"}},[2259]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Intelligence for each Unallocated Passive in Radius"}}},stats={[1]="local_unique_jewel_intelligence_per_unallocated_node_in_radius"}},[2260]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="If at least 70 Dexterity is Allocated in Radius, gain %1%%% of Physical Damage as Extra Chaos Damage"}}},stats={[1]="local_unique_jewel_with_70_dex_physical_damage_to_add_as_chaos_%"}},[2261]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="If at least 70 Strength is Allocated in Radius, %1%%% increased Life Recovery rate"}}},stats={[1]="local_unique_jewel_with_70_str_life_recovery_speed_+%"}},[2262]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be Cursed with Silence"}}},stats={[1]="cannot_be_cursed_with_silence"}},[2263]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vaal Skills deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vaal Skills deal %1%%% reduced Damage"}}},stats={[1]="vaal_skill_damage_+%"}},[2264]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Dead"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Dead"}}},stats={[1]="damage_+%_while_dead"}},[2265]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Life for each Corrupted Item Equipped"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Life for each Corrupted Item Equipped"}}},stats={[1]="maximum_life_+%_per_equipped_corrupted_item"}},[2266]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Energy Shield for each Corrupted Item Equipped"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Energy Shield for each Corrupted Item Equipped"}}},stats={[1]="maximum_es_+%_per_equipped_corrupted_item"}},[2267]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage for each Corrupted Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage for each Corrupted Item Equipped"}}},stats={[1]="chaos_damage_+%_per_equipped_corrupted_item"}},[2268]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased total Recovery per second from Life Leech for each Corrupted Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced total Recovery per second from Life Leech for each Corrupted Item Equipped"}}},stats={[1]="life_leech_speed_+%_per_equipped_corrupted_item"}},[2269]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second for each Uncorrupted Item Equipped"}}},stats={[1]="life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item"}},[2270]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced total Recovery per second from Mana Leech for each Corrupted Item Equipped"}}},stats={[1]="mana_leech_speed_+%_per_equipped_corrupted_item"}},[2271]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Resistances for each Corrupted Item Equipped"}}},stats={[1]="all_resistances_%_per_equipped_corrupted_item"}},[2272]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain an additional Vaal Soul on Kill"}}},stats={[1]="chance_to_gain_vaal_soul_on_kill_%"}},[2273]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vaal Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vaal Skill Effect Duration"}}},stats={[1]="vaal_skill_effect_duration_+%"}},[2274]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vaal Skill Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vaal Skill Critical Strike Chance"}}},stats={[1]="vaal_skill_critical_strike_chance_+%"}},[2275]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Vaal Skill Critical Strike Multiplier"}}},stats={[1]="vaal_skill_critical_strike_multiplier_+"}},[2276]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain an additional Vaal Soul per Enemy Shattered"}}},stats={[1]="chance_to_gain_vaal_soul_on_enemy_shatter_%"}},[2277]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Totem Skills that cast an Aura"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Totem Skills that cast an Aura"}}},stats={[1]="mana_cost_+%_on_totemified_aura_skills"}},[2278]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Experience Gain for Corrupted Gems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Experience Gain for Corrupted Gems"}}},stats={[1]="corrupted_gem_experience_gain_+%"}},[2279]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]="#"}},text="With %1% Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead"}}},stats={[1]="life_leech_uses_chaos_damage_when_X_corrupted_items_equipped"}},[2280]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]="#"}},text="With %1% Corrupted Items Equipped: 50%% of Chaos Damage does not bypass Energy Shield, and 50%% of Physical Damage bypasses Energy Shield"}}},stats={[1]="half_physical_bypasses_es_half_chaos_damages_es_when_X_corrupted_items_equipped"}},[2281]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextSoulEater"},[3]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]="#"}},text="With 5 Corrupted Items Equipped: Gain Soul Eater for %1% seconds on Vaal Skill use"}}},stats={[1]="gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms"}},[2282]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spend Energy Shield before Mana for Skill Costs"}}},stats={[1]="spend_energy_shield_for_costs_before_mana"}},[2283]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Energy Shield protects Mana instead of Life"}}},stats={[1]="energy_shield_protects_mana"}},[2284]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]=1,[2]="#"}},text="Damage from Enemies Hitting you is Lucky while you are Cursed with Vulnerability"},[2]={[1]={k="reminderstring",v="ReminderTextUnlucky"},limit={[1]={[1]="#",[2]=-1}},text="Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability"}}},stats={[1]="enemy_extra_damage_rolls_while_affected_by_vulnerability"}},[2285]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Energy Shield starts at zero"}}},stats={[1]="start_at_zero_energy_shield"}},[2286]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot gain Energy Shield"}}},stats={[1]="no_energy_shield_recovery"}},[2287]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You count as on Low Life while you are Cursed with Vulnerability"}}},stats={[1]="you_count_as_low_life_while_affected_by_vulnerability"}},[2288]={lang={English={[1]={limit={[1]={[1]=100,[2]=100}},text="Cursed with Level 10 Punishment on Kill"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to be cursed with Level 10 Punishment on Kill"}}},stats={[1]="chance_to_curse_self_with_punishment_on_kill_%"}},[2289]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You are Cursed with Level %1% Vulnerability"}}},stats={[1]="self_cursed_with_level_x_vulnerability"}},[2290]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="1%% increased Evasion Rating per %1% Dexterity Allocated in Radius"}}},stats={[1]="local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius"}},[2291]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="1%% increased Claw Physical Damage per %1% Dexterity Allocated in Radius"}}},stats={[1]="local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius"}},[2292]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamageTypes"},limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage"}}},stats={[1]="local_unique_jewel_damage_increases_applies_to_fire_damage"}},[2293]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage"}}},stats={[1]="local_unique_jewel_physical_damage_increases_applies_to_cold_damage"}},[2294]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage"}}},stats={[1]="local_unique_jewel_cold_damage_increases_applies_to_physical_damage"}},[2295]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200%% of their value"}}},stats={[1]="local_unique_jewel_energy_shield_increases_applies_to_armour_doubled"}},[2296]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield"}}},stats={[1]="local_unique_jewel_life_increases_applies_to_energy_shield"}},[2297]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hits have %1%%% increased Critical Strike Chance against you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hits have %1%%% reduced Critical Strike Chance against you"}}},stats={[1]="base_enemy_critical_strike_chance_+%_against_self"}},[2298]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Hits have %1$+d%% additional Critical Strike Chance against you"}}},stats={[1]="enemy_additional_critical_strike_chance_against_self"}},[2299]={lang={English={[1]={[1]={k="times_twenty",v=1},limit={[1]={[1]=1,[2]="#"}},text="Hits have %1%%% increased Critical Strike Chance against you"},[2]={[1]={k="times_twenty",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hits have %1%%% reduced Critical Strike Chance against you"}}},stats={[1]="enemy_critical_strike_chance_+%_against_self_20_times_value"}},[2300]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Adds 1 maximum Lightning Damage to Attacks per %1% Dexterity Allocated in Radius"}}},stats={[1]="local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex"}},[2301]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Adds 1 to Maximum Life per %1% Intelligence Allocated in Radius"}}},stats={[1]="local_unique_jewel_additional_life_per_X_int_in_radius"}},[2302]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1%% increased Chaos Damage per %1% Intelligence Allocated in Radius"}}},stats={[1]="local_unique_jewel_chaos_damage_+%_per_X_int_in_radius"}},[2303]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1%% reduced Chill and Freeze Duration per %1% Dexterity Allocated in Radius"}}},stats={[1]="local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius"}},[2304]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200%% of their value"}}},stats={[1]="local_unique_jewel_life_increases_applies_to_mana_doubled"}},[2305]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus"}}},stats={[1]="local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius"}},[2306]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="1%% increased Melee Physical Damage with Unarmed Attacks per %1% Dexterity Allocated in Radius"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]=-1}},text="1%% reduced Melee Physical Damage with Unarmed Attacks per %1% Dexterity Allocated in Radius"}}},stats={[1]="local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius"}},[2307]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Chill Enemy for %1$d second when Hit, reducing their Action Speed by 30%%"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1001,[2]="#"}},text="Chill Enemy for %1$d seconds when Hit, reducing their Action Speed by 30%%"}}},stats={[1]="chill_enemy_when_hit_duration_ms"}},[2308]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Physical Damage taken from Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Physical Damage taken from Hits"}}},stats={[1]="new_arctic_armour_physical_damage_taken_when_hit_+%_final"}},[2309]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Fire Damage taken from Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Fire Damage taken from Hits"}}},stats={[1]="new_arctic_armour_fire_damage_taken_when_hit_+%_final"}},[2310]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextVisibility"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Visibility to Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextVisibility"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Visibility to Enemies"}}},stats={[1]="enemy_aggro_radius_+%"}},[2311]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=2},limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]="#"}},text="Removes all but one Life on use\nRemoved life is Regenerated as Energy Shield over %2$d seconds"}}},stats={[1]="local_unique_remove_life_and_regen_es_from_removed_life",[2]="local_unique_regen_es_from_removed_life_duration_ms"}},[2312]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Physical Attack Damage is increased by 1%% per %1$d Strength from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius"}},[2313]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fortify Duration is increased by 1%% per %1$d Intelligence from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius"}},[2314]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fire Damage is increased by 1%% per %1$d Intelligence from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_fire_damage_+1%_per_x_int_in_radius"}},[2315]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cold Damage is increased by 1%% per %1$d Intelligence from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_cold_damage_+1%_per_x_int_in_radius"}},[2316]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Physical Damage is increased by 1%% per %1$d Intelligence from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_physical_damage_+1%_per_int_in_radius"}},[2317]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Physical Attack Damage is increased by 1%% per %1$d Dexterity from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius"}},[2318]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius"}},[2319]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield per Second for\nevery 10 Intelligence on Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius"}},[2320]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed per 10 Dexterity on Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius"}},[2321]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectile Damage is increased by 1%% per %1$d Dexterity from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius"}},[2322]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Glacial Cascade gains an additional stage with %1$d Intelligence from Passives in Radius"}}},stats={[1]="local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius"}},[2323]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Animate Weapon will Animate Bows and Wands with %1$d Dexterity from Passives in Radius"}}},stats={[1]="local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius"}},[2324]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Split Arrow fires an additional arrow with %1$d Dexterity from Passives in Radius"}}},stats={[1]="local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius"}},[2325]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius"}}},stats={[1]="local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius"}},[2326]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius"}}},stats={[1]="local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius"}},[2327]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius"}}},stats={[1]="local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius"}},[2328]={lang={English={[1]={limit={[1]={[1]="#",[2]=1}},text="Split Arrow fires an additional arrow"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Split Arrow fires %1$d additional arrows"}}},stats={[1]="split_arrow_number_of_additional_arrows"}},[2329]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Animate Weapon can Animate Bows"}}},stats={[1]="animate_weapon_can_animate_bows"}},[2330]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Animate Weapon can Animate Wands"}}},stats={[1]="animate_weapon_can_animate_wands"}},[2331]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies take %1$d Lightning Damage per second"}}},stats={[1]="local_display_nearby_enemies_take_X_lightning_damage_per_minute"}},[2332]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage is taken from Mana before Life per Power Charge"}}},stats={[1]="damage_taken_goes_to_mana_%_per_power_charge"}},[2333]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Power Charge"}}},stats={[1]="critical_strike_chance_+%_per_power_charge"}},[2334]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second if you were Hit Recently"}}},stats={[1]="enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit"}},[2335]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ball Lightning Damage"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ball Lightning Damage"}}},stats={[1]="ball_lightning_damage_+%"}},[2336]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Bleeding"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Bleeding"}}},stats={[1]="bleeding_damage_+%"}},[2337]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poison Duration"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poison Duration"}}},stats={[1]="base_poison_duration_+%"}},[2338]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Poison Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Poison Duration"}}},stats={[1]="unique_volkuurs_clutch_poison_duration_+%_final"}},[2339]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Poison on Hit"}}},stats={[1]="global_poison_on_hit"}},[2340]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Always Poison on Hit"}}},stats={[1]="base_chance_to_poison_on_hit_%"}},[2341]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Poison Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Minions Poison Enemies on Hit"}}},stats={[1]="minions_chance_to_poison_on_hit_%"}},[2342]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Poison on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Always Poison on Hit with Attacks"}}},stats={[1]="chance_to_poison_on_hit_with_attacks_%"}},[2343]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage from Hits taken as Cold Damage"}}},stats={[1]="fire_damage_taken_%_as_cold"}},[2344]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage from Hits taken as Lightning Damage"}}},stats={[1]="fire_damage_taken_%_as_lightning"}},[2345]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage from Hits taken as Fire Damage"}}},stats={[1]="cold_damage_taken_%_as_fire"}},[2346]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage from Hits taken as Lightning Damage"}}},stats={[1]="cold_damage_taken_%_as_lightning"}},[2347]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage from Hits taken as Fire Damage"}}},stats={[1]="lightning_damage_taken_%_as_fire"}},[2348]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Poison"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Poison"}}},stats={[1]="base_poison_damage_+%"}},[2349]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage from Hits taken as Cold Damage"}}},stats={[1]="lightning_damage_taken_%_as_cold"}},[2350]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Charges gained during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flask Charges gained during any Flask Effect"}}},stats={[1]="flask_charges_gained_+%_during_flask_effect"}},[2351]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate during any Flask Effect"}}},stats={[1]="mana_regeneration_rate_+%_during_flask_effect"}},[2352]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Life Leech applies to Enemies as Chaos Damage"}}},stats={[1]="life_leech_applies_to_enemies_%"}},[2353]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed during any Flask Effect"}}},stats={[1]="movement_speed_+%_during_flask_effect"}},[2354]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier against Bleeding Enemies"}}},stats={[1]="critical_strike_multiplier_+_vs_bleeding_enemies"}},[2355]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier against Burning Enemies"}}},stats={[1]="critical_strike_multiplier_+_vs_burning_enemies"}},[2356]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier per 1%% Chance to Block Attack Damage"}}},stats={[1]="critical_strike_multiplier_+_per_1%_block_chance"}},[2357]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Bleeding Enemies"}}},stats={[1]="critical_strike_chance_+%_vs_bleeding_enemies"}},[2358]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Moving while Bleeding doesn't cause Minions to take extra Damage"}}},stats={[1]="minion_no_extra_bleed_damage_while_moving"}},[2359]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Moving while Bleeding doesn't cause you to take extra Damage"}}},stats={[1]="no_extra_bleed_damage_while_moving"}},[2360]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have Corrupting Blood"}}},stats={[1]="map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack"}},[2361]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Action Speed cannot be modified to below base value"}}},stats={[1]="action_speed_cannot_be_reduced_below_base"}},[2362]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Movement Speed cannot be modified to below base value"}}},stats={[1]="movement_speed_cannot_be_reduced_below_base"}},[2363]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while you have Fortify"}}},stats={[1]="damage_+%_while_fortified"}},[2364]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second while you have Fortify"}}},stats={[1]="life_regeneration_per_minute_%_while_fortified"}},[2365]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Endurance Charge"}}},stats={[1]="damage_+%_per_endurance_charge"}},[2366]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Recover %1%%% of Life and Mana when you use a Warcry"}}},stats={[1]="restore_life_and_mana_on_warcry_%"}},[2367]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Warcry Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Warcry Duration"}}},stats={[1]="warcry_duration_+%"}},[2368]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you've been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you've been Hit Recently"}}},stats={[1]="attack_speed_+%_when_hit"}},[2369]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage when not on Low Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage when not on Low Life"}}},stats={[1]="damage_+%_when_not_on_low_life"}},[2370]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while you have a Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while you have a Totem"}}},stats={[1]="damage_+%_while_totem_active"}},[2371]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Fire Damage if you've Killed Recently"}}},stats={[1]="physical_damage_%_added_as_fire_damage_on_kill"}},[2372]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if you've summoned a Totem Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed if you've summoned a Totem Recently"}}},stats={[1]="attack_and_cast_speed_+%_on_placing_totem"}},[2373]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Rare and Unique Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Rare and Unique Enemies"}}},stats={[1]="damage_+%_to_rare_and_unique_enemies"}},[2374]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},[2]={k="reminderstring",v="ReminderTextOverkill"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Overkill Damage is Leeched as Life"}}},stats={[1]="life_leech_on_overkill_damage_%"}},[2375]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while Leeching"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while Leeching"}}},stats={[1]="attack_speed_+%_while_leeching"}},[2376]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Life Leech effects are not removed at Full Life"}}},stats={[1]="life_leech_does_not_stop_at_full_life"}},[2377]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot be Stunned while Leeching"}}},stats={[1]="cannot_be_stunned_while_leeching"}},[2378]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBloodMagicCosts"},limit={[1]={[1]=1,[2]="#"}},text="Attacks have Blood Magic"}}},stats={[1]="attacks_use_life_in_place_of_mana"}},[2379]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBloodMagicCosts"},limit={[1]={[1]="#",[2]="#"}},text="Skills which throw Traps have Blood Magic"}}},stats={[1]="trap_throw_skills_have_blood_magic"}},[2380]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour and Evasion Rating when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour and Evasion Rating when on Low Life"}}},stats={[1]="armour_and_evasion_on_low_life_+%"}},[2381]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies you Taunt have a %1%%% increased chance to be Stunned"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies you Taunt have a %1%%% reduced chance to be Stunned"}}},stats={[1]="taunted_enemies_chance_to_be_stunned_+%"}},[2382]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Taunted by you take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Taunted by you take %1%%% reduced Damage"}}},stats={[1]="taunted_enemies_damage_taken_+%"}},[2383]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while you have Fortify"}}},stats={[1]="attack_speed_while_fortified_+%"}},[2384]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage if you were Damaged by a Hit Recently"}}},stats={[1]="block_chance_on_damage_taken_%"}},[2385]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you've taken no Damage from Hits Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you've taken no Damage from Hits Recently"}}},stats={[1]="damage_while_no_damage_taken_+%"}},[2386]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage for each time you've Blocked in the past 10 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage for each time you've Blocked in the past 10 seconds"}}},stats={[1]="physical_damage_on_block_+%"}},[2387]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if you've been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed if you've been Hit Recently"}}},stats={[1]="attack_and_cast_speed_when_hit_+%"}},[2388]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Hits and Ailments against Blinded Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Hits and Ailments against Blinded Enemies"}}},stats={[1]="fire_damage_+%_to_blinded_enemies"}},[2389]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage taken from Blinded Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage taken from Blinded Enemies"}}},stats={[1]="spell_damage_taken_+%_from_blinded_enemies"}},[2390]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Totems have %1%%% of your Armour"}}},stats={[1]="totems_gain_%_of_players_armour"}},[2391]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you haven't been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you haven't been Hit Recently"}}},stats={[1]="movement_velocity_while_not_hit_+%"}},[2392]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life and Mana if you've Killed Recently"}}},stats={[1]="gain_life_and_mana_leech_on_kill_permyriad"}},[2393]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance on Hit to Taunt an Enemy"}}},stats={[1]="chance_to_taunt_on_hit_%"}},[2394]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Strength in Radius, %1%%% increased\nRarity of Items dropped by Enemies Shattered by Glacial Hammer"}}},stats={[1]="local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius"}},[2395]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains %1%%% increased Damage each time it Hits"}}},stats={[1]="local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius"}},[2396]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Double Strike has a %1%%% chance Trigger On Kill Effects twice"}}},stats={[1]="local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius"}},[2397]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Viper Strike deals %1%%% increased Damage with Hits and Poison for each Poison on the Enemy"}}},stats={[1]="local_unique_jewel_viper_strike_attack_damage_per_poison_on_enemy_+%_with_50_dexterity_in_radius"}},[2398]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Strength in Radius, Heavy Strike has a \n%1%%% chance to deal Double Damage"}}},stats={[1]="local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius"}},[2399]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer"}}},stats={[1]="glacial_hammer_item_rarity_on_shattering_enemy_+%"}},[2400]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spectral Throw deals %1%%% increased Damage per Enemy Hit"}}},stats={[1]="spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%"}},[2401]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Double Strike has a %1%%% chance Trigger On Kill Effects twice"}}},stats={[1]="double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%"}},[2402]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Viper Strike deals %1%%% increased Damage with Hits and Poison for each Poison on the Enemy"}}},stats={[1]="viper_strike_attack_damage_per_poison_on_enemy_+%"}},[2403]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Heavy Strike has a %1%%% chance to deal Double Damage"}}},stats={[1]="heavy_strike_chance_to_deal_double_damage_%"}},[2404]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills if you've been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills if you've been Hit Recently"}}},stats={[1]="enchantment_boots_mana_costs_when_hit_+%"}},[2405]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Avoid being Stunned if you've Killed Recently"}}},stats={[1]="enchantment_boots_stun_avoid_%_on_kill"}},[2406]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Spell Hits if you've\ntaken Spell Damage Recently"}}},stats={[1]="enchantment_boots_spell_dodge_when_hit_by_spells_%"}},[2407]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if you've Killed Recently"}}},stats={[1]="enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill"}},[2408]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage if you've been Hit Recently"}}},stats={[1]="enchantment_boots_added_cold_damage_when_hit_minimum",[2]="enchantment_boots_added_cold_damage_when_hit_maximum"}},[2409]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage if you haven't Killed Recently"}}},stats={[1]="enchantment_boots_minimum_added_lightning_damage_when_you_havent_killed_for_4_seconds",[2]="enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds"}},[2410]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},[3]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life if you've Killed Recently"}}},stats={[1]="enchantment_boots_life_leech_on_kill_permyriad"}},[2411]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]="#"}},text="Adds %1% to %2% Fire Damage if you've Killed Recently"}}},stats={[1]="enchantment_boots_minimum_added_fire_damage_on_kill_4s",[2]="enchantment_boots_maximum_added_fire_damage_on_kill_4s"}},[2412]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you haven't been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you haven't been Hit Recently"}}},stats={[1]="enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds"}},[2413]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Freeze, Shock and Ignite if you haven't Crit Recently"}}},stats={[1]="enchantment_boots_status_ailment_chance_+%_when_havent_crit_for_4_seconds"}},[2414]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance to Dodge Attack Hits if you've taken a Critical Strike Recently"}}},stats={[1]="enchantment_boots_dodge_chance_when_critically_hit_%"}},[2415]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to %1% Skeleton Mages"}}},stats={[1]="local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons"}},[2416]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summon Skeletons can Summon up to %1% Skeleton Mages"}}},stats={[1]="number_of_melee_skeletons_to_summon_as_mage_skeletons"}},[2417]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Strength in Radius, Vigilant Strike\nFortifies you and Nearby Allies for %1% seconds"}}},stats={[1]="local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius"}},[2418]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vigilant Strike Fortifies you and Nearby Allies for %1% seconds"}}},stats={[1]="vigilant_strike_applies_to_nearby_allies_for_X_seconds"}},[2419]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to %1%%% reduced Area of Effect"}}},stats={[1]="local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius"}},[2420]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to %1$+d Radius"}}},stats={[1]="local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius"}},[2421]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Fireball Projectiles gain Area as they travel farther, up to %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Fireball Projectiles gain Area as they travel farther, up to %1%%% reduced Area of Effect"}}},stats={[1]="fireball_radius_up_to_+%_at_longer_ranges"}},[2422]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Fireball Projectiles gain Radius as they travel farther, up to %1$+d Radius"}}},stats={[1]="fireball_base_radius_up_to_+_at_longer_ranges"}},[2423]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Animate Weapon can Animate up to %1% Ranged Weapons"}}},stats={[1]="local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius"}},[2424]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Animate Weapon can Animate up to %1% ranged weapons"}}},stats={[1]="animate_weapon_can_animate_up_to_x_additional_ranged_weapons"}},[2425]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="With at least 40 Strength in Radius, Ground Slam has a %1%%% chance\nto grant an Endurance Charge when you Stun an Enemy"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Strength in Radius, Ground Slam grants an Endurance Charge on Stun"}}},stats={[1]="local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius"}},[2426]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Strength in Radius, Ground Slam\nhas a %1%%% increased angle"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Strength in Radius, Ground Slam\nhas a %1%%% reduced angle"}}},stats={[1]="local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius"}},[2427]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ground Slam has a %1%%% increased angle"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ground Slam has a %1%%% reduced angle"}}},stats={[1]="ground_slam_angle_+%"}},[2428]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, Cold Snap\nhas a %1%%% chance to grant a Power Charge on Killing Blow"}}},stats={[1]="local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius"}},[2429]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cold Snap has a %1%%% chance to grant a Power Charge on Killing Blow"}}},stats={[1]="cold_snap_gain_power_charge_on_kill_%"}},[2430]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, %1%%% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies"}}},stats={[1]="local_unique_jewel_rallying_cry_damage_taken_goes_to_mana_%_with_50_int_in_radius"}},[2431]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies"}}},stats={[1]="rallying_cry_damage_taken_goes_to_mana_%"}},[2432]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Dexterity in Radius, Barrage fires an additional projectile simultaneously on the first and final attacks"},[2]={limit={[1]={[1]=2,[2]="#"}},text="With at least 40 Dexterity in Radius, Barrage fires an additional %1% projectiles simultaneously on the first and final attacks"}}},stats={[1]="local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius"}},[2433]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Barrage fires an additional projectile simultaneously on the first and final attacks"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Barrage fires an additional %1% projectiles simultaneously on the first and final attacks"}}},stats={[1]="barrage_final_volley_fires_x_additional_projectiles_simultaneously"}},[2434]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Block"}}},stats={[1]="never_block"}},[2435]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="No Chance to Block"}}},stats={[1]="local_no_block_chance"}},[2436]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Mana Cost per Endurance Charge"}}},stats={[1]="mana_cost_-%_per_endurance_charge"}},[2437]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRampage"},limit={[1]={[1]=1,[2]="#"}},text="Gain Rampage while at Maximum Endurance Charges"}}},stats={[1]="gain_rampage_while_at_maximum_endurance_charges"}},[2438]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lose all Endurance Charges when Rampage ends"}}},stats={[1]="lose_endurance_charges_on_rampage_end"}},[2439]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Animate Weapon can Animate up to %1% Ranged Weapons"}}},stats={[1]="virtual_number_of_ranged_animated_weapons_allowed"}},[2440]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="Stun Threshold is based on %1%%% of your Mana instead of Life"}}},stats={[1]="stun_threshold_based_on_%_mana_instead_of_life"}},[2441]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Threshold"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Threshold"}}},stats={[1]="stun_threshold_+%"}},[2442]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Attack and Cast Speed per Skeleton you own"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Attack and Cast Speed per Skeleton you own"}}},stats={[1]="minion_attack_and_cast_speed_+%_per_active_skeleton"}},[2443]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Duration per Raised Zombie"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Duration per Raised Zombie"}}},stats={[1]="minion_duration_+%_per_active_zombie"}},[2444]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Damage per Raised Spectre"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Damage per Raised Spectre"}}},stats={[1]="minion_damage_+%_per_active_spectre"}},[2445]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions Regenerate %1% Life per second per Raging Spirit you own"}}},stats={[1]="minion_life_regeneration_per_minute_per_active_raging_spirit"}},[2446]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Warcry Speed"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Warcry Speed"}}},stats={[1]="warcry_speed_+%"}},[2447]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Her Blessing for 3 seconds when you Ignite an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain Her Blessing for 3 seconds when you Ignite an Enemy"}}},stats={[1]="gain_her_blessing_for_3_seconds_on_ignite_%"}},[2448]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Blind nearby Enemies when gaining Her Blessing"},[2]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=100,[2]="#"}},text="Always Blind nearby Enemies when gaining Her Blessing"}}},stats={[1]="blind_nearby_enemies_when_gaining_her_blessing_%"}},[2449]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Frozen, Chilled or Ignited with Her Blessing"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Frozen, Chilled or Ignited with Her Blessing"}}},stats={[1]="avoid_freeze_chill_ignite_%_with_her_blessing"}},[2450]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Movement Speed with Her Blessing"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Movement Speed with Her Blessing"}}},stats={[1]="attack_and_movement_speed_+%_with_her_blessing"}},[2451]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier per Power Charge"}}},stats={[1]="critical_strike_multiplier_+_per_power_charge"}},[2452]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Poison on Hit against Bleeding Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Always Poison on Hit against Bleeding Enemies"}}},stats={[1]="apply_poison_on_hit_vs_bleeding_enemies_%"}},[2453]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Blinded Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Blinded Enemies"}}},stats={[1]="damage_taken_+%_from_blinded_enemies"}},[2454]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage per Frenzy Charge"}}},stats={[1]="attack_damage_+%_per_frenzy_charge"}},[2455]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Frenzy Charge"}}},stats={[1]="damage_+%_per_frenzy_charge"}},[2456]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Arcane Surge on you"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Arcane Surge on you"}}},stats={[1]="arcane_surge_effect_+%"}},[2457]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Arcane Surge on you per\n200 Mana spent Recently, up to 50%%"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextArcaneSurge"},[3]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Arcane Surge on you per\n200 Mana spent Recently"}}},stats={[1]="arcane_surge_effect_+%_per_200_mana_spent_recently_up_to_50%"}},[2458]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Onslaught Effect"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Onslaught Effect"}}},stats={[1]="onslaught_effect_+%"}},[2459]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage during Onslaught"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage during Onslaught"}}},stats={[1]="attack_damage_+%_while_onslaught_active"}},[2460]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Poisoned Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Poisoned Enemies"}}},stats={[1]="critical_strike_chance_+%_vs_poisoned_enemies"}},[2461]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken"}}},stats={[1]="elemental_damage_taken_+%"}},[2462]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Trap or Mine Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Trap or Mine Hits"}}},stats={[1]="damage_taken_from_traps_and_mines_+%"}},[2463]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for Attacks to Maim on Hit against Poisoned Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=99,[2]=100}},text="Attacks always Maim on Hit against Poisoned Enemies"}}},stats={[1]="maim_on_hit_%_vs_poisoned_enemies"}},[2464]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more chance to Evade Melee Attacks during Onslaught"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less chance to Evade Melee Attacks during Onslaught"}}},stats={[1]="raider_passive_evade_melee_attacks_while_onslaughted_+%_final"}},[2465]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more chance to Evade Projectile Attacks during Onslaught"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less chance to Evade Projectile Attacks during Onslaught"}}},stats={[1]="raider_passive_evade_projectile_attacks_while_onslaughted_+%_final"}},[2466]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Removes Elemental Ailments when you use a Flask"}}},stats={[1]="dispel_status_ailments_on_flask_use"}},[2467]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Elemental Ailments during any Flask Effect"},[2]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=100,[2]="#"}},text="Cannot be affected by Elemental Ailments during any Flask Effect"}}},stats={[1]="avoid_status_ailments_%_during_flask_effect"}},[2468]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed during any Flask Effect"}}},stats={[1]="attack_speed_+%_during_flask_effect"}},[2469]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Resistance during any Flask Effect"}}},stats={[1]="chaos_resistance_+_while_using_flask"}},[2470]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Poison on Hit during any Flask Effect"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Always Poison on Hit during any Flask Effect"}}},stats={[1]="poison_on_hit_during_flask_effect_%"}},[2471]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Shocks nearby Enemies during Flask effect, causing 10%% increased Damage taken"}}},stats={[1]="local_unique_flask_shock_nearby_enemies_during_flask_effect"}},[2472]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You are Shocked during Flask effect, causing 50%% increased Damage taken"}}},stats={[1]="local_unique_flask_shocked_during_flask_effect"}},[2473]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Lightning during Flask effect"}}},stats={[1]="local_unique_flask_physical_damage_%_converted_to_lightning_during_flask_effect"}},[2474]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Lightning Resistance during Flask effect"}}},stats={[1]="local_unique_flask_lightning_resistance_penetration_%_during_flask_effect"}},[2475]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Attacks during Flask effect"}}},stats={[1]="local_unique_flask_minimum_added_lightning_damage_to_attacks_during_flask_effect",[2]="local_unique_flask_maximum_added_lightning_damage_to_attacks_during_flask_effect"}},[2476]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells during Flask effect"}}},stats={[1]="local_unique_flask_minimum_added_lightning_damage_to_spells_during_flask_effect",[2]="local_unique_flask_maximum_added_lightning_damage_to_spells_during_flask_effect"}},[2477]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Leeched as Life during Flask effect"}}},stats={[1]="local_unique_flask_leech_lightning_damage_%_as_life_during_flask_effect"}},[2478]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Leeched as Mana during Flask effect"}}},stats={[1]="local_unique_flask_leech_lightning_damage_%_as_mana_during_flask_effect"}},[2479]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Life and Mana Leech are instant during effect"}}},stats={[1]="local_unique_flask_leech_is_instant_during_flask_effect"}},[2480]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies killed explode dealing %1%%% of their Life as Chaos Damage"}}},stats={[1]="explode_on_kill_%_chaos_damage_to_deal"}},[2481]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies you Kill have a %1%%% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"}}},stats={[1]="explode_enemies_for_25%_life_as_chaos_on_kill_chance_%"}},[2482]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed Enemies you or your Minions Kill have a %1%%% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"}}},stats={[1]="explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"}},[2483]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% of Enemy Elemental Resistances if you haven't Killed Recently"}}},stats={[1]="enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds"}},[2484]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage as Extra Damage of each Element you've been Hit by Spell Damage of Recently"}}},stats={[1]="enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds"}},[2485]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage if you've taken a Critical Strike Recently"}}},stats={[1]="enchantment_boots_minimum_added_chaos_damage_for_4_seconds_when_crit_4s",[2]="enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s"}},[2486]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Movement Speed while not affected by Elemental Ailments"}}},stats={[1]="movement_speed_+%_while_not_affected_by_status_ailments"}},[2487]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Spell Damage if you or your Totems have Killed in the past 2 seconds"}}},stats={[1]="stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds"}},[2488]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},[3]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Elemental Damage Leeched as Life against Enemies affected by Elemental Ailments"}}},stats={[1]="life_leech_permyriad_from_elemental_damage_against_enemies_with_elemental_status_ailments"}},[2489]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="Totems Explode for %1%%% of their Maximum Life as Fire Damage when on Low Life"}}},stats={[1]="totems_explode_for_%_of_max_life_as_fire_damage_on_low_life"}},[2490]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="If you've Warcried Recently, you and nearby allies have %1%%% increased Attack, Cast and Movement Speed"}}},stats={[1]="guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%"}},[2491]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for you and your allies to Avoid being Stunned while you are wielding a Staff"},[2]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=100,[2]="#"}},text="You and your allies cannot be Stunned while you are wielding a Staff"}}},stats={[1]="chance_to_avoid_stun_%_aura_while_wielding_a_staff"}},[2492]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Bleeding Enemies"}}},stats={[1]="damage_taken_+%_from_bleeding_enemies"}},[2493]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for Attacks to Maim on Hit against Bleeding Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=100,[2]="#"}},text="Attacks Maim on Hit against Bleeding Enemies"}}},stats={[1]="maim_bleeding_enemies_on_hit_%"}},[2494]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with One Handed Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with One Handed Weapons"}}},stats={[1]="one_handed_attack_speed_+%"}},[2495]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed for each time you've Blocked in the past 10 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed for each time you've Blocked in the past 10 seconds"}}},stats={[1]="movement_speed_+%_for_4_seconds_on_block"}},[2496]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while you have Fortify"}}},stats={[1]="movement_speed_+%_while_fortified"}},[2497]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken while at Maximum Endurance Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken while at Maximum Endurance Charges"}}},stats={[1]="elemental_damage_taken_+%_at_maximum_endurance_charges"}},[2498]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Elemental Ailments are removed when you reach Low Life"}}},stats={[1]="status_ailments_removed_at_low_life"}},[2499]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Frenzy Charge on Kill with Main Hand"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Frenzy Charge on Kill with Main Hand"}}},stats={[1]="gain_frenzy_charge_on_main_hand_kill_%"}},[2500]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge on Kill with Main Hand"},[2]={limit={[1]={[1]=100,[2]="#"}},text="You gain an Endurance Charge on Kill with Main Hand"}}},stats={[1]="gain_endurance_charge_on_main_hand_kill_%"}},[2501]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken if you've Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken if you've Killed Recently"}}},stats={[1]="damage_taken_+%_for_4_seconds_on_kill"}},[2502]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Stun if you've Killed Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=100,[2]="#"}},text="Cannot be Stunned if you've Killed Recently"}}},stats={[1]="avoid_stun_%_for_4_seconds_on_kill"}},[2503]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="When you or your Totems Kill a Burning Enemy, %1%%% chance for you\nand your Totems to each gain an Endurance Charge"},[2]={limit={[1]={[1]=100,[2]="#"}},text="When you or your Totems Kill a Burning Enemy, you and your Totems each gain an Endurance Charge"}}},stats={[1]="you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%"}},[2504]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for you and your Totems to gain an Endurance Charge when your Totems Kill a Burning Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="You and your Totems gain an Endurance Charge when your Totems Kill a Burning Enemy"}}},stats={[1]="minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%"}},[2505]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Warcry Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Warcry Cooldown Recovery Speed"}}},stats={[1]="warcry_cooldown_speed_+%"}},[2506]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golem Skills have %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golem Skills have %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="golem_skill_cooldown_recovery_+%"}},[2507]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems have %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems have %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="golem_cooldown_recovery_+%"}},[2508]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Damaging Hits always Stun Enemies that are on Full Life"}}},stats={[1]="always_stun_enemies_that_are_on_full_life"}},[2509]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration against Enemies that are on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration against Enemies that are on Full Life"}}},stats={[1]="stun_duration_+%_vs_enemies_that_are_on_full_life"}},[2510]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration against Enemies that are on Low Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration against Enemies that are on Low Life"}}},stats={[1]="stun_duration_+%_vs_enemies_that_are_on_low_life"}},[2511]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with One Handed Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with One Handed Weapons"}}},stats={[1]="damage_+%_with_one_handed_weapons"}},[2512]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Two Handed Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Two Handed Weapons"}}},stats={[1]="damage_+%_with_two_handed_weapons"}},[2513]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Armour received from Body Armour is doubled"}}},stats={[1]="damage_reduction_rating_from_body_armour_doubled"}},[2514]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction with an Summoned Totem"}}},stats={[1]="damage_reduction_rating_%_with_active_totem"}},[2515]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Triggers Level %1% Manifest Dancing Dervish on Rampage"}}},stats={[1]="local_display_cast_level_x_manifest_rageblade"}},[2516]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Manifested Dancing Dervish disables both weapon slots"}}},stats={[1]="local_display_manifest_rageblade_disables_weapons"}},[2517]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Manifested Dancing Dervish dies when Rampage ends"}}},stats={[1]="local_display_manifest_rageblade_destroy_on_end_rampage"}},[2518]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="Minions grant Onslaught"}}},stats={[1]="local_display_minions_grant_onslaught"}},[2519]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Physical Damage while Frozen"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Physical Damage while Frozen"}}},stats={[1]="physical_damage_+%_while_frozen"}},[2520]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="With at least 40 Dexterity in Radius, Burning Arrow has a %1%%% chance to spread Burning Ground if it Ignites an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="With at least 40 Dexterity in Radius, Burning Arrow spreads Burning Ground if it Ignites an Enemy"}}},stats={[1]="local_unique_jewel_burning_arrow_spread_burning_ground_when_igniting_enemy_on_hit_%_with_50_dexterity_in_radius"}},[2521]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Dexterity in Radius, Burning Arrow can inflict\nan additional Ignite on an Enemy and cannot apply its Burning Debuff"},[2]={limit={[1]={[1]=2,[2]="#"}},text="With at least 40 Dexterity in Radius, Burning Arrow can inflict %1% additional Ignites on an Enemy"}}},stats={[1]="local_unique_jewel_burning_arrow_additional_ignite_stacks_with_50_dex_in_radius"}},[2522]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="With at least 40 Dexterity in Radius, Burning Arrow has a %1%%% chance to spread Tar if it does not Ignite an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="With at least 40 Dexterity in Radius, Burning Arrow spreads Tar if it does not Ignite an Enemy"}}},stats={[1]="local_unique_jewel_burning_arrow_spread_tar_ground_when_not_igniting_enemy_on_hit_%_with_50_dexterity_in_radius"}},[2523]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Strength in Radius, Cleave grants Fortify on Hit"}}},stats={[1]="local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius"}},[2524]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Strength in Radius, Cleave has +1 to Radius per Nearby\nEnemy, up to +10"}}},stats={[1]="local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius"}},[2525]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Dexterity in Radius, Ethereal Knives fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Ethereal Knives fires %1% additional Projectiles"}}},stats={[1]="local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius"}},[2526]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle"}}},stats={[1]="local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius"}},[2527]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Strength in Radius, Glacial Hammer deals\nCold-only Splash Damage to surrounding targets"}}},stats={[1]="local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius"}},[2528]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Strength in Radius, %1%%% of Glacial\nHammer Physical Damage Converted to Cold Damage"}}},stats={[1]="local_unique_jewel_glacial_hammer_physical_damage_%_to_convert_to_cold_with_50_str_in_radius"}},[2529]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Galvanic Arrow has %1%%% increased Area of Effect"}}},stats={[1]="local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius"}},[2530]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Intelligence in Radius, Spark Projectiles chain an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="With at least 40 Intelligence in Radius, Spark Projectiles chain %1% additional times"}}},stats={[1]="local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius"}},[2531]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Intelligence in Radius, 1 additional Spark Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="With at least 40 Intelligence in Radius, %1% additional Spark Projectiles"}}},stats={[1]="local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius"}},[2532]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Intelligence in Radius, Freezing Pulse fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Freezing Pulse fires %1% additional Projectiles"}}},stats={[1]="local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius"}},[2533]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, %1%%% increased Freezing Pulse Damage if\nyou've Shattered an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Intelligence in Radius, %1%%% reduced Freezing Pulse Damage if\nyou've Shattered an Enemy Recently"}}},stats={[1]="local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius"}},[2534]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Burning Arrow has a %1%%% chance to spread Burning Ground if it Ignites an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Burning Arrow spreads Burning Ground if it Ignites an Enemy"}}},stats={[1]="burning_arrow_spread_burning_ground_when_igniting_enemy_on_hit_%"}},[2535]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Burning Arrow has a %1%%% chance to spread Tar if it does not Ignite an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Burning Arrow spreads Tar if it does not Ignite an Enemy"}}},stats={[1]="burning_arrow_spread_tar_ground_when_not_igniting_enemy_on_hit_%"}},[2536]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Anger has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Anger has %1%%% reduced Aura Effect"}}},stats={[1]="anger_aura_effect_+%"}},[2537]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Wrath has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Wrath has %1%%% reduced Aura Effect"}}},stats={[1]="wrath_aura_effect_+%"}},[2538]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grace has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grace has %1%%% reduced Aura Effect"}}},stats={[1]="grace_aura_effect_+%"}},[2539]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hatred has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hatred has %1%%% reduced Aura Effect"}}},stats={[1]="hatred_aura_effect_+%"}},[2540]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Determination has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Determination has %1%%% reduced Aura Effect"}}},stats={[1]="determination_aura_effect_+%"}},[2541]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Discipline has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Discipline has %1%%% reduced Aura Effect"}}},stats={[1]="discipline_aura_effect_+%"}},[2542]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot be Poisoned"}}},stats={[1]="cannot_be_poisoned"}},[2543]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% chance to be Poisoned"}}},stats={[1]="chance_to_be_poisoned_%"}},[2544]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Physical Damage from Hits"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Avoid Physical Damage from Hits"}}},stats={[1]="avoid_physical_damage_%"}},[2545]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to Avoid Elemental Damage from Hits per Frenzy Charge"},[2]={limit={[1]={[1]=100,[2]=100}},text="Avoid Elemental Damage from Hits while you have Frenzy Charges"}}},stats={[1]="avoid_elemental_damage_%_per_frenzy_charge"}},[2546]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Fire Damage from Hits"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Avoid Fire Damage from Hits"}}},stats={[1]="avoid_fire_damage_%"}},[2547]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Cold Damage from Hits"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Avoid Cold Damage from Hits"}}},stats={[1]="avoid_cold_damage_%"}},[2548]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Lightning Damage from Hits"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Avoid Lightning Damage from Hits"}}},stats={[1]="avoid_lightning_damage_%"}},[2549]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Chaos Damage from Hits"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Avoid Chaos Damage from Hits"}}},stats={[1]="avoid_chaos_damage_%"}},[2550]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Unholy Might for 3 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=100,[2]="#"}},text="Gain Unholy Might for 3 seconds on Kill"}}},stats={[1]="chance_to_gain_unholy_might_on_kill_for_3_seconds_%"}},[2551]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Unholy Might for 4 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=100,[2]="#"}},text="Gain Unholy Might for 4 seconds on Kill"}}},stats={[1]="chance_to_gain_unholy_might_on_kill_for_4_seconds_%"}},[2552]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to gain Unholy Might for 4 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=100,[2]="#"}},text="Minions gain Unholy Might for 4 seconds on Kill"}}},stats={[1]="minion_chance_to_gain_unholy_might_on_kill_for_4_seconds_%"}},[2553]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Onslaught for 4 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]="#"}},text="Gain Onslaught for 4 seconds on Kill"}}},stats={[1]="chance_to_gain_onslaught_on_kill_for_4_seconds_%"}},[2554]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to gain Onslaught for 4 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]="#"}},text="Minions gain Onslaught for 4 seconds on Kill"}}},stats={[1]="minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%"}},[2555]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to grant Onslaught to nearby Enemies on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]="#"}},text="Grant Onslaught to nearby Enemies on Kill"}}},stats={[1]="chance_to_grant_nearby_enemies_onslaught_on_kill_%"}},[2556]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to grant Unholy Might to nearby Enemies on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=100,[2]="#"}},text="Grant Unholy Might to nearby Enemies on Kill"}}},stats={[1]="chance_to_grant_nearby_enemies_unholy_might_on_kill_%"}},[2557]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to grant a Power Charge to nearby Allies on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Grant a Power Charge to nearby Allies on Kill"}}},stats={[1]="chance_to_grant_power_charge_to_nearby_allies_on_kill_%"}},[2558]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to grant a Frenzy Charge to nearby Allies on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Grant a Frenzy Charge to nearby Allies on Hit"}}},stats={[1]="chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%"}},[2559]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes Bleeding when you use a Flask"}}},stats={[1]="remove_bleed_on_flask_use"}},[2560]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage taken"}}},stats={[1]="lightning_damage_taken_+%"}},[2561]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage taken"}}},stats={[1]="cold_damage_taken_+%"}},[2562]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Mana and Energy Shield per second for 2 seconds when you Freeze, Shock or Ignite an Enemy"}}},stats={[1]="mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy"}},[2563]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Flask Charge when you deal a Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Flask Charge when you deal a Critical Strike"}}},stats={[1]="gain_flask_chance_on_crit_%"}},[2564]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Energy Shield granted to you and nearby Allies"}}},stats={[1]="virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies"}},[2565]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Siege Ballista has %1$+d to maximum number of Summoned Totems per 200 Dexterity"}}},stats={[1]="number_of_additional_siege_ballistae_per_200_dexterity"}},[2566]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks per 25 Dexterity"}}},stats={[1]="attack_minimum_added_physical_damage_per_25_dexterity",[2]="attack_maximum_added_physical_damage_per_25_dexterity"}},[2567]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies are Blinded"}}},stats={[1]="local_display_nearby_enemies_are_blinded"}},[2568]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hits against Nearby Enemies have 50%% increased Critical Strike Chance"}}},stats={[1]="local_display_hits_against_nearby_enemies_critical_strike_chance_+50%"}},[2569]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hits against Nearby Enemies have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hits against Nearby Enemies have %1% reduced Critical Strike Chance"}}},stats={[1]="local_display_nearby_enemies_critical_strike_chance_+%_against_self"}},[2570]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Enemies grant %1%%% increased Flask Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nearby Enemies grant %1%%% reduced Flask Charges"}}},stats={[1]="local_display_nearby_enemies_flask_charges_granted_+%"}},[2571]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=1,[2]="#"}},text="Nearby Enemies are Hindered, with %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]="#",[2]=-1}},text="Nearby Enemies are Hindered, with %1%%% reduced Movement Speed"}}},stats={[1]="local_display_nearby_enemies_movement_speed_+%"}},[2572]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Enemies have %1%%% increased Stun and Block Recovery"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nearby Enemies have %1%%% reduced Stun and Block Recovery"}}},stats={[1]="local_display_nearby_enemies_stun_and_block_recovery_+%"}},[2573]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge on Non-Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge on Non-Critical Strike"}}},stats={[1]="gain_power_charge_on_non_critical_strike_%"}},[2574]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Blinded Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Blinded Enemies"}}},stats={[1]="critical_strike_chance_+%_vs_blinded_enemies"}},[2575]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to create Chilled Ground when you Freeze an Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]=100,[2]="#"}},text="Create Chilled Ground when you Freeze an Enemy"}}},stats={[1]="chilled_ground_on_freeze_%_chance_for_3_seconds"}},[2576]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to create Consecrated Ground when you Kill an Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=100,[2]="#"}},text="Create Consecrated Ground when you Kill an Enemy"}}},stats={[1]="consecrate_ground_on_kill_%_for_3_seconds"}},[2577]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Blades Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Blades Damage"}}},stats={[1]="frost_blades_damage_+%"}},[2578]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Blades Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Blades Projectile Speed"}}},stats={[1]="frost_blades_projectile_speed_+%"}},[2579]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Frost Blades Projectiles chain an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Frost Blades Projectiles chain %1% additional times"}}},stats={[1]="frost_blades_number_of_additional_projectiles_in_chain"}},[2580]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summon Raging Spirit has %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summon Raging Spirit has %1%%% reduced Duration"}}},stats={[1]="summoned_raging_spirit_duration_+%"}},[2581]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Summon Raging Spirit has %1%%% chance to summon an extra Minion"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon Raging Spirit summons an additional Raging Spirit"}}},stats={[1]="summoned_raging_spirit_chance_to_spawn_additional_minion_%"}},[2582]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Discharge Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Discharge Damage"}}},stats={[1]="discharge_damage_+%"}},[2583]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Discharge Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Discharge Radius"}}},stats={[1]="discharge_radius_+%"}},[2584]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for Discharge to deal Damage without removing Charges"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Discharge deals Damage without removing Charges"}}},stats={[1]="discharge_chance_not_to_consume_charges_%"}},[2585]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Anger has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Anger has %1%%% reduced Mana Reservation"}}},stats={[1]="anger_mana_reservation_+%"}},[2586]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Trap Damage"}}},stats={[1]="lightning_trap_damage_+%"}},[2587]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="1 additional Lightning Trap Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% additional Lightning Trap Projectiles"}}},stats={[1]="lightning_trap_number_of_additional_projectiles"}},[2588]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Trap Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Trap Cooldown Recovery Speed"}}},stats={[1]="lightning_trap_cooldown_speed_+%"}},[2589]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Piercing Attacks cause Bleeding"}}},stats={[1]="piercing_attacks_cause_bleeding"}},[2590]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Energy Shield Recharge to start when you Block"}}},stats={[1]="energy_shield_recharges_on_block_%"}},[2591]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Players gain Modifiers from Slain Rare Monsters for %1% seconds"}}},stats={[1]="map_players_gain_rare_monster_mods_on_kill_ms"}},[2592]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextSoulEater"},limit={[1]={[1]="#",[2]="#"}},text="Gain Soul Eater for %1% seconds on Rare Monster Kill"}}},stats={[1]="soul_eater_on_rare_kill_ms"}},[2593]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextSoulEater"},limit={[1]={[1]="#",[2]="#"}},text="Players gain Soul Eater for %1% seconds on Rare Monster Kill"}}},stats={[1]="map_players_gain_soul_eater_on_rare_kill_ms"}},[2594]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSoulEater"},limit={[1]={[1]="#",[2]="#"}},text="Gain Soul Eater during any Flask Effect"}}},stats={[1]="gain_soul_eater_during_flask_effect"}},[2595]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose Souls gained from Soul Eater when you use a Flask"}}},stats={[1]="lose_soul_eater_souls_on_flask_use"}},[2596]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]="#",[2]="#"}},text="Skills used by Totems have a %1%%% chance to Taunt on Hit"}}},stats={[1]="totemified_skills_taunt_on_hit_%"}},[2597]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Taunt on Hit"}}},stats={[1]="chance_to_taunt_on_hit_%"}},[2598]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Taunt on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]=100,[2]="#"}},text="Minions Taunt on Hit with Attacks"}}},stats={[1]="minion_attacks_chance_to_taunt_on_hit_%"}},[2599]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken if you Killed a Taunted Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken if you Killed a Taunted Enemy Recently"}}},stats={[1]="damage_taken_+%_for_4_seconds_on_killing_taunted_enemy"}},[2600]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier against Enemies that are on Full Life"}}},stats={[1]="critical_strike_multiplier_vs_enemies_on_full_life_+"}},[2601]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Critical Strike Chance against Enemies that are on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Critical Strike Chance against Enemies that are on Full Life"}}},stats={[1]="ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final"}},[2602]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blind duration"},[2]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blind duration"}}},stats={[1]="blind_duration_+%"}},[2603]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Critical Strike Chance against Enemies that are on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Critical Strike Chance against Enemies on that are Low Life"}}},stats={[1]="assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final"}},[2604]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]="#",[2]="#"}},text="Critical Strikes have Culling Strike"}}},stats={[1]="crits_have_culling_strike"}},[2605]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="You spread Caustic Ground on Death, dealing %1%%% of your maximum Life as Chaos Damage per second"}}},stats={[1]="caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"}},[2606]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Your Minions spread Caustic Ground on Death, dealing %1%%% of their maximum Life as Chaos Damage per second"}}},stats={[1]="minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"}},[2607]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Storm Cloud Charges when you use %1% Lightning Skills in Range"}}},stats={[1]="storm_cloud_charge_count"}},[2608]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Charged Storm Cloud deals %1% more Damage"}}},stats={[1]="storm_cloud_charged_damage_+%_final"}},[2609]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},[3]={k="reminderstring",v="ReminderTextRecently"},[4]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage Leeched as Life if you've taken a Savage Hit Recently"}}},stats={[1]="gain_life_leech_from_any_damage_permyriad_as_life_for_4_seconds_if_taken_savage_hit"}},[2610]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage if you've taken a Savage Hit Recently"}}},stats={[1]="gain_damage_+%_for_4_seconds_if_taken_savage_hit"}},[2611]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Attack Speed if you've taken a Savage Hit Recently"}}},stats={[1]="gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit"}},[2612]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Burning Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Burning Enemies"}}},stats={[1]="damage_+%_vs_burning_enemies"}},[2613]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge on Kill with Off Hand"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge on Kill with Off Hand"}}},stats={[1]="endurance_charge_on_off_hand_kill_%"}},[2614]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You and nearby Allies gain %1%%% increased Melee Physical Damage per 10 Strength"}}},stats={[1]="aura_melee_physical_damage_+%_per_10_strength"}},[2615]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Curse Spells are Cast as Auras"}}},stats={[1]="curse_apply_as_aura"}},[2616]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Critical Strikes ignore Enemy Monster Elemental Resistances"}}},stats={[1]="critical_strikes_ignore_elemental_resistances"}},[2617]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage if you've dealt a Critical Strike Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% reduced Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="damage_+%_for_4_seconds_on_crit"}},[2618]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Critical Strike Chance if you've Killed Recently"}}},stats={[1]="critical_strike_chance_+%_for_4_seconds_on_kill"}},[2619]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You and your Minions have %1%%% increased Damage if you've Consumed a corpse Recently"}}},stats={[1]="damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse"}},[2620]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You and your Minions have %1%%% additional Physical Damage Reduction for each Raised Zombie"}}},stats={[1]="physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie"}},[2621]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spectres have %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spectres have %1%%% reduced Damage"}}},stats={[1]="spectre_damage_+%"}},[2622]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAurasOnlyAffectThingsTheyAffect"},limit={[1]={[1]="#",[2]="#"}},text="Auras from your Skills grant %1%%% increased Damage to you and Allies"}}},stats={[1]="auras_grant_damage_+%_to_you_and_your_allies"}},[2623]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAurasOnlyAffectThingsTheyAffect"},limit={[1]={[1]="#",[2]="#"}},text="Auras from your Skills grant %1$+d%% Physical Damage Reduction to you and Allies"}}},stats={[1]="auras_grant_additional_physical_damage_reduction_%_to_you_and_your_allies"}},[2624]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAurasOnlyAffectThingsTheyAffect"},limit={[1]={[1]="#",[2]="#"}},text="Auras from your Skills grant %1%%% increased Attack and Cast\nSpeed to you and Allies"}}},stats={[1]="auras_grant_attack_and_cast_speed_+%_to_you_and_your_allies"}},[2625]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cooldown Recovery Speed for throwing Traps"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cooldown Recovery Speed for throwing Traps"}}},stats={[1]="placing_traps_cooldown_recovery_+%"}},[2626]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage with Hits against Enemies affected by Elemental Ailments"}}},stats={[1]="damage_+%_vs_enemies_affected_by_status_ailments"}},[2627]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Using Warcries is Instant"}}},stats={[1]="warcries_are_instant"}},[2628]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]="#",[2]="#"}},text="Shield Defences are also granted to nearby Allies"}}},stats={[1]="aura_grant_shield_defences_to_nearby_allies"}},[2629]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to gain Phasing for 4 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]=100,[2]="#"}},text="Gain Phasing for 4 seconds on Kill"}}},stats={[1]="phasing_for_4_seconds_on_kill_%"}},[2630]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You gain %1%%% increased Damage for each Trap"}}},stats={[1]="damage_+%_per_active_trap"}},[2631]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You gain %1%%% increased Area of Effect for each Mine"}}},stats={[1]="skill_area_of_effect_+%_per_active_mine"}},[2632]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Immune to Elemental Ailments while Phasing"}}},stats={[1]="immune_to_status_ailments_while_phased"}},[2633]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Spell Hits while Phasing"}}},stats={[1]="chance_to_dodge_spells_%_while_phased"}},[2634]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Critical Strike Chance per Power Charge"}}},stats={[1]="additional_critical_strike_chance_per_power_charge_permyriad"}},[2635]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Critical Strike Chance while at maximum Power Charges"}}},stats={[1]="additional_critical_strike_chance_permyriad_while_at_maximum_power_charges"}},[2636]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Chaos Damage while at maximum Power Charges"}}},stats={[1]="physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges"}},[2637]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Movement Skills cost no Mana"}}},stats={[1]="movement_skills_cost_no_mana"}},[2638]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if you've used a Movement Skill Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed if you've used a Movement Skill Recently"}}},stats={[1]="attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use"}},[2639]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Recover 10%% of Mana when you use a Skill"}}},stats={[1]="recover_10%_of_maximum_mana_on_skill_use_%"}},[2640]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Mine Throwing Speed if you Detonated Mines Recently"}}},stats={[1]="mine_laying_speed_+%_for_4_seconds_on_detonation"}},[2641]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage if you Detonated Mines Recently"}}},stats={[1]="damage_+%_for_4_seconds_on_detonation"}},[2642]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Flasks gain a Charge every 3 seconds"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Flasks gain %1% Charges every 3 seconds"}}},stats={[1]="flask_charges_recovered_per_3_seconds"}},[2643]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skills used by Traps have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Skills used by Traps have %1%%% reduced Area of Effect"}}},stats={[1]="trap_skill_area_of_effect_+%"}},[2644]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Bleeding Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Bleeding Enemies"}}},stats={[1]="damage_+%_vs_bleeding_enemies"}},[2645]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Bleeding Enemies you Kill Explode, dealing %1%%% of\ntheir Maximum Life as Physical Damage"}}},stats={[1]="bleeding_enemies_explode_for_%_life_as_physical_damage"}},[2646]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When your Traps Trigger, your nearby Traps also Trigger"}}},stats={[1]="nearby_traps_within_x_units_also_trigger_on_triggering_trap"}},[2647]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Blades on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Blades on Hit"}}},stats={[1]="display_cast_word_of_blades_on_hit_%"}},[2648]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Blades on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Blades on Hit"}}},stats={[1]="display_cast_edict_of_blades_on_hit_%_"}},[2649]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Blades on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Blades on Hit"}}},stats={[1]="display_cast_decree_of_blades_on_hit_%__"}},[2650]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Blades on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Blades on Hit"}}},stats={[1]="display_cast_commandment_of_blades_on_hit_%_"}},[2651]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Winter when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Winter when Hit"}}},stats={[1]="display_cast_word_of_winter_when_hit_%"}},[2652]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Winter when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Winter when Hit"}}},stats={[1]="display_cast_edict_of_winter_when_hit_%"}},[2653]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Winter when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Winter when Hit"}}},stats={[1]="display_cast_decree_of_winter_when_hit_%"}},[2654]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Winter when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Winter when Hit"}}},stats={[1]="display_cast_commandment_of_winter_when_hit_%"}},[2655]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Inferno on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Inferno on Kill"}}},stats={[1]="display_cast_word_of_inferno_on_kill_%"}},[2656]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Inferno on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Inferno on Kill"}}},stats={[1]="display_cast_edict_of_inferno_on_kill_%"}},[2657]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Inferno on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Inferno on Kill"}}},stats={[1]="display_cast_decree_of_inferno_on_kill_%"}},[2658]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Inferno on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Inferno on Kill"}}},stats={[1]="display_cast_commandment_of_inferno_on_kill_%"}},[2659]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of the Tempest on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of the Tempest on Hit"}}},stats={[1]="display_cast_word_of_tempest_on_hit_%"}},[2660]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of the Tempest on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of the Tempest on Hit"}}},stats={[1]="display_cast_edict_of_tempest_on_hit_%"}},[2661]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of the Tempest on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of the Tempest on Hit"}}},stats={[1]="display_cast_decree_of_tempest_on_hit_%"}},[2662]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of the Tempest on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of the Tempest on Hit"}}},stats={[1]="display_cast_commandment_of_tempest_on_hit_%"}},[2663]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of the Grave when your Skills or Minions Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of the Grave when your Skills or Minions Kill"}}},stats={[1]="display_cast_word_of_the_grave_on_kill_%"}},[2664]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of the Grave when your Skills or Minions Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of the Grave when your Skills or Minions Kill"}}},stats={[1]="display_cast_edict_of_the_grave_on_kill_%"}},[2665]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of the Grave when your Skills or Minions Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of the Grave when your Skills or Minions Kill"}}},stats={[1]="display_cast_decree_of_the_grave_on_kill_%"}},[2666]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of the Grave when your Skills or Minions Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of the Grave when your Skills or Minions Kill"}}},stats={[1]="display_cast_commandment_of_the_grave_on_kill_%"}},[2667]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Reflection when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Reflection when Hit"}}},stats={[1]="display_cast_word_of_reflection_when_hit_%"}},[2668]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Reflection when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Reflection when Hit"}}},stats={[1]="display_cast_edict_of_reflection_when_hit_%"}},[2669]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Reflection when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Reflection when Hit"}}},stats={[1]="display_cast_decree_of_reflection_when_hit_%"}},[2670]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Reflection when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Reflection when Hit"}}},stats={[1]="display_cast_commandment_of_reflection_when_hit_%"}},[2671]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Force on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Force on Hit"}}},stats={[1]="display_attack_with_word_of_force_on_hit_%"}},[2672]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Force on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Force on Hit"}}},stats={[1]="display_attack_with_edict_of_force_on_hit_%"}},[2673]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Force on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Force on Hit"}}},stats={[1]="display_attack_with_decree_of_force_on_hit_%"}},[2674]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Force on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Force on Hit"}}},stats={[1]="display_attack_with_commandment_of_force_on_hit_%"}},[2675]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Light when you take a Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Light when you take a Critical Strike"}}},stats={[1]="display_attack_with_word_of_light_when_critically_hit_%"}},[2676]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Light when you take a Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Light when you take a Critical Strike"}}},stats={[1]="display_attack_with_edict_of_light_when_critically_hit_%"}},[2677]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Light when you take a Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Light when you take a Critical Strike"}}},stats={[1]="display_attack_with_decree_of_light_when_critically_hit_%"}},[2678]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Light when you take a Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Light when you take a Critical Strike"}}},stats={[1]="display_attack_with_commandment_of_light_when_critically_hit_%"}},[2679]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of War on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of War on Kill"}}},stats={[1]="display_cast_word_of_war_on_kill_%"}},[2680]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of War on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of War on Kill"}}},stats={[1]="display_cast_edict_of_war_on_kill_%"}},[2681]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of War on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of War on Kill"}}},stats={[1]="display_cast_decree_of_war_on_kill_%"}},[2682]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of War on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of War on Kill"}}},stats={[1]="display_cast_commandment_of_war_on_kill_%"}},[2683]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Fury on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Fury on Hit"}}},stats={[1]="display_attack_with_word_of_fury_on_hit_%"}},[2684]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Fury on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Fury on Hit"}}},stats={[1]="display_attack_with_edict_of_fury_on_hit_%"}},[2685]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Fury on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Fury on Hit"}}},stats={[1]="display_attack_with_decree_of_fury_on_hit_%"}},[2686]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Fury on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Fury on Hit"}}},stats={[1]="display_attack_with_commandment_of_fury_on_hit_%"}},[2687]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Spite when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Spite when Hit"}}},stats={[1]="display_attack_with_word_of_spite_when_hit_%"}},[2688]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Spite when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Spite when Hit"}}},stats={[1]="display_attack_with_edict_of_spite_when_hit_%"}},[2689]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Spite when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Spite when Hit"}}},stats={[1]="display_attack_with_decree_of_spite_when_hit_%"}},[2690]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Spite when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Spite when Hit"}}},stats={[1]="display_attack_with_commandment_of_spite_when_hit_%"}},[2691]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if Energy\nShield Recharge has started Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed if Energy\nShield Recharge has started Recently"}}},stats={[1]="attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge"}},[2692]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"}}},stats={[1]="life_es_and_mana_recovery_+%_for_4_seconds_on_killing_enemies_affected_by_your_degen"}},[2693]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more chance to Evade Attacks while not on full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less chance to Evade Attacks while not on full Energy Shield"}}},stats={[1]="trickster_passive_chance_to_evade_attacks_while_not_on_full_energy_shield_+%_final"}},[2694]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Enemies that are affected\nby no Elemental Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Enemies that are affected\nby no Elemental Ailments"}}},stats={[1]="critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments"}},[2695]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage if you've Cast a Spell Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage if you've Cast a Spell Recently"}}},stats={[1]="spell_damage_+%_for_4_seconds_on_cast"}},[2696]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage if you've Cast a Spell Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage if you've Cast a Spell Recently"}}},stats={[1]="attack_damage_+%_for_4_seconds_on_cast"}},[2697]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you've Attacked Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you've Attacked Recently"}}},stats={[1]="attack_speed_+%_for_4_seconds_on_attack"}},[2698]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed if you've Attacked Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed if you've Attacked Recently"}}},stats={[1]="cast_speed_+%_for_4_seconds_on_attack"}},[2699]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Flames on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Flames on Hit"}}},stats={[1]="display_cast_word_of_flames_on_hit_%"}},[2700]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Flames on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Flames on Hit"}}},stats={[1]="display_cast_edict_of_flames_on_hit_%"}},[2701]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Flames on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Flames on Hit"}}},stats={[1]="display_cast_decree_of_flames_on_hit_%"}},[2702]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Flames on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Flames on Hit"}}},stats={[1]="display_cast_commandment_of_flames_on_hit_%"}},[2703]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Frost on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Frost on Kill"}}},stats={[1]="display_cast_word_of_frost_on_kill_%"}},[2704]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Frost on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Frost on Kill"}}},stats={[1]="display_cast_edict_of_frost_on_kill_%"}},[2705]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Frost on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Frost on Kill"}}},stats={[1]="display_cast_decree_of_frost_on_kill_%"}},[2706]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Frost on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Frost on Kill"}}},stats={[1]="display_cast_commandment_of_frost_on_kill_%"}},[2707]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Thunder on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Thunder on Kill"}}},stats={[1]="display_cast_word_of_thunder_on_kill_%"}},[2708]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Thunder on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Thunder on Kill"}}},stats={[1]="display_cast_edict_of_thunder_on_kill_%"}},[2709]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Thunder on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Thunder on Kill"}}},stats={[1]="display_cast_decree_of_thunder_on_kill_%"}},[2710]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Thunder on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Thunder on Kill"}}},stats={[1]="display_cast_commandment_of_thunder_on_kill_%"}},[2711]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance when throwing Mines to throw up to 1 additional Mine"}}},stats={[1]="chance_to_place_an_additional_mine_%"}},[2712]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Throw an additional Mine"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Throw %1% additional Mines"}}},stats={[1]="number_of_additional_mines_to_place"}},[2713]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for 100%% of Elemental Damage to be gained as Extra Chaos Damage"}}},stats={[1]="chance_for_elemental_damage_to_be_added_as_additional_chaos_damage_%"}},[2714]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance if you haven't Crit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance if you haven't Crit Recently"}}},stats={[1]="enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds"}},[2715]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while on Consecrated Ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while on Consecrated Ground"}}},stats={[1]="damage_+%_on_consecrated_ground"}},[2716]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to create Consecrated Ground when Hit, lasting 8 seconds"},[2]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=100,[2]="#"}},text="Create Consecrated Ground when Hit, lasting 8 seconds"}}},stats={[1]="consecrate_ground_for_3_seconds_when_hit_%"}},[2717]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills while on Consecrated Ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills while on Consecrated Ground"}}},stats={[1]="mana_cost_+%_on_consecrated_ground"}},[2718]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Elemental Ailments while on Consecrated Ground"},[2]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=100,[2]="#"}},text="Cannot be affected by Elemental Ailments while on Consecrated Ground"}}},stats={[1]="avoid_ailments_%_on_consecrated_ground"}},[2719]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier against Enemies that are affected\nby Elemental Ailments"}}},stats={[1]="critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment"}},[2720]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Non-Critical Strikes Penetrate %1%%% of Enemy Elemental Resistances"}}},stats={[1]="non_critical_strikes_penetrate_elemental_resistances_%"}},[2721]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% of Enemy Elemental Resistances"}}},stats={[1]="base_penetrate_elemental_resistances_%"}},[2722]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to double Stun Duration"}}},stats={[1]="chance_to_double_stun_duration_%"}},[2723]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shockwaves deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shockwaves deal %1%%% less Damage"}}},stats={[1]="shockwave_slam_explosion_damage_+%_final"}},[2724]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Non-Curse Auras from your Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced effect of Non-Curse Auras from your Skills"}}},stats={[1]="non_curse_aura_effect_+%"}},[2725]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Unarmed Attacks against Bleeding Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Unarmed Attacks against Bleeding Enemies"}}},stats={[1]="unarmed_damage_+%_vs_bleeding_enemies"}},[2726]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1$+d Life when you Hit a Bleeding Enemy"}}},stats={[1]="life_gained_on_bleeding_enemy_hit"}},[2727]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Unarmed Attack Critical Strike Chance"}}},stats={[1]="base_critical_strike_chance_while_unarmed_%"}},[2728]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Claw Damage also apply to Unarmed Attack Damage"}}},stats={[1]="modifiers_to_claw_damage_also_affect_unarmed_damage"}},[2729]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed"}}},stats={[1]="modifiers_to_claw_attack_speed_also_affect_unarmed_attack_speed"}},[2730]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Claw Critical Strike Chance also apply to Unarmed Attack Critical Strike Chance"}}},stats={[1]="modifiers_to_claw_critical_strike_chance_also_affect_unarmed_critical_strike_chance"}},[2731]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Unarmed Attacks"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Unarmed Attacks"}}},stats={[1]="damage_+%_while_unarmed"}},[2732]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Fortify on you"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Fortify on you"}}},stats={[1]="fortify_effect_on_self_+%"}},[2733]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Shattered Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Shattered Enemies"}}},stats={[1]="killed_monster_dropped_item_rarity_+%_when_shattered"}},[2734]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% faster start of Energy Shield Recharge during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% slower start of Energy Shield Recharge during any Flask Effect"}}},stats={[1]="energy_shield_delay_during_flask_effect_-%"}},[2735]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% faster start of Energy Shield Recharge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% slower start of Energy Shield Recharge"}}},stats={[1]="virtual_energy_shield_delay_-%"}},[2736]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Recharge Rate during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Recharge Rate during any Flask Effect"}}},stats={[1]="energy_shield_recharge_rate_during_flask_effect_+%"}},[2737]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Recharge Rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Recharge Rate"}}},stats={[1]="virtual_energy_shield_recharge_rate_+%"}},[2738]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Fork"}}},stats={[1]="projectiles_fork"}},[2739]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFishBiteSensitivity"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Fish Bite Sensitivity"}}},stats={[1]="fishing_bite_sensitivity_+%"}},[2740]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage per 1%% Chance to Block Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage per 1%% Chance to Block Attack Damage"}}},stats={[1]="cold_damage_+%_per_1%_block_chance"}},[2741]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Mana per 2%% Chance to Block Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Mana per 2%% Chance to Block Spell Damage"}}},stats={[1]="maximum_mana_+%_per_2%_spell_block_chance"}},[2742]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour while Chilled or Frozen"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour while Chilled or Frozen"}}},stats={[1]="physical_damage_reduction_rating_+%_while_chilled_or_frozen"}},[2743]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% increased Action Speed while Chilled"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% reduced Action Speed while Chilled"}}},stats={[1]="map_players_action_speed_+%_while_chilled"}},[2744]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Action Speed while Chilled"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% redcued Action Speed while Chilled"}}},stats={[1]="action_speed_+%_while_chilled"}},[2745]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage with Weapons Penetrates %1%%% Cold Resistance"}}},stats={[1]="reduce_enemy_cold_resistance_with_weapons_%"}},[2746]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage with Weapons Penetrates %1%%% Fire Resistance"}}},stats={[1]="reduce_enemy_fire_resistance_with_weapons_%"}},[2747]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage with Weapons Penetrates %1%%% Lightning Resistance"}}},stats={[1]="reduce_enemy_lightning_resistance_with_weapons_%"}},[2748]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage with Weapons Penetrates %1%%% Chaos Resistance"}}},stats={[1]="reduce_enemy_chaos_resistance_with_weapons_%"}},[2749]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Elemental Damage"}}},stats={[1]="inquisitor_aura_elemental_damage_+%_final"}},[2750]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Elemental Damage"}}},stats={[1]="support_gem_elemental_damage_+%_final"}},[2751]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters drop items %1% Level higher"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Monsters drop items %1% Levels higher"}}},stats={[1]="map_monster_drop_higher_level_gear"}},[2752]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Map's Modifiers to Quantity of Items found also apply to Rarity"}}},stats={[1]="modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity"}},[2753]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSmokeCloud"},limit={[1]={[1]=1,[2]="#"}},text="Creates a Smoke Cloud on Use"}}},stats={[1]="local_smoke_ground_on_flask_use_radius"}},[2754]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=1,[2]="#"}},text="Creates Consecrated Ground on Use"}}},stats={[1]="local_consecrate_ground_on_flask_use_radius"}},[2755]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="Onslaught"}}},stats={[1]="has_onslaught"}},[2756]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage with Weapons Penetrates %1%%% Elemental Resistance"}}},stats={[1]="reduce_enemy_elemental_resistance_with_weapons_%"}},[2757]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Frenzy Charge when your Trap is triggered by an Enemy"}}},stats={[1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"}},[2758]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain an Endurance Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Endurance Charge when your Trap is triggered by an Enemy"}}},stats={[1]="%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy"}},[2759]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to add a Power Charge on Hit"}}},stats={[1]="add_power_charge_on_hit_%"}},[2760]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lose all Power Charges on reaching Maximum Power Charges"}}},stats={[1]="lose_all_power_charges_on_reaching_maximum_power_charges"}},[2761]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHit"},limit={[1]={[1]=1,[2]="#"}},text="Shocks you when you reach Maximum Power Charges"}}},stats={[1]="shocked_for_4_seconds_on_reaching_maximum_power_charges"}},[2762]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Frenzy Charge on reaching Maximum Power Charges"}}},stats={[1]="gain_frenzy_charge_on_reaching_maximum_power_charges"}},[2763]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Petrified"}}},stats={[1]="is_petrified"}},[2764]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="Fortify"}}},stats={[1]="has_fortify"}},[2765]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain an Endurance Charge when you gain a Power Charge"}}},stats={[1]="add_endurance_charge_on_gain_power_charge_%"}},[2766]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Enemy Killed by you or your Totems Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Enemy Killed by you or your Totems Recently"}}},stats={[1]="stacking_damage_+%_on_kill_for_4_seconds"}},[2767]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while you have a Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while you have a Totem"}}},stats={[1]="attack_and_cast_speed_+%_while_totem_active"}},[2768]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Summoned Totems if you or your Totems have Killed in the past 8 seconds"}}},stats={[1]="number_of_additional_totems_allowed_on_kill_for_8_seconds"}},[2769]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Monsters take %1%%% reduced Extra Damage from Critical Strikes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters take %1%%% increased Extra Damage from Critical Strikes"}}},stats={[1]="map_monsters_base_self_critical_strike_multiplier_-%"}},[2770]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Petrified during Flask Effect"}}},stats={[1]="local_flask_is_petrified"}},[2771]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Power, Frenzy or Endurance Charge on Kill"}}},stats={[1]="power_frenzy_or_endurance_charge_on_kill_%"}},[2772]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]=-1,[2]="#"}},text="%1%%% reduced effect"}}},stats={[1]="local_flask_effect_+%"}},[2773]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]="#"}},text="Immune to Poison during Flask Effect\nRemoves Poison on use"}}},stats={[1]="local_flask_poison_immunity_during_flask_effect"}},[2774]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Immune to Poison"}}},stats={[1]="immune_to_poison"}},[2775]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction during Flask Effect"}}},stats={[1]="local_flask_additional_physical_damage_reduction_%"}},[2776]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="For each Element you've been hit by Damage of Recently, %1%%% increased Damage of that Element"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="For each Element you've been hit by Damage of Recently, %1%%% reduced Damage of that Element"}}},stats={[1]="elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element"}},[2777]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="For each Element you've been hit by Damage of Recently, %1%%% increased Damage taken of that Element"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="For each Element you've been hit by Damage of Recently, %1%%% reduced Damage taken of that Element"}}},stats={[1]="damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element"}},[2778]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Every 10 seconds, gain %1%%% increased Elemental Damage for 4 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Every 10 seconds, gain %1%%% reduced Elemental Damage for 4 seconds"}}},stats={[1]="elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds"}},[2779]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Cold Resistance if you've\nused a Fire Skill in the past 10 seconds"}}},stats={[1]="elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill"}},[2780]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Lightning Resistance if you've\nused a Cold Skill in the past 10 seconds"}}},stats={[1]="elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill"}},[2781]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Fire Resistance if you've\nused a Lightning Skill in the past 10 seconds"}}},stats={[1]="elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill"}},[2782]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Summon a Lesser Elemental Golem when\nyou Kill an Enemy using Elemental Damage"}}},stats={[1]="elementalist_summon_elemental_golem_on_killing_enemy_with_element_%"}},[2783]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance to gain Elemental Conflux for 4 seconds when you Kill an Enemy"}}},stats={[1]="elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%"}},[2784]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Elemental Ailments caused by your Skills spread to other nearby Enemies\nRadius: %1%"}}},stats={[1]="elementalist_elemental_status_effect_aura_radius"}},[2785]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to knockback on Counterattack"}}},stats={[1]="knockback_on_counterattack_%"}},[2786]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]=1,[2]="#"}},text="Creates Chilled Ground on Use"}}},stats={[1]="local_flask_chilled_ground_on_flask_use_radius"}},[2787]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration"}}},stats={[1]="local_flask_duration_+%"}},[2788]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chill effects on you Proliferate to nearby Enemies"}}},stats={[1]="chill_on_you_proliferates_to_nearby_enemies_within_x_radius"}},[2789]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Freeze effects on you Proliferate to nearby Enemies"}}},stats={[1]="freeze_on_you_proliferates_to_nearby_enemies_within_x_radius"}},[2790]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ancestral Protector Totem deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ancestral Protector Totem deals %1%%% reduced Damage"}}},stats={[1]="melee_ancestor_totem_damage_+%"}},[2791]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Animated Weapons deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Animated Weapons deal %1%%% reduced Damage"}}},stats={[1]="animate_weapon_damage_+%"}},[2792]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Burning Arrow Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Burning Arrow Damage"}}},stats={[1]="burning_arrow_damage_+%"}},[2793]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cleave Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cleave Damage"}}},stats={[1]="cleave_damage_+%"}},[2794]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Double Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Double Strike Damage"}}},stats={[1]="double_strike_damage_+%"}},[2795]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dual Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dual Strike Damage"}}},stats={[1]="dual_strike_damage_+%"}},[2796]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Trap Damage"}}},stats={[1]="fire_trap_damage_+%"}},[2797]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fireball Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fireball Damage"}}},stats={[1]="fireball_damage_+%"}},[2798]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freezing Pulse Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freezing Pulse Damage"}}},stats={[1]="freezing_pulse_damage_+%"}},[2799]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Glacial Hammer Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Glacial Hammer Damage"}}},stats={[1]="glacial_hammer_damage_+%"}},[2800]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ground Slam Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ground Slam Damage"}}},stats={[1]="ground_slam_damage_+%"}},[2801]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Heavy Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Heavy Strike Damage"}}},stats={[1]="heavy_strike_damage_+%"}},[2802]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Infernal Blow Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Infernal Blow Damage"}}},stats={[1]="infernal_blow_damage_+%"}},[2803]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Strike Damage"}}},stats={[1]="lightning_strike_damage_+%"}},[2804]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Tendrils Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Tendrils Damage"}}},stats={[1]="lightning_tendrils_damage_+%"}},[2805]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Magma Orb Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Magma Orb Damage"}}},stats={[1]="magma_orb_damage_+%"}},[2806]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Molten Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Molten Strike Damage"}}},stats={[1]="molten_strike_damage_+%"}},[2807]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Raised Zombies deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Raised Zombies deal %1%%% reduced Damage"}}},stats={[1]="zombie_damage_+%"}},[2808]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reave Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reave Damage"}}},stats={[1]="reave_damage_+%"}},[2809]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spark Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spark Damage"}}},stats={[1]="spark_damage_+%"}},[2810]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spectral Throw Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spectral Throw Damage"}}},stats={[1]="spectral_throw_damage_+%"}},[2811]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Split Arrow Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Split Arrow Damage"}}},stats={[1]="split_arrow_damage_+%"}},[2812]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ethereal Knives Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ethereal Knives Damage"}}},stats={[1]="ethereal_knives_damage_+%"}},[2813]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Shot Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Shot Damage"}}},stats={[1]="ice_shot_damage_+%"}},[2814]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rain of Arrows Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rain of Arrows Damage"}}},stats={[1]="rain_of_arrows_damage_+%"}},[2815]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Raging Spirits deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Raging Spirits deal %1%%% reduced Damage"}}},stats={[1]="raging_spirit_damage_+%"}},[2816]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Viper Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Viper Strike Damage"}}},stats={[1]="viper_strike_damage_+%"}},[2817]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flicker Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flicker Strike Damage"}}},stats={[1]="flicker_strike_damage_+%"}},[2818]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Leap Slam Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Leap Slam Damage"}}},stats={[1]="leap_slam_damage_+%"}},[2819]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Arrow Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Arrow Damage"}}},stats={[1]="lightning_arrow_damage_+%"}},[2820]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Warp Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Warp Damage"}}},stats={[1]="lightning_warp_damage_+%"}},[2821]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Puncture Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Puncture Damage"}}},stats={[1]="puncture_damage_+%"}},[2822]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shield Charge Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shield Charge Damage"}}},stats={[1]="shield_charge_damage_+%"}},[2823]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skeletons deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Skeletons deal %1%%% reduced Damage"}}},stats={[1]="skeletons_damage_+%"}},[2824]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Arc Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Arc Damage"}}},stats={[1]="arc_damage_+%"}},[2825]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Barrage Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Barrage Damage"}}},stats={[1]="barrage_damage_+%"}},[2826]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Nova Mine Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Nova Mine Damage"}}},stats={[1]="fire_nova_mine_damage_+%"}},[2827]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Firestorm Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Firestorm Damage"}}},stats={[1]="fire_storm_damage_+%"}},[2828]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flame Surge Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flame Surge Damage"}}},stats={[1]="flame_surge_damage_+%"}},[2829]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Nova Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Nova Damage"}}},stats={[1]="ice_nova_damage_+%"}},[2830]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Spear Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Spear Damage"}}},stats={[1]="ice_spear_damage_+%"}},[2831]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Incinerate Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Incinerate Damage"}}},stats={[1]="incinerate_damage_+%"}},[2832]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Power Siphon Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Power Siphon Damage"}}},stats={[1]="power_siphon_damage_+%"}},[2833]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Searing Bond Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Searing Bond Damage"}}},stats={[1]="searing_bond_damage_+%"}},[2834]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Static Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Static Strike Damage"}}},stats={[1]="static_strike_damage_+%"}},[2835]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Storm Call Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Storm Call Damage"}}},stats={[1]="storm_call_damage_+%"}},[2836]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Sweep Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Sweep Damage"}}},stats={[1]="sweep_damage_+%"}},[2837]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frenzy Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frenzy Damage"}}},stats={[1]="frenzy_damage_+%"}},[2838]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Righteous Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Righteous Fire Damage"}}},stats={[1]="righteous_fire_damage_+%"}},[2839]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Elemental Hit deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Elemental Hit deals %1%%% reduced Damage"}}},stats={[1]="elemental_hit_damage_+%"}},[2840]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cyclone Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cyclone Damage"}}},stats={[1]="cyclone_damage_+%"}},[2841]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Tornado Shot Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Tornado Shot Damage"}}},stats={[1]="tornado_shot_damage_+%"}},[2842]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Arctic Breath Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Arctic Breath Damage"}}},stats={[1]="arctic_breath_damage_+%"}},[2843]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Explosive Arrow deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Explosive Arrow deals %1%%% reduced Damage"}}},stats={[1]="explosive_arrow_damage_+%"}},[2844]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flameblast Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flameblast Damage"}}},stats={[1]="flameblast_damage_+%"}},[2845]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Glacial Cascade Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Glacial Cascade Damage"}}},stats={[1]="glacial_cascade_damage_+%"}},[2846]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Crash Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Crash Damage"}}},stats={[1]="ice_crash_damage_+%"}},[2847]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Kinetic Blast Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Kinetic Blast Damage"}}},stats={[1]="kinetic_blast_damage_+%"}},[2848]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shock Nova Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shock Nova Damage"}}},stats={[1]="shock_nova_damage_+%"}},[2849]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shockwave Totem Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shockwave Totem Damage"}}},stats={[1]="shockwave_totem_damage_+%"}},[2850]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Wild Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Wild Strike Damage"}}},stats={[1]="wild_strike_damage_+%"}},[2851]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Detonate Dead Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Detonate Dead Damage"}}},stats={[1]="detonate_dead_damage_+%"}},[2852]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Caustic Arrow Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Caustic Arrow Damage"}}},stats={[1]="caustic_arrow_damage_+%"}},[2853]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextWithered"},[2]={k="milliseconds_to_seconds",v=2},limit={[1]={[1]=1,[2]=99},[2]={[1]=1000,[2]=1000}},text="Caustic Arrow has %1%%% chance to inflict Withered on Hit for %2% second base Duration"},[2]={[1]={k="reminderstring",v="ReminderTextWithered"},[2]={k="milliseconds_to_seconds",v=2},limit={[1]={[1]=100,[2]="#"},[2]={[1]=1000,[2]=1000}},text="Caustic Arrow inflicts Withered on Hit for %2% second base Duration"},[3]={[1]={k="reminderstring",v="ReminderTextWithered"},[2]={k="milliseconds_to_seconds",v=2},limit={[1]={[1]=1,[2]=99},[2]={[1]="#",[2]="#"}},text="Caustic Arrow has %1%%% chance to inflict Withered on Hit for %2% seconds base Duration"},[4]={[1]={k="reminderstring",v="ReminderTextWithered"},[2]={k="milliseconds_to_seconds",v=2},limit={[1]={[1]=100,[2]="#"},[2]={[1]="#",[2]="#"}},text="Caustic Arrow inflicts Withered on Hit for %2% seconds base Duration"}}},stats={[1]="caustic_arrow_withered_on_hit_%",[2]="caustic_arrow_withered_base_duration_ms"}},[2854]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Golems"}}},stats={[1]="base_number_of_golems_allowed"}},[2855]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot have non-Golem Minions"}}},stats={[1]="you_cannot_have_non_golem_minions"}},[2856]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Golem Size"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Golem Size"}}},stats={[1]="golem_scale_+%"}},[2857]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Stone Golems deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Stone Golems deal %1%%% reduced Damage"}}},stats={[1]="stone_golem_damage_+%"}},[2858]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flame Golems have %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flame Golems have %1%%% reduced Damage"}}},stats={[1]="flame_golem_damage_+%"}},[2859]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ice Golems deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ice Golems deal %1%%% reduced Damage"}}},stats={[1]="ice_golem_damage_+%"}},[2860]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lightning Golems deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lightning Golems deal %1%%% reduced Damage"}}},stats={[1]="lightning_golem_damage_+%"}},[2861]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chaos Golems deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Chaos Golems deal %1%%% reduced Damage"}}},stats={[1]="chaos_golem_damage_+%"}},[2862]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you Summoned a Golem in the past 8 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you Summoned a Golem in the past 8 seconds"}}},stats={[1]="damage_+%_if_golem_summoned_in_past_8_seconds"}},[2863]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems Summoned in the past 8 seconds deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems Summoned in the past 8 seconds deal %1%%% reduced Damage"}}},stats={[1]="golem_damage_+%_if_summoned_in_past_8_seconds"}},[2864]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems Deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems Deal %1%%% less Damage"}}},stats={[1]="unique_primordial_tether_golem_damage_+%_final"}},[2865]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Sentinels of Dominance deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Sentinels of Dominance deal %1%%% reduced Damage"}}},stats={[1]="dominating_blow_minion_damage_+%"}},[2866]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dominating Blow Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dominating Blow Damage"}}},stats={[1]="dominating_blow_skill_attack_damage_+%"}},[2867]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Snap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Snap Damage"}}},stats={[1]="cold_snap_damage_+%"}},[2868]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Holy Flame Totem deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Holy Flame Totem deals %1%%% reduced Damage"}}},stats={[1]="flame_totem_damage_+%"}},[2869]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Animated Guardians deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Animated Guardians deal %1%%% reduced Damage"}}},stats={[1]="animate_guardian_damage_+%"}},[2870]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bear Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bear Trap Damage"}}},stats={[1]="bear_trap_damage_+%"}},[2871]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Wall Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Wall Damage"}}},stats={[1]="frost_wall_damage_+%"}},[2872]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Molten Shell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Molten Shell Damage"}}},stats={[1]="molten_shell_damage_+%"}},[2873]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reckoning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reckoning Damage"}}},stats={[1]="reckoning_damage_+%"}},[2874]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vigilant Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vigilant Strike Damage"}}},stats={[1]="vigilant_strike_damage_+%"}},[2875]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Whirling Blades Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Whirling Blades Damage"}}},stats={[1]="whirling_blades_damage_+%"}},[2876]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flame Dash Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flame Dash Damage"}}},stats={[1]="flame_dash_damage_+%"}},[2877]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freeze Mine Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freeze Mine Damage"}}},stats={[1]="freeze_mine_damage_+%"}},[2878]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Herald of Ash Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Herald of Ash Damage"}}},stats={[1]="herald_of_ash_damage_+%"}},[2879]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Herald of Ice Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Herald of Ice Damage"}}},stats={[1]="herald_of_ice_damage_+%"}},[2880]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Herald of Thunder Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Herald of Thunder Damage"}}},stats={[1]="herald_of_thunder_damage_+%"}},[2881]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Tempest Shield Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Tempest Shield Damage"}}},stats={[1]="tempest_shield_damage_+%"}},[2882]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Desecrate Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Desecrate Damage"}}},stats={[1]="desecrate_damage_+%"}},[2883]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blink Arrow and Blink Arrow Clones have %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blink Arrow and Blink Arrow Clones have %1%%% reduced Damage"}}},stats={[1]="blink_arrow_and_blink_arrow_clone_damage_+%"}},[2884]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mirror Arrow and Mirror Arrow Clones deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mirror Arrow and Mirror Arrow Clones deal %1%%% reduced Damage"}}},stats={[1]="mirror_arrow_and_mirror_arrow_clone_damage_+%"}},[2885]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Riposte Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Riposte Damage"}}},stats={[1]="riposte_damage_+%"}},[2886]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vengeance Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vengeance Damage"}}},stats={[1]="vengeance_damage_+%"}},[2887]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Converted Enemies have %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Converted Enemies have %1%%% reduced Damage"}}},stats={[1]="converted_enemies_damage_+%"}},[2888]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Abyssal Cry Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Abyssal Cry Damage"}}},stats={[1]="abyssal_cry_damage_+%"}},[2889]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Galvanic Arrow Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Galvanic Arrow Damage"}}},stats={[1]="shrapnel_shot_damage_+%"}},[2890]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blast Rain deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blast Rain deals %1%%% reduced Damage"}}},stats={[1]="blast_rain_damage_+%"}},[2891]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Essence Drain Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Essence Drain Damage"}}},stats={[1]="essence_drain_damage_+%"}},[2892]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Contagion Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Contagion Damage"}}},stats={[1]="contagion_damage_+%"}},[2893]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blade Vortex Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blade Vortex Spell Damage"}}},stats={[1]="blade_vortex_damage_+%"}},[2894]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bladefall Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bladefall Damage"}}},stats={[1]="bladefall_damage_+%"}},[2895]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Trap Damage"}}},stats={[1]="ice_trap_damage_+%"}},[2896]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Charged Dash Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Charged Dash Damage"}}},stats={[1]="charged_dash_damage_+%"}},[2897]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Earthquake Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Earthquake Damage"}}},stats={[1]="earthquake_damage_+%"}},[2898]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dark Pact Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dark Pact Damage"}}},stats={[1]="skeletal_chains_damage_+%"}},[2899]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Storm Burst Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Storm Burst Damage"}}},stats={[1]="storm_burst_damage_+%"}},[2900]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Bomb Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Bomb Damage"}}},stats={[1]="frost_bomb_damage_+%"}},[2901]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Orb of Storms Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Orb of Storms Damage"}}},stats={[1]="orb_of_storms_damage_+%"}},[2902]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Siege Ballista deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Siege Ballista deals %1%%% reduced Damage"}}},stats={[1]="siege_ballista_damage_+%"}},[2903]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blight Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blight Damage"}}},stats={[1]="blight_damage_+%"}},[2904]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Sunder Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Sunder Damage"}}},stats={[1]="shockwave_slam_damage_+%"}},[2905]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second while Frozen"}}},stats={[1]="life_regeneration_per_minute_%_while_frozen"}},[2906]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield per second for each\nEnemy you or your Minions have Killed Recently, up to 10%% per second"}}},stats={[1]="occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds"}},[2907]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot Be Stunned while you have Energy Shield"}}},stats={[1]="occultist_immune_to_stun_while_has_energy_shield"}},[2908]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Energy Shield Recharge is not interrupted by Damage if Recharge\nbegan Recently"}}},stats={[1]="occultist_energy_shield_always_recovers_for_4_seconds_after_starting_recovery"}},[2909]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage per Summoned Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage per Summoned Totem"}}},stats={[1]="hierophant_passive_damage_+%_final_per_totem"}},[2910]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Totem Damage per Summoned Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Totem Damage per Summoned Totem"}}},stats={[1]="totem_damage_+%_final_per_active_totem"}},[2911]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flasks do not apply to you"}}},stats={[1]="cannot_be_affected_by_flasks"}},[2912]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flasks apply to your Raised Zombies and Spectres"}}},stats={[1]="flasks_apply_to_your_zombies_and_spectres"}},[2913]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Minion Damage also affect you"}}},stats={[1]="modifiers_to_minion_damage_also_affect_you"}},[2914]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Minion Attack Speed also affect you"}}},stats={[1]="additive_modifiers_to_minion_attack_speed_also_affect_you"}},[2915]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Minion Cast Speed also affect you"}}},stats={[1]="modifiers_to_minion_cast_speed_also_affect_you"}},[2916]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Minion Life Regeneration also affect you"}}},stats={[1]="modifiers_to_minion_life_regeneration_also_affect_you"}},[2917]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Minion Movement Speed also affect you"}}},stats={[1]="modifiers_to_minion_movement_speed_also_affect_you"}},[2918]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Minion Resistances also affect you"}}},stats={[1]="modifiers_to_minion_resistances_also_affect_you"}},[2919]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="When you Kill an Enemy, for each Curse on that Enemy, gain %1%%%\nof Non-Chaos Damage as extra Chaos Damage for 4 seconds"}}},stats={[1]="occultist_gain_%_of_non_chaos_damage_as_chaos_damage_per_curse_on_target_on_kill_for_4_seconds"}},[2920]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies you Curse take %1%%% increased Damage"}}},stats={[1]="enemies_damage_taken_+%_while_cursed"}},[2921]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMalediction"},limit={[1]={[1]="#",[2]="#"}},text="Enemies you Curse have Malediction"}}},stats={[1]="enemies_you_curse_have_malediction"}},[2922]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attacks with this Weapon deal Double Damage to Chilled Enemies"}}},stats={[1]="local_double_damage_to_chilled_enemies"}},[2923]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks with this Weapon Penetrate %1%%% Elemental Resistances"}}},stats={[1]="local_elemental_penetration_%"}},[2924]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks with this Weapon Penetrate %1%%% Fire Resistance"}}},stats={[1]="local_fire_penetration_%"}},[2925]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks with this Weapon Penetrate %1%%% Cold Resistance"}}},stats={[1]="local_cold_penetration_%"}},[2926]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks with this Weapon Penetrate %1%%% Lightning Resistance"}}},stats={[1]="local_lightning_penetration_%"}},[2927]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while you have no Frenzy Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while you have no Frenzy Charges"}}},stats={[1]="damage_while_no_frenzy_charges_+%"}},[2928]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneGhostReaver"},limit={[1]={[1]="#",[2]="#"}},text="Ghost Reaver during Flask effect"}}},stats={[1]="local_flask_ghost_reaver"}},[2929]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneZealotsOath"},limit={[1]={[1]="#",[2]="#"}},text="Zealot's Oath during Flask effect"}}},stats={[1]="local_flask_zealots_oath"}},[2930]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Enemies on Full Life"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Enemies on Full Life"}}},stats={[1]="critical_strike_chance_against_enemies_on_full_life_+%"}},[2931]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Attack Damage Leeched as Life on Critical Strike"}}},stats={[1]="attack_critical_strike_damage_life_leech_permyriad"}},[2932]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions' Attacks deal %1% to %2% additional Physical Damage"}}},stats={[1]="minion_attack_minimum_added_physical_damage",[2]="minion_attack_maximum_added_physical_damage"}},[2933]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Chaos Damage"}}},stats={[1]="minion_global_minimum_added_chaos_damage",[2]="minion_global_maximum_added_chaos_damage"}},[2934]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Cold Damage"}}},stats={[1]="minion_global_minimum_added_cold_damage",[2]="minion_global_maximum_added_cold_damage"}},[2935]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Fire Damage"}}},stats={[1]="minion_global_minimum_added_fire_damage",[2]="minion_global_maximum_added_fire_damage"}},[2936]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Lightning Damage"}}},stats={[1]="minion_global_minimum_added_lightning_damage",[2]="minion_global_maximum_added_lightning_damage"}},[2937]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Physical Damage"}}},stats={[1]="minion_global_minimum_added_physical_damage",[2]="minion_global_maximum_added_physical_damage"}},[2938]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Attack Damage as Extra Fire Damage"}}},stats={[1]="attack_physical_damage_%_to_add_as_fire"}},[2939]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Attack Damage as Extra Cold Damage"}}},stats={[1]="attack_physical_damage_%_to_add_as_cold"}},[2940]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Attack Damage as Extra Lightning Damage"}}},stats={[1]="attack_physical_damage_%_to_add_as_lightning"}},[2941]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d maximum Energy Shield per 5 Strength"}}},stats={[1]="maximum_energy_shield_+_per_5_strength"}},[2942]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="All Attacks are Critical Strikes"}}},stats={[1]="attack_always_crit"}},[2943]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Counts as all One Handed Melee Weapon Types"}}},stats={[1]="local_varunastra_weapon_counts_as_all_1h_melee_weapon_types"}},[2944]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextAurasOnlyAffectThingsTheyAffect"},limit={[1]={[1]=1,[2]="#"}},text="Auras from your Skills grant %1%%% of Life Regenerated per second to\nyou and Allies"}}},stats={[1]="guardian_auras_grant_life_regeneration_per_minute_%"}},[2945]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies cannot gain Power, Frenzy or Endurance Charges"}}},stats={[1]="guardian_nearby_enemies_cannot_gain_charges"}},[2946]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Armour equal to %1%%% of your Reserved Life to you and nearby Allies"}}},stats={[1]="guardian_reserved_life_granted_to_you_and_allies_as_armour_%"}},[2947]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants maximum Energy Shield equal to %1%%% of your Reserved Mana to\nyou and nearby Allies"}}},stats={[1]="guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield"}},[2948]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Every 5 seconds, remove Curses and Elemental Ailments from you"}}},stats={[1]="guardian_remove_curses_and_status_ailments_every_10_seconds"}},[2949]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Every 5 seconds, Regenerate %1%%% of Life over one second"}}},stats={[1]="guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds"}},[2950]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Deal %1%%% of your maximum Life as Fire Damage to nearby Enemies when Hit"}}},stats={[1]="base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"}},[2951]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Totems Reflect %1%%% of their maximum Life as Fire Damage to nearby Enemies when Hit"}}},stats={[1]="totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"}},[2952]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Attack Speed per Frenzy Charge"}}},stats={[1]="active_skill_attack_speed_+%_final_per_frenzy_charge"}},[2953]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies near your Totems deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies near your Totems deal %1%%% less Damage"}}},stats={[1]="totem_aura_enemy_damage_+%_final"}},[2954]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies near your Totems take %1%%% increased Physical and Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies near your Totems take %1%%% reduced Physical and Fire Damage"}}},stats={[1]="totem_aura_enemy_fire_and_physical_damage_taken_+%"}},[2955]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Your Traps deal %1%%% more Damage with Hits and Ailments if they Armed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Your Traps deal %1%%% less Damage with Hits and Ailments if they Armed Recently"}}},stats={[1]="trap_damage_buildup_damage_+%_final_when_first_set"}},[2956]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Traps deal %1%%% more Damage with Hits and Ailments if they were not Armed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Traps deal %1%%% less Damage with Hits and Ailments if they were not Armed Recently"}}},stats={[1]="trap_damage_buildup_damage_+%_final_after_4_seconds"}},[2957]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You are Immune to Damage during Flask Effect"}}},stats={[1]="local_flask_immune_to_damage"}},[2958]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="All Attacks with this Weapon are Critical Strikes"}}},stats={[1]="local_weapon_always_crit"}},[2959]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Traps and Mines deal %1% to %2% additional Physical Damage"}}},stats={[1]="trap_and_mine_minimum_added_physical_damage",[2]="trap_and_mine_maximum_added_physical_damage"}},[2960]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% Chance for Traps to Trigger an additional time"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Traps Trigger an additional time"}}},stats={[1]="trap_%_chance_to_trigger_twice"}},[2961]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage Over Time per 10 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage Over Time per 10 Dexterity"}}},stats={[1]="physical_damage_over_time_per_10_dexterity_+%"}},[2962]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bleeding Duration per 12 Intelligence"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bleeding Duration per 12 Intelligence"}}},stats={[1]="bleed_duration_per_12_intelligence_+%"}},[2963]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance to cause Bleeding Enemies to Flee on hit"}}},stats={[1]="%_chance_to_cause_bleeding_enemies_to_flee_on_hit"}},[2964]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ancestral Protector Totem grants %1%%% increased Attack Speed while Active"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Ancestral Protector Totem grants %1%%% reduced Attack Speed while Active"}}},stats={[1]="melee_ancestor_totem_grant_owner_attack_speed_+%"}},[2965]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ancestral Blademaster Totem grants %1%%% of Physical Damage as Extra Fire Damage while Active"}}},stats={[1]="slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"}},[2966]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ancestral Warchief Totem grants %1%%% increased Melee Damage while Active"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Ancestral Warchief Totem grants %1%%% reduced Melee Damage while Active"}}},stats={[1]="slam_ancestor_totem_grant_owner_melee_damage_+%"}},[2967]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="If you've Blocked in the past 10 seconds, you\nand nearby Allies cannot be Stunned"}}},stats={[1]="gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius"}},[2968]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cleave Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cleave Area of Effect"}}},stats={[1]="cleave_radius_+%"}},[2969]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ground Slam Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ground Slam Area of Effect"}}},stats={[1]="ground_slam_radius_+%"}},[2970]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Infernal Blow Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Infernal Blow Area of Effect"}}},stats={[1]="infernal_blow_radius_+%"}},[2971]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Tendrils Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Tendrils Area of Effect"}}},stats={[1]="lightning_tendrils_radius_+%"}},[2972]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Magma Orb Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Magma Orb Area of Effect"}}},stats={[1]="magma_orb_radius_+%"}},[2973]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reave Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reave Radius"}}},stats={[1]="reave_radius_+%"}},[2974]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Molten Strike Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Molten Strike Area of Effect"}}},stats={[1]="molten_strike_radius_+%"}},[2975]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Shot Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Shot Area of Effect"}}},stats={[1]="ice_shot_radius_+%"}},[2976]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rain of Arrows Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rain of Arrows Area of Effect"}}},stats={[1]="rain_of_arrows_radius_+%"}},[2977]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Leap Slam Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Leap Slam Area of Effect"}}},stats={[1]="leap_slam_radius_+%"}},[2978]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Arrow Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Arrow Area of Effect"}}},stats={[1]="lightning_arrow_radius_+%"}},[2979]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Nova Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Nova Area of Effect"}}},stats={[1]="ice_nova_radius_+%"}},[2980]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Static Strike Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Static Strike Area of Effect"}}},stats={[1]="static_strike_radius_+%"}},[2981]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Storm Call Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Storm Call Area of Effect"}}},stats={[1]="storm_call_radius_+%"}},[2982]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Sweep has a %1%%% chance to grant an Endurance Charge on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Sweep grants an Endurance Charge on Hit"}}},stats={[1]="sweep_add_endurance_charge_on_hit_%"}},[2983]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Sweep Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Sweep Area of Effect"}}},stats={[1]="sweep_radius_+%"}},[2984]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Righteous Fire Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Righteous Fire Area of Effect"}}},stats={[1]="righteous_fire_radius_+%"}},[2985]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Arctic Breath Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Arctic Breath Area of Effect"}}},stats={[1]="arctic_breath_radius_+%"}},[2986]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ball Lightning Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ball Lightning Area of Effect"}}},stats={[1]="ball_lightning_radius_+%"}},[2987]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Explosive Arrow has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Explosive Arrow has %1%%% reduced Area of Effect"}}},stats={[1]="explosive_arrow_radius_+%"}},[2988]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flameblast Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flameblast Area of Effect"}}},stats={[1]="flameblast_radius_+%"}},[2989]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Glacial Cascade Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Glacial Cascade Area of Effect"}}},stats={[1]="glacial_cascade_radius_+%"}},[2990]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Wild Strike Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Wild Strike Area of Effect"}}},stats={[1]="wild_strike_radius_+%"}},[2991]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Detonate Dead Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Detonate Dead Area of Effect"}}},stats={[1]="detonate_dead_radius_+%"}},[2992]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Crash Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Crash Area of Effect"}}},stats={[1]="ice_crash_radius_+%"}},[2993]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Kinetic Blast Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Kinetic Blast Area of Effect"}}},stats={[1]="kinetic_blast_radius_+%"}},[2994]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Caustic Arrow Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Caustic Arrow Area of Effect"}}},stats={[1]="caustic_arrow_radius_+%"}},[2995]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Snap Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Snap Area of Effect"}}},stats={[1]="cold_snap_radius_+%"}},[2996]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Decoy Totem Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Decoy Totem Area of Effect"}}},stats={[1]="decoy_totem_radius_+%"}},[2997]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shock Nova Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shock Nova Area of Effect"}}},stats={[1]="shock_nova_radius_+%"}},[2998]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freeze Mine Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freeze Mine Area of Effect"}}},stats={[1]="freeze_mine_radius_+%"}},[2999]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Galvanic Arrow Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Galvanic Arrow Area of Effect"}}},stats={[1]="shrapnel_shot_radius_+%"}},[3000]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blast Rain has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blast Rain has %1%%% reduced Area of Effect"}}},stats={[1]="blast_rain_radius_+%"}},[3001]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Contagion Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Contagion Area of Effect"}}},stats={[1]="contagion_radius_+%"}},[3002]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Wither has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Wither has %1%%% reduced Area of Effect"}}},stats={[1]="wither_radius_+%"}},[3003]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blade Vortex Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blade Vortex Area of Effect"}}},stats={[1]="blade_vortex_radius_+%"}},[3004]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bladefall Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bladefall Area of Effect"}}},stats={[1]="bladefall_radius_+%"}},[3005]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Trap Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Trap Area of Effect"}}},stats={[1]="ice_trap_radius_+%"}},[3006]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Earthquake Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Earthquake Area of Effect"}}},stats={[1]="earthquake_radius_+%"}},[3007]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Bomb Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Bomb Area of Effect"}}},stats={[1]="frost_bomb_radius_+%"}},[3008]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Orb of Storms Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Orb of Storms Area of Effect"}}},stats={[1]="storm_cloud_radius_+%"}},[3009]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blight Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blight Area of Effect"}}},stats={[1]="blight_radius_+%"}},[3010]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Sunder Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Sunder Area of Effect"}}},stats={[1]="shockwave_slam_radius_+%"}},[3011]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shockwave Totem Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shockwave Totem Area of Effect"}}},stats={[1]="shockwave_totem_radius_+%"}},[3012]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Charged Dash has %1$+d to Radius of each Wave's last damage Area"}}},stats={[1]="charged_dash_area_of_effect_radius_+_of_final_explosion"}},[3013]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cleave Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cleave Attack Speed"}}},stats={[1]="cleave_attack_speed_+%"}},[3014]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Double Strike Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Double Strike Attack Speed"}}},stats={[1]="double_strike_attack_speed_+%"}},[3015]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dual Strike Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dual Strike Attack Speed"}}},stats={[1]="dual_strike_attack_speed_+%"}},[3016]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Heavy Strike Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Heavy Strike Speed"}}},stats={[1]="heavy_strike_attack_speed_+%"}},[3017]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Raised Zombies have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Raised Zombies have %1%%% reduced Attack Speed"}}},stats={[1]="zombie_attack_speed_+%"}},[3018]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rain of Arrows Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rain of Arrows Attack Speed"}}},stats={[1]="rain_of_arrows_attack_speed_+%"}},[3019]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Leap Slam Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Leap Slam Attack Speed"}}},stats={[1]="leap_slam_attack_speed_+%"}},[3020]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shield Charge Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shield Charge Attack Speed"}}},stats={[1]="shield_charge_attack_speed_+%"}},[3021]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Barrage Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Barrage Attack Speed"}}},stats={[1]="barrage_attack_speed_+%"}},[3022]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Hit Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Hit Attack Speed"}}},stats={[1]="elemental_hit_attack_speed_+%"}},[3023]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cyclone Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cyclone Attack Speed"}}},stats={[1]="cyclone_attack_speed_+%"}},[3024]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Power Siphon Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Power Siphon Attack Speed"}}},stats={[1]="power_siphon_attack_speed_+%"}},[3025]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Siege Ballista has %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Siege Ballista has %1%%% reduced Attack Speed"}}},stats={[1]="siege_ballista_attack_speed_+%"}},[3026]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Sunder Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Sunder Attack Speed"}}},stats={[1]="shockwave_slam_attack_speed_+%"}},[3027]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mirror Arrow and Mirror Arrow Clones have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mirror Arrow and Mirror Arrow Clones have %1%%% reduced Attack Speed"}}},stats={[1]="mirror_arrow_and_mirror_arrow_clone_attack_speed_+%"}},[3028]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blink Arrow and Blink Arrow Clones have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blink Arrow and Blink Arrow Clones have %1%%% reduced Attack Speed"}}},stats={[1]="blink_arrow_and_blink_arrow_clone_attack_speed_+%"}},[3029]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Whirling Blades Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Whirling Blades Attack Speed"}}},stats={[1]="whirling_blades_attack_speed_+%"}},[3030]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spectres have %1%%% increased Attack and Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spectres have %1%%% reduced Attack and Cast Speed"}}},stats={[1]="spectre_attack_and_cast_speed_+%"}},[3031]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freezing Pulse Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freezing Pulse Cast Speed"}}},stats={[1]="freezing_pulse_cast_speed_+%"}},[3032]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fireball Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fireball Cast Speed"}}},stats={[1]="fireball_cast_speed_+%"}},[3033]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Nova Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Nova Cast Speed"}}},stats={[1]="fire_nova_mine_cast_speed_+%"}},[3034]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Warp Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Warp Cast Speed"}}},stats={[1]="lightning_warp_cast_speed_+%"}},[3035]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Trap Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Trap Cooldown Recovery Speed"}}},stats={[1]="fire_trap_cooldown_speed_+%"}},[3036]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flicker Strike Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flicker Strike Cooldown Recovery Speed"}}},stats={[1]="flicker_strike_cooldown_speed_+%"}},[3037]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Snap Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Snap Cooldown Recovery Speed"}}},stats={[1]="cold_snap_cooldown_speed_+%"}},[3038]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Convocation Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Convocation Cooldown Recovery Speed"}}},stats={[1]="convocation_cooldown_speed_+%"}},[3039]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bear Trap Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bear Trap Cooldown Recovery Speed"}}},stats={[1]="bear_trap_cooldown_speed_+%"}},[3040]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Wall Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Wall Cooldown Recovery Speed"}}},stats={[1]="frost_wall_cooldown_speed_+%"}},[3041]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reckoning Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reckoning Cooldown Recovery Speed"}}},stats={[1]="reckoning_cooldown_speed_+%"}},[3042]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flame Dash Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flame Dash Cooldown Recovery Speed"}}},stats={[1]="flame_dash_cooldown_speed_+%"}},[3043]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Desecrate Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Desecrate Cooldown Recovery Speed"}}},stats={[1]="desecrate_cooldown_speed_+%"}},[3044]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blink Arrow Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blink Arrow Cooldown Recovery Speed"}}},stats={[1]="blink_arrow_cooldown_speed_+%"}},[3045]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mirror Arrow Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mirror Arrow Cooldown Recovery Speed"}}},stats={[1]="mirror_arrow_cooldown_speed_+%"}},[3046]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Riposte Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Riposte Cooldown Recovery Speed"}}},stats={[1]="riposte_cooldown_speed_+%"}},[3047]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vengeance Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vengeance Cooldown Recovery Speed"}}},stats={[1]="vengeance_cooldown_speed_+%"}},[3048]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Enduring Cry Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Enduring Cry Cooldown Recovery Speed"}}},stats={[1]="enduring_cry_cooldown_speed_+%"}},[3049]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Bomb Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Bomb Cooldown Recovery Speed"}}},stats={[1]="frost_bomb_cooldown_speed_+%"}},[3050]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Conversion Trap Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Conversion Trap Cooldown Recovery Speed"}}},stats={[1]="conversion_trap_cooldown_speed_+%"}},[3051]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Trap Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Trap Cooldown Recovery Speed"}}},stats={[1]="ice_trap_cooldown_speed_+%"}},[3052]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ball Lightning Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ball Lightning Projectile Speed"}}},stats={[1]="ball_lightning_projectile_speed_+%"}},[3053]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freezing Pulse Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freezing Pulse Projectile Speed"}}},stats={[1]="freezing_pulse_projectile_speed_+%"}},[3054]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spark Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spark Projectile Speed"}}},stats={[1]="spark_projectile_speed_+%"}},[3055]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spectral Throw Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spectral Throw Projectile Speed"}}},stats={[1]="spectral_throw_projectile_speed_+%"}},[3056]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ethereal Knives Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ethereal Knives Projectile Speed"}}},stats={[1]="ethereal_knives_projectile_speed_+%"}},[3057]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Holy Flame Totem has %1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Holy Flame Totem has %1%%% reduced Projectile Speed"}}},stats={[1]="flame_totem_projectile_speed_+%"}},[3058]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Incinerate Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Incinerate Projectile Speed"}}},stats={[1]="incinerate_projectile_speed_+%"}},[3059]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Sentinel of Dominance Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Sentinel of Dominance Duration"}}},stats={[1]="dominating_blow_duration_+%"}},[3060]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Puncture Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Puncture Duration"}}},stats={[1]="puncture_duration_+%"}},[3061]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Immortal Call Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Immortal Call Duration"}}},stats={[1]="immortal_call_duration_+%"}},[3062]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bone Offering Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bone Offering Duration"}}},stats={[1]="bone_offering_duration_+%"}},[3063]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flesh Offering Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flesh Offering Duration"}}},stats={[1]="flesh_offering_duration_+%"}},[3064]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spirit Offering Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spirit Offering Duration"}}},stats={[1]="spirit_offering_duration_+%"}},[3065]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Smoke Mine Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Smoke Mine Duration"}}},stats={[1]="smoke_mine_duration_+%"}},[3066]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Wall Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Wall Duration"}}},stats={[1]="frost_wall_duration_+%"}},[3067]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vigilant Strike Fortify Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vigilant Strike Fortify Duration"}}},stats={[1]="vigilant_strike_fortify_duration_+%"}},[3068]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poacher's Mark Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poacher's Mark Duration"}}},stats={[1]="poachers_mark_duration_+%"}},[3069]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Weakness Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Weakness Duration"}}},stats={[1]="projectile_weakness_duration_+%"}},[3070]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Temporal Chains Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Temporal Chains Duration"}}},stats={[1]="temporal_chains_duration_+%"}},[3071]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Warlord's Mark Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Warlord's Mark Duration"}}},stats={[1]="warlords_mark_duration_+%"}},[3072]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vulnerability Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vulnerability Duration"}}},stats={[1]="vulnerability_duration_+%"}},[3073]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Punishment Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Punishment Duration"}}},stats={[1]="punishment_duration_+%"}},[3074]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frostbite Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frostbite Duration"}}},stats={[1]="frostbite_duration_+%"}},[3075]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flammability Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flammability Duration"}}},stats={[1]="flammability_duration_+%"}},[3076]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Enfeeble Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Enfeeble Duration"}}},stats={[1]="enfeeble_duration_+%"}},[3077]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Weakness Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Weakness Duration"}}},stats={[1]="elemental_weakness_duration_+%"}},[3078]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Conductivity Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Conductivity Duration"}}},stats={[1]="conductivity_duration_+%"}},[3079]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Assassin's Mark Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Assassin's Mark Duration"}}},stats={[1]="assassins_mark_duration_+%"}},[3080]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Desecrate Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Desecrate Duration"}}},stats={[1]="desecrate_duration_+%"}},[3081]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rallying Cry Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rallying Cry Duration"}}},stats={[1]="rallying_cry_duration_+%"}},[3082]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Abyssal Cry Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Abyssal Cry Duration"}}},stats={[1]="abyssal_cry_duration_+%"}},[3083]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Contagion Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Contagion Duration"}}},stats={[1]="contagion_duration_+%"}},[3084]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Essence Drain Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Essence Drain Duration"}}},stats={[1]="siphon_duration_+%"}},[3085]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Wither has %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Wither has %1%%% reduced Duration"}}},stats={[1]="wither_duration_+%"}},[3086]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blade Vortex Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blade Vortex Duration"}}},stats={[1]="blade_vortex_duration_+%"}},[3087]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Earthquake Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Earthquake Duration"}}},stats={[1]="earthquake_duration_+%"}},[3088]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blight Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blight Duration"}}},stats={[1]="blight_duration_+%"}},[3089]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Viper Strike Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Viper Strike Duration"}}},stats={[1]="viper_strike_poison_duration_+%"}},[3090]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Firestorm Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Firestorm Duration"}}},stats={[1]="firestorm_duration_+%"}},[3091]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Static Strike Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Static Strike Duration"}}},stats={[1]="static_strike_duration_+%"}},[3092]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Storm Call Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Storm Call Duration"}}},stats={[1]="storm_call_duration_+%"}},[3093]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Arctic Breath Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Arctic Breath Duration"}}},stats={[1]="arctic_breath_duration_+%"}},[3094]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Warp Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Warp Duration"}}},stats={[1]="lightning_warp_duration_+%"}},[3095]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Shot Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Shot Duration"}}},stats={[1]="ice_shot_duration_+%"}},[3096]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Caustic Arrow Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Caustic Arrow Duration"}}},stats={[1]="caustic_arrow_duration_+%"}},[3097]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Double Strike Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Double Strike Critical Strike Chance"}}},stats={[1]="double_strike_critical_strike_chance_+%"}},[3098]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dual Strike Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dual Strike Critical Strike Chance"}}},stats={[1]="dual_strike_critical_strike_chance_+%"}},[3099]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Split Arrow Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Split Arrow Critical Strike Chance"}}},stats={[1]="split_arrow_critical_strike_chance_+%"}},[3100]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Viper Strike Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Viper Strike Critical Strike Chance"}}},stats={[1]="viper_strike_critical_strike_chance_+%"}},[3101]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flameblast Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flameblast Critical Strike Chance"}}},stats={[1]="flameblast_critical_strike_chance_+%"}},[3102]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flame Surge Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flame Surge Critical Strike Chance"}}},stats={[1]="flame_surge_critical_strike_chance_+%"}},[3103]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Tornado Shot Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Tornado Shot Critical Strike Chance"}}},stats={[1]="tornado_shot_critical_strike_chance_+%"}},[3104]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Orb of Storms Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Orb of Storms Critical Strike Chance"}}},stats={[1]="storm_cloud_critical_strike_chance_+%"}},[3105]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bladefall Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bladefall Critical Strike Chance"}}},stats={[1]="bladefall_critical_strike_chance_+%"}},[3106]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Lightning Strike fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Lightning Strike fires %1% additional Projectiles"}}},stats={[1]="lightning_strike_num_of_additional_projectiles"}},[3107]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Molten Strike fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Molten Strike fires %1% additional Projectiles"}}},stats={[1]="molten_strike_num_of_additional_projectiles"}},[3108]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spark fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spark fires %1% additional Projectiles"}}},stats={[1]="spark_num_of_additional_projectiles"}},[3109]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Split Arrow fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Split Arrow fires %1% additional Projectiles"}}},stats={[1]="split_arrow_num_of_additional_projectiles"}},[3110]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Barrage fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Barrage fires %1% additional Projectiles"}}},stats={[1]="barrage_num_of_additional_projectiles"}},[3111]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Tornado Shot fires an additional secondary Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Tornado Shot fires %1% additional secondary Projectiles"}}},stats={[1]="tornado_shot_num_of_secondary_projectiles"}},[3112]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Magma Orb Chains an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Magma Orb Chains an additional %1% times"}}},stats={[1]="magma_orb_num_of_additional_projectiles_in_chain"}},[3113]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Arc Chains an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Arc Chains an additional %1% times"}}},stats={[1]="arc_num_of_additional_projectiles_in_chain"}},[3114]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Holy Flame Totem fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Holy Flame Totem fires %1% additional Projectiles"}}},stats={[1]="flame_totem_num_of_additional_projectiles"}},[3115]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Lightning Strike pierces an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Lightning Strike pierces %1% additional Targets"}}},stats={[1]="lightning_strike_additional_pierce"}},[3116]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Lightning Trap pierces an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Lightning Trap pierces %1% additional Targets"}}},stats={[1]="lightning_trap_additional_pierce"}},[3117]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Burning Arrow Always Ignites"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="Burning Arrow has %1$+d%% chance to Ignite"}}},stats={[1]="burning_arrow_ignite_chance_%"}},[3118]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Burning Arrow Physical Damage gained as Extra Fire Damage"}}},stats={[1]="burning_arrow_physical_damage_%_to_add_as_fire_damage"}},[3119]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Infernal Blow Physical Damage gained as Extra Fire Damage"}}},stats={[1]="infernal_blow_physical_damage_%_to_add_as_fire_damage"}},[3120]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Trap Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Trap Burning Damage"}}},stats={[1]="fire_trap_burning_damage_+%"}},[3121]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Fireball Always Ignites"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="Fireball has %1$+d%% chance to Ignite"}}},stats={[1]="fireball_ignite_chance_%"}},[3122]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=100,[2]="#"}},text="Glacial Hammer Always Freezes"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99}},text="Glacial Hammer has %1$+d%% chance to Freeze"}}},stats={[1]="glacial_hammer_freeze_chance_%"}},[3123]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=100,[2]="#"}},text="Ice Nova Always Freezes"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99}},text="Ice Nova has %1$+d%% chance to Freeze"}}},stats={[1]="ice_nova_freeze_chance_%"}},[3124]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed per Reave stack"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed per Reave stack"}}},stats={[1]="reave_attack_speed_per_reave_stack_+%"}},[3125]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spectral Throw Projectile Deceleration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spectral Throw Projectile Deceleration"}}},stats={[1]="spectral_throw_projectile_deceleration_+%"}},[3126]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flicker Strike Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flicker Strike Damage per Frenzy Charge"}}},stats={[1]="flicker_strike_damage_+%_per_frenzy_charge"}},[3127]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance for Puncture to Maim on hit"}}},stats={[1]="puncture_maim_on_hit_%_chance"}},[3128]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=100,[2]="#"}},text="Arc Always Shocks"},[2]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]=99}},text="Arc has %1$+d%% chance to Shock"}}},stats={[1]="arc_shock_chance_%"}},[3129]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Fire Nova Mine repeats an additional %1% times"}}},stats={[1]="fire_nova_mine_num_of_additional_repeats"}},[3130]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Firestorm explosion Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Firestorm explosion Area of Effect"}}},stats={[1]="firestorm_explosion_area_of_effect_+%"}},[3131]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flame Surge Damage against Burning Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flame Surge Damage against Burning Enemies"}}},stats={[1]="flame_surge_damage_+%_vs_burning_enemies"}},[3132]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance to gain a Power Charge on Critical Strike with Ice Spear"}}},stats={[1]="ice_spear_%_chance_to_gain_power_charge_on_critical_strike"}},[3133]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance to gain an additional Power Charge on Kill with Power Siphon"}}},stats={[1]="power_siphon_%_chance_to_gain_power_charge_on_kill"}},[3134]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ancestral Protector Totem Placement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ancestral Protector Totem Placement Speed"}}},stats={[1]="melee_ancestor_totem_placement_speed_+%"}},[3135]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Searing Bond Totem Placement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Searing Bond Totem Placement Speed"}}},stats={[1]="searing_bond_totem_placement_speed_+%"}},[3136]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% Sweep Knockback Chance"}}},stats={[1]="sweep_knockback_chance_%"}},[3137]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frenzy Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frenzy Damage per Frenzy Charge"}}},stats={[1]="frenzy_damage_+%_per_frenzy_charge"}},[3138]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance on Frenzy to gain an additional Frenzy Charge"}}},stats={[1]="frenzy_%_chance_to_gain_additional_frenzy_charge"}},[3139]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Elemental Hit Always Freezes, Shocks and Ignites"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="Elemental Hit has %1$+d%% chance to Freeze, Shock and Ignite"}}},stats={[1]="elemental_hit_chance_to_freeze_shock_ignite_%"}},[3140]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Glacial Cascade Physical Damage Converted to Cold Damage"}}},stats={[1]="glacial_cascade_physical_damage_%_to_convert_to_cold"}},[3141]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Glacial Hammer Physical Damage gained as Extra Cold Damage"}}},stats={[1]="glacial_hammer_physical_damage_%_to_add_as_cold_damage"}},[3142]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Ice Crash Physical Damage gained as Extra Cold Damage"}}},stats={[1]="ice_crash_physical_damage_%_to_add_as_cold_damage"}},[3143]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Raised Spectre Elemental Resistances"}}},stats={[1]="spectre_elemental_resistances_%"}},[3144]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raised Zombies have %1$+d%% to Elemental Resistances"}}},stats={[1]="zombie_elemental_resistances_%"}},[3145]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Stone Golem Elemental Resistances"}}},stats={[1]="stone_golem_elemental_resistances_%"}},[3146]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to increased Flame Golem Elemental Resistances"}}},stats={[1]="flame_golem_elemental_resistances_%"}},[3147]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Ice Golem Elemental Resistances"}}},stats={[1]="ice_golem_elemental_resistances_%"}},[3148]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Lightning Golem Elemental Resistances"}}},stats={[1]="lightning_golem_elemental_resistances_%"}},[3149]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Golem Elemental Resistances"}}},stats={[1]="chaos_golem_elemental_resistances_%"}},[3150]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Animated Guardian Elemental Resistances"}}},stats={[1]="animate_guardian_elemental_resistances_%"}},[3151]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shock Nova ring deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shock Nova ring deals %1%%% reduced Damage"}}},stats={[1]="shock_nova_ring_damage_+%"}},[3152]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Blast Rain causes %1$+d Explosions"}}},stats={[1]="blast_rain_number_of_blasts"}},[3153]={lang={English={[1]={[1]={k="divide_by_one_hundred_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Essence Drain Regenerates %1$+d%% of Debuff Damage as Life"}}},stats={[1]="siphon_life_leech_from_damage_permyriad"}},[3154]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Detonate Dead has a %1%%% chance to detonate an additional corpse"}}},stats={[1]="detonate_dead_%_chance_to_detonate_additional_corpse"}},[3155]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to create an additional Animate Weapon copy"}}},stats={[1]="animate_weapon_chance_to_create_additional_copy_%"}},[3156]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Decoy Totem Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Decoy Totem Life"}}},stats={[1]="decoy_totem_life_+%"}},[3157]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Devouring Totem Leech per second"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Devouring Totem Leech per second"}}},stats={[1]="devouring_totem_leech_per_second_+%"}},[3158]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Rejuvenation Totem Life Regeneration as extra Mana Regeneration"}}},stats={[1]="rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"}},[3159]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rejuvenation Totem Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rejuvenation Totem Aura Effect"}}},stats={[1]="rejuvenation_totem_aura_effect_+%"}},[3160]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Wild Strike's Beam Chains an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Wild Strike's Beam Chains an additional %1% times"}}},stats={[1]="wild_strike_num_of_additional_projectiles_in_chain"}},[3161]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Summon an additional Skeleton Warrior with Summon Skeleton"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Summon %1% additional Skeleton Warriors with Summon Skeleton"}}},stats={[1]="summon_skeletons_num_additional_warrior_skeletons"}},[3162]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shockwave Totem Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shockwave Totem Cast Speed"}}},stats={[1]="shockwave_totem_cast_speed_+%"}},[3163]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Devouring Totem has %1%%% Chance to Consume an additional corpse"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Devouring Totem has %1%%% Chance to Consume an additional corpse"}}},stats={[1]="devouring_totem_%_chance_to_consume_additional_corpse"}},[3164]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Siege Ballista has %1%%% increased Totem Placement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Siege Ballista has %1%%% reduced Totem Placement Speed"}}},stats={[1]="siege_ballista_totem_placement_speed_+%"}},[3165]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Incinerate Damage for each stage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Incinerate Damage for each stage"}}},stats={[1]="incinerate_damage_+%_per_stage"}},[3166]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poacher's Mark Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poacher's Mark Curse Effect"}}},stats={[1]="poachers_mark_curse_effect_+%"}},[3167]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Weakness Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Weakness Curse Effect"}}},stats={[1]="projectile_weakness_curse_effect_+%"}},[3168]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Temporal Chains Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Temporal Chains Curse Effect"}}},stats={[1]="temporal_chains_curse_effect_+%"}},[3169]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Assassin's Mark Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Assassin's Mark Curse Effect"}}},stats={[1]="assassins_mark_curse_effect_+%"}},[3170]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Conductivity Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Conductivity Curse Effect"}}},stats={[1]="conductivity_curse_effect_+%"}},[3171]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Weakness Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Weakness Curse Effect"}}},stats={[1]="elemental_weakness_curse_effect_+%"}},[3172]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Enfeeble Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Enfeeble Curse Effect"}}},stats={[1]="enfeeble_curse_effect_+%"}},[3173]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flammability Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flammability Curse Effect"}}},stats={[1]="flammability_curse_effect_+%"}},[3174]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frostbite Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frostbite Curse Effect"}}},stats={[1]="frostbite_curse_effect_+%"}},[3175]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Punishment Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Punishment Curse Effect"}}},stats={[1]="punishment_curse_effect_+%"}},[3176]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vulnerability Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vulnerability Curse Effect"}}},stats={[1]="vulnerability_curse_effect_+%"}},[3177]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Warlord's Mark Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Warlord's Mark Curse Effect"}}},stats={[1]="warlords_mark_curse_effect_+%"}},[3178]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Ire when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Ire when Hit"}}},stats={[1]="display_attack_with_word_of_ire_when_hit_%"}},[3179]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Ire when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Ire when Hit"}}},stats={[1]="display_attack_with_edict_of_ire_when_hit_%"}},[3180]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Ire when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Ire when Hit"}}},stats={[1]="display_attack_with_decree_of_ire_when_hit_%"}},[3181]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Ire when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Ire when Hit"}}},stats={[1]="display_attack_with_commandment_of_ire_when_hit_%"}},[3182]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Arctic Armour Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Arctic Armour Buff Effect"}}},stats={[1]="arctic_armour_buff_effect_+%"}},[3183]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Convocation Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Convocation Buff Effect"}}},stats={[1]="convocation_buff_effect_+%"}},[3184]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Molten Shell Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Molten Shell Buff Effect"}}},stats={[1]="molten_shell_buff_effect_+%"}},[3185]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for Immortal Call to increase Duration without removing Endurance Charges"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Immortal Call increases Duration without removing Endurance Charges"}}},stats={[1]="immortal_call_%_chance_to_not_consume_endurance_charges"}},[3186]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for Phase Run to increase Duration without removing Frenzy Charges"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Phase Run increases Duration without removing Frenzy Charges"}}},stats={[1]="phase_run_%_chance_to_not_consume_frenzy_charges"}},[3187]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Galvanic Arrow Physical Damage gained as extra Lightning Damage"}}},stats={[1]="shrapnel_shot_physical_damage_%_to_add_as_lightning_damage"}},[3188]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Tempest Shield chains an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Tempest Shield chains an additional %1% times"}}},stats={[1]="tempest_shield_num_of_additional_projectiles_in_chain"}},[3189]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Arctic Armour has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Arctic Armour has %1%%% reduced Mana Reservation"}}},stats={[1]="arctic_armour_mana_reservation_+%"}},[3190]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Ash has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Ash has %1%%% reduced Mana Reservation"}}},stats={[1]="herald_of_ash_mana_reservation_+%"}},[3191]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Ice has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Ice has %1%%% reduced Mana Reservation"}}},stats={[1]="herald_of_ice_mana_reservation_+%"}},[3192]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Thunder has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Thunder has %1%%% reduced Mana Reservation"}}},stats={[1]="herald_of_thunder_mana_reservation_+%"}},[3193]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Clarity has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Clarity has %1%%% reduced Mana Reservation"}}},stats={[1]="clarity_mana_reservation_+%"}},[3194]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hatred has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hatred has %1%%% reduced Mana Reservation"}}},stats={[1]="hatred_mana_reservation_+%"}},[3195]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purity of Ice has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purity of Ice has %1%%% reduced Mana Reservation"}}},stats={[1]="purity_of_ice_mana_reservation_+%"}},[3196]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Determination has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Determination has %1%%% reduced Mana Reservation"}}},stats={[1]="determination_mana_reservation_+%"}},[3197]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Discipline has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Discipline has %1%%% reduced Mana Reservation"}}},stats={[1]="discipline_mana_reservation_+%"}},[3198]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purity of Elements has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purity of Elements has %1%%% reduced Mana Reservation"}}},stats={[1]="purity_of_elements_mana_reservation_+%"}},[3199]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purity of Fire has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purity of Fire has %1%%% reduced Mana Reservation"}}},stats={[1]="purity_of_fire_mana_reservation_+%"}},[3200]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purity of Lightning has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purity of Lightning has %1%%% reduced Mana Reservation"}}},stats={[1]="purity_of_lightning_mana_reservation_+%"}},[3201]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vitality has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vitality has %1%%% reduced Mana Reservation"}}},stats={[1]="vitality_mana_reservation_+%"}},[3202]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Wrath has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Wrath has %1%%% reduced Mana Reservation"}}},stats={[1]="wrath_mana_reservation_+%"}},[3203]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grace has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grace has %1%%% reduced Mana Reservation"}}},stats={[1]="grace_mana_reservation_+%"}},[3204]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Haste has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Haste has %1%%% reduced Mana Reservation"}}},stats={[1]="haste_mana_reservation_+%"}},[3205]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Despair has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Despair has %1%%% reduced Mana Reservation"}}},stats={[1]="chaos_weakness_mana_reservation_+%"}},[3206]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Conductivity has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Conductivity has %1%%% reduced Mana Reservation"}}},stats={[1]="conductivity_mana_reservation_+%"}},[3207]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flammability has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flammability has %1%%% reduced Mana Reservation"}}},stats={[1]="flammability_mana_reservation_+%"}},[3208]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Frostbite has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Frostbite has %1%%% reduced Mana Reservation"}}},stats={[1]="frostbite_mana_reservation_+%"}},[3209]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Temporal Chains has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Temporal Chains has %1%%% reduced Mana Reservation"}}},stats={[1]="temporal_chains_mana_reservation_+%"}},[3210]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vulnerability has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vulnerability has %1%%% reduced Mana Reservation"}}},stats={[1]="vulnerability_mana_reservation_+%"}},[3211]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be Stunned while at maximum Endurance Charges"}}},stats={[1]="cannot_be_stunned_while_at_max_endurance_charges"}},[3212]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second while you have a Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Degenerate %1%%% of Life per second while you have a Totem"}}},stats={[1]="life_regenerate_rate_per_second_%_while_totem_active"}},[3213]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if you've taken a Savage\nHit Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed if you've taken a Savage\nHit Recently"}}},stats={[1]="gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit"}},[3214]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage"}}},stats={[1]="berserker_damage_+%_final"}},[3215]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Take %1%%% increased Elemental Damage while on Consecrated Ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Take %1%%% reduced Elemental Damage while on Consecrated Ground"}}},stats={[1]="elemental_damage_taken_+%_while_on_consecrated_ground"}},[3216]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Enemies affected\nby Elemental Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Enemies affected\nby Elemental Ailments"}}},stats={[1]="critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments"}},[3217]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Power Charge when you Summon a Totem"}}},stats={[1]="%_chance_to_gain_power_charge_on_placing_a_totem"}},[3218]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain Elemental Conflux for %1% seconds when you Kill a Rare or Unique Enemy"}}},stats={[1]="gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy"}},[3219]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies you Curse have %1$+d%% to Chaos Resistance"}}},stats={[1]="enemies_chaos_resistance_%_while_cursed"}},[3220]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you've Killed a Cursed Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Damage if you've Killed a Cursed Enemy Recently"}}},stats={[1]="damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy"}},[3221]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and your Minions have %1%%% Physical Damage Reduction"}}},stats={[1]="physical_damage_reduction_and_minion_physical_damage_reduction_%"}},[3222]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Offerings"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced effect of Offerings"}}},stats={[1]="offering_spells_effect_+%"}},[3223]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You and nearby Allies have %1$+d%% Chance to Block Attack Damage"}}},stats={[1]="additional_block_chance_%_for_you_and_allies_affected_by_your_auras"}},[3224]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and nearby Allies have %1%%% increased Attack and Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You and nearby Allies have %1%%% reduced Attack and Cast Speed"}}},stats={[1]="attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras"}},[3225]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and nearby Allies have %1%%% increased Attack, Cast and Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You and nearby Allies have %1%%% reduced Attack, Cast and Movement Speed"}}},stats={[1]="attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras"}},[3226]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You and nearby Allies have %1$+d%% to Chaos Resistance"}}},stats={[1]="chaos_resistance_%_for_you_and_allies_affected_by_your_auras"}},[3227]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and nearby Allies deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You and nearby Allies deal %1%%% reduced Damage"}}},stats={[1]="damage_+%_for_you_and_allies_affected_by_your_auras"}},[3228]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and nearby Allies have %1$+d%% to Elemental Resistances"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You and nearby Allies have %1$+d%% to Elemental Resistances"}}},stats={[1]="elemental_resistances_+%_for_you_and_allies_affected_by_your_auras"}},[3229]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="You and Allies affected by your placed Banners Regenerate %1%%% of\n Life per second for each Stage"}}},stats={[1]="you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_stage"}},[3230]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="You and your Minions have %1%%% increased Attack and Cast Speed if\nyou've Consumed a corpse Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="You and your Minions have %1%%% reduced Attack and Cast Speed if\nyou've Consumed a corpse Recently"}}},stats={[1]="you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed"}},[3231]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Power Charge on Hit against Enemies that are on Full Life"}}},stats={[1]="%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life"}},[3232]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]="#",[2]="#"}},text="Your Critical Strikes with Attacks Maim Enemies"}}},stats={[1]="cause_maim_on_critical_strike_attack"}},[3233]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSmokeCloud"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to create a Smoke Cloud when you lay a Mine or throw a Trap"}}},stats={[1]="%_chance_to_create_smoke_cloud_on_mine_or_trap_creation"}},[3234]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage for each Trap and Mine you have"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage for each Trap and Mine you have"}}},stats={[1]="damage_+%_for_each_trap_and_mine_active"}},[3235]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Evasion Rating while on full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Evasion Rating while on full Energy Shield"}}},stats={[1]="evasion_rating_while_es_full_+%_final"}},[3236]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while not on full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while not on full Energy Shield"}}},stats={[1]="damage_+%_while_es_not_full"}},[3237]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration if you've used a Movement Skill Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration if you've used a Movement Skill Recently"}}},stats={[1]="mana_regeneration_+%_for_4_seconds_on_movement_skill_use"}},[3238]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="You have Onslaught while on full Frenzy Charges"}}},stats={[1]="gain_onslaught_while_frenzy_charges_full"}},[3239]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles gain Damage as they travel farther, dealing up\nto %1%%% increased Damage with Hits to targets"}}},stats={[1]="projectile_damage_+%_max_as_distance_travelled_increases"}},[3240]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage during any Flask Effect"}}},stats={[1]="damage_+%_during_flask_effect"}},[3241]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to avoid Freeze, Shock, Ignite and Bleeding during any Flask Effect"}}},stats={[1]="avoid_freeze_shock_ignite_bleed_%_during_flask_effect"}},[3242]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken during any Flask Effect"}}},stats={[1]="elemental_damage_taken_+%_during_flask_effect"}},[3243]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you've killed a Bleeding Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you've killed a Bleeding Enemy Recently"}}},stats={[1]="damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy"}},[3244]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and nearby Allies deal %1%%% increased Damage while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You and nearby Allies deal %1%%% reduced Damage while you have Fortify"}}},stats={[1]="damage_+%_to_you_and_nearby_allies_while_you_have_fortify"}},[3245]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Taunted Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Taunted Enemies"}}},stats={[1]="damage_taken_+%_from_taunted_enemies"}},[3246]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while Leeching"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while Leeching"}}},stats={[1]="attack_and_cast_speed_+%_while_leeching"}},[3247]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shield Charge Damage per Enemy Hit"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shield Charge Damage per Enemy Hit"}}},stats={[1]="shield_charge_damage_per_target_hit_+%"}},[3248]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]=99}},text="Traps and Mines have a %1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]=100}},text="Traps and Mines Poison on Hit"}}},stats={[1]="traps_and_mines_%_chance_to_poison"}},[3249]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage of each Damage Type for which you\nhave a matching Golem"}}},stats={[1]="damage_+%_of_each_type_that_you_have_an_active_golem_of"}},[3250]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Elemental Golems are Immune to Elemental Damage"}}},stats={[1]="elemental_golem_immunity_to_elemental_damage"}},[3251]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Golems are Immune to Elemental Damage"}}},stats={[1]="golem_immunity_to_elemental_damage"}},[3252]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems have %1%%% more Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems have %1%%% less Life"}}},stats={[1]="unique_primordial_tether_golem_life_+%_final"}},[3253]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Buffs granted by your Elemental Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Buffs granted by your Elemental Golems"}}},stats={[1]="elemental_golem_granted_buff_effect_+%"}},[3254]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of the Buff granted by your Stone Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of the Buff granted by your Stone Golems"}}},stats={[1]="base_stone_golem_granted_buff_effect_+%"}},[3255]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of the Buff granted by your Flame Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of the Buff granted by your Flame Golems"}}},stats={[1]="base_fire_golem_granted_buff_effect_+%"}},[3256]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of the Buff granted by your Ice Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of the Buff granted by your Ice Golems"}}},stats={[1]="base_ice_golem_granted_buff_effect_+%"}},[3257]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of the Buff granted by your Lightning Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of the Buff granted by your Lightning Golems"}}},stats={[1]="base_lightning_golem_granted_buff_effect_+%"}},[3258]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of the Buff granted by your Chaos Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of the Buff granted by your Chaos Golems"}}},stats={[1]="base_chaos_golem_granted_buff_effect_+%"}},[3259]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Elemental Resistances if you Detonated Mines Recently"}}},stats={[1]="gain_elemental_penetration_for_4_seconds_on_mine_detonation"}},[3260]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Cold Damage"}}},stats={[1]="base_cold_immunity"}},[3261]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to lightning Damage"}}},stats={[1]="base_lightning_immunity"}},[3262]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blood Rage grants additional %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blood Rage grants additional %1%%% reduced Attack Speed"}}},stats={[1]="blood_rage_grants_additional_attack_speed_+%"}},[3263]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blood Rage grants additional %1%%% chance to gain a Frenzy Charge on Kill"}}},stats={[1]="blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill"}},[3264]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]="#",[2]="#"}},text="Hindered"}}},stats={[1]="is_hindered"}},[3265]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Hindered Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Hindered Enemies"}}},stats={[1]="damage_+%_vs_hindered_enemies"}},[3266]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Blast Rain has a %1%%% chance to fire an additional Arrow"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Blast Rain fires an additional Arrow"}}},stats={[1]="blast_rain_%_chance_for_additional_blast"}},[3267]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Smoke Mine grants additional %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Smoke Mine grants additional %1%%% reduced Movement Speed"}}},stats={[1]="smoke_mine_base_movement_velocity_+%"}},[3268]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Enduring Cry Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Enduring Cry Buff Effect"}}},stats={[1]="enduring_cry_buff_effect_+%"}},[3269]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Kinetic Blast creates %1% additional explosion"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Kinetic Blast creates %1% additional explosions"}}},stats={[1]="cluster_burst_spawn_amount"}},[3270]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Tendrils Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Tendrils Critical Strike Chance"}}},stats={[1]="lightning_tendrils_critical_strike_chance_+%"}},[3271]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Righteous Fire grants %1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Righteous Fire grants %1%%% reduced Spell Damage"}}},stats={[1]="righteous_fire_spell_damage_+%"}},[3272]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rallying Cry Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rallying Cry Buff Effect"}}},stats={[1]="rallying_cry_buff_effect_+%"}},[3273]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Ancestral Protector Totem Elemental Resistances"}}},stats={[1]="melee_ancestor_totem_elemental_resistance_%"}},[3274]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Kinetic Blast has a %1%%% chance for an additional explosion"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Kinetic Blast has an additional explosion"}}},stats={[1]="kinetic_blast_%_chance_for_additional_blast"}},[3275]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other"}}},stats={[1]="guardian_nearby_allies_share_charges"}},[3276]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Phase Run Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Phase Run Duration"}}},stats={[1]="phase_run_skill_effect_duration_+%"}},[3277]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Searing Bond Totem Elemental Resistances"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Searing Bond Totem Elemental Resistances"}}},stats={[1]="searing_totem_elemental_resistance_+%"}},[3278]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Bone Offering grants an additional %1$+d%% Chance to Block Attack Damage"}}},stats={[1]="bone_offering_block_chance_+%"}},[3279]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Desecrate Spawns an additional corpse"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Desecrate Spawns %1% additional corpses"}}},stats={[1]="desecrate_number_of_corpses_to_create"}},[3280]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flesh Offering grants an additional %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flesh Offering grants an additional %1%%% reduced Attack Speed"}}},stats={[1]="flesh_offering_attack_speed_+%"}},[3281]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Spear Critical Strike Chance in second form"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Spear Critical Strike Chance in second form"}}},stats={[1]="ice_spear_second_form_critical_strike_chance_+%"}},[3282]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Second form has %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="ice_spear_second_form_critical_strike_multiplier_+"}},[3283]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Second form has %1%%% more Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Second form has %1%%% less Projectile Speed"}}},stats={[1]="ice_spear_second_form_projectile_speed_+%_final"}},[3284]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Lightning Arrow hits an additional Enemy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Lightning Arrow hits %1% additional Enemies"}}},stats={[1]="lightning_arrow_maximum_number_of_extra_targets"}},[3285]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to create Consecrated Ground when you Shatter an Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=100,[2]="#"}},text="Create Consecrated Ground when you Shatter an Enemy"}}},stats={[1]="consecrate_ground_on_shatter_%_chance_for_3_seconds"}},[3286]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Glows while in an Area containing a Unique Fish"}}},stats={[1]="glows_in_area_with_unique_fish"}},[3287]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Attacks Chain an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Attacks Chain %1% additional times"}}},stats={[1]="attacks_num_of_additional_chains"}},[3288]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Explosive Arrow has %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Explosive Arrow has %1%%% reduced Speed"}}},stats={[1]="explosive_arrow_attack_speed_+%"}},[3289]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage per 10 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage per 10 Intelligence"}}},stats={[1]="lightning_damage_+%_per_10_intelligence"}},[3290]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]="#",[2]="#"}},text="Attacks with this Weapon Maim on hit"}}},stats={[1]="local_maim_on_hit"}},[3291]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Warcries cost no Mana"}}},stats={[1]="warcries_cost_no_mana"}},[3292]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge if you or your Totems kill an Enemy"}}},stats={[1]="gain_a_power_charge_when_you_or_your_totems_kill_%_chance"}},[3293]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Always Critically Strike Shocked Enemies"}}},stats={[1]="always_crit_shocked_enemies"}},[3294]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot deal Critical Strikes against non-Shocked Enemies"}}},stats={[1]="cannot_crit_non_shocked_enemies"}},[3295]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frostbolt Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frostbolt Damage"}}},stats={[1]="frost_bolt_damage_+%"}},[3296]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vortex Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vortex Damage"}}},stats={[1]="frost_bolt_nova_damage_+%"}},[3297]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lacerate Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lacerate Damage"}}},stats={[1]="double_slash_damage_+%"}},[3298]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blade Flurry Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blade Flurry Damage"}}},stats={[1]="charged_attack_damage_+%"}},[3299]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ancestral Warchief Totem Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ancestral Warchief Totem Damage"}}},stats={[1]="slam_ancestor_totem_damage_+%"}},[3300]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ancestral Blademaster Totem Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ancestral Blademaster Totem Damage"}}},stats={[1]="slash_ancestor_totem_damage_+%"}},[3301]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ancestral Blademaster Totem Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ancestral Blademaster Totem Area of Effect"}}},stats={[1]="slash_ancestor_totem_radius_+%"}},[3302]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ancestral Warchief Totem Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ancestral Warchief Totem Area of Effect"}}},stats={[1]="slam_ancestor_totem_radius_+%"}},[3303]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vortex Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vortex Area of Effect"}}},stats={[1]="frost_bolt_nova_radius_+%"}},[3304]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lacerate Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lacerate Critical Strike Chance"}}},stats={[1]="double_slash_critical_strike_chance_+%"}},[3305]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blade Flurry Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blade Flurry Area of Effect"}}},stats={[1]="charged_attack_radius_+%"}},[3306]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lacerate Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lacerate Area of Effect"}}},stats={[1]="double_slash_radius_+%"}},[3307]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments for each stage"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits and Ailments for each stage"}}},stats={[1]="charged_attack_damage_per_stack_+%_final"}},[3308]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frostbolt Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frostbolt Cast Speed"}}},stats={[1]="frost_bolt_cast_speed_+%"}},[3309]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99}},text="Frostbolt has %1$+d%% chance to Freeze"}}},stats={[1]="frost_bolt_freeze_chance_%"}},[3310]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vortex Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vortex Duration"}}},stats={[1]="frost_bolt_nova_duration_+%"}},[3311]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions cannot be Blinded"}}},stats={[1]="minions_cannot_be_blinded"}},[3312]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to Blind Enemies on hit"}}},stats={[1]="minions_%_chance_to_blind_on_hit"}},[3313]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Found Magic Items drop Identified"}}},stats={[1]="magic_items_drop_identified"}},[3314]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Mana per Grand Spectrum"}}},stats={[1]="X_mana_per_stackable_unique_jewel"}},[3315]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Armour per Grand Spectrum"}}},stats={[1]="X_armour_per_stackable_unique_jewel"}},[3316]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Elemental Damage per Grand Spectrum"}}},stats={[1]="elemental_damage_+%_per_stackable_unique_jewel"}},[3317]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage for each type of Abyss Jewel affecting you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage for each type of Abyss Jewel affecting you"}}},stats={[1]="damage_+%_per_abyss_jewel_type"}},[3318]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Lightning Damage is taken from Mana before Life"}}},stats={[1]="lightning_damage_%_taken_from_mana_before_life"}},[3319]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage is taken from Mana before Life"}}},stats={[1]="physical_damage_%_taken_from_mana_before_life"}},[3320]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Recover %1%%% of Mana when you Shock an Enemy"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Lose %1%%% of Mana when you Shock an Enemy"}}},stats={[1]="recover_%_maximum_mana_when_enemy_shocked"}},[3321]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Spell Hits if you've taken Attack Damage Recently"}}},stats={[1]="spell_dodge_chance_+%_if_you_have_taken_attack_damage_recently"}},[3322]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Attack Hits if you've taken Spell Damage Recently"}}},stats={[1]="dodge_chance_+%_if_you_have_taken_spell_damage_recently"}},[3323]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Slain Maimed Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Dropped by Slain Maimed Enemies"}}},stats={[1]="quantity_of_items_dropped_by_maimed_enemies_+%"}},[3324]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain Maimed Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain Maimed Enemies"}}},stats={[1]="rarity_of_items_dropped_by_maimed_enemies_+%"}},[3325]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken if you've taken a Savage Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},[3]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken if you've taken a Savage Hit Recently"}}},stats={[1]="damage_taken_+%_if_you_have_taken_a_savage_hit_recently"}},[3326]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration on you"}}},stats={[1]="stun_duration_on_self_+%"}},[3327]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage per Endurance Charge"}}},stats={[1]="melee_damage_+%_per_endurance_charge"}},[3328]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems gain %1$+d%% to all Elemental Resistances per Summoned Totem"}}},stats={[1]="totems_resist_all_elements_+%_per_active_totem"}},[3329]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second if you've taken a Savage Hit in the past 1 second"}}},stats={[1]="gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit"}},[3330]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be Shocked while at maximum Endurance Charges"}}},stats={[1]="cannot_be_shocked_while_at_maximum_endurance_charges"}},[3331]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Movement Speed if you've used a Warcry Recently"}}},stats={[1]="movement_speed_+%_if_used_a_warcry_recently"}},[3332]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life against Poisoned Enemies"}}},stats={[1]="life_leech_from_attack_damage_permyriad_vs_poisoned_enemies"}},[3333]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Mana against Poisoned Enemies"}}},stats={[1]="mana_leech_from_attack_damage_permyriad_vs_poisoned_enemies"}},[3334]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Totems have %1%%% increased Cast Speed per Summoned Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Totems have %1%%% reduced Cast Speed per Summoned Totem"}}},stats={[1]="totems_spells_cast_speed_+%_per_active_totem"}},[3335]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Skill Mana Cost"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Skill Mana Cost"}}},stats={[1]="movement_skills_mana_cost_+%"}},[3336]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Critical Strike Chance when in Main Hand"}}},stats={[1]="critical_strike_chance_+%_when_in_main_hand"}},[3337]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage when in Off Hand"}}},stats={[1]="additional_block_chance_%_when_in_off_hand"}},[3338]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spirit Offering grants %1$+d%% of Physical Damage as Extra Chaos Damage"}}},stats={[1]="spirit_offering_physical_damage_%_to_add_as_chaos"}},[3339]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage taken if you have not been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage taken if you have not been Hit Recently"}}},stats={[1]="damage_taken_+%_if_not_hit_recently_final"}},[3340]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating if you have been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion Rating if you have been Hit Recently"}}},stats={[1]="evasion_+%_if_hit_recently"}},[3341]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage from Taunted Enemies"}}},stats={[1]="block_chance_%_vs_taunted_enemies"}},[3342]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% to Cold Resistance"}}},stats={[1]="minion_cold_damage_resistance_%"}},[3343]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions gain %1%%% of Physical Damage as Extra Cold Damage"}}},stats={[1]="minion_physical_damage_%_to_add_as_cold"}},[3344]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour and Evasion Rating if you've killed a Taunted Enemy Recently"}}},stats={[1]="armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently"}},[3345]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gains no Charges during Effect of any Overflowing Chalice Flask"}}},stats={[1]="local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect"}},[3346]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits for each Level higher the Enemy is than you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits for each Level higher the Enemy is than you"}}},stats={[1]="damage_+%_for_each_level_the_enemy_is_higher_than_you"}},[3347]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Charges gained by Other Flasks during Flask Effect"}}},stats={[1]="local_unique_flask_charges_gained_+%_during_flask_effect"}},[3348]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Totems have %1%%% increased Attack Speed per Summoned Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Totems have %1%%% reduced Attack Speed per Summoned Totem"}}},stats={[1]="totems_attack_speed_+%_per_active_totem"}},[3349]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Attacks Chain an additional time when in Main Hand"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Attacks Chain %1% additional times when in Main Hand"}}},stats={[1]="attacks_num_of_additional_chains_when_in_main_hand"}},[3350]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Attacks fire an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Attacks fire %1% additional Projectiles"}}},stats={[1]="attacks_number_of_additional_projectiles"}},[3351]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Attacks fire an additional Projectile when in Off Hand"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Attacks fire %1% additional Projectiles when in Off Hand"}}},stats={[1]="attacks_number_of_additional_projectiles_when_in_off_hand"}},[3352]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Counterattacks"}}},stats={[1]="counter_attacks_minimum_added_physical_damage",[2]="counter_attacks_maximum_added_physical_damage"}},[3353]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Golem Damage for each Type of Golem you have Summoned"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Golem Damage for each Type of Golem you have Summoned"}}},stats={[1]="golem_damage_+%_per_active_golem_type"}},[3354]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Golem Damage per Summoned Golem"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Golem Damage per Summoned Golem"}}},stats={[1]="golem_damage_+%_per_active_golem"}},[3355]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Life if no Equipped Items are Corrupted"}}},stats={[1]="life_+%_with_no_corrupted_equipped_items"}},[3356]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},[3]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second if no Equipped Items are Corrupted"}}},stats={[1]="life_regeneration_per_minute_with_no_corrupted_equipped_items"}},[3357]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Energy Shield per second if all Equipped items are Corrupted"}}},stats={[1]="energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items"}},[3358]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Enemies take %1% Chaos Damage per second"}}},stats={[1]="local_display_nearby_enemies_take_X_chaos_damage_per_minute"}},[3359]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCounterAttack"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Counterattacks"}}},stats={[1]="counter_attacks_minimum_added_cold_damage",[2]="counter_attacks_maximum_added_cold_damage"}},[3360]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you have Pierced Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you have Pierced Recently"}}},stats={[1]="movement_speed_+%_if_pierced_recently"}},[3361]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Poison Cursed Enemies on hit"}}},stats={[1]="poison_cursed_enemies_on_hit"}},[3362]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Poison on Hit against Cursed Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Always Poison on Hit against Cursed Enemies"}}},stats={[1]="chance_to_poison_%_vs_cursed_enemies"}},[3363]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found with a Normal Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items found with a Normal Item Equipped"}}},stats={[1]="item_found_rarity_+%_if_wearing_a_normal_item"}},[3364]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items found with a Magic Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items found with a Magic Item Equipped"}}},stats={[1]="item_found_quantity_+%_if_wearing_a_magic_item"}},[3365]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Gain Onslaught for %1% seconds when you Kill a Rare or Unique Enemy"}}},stats={[1]="gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster"}},[3366]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Kill Enemies that have 20%% or lower Life when Hit by your Skills"}}},stats={[1]="kill_enemy_on_hit_if_under_20%_life"}},[3367]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You are Immune to Bleeding"}}},stats={[1]="immune_to_bleeding"}},[3368]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Bleeding cannot be inflicted on you"}}},stats={[1]="base_cannot_gain_bleeding"}},[3369]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to avoid Bleeding"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Bleeding cannot be inflicted on you"}}},stats={[1]="base_avoid_bleed_%"}},[3370]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You are Immune to Bleeding while Leeching"}}},stats={[1]="immune_to_bleeding_while_leeching"}},[3371]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage if you've Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage if you've Killed Recently"}}},stats={[1]="damage_+%_if_enemy_killed_recently_final"}},[3372]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect if you've Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect if you've Killed Recently"}}},stats={[1]="skill_area_of_effect_+%_if_enemy_killed_recently"}},[3373]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="1 additional maximum Blade Flurry stages"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% additional maximum Blade Flurry stages"}}},stats={[1]="max_charged_attack_stacks"}},[3374]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skill Effect Duration if you've Killed a Maimed Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skill Effect Duration if you've Killed a Maimed Enemy Recently"}}},stats={[1]="skill_effect_duration_+%_if_killed_maimed_enemy_recently"}},[3375]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken if you've Taunted an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken if you've Taunted an Enemy Recently"}}},stats={[1]="damage_taken_+%_if_taunted_an_enemy_recently"}},[3376]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second if you've Taunted an Enemy Recently"}}},stats={[1]="life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently"}},[3377]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Immune to Elemental Ailments during any Flask Effect"}}},stats={[1]="immune_to_elemental_status_ailments_during_flask_effect"}},[3378]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage during any Flask Effect"}}},stats={[1]="elemental_damage_+%_during_flask_effect"}},[3379]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Freeze, Shock and Ignite during any Flask Effect"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Always Freeze, Shock and Ignite during any Flask Effect"}}},stats={[1]="chance_to_freeze_shock_ignite_%_during_flask_effect"}},[3380]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Mana and Energy Shield per second while on Consecrated Ground"}}},stats={[1]="es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground"}},[3381]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while on Consecrated Ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while on Consecrated Ground"}}},stats={[1]="attack_and_cast_speed_+%_while_on_consecrated_ground"}},[3382]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Arming Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Arming Speed"}}},stats={[1]="mine_arming_speed_+%"}},[3383]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Flasks you use to not consume Charges"}}},stats={[1]="flasks_%_chance_to_not_consume_charges"}},[3384]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds"}}},stats={[1]="physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit"}},[3385]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Consecrated Ground you create grants %1%%% increased Damage to you and Allies"}}},stats={[1]="your_consecrated_ground_grants_damage_+%"}},[3386]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you haven't Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you haven't Killed Recently"}}},stats={[1]="attack_speed_+%_if_enemy_not_killed_recently"}},[3387]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Physical Damage while at maximum Frenzy Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Physical Damage while at maximum Frenzy Charges"}}},stats={[1]="physical_damage_+%_while_at_maximum_frenzy_charges_final"}},[3388]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage taken while at maximum Endurance Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage taken while at maximum Endurance Charges"}}},stats={[1]="physical_damage_taken_+%_while_at_maximum_endurance_charges"}},[3389]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage dealt by your Mines is Leeched to you as Life"}}},stats={[1]="mine_damage_leeched_as_life_to_you_permyriad"}},[3390]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage dealt by your Totems is Leeched to you as Life"}}},stats={[1]="totem_damage_leeched_as_life_to_you_permyriad"}},[3391]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed per 200 Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed per 200 Accuracy Rating"}}},stats={[1]="attack_speed_+%_per_200_accuracy_rating"}},[3392]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges"}}},stats={[1]="gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance"}},[3393]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Every 10 seconds, gain %1%%% increased Area of Effect for 4 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Every 10 seconds, gain %1%%% reduced Area of Effect for 4 seconds"}}},stats={[1]="elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds"}},[3394]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage gained as Extra Chaos Damage against\nBleeding Enemies"}}},stats={[1]="physical_damage_%_to_add_as_chaos_vs_bleeding_enemies"}},[3395]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]="#",[2]=99},[2]={[1]=0,[2]=0}},text="%1%%% chance to gain Phasing for 3 seconds when your Trap is triggered by an Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0}},text="Gain Phasing for 3 seconds when your Trap is triggered by an Enemy"},[3]={[1]={k="milliseconds_to_seconds",v=2},[2]={k="reminderstring",v="ReminderTextPhasing"},[3]={k="canonical_line",v="canonical"},[4]={k="_stat",v=1},limit={[1]={[1]="#",[2]=99},[2]={[1]=1,[2]="#"}},text="%1%%% chance to gain Phasing for %2% seconds when your Trap is triggered by an Enemy"},[4]={[1]={k="milliseconds_to_seconds",v=2},[2]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]=100,[2]="#"},[2]={[1]=1,[2]="#"}},text="Gain Phasing for %2% seconds when your Trap is triggered by an Enemy"}}},stats={[1]="phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy",[2]="phasing_on_trap_triggered_by_an_enemy_ms"}},[3396]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1% Life when your Trap is triggered by an Enemy"}}},stats={[1]="gain_x_life_on_trap_triggered_by_an_enemy"}},[3397]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1% Energy Shield when your Trap is triggered by an Enemy"}}},stats={[1]="gain_x_es_on_trap_triggered_by_an_enemy"}},[3398]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attack Skills have %1$+d to maximum number of Summoned Ballista Totems"}}},stats={[1]="attack_skills_additional_ballista_totems_allowed"}},[3399]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attack Skills have %1$+d to maximum number of Summoned Totems"}}},stats={[1]="attack_skills_additional_totems_allowed"}},[3400]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Poison you inflict with Critical Strikes deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Poison you inflict with Critical Strikes deals %1%%% less Damage"}}},stats={[1]="poison_from_critical_strikes_damage_+%_final"}},[3401]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Bleeding you inflict on Maimed Enemies deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Bleeding you inflict on Maimed Enemies deals %1%%% less Damage"}}},stats={[1]="bleed_damage_+%_vs_maimed_enemies_final"}},[3402]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Enemies you Kill that are affected by Elemental Ailments\ngrant %1%%% increased Flask Charges"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="Enemies you Kill that are affected by Elemental Ailments\ngrant %1%%% reduced Flask Charges"}}},stats={[1]="flask_charges_+%_from_enemies_with_status_ailments"}},[3403]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour and Evasion while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour and Evasion while you have Fortify"}}},stats={[1]="armour_and_evasion_+%_while_fortified"}},[3404]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage while you have Fortify"}}},stats={[1]="melee_damage_+%_while_fortified"}},[3405]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Desecrate Spawns an additional corpse"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Desecrate Spawns %1% additional corpses"}}},stats={[1]="desecrate_creates_X_additional_corpses"}},[3406]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you have Consumed a corpse Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you have Consumed a corpse Recently"}}},stats={[1]="damage_+%_if_you_have_consumed_a_corpse_recently"}},[3407]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed for each corpse Consumed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed for each corpse Consumed Recently"}}},stats={[1]="attack_and_cast_speed_+%_per_corpse_consumed_recently"}},[3408]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="Your Hits permanently Intimidate Enemies that are on Full Life"}}},stats={[1]="permanently_intimidate_enemies_you_hit_on_full_life"}},[3409]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTaunt"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Enemies Taunted by you deal %1%%% more Damage with Hits and\nAilments against other targets"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextTaunt"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Enemies Taunted by you deal %1%%% less Damage with Hits and\nAilments against other targets"}}},stats={[1]="taunted_enemies_damage_+%_final_vs_non_taunt_target"}},[3410]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned during Flask Effect"}}},stats={[1]="local_flask_cannot_be_stunned_during_flask_effect"}},[3411]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose all Flask Charges on entering a new area"}}},stats={[1]="local_flask_lose_all_charges_on_entering_new_area"}},[3412]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},[3]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life if you've Killed Recently"}}},stats={[1]="gain_life_leech_on_kill_permyriad"}},[3413]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Melee Attacks Poison on Hit"}}},stats={[1]="poison_on_melee_hit"}},[3414]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Melee Attacks have %1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Melee Attacks Poison on Hit"}}},stats={[1]="chance_to_poison_on_melee_hit_%"}},[3415]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life against Cursed Enemies"}}},stats={[1]="life_leech_permyriad_vs_cursed_enemies"}},[3416]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Movement Speed if you've Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% reduced Movement Speed if you've Killed Recently"}}},stats={[1]="movement_speed_+%_if_enemy_killed_recently"}},[3417]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Weapon Physical Damage as Extra Damage of each Element"}}},stats={[1]="weapon_physical_damage_%_to_add_as_each_element"}},[3418]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Fire Damage if you or your Totems have Killed Recently"}}},stats={[1]="physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems"}},[3419]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier while Dual Wielding"}}},stats={[1]="global_critical_strike_multiplier_while_dual_wielding_+"}},[3420]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance while Dual Wielding"}}},stats={[1]="global_critical_strike_chance_while_dual_wielding_+%"}},[3421]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour and Evasion Rating"}}},stats={[1]="base_physical_damage_reduction_and_evasion_rating"}},[3422]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% Elemental Resistances during any Flask Effect"}}},stats={[1]="elemental_penetration_%_during_flask_effect"}},[3423]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction during any Flask Effect"}}},stats={[1]="additional_physical_damage_reduction_%_during_flask_effect"}},[3424]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Damage taken"}}},stats={[1]="reflect_damage_taken_+%"}},[3425]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when you Block"}}},stats={[1]="power_charge_on_block_%_chance"}},[3426]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextChillNonHit"},limit={[1]={[1]=1000,[2]=1000}},text="Chill Nearby Enemies when you Block"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextChillNonHit"},limit={[1]={[1]=1,[2]="#"}},text="Chill Nearby Enemies when you Block"}}},stats={[1]="nearby_enemies_chilled_on_block"}},[3427]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Cold Damage per Frenzy Charge"}}},stats={[1]="minimum_added_cold_damage_per_frenzy_charge",[2]="maximum_added_cold_damage_per_frenzy_charge"}},[3428]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed during any Flask Effect"}}},stats={[1]="attack_and_cast_speed_+%_during_flask_effect"}},[3429]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage if you've Blocked Recently"}}},stats={[1]="minimum_added_fire_damage_if_blocked_recently",[2]="maximum_added_fire_damage_if_blocked_recently"}},[3430]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]="#"}},text="Stun Threshold is based on Energy Shield instead of Life"}}},stats={[1]="stun_threshold_based_on_energy_shield_instead_of_life"}},[3431]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Leech Life from Critical Strikes"}}},stats={[1]="cannot_leech_life_from_critical_strikes"}},[3432]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Blind Enemies on Critical Strike"}}},stats={[1]="%_chance_to_blind_on_critical_strike"}},[3433]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Causes Bleeding on Melee Critical Strike"}}},stats={[1]="bleed_on_melee_critical_strike"}},[3434]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Elusive on Critical Strike"},[2]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=100,[2]="#"}},text="Gain Elusive on Critical Strike"}}},stats={[1]="gain_elusive_on_crit_%_chance"}},[3435]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Elusive on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=100,[2]="#"}},text="Gain Elusive on Kill"}}},stats={[1]="gain_elusive_on_kill_chance_%"}},[3436]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains many Sentinel Traps"}}},stats={[1]="map_packs_have_pop_up_traps"}},[3437]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Take no Extra Damage from Critical Strikes"}}},stats={[1]="self_take_no_extra_damage_from_critical_strikes"}},[3438]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies you Shock have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies you Shock have %1%%% reduced Cast Speed"}}},stats={[1]="enemies_you_shock_cast_speed_+%"}},[3439]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies you Shock have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies you Shock have %1%%% reduced Movement Speed"}}},stats={[1]="enemies_you_shock_movement_speed_+%"}},[3440]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Normal Monsters in this Area Regenerate %1%%% of Life per second"}}},stats={[1]="map_normal_monster_life_regeneration_rate_per_minute_%"}},[3441]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Magic Monsters in this Area Regenerate %1%%% of Life per second"}}},stats={[1]="map_magic_monster_life_regeneration_rate_per_minute_%"}},[3442]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Rare Monsters in this Area Regenerate %1%%% of Life per second"}}},stats={[1]="map_rare_monster_life_regeneration_rate_per_minute_%"}},[3443]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Burning Damage if you've Ignited an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Burning Damage if you've Ignited an Enemy Recently"}}},stats={[1]="burning_damage_+%_if_ignited_an_enemy_recently"}},[3444]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Recover %1%%% of Life when you Ignite an Enemy"}}},stats={[1]="recover_%_maximum_life_on_enemy_ignited"}},[3445]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage against Ignited Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage against Ignited Enemies"}}},stats={[1]="melee_physical_damage_+%_vs_ignited_enemies"}},[3446]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with arrows that Fork"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with arrows that Fork"}}},stats={[1]="critical_strike_chance_+%_for_forking_arrows"}},[3447]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Arrows that Pierce cause Bleeding"}}},stats={[1]="arrows_that_pierce_cause_bleeding"}},[3448]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Arrows that Pierce have 50%% chance to inflict Bleeding"}}},stats={[1]="arrows_that_pierce_chance_to_bleed_25%"}},[3449]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Arrows Pierce all Targets after Chaining"}}},stats={[1]="arrows_always_pierce_after_chaining"}},[3450]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spells fire an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spells fire %1% additional Projectiles"}}},stats={[1]="spells_number_of_additional_projectiles"}},[3451]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Minion Damage also affect you"}}},stats={[1]="minion_damage_increases_and_reductions_also_affects_you"}},[3452]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Attack Damage per 200 Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Attack Damage per 200 Accuracy Rating"}}},stats={[1]="projectile_attack_damage_+%_per_200_accuracy"}},[3453]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Drops Burning Ground while moving, dealing %1% Fire Damage per second"}}},stats={[1]="essence_display_drop_burning_ground_while_moving_fire_damage_per_second"}},[3454]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage Taken while stationary"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage Taken while stationary"}}},stats={[1]="essence_display_elemental_damage_taken_while_not_moving_+%"}},[3455]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction while stationary"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1$+d%% Physical Damage taken while stationary"}}},stats={[1]="physical_damage_reduction_rating_%_while_not_moving"}},[3456]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Armour while stationary"}}},stats={[1]="armour_while_stationary"}},[3457]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage taken while moving"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage taken while moving"}}},stats={[1]="physical_damage_taken_+%_while_moving"}},[3458]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate while stationary"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% reduced Mana Regeneration Rate while stationary"}}},stats={[1]="mana_regeneration_rate_+%_while_stationary"}},[3459]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectile Attack Skills have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectile Attack Skills have %1%%% reduced Critical Strike Chance"}}},stats={[1]="projectile_attack_skill_critical_strike_chance_+%"}},[3460]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Projectiles from Attacks have %1%%% chance to inflict Bleeding on Hit while\nyou have a Bestial Minion"}}},stats={[1]="projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion"}},[3461]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]="#",[2]="#"}},text="Projectiles from Attacks have %1%%% chance to Maim on Hit while\nyou have a Bestial Minion"}}},stats={[1]="projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion"}},[3462]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Projectiles from Attacks have %1%%% chance to Poison on Hit while\nyou have a Bestial Minion"}}},stats={[1]="projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion"}},[3463]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1%-%2% Physical Damage to Attacks while you have a Bestial Minion"}}},stats={[1]="attack_minimum_added_physical_damage_if_you_have_beast_minion",[2]="attack_maximum_added_physical_damage_if_you_have_beast_minion"}},[3464]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1%-%2% Chaos Damage to Attacks while you have a Bestial Minion"}}},stats={[1]="attack_minimum_added_chaos_damage_if_you_have_beast_minion",[2]="attack_maximum_added_chaos_damage_if_you_have_beast_minion"}},[3465]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Attack and Movement Speed while you have a Bestial Minion"}}},stats={[1]="attack_and_movement_speed_+%_if_you_have_beast_minion"}},[3466]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage if your other Ring is a Shaper Item"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage if your other Ring is a Shaper Item"}}},stats={[1]="attack_damage_+%_if_other_ring_is_shaper_item"}},[3467]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage if your other Ring is an Elder Item"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage if your other Ring is an Elder Item"}}},stats={[1]="spell_damage_+%_if_other_ring_is_elder_item"}},[3468]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned by Spells if your other Ring is a Shaper Item"}}},stats={[1]="cannot_be_stunned_by_spells_if_other_ring_is_shaper_item"}},[3469]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned by Attacks if your other Ring is an Elder Item"}}},stats={[1]="cannot_be_stunned_by_attacks_if_other_ring_is_elder_item"}},[3470]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d to Maximum Life per Elder Item Equipped"}}},stats={[1]="maximum_life_per_equipped_elder_item"}},[3471]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments per Elder Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments per Elder Item Equipped"}}},stats={[1]="ailment_damage_+%_per_equipped_elder_item"}},[3472]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Ailments per Elder Item Equipped"}}},stats={[1]="ailment_dot_multiplier_+_per_equipped_elder_item"}},[3473]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of non-Damaging Ailments per Elder Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of non-Damaging Ailments per Elder Item Equipped"}}},stats={[1]="non_damaging_ailment_effect_+%_per_equipped_elder_item"}},[3474]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Total Mana Cost of Skills for each Corrupted Item Equipped"}}},stats={[1]="skill_mana_cost_+_for_each_equipped_corrupted_item"}},[3475]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped"}}},stats={[1]="elemental_damage_%_to_add_as_chaos_per_shaper_item_equipped"}},[3476]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Siphoning Charges per Elder or Shaper Item Equipped"}}},stats={[1]="maximum_siphoning_charges_per_elder_or_shaper_item_equipped"}},[3477]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Siphoning Charge when you use a Skill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Siphoning Charge when you use a Skill"}}},stats={[1]="gain_siphoning_charge_on_skill_use_%_chance"}},[3478]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks and Spells per Siphoning Charge"}}},stats={[1]="attack_and_spell_minimum_added_physical_damage_per_siphoning_charge",[2]="attack_and_spell_maximum_added_physical_damage_per_siphoning_charge"}},[3479]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge"}}},stats={[1]="non_chaos_damage_%_to_add_as_chaos_damage_per_siphoning_charge"}},[3480]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction from Hits per Siphoning Charge"}}},stats={[1]="additional_physical_damage_reduction_against_hits_%_per_siphoning_charge"}},[3481]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage Leeched as Life per Siphoning Charge"}}},stats={[1]="life_leech_from_any_damage_permyriad_per_siphoning_charge"}},[3482]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Take %1% Physical Damage per Second per Siphoning Charge if you've used a Skill Recently"}}},stats={[1]="physical_damage_taken_per_minute_per_siphoning_charge_if_have_used_a_skill_recently"}},[3483]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life when you use a Mana Flask"}}},stats={[1]="recover_%_maximum_life_on_mana_flask_use"}},[3484]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Non-instant Mana Recovery from Flasks is also Recovered as Life"}}},stats={[1]="non_instant_mana_recovery_from_flasks_also_recovers_life"}},[3485]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills for each 200 total Mana you have Spent Recently"}}},stats={[1]="mana_cost_+%_per_200_mana_spent_recently"}},[3486]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%%"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage for each 200 total Mana you have Spent Recently"}}},stats={[1]="spell_damage_+%_per_200_mana_spent_recently"}},[3487]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot be Stunned if you have at least 10 Crab Barriers"}}},stats={[1]="cannot_be_stunned_if_you_have_10_or_more_crab_charges"}},[3488]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Cannot lose Crab Barriers if you have lost Crab Barriers Recently"}}},stats={[1]="cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently"}},[3489]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum number of Crab Barriers"}}},stats={[1]="crab_aspect_crab_barrier_max_+"}},[3490]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage per Crab Barrier"}}},stats={[1]="damage_+%_per_crab_charge"}},[3491]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You only lose %1% Crab Barriers when you take Physical Damage from a Hit"}}},stats={[1]="number_of_crab_charges_lost_when_hit"}},[3492]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while you have at least 5 Crab Barriers"}}},stats={[1]="additional_block_%_while_you_have_at_least_5_crab_charges"}},[3493]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while you have at least 10 Crab Barriers"}}},stats={[1]="additional_block_%_while_you_have_at_least_10_crab_charges"}},[3494]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance that if you would gain a Crab Barrier, you instead gain up to\nyour maximum number of Crab Barriers"}}},stats={[1]="chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%"}},[3495]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Maximum Void Charges"}}},stats={[1]="maximum_void_arrows"}},[3496]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain 25%% of Non-Chaos Damage with Hits as Extra Chaos Damage"}}},stats={[1]="%_chance_to_gain_25%_non_chaos_damage_to_add_as_chaos_damage"}},[3497]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain 50%% of Non-Chaos Damage with Hits as Extra Chaos Damage"}}},stats={[1]="%_chance_to_gain_50%_non_chaos_damage_to_add_as_chaos_damage"}},[3498]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain 100%% of Non-Chaos Damage with Hits as Extra Chaos Damage"}}},stats={[1]="%_chance_to_gain_100%_non_chaos_damage_to_add_as_chaos_damage"}},[3499]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance while affected by Aspect of the Cat"}}},stats={[1]="additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect"}},[3500]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Critical Strikes have %1%%% chance to Blind Enemies while you have Cat's Stealth"}}},stats={[1]="%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth"}},[3501]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances while you have at least 200 Strength"}}},stats={[1]="resist_all_elements_%_with_200_or_more_strength"}},[3502]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Attack Damage while you have at least 200 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Attack Damage while you have at least 200 Dexterity"}}},stats={[1]="projectile_attack_damage_+%_with_at_least_200_dex"}},[3503]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance while you have at least 200 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance while you have at least 200 Intelligence"}}},stats={[1]="critical_strike_chance_+%_with_at_least_200_int"}},[3504]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage from Hits with this Weapon is Converted to a random Element"}}},stats={[1]="local_physical_damage_%_to_convert_to_a_random_element"}},[3505]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},[2]={k="reminderstring",v="ReminderTextFreeze"},[3]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Hits with this Weapon always Ignite, Freeze, and Shock"}}},stats={[1]="local_hits_always_inflict_elemental_ailments"}},[3506]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hits with this Weapon deal %1%%% increased Damage to Ignited Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hits with this Weapon deal %1%%% reduced Damage to Ignited Enemies"}}},stats={[1]="local_hit_damage_+%_vs_ignited_enemies"}},[3507]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hits with this Weapon deal %1%%% increased Damage to Frozen Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hits with this Weapon deal %1%%% reduced Damage to Frozen Enemies"}}},stats={[1]="local_hit_damage_+%_vs_frozen_enemies"}},[3508]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hits with this Weapon deal %1%%% increased Damage to Shocked Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hits with this Weapon deal %1%%% reduced Damage to Shocked Enemies"}}},stats={[1]="local_hit_damage_+%_vs_shocked_enemies"}},[3509]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second if you have at least 500 Maximum Energy Shield"}}},stats={[1]="life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield"}},[3510]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second if you have at least 1000 Maximum Energy Shield"}}},stats={[1]="life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield"}},[3511]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second if you have at least 1500 Maximum Energy Shield"}}},stats={[1]="life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield"}},[3512]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per 25 Rampage Kills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per 25 Rampage Kills"}}},stats={[1]="area_of_effect_+%_per_25_rampage_stacks"}},[3513]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Frenzy Charge on every 50th Rampage Kill"}}},stats={[1]="add_frenzy_charge_every_50_rampage_stacks"}},[3514]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Spell Damage Leeched as Life if Equipped Shield has at least 30%% Chance to Block"}}},stats={[1]="life_leech_from_spell_damage_permyriad_if_shield_has_30%_block_chance"}},[3515]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Energy Shield per 5 Armour on Equipped Shield"}}},stats={[1]="maximum_energy_shield_+_per_5_armour_on_shield"}},[3516]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour per 5 Evasion Rating on Equipped Shield"}}},stats={[1]="physical_damage_reduction_rating_per_5_evasion_on_shield"}},[3517]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield"}}},stats={[1]="evasion_rating_+_per_5_maximum_energy_shield_on_shield"}},[3518]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Spirit Charges per Abyss Jewel affecting you"}}},stats={[1]="maximum_spirit_charges_per_abyss_jewel_equipped"}},[3519]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Travel Skills have %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Travel Skills have %1%%% increased Cooldown Recovery Speed"}}},stats={[1]="travel_skill_cooldown_speed_+%"}},[3520]={lang={English={[1]={limit={[1]={[1]=1000,[2]=1000}},text="Gain a Spirit Charge every second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain a Spirit Charge every %1% seconds"}}},stats={[1]="gain_spirit_charge_every_x_ms"}},[3521]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Spirit Charge on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Spirit Charge on Kill"}}},stats={[1]="gain_spirit_charge_on_kill_%_chance"}},[3522]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]="#"}},text="You lose all Spirit Charges when taking a Savage Hit"}}},stats={[1]="lose_spirit_charges_on_savage_hit_taken"}},[3523]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life when you lose a Spirit Charge"}}},stats={[1]="gain_%_life_when_spirit_charge_expires_or_consumed"}},[3524]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Energy Shield when you lose a Spirit Charge"}}},stats={[1]="gain_%_es_when_spirit_charge_expires_or_consumed"}},[3525]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Divine Charges"}}},stats={[1]="maximum_divine_charges"}},[3526]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Divine Charge on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Divine Charge on Hit"}}},stats={[1]="gain_divine_charge_on_hit_%"}},[3527]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per Divine Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per Divine Charge"}}},stats={[1]="elemental_damage_+%_per_divine_charge"}},[3528]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="You gain Divinity for %1% seconds on reaching maximum Divine Charges\nLose all Divine Charges when you gain Divinity"}}},stats={[1]="gain_divinity_ms_when_reaching_maximum_divine_charges"}},[3529]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cooldown Recovery of Travel Skills per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cooldown Recovery of Travel Skills per Frenzy Charge"}}},stats={[1]="travel_skills_cooldown_speed_+%_per_frenzy_charge"}},[3530]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Elusive on you per Power Charge"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Elusive on you per Power Charge"}}},stats={[1]="elusive_effect_on_self_+%_per_power_charge"}},[3531]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to lose a Frenzy Charge when you use a Travel Skill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Lose a Frenzy Charge when you use a Travel Skill"}}},stats={[1]="lose_a_frenzy_charge_on_travel_skill_use_%_chance"}},[3532]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to lose a Power Charge when you gain Elusive"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Lose a Power Charge when you gain Elusive"}}},stats={[1]="lose_a_power_charge_when_you_gain_elusive_%_chance"}},[3533]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d Armour if you've Blocked Recently"}}},stats={[1]="X_armour_if_you_have_blocked_recently"}},[3534]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Armour per Summoned Totem"}}},stats={[1]="X_armour_per_active_totem"}},[3535]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="50%% more Global Accuracy Rating"}}},stats={[1]="accuracy_rating_is_doubled"}},[3536]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating if you haven't Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating if you haven't Killed Recently"}}},stats={[1]="accuracy_rating_+%_if_enemy_not_killed_recently"}},[3537]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds"}}},stats={[1]="accuracy_rating_+%_if_have_crit_in_past_8_seconds"}},[3538]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy against Bleeding Enemies"}}},stats={[1]="accuracy_rating_vs_bleeding_enemies"}},[3539]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating while at Maximum Frenzy Charges"}}},stats={[1]="accuracy_rating_while_at_maximum_frenzy_charges"}},[3540]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when Hit"}}},stats={[1]="add_frenzy_charge_when_hit_%"}},[3541]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage if you've Used or Triggered a Shield Skill Recently"}}},stats={[1]="additional_attack_block_%_if_used_shield_skill_recently"}},[3542]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage per Endurance Charge"}}},stats={[1]="additional_attack_block_%_per_endurance_charge"}},[3543]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage per Frenzy Charge"}}},stats={[1]="additional_attack_block_%_per_frenzy_charge"}},[3544]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage per Power Charge"}}},stats={[1]="additional_attack_block_%_per_power_charge"}},[3545]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage per Summoned Skeleton"}}},stats={[1]="additional_attack_block_%_per_summoned_skeleton"}},[3546]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="additional_block_%_if_you_have_crit_recently"}},[3547]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage per Endurance Charge"}}},stats={[1]="additional_block_%_per_endurance_charge"}},[3548]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds"}}},stats={[1]="additional_block_%_per_hit_you_have_blocked_in_past_10_seconds"}},[3549]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while not Cursed"}}},stats={[1]="additional_block_%_while_not_cursed"}},[3550]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while on Consecrated Ground"}}},stats={[1]="additional_block_%_while_on_consecrated_ground"}},[3551]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage if there are at least 5 nearby Enemies"}}},stats={[1]="additional_block_%_with_5_or_more_nearby_enemies"}},[3552]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance per 10 Maximum Energy Shield on Shield"}}},stats={[1]="additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad"}},[3553]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Critical Strike Chance per Power Charge"}}},stats={[1]="additional_critical_strike_chance_per_power_charge_permyriad"}},[3554]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance per Poison affecting Enemy, up to +2.0%%"}}},stats={[1]="additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%"}},[3555]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance while affected by Hatred"}}},stats={[1]="additional_critical_strike_chance_permyriad_while_affected_by_hatred"}},[3556]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Dominating Blow can summon an additional Magic Sentinel of Dominance"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Dominating Blow can summon %1% additional Magic Sentinels of Dominance"}}},stats={[1]="additional_max_number_of_dominated_magic_monsters"}},[3557]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Dominating Blow can summon an additional Rare Sentinel of Dominance"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Dominating Blow can summon %1% additional Rare Sentinels of Dominance"}}},stats={[1]="additional_max_number_of_dominated_rare_monsters"}},[3558]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all maximum Resistances while Poisoned"}}},stats={[1]="additional_maximum_all_resistances_%_while_poisoned"}},[3559]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all maximum Resistances if you have at least 150 Devotion"}}},stats={[1]="additional_maximum_all_resistances_%_at_devotion_threshold"}},[3560]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all maximum Resistances while you have no Endurance Charges"}}},stats={[1]="additional_maximum_all_resistances_%_with_no_endurance_charges"}},[3561]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to Evade Attacks if you've\ntaken a Savage Hit Recently"}}},stats={[1]="additional_%_chance_to_evade_attacks_if_you_have_taken_a_savage_hit_recently"}},[3562]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction while Focussed"}}},stats={[1]="additional_physical_damage_reduction_%_during_focus"}},[3563]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently"}}},stats={[1]="additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently"}},[3564]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction per Keystone"}}},stats={[1]="additional_physical_damage_reduction_%_per_keystone"}},[3565]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction per Minion, up to 10%%"}}},stats={[1]="additional_physical_damage_reduction_%_per_minion_up_to_10%"}},[3566]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction against Abyssal Monsters"}}},stats={[1]="additional_physical_damage_reduction_%_vs_abyssal_monsters"}},[3567]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction while affected by Determination"}}},stats={[1]="additional_physical_damage_reduction_%_while_affected_by_determination"}},[3568]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction while affected by a Guard Skill Buff"}}},stats={[1]="additional_physical_damage_reduction_%_while_affected_by_guard_skill"}},[3569]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction while Bleeding"}}},stats={[1]="additional_physical_damage_reduction_%_while_bleeding"}},[3570]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction while Channelling"}}},stats={[1]="additional_physical_damage_reduction_%_while_channelling"}},[3571]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction while moving"}}},stats={[1]="additional_physical_damage_reduction_%_while_moving"}},[3572]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage per Power Charge"}}},stats={[1]="additional_spell_block_%_per_power_charge"}},[3573]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while Cursed"}}},stats={[1]="additional_spell_block_%_while_cursed"}},[3574]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed"}}},stats={[1]="additive_cast_speed_modifiers_apply_to_trap_throwing_speed"}},[3575]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPsudoKeystoneTransfigurationOfSoul"},limit={[1]={[1]="#",[2]="#"}},text="Transfiguration of Soul"}}},stats={[1]="additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value"}},[3576]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPsudoKeystoneTransfigurationOfBody"},limit={[1]={[1]="#",[2]="#"}},text="Transfiguration of Body"}}},stats={[1]="additive_life_modifiers_apply_to_attack_damage_at_30%_value"}},[3577]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPsudoKeystoneTransfigurationOfMind"},limit={[1]={[1]="#",[2]="#"}},text="Transfiguration of Mind"}}},stats={[1]="additive_mana_modifiers_apply_to_damage_at_30%_value"}},[3578]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Agony Crawler deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Agony Crawler deals %1%%% reduced Damage"}}},stats={[1]="agony_crawler_damage_+%"}},[3579]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can have an Offering of each type"}}},stats={[1]="allow_multiple_offerings"}},[3580]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="You always Ignite while Burning"}}},stats={[1]="always_ignite_while_burning"}},[3581]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Pierce all Targets"}}},stats={[1]="always_pierce"}},[3582]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Buffs granted by your Active Ancestor Totems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Buffs granted by your Active Ancestor Totems"}}},stats={[1]="ancestor_totem_buff_effect_+%"}},[3583]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ancestor Totems have %1%%% increased Activation range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ancestor Totems have %1%%% reduced Activation range"}}},stats={[1]="ancestor_totem_parent_activation_range_+%"}},[3584]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Anger Reserves no Mana"}}},stats={[1]="anger_reserves_no_mana"}},[3585]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Animated Guardian deals %1%%% increased Damage per Animated Weapon"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Animated Guardian deals %1%%% reduced Damage per Animated Weapon"}}},stats={[1]="animate_guardian_damage_+%_per_animated_weapon"}},[3586]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"}}},stats={[1]="animated_minions_melee_splash"}},[3587]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCoveredInAshNoDuration"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit"}}},stats={[1]="apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy"}},[3588]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCoveredInAsh"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to cover Enemies in Ash when they Hit you"},[2]={[1]={k="reminderstring",v="ReminderTextCoveredInAsh"},limit={[1]={[1]=100,[2]="#"}},text="Cover Enemies in Ash when they Hit you"}}},stats={[1]="apply_covered_in_ash_to_attacker_when_hit_%"}},[3589]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Arc deals %1%%% increased Damage for each time it has Chained"}}},stats={[1]="arc_damage_+%_per_chain"}},[3590]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Chill Enemy for %1$d second when Hit, reducing their Action Speed by 30%%"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1001,[2]="#"}},text="Chill Enemy for %1$d seconds when Hit, reducing their Action Speed by 30%%"}}},stats={[1]="arctic_armour_chill_when_hit_duration"}},[3591]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Arctic Breath's Chilling Area has %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Arctic Breath's Chilling Area has %1%%% reduced Movement Speed"}}},stats={[1]="arctic_breath_chilling_area_movement_velocity_+%"}},[3592]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area Damage per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area Damage per 10 Devotion"}}},stats={[1]="area_damage_+%_per_10_devotion"}},[3593]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area Damage per 12 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area Damage per 12 Strength"}}},stats={[1]="area_damage_+%_per_12_strength"}},[3594]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="If you've Consumed a corpse Recently, you and your Minions have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="If you've Consumed a corpse Recently, you and your Minions have %1%%% reduced Area of Effect"}}},stats={[1]="area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently"}},[3595]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect if you have Stunned an Enemy Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect if you have Stunned an Enemy Recently"}}},stats={[1]="area_of_effect_+%_if_have_stunned_an_enemy_recently"}},[3596]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect if you have Blocked Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect if you have Blocked Recently"}}},stats={[1]="area_of_effect_+%_if_you_have_blocked_recently"}},[3597]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per 50 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per 50 Strength"}}},stats={[1]="area_of_effect_+%_per_50_strength"}},[3598]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect for each Summoned Sentinel of Purity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect for each Summoned Sentinel of Purity"}}},stats={[1]="area_of_effect_+%_per_active_herald_of_light_minion"}},[3599]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per Endurance Charge"}}},stats={[1]="area_of_effect_+%_per_endurance_charge"}},[3600]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per Enemy killed recently, up to 50%%"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per Enemy killed recently"}}},stats={[1]="area_of_effect_+%_per_enemy_killed_recently"}},[3601]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while Fortified"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while Fortified"}}},stats={[1]="area_of_effect_+%_while_fortified"}},[3602]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while you have a Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while you have a Totem"}}},stats={[1]="area_of_effect_+%_while_totem_active"}},[3603]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while wielding a Bow"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while wielding a Bow"}}},stats={[1]="area_of_effect_+%_while_wielding_bow"}},[3604]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while wielding a Staff"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while wielding a Staff"}}},stats={[1]="area_of_effect_+%_while_wielding_staff"}},[3605]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while you have Arcane Surge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while you have Arcane Surge"}}},stats={[1]="area_of_effect_+%_while_you_have_arcane_surge"}},[3606]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect if you have at least 500 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect if you have at least 500 Strength"}}},stats={[1]="area_of_effect_+%_with_500_or_more_strength"}},[3607]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy with Area Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy with Area Skills"}}},stats={[1]="area_skill_accuracy_rating_+%"}},[3608]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Armageddon Brand Damage Penetrates %1%%% of Branded Enemy's Fire Resistance"}}},stats={[1]="armageddon_brand_attached_target_fire_penetration_%"}},[3609]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Armageddon Brand deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Armageddon Brand deals %1%%% reduced Damage"}}},stats={[1]="armageddon_brand_damage_+%"}},[3610]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Armageddon Brand has %1%%% increased Activation Frequency"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Armageddon Brand has %1%%% reduced Activation Frequency"}}},stats={[1]="armageddon_brand_repeat_frequency_+%"}},[3611]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour and Evasion Rating while you have Fortify"}}},stats={[1]="armour_and_evasion_rating_+_while_fortified"}},[3612]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUncappedResist"},limit={[1]={[1]="#",[2]="#"}},text="Armour is increased by Uncapped Fire Resistance"}}},stats={[1]="armour_increased_by_uncapped_fire_resistance"}},[3613]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour while affected by Determination"}}},stats={[1]="armour_+_while_affected_by_determination"}},[3614]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour while affected by a Guard Skill Buff"}}},stats={[1]="armour_+_while_affected_by_guard_skill"}},[3615]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour if you haven't Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour if you haven't Killed Recently"}}},stats={[1]="armour_+%_if_enemy_not_killed_recently"}},[3616]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Armour while Bleeding"}}},stats={[1]="armour_+%_while_bleeding"}},[3617]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Armour while you have no Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Armour while you have no Energy Shield"}}},stats={[1]="armour_+%_while_no_energy_shield"}},[3618]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour while stationary"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour while stationary"}}},stats={[1]="armour_+%_while_stationary"}},[3619]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Arrows deal %1%%% increased Damage with Hits and Ailments to Targets they Pierce"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Arrows deal %1%%% reduced Damage with Hits and Ailments to Targets they Pierce"}}},stats={[1]="arrow_damage_+%_vs_pierced_targets"}},[3620]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]="#"}},text="Arrows deal 50%% increased Damage with Hits and Ailments to Targets they Pierce"}}},stats={[1]="arrow_damage_+50%_vs_pierced_targets"}},[3621]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Arrows Pierce all Targets after Forking"}}},stats={[1]="arrows_always_pierce_after_forking"}},[3622]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Arrows Pierce 1 additional Target"}}},stats={[1]="arrows_pierce_additional_target"}},[3623]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Arrows which Pierce also Return"}}},stats={[1]="arrows_that_pierce_also_return"}},[3624]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Artillery Ballista Projectiles fall in two perpendicular lines instead"}}},stats={[1]="artillery_ballista_cross_strafe_pattern"}},[3625]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Artillery Ballista Damage Penetrates %1%%% Fire Resistance"}}},stats={[1]="artillery_ballista_fire_pen_+%"}},[3626]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Artillery Ballista fires an additional Arrow"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Artillery Ballista fires %1% additional Arrows"}}},stats={[1]="artillery_ballista_num_additional_arrows"}},[3627]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Chaos Damage with Attack Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Chaos Damage with Attack Skills"}}},stats={[1]="ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final"}},[3628]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Aspect of the Avian Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Aspect of the Avian Buff Effect"}}},stats={[1]="aspect_of_the_avian_buff_effect_+%"}},[3629]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"}}},stats={[1]="aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies"}},[3630]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Aspect of the Spider can inflict Spider's Web on Enemies an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Aspect of the Spider can inflict Spider's Web on Enemies %1% additional times"}}},stats={[1]="aspect_of_the_spider_web_count_+"}},[3631]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Attacks have %1$+d%% to Critical Strike Chance"}}},stats={[1]="attack_additional_critical_strike_chance_permyriad"}},[3632]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Attack Skills deal %1%%% increased Damage with Ailments while Dual Wielding"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Attack Skills deal %1%%% reduced Damage with Ailments while Dual Wielding"}}},stats={[1]="attack_ailment_damage_+%_while_dual_wielding"}},[3633]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Attack Skills deal %1%%% increased Damage with Ailments while holding a Shield"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Attack Skills deal %1%%% reduced Damage with Ailments while holding a Shield"}}},stats={[1]="attack_ailment_damage_+%_while_holding_shield"}},[3634]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding an Axe"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding an Axe"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_axe"}},[3635]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Bow"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Bow"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_bow"}},[3636]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Claw"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Claw"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_claw"}},[3637]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Dagger"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},[3]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Dagger"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_dagger"}},[3638]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_mace"}},[3639]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Melee Weapon"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_melee_weapon"}},[3640]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a One Handed Weapon"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_one_handed_weapon"}},[3641]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Staff"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Staff"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_staff"}},[3642]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Sword"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Sword"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_sword"}},[3643]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_two_handed_weapon"}},[3644]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Wand"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Wand"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_wand"}},[3645]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed during Effect of any Mana Flask"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed during Effect of any Mana Flask"}}},stats={[1]="attack_and_cast_speed_+%_while_affected_by_a_mana_flask"}},[3646]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while Elusive"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while Elusive"}}},stats={[1]="attack_and_cast_speed_+%_while_affected_by_elusive"}},[3647]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed per Ghost Shroud"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed per Ghost Shroud"}}},stats={[1]="attack_and_cast_speed_per_ghost_dance_stack_+%"}},[3648]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% increased Attack and Cast Speed for 3 seconds when you Attack, up to once every 9 seconds"}}},stats={[1]="attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds"}},[3649]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if you've Hit an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed if you've Hit an Enemy Recently"}}},stats={[1]="attack_and_cast_speed_+%_if_enemy_hit_recently"}},[3650]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed per Endurance Charge"}}},stats={[1]="attack_and_cast_speed_+%_per_endurance_charge"}},[3651]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed per Power Charge"}}},stats={[1]="attack_and_cast_speed_+%_per_power_charge"}},[3652]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed per Summoned Raging Spirit"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed per Summoned Raging Spirit"}}},stats={[1]="attack_and_cast_speed_+%_per_summoned_raging_spirit"}},[3653]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while Focussed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while Focussed"}}},stats={[1]="attack_and_cast_speed_+%_while_focused"}},[3654]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while Leeching Energy Shield"}}},stats={[1]="attack_and_cast_speed_+%_while_leeching_energy_shield"}},[3655]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Channelling Skills have %1%%% increased Attack and Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Channelling Skills have %1%%% reduced Attack and Cast Speed"}}},stats={[1]="attack_and_cast_speed_+%_with_channelling_skills"}},[3656]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed with Shield Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed with Shield Skills"}}},stats={[1]="attack_and_cast_speed_+%_with_shield_skills"}},[3657]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Attack and Movement Speed per Challenger Charge"}}},stats={[1]="attack_and_movement_speed_+%_final_per_challenger_charge"}},[3658]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect for Attacks"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect for Attacks"}}},stats={[1]="attack_area_of_effect_+%"}},[3659]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage if you have Blocked Spell Damage Recently"}}},stats={[1]="attack_block_%_if_blocked_a_spell_recently"}},[3660]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSavageHit"},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack, Cast and Movement Speed if you've taken a Savage Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextSavageHit"},[3]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack, Cast and Movement Speed if you've taken a Savage Hit Recently"}}},stats={[1]="attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently"}},[3661]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Attacks"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Attacks"}}},stats={[1]="attack_critical_strike_chance_+%"}},[3662]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Critical Strike Chance per 200 Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Critical Strike Chance per 200 Accuracy Rating"}}},stats={[1]="attack_critical_strike_chance_+%_per_200_accuracy_rating"}},[3663]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage per 500 Maximum Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage per 500 Maximum Mana"}}},stats={[1]="attack_damage_+%_per_500_maximum_mana"}},[3664]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Attack Damage for each Map Item Modifier affecting the Area"}}},stats={[1]="attack_damage_+%_per_explicit_map_mod_affecting_area"}},[3665]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1%% increased Attack Damage per 300 of the lowest of Armour and Evasion Rating"}}},stats={[1]="attack_damage_+1%_per_300_of_min_of_armour_or_evasion"}},[3666]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage while affected by Precision"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage while affected by Precision"}}},stats={[1]="attack_damage_+%_while_affected_by_precision"}},[3667]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage while Channelling"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage while Channelling"}}},stats={[1]="attack_damage_+%_while_channelling"}},[3668]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage while Leeching"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage while Leeching"}}},stats={[1]="attack_damage_+%_while_leeching"}},[3669]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage while you have Fortify"}}},stats={[1]="attack_damage_+%_while_you_have_fortify"}},[3670]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Channelling Skills deal %1%%% increased Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Channelling Skills deal %1%%% reduced Attack Damage"}}},stats={[1]="attack_damage_+%_with_channelling_skills"}},[3671]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits while Channelling"}}},stats={[1]="attack_dodge_%_while_channelling"}},[3672]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Attacks with this Weapon per 10 Strength"}}},stats={[1]="attack_minimum_added_fire_damage_per_10_strength",[2]="attack_maximum_added_fire_damage_per_10_strength"}},[3673]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Attacks with this Weapon deal %1% to %2% added Fire Damage to Bleeding Enemies"}}},stats={[1]="local_minimum_added_fire_damage_vs_bleeding_enemies",[2]="local_maximum_added_fire_damage_vs_bleeding_enemies"}},[3674]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Attacks with this Weapon per 10 Intelligence"}}},stats={[1]="attack_minimum_added_lightning_damage_per_10_int",[2]="attack_maximum_added_lightning_damage_per_10_int"}},[3675]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks if you've\ndealt a Critical Strike Recently"}}},stats={[1]="attack_minimum_added_physical_damage_if_have_crit_recently",[2]="attack_maximum_added_physical_damage_if_have_crit_recently"}},[3676]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks per Level"}}},stats={[1]="attack_minimum_added_physical_damage_per_level",[2]="attack_maximum_added_physical_damage_per_level"}},[3677]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Attacks with this Weapon deal %1% to %2% added Physical Damage to Ignited Enemies"}}},stats={[1]="local_minimum_added_physical_damage_vs_ignited_enemies",[2]="local_maximum_added_physical_damage_vs_ignited_enemies"}},[3678]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Attack Speed for each Map Item Modifier affecting the Area"}}},stats={[1]="attack_speed_+%_per_explicit_map_mod_affecting_area"}},[3679]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed per Blitz Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed per Blitz Charge"}}},stats={[1]="attack_speed_+%_final_per_blitz_charge"}},[3680]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you've Killed Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you've Killed Recently"}}},stats={[1]="attack_speed_+%_if_enemy_killed_recently"}},[3681]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you've been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you've been Hit Recently"}}},stats={[1]="attack_speed_+%_if_have_been_hit_recently"}},[3682]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you have Blocked Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you have Blocked Recently"}}},stats={[1]="attack_speed_+%_if_have_blocked_recently"}},[3683]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you've dealt a Critical Strike Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you've dealt a Critical Strike Recently"}}},stats={[1]="attack_speed_+%_if_have_crit_recently"}},[3684]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while a Rare or Unique Enemy is Nearby"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while a Rare or Unique Enemy is Nearby"}}},stats={[1]="attack_speed_+%_if_rare_or_unique_enemy_nearby"}},[3685]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Attack Speed per 25 Dexterity"}}},stats={[1]="attack_speed_+%_per_25_dex"}},[3686]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while affected by Precision"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while affected by Precision"}}},stats={[1]="attack_speed_+%_while_affected_by_precision"}},[3687]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Channelling Skills have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Channelling Skills have %1%%% reduced Attack Speed"}}},stats={[1]="attack_speed_+%_with_channelling_skills"}},[3688]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Attacks always inflict Bleeding while you have Cat's Stealth"}}},stats={[1]="attacks_bleed_on_hit_while_you_have_cat_stealth"}},[3689]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Attacks Cause Bleeding when Hitting Cursed Enemies"}}},stats={[1]="attacks_cause_bleeding_vs_cursed_enemies"}},[3690]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Attacks with this Weapon have %1%%% chance to inflict Bleeding against Ignited Enemies"}}},stats={[1]="local_chance_bleed_on_hit_%_vs_ignited_enemies"}},[3691]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Attacks have 25%% chance to inflict Bleeding when Hitting Cursed Enemies"}}},stats={[1]="attacks_chance_to_bleed_25%_vs_cursed_enemies"}},[3692]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to inflict Bleeding on Hit with Attacks against Taunted Enemies"}}},stats={[1]="attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies"}},[3693]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Blind Enemies on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=100,[2]="#"}},text="Blind Enemies on Hit with Attacks"}}},stats={[1]="attacks_chance_to_blind_on_hit_%"}},[3694]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Taunt Enemies on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]=100,[2]="#"}},text="Taunt Enemies on Hit with Attacks"}}},stats={[1]="attacks_chance_to_taunt_on_hit_%"}},[3695]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Impale Enemies on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Impale Enemies on Hit with Attacks"}}},stats={[1]="attacks_impale_on_hit_%_chance"}},[3696]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Intimidate Enemies for 4 seconds on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]=100,[2]="#"}},text="Intimidate Enemies for 4 seconds on Hit with Attacks"}}},stats={[1]="attacks_intimidate_on_hit_%"}},[3697]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]="#"}},text="Adds %1% to %2% Cold Damage to Attacks with this Weapon per 10 Dexterity"}}},stats={[1]="attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity",[2]="attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity"}},[3698]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Avian's Flight Duration"}}},stats={[1]="avians_flight_duration_ms_+"}},[3699]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Avian's Might Duration"}}},stats={[1]="avians_might_duration_ms_+"}},[3700]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to avoid Ailments from Critical Strikes"},[2]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=100,[2]="#"}},text="Avoid Ailments from Critical Strikes"}}},stats={[1]="avoid_ailments_%_from_crit"}},[3701]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Elemental Ailments while holding a Shield"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be affected by Elemental Ailments while holding a Shield"}}},stats={[1]="avoid_ailments_%_while_holding_shield"}},[3702]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Avoid Elemental Ailments per Summoned Golem"}}},stats={[1]="avoid_all_elemental_ailment_%_per_summoned_golem"}},[3703]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to avoid Projectiles that have Chained"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Avoid Projectiles that have Chained"}}},stats={[1]="avoid_chained_projectile_%_chance"}},[3704]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to avoid Corrupted Blood"}}},stats={[1]="avoid_corrupted_blood_%_chance"}},[3705]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention"},[2]={limit={[1]={[1]=100,[2]=100}},text="Avoid Elemental Damage from Hits during Soul Gain Prevention"}}},stats={[1]="avoid_elemental_damage_chance_%_during_soul_gain_prevention"}},[3706]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to Avoid Elemental Damage from Hits while Phasing"}}},stats={[1]="avoid_elemental_damage_while_phasing_%"}},[3707]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Frozen or Chilled if you have used a Fire Skill Recently"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Chilled or Frozen if you have used a Fire Skill Recently"}}},stats={[1]="avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently"}},[3708]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to avoid Maim"},[2]={limit={[1]={[1]=100,[2]="#"}},text="You cannot be Maimed"}}},stats={[1]="avoid_maim_%_chance"}},[3709]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Avoid Projectiles while Phasing"}}},stats={[1]="avoid_projectiles_while_phasing_%_chance"}},[3710]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Shocked while Chilled"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Shocked while Chilled"}}},stats={[1]="avoid_shock_%_while_chilled"}},[3711]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="35%% chance to avoid being Stunned for each Herald Skill affecting you"}}},stats={[1]="avoid_stun_35%_per_active_herald"}},[3712]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Stunned while Channelling"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Stunned while Channelling"}}},stats={[1]="avoid_stun_%_while_channelling"}},[3713]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Stunned while holding a Shield"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Stunned while holding a Shield"}}},stats={[1]="avoid_stun_%_while_holding_shield"}},[3714]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Ball Lightning fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Ball Lightning fires %1% additional Projectiles"}}},stats={[1]="ball_lightning_number_of_additional_projectiles"}},[3715]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Banner Skills Reserve no Mana"}}},stats={[1]="banner_skills_reserve_no_mana"}},[3716]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments"}}},stats={[1]="base_ailment_damage_+%"}},[3717]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="All Damage from Hits will cause Elemental Ailments you are suffering"}}},stats={[1]="base_always_inflict_elemental_ailments_you_are_suffering_from"}},[3718]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Arrows Pierce all Targets"}}},stats={[1]="base_arrows_always_pierce"}},[3719]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to avoid Projectiles"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Avoid Projectiles"}}},stats={[1]="base_avoid_projectiles_%_chance"}},[3720]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bleeding Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bleeding Duration"}}},stats={[1]="base_bleed_duration_+%"}},[3721]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of the Buff granted by your Carrion Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of the Buff granted by your Carrion Golems"}}},stats={[1]="base_bone_golem_granted_buff_effect_+%"}},[3722]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot gain Endurance Charges"}}},stats={[1]="base_cannot_gain_endurance_charges"}},[3723]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Leech Energy Shield"}}},stats={[1]="cannot_leech_energy_shield"}},[3724]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="base_cooldown_speed_+%"}},[3725]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deal no Chaos Damage"}}},stats={[1]="base_deal_no_chaos_damage"}},[3726]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Chaos Damage Leeched as Energy Shield"}}},stats={[1]="base_energy_shield_leech_from_chaos_damage_permyriad"}},[3727]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Leeched as Energy Shield"}}},stats={[1]="base_energy_shield_leech_from_cold_damage_permyriad"}},[3728]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Elemental Damage Leeched as Energy Shield"}}},stats={[1]="base_energy_shield_leech_from_elemental_damage_permyriad"}},[3729]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage Leeched as Energy Shield"}}},stats={[1]="base_energy_shield_leech_from_fire_damage_permyriad"}},[3730]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Leeched as Energy Shield"}}},stats={[1]="base_energy_shield_leech_from_lightning_damage_permyriad"}},[3731]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Leeched as Energy Shield"}}},stats={[1]="base_energy_shield_leech_from_physical_damage_permyriad"}},[3732]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Ignite"}}},stats={[1]="base_immune_to_ignite"}},[3733]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Shock"}}},stats={[1]="base_immune_to_shock"}},[3734]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextColdExposure"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Cold Exposure on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextColdExposure"},limit={[1]={[1]=100,[2]="#"}},text="Inflict Cold Exposure on Hit"}}},stats={[1]="base_inflict_cold_exposure_on_hit_%_chance"}},[3735]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFireExposure"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Fire Exposure on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextFireExposure"},limit={[1]={[1]=100,[2]="#"}},text="Inflict Fire Exposure on Hit"}}},stats={[1]="base_inflict_fire_exposure_on_hit_%_chance"}},[3736]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLightningExposure"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Lightning Exposure on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextLightningExposure"},limit={[1]={[1]=100,[2]="#"}},text="Inflict Lightning Exposure on Hit"}}},stats={[1]="base_inflict_lightning_exposure_on_hit_%_chance"}},[3737]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Life Leech effects Recover Energy Shield instead"}}},stats={[1]="base_life_leech_applies_recovery_to_energy_shield"}},[3738]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Duration"}}},stats={[1]="base_minion_duration_+%"}},[3739]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Sentinels of Purity"}}},stats={[1]="base_number_of_champions_of_light_allowed"}},[3740]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Agony Crawler"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Agony Crawlers"}}},stats={[1]="base_number_of_herald_scorpions_allowed"}},[3741]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Summoned Holy Relics"}}},stats={[1]="base_number_of_relics_allowed"}},[3742]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You can have an additional Brand Attached to an Enemy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You can have %1% additional Brands Attached to an Enemy"}}},stats={[1]="base_number_of_sigils_allowed_per_target"}},[3743]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage taken over time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage taken over time"}}},stats={[1]="base_physical_damage_over_time_taken_+%"}},[3744]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage Converted to Cold Damage while affected by Hatred"}}},stats={[1]="base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred"}},[3745]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage Converted to Fire Damage while affected by Anger"}}},stats={[1]="base_physical_damage_%_to_convert_to_fire_while_affected_by_anger"}},[3746]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage Converted to Lightning Damage while affected by Wrath"}}},stats={[1]="base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath"}},[3747]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You can Cast an additional Brand"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You can Cast %1% additional Brands"}}},stats={[1]="base_total_number_of_sigils_allowed"}},[3748]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Poison"}}},stats={[1]="base_unaffected_by_poison"}},[3749]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies affected by Bear Trap take %1%%% increased Damage from Trap or Mine Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies affected by Bear Trap take %1%%% reduced Damage from Trap or Mine Hits"}}},stats={[1]="bear_trap_additional_damage_taken_+%_from_traps_and_mines"}},[3750]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies affected by Bear Trap take %1%%% increased Damage from Trap or Mine Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies affected by Bear Trap take %1%%% reduced Damage from Trap or Mine Hits"}}},stats={[1]="bear_trap_damage_taken_+%_from_traps_and_mines"}},[3751]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Movement Speed"}}},stats={[1]="bear_trap_movement_speed_+%_final"}},[3752]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Berserk has %1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Berserk has %1%%% reduced Buff Effect"}}},stats={[1]="berserk_buff_effect_+%"}},[3753]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Berserk has %1%%% increased Rage loss per second"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Berserk has %1%%% reduced Rage loss per second"}}},stats={[1]="berserk_rage_loss_+%"}},[3754]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]="#",[2]="#"}},text="Gain 1 Rage on Hit with Attacks, no more than once every %1% seconds"}}},stats={[1]="berserker_gain_rage_on_attack_hit_cooldown_ms"}},[3755]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="If you've Warcried Recently, you and nearby allies\nhave %1%%% increased Attack Speed"}}},stats={[1]="berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies"}},[3756]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="If you've Warcried Recently, you and nearby allies deal %1%%% increased Damage"}}},stats={[1]="berserker_warcry_grant_damage_+%_to_you_and_nearby_allies"}},[3757]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blade Vortex has %1$+d%% to Critical Strike Multiplier for each blade"}}},stats={[1]="blade_vortex_critical_strike_multiplier_+_per_blade"}},[3758]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Bladefall has an additional Volley"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Bladefall has %1% additional Volleys"}}},stats={[1]="bladefall_number_of_volleys"}},[3759]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Bladestorm deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Bladestorm deals %1%%% reduced Damage"}}},stats={[1]="bladestorm_damage_+%"}},[3760]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Bladestorms"}}},stats={[1]="bladestorm_maximum_number_of_storms_allowed"}},[3761]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Sand Bladestorms move with %1%%% increased speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Sand Bladestorms move with %1%%% reduced speed"}}},stats={[1]="bladestorm_sandstorm_movement_speed_+%"}},[3762]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Bleeding per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Bleeding per Endurance Charge"}}},stats={[1]="bleed_damage_+%_per_endurance_charge"}},[3763]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Bleeding inflicted on Poisoned Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Bleeding inflicted on Poisoned Enemies"}}},stats={[1]="bleeding_damage_+%_vs_poisoned_enemies"}},[3764]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Bleeding you inflict is Reflected to you"}}},stats={[1]="bleeding_reflected_to_self"}},[3765]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can inflict Bleeding on an Enemy up to %1% times\nYour Bleeding does not deal extra Damage while the Enemy is moving"}}},stats={[1]="bleeding_stacks_up_to_x_times"}},[3766]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Arc Towers have %1% additional chains"}}},stats={[1]="blight_arc_tower_additional_chains"}},[3767]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Arc Towers repeats %1% additional Times"}}},stats={[1]="blight_arc_tower_additional_repeats"}},[3768]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Arc Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Arc Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_arc_tower_damage_+%"}},[3769]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Arc Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Arc Towers have %1%%% reduced Range"}}},stats={[1]="blight_arc_tower_range_+%"}},[3770]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]=1,[2]="#"}},text="Your Chilling Towers have %1%%% increased effect of Chill"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Chilling Towers have %1%%% reduced effect of Chill"}}},stats={[1]="blight_chilling_tower_chill_effect_+%"}},[3771]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Chilling Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Chilling Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_chilling_tower_damage_+%"}},[3772]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]=1,[2]="#"}},text="Your Chilling Towers have %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Chilling Towers have %1%%% reduced Duration"}}},stats={[1]="blight_chilling_tower_duration_+%"}},[3773]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]=1,[2]="#"}},text="Your Chilling Towers freeze enemies for %1% seconds while they are affected by chilling beams"}}},stats={[1]="blight_chilling_tower_freeze_for_ms"}},[3774]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Chilling Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Chilling Towers have %1%%% reduced Range"}}},stats={[1]="blight_chilling_tower_range_+%"}},[3775]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Empowering Towers have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Empowering Towers have %1%%% reduced Effect"}}},stats={[1]="blight_empowering_tower_buff_effect_+%"}},[3776]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Empowering Towers also grant %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Empowering Towers also grant %1%%% reduced Cast Speed"}}},stats={[1]="blight_empowering_tower_grant_cast_speed_+%"}},[3777]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Empowering Towers also grant %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Empowering Towers also grant %1%%% reduced Damage"}}},stats={[1]="blight_empowering_tower_grant_damage_+%"}},[3778]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="All Towers in range of your Empowering Towers have %1%%% chance to deal Double Damage"},[2]={limit={[1]={[1]=100,[2]="#"}},text="All Towers in range of your Empowering Towers deal Double Damage"}}},stats={[1]="blight_empowering_tower_grant_%_chance_to_deal_double_damage"}},[3779]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Empowering Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Empowering Towers have %1%%% reduced Range"}}},stats={[1]="blight_empowering_tower_range_+%"}},[3780]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Your Fireball Towers fire an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Your Fireball Towers fire an additional %1% Projectiles"}}},stats={[1]="blight_fireball_tower_additional_projectiles_+"}},[3781]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Fireball Towers have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Fireball Towers have %1%%% reduced Cast Speed"}}},stats={[1]="blight_fireball_tower_cast_speed_+%"}},[3782]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Fireball Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Fireball Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_fireball_tower_damage_+%"}},[3783]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Fireball Towers Projectiles fire in a circle"}}},stats={[1]="blight_fireball_tower_projectiles_nova"}},[3784]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Fireball Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Fireball Towers have %1%%% reduced Range"}}},stats={[1]="blight_fireball_tower_range_+%"}},[3785]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Flamethrower Towers have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Flamethrower Towers have %1%%% reduced Cast Speed"}}},stats={[1]="blight_flamethrower_tower_cast_speed_+%"}},[3786]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Flamethrower Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Flamethrower Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_flamethrower_tower_damage_+%"}},[3787]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Flamethrower Towers deal full damage to Fire Enemies"}}},stats={[1]="blight_flamethrower_tower_full_damage_fire_enemies"}},[3788]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Flamethrower Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Flamethrower Towers have %1%%% reduced Range"}}},stats={[1]="blight_flamethrower_tower_range_+%"}},[3789]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Freezebolt Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Freezebolt Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_freezebolt_tower_damage_+%"}},[3790]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Freezebolt Tower deal full damage to Cold Enemies"}}},stats={[1]="blight_freezebolt_tower_full_damage_cold_enemies"}},[3791]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Your Freezebolt Towers fire an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Your Freezebolt Towers fire %1% additional Projectiles"}}},stats={[1]="blight_freezebolt_tower_projectiles_+"}},[3792]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Freezebolt Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Freezebolt Towers have %1%%% reduced Range"}}},stats={[1]="blight_freezebolt_tower_range_+%"}},[3793]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Glacial Cage Towers have %1%%% increased Cooldown Recovery"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Glacial Cage Towers have %1%%% reduced Cooldown Recovery"}}},stats={[1]="blight_glacialcage_tower_cooldown_recovery_+%"}},[3794]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Glacial Cage Towers have %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Glacial Cage Towers have %1%%% reduced Duration"}}},stats={[1]="blight_glacialcage_tower_duration_+%"}},[3795]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies inside Glacial Cage take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies inside Glacial Cage take %1%%% reduced Damage"}}},stats={[1]="blight_glacialcage_tower_enemy_damage_taken_+%"}},[3796]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Glacial Cage Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Glacial Cage Towers have %1%%% reduced Range"}}},stats={[1]="blight_glacialcage_tower_range_+%"}},[3797]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Hindered by Blight take %1%%% increased Chaos Damage"}}},stats={[1]="blight_hinder_enemy_chaos_damage_taken_+%"}},[3798]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Imbuing Towers have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Imbuing Towers have %1%%% reduced Effect"}}},stats={[1]="blight_imbuing_tower_buff_effect_+%"}},[3799]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Imbuing Towers also grant %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Imbuing Towers also grant %1%%% reduced Critical Strike Chance"}}},stats={[1]="blight_imbuing_tower_grant_critical_strike_+%"}},[3800]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Imbuing Towers also grant %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Imbuing Towers also grant %1%%% reduced Damage"}}},stats={[1]="blight_imbuing_tower_grant_damage_+%"}},[3801]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Imbuing Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Imbuing Towers have %1%%% reduced Range"}}},stats={[1]="blight_imbuing_tower_range_+%"}},[3802]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Lightning Storm Towers have %1%%% increased explosion Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Lightning Storm Towers have %1%%% reduced explosion Area of Effect"}}},stats={[1]="blight_lightningstorm_tower_area_of_effect_+%"}},[3803]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Lightning Storm Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Lightning Storm Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_lightningstorm_tower_damage_+%"}},[3804]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Lightning Storm Towers have %1%%% increased Impact Delay"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Lightning Storm Towers have %1%%% reduced Impact Delay"}}},stats={[1]="blight_lightningstorm_tower_delay_+%"}},[3805]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Lightning Storm Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Lightning Storm Towers have %1%%% reduced Range"}}},stats={[1]="blight_lightningstorm_tower_range_+%"}},[3806]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Your Meteor Towers drop an additional Meteor"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Your Meteor Towers drop %1% additional Meteors"}}},stats={[1]="blight_meteor_tower_additional_meteor_+"}},[3807]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Meteor Towers always Stun"}}},stats={[1]="blight_meteor_tower_always_stun"}},[3808]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Meteor Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Meteor Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_meteor_tower_damage_+%"}},[3809]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Meteor Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Meteor Towers have %1%%% reduced Range"}}},stats={[1]="blight_meteor_tower_range_+%"}},[3810]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Scout Towers have %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Scout Towers have %1%%% reduced Damage"}}},stats={[1]="blight_scout_tower_minion_damage_+%"}},[3811]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Scout Towers have %1%%% increased Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Scout Towers have %1%%% reduced Life"}}},stats={[1]="blight_scout_tower_minion_life_+%"}},[3812]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Scout Towers have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Scout Towers have %1%%% reduced Movement Speed"}}},stats={[1]="blight_scout_tower_minion_movement_speed_+%"}},[3813]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Scout Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Scout Towers have %1%%% reduced Range"}}},stats={[1]="blight_scout_tower_range_+%"}},[3814]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blight has %1%%% increased Hinder Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blight has %1%%% reduced Hinder Duration"}}},stats={[1]="blight_secondary_skill_effect_duration_+%"}},[3815]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Your Seismic Towers have an additional Cascade"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Your Seismic Towers have %1% additional Cascades"}}},stats={[1]="blight_seismic_tower_additional_cascades_+"}},[3816]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Seismic Towers have %1%%% increased length and range of Cascades"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Seismic Towers have %1%%% reduced length and range of Cascades"}}},stats={[1]="blight_seismic_tower_cascade_range_+%"}},[3817]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Seismic Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Seismic Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_seismic_tower_damage_+%"}},[3818]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Seismic Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Seismic Towers have %1%%% reduced Range"}}},stats={[1]="blight_seismic_tower_range_+%"}},[3819]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Seismic Towers have %1%%% increased Stun Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Seismic Towers have %1%%% reduced Stun Duration"}}},stats={[1]="blight_seismic_tower_stun_duration_+%"}},[3820]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Sentinel Towers have %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Sentinel Towers have %1%%% reduced Damage"}}},stats={[1]="blight_sentinel_tower_minion_damage_+%"}},[3821]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Sentinel Towers have %1%%% increased Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Sentinel Towers have %1%%% reduced Life"}}},stats={[1]="blight_sentinel_tower_minion_life_+%"}},[3822]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Sentinel Towers have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Sentinel Towers have %1%%% reduced Movement Speed"}}},stats={[1]="blight_sentinel_tower_minion_movement_speed_+%"}},[3823]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Sentinel Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Sentinel Towers have %1%%% reduced Range"}}},stats={[1]="blight_sentinel_tower_range_+%"}},[3824]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Shock Nova Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Shock Nova Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_shocking_tower_damage_+%"}},[3825]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Shock Nova Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Shock Nova Towers have %1%%% reduced Range"}}},stats={[1]="blight_shocking_tower_range_+%"}},[3826]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Shock Nova Towers deal full damage to Lightning Enemies"}}},stats={[1]="blight_shocknova_tower_full_damage_lightning_enemies"}},[3827]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Shock Nova Towers repeats %1% additional Times"}}},stats={[1]="blight_shocknova_tower_shock_additional_repeats"}},[3828]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Shock Nova Towers have %1%%% increased effect of Shock"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Shock Nova Towers have %1%%% reduced effect of Shock"}}},stats={[1]="blight_shocknova_tower_shock_effect_+%"}},[3829]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Shock Nova Towers have %1%%% increased area of effect per repeat"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Shock Nova Towers have %1%%% reduced area of effect per repeat"}}},stats={[1]="blight_shocknova_tower_shock_repeats_with_area_effect_+%"}},[3830]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blight has %1%%% increased Area of Effect after Channelling for 1 second"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blight has %1%%% reduced Area of Effect after Channelling for 1 second"}}},stats={[1]="blight_skill_area_of_effect_+%_after_1_second_channelling"}},[3831]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Smothering Towers have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Smothering Towers have %1%%% reduced Effect"}}},stats={[1]="blight_smothering_tower_buff_effect_+%"}},[3832]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Smothering Towers also grant %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Smothering Towers also grant %1%%% reduced Damage"}}},stats={[1]="blight_smothering_tower_grant_damage_+%"}},[3833]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Smothering Towers also grant %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Smothering Towers also grant %1%%% reduced Movement Speed"}}},stats={[1]="blight_smothering_tower_grant_movement_speed_+%"}},[3834]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Smothering Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Smothering Towers have %1%%% reduced Range"}}},stats={[1]="blight_smothering_tower_range_+%"}},[3835]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Stone Gaze Towers have %1%%% increased Cooldown Recovery"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Stone Gaze Towers have %1%%% reduced Cooldown Recovery"}}},stats={[1]="blight_stonegaze_tower_cooldown_recovery_+%"}},[3836]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Stone Gaze Towers have %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Stone Gaze Towers have %1%%% reduced Duration"}}},stats={[1]="blight_stonegaze_tower_duration_+%"}},[3837]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Stone Gaze Towers have %1%%% increased Petrification Delay"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Stone Gaze Towers have %1%%% reduced Petrification Delay"}}},stats={[1]="blight_stonegaze_tower_petrify_tick_speed_+%"}},[3838]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Stone Gaze Cage Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Stone Gaze Cage Towers have %1%%% reduced Range"}}},stats={[1]="blight_stonegaze_tower_range_+%"}},[3839]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Summoning Towers have %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Summoning Towers have %1%%% reduced Damage"}}},stats={[1]="blight_summoning_tower_minion_damage_+%"}},[3840]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Summoning Towers have %1%%% increased Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Summoning Towers have %1%%% increased Life"}}},stats={[1]="blight_summoning_tower_minion_life_+%"}},[3841]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Summoning Towers have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Summoning Towers have %1%%% reduced Movement Speed"}}},stats={[1]="blight_summoning_tower_minion_movement_speed_+%"}},[3842]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Summoning Towers summon %1% additional Minions"}}},stats={[1]="blight_summoning_tower_minions_summoned_+"}},[3843]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Summoning Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Summoning Towers have %1%%% reduced Range"}}},stats={[1]="blight_summoning_tower_range_+%"}},[3844]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Temporal Towers have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Temporal Towers have %1%%% reduced Effect"}}},stats={[1]="blight_temporal_tower_buff_effect_+%"}},[3845]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Temporal Towers also grant you %1%%% reduced action speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Temporal Towers also grant you %1%%% increased action speed"}}},stats={[1]="blight_temporal_tower_grant_you_action_speed_-%"}},[3846]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Temporal Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Temporal Towers have %1%%% reduced Range "}}},stats={[1]="blight_temporal_tower_range_+%"}},[3847]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Temporal Towers effects decay %1%%% faster"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Temporal Towers effects decay %1%%% slower"}}},stats={[1]="blight_temporal_tower_tick_speed_+%"}},[3848]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Blight inflicts Withered for %1% seconds"}}},stats={[1]="blight_tertiary_skill_effect_duration"}},[3849]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Arc Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Arc Towers dea %1%%% reduced Damage"}}},stats={[1]="blight_tower_arc_damage_+%"}},[3850]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Chilling Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Chilling Towers have %1%%% reduced Range"}}},stats={[1]="blight_tower_chilling_cost_+%"}},[3851]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Your Fireball Towers fire an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Your Fireball Towers fire %1% additional Projectiles"}}},stats={[1]="blight_tower_fireball_additional_projectile"}},[3852]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Blight Chests are Lucky"}}},stats={[1]="blighted_map_chest_reward_lucky_count"}},[3853]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Towers deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Towers deal %1%%% less Damage"}}},stats={[1]="blighted_map_tower_damage_+%_final"}},[3854]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=100,[2]=100}},text="Blind Chilled Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Blind Chilled Enemies on Hit"}}},stats={[1]="blind_chilled_enemies_on_hit_%"}},[3855]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Blind Enemies when they Hit you"}}},stats={[1]="blind_enemies_when_hit_%_chance"}},[3856]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Blind Enemies which Hit you while affected by Grace"},[2]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=100,[2]="#"}},text="Blind Enemies which Hit you while affected by Grace"}}},stats={[1]="blind_enemies_when_hit_while_affected_by_grace_%_chance"}},[3857]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blink Arrow and Mirror Arrow Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blink Arrow and Mirror Arrow Cooldown Recovery Speed"}}},stats={[1]="blink_and_mirror_arrow_cooldown_speed_+%"}},[3858]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while holding a Shield"}}},stats={[1]="block_chance_%_while_holding_shield"}},[3859]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage if you have Blocked Attack Damage Recently"}}},stats={[1]="block_%_if_blocked_an_attack_recently"}},[3860]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while affected by Determination"}}},stats={[1]="block_%_while_affected_by_determination"}},[3861]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to Block Spell Damage while holding a Shield"}}},stats={[1]="block_spells_chance_%_while_holding_shield"}},[3862]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flesh and Stone has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flesh and Stone has %1%%% reduced Mana Reservation"}}},stats={[1]="blood_sand_armour_mana_reservation_+%"}},[3863]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blood and Sand has %1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blood and Sand has %1%%% reduced Buff Effect"}}},stats={[1]="blood_sand_stance_buff_effect_+%"}},[3864]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Perforate has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Perforate has %1%%% reduced Area of Effect"}}},stats={[1]="blood_spears_area_of_effect_+%"}},[3865]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Perforate creates %1$+d Spike"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Perforate creates %1$+d Spikes"}}},stats={[1]="blood_spears_base_number_of_spears"}},[3866]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Perforate deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Perforate deals %1%%% reduced Damage"}}},stats={[1]="blood_spears_damage_+%"}},[3867]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage in Blood Stance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage in Blood Stance"}}},stats={[1]="blood_spears_damage_+%_final_in_blood_stance"}},[3868]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Carrion Golems deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Carrion Golems deal %1%%% reduced Damage"}}},stats={[1]="bone_golem_damage_+%"}},[3869]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Carrion Golems have %1$+d%% to all Elemental Resistances"}}},stats={[1]="bone_golem_elemental_resistances_%"}},[3870]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Unearth Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Unearth Cast Speed"}}},stats={[1]="bone_lance_cast_speed_+%"}},[3871]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Unearth Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Unearth Damage"}}},stats={[1]="bone_lance_damage_+%"}},[3872]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Buff Effect on Low Energy Shield"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Buff Effect on Low Energy Shield"}}},stats={[1]="buff_effect_+%_on_low_energy_shield"}},[3873]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Burning Arrow can inflict an additional Ignite on an Enemy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Burning Arrow can inflict %1% additional Ignites on an Enemy"}}},stats={[1]="burning_arrow_additional_ignite_stacks"}},[3874]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Burning Arrow cannot inflict its Burning Debuff"}}},stats={[1]="burning_arrow_cannot_inflict_additional_burning_debuff_with_ignite"}},[3875]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Burning Arrow has %1%%% increased Debuff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Burning Arrow has %1%%% reduced Debuff Effect"}}},stats={[1]="burning_arrow_debuff_effect_+%"}},[3876]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently"}}},stats={[1]="burning_damage_+%_per_non_shocked_enemy_shocked_recently"}},[3877]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="Cannot be Blinded while affected by Precision"}}},stats={[1]="cannot_be_blinded_while_affected_by_precision"}},[3878]={lang={English={[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"}},[3879]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Chilled or Frozen while moving"}}},stats={[1]="cannot_be_chilled_or_frozen_while_moving"}},[3880]={lang={English={[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"}},[3881]={lang={English={[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"}},[3882]={lang={English={[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"}},[3883]={lang={English={[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"}},[3884]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Corrupted Blood cannot be inflicted on you"}}},stats={[1]="cannot_be_inflicted_by_corrupted_blood"}},[3885]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Shocked or Ignited while moving"}}},stats={[1]="cannot_be_shocked_or_ignited_while_moving"}},[3886]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be Shocked while you have a Lightning Golem Summoned"}}},stats={[1]="cannot_be_shocked_while_lightning_golem_summoned"}},[3887]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Shocked if Intelligence is higher than Strength"}}},stats={[1]="cannot_be_shocked_with_int_higher_than_strength"}},[3888]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot be Stunned by Hits you Block"}}},stats={[1]="cannot_be_stunned_by_blocked_hits"}},[3889]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be Stunned if you've been Stunned or Blocked a Stunning Hit in the past 2 seconds"}}},stats={[1]="cannot_be_stunned_if_have_been_stunned_or_blocked_stunning_hit_in_past_2_seconds"}},[3890]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned if you haven't been Hit Recently"}}},stats={[1]="cannot_be_stunned_if_have_not_been_hit_recently"}},[3891]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You cannot be Stunned if you've been Stunned Recently"}}},stats={[1]="cannot_be_stunned_if_you_have_been_stunned_recently"}},[3892]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You cannot be Stunned if you've Blocked a Stunning Hit Recently"}}},stats={[1]="cannot_be_stunned_if_you_have_blocked_a_stun_recently"}},[3893]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned while you have Ghost Shrouds"}}},stats={[1]="cannot_be_stunned_if_you_have_ghost_dance"}},[3894]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned while you have Fortify"}}},stats={[1]="cannot_be_stunned_while_fortified"}},[3895]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Block Spells"}}},stats={[1]="cannot_block_spells"}},[3896]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Cast Spells"}}},stats={[1]="cannot_cast_spells"}},[3897]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Cannot Leech Energy Shield From you"}}},stats={[1]="cannot_have_energy_shield_leeched_from"}},[3898]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot Recharge Energy Shield"}}},stats={[1]="cannot_recharge_energy_shield"}},[3899]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot Regenerate Energy Shield"}}},stats={[1]="cannot_regenerate_energy_shield"}},[3900]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot take Reflected Elemental Damage"}}},stats={[1]="cannot_take_reflected_elemental_damage"}},[3901]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot take Reflected Physical Damage"}}},stats={[1]="cannot_take_reflected_physical_damage"}},[3902]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Taunt Enemies"}}},stats={[1]="cannot_taunt_enemies"}},[3903]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed with Elemental Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed with Elemental Skills"}}},stats={[1]="cast_speed_for_elemental_skills_+%"}},[3904]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed during any Flask Effect"}}},stats={[1]="cast_speed_+%_during_flask_effect"}},[3905]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed if you've Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed if you've Killed Recently"}}},stats={[1]="cast_speed_+%_if_enemy_killed_recently"}},[3906]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed if you've dealt a Critical Strike Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed if you've dealt a Critical Strike Recently"}}},stats={[1]="cast_speed_+%_if_have_crit_recently"}},[3907]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed if a Minion has been Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed if a Minion has been Killed Recently"}}},stats={[1]="cast_speed_+%_if_player_minion_has_been_killed_recently"}},[3908]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed for each corpse Consumed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed for each corpse Consumed Recently"}}},stats={[1]="cast_speed_+%_per_corpse_consumed_recently"}},[3909]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed while affected by Zealotry"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Cast Speed while affected by Zealotry"}}},stats={[1]="cast_speed_+%_while_affected_by_zealotry"}},[3910]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Aspect of the Cat Reserves no Mana"}}},stats={[1]="cat_aspect_reserves_no_mana"}},[3911]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Cat's Stealth Duration"}}},stats={[1]="cats_stealth_duration_ms_+"}},[3912]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]="#"}},text="Caustic Arrow has a %1%%% chance on Hit to Poison Enemies on Caustic Ground"}}},stats={[1]="caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground"}},[3913]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Caustic Arrow deals %1%%% increased Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Caustic Arrow deals %1%%% reduced Damage over Time"}}},stats={[1]="caustic_arrow_damage_over_time_+%"}},[3914]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Caustic Arrow deals %1%%% increased Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Caustic Arrow deals %1%%% reduced Damage with Hits"}}},stats={[1]="caustic_arrow_hit_damage_+%"}},[3915]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chain Hook has +%1% Radius per 12 Rage"}}},stats={[1]="chain_strike_cone_radius_+_per_12_rage"}},[3916]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Cone has +1 Radius per %1% Rage"}}},stats={[1]="chain_strike_cone_radius_+_per_x_rage"}},[3917]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chain Hook deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Chain Hook deals %1%%% reduced Damage"}}},stats={[1]="chain_strike_damage_+%"}},[3918]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]="#",[2]="#"}},text="Chain Hook has a %1%%% chance to grant +1 Rage if it Hits Enemies"}}},stats={[1]="chain_strike_gain_rage_on_hit_%_chance"}},[3919]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage if you were Damaged by a Hit Recently"}}},stats={[1]="chance_to_block_spells_%_if_damaged_by_a_hit_recently"}},[3920]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while affected by Discipline"}}},stats={[1]="chance_to_block_spells_%_while_affected_by_discipline"}},[3921]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% chance to deal Double Damage for 3 seconds when you cast a Spell, up to once every 9 seconds"}}},stats={[1]="chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds"}},[3922]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to deal Double Damage"}}},stats={[1]="chance_to_deal_double_damage_%"}},[3923]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to deal Double Damage if you've Warcried in the past 8 seconds"}}},stats={[1]="chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds"}},[3924]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to deal Double Damage per 4 Rage"}}},stats={[1]="chance_to_deal_double_damage_%_per_4_rage"}},[3925]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to deal Double Damage per 500 Strength"}}},stats={[1]="chance_to_deal_double_damage_%_per_500_strength"}},[3926]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to deal Double Damage while Focussed"},[2]={limit={[1]={[1]=100,[2]=100}},text="Deal Double Damage while Focussed"}}},stats={[1]="chance_to_deal_double_damage_%_while_focused"}},[3927]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits while at maximum Blade Flurry stages"}}},stats={[1]="chance_to_dodge_%_at_max_charged_attack_stacks"}},[3928]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack and Spell Hits while you have Energy Shield"}}},stats={[1]="chance_to_dodge_attacks_and_spells_%_while_you_have_energy_shield"}},[3929]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits per Endurance Charge"}}},stats={[1]="chance_to_dodge_attacks_%_per_endurance_charge"}},[3930]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits per Power Charge"}}},stats={[1]="chance_to_dodge_attacks_%_per_power_charge"}},[3931]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits while affected by Grace"}}},stats={[1]="chance_to_dodge_attacks_%_while_affected_by_grace"}},[3932]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Attack Hits while your Off Hand is empty"}}},stats={[1]="chance_to_dodge_attacks_%_while_off_hand_is_empty"}},[3933]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Spell Hits while affected by Haste"}}},stats={[1]="chance_to_dodge_spells_%_while_affected_by_haste"}},[3934]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance when Hit for double Armour effect"}}},stats={[1]="chance_to_double_armour_effect_on_hit_%"}},[3935]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% chance to Evade Attacks"}}},stats={[1]="chance_to_evade_attacks_%"}},[3936]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to Evade Attacks while affected by Grace"}}},stats={[1]="chance_to_evade_attacks_%_while_affected_by_grace"}},[3937]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chance to Evade while you have Energy Shield"}}},stats={[1]="chance_to_evade_%_while_you_have_energy_shield"}},[3938]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain Fortify when you Stun an Enemy with Melee Damage"}}},stats={[1]="chance_to_fortify_on_melee_stun_%"}},[3939]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain an Endurance Charge when you Hit a Bleeding Enemy"}}},stats={[1]="chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy"}},[3940]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain an Endurance Charge when you Stun an Enemy"}}},stats={[1]="chance_to_gain_endurance_charge_when_you_stun_enemy_%"}},[3941]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain an Endurance Charge when you Taunt an Enemy"}}},stats={[1]="chance_to_gain_endurance_charge_when_you_taunt_enemy_%"}},[3942]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Frenzy Charge when you Block Attack Damage"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Frenzy Charge when you Block Attack Damage"}}},stats={[1]="chance_to_gain_frenzy_charge_on_block_attack_%"}},[3943]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Frenzy Charge when you Block"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Frenzy Charge when you Block"}}},stats={[1]="chance_to_gain_frenzy_charge_on_block_%"}},[3944]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when you Stun an Enemy"}}},stats={[1]="chance_to_gain_frenzy_charge_on_stun_%"}},[3945]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain Onslaught when you use a Flask"}}},stats={[1]="chance_to_gain_onslaught_on_flask_use_%"}},[3946]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain Onslaught for 10 Seconds when you Hit a Rare\nor Unique Enemy"}}},stats={[1]="chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy"}},[3947]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Onslaught for 10 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]="#"}},text="Gain Onslaught for 10 seconds on Kill"}}},stats={[1]="chance_to_gain_onslaught_on_kill_for_10_seconds_%"}},[3948]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web"}}},stats={[1]="chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%"}},[3949]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge when you Hit a Rare or Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge when you Hit a Rare or Unique Enemy"}}},stats={[1]="chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"}},[3950]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power, Frenzy or Endurance Charge on Hit"}}},stats={[1]="chance_to_gain_random_standard_charge_on_hit_%"}},[3951]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Unholy Might for 10 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=100,[2]="#"}},text="Gain Unholy Might for 10 seconds on Kill"}}},stats={[1]="chance_to_gain_unholy_might_on_kill_for_10_seconds_%"}},[3952]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more chance to Hit while Blinded"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less chance to Hit while Blinded"}}},stats={[1]="chance_to_hit_while_blinded_+%_final"}},[3953]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Curses to apply to Hexproof Enemies"}}},stats={[1]="chance_to_ignore_hexproof_%"}},[3954]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Intimidate Enemies for 4 seconds on Hit"}}},stats={[1]="chance_to_intimidate_on_hit_%"}},[3955]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Poison per Power Charge"}}},stats={[1]="chance_to_poison_on_hit_%_per_power_charge"}},[3956]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Shock Chilled Enemies"}}},stats={[1]="chance_to_shock_chilled_enemies_%"}},[3957]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnnerve"},limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to Unnerve Enemies for 4 seconds on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextUnnerve"},limit={[1]={[1]=100,[2]="#"}},text="Unnerve Enemies for 4 seconds on Hit"}}},stats={[1]="chance_to_unnerve_on_hit_%"}},[3958]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Channelling Skills deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Channelling Skills deal %1%%% reduced Damage"}}},stats={[1]="channelled_skill_damage_+%"}},[3959]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Channelling Skills deal %1%%% increased Damage per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Channelling Skills deal %1%%% reduced Damage per 10 Devotion"}}},stats={[1]="channelled_skill_damage_+%_per_10_devotion"}},[3960]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana"}}},stats={[1]="chaos_damage_does_not_bypass_energy_shield_while_not_low_life_or_mana"}},[3961]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% Chaos Resistance against Damage Over Time"}}},stats={[1]="additional_chaos_resistance_against_damage_over_time_%"}},[3962]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% of Chaos Damage is taken from Mana before Life"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Chaos Damage is taken from Mana before Life"}}},stats={[1]="chaos_damage_%_taken_from_mana_before_life"}},[3963]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage while affected by Herald of Agony"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage while affected by Herald of Agony"}}},stats={[1]="chaos_damage_+%_while_affected_by_herald_of_agony"}},[3964]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Resistance per Endurance Charge"}}},stats={[1]="chaos_damage_resistance_%_per_endurance_charge"}},[3965]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chaos Resistance is doubled"}}},stats={[1]="chaos_damage_resistance_is_doubled"}},[3966]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Resistance per Poison on you"}}},stats={[1]="chaos_damage_resistance_%_per_poison_stack"}},[3967]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Resistance while affected by Herald of Agony"}}},stats={[1]="chaos_damage_resistance_%_while_affected_by_herald_of_agony"}},[3968]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Resistance while affected by Purity of Elements"}}},stats={[1]="chaos_damage_resistance_%_while_affected_by_purity_of_elements"}},[3969]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage over Time taken while on Caustic Ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage over Time taken while on Caustic Ground"}}},stats={[1]="chaos_damage_taken_over_time_+%_while_in_caustic_cloud"}},[3970]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage with Attack Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage with Attack Skills"}}},stats={[1]="chaos_damage_with_attack_skills_+%"}},[3971]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage with Spell Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage with Spell Skills"}}},stats={[1]="chaos_damage_with_spell_skills_+%"}},[3972]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Chaos Skill Gems"}}},stats={[1]="chaos_skill_gem_level_+"}},[3973]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chaos Skills have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Chaos Skills have %1%%% reduced Area of Effect"}}},stats={[1]="chaos_skills_area_of_effect_+%"}},[3974]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits if you have finished Channelling Charged Dash Recently"}}},stats={[1]="charged_dash_chance_to_dodge_%_if_finished_channelling_recently"}},[3975]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Charged Dash has %1%%% more Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Charged Dash has %1%%% less Movement Speed"}}},stats={[1]="charged_dash_movement_speed_+%_final"}},[3976]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains additional Divination Cards that give Corrupted Items"}}},stats={[1]="chest_drop_additional_corrupted_item_divination_cards"}},[3977]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains additional Divination Cards that give Currency"}}},stats={[1]="chest_drop_additional_currency_item_divination_cards"}},[3978]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains additional Divination Cards from the current Area"}}},stats={[1]="chest_drop_additional_divination_cards_from_current_world_area"}},[3979]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains additional Divination Cards from the same set"}}},stats={[1]="chest_drop_additional_divination_cards_from_same_set"}},[3980]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains additional Divination Cards that give Unique Items"}}},stats={[1]="chest_drop_additional_unique_item_divination_cards"}},[3981]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains an additional Pirate Unique item"}}},stats={[1]="chest_number_of_additional_pirate_uniques_to_drop"}},[3982]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chill and Freeze Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chill and Freeze Duration on Enemies"}}},stats={[1]="chill_and_freeze_duration_+%"}},[3983]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Chill Attackers for 4 seconds on Block"}}},stats={[1]="chill_attackers_for_4_seconds_on_block_%_chance"}},[3984]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="The Effect of Chill on you is reversed"}}},stats={[1]="chill_effect_is_reversed"}},[3985]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Chill"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Chill"}}},stats={[1]="chill_effect_+%"}},[3986]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chills from your Hits always reduce Action Speed by at least %1%%%"}}},stats={[1]="chill_minimum_slow_%"}},[3987]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHitNoMagnitude"},limit={[1]={[1]="#",[2]="#"}},text="Chill nearby Enemies when you Focus, causing 30%% reduced Action Speed"}}},stats={[1]="chill_nearby_enemies_when_you_focus"}},[3988]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Chilled Ground"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Chilled Ground"}}},stats={[1]="chilled_ground_effect_+%"}},[3989]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to create Chilled Ground when Hit with an Attack"},[2]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]=100,[2]=100}},text="Create Shocked Ground when Hit with an Attack"}}},stats={[1]="chilled_ground_when_hit_with_attack_%"}},[3990]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHit"},limit={[1]={[1]="#",[2]="#"}},text="You are Chilled while you are Bleeding"}}},stats={[1]="chilled_while_bleeding"}},[3991]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHit"},limit={[1]={[1]="#",[2]="#"}},text="You are Chilled when you are Poisoned"}}},stats={[1]="chilled_while_poisoned"}},[3992]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Clarity Reserves no Mana"}}},stats={[1]="clarity_reserves_no_mana"}},[3993]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]="#"}},text="Cleave grants Fortify on Hit"}}},stats={[1]="cleave_fortify_on_hit"}},[3994]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cleave has +1 to Radius per Nearby Enemy, up to +10"}}},stats={[1]="cleave_+1_base_radius_per_nearby_enemy_up_to_10"}},[3995]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cobra Lash deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cobra Lash deals %1%%% reduced Damage"}}},stats={[1]="cobra_lash_damage_+%"}},[3996]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Cobra Lash Chains an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Cobra Lash Chains %1% additional times"}}},stats={[1]="cobra_lash_number_of_additional_chains"}},[3997]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cobra Lash has %1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cobra Lash has %1%%% reduced Projectile Speed"}}},stats={[1]="cobra_lash_projectile_speed_+%"}},[3998]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold and Chaos Resistances"}}},stats={[1]="cold_and_chaos_damage_resistance_%"}},[3999]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Cold Damage per 1%% Cold Resistance above 75%%"}}},stats={[1]="cold_damage_+%_per_cold_resistance_above_75"}},[4000]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Cold Damage as Extra Chaos Damage per Frenzy Charge"}}},stats={[1]="cold_damage_%_to_add_as_chaos_per_frenzy_charge"}},[4001]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage if you have used a Fire Skill Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage if you have used a Fire Skill Recently"}}},stats={[1]="cold_damage_+%_if_you_have_used_a_fire_skill_recently"}},[4002]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage per Frenzy Charge"}}},stats={[1]="cold_damage_+%_per_frenzy_charge"}},[4003]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage while affected by Hatred"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage while affected by Hatred"}}},stats={[1]="cold_damage_+%_while_affected_by_hatred"}},[4004]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage while affected by Herald of Ice"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage while affected by Herald of Ice"}}},stats={[1]="cold_damage_+%_while_affected_by_herald_of_ice"}},[4005]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage while your Off Hand is empty"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage while your Off Hand is empty"}}},stats={[1]="cold_damage_+%_while_off_hand_is_empty"}},[4006]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold Resistance while affected by Herald of Ice"}}},stats={[1]="cold_damage_resistance_%_while_affected_by_herald_of_ice"}},[4007]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Cold Damage taken from Hits"}}},stats={[1]="cold_damage_taken_+"}},[4008]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage taken if you've\nbeen Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage taken if you've\nbeen Hit Recently"}}},stats={[1]="cold_damage_taken_+%_if_have_been_hit_recently"}},[4009]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Attack Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Attack Skills"}}},stats={[1]="cold_damage_with_attack_skills_+%"}},[4010]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Spell Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Spell Skills"}}},stats={[1]="cold_damage_with_spell_skills_+%"}},[4011]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Cold Resistance against Chilled Enemies"}}},stats={[1]="cold_penetration_%_vs_chilled_enemies"}},[4012]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Icicle Mine has %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="cold_projectile_mine_critical_multiplier_+"}},[4013]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Icicle Mine deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Icicle Mine deals %1%%% reduced Damage"}}},stats={[1]="cold_projectile_mine_damage_+%"}},[4014]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Icicle Mine Throwing Speed"},[2]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Icicle Mine Throwing Speed"}}},stats={[1]="cold_projectile_mine_throwing_speed_negated_+%"}},[4015]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Icicle Mine has %1%%% increased Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Icicle Mine has %1%%% reduced Throwing Speed"}}},stats={[1]="cold_projectile_mine_throwing_speed_+%"}},[4016]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Cold Damage taken while affected by Purity of Ice"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Cold Damage taken while affected by Purity of Ice"}}},stats={[1]="cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice"}},[4017]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Cold Skill Gems"}}},stats={[1]="cold_skill_gem_level_+"}},[4018]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Cold Skills have %1%%% chance to Poison on Hit"}}},stats={[1]="cold_skills_chance_to_poison_on_hit_%"}},[4019]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area\nCold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges"}}},stats={[1]="cold_snap_uses_and_gains_power_charges_instead_of_frenzy"}},[4020]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cold Spells have %1%%% of Physical Damage Converted to Cold Damage"}}},stats={[1]="cold_spell_physical_damage_%_to_convert_to_cold"}},[4021]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Consecrated Ground you create grants %1%%% Physical Damage Reduction to you and Allies"}}},stats={[1]="consecrated_ground_additional_physical_damage_reduction_%"}},[4022]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Consecrated Ground you create applies %1%%% increased Damage taken to Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Consecrated Ground you create applies %1%%% reduced Damage taken to Enemies"}}},stats={[1]="consecrated_ground_enemy_damage_taken_+%"}},[4023]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Consecrated Ground you create while affected by Zealotry causes enemies to take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="Consecrated Ground you create while affected by Zealotry causes enemies to take %1%%% reduced Damage"}}},stats={[1]="consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry"}},[4024]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Consecrated Ground you create grants Immunity to Curses to you and Allies"}}},stats={[1]="consecrated_ground_immune_to_curses"}},[4025]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Consecrated Ground you create grants Immunity to Elemental Ailments\nto you and Allies"}}},stats={[1]="consecrated_ground_immune_to_status_ailments"}},[4026]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextLingers"},limit={[1]={[1]="#",[2]="#"}},text="Effects of Consecrated Ground you create while affected by Zealotry Linger for %1% seconds"}}},stats={[1]="consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry"}},[4027]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=1,[2]="#"}},text="Create Consecrated Ground, lasting 6 seconds, when you Hit a Magic, Rare or Unique Enemy, up to once every 3 seconds"}}},stats={[1]="consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds"}},[4028]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]="#",[2]="#"}},text="You have Consecrated Ground around you while stationary"}}},stats={[1]="consecrated_ground_while_stationary_radius"}},[4029]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Consecrated Path has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Consecrated Path deals %1%%% reduced Area of Effect"}}},stats={[1]="consecrated_path_area_of_effect_+%"}},[4030]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Consecrated Path deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Consecrated Path deals %1%%% reduced Damage"}}},stats={[1]="consecrated_path_damage_+%"}},[4031]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Cremation can have up to %1% additional Geyser at a time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Cremation can have up to %1% additional Geysers at a time"}}},stats={[1]="corpse_erruption_base_maximum_number_of_geyers"}},[4032]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cremation Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cremation Cast Speed"}}},stats={[1]="corpse_eruption_cast_speed_+%"}},[4033]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cremation Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cremation Damage"}}},stats={[1]="corpse_eruption_damage_+%"}},[4034]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bodyswap Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bodyswap Cast Speed"}}},stats={[1]="corpse_warp_cast_speed_+%"}},[4035]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bodyswap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bodyswap Damage"}}},stats={[1]="corpse_warp_damage_+%"}},[4036]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Plague Bearer deals Damage based on an additional %1%%% of Plague Value"}}},stats={[1]="corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"}},[4037]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Plague Bearer Buff grants %1$+d%% to Poison Damage over Time Multiplier while Infecting"}}},stats={[1]="corrosive_shroud_poison_dot_multiplier_+_while_aura_active"}},[4038]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCounterAttack"},limit={[1]={[1]="#",[2]="#"}},text="Your Counterattacks deal Double Damage"}}},stats={[1]="counterattacks_deal_double_damage"}},[4039]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlightedSpore"},limit={[1]={[1]="#",[2]="#"}},text="Create a Blighted Spore when your Skills or Minions Kill a Rare Monster"}}},stats={[1]="create_blighted_spore_on_killing_rare_enemy"}},[4040]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds"}}},stats={[1]="create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"}},[4041]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to create Consecrated Ground when you Kill an Enemy, lasting 3 seconds"}}},stats={[1]="create_consecrated_ground_on_kill_%"}},[4042]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Shocked Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Shocked Enemies"}}},stats={[1]="critical_strike_chance_+%_vs_shocked_enemies"}},[4043]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Critical Strike Chance is increased by Lightning Resistance"}}},stats={[1]="critical_strike_chance_increased_by_lightning_resistance"}},[4044]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUncappedResist"},limit={[1]={[1]="#",[2]="#"}},text="Critical Strike Chance is increased by Uncapped Lightning Resistance"}}},stats={[1]="critical_strike_chance_increased_by_uncapped_lightning_resistance"}},[4045]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry"}}},stats={[1]="critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry"}},[4046]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance during any Flask Effect"}}},stats={[1]="critical_strike_chance_+%_during_any_flask_effect"}},[4047]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Spells if you've Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Spells if you've Killed Recently"}}},stats={[1]="critical_strike_chance_+%_for_spells_if_you_have_killed_recently"}},[4048]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance if you have Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance if you have Killed Recently"}}},stats={[1]="critical_strike_chance_+%_if_enemy_killed_recently"}},[4049]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance if you haven't dealt a Critical Strike Recently"}}},stats={[1]="critical_strike_chance_+%_if_have_not_crit_recently"}},[4050]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Blitz Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Blitz Charge"}}},stats={[1]="critical_strike_chance_+%_per_blitz_charge"}},[4051]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Endurance Charge"}}},stats={[1]="critical_strike_chance_+%_per_endurance_charge"}},[4052]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Frenzy Charge"}}},stats={[1]="critical_strike_chance_+%_per_frenzy_charge"}},[4053]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for each Mine Detonated\nRecently, up to 100%%"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for each Mine Detonated\nRecently, up to 100%%"}}},stats={[1]="critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%"}},[4054]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Inspiration Charge"}}},stats={[1]="critical_strike_chance_+%_per_righteous_charge"}},[4055]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance while affected by Wrath"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance while affected by Wrath"}}},stats={[1]="critical_strike_chance_+%_while_affected_by_wrath"}},[4056]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Spells while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Spells while Dual Wielding"}}},stats={[1]="spell_critical_strike_chance_+%_while_dual_wielding"}},[4057]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Spells while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Spells while holding a Shield"}}},stats={[1]="spell_critical_strike_chance_+%_while_holding_shield"}},[4058]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Spells while wielding a Staff"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Spells while wielding a Staff"}}},stats={[1]="spell_critical_strike_chance_+%_while_wielding_staff"}},[4059]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage from your Critical Strikes cannot be Reflected"}}},stats={[1]="critical_strike_damage_cannot_be_reflected"}},[4060]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently"}}},stats={[1]="critical_strike_multiplier_+_if_have_dealt_non_crit_recently"}},[4061]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Arrows that Pierce have %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="critical_strike_multiplier_for_arrows_that_pierce_+"}},[4062]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Critical Strike Multiplier is 300%%"}}},stats={[1]="critical_strike_multiplier_is_300"}},[4063]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Critical Strike Multiplier during any Flask Effect"}}},stats={[1]="critical_strike_multiplier_+_during_any_flask_effect"}},[4064]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for Spells if you haven't Killed Recently"}}},stats={[1]="critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently"}},[4065]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier if Dexterity is higher than Intelligence"}}},stats={[1]="critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"}},[4066]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier if you've Killed Recently"}}},stats={[1]="critical_strike_multiplier_+_if_enemy_killed_recently"}},[4067]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier if you've Shattered an Enemy Recently"}}},stats={[1]="critical_strike_multiplier_+_if_enemy_shattered_recently"}},[4068]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently"}}},stats={[1]="critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently"}},[4069]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby"}}},stats={[1]="critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby"}},[4070]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Critical Strike Multiplier if you have Blocked Recently"}}},stats={[1]="critical_strike_multiplier_+_if_you_have_blocked_recently"}},[4071]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for each Mine Detonated\nRecently, up to 40%%"}}},stats={[1]="critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40"}},[4072]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier while affected by Anger"}}},stats={[1]="critical_strike_multiplier_+_while_affected_by_anger"}},[4073]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier while affected by Precision"}}},stats={[1]="critical_strike_multiplier_+_while_affected_by_precision"}},[4074]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for Spells while Dual Wielding"}}},stats={[1]="spell_critical_strike_multiplier_+_while_dual_wielding"}},[4075]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for Spells while holding a Shield"}}},stats={[1]="spell_critical_strike_multiplier_+_while_holding_shield"}},[4076]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for Spells while wielding a Staff"}}},stats={[1]="spell_critical_strike_multiplier_+_while_wielding_staff"}},[4077]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Critical Strikes deal no Damage"}}},stats={[1]="critical_strikes_deal_no_damage"}},[4078]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Critical Strikes do not inherently apply non-Damaging Ailments"}}},stats={[1]="critical_strikes_do_not_always_apply_non_damaging_ailments"}},[4079]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Critical Strikes Penetrate %1%%% of Enemy Elemental Resistances while affected by Zealotry"}}},stats={[1]="critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry"}},[4080]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Culling Strike against Enemies Cursed with Poacher's Mark"}}},stats={[1]="culling_strike_on_enemies_affected_by_poachers_mark"}},[4081]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of your Curses if you've spent 200 total Mana Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of your Curses if you've spent 200 total Mana Recently"}}},stats={[1]="curse_effect_+%_if_200_mana_spent_recently"}},[4082]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Poacher's Mark on Hit, which can apply to Hexproof Enemies"}}},stats={[1]="curse_on_hit_level_poachers_mark_bypass_hexproof"}},[4083]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Curse Enemies with Vulnerability on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Curse Enemies with Vulnerability on Hit"}}},stats={[1]="curse_on_hit_%_vulnerability"}},[4084]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Curse Skills have %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Curse Skills have %1%%% reduced Skill Effect Duration"}}},stats={[1]="curse_skill_effect_duration_+%"}},[4085]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Curse non-Cursed Enemies with Enfeeble on Hit"}}},stats={[1]="curse_with_enfeeble_on_hit_%_against_uncursed_enemies"}},[4086]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Every 10 seconds for 4 seconds, Curses have no effect on you"}}},stats={[1]="curses_have_no_effect_on_you_for_4_seconds_every_10_seconds"}},[4087]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Non-Aura Curses you inflict are not removed from Dying Enemies"}}},stats={[1]="curses_you_inflict_remain_after_death"}},[4088]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage while there is at most one Rare or Unique Enemy nearby"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage while there is at most one Rare or Unique Enemy nearby"}}},stats={[1]="damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby"}},[4089]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Raised Zombie"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Raised Zombie"}}},stats={[1]="damage_+%_per_raised_zombie"}},[4090]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage Over Time with Attack Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage Over Time with Attack Skills"}}},stats={[1]="damage_over_time_+%_with_attack_skills"}},[4091]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage Over Time with Bow Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage Over Time with Bow Skills"}}},stats={[1]="damage_over_time_+%_with_bow_skills"}},[4092]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage penetrates %1%%% Cold Resistance while affected by Herald of Ice"}}},stats={[1]="damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice"}},[4093]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Elemental Resistance if you haven't Killed Recently"}}},stats={[1]="damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"}},[4094]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Elemental Resistances against Chilled Enemies"}}},stats={[1]="damage_penetrates_%_elemental_resistance_vs_chilled_enemies"}},[4095]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage penetrates %1%%% Fire Resistance while affected by Herald of Ash"}}},stats={[1]="damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash"}},[4096]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage penetrates %1%%% Lightning Resistance while affected by Herald of Thunder"}}},stats={[1]="damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder"}},[4097]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Damage for each Endurance Charge lost recently, up to 15%%"}}},stats={[1]="damage_+%_final_per_endurance_charge_lost_recently_up_to_15%"}},[4098]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage while you have at least one nearby Ally"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage while you have at least one nearby Ally"}}},stats={[1]="damage_+%_final_with_at_least_1_nearby_ally"}},[4099]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies affected by your Spider's Webs deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies affected by your Spider's Webs deal %1%%% reduced Damage"}}},stats={[1]="damage_+%_for_enemies_you_inflict_spiders_web_upon"}},[4100]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you've Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you've Killed Recently"}}},stats={[1]="damage_+%_if_enemy_killed_recently"}},[4101]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you've dealt a Critical Strike in the past 8 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you've dealt a Critical Strike in the past 8 seconds"}}},stats={[1]="damage_+%_if_have_crit_in_past_8_seconds"}},[4102]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while there is only one nearby Enemy"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while there is only one nearby Enemy"}}},stats={[1]="damage_+%_if_only_one_enemy_nearby"}},[4103]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you've Frozen an Enemy Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you've Frozen an Enemy Recently"}}},stats={[1]="damage_+%_if_you_have_frozen_enemy_recently"}},[4104]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you have Shocked an Enemy Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you have Shocked an Enemy Recently"}}},stats={[1]="damage_+%_if_you_have_shocked_recently"}},[4105]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per 10 Dexterity"}}},stats={[1]="damage_+%_per_10_dex"}},[4106]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per 15 Dexterity"}}},stats={[1]="damage_+%_per_15_dex"}},[4107]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per 15 Intelligence"}}},stats={[1]="damage_+%_per_15_int"}},[4108]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per 15 Strength"}}},stats={[1]="damage_+%_per_15_strength"}},[4109]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per 1%% Chance to Block Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per 1%% Chance to Block Attack Damage"}}},stats={[1]="damage_+%_per_1%_block_chance"}},[4110]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Increases and Reductions to Quantity of Items found also apply to Damage"}}},stats={[1]="damage_+%_per_1%_increased_item_found_quantity"}},[4111]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per 5 of your lowest Attribute"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per 5 of your lowest Attribute"}}},stats={[1]="damage_+%_per_5_of_your_lowest_attribute"}},[4112]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Summoned Golem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Summoned Golem"}}},stats={[1]="damage_+%_per_active_golem"}},[4113]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Frenzy, Power or Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Frenzy, Power or Endurance Charge"}}},stats={[1]="damage_+%_per_frenzy_power_or_endurance_charge"}},[4114]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Power Charge"}}},stats={[1]="damage_+%_per_power_charge"}},[4115]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage against Abyssal Monsters"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage against Abyssal Monsters"}}},stats={[1]="damage_+%_vs_abyssal_monsters"}},[4116]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Chilled Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Chilled Enemies"}}},stats={[1]="damage_+%_vs_chilled_enemies"}},[4117]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage against Taunted Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage against Taunted Enemies"}}},stats={[1]="damage_+%_vs_taunted_enemies"}},[4118]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while on Full Energy Shield"}}},stats={[1]="damage_+%_on_full_energy_shield"}},[4119]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage when on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage when on Full Life"}}},stats={[1]="damage_+%_when_on_full_life"}},[4120]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while you have a Summoned Golem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while you have a Summoned Golem"}}},stats={[1]="damage_+%_while_you_have_a_summoned_golem"}},[4121]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Non-Vaal Skills deal %1%%% increased Damage during Soul Gain Prevention"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Non-Vaal Skills deal %1%%% reduced Damage during Soul Gain Prevention"}}},stats={[1]="damage_+%_with_non_vaal_skills_during_soul_gain_prevention"}},[4122]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Shield Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Shield Skills"}}},stats={[1]="damage_+%_with_shield_skills"}},[4123]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Shield Skills per 2%% Chance to Block Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Shield Skills per 2%% Chance to Block Attack Damage"}}},stats={[1]="damage_+%_with_shield_skills_per_2%_attack_block"}},[4124]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage taken from Mana before Life while affected by Clarity"}}},stats={[1]="damage_removed_from_mana_before_life_%_while_affected_by_clarity"}},[4125]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage is taken from Mana before Life while Focussed"}}},stats={[1]="damage_removed_from_mana_before_life_%_while_focused"}},[4126]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMinionsOverMatter"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage from Hits is taken from your Spectres' Life before you"}}},stats={[1]="damage_removed_from_spectres_before_life_or_es_%"}},[4127]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage Taken for 4 seconds after Spending a total of 200 Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"}}},stats={[1]="damage_taken_+%_for_4_seconds_after_spending_200_mana"}},[4128]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken while there are at least two Rare or Unique Enemies nearby"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced 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"}},[4129]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken while Elusive"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken while Elusive"}}},stats={[1]="damage_taken_+%_while_affected_by_elusive"}},[4130]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage taken gained as Life over 4 seconds when Hit"}}},stats={[1]="damage_taken_goes_to_life_over_4_seconds_%"}},[4131]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage taken gained as Mana over 4 seconds when Hit while affected by Clarity"}}},stats={[1]="damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity"}},[4132]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken per 250 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken per 250 Dexterity"}}},stats={[1]="damage_taken_per_250_dexterity_+%"}},[4133]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken per 250 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken per 250 Intelligence"}}},stats={[1]="damage_taken_per_250_intelligence_+%"}},[4134]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken per 250 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken per 250 Strength"}}},stats={[1]="damage_taken_per_250_strength_+%"}},[4135]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken per Ghost Shroud"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken per Ghost Shroud"}}},stats={[1]="damage_taken_per_ghost_dance_stack_+%"}},[4136]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage Taken per Summoned Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage Taken per Summoned Totem"}}},stats={[1]="damage_taken_+%_final_per_totem"}},[4137]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken if you haven't been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken if you haven't been Hit Recently"}}},stats={[1]="damage_taken_+%_if_have_not_been_hit_recently"}},[4138]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken while Leeching"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken while Leeching"}}},stats={[1]="damage_taken_+%_while_leeching"}},[4139]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Bane has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Bane has %1%%% reduced Area of Effect"}}},stats={[1]="dark_ritual_area_of_effect_+%"}},[4140]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Bane deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Bane deals %1%%% reduced Damage"}}},stats={[1]="dark_ritual_damage_+%"}},[4141]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Curses applied by Bane"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Curses applied by Bane"}}},stats={[1]="dark_ritual_linked_curse_effect_+%"}},[4142]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Hits inflict Decay, dealing 500 Chaos Damage per second for 8 seconds"}}},stats={[1]="deal_1000_chaos_damage_per_second_for_10_seconds_on_hit"}},[4143]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Hits inflict Decay, dealing %1% Chaos Damage per second for 8 seconds"}}},stats={[1]="deal_chaos_damage_per_second_for_10_seconds_on_hit"}},[4144]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deal Double Damage to Enemies that are on Full Life"}}},stats={[1]="deal_double_damage_to_enemies_on_full_life"}},[4145]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deal no Elemental Damage"}}},stats={[1]="deal_no_elemental_damage"}},[4146]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deal no Non-Elemental Damage"}}},stats={[1]="deal_no_non_elemental_damage"}},[4147]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSlowTimeEffects"},limit={[1]={[1]=1,[2]="#"}},text="Debuffs on you expire %1%%% slower while affected by Haste"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Debuffs on you expire %1%%% faster while affected by Haste"}}},stats={[1]="debuff_time_passed_-%_while_affected_by_haste"}},[4148]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Debuffs on you expire %1%%% faster"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextSlowTimeEffects"},limit={[1]={[1]="#",[2]=-1}},text="Debuffs on you expire %1%%% slower"}}},stats={[1]="debuff_time_passed_+%"}},[4149]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]="#",[2]="#"}},text="Defences of Items attached to Animated Guardian also apply to Animated Weapons"}}},stats={[1]="defences_from_animated_guardians_items_apply_to_animated_weapon"}},[4150]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Malevolence has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Malevolence has %1%%% reduced Aura Effect"}}},stats={[1]="delirium_aura_effect_+%"}},[4151]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Malevolence has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Malevolence has %1%%% reduced Mana Reservation"}}},stats={[1]="delirium_mana_reservation_+%"}},[4152]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Malevolence Reserves no Mana"}}},stats={[1]="delirium_reserves_no_mana"}},[4153]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Despair Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Despair Curse Effect"}}},stats={[1]="despair_curse_effect_+%"}},[4154]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Despair Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Despair Duration"}}},stats={[1]="despair_duration_+%"}},[4155]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Determination Reserves no Mana"}}},stats={[1]="determination_reserves_no_mana"}},[4156]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dexterity if Strength is higher than Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dexterity if Strength is higher than Intelligence"}}},stats={[1]="dexterity_+%_if_strength_higher_than_intelligence"}},[4157]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Dexterity Skill Gems"}}},stats={[1]="dexterity_skill_gem_level_+"}},[4158]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage if Triggered"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage if Triggered"}}},stats={[1]="discharge_triggered_damage_+%_final"}},[4159]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Discipline Reserves no Mana"}}},stats={[1]="discipline_reserves_no_mana"}},[4160]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains waves of Monsters"}}},stats={[1]="display_cowards_trial_waves_of_monsters"}},[4161]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains additional waves of Undead Monsters"}}},stats={[1]="display_cowards_trial_waves_of_undead_monsters"}},[4162]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Only applies Curses from Skill Gems requiring Level %1% or lower"}}},stats={[1]="display_dark_ritual_curse_max_skill_level_requirement"}},[4163]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss is augmented by Player choices"}}},stats={[1]="display_map_augmentable_boss"}},[4164]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Lunaris fanatics"}}},stats={[1]="display_map_inhabited_by_lunaris_fanatics"}},[4165]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Solaris fanatics"}}},stats={[1]="display_map_inhabited_by_solaris_fanatics"}},[4166]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains Einhar"},[2]={limit={[1]={[1]=2,[2]=2}},text="Area contains Einhar"},[3]={limit={[1]={[1]=3,[2]=3}},text="Area contains Alva"},[4]={limit={[1]={[1]=4,[2]=4}},text="Area contains Alva"},[5]={limit={[1]={[1]=5,[2]=5}},text="Area contains Niko"},[6]={limit={[1]={[1]=6,[2]=6}},text="Area contains Jun"},[7]={limit={[1]={[1]=7,[2]=7}},text="Area contains Zana"}}},stats={[1]="display_map_mission_id"}},[4167]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains additional Divination Cards that give Shaper or Elder items"}}},stats={[1]="display_strongbox_drops_additional_shaper_or_elder_cards"}},[4168]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Divine Ire's beam has %1%%% increased width"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Divine Ire's beam has %1%%% reduced width"}}},stats={[1]="divine_tempest_beam_width_+%"}},[4169]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Divine Ire deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Divine Ire deals %1%%% reduced Damage"}}},stats={[1]="divine_tempest_damage_+%"}},[4170]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Divine Ire Damages an additional nearby Enemy when gaining Stages"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Divine Ire Damages %1% additional nearby Enemies when gaining Stages"}}},stats={[1]="divine_tempest_number_of_additional_nearby_enemies_to_zap"}},[4171]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack and Spell Hits per 500 Maximum Mana, up to 20%%"}}},stats={[1]="dodge_attacks_and_spell_chance_%_per_500_maximum_mana_up_to_20"}},[4172]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Dodge Attack and Spell Hits if you've\nbeen Hit Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=100,[2]="#"}},text="Dodge all Attack and Spell Hits if you've\nbeen Hit Recently"}}},stats={[1]="dodge_attacks_and_spells_%_chance_if_have_been_hit_recently"}},[4173]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to Dodge Attack Hits while Focussed"}}},stats={[1]="dodge_attacks_chance_%_during_focus"}},[4174]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits if you have Blocked Recently"}}},stats={[1]="dodge_attacks_chance_%_if_you_have_blocked_recently"}},[4175]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits while moving"}}},stats={[1]="dodge_attacks_chance_%_while_moving"}},[4176]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits while holding a Shield"}}},stats={[1]="dodge_chance_%_while_holding_shield"}},[4177]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Spell Hits while moving"}}},stats={[1]="dodge_spells_chance_%_while_moving"}},[4178]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier while affected by Malevolence"}}},stats={[1]="dot_multiplier_+_while_affected_by_malevolence"}},[4179]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Lacerate deals %1% to %2% added Physical Damage against Bleeding Enemies"}}},stats={[1]="double_slash_minimum_added_physical_damage_vs_bleeding_enemies",[2]="double_slash_maximum_added_physical_damage_vs_bleeding_enemies"}},[4180]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Double Strike has a %1%%% chance to deal Double Damage to Bleeding Enemies"}}},stats={[1]="double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies"}},[4181]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Dread Banner has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Dread Banner has %1%%% reduced Aura Effect"}}},stats={[1]="dread_banner_aura_effect_+%"}},[4182]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Dual Strike has a %1%%% chance to deal Double Damage with the Main-Hand Weapon"},[2]={limit={[1]={[1]=100,[2]=100}},text="Dual Strike deals Double Damage with the Main-Hand Weapon"}}},stats={[1]="dual_strike_main_hand_deals_double_damage_%"}},[4183]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Dual Strike deals Off-Hand Splash Damage to surrounding targets"}}},stats={[1]="dual_strike_melee_splash_with_off_hand_weapon"}},[4184]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Elemental Damage per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Elemental Damage per Inspiration Charge"}}},stats={[1]="elemental_damage_+%_final_per_righteous_charge"}},[4185]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage if you've Killed a Cursed Enemy Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage if you've Killed a Cursed Enemy Recently"}}},stats={[1]="elemental_damage_+%_if_cursed_enemy_killed_recently"}},[4186]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage if you've dealt a Critical Strike Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="elemental_damage_+%_if_have_crit_recently"}},[4187]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Elemental Damage if you've used a Warcry Recently"}}},stats={[1]="elemental_damage_+%_if_used_a_warcry_recently"}},[4188]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per 10 Devotion"}}},stats={[1]="elemental_damage_+%_per_10_devotion"}},[4189]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per 10 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per 10 Dexterity"}}},stats={[1]="elemental_damage_+%_per_10_dexterity"}},[4190]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per 12 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per 12 Intelligence"}}},stats={[1]="elemental_damage_+%_per_12_int"}},[4191]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per 12 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per 12 Strength"}}},stats={[1]="elemental_damage_+%_per_12_strength"}},[4192]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per Power charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per Power charge"}}},stats={[1]="elemental_damage_+%_per_power_charge"}},[4193]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per Sextant affecting the area"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per Sextant affecting the area"}}},stats={[1]="elemental_damage_+%_per_sextant_affecting_area"}},[4194]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage while in an area affected by a Sextant"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage while in an area affected by a Sextant"}}},stats={[1]="elemental_damage_+%_while_in_area_affected_by_sextant"}},[4195]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Elemental Damage taken per Raised Zombie"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Elemental Damage taken per Raised Zombie"}}},stats={[1]="elemental_damage_taken_+%_final_per_raised_zombie"}},[4196]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken from Hits per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken from Hits per Endurance Charge"}}},stats={[1]="elemental_damage_taken_from_hits_+%_per_endurance_charge"}},[4197]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken if you haven't\nbeen Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken if you haven't\nbeen Hit Recently"}}},stats={[1]="elemental_damage_taken_+%_if_not_hit_recently"}},[4198]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken while you have an Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken while you have an Endurance Charge"}}},stats={[1]="elemental_damage_taken_+%_if_you_have_an_endurance_charge"}},[4199]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken per Endurance Charge"}}},stats={[1]="elemental_damage_taken_+%_per_endurance_charge"}},[4200]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken while stationary"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken while stationary"}}},stats={[1]="elemental_damage_taken_+%_while_stationary"}},[4201]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Attack Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Attack Skills"}}},stats={[1]="elemental_damage_with_attack_skills_+%"}},[4202]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Attack Skills per Power Charge"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Attack Skills per Power Charge"}}},stats={[1]="elemental_damage_with_attack_skills_+%_per_power_charge"}},[4203]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Hit and Wild Strike cannot choose Cold"}}},stats={[1]="elemental_hit_cannot_roll_cold_damage"}},[4204]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Hit and Wild Strike cannot choose Fire"}}},stats={[1]="elemental_hit_cannot_roll_fire_damage"}},[4205]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Hit and Wild Strike cannot choose Lightning"}}},stats={[1]="elemental_hit_cannot_roll_lightning_damage"}},[4206]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Hit and Wild Strike deal 50%% less Cold Damage"}}},stats={[1]="elemental_hit_deals_50%_less_cold_damage"}},[4207]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Hit and Wild Strike deal 50%% less Fire Damage"}}},stats={[1]="elemental_hit_deals_50%_less_fire_damage"}},[4208]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Hit and Wild Strike deal 50%% less Lightning Damage"}}},stats={[1]="elemental_hit_deals_50%_less_lightning_damage"}},[4209]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% Elemental Resistances while you have a Power Charge"}}},stats={[1]="elemental_penetration_%_if_you_have_a_power_charge"}},[4210]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Elemental Damage taken while affected by Purity of Elements"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Elemental Damage taken while affected by Purity of Elements"}}},stats={[1]="elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements"}},[4211]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances per Minion, up to 30%%"}}},stats={[1]="elemental_resistance_%_per_minion_up_to_30%"}},[4212]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances per 10 Devotion"}}},stats={[1]="elemental_resistance_%_per_10_devotion"}},[4213]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% increased Area of Effect for 5 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Gain %1%%% reduced Area of Effect for 5 seconds"}}},stats={[1]="elementalist_area_of_effect_+%_for_5_seconds"}},[4214]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecutive"},limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% increased Elemental Damage for 5 seconds"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextConsecutive"},limit={[1]={[1]="#",[2]=-1}},text="Gain %1%%% reduced Elemental Damage for 5 seconds"}}},stats={[1]="elementalist_elemental_damage_+%_for_5_seconds"}},[4215]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Every 14 seconds:\nGain Chilling Conflux for 4 seconds\nGain Shocking Conflux for 4 seconds\nGain Igniting Conflux for 4 seconds\nGain Chilling, Shocking and Igniting Conflux for 2 seconds"}}},stats={[1]="elementalist_gain_shaper_of_desolation_every_10_seconds"}},[4216]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Ignite"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Ignite"}}},stats={[1]="elementalist_ignite_damage_+%_final"}},[4217]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elusive Effect"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elusive Effect"}}},stats={[1]="elusive_effect_+%"}},[4218]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate if you've cast a Spell Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate if you've cast a Spell Recently"}}},stats={[1]="enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently"}},[4219]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain an Endurance Charge on Kill while holding a Shield"}}},stats={[1]="endurance_charge_on_kill_percent_chance_while_holding_shield"}},[4220]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage per Endurance Charge"}}},stats={[1]="endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"}},[4221]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Killed Enemies Explode, dealing %1%%% of their Life as Physical Damage"}}},stats={[1]="enemies_explode_for_%_life_as_physical_damage"}},[4222]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies you hit are destroyed on Kill"}}},stats={[1]="enemies_explode_on_kill"}},[4223]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]="#",[2]="#"}},text="Lightning Damage from Enemies Hitting you is Lucky"}}},stats={[1]="enemies_extra_damage_rolls_with_lightning_damage"}},[4224]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFungalGround"},limit={[1]={[1]=1,[2]=99}},text="Enemies on Fungal Ground you Kill have %1%%% chance to Explode, dealing 5%% of their Life as Chaos Damage"},[2]={[1]={k="reminderstring",v="ReminderTextFungalGround"},limit={[1]={[1]=100,[2]="#"}},text="Enemies on Fungal Ground you Kill Explode, dealing 5%% of their Life as Chaos Damage"}}},stats={[1]="enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance"}},[4225]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSpawnCorpse"},[2]={k="reminderstring",v="ReminderTextRecently"},[3]={k="reminderstring",v="ReminderTextShockNonHitNoDuration"},[4]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]="#",[2]="#"}},text="Enemies near corpses you Spawned Recently are Chilled and Shocked"}}},stats={[1]="enemies_near_corpses_created_recently_are_shocked_and_chilled"}},[4226]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies near corpses affected by your Curses are Blinded\nEnemies Killed near corpses affected by your Curses explode, dealing\n%1%%% of their Life as Physical Damage"}}},stats={[1]="enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage"}},[4227]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Taunted by you cannot Evade Attacks"}}},stats={[1]="enemies_taunted_by_you_cannot_evade_attacks"}},[4228]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Enemies that have Hit you with an Attack Recently have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Enemies that have Hit you with an Attack Recently have %1%%% reduced Attack Speed"}}},stats={[1]="enemies_that_hit_you_with_attack_recently_attack_speed_+%"}},[4229]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Enemies have %1%%% increased Evasion if you have Hit them Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Enemies have %1%%% reduced Evasion if you have Hit them Recently"}}},stats={[1]="enemy_evasion_+%_if_you_have_hit_them_recently"}},[4230]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]=1,[2]="#"}},text="Damage from Enemies Hitting you is Lucky while you are on Full Life"},[2]={[1]={k="reminderstring",v="ReminderTextUnlucky"},limit={[1]={[1]="#",[2]=-1}},text="Damage from Enemies Hitting you is Unlucky while you are on Full Life"}}},stats={[1]="enemy_extra_damage_rolls_when_on_full_life"}},[4231]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% faster start of Energy Shield Recharge while affected by Discipline"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% slower start of Energy Shield Recharge while affected by Discipline"}}},stats={[1]="energy_shield_delay_-%_while_affected_by_discipline"}},[4232]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Energy Shield gained for each Enemy Hit while affected by Discipline"}}},stats={[1]="energy_shield_gain_per_target_hit_while_affected_by_discipline"}},[4233]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Energy Shield for each Enemy you Hit which is affected by a Spider's Web"}}},stats={[1]="energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web"}},[4234]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Lightning Damage is Leeched as Energy Shield while affected by Wrath"}}},stats={[1]="energy_shield_leech_from_lightning_damage_permyriad_while_affected_by_wrath"}},[4235]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="If a skill deals at least 25%% Fire Damage, it leeches %1%%% of damage dealt as Energy Shield"}}},stats={[1]="energy_shield_leech_if_hit_is_at_least_25_%_fire_damage_permyriad"}},[4236]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Energy Shield against Frozen Enemies"}}},stats={[1]="energy_shield_leech_permyriad_vs_frozen_enemies"}},[4237]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="You lose %1%%% of Energy Shield per second"}}},stats={[1]="energy_shield_lost_per_minute_%"}},[4238]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Maximum Energy Shield per Level"}}},stats={[1]="energy_shield_per_level"}},[4239]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Energy Shield per 10 Strength"}}},stats={[1]="energy_shield_+%_per_10_strength"}},[4240]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Energy Shield per Power Charge"}}},stats={[1]="energy_shield_+%_per_power_charge"}},[4241]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Energy Shield Recharge starts when you are Stunned"}}},stats={[1]="energy_shield_recharge_start_when_stunned"}},[4242]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Energy Shield Recharge to start when you use a Skill"}}},stats={[1]="energy_shield_recharges_on_skill_use_chance_%"}},[4243]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Recovery Rate while affected by Discipline"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Recovery Rate while affected by Discipline"}}},stats={[1]="energy_shield_recovery_rate_while_affected_by_discipline_+%"}},[4244]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Energy Shield per second while a Rare or Unique Enemy is Nearby"}}},stats={[1]="energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby"}},[4245]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Energy Shield per Second per Poison on you, up to 250 per second"}}},stats={[1]="energy_shield_regeneration_rate_per_minute_per_poison_stack"}},[4246]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield per second if you've Hit an Enemy Recently"}}},stats={[1]="energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently"}},[4247]={lang={English={[1]={[1]={k="per_minute_to_per_second_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield per Second while affected by Discipline"}}},stats={[1]="energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline"}},[4248]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Energy Shield per Second while on Consecrated Ground"}}},stats={[1]="energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground"}},[4249]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Energy Shield per second"}}},stats={[1]="energy_shield_regeneration_rate_per_second"}},[4250]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Regeneration rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Regeneration rate"}}},stats={[1]="energy_shield_regeneration_rate_+%"}},[4251]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ensnaring Arrow has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ensnaring Arrow has %1%%% reduced Area of Effect"}}},stats={[1]="ensnaring_arrow_area_of_effect_+%"}},[4252]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ensnaring Arrow has %1%%% increased Debuff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ensnaring Arrow has %1%%% reduced Debuff Effect"}}},stats={[1]="ensnaring_arrow_debuff_effect_+%"}},[4253]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Envy Reserves no Mana"}}},stats={[1]="envy_reserves_no_mana"}},[4254]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Ethereal Knives fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Ethereal Knives fires %1% additional Projectiles"}}},stats={[1]="ethereal_knives_number_of_additional_projectiles"}},[4255]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Ethereal Knives Pierces an additional Target "},[2]={limit={[1]={[1]=2,[2]="#"}},text="Ethereal Knives Pierces %1% additional Targets"}}},stats={[1]="ethereal_knives_projectile_base_number_of_targets_to_pierce"}},[4256]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ethereal Knives fires Projectiles in a circle"}}},stats={[1]="ethereal_knives_projectiles_nova"}},[4257]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Evasion Rating per 10 Intelligence"}}},stats={[1]="evasion_+%_per_10_intelligence"}},[4258]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUncappedResist"},limit={[1]={[1]="#",[2]="#"}},text="Evasion Rating is increased by Uncapped Cold Resistance"}}},stats={[1]="evasion_rating_increased_by_uncapped_cold_resistance"}},[4259]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Evasion Rating is Regenerated as Life per second while Focussed"}}},stats={[1]="evasion_rating_%_as_life_regeneration_per_minute_during_focus"}},[4260]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating if Hit an Enemy Recently"}}},stats={[1]="evasion_rating_+_if_you_have_hit_an_enemy_recently"}},[4261]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Evasion Rating while you have Tailwind"}}},stats={[1]="evasion_rating_+_while_you_have_tailwind"}},[4262]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion if you have Hit an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion if you have Hit an Enemy Recently"}}},stats={[1]="evasion_rating_+%_if_you_have_hit_an_enemy_recently"}},[4263]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Evasion Rating when on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Evasion Rating when on Full Life"}}},stats={[1]="evasion_rating_+%_when_on_full_life"}},[4264]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion while Leeching"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion while Leeching"}}},stats={[1]="evasion_rating_+%_while_leeching"}},[4265]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating while moving"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion Rating while moving"}}},stats={[1]="evasion_rating_+%_while_moving"}},[4266]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Incinerate has %1$+d to maximum stages"}}},stats={[1]="expanding_fire_cone_additional_maximum_number_of_stages"}},[4267]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Incinerate has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Incinerate has %1%%% reduced Area of Effect"}}},stats={[1]="expanding_fire_cone_area_of_effect_+%"}},[4268]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Explosive Arrow has %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Explosive Arrow has %1%%% reduced Duration"}}},stats={[1]="explosive_arrow_duration_+%"}},[4269]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]=1,[2]="#"}},text="Your Critical Strike Chance is Lucky while Focussed"},[2]={[1]={k="reminderstring",v="ReminderTextUnlucky"},limit={[1]={[1]="#",[2]=-1}},text="Your Critical Strike Chance is Unlucky while Focussed"}}},stats={[1]="extra_critical_rolls_during_focus"}},[4270]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% increased Extra Damage from Critical Strikes while affected by Determination"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You take %1%%% reduced Extra Damage from Critical Strikes while affected by Determination"}}},stats={[1]="extra_damage_taken_from_crit_+%_while_affected_by_determination"}},[4271]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% increased Extra Damage from Critical Strikes while you have no Power Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You take %1%%% reduced Extra Damage from Critical Strikes while you have no Power Charges"}}},stats={[1]="extra_damage_taken_from_crit_while_no_power_charges_+%"}},[4272]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDealsDamageFaster"},limit={[1]={[1]="#",[2]="#"}},text="Bleeding you inflict deals Damage %1%%% faster"}}},stats={[1]="faster_bleed_%"}},[4273]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},[2]={k="reminderstring",v="ReminderTextDealsDamageFaster"},limit={[1]={[1]="#",[2]="#"}},text="Poisons you inflict deal Damage %1%%% faster"}}},stats={[1]="faster_poison_%"}},[4274]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Fire and Chaos Resistances"}}},stats={[1]="fire_and_chaos_damage_resistance_%"}},[4275]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Scorching Ray Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Scorching Ray Cast Speed"}}},stats={[1]="fire_beam_cast_speed_+%"}},[4276]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Scorching Ray Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Scorching Ray Damage"}}},stats={[1]="fire_beam_damage_+%"}},[4277]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Scorching Ray debuff spreads to nearby Enemies on death"}}},stats={[1]="fire_beam_degen_spread_to_enemies_in_radius_on_kill"}},[4278]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Scorching Ray Debuff applies %1$+d%% Fire Resistance at max stages"}}},stats={[1]="fire_beam_enemy_fire_resistance_%_at_max_stacks"}},[4279]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Scorching Ray Debuff applies %1$+d%% Fire Resistance per stage"}}},stats={[1]="fire_beam_enemy_fire_resistance_%_per_stack"}},[4280]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Scorching Ray beam length"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Scorching Ray beam length"}}},stats={[1]="fire_beam_length_+%"}},[4281]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Fire Damage as Extra Chaos Damage per Endurance Charge"}}},stats={[1]="fire_damage_%_to_add_as_chaos_per_endurance_charge"}},[4282]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage if you have been Hit Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage if you have been Hit Recently"}}},stats={[1]="fire_damage_+%_if_you_have_been_hit_recently"}},[4283]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage if you have used a Cold Skill Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage if you have used a Cold Skill Recently"}}},stats={[1]="fire_damage_+%_if_you_have_used_a_cold_skill_recently"}},[4284]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage per 20 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage per 20 Strength"}}},stats={[1]="fire_damage_+%_per_20_strength"}},[4285]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage per Endurance Charge"}}},stats={[1]="fire_damage_+%_per_endurance_charge"}},[4286]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Hits and Ailments against Bleeding Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Hits and Ailments against Bleeding Enemies"}}},stats={[1]="fire_damage_+%_vs_bleeding_enemies"}},[4287]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage while affected by Anger"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage while affected by Anger"}}},stats={[1]="fire_damage_+%_while_affected_by_anger"}},[4288]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage while affected by Herald of Ash"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage while affected by Herald of Ash"}}},stats={[1]="fire_damage_+%_while_affected_by_herald_of_ash"}},[4289]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Fire Resistance while affected by Herald of Ash"}}},stats={[1]="fire_damage_resistance_%_while_affected_by_herald_of_ash"}},[4290]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage taken while moving"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage taken while moving"}}},stats={[1]="fire_damage_taken_+%_while_moving"}},[4291]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Take %1% Fire Damage when you Ignite an Enemy"}}},stats={[1]="fire_damage_taken_when_enemy_ignited"}},[4292]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Attack Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Attack Skills"}}},stats={[1]="fire_damage_with_attack_skills_+%"}},[4293]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Spell Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Spell Skills"}}},stats={[1]="fire_damage_with_spell_skills_+%"}},[4294]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% of Fire Resistance if you have Blocked Recently"}}},stats={[1]="fire_penetration_%_if_you_have_blocked_recently"}},[4295]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Fire Damage taken while affected by Purity of Fire"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Fire Damage taken while affected by Purity of Fire"}}},stats={[1]="fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire"}},[4296]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Fire Skill Gems"}}},stats={[1]="fire_skill_gem_level_+"}},[4297]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Fire Skills have %1%%% chance to Poison on Hit"}}},stats={[1]="fire_skills_chance_to_poison_on_hit_%"}},[4298]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Fire Spells have %1%%% of Physical Damage Converted to Fire Damage"}}},stats={[1]="fire_spell_physical_damage_%_to_convert_to_fire"}},[4299]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Trap Burning Ground Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Trap Burning Ground Duration"}}},stats={[1]="fire_trap_burning_ground_duration_+%"}},[4300]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Fire Trap throws up to 1 additional Trap"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Fire Trap throws up to %1% additional Traps"}}},stats={[1]="fire_trap_number_of_additional_traps_to_throw"}},[4301]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Consecrated Ground from Holy Flame Totem applies %1%%% increased Damage taken to Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Consecrated Ground from Holy Flame Totem applies %1%%% reduced Damage taken to Enemies"}}},stats={[1]="flame_totem_consecrated_ground_enemy_damage_taken_+%"}},[4302]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flamethrower Trap has %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flamethrower Trap has %1%%% reduced Cast Speed"}}},stats={[1]="flamethrower_tower_trap_cast_speed_+%"}},[4303]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flamethrower Trap has %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flamethrower Trap has %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="flamethrower_tower_trap_cooldown_speed_+%"}},[4304]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flamethrower Trap deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flamethrower Trap deals %1%%% reduced Damage"}}},stats={[1]="flamethrower_tower_trap_damage_+%"}},[4305]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flamethrower Trap has %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flamethrower Trap has %1%%% reduced Skill Effect Duration"}}},stats={[1]="flamethrower_tower_trap_duration_+%"}},[4306]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Flamethrower Trap has an additional Flame"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Flamethrower Trap has %1% additional Flames"}}},stats={[1]="flamethrower_tower_trap_number_of_additional_flamethrowers"}},[4307]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage against Burning Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage against Burning Enemies"}}},stats={[1]="flamethrower_trap_damage_+%_final_vs_burning_enemies"}},[4308]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovery from Flasks while affected by Vitality"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Recovery from Flasks while affected by Vitality"}}},stats={[1]="flask_life_recovery_+%_while_affected_by_vitality"}},[4309]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Life and Mana Recovery from Flasks are instant"}}},stats={[1]="flask_recovery_is_instant"}},[4310]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Focus has +1 Cooldown"}}},stats={[1]="focus_cooldown_modifier_ms"}},[4311]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Focus has %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Focus has %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="focus_cooldown_speed_+%"}},[4312]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fortify Duration per 10 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fortify Duration per 10 Strength"}}},stats={[1]="fortify_duration_+%_per_10_strength"}},[4313]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Fortify on you while Stationary"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Fortify on you while Stationary"}}},stats={[1]="fortify_effect_on_self_+%_while_stationary"}},[4314]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Fortify on you while Focussed"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Fortify on you while Focussed"}}},stats={[1]="fortify_effect_+%_while_focused"}},[4315]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]="#"}},text="Grants Fortify on hit"}}},stats={[1]="fortify_on_hit"}},[4316]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freezing Pulse Damage if you've Shattered an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freezing Pulse Damage if you've Shattered an Enemy Recently"}}},stats={[1]="freezing_pulse_damage_+%_if_enemy_shattered_recently"}},[4317]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Freezing Pulse fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Freezing Pulse fires %1% additional Projectiles"}}},stats={[1]="freezing_pulse_number_of_additional_projectiles"}},[4318]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Frenzy Charge on Kill while holding a Shield"}}},stats={[1]="frenzy_charge_on_kill_percent_chance_while_holding_shield"}},[4319]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Frost Blades Melee Damage Penetrates %1%%% Cold Resistance"}}},stats={[1]="frost_blades_melee_damage_penetrates_%_cold_resistance"}},[4320]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vortex has %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vortex has %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="frost_bolt_nova_cooldown_speed_+%"}},[4321]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Frost Bomb has %1%%% increased Debuff Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Frost Bomb has %1%%% reduced Debuff Duration"}}},stats={[1]="frost_bomb_buff_duration_+%"}},[4322]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Winter Orb has +%1% Maximum Stages"}}},stats={[1]="frost_fury_additional_max_number_of_stages"}},[4323]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Winter Orb has %1%%% increased Area of Effect per Stage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Winter Orb has %1%%% reduced Area of Effect per Stage"}}},stats={[1]="frost_fury_area_of_effect_+%_per_stage"}},[4324]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Winter Orb deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Winter Orb deals %1%%% reduced Damage"}}},stats={[1]="frost_fury_damage_+%"}},[4325]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Frostbolt fires %1% additional Projectiles"}}},stats={[1]="frostbolt_number_of_additional_projectiles"}},[4326]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Frostbolt Projectiles gain %1%%% increased Projectile Speed per second"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Frostbolt Projectiles gain %1%%% reduced Projectile Speed per second"}}},stats={[1]="frostbolt_projectile_acceleration"}},[4327]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFungalGround"},limit={[1]={[1]="#",[2]="#"}},text="You have Fungal Ground around you while stationary"}}},stats={[1]="fungal_ground_while_stationary_radius"}},[4328]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="When you Kill a Rare Monster, %1%%% chance to gain one of its Modifiers for 10 seconds"}}},stats={[1]="gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance"}},[4329]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Gain a Frenzy Charge after Spending a total of 200 Mana"},[2]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1% Frenzy Charges after Spending a total of 200 Mana"}}},stats={[1]="gain_X_frenzy_charges_after_spending_200_mana"}},[4330]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1% Life when you Stun an Enemy"}}},stats={[1]="gain_X_life_on_stun"}},[4331]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Power Charges when you Warcry"}}},stats={[1]="gain_X_power_charges_on_using_a_warcry"}},[4332]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain Accuracy Rating equal to your Strength"}}},stats={[1]="gain_accuracy_rating_equal_to_strength"}},[4333]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAdrenaline"},limit={[1]={[1]=1,[2]="#"}},text="Gain Adrenaline for %1% seconds when you reach Low Life if you\ndo not have Adrenaline"}}},stats={[1]="gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline"}},[4334]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Kills grant an additional Vaal Soul if you have Rampaged Recently"}}},stats={[1]="gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently"}},[4335]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]="#"}},text="Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry"}}},stats={[1]="gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry"}},[4336]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Gain Arcane Surge when you deal a Critical Strike"},[2]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=100,[2]="#"}},text="Gain Arcane Surge when you deal a Critical Strike"}}},stats={[1]="gain_arcane_surge_on_crit_%_chance"}},[4337]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]="#"}},text="Gain Arcane Surge on Hit with Spells if you have at least 150 Devotion"}}},stats={[1]="gain_arcane_surge_on_hit_at_devotion_threshold"}},[4338]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Gain Arcane Surge on Hit with Spells while at maximum Power Charges"},[2]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=100,[2]="#"}},text="Gain Arcane Surge on Hit with Spells while at maximum Power Charges"}}},stats={[1]="gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%"}},[4339]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Gain Arcane Surge on Hit with Spells"},[2]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=100,[2]="#"}},text="Gain Arcane Surge on Hit with Spells"}}},stats={[1]="gain_arcane_surge_on_hit_%_chance"}},[4340]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Arcane Surge when you Kill an Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=100,[2]="#"}},text="Gain Arcane Surge when you Kill an Enemy"}}},stats={[1]="gain_arcane_surge_on_kill_chance_%"}},[4341]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]="#"}},text="Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell"}}},stats={[1]="gain_arcane_surge_on_spell_hit_by_you_or_your_totems"}},[4342]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain Armour equal to your Reserved Mana"}}},stats={[1]="gain_armour_equal_to_mana_reserved"}},[4343]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy"}}},stats={[1]="gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy"}},[4344]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlitzChargeDuration"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Blitz Charge on Critical Strike"},[2]={[1]={k="reminderstring",v="ReminderTextBlitzChargeDuration"},limit={[1]={[1]=100,[2]="#"}},text="Gain a Blitz Charge on Critical Strike"}}},stats={[1]="gain_blitz_charge_%_chance_on_crit"}},[4345]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance"}}},stats={[1]="gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance"}},[4346]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Challenger Charge when you Kill an Enemy while in Sand Stance"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Challenger Charge when you Kill an Enemy while in Sand Stance"}}},stats={[1]="gain_challenger_charge_%_chance_on_kill_in_sand_stance"}},[4347]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain %1$+d%% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana"}}},stats={[1]="gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana"}},[4348]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextDebilitatingPresence"},limit={[1]={[1]="#",[2]="#"}},text="Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"}}},stats={[1]="gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy"}},[4349]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Gain an Endurance Charge every second if you've been Hit Recently"}}},stats={[1]="gain_endurance_charge_per_second_if_have_been_hit_recently"}},[4350]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Gain an Endurance Charge when you lose Fortify"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge when you lose Fortify"}}},stats={[1]="gain_endurance_charge_%_chance_when_you_lose_fortify"}},[4351]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain an Endurance Charge when Hit while Channelling"}}},stats={[1]="gain_endurance_charge_%_when_hit_while_channelling"}},[4352]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges"}}},stats={[1]="gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges"}},[4353]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Frenzy Charge on Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Frenzy Charge on Critical Strike"}}},stats={[1]="gain_frenzy_charge_on_critical_strike_%"}},[4354]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Frenzy Charge on Hit while Bleeding"}}},stats={[1]="gain_frenzy_charge_on_hit_while_bleeding"}},[4355]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"}}},stats={[1]="gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"}},[4356]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons"}}},stats={[1]="gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"}},[4357]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when Hit while Channelling"}}},stats={[1]="gain_frenzy_charge_%_when_hit_while_channelling"}},[4358]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextHerEmbrace"},limit={[1]={[1]=1,[2]="#"}},text="Gain Her Embrace for %1% seconds when you Ignite an Enemy"}}},stats={[1]="gain_her_embrace_for_x_ms_on_enemy_ignited"}},[4359]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth"}}},stats={[1]="gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth"}},[4360]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"}}},stats={[1]="gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance"}},[4361]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance that if you would gain Power Charges, you instead gain up to\nyour maximum number of Power Charges"}}},stats={[1]="gain_maximum_power_charges_on_power_charge_gained_%_chance"}},[4362]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% increased Movement Speed for 20 seconds when you Kill an Enemy"}}},stats={[1]="gain_movement_speed_+%_for_20_seconds_on_kill"}},[4363]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="You have Onslaught during Soul Gain Prevention"}}},stats={[1]="gain_onslaught_during_soul_gain_prevention"}},[4364]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to gain Onslaught for 3 seconds when Hit"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]=100}},text="Gain Onslaught for 3 seconds when Hit"}}},stats={[1]="gain_onslaught_for_3_seconds_%_chance_when_hit"}},[4365]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Gain Onslaught for %1% seconds when you Warcry"}}},stats={[1]="gain_onslaught_ms_on_using_a_warcry"}},[4366]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]="#"}},text="Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges"}}},stats={[1]="gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%"}},[4367]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds on Hit"}}},stats={[1]="gain_onslaught_on_hit_duration_ms"}},[4368]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="You gain Onslaught for %1% seconds on Kill while affected by Haste"}}},stats={[1]="gain_onslaught_on_kill_ms_while_affected_by_haste"}},[4369]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="You have Onslaught while at maximum Endurance Charges"}}},stats={[1]="gain_onslaught_while_at_maximum_endurance_charges"}},[4370]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="You have Onslaught while not on Low Mana"}}},stats={[1]="gain_onslaught_while_not_on_low_mana"}},[4371]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="You have Onslaught while on Low Life"}}},stats={[1]="gain_onslaught_while_on_low_life"}},[4372]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="You have Onslaught while you have Fortify"}}},stats={[1]="gain_onslaught_while_you_have_fortify"}},[4373]={lang={English={[1]={[1]={k="deciseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Total Physical Damage prevented from Hits in the past 10 seconds is Regenerated as Life per second"}}},stats={[1]="gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec"}},[4374]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You have Phasing if you've Killed Recently"}}},stats={[1]="gain_phasing_if_enemy_killed_recently"}},[4375]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]="#",[2]="#"}},text="You have Phasing while affected by Haste"}}},stats={[1]="gain_phasing_while_affected_by_haste"}},[4376]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You have Phasing while you have Cat's Stealth"}}},stats={[1]="gain_phasing_while_you_have_cats_stealth"}},[4377]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"}}},stats={[1]="gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%"}},[4378]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge when you use a Vaal Skill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge when you use a Vaal Skill"}}},stats={[1]="gain_power_charge_on_vaal_skill_use_%"}},[4379]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Power or Frenzy Charge each second while Channelling"}}},stats={[1]="gain_power_or_frenzy_charge_for_each_second_channeling"}},[4380]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain an Endurance, Frenzy or Power charge when you Block"}}},stats={[1]="gain_random_charge_on_block"}},[4381]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary"}}},stats={[1]="gain_random_charge_per_second_while_stationary"}},[4382]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Inspiration Charge when you Spend Mana"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Inspiration Charge when you Spend Mana"}}},stats={[1]="gain_righteous_charge_on_mana_spent_%"}},[4383]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShapersPresence"},[2]={k="reminderstring",v="ReminderTextSlowTimeEffects"},limit={[1]={[1]="#",[2]="#"}},text="Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy"}}},stats={[1]="gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster"}},[4384]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You have Chilling Conflux for 3 seconds every 8 seconds"},[2]={limit={[1]={[1]=2,[2]=2}},text="You have Shocking Conflux for 3 seconds every 8 seconds"},[3]={limit={[1]={[1]=3,[2]=3}},text="You have Igniting Conflux for 3 seconds every 8 seconds"}}},stats={[1]="gain_single_conflux_for_3_seconds_every_8_seconds"}},[4385]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain Soul Eater for %1% seconds when you use a Vaal Skill"}}},stats={[1]="gain_soul_eater_for_x_ms_on_vaal_skill_use"}},[4386]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextKeystoneVaalPact"},limit={[1]={[1]="#",[2]="#"}},text="You have Vaal Pact if you've dealt a Critical Strike Recently"}}},stats={[1]="gain_vaal_pact_if_you_have_crit_recently"}},[4387]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneVaalPact"},limit={[1]={[1]="#",[2]="#"}},text="You have Vaal Pact while Focussed"}}},stats={[1]="gain_vaal_pact_while_focused"}},[4388]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain Vaal Soul on Hit\nYou can only generate a Soul every %1% seconds"}}},stats={[1]="gain_vaal_soul_on_hit_cooldown_ms"}},[4389]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Galvanic Arrow has %1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Galvanic Arrow has %1%%% reduced Projectile Speed"}}},stats={[1]="galvanic_arrow_projectile_speed_+%"}},[4390]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Every 2 seconds, gain a Ghost Shroud, up to a maximum of %1%"}}},stats={[1]="ghost_dance_max_stacks"}},[4391]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When Hit, lose a Ghost Shroud and Recover Energy Shield equal to %1%%% of your Evasion Rating"}}},stats={[1]="ghost_dance_restore_%_evasion_as_energy_shield_when_hit"}},[4392]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Glacial Cascade has an additional Burst"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Glacial Cascade has %1% additional Bursts"}}},stats={[1]="glacial_cascade_number_of_additional_bursts"}},[4393]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Glacial Hammer deals Cold-only Splash Damage to surrounding targets"}}},stats={[1]="glacial_hammer_melee_splash_with_cold_damage"}},[4394]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Glacial Hammer Physical Damage Converted to Cold Damage"}}},stats={[1]="glacial_hammer_physical_damage_%_to_convert_to_cold"}},[4395]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Attack Speed per Level"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Attack Speed per Level"}}},stats={[1]="global_attack_speed_+%_per_level"}},[4396]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Blind with Hits against Bleeding Enemies"}}},stats={[1]="global_chance_to_blind_on_hit_%_vs_bleeding_enemies"}},[4397]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Chilled Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Chilled Enemies"}}},stats={[1]="global_critical_strike_chance_+%_vs_chilled_enemies"}},[4398]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Global Evasion Rating while moving"}}},stats={[1]="global_evasion_rating_+_while_moving"}},[4399]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage against Chilled or Frozen Enemies"}}},stats={[1]="global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies",[2]="global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies"}},[4400]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage against Ignited Enemies"}}},stats={[1]="global_minimum_added_fire_damage_vs_ignited_enemies",[2]="global_maximum_added_fire_damage_vs_ignited_enemies"}},[4401]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Hits against Ignited Enemies"}}},stats={[1]="global_minimum_added_lightning_damage_vs_ignited_enemies",[2]="global_maximum_added_lightning_damage_vs_ignited_enemies"}},[4402]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage against Shocked Enemies"}}},stats={[1]="global_minimum_added_lightning_damage_vs_shocked_enemies",[2]="global_maximum_added_lightning_damage_vs_shocked_enemies"}},[4403]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage against Bleeding Enemies"}}},stats={[1]="global_minimum_added_physical_damage_vs_bleeding_enemies",[2]="global_maximum_added_physical_damage_vs_bleeding_enemies"}},[4404]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Global Armour while moving"}}},stats={[1]="global_physical_damage_reduction_rating_while_moving"}},[4405]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems have %1%%% increased Attack and Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems have %1%%% reduced Attack and Cast Speed"}}},stats={[1]="golem_attack_and_cast_speed_+%"}},[4406]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Buffs granted by your Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Buffs granted by your Golems"}}},stats={[1]="golem_buff_effect_+%"}},[4407]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Buffs granted by your Golems per Summoned Golem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Buffs granted by your Golems per Summoned Golem"}}},stats={[1]="golem_buff_effect_+%_per_summoned_golem"}},[4408]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Summoned Golems Regenerate %1%%% of their Life per second"}}},stats={[1]="golem_life_regeneration_per_minute_%"}},[4409]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems have %1%%% increased Maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems have %1%%% reduced Maximum Life"}}},stats={[1]="golem_maximum_life_+%"}},[4410]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems have %1%%% reduced Movement Speed"}}},stats={[1]="golem_movement_speed_+%"}},[4411]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Golems have %1$+d to Armour"}}},stats={[1]="golem_physical_damage_reduction_rating"}},[4412]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grace Reserves no Mana"}}},stats={[1]="grace_reserves_no_mana"}},[4413]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text=" Animated Minions' Melee Attacks deal %1%%% more Damage to surrounding targets"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Animated Minions' Melee Attacks deal %1%%% less Damage to surrounding targets"}}},stats={[1]="grant_animated_minion_melee_splash_damage_+%_final_for_splash"}},[4414]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="If you've used a Skill Recently, you and nearby Allies have Tailwind"}}},stats={[1]="grant_tailwind_to_nearby_allies_if_used_skill_recently"}},[4415]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Bleeding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Bleeding"}}},stats={[1]="gratuitous_violence_bleeding_damage_+%_final"}},[4416]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Ground Slam has a %1%%% chance to grant an Endurance Charge when\nyou Stun an Enemy"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Ground Slam grants an Endurance Charge on Stun"}}},stats={[1]="ground_slam_chance_to_gain_endurance_charge_%_on_stun"}},[4417]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextGroundTar"},limit={[1]={[1]="#",[2]="#"}},text="Spreads Tar when you Block"}}},stats={[1]="ground_tar_on_block_base_area_of_effect_radius"}},[4418]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to spread Tar when Hit"}}},stats={[1]="ground_tar_when_hit_%_chance"}},[4419]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Guard Skills have %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Guard Skills have %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="guard_skill_cooldown_recovery_+%"}},[4420]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="While there are at least five nearby Allies, you and nearby Allies have Onslaught"}}},stats={[1]="guardian_with_5_nearby_allies_you_and_allies_have_onslaught"}},[4421]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="While there is at least one nearby Ally, you and nearby Allies deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="While there is at least one nearby Ally, you and nearby Allies deal %1%%% less Damage"}}},stats={[1]="guardian_with_nearby_ally_damage_+%_final_for_you_and_allies"}},[4422]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Haste Reserves no Mana"}}},stats={[1]="haste_reserves_no_mana"}},[4423]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hatred Reserves no Mana"}}},stats={[1]="hatred_reserves_no_mana"}},[4424]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Heralds on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Heralds on you"}}},stats={[1]="herald_effect_on_self_+%"}},[4425]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Mana Reservation of Herald Skills is always 45%%"}}},stats={[1]="herald_mana_reservation_override_45%"}},[4426]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextVirulence"},limit={[1]={[1]=1,[2]="#"}},text="You lose Virulence %1%%% faster"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextVirulence"},limit={[1]={[1]="#",[2]=-1}},text="You lose Virulence %1%%% slower"}}},stats={[1]="herald_of_agony_buff_drop_off_speed_+%"}},[4427]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Agony has %1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Agony has %1%%% reduced Buff Effect"}}},stats={[1]="herald_of_agony_buff_effect_+%"}},[4428]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Agony has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Agony has %1%%% reduced Mana Reservation"}}},stats={[1]="herald_of_agony_mana_reservation_+%"}},[4429]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Ash has %1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Ash has %1%%% reduced Buff Effect"}}},stats={[1]="herald_of_ash_buff_effect_+%"}},[4430]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Burning Damage"}}},stats={[1]="herald_of_ash_burning_damage_+%_final"}},[4431]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Spell Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Spell Fire Damage"}}},stats={[1]="herald_of_ash_spell_fire_damage_+%_final"}},[4432]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Ice has %1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Ice has %1%%% reduced Buff Effect"}}},stats={[1]="herald_of_ice_buff_effect_+%"}},[4433]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Sentinels use Crusade Slam"}}},stats={[1]="herald_of_light_and_dominating_blow_minions_use_holy_slam"}},[4434]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Purity has %1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Purity has %1%%% reduced Buff Effect"}}},stats={[1]="herald_of_light_buff_effect_+%"}},[4435]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Sentinels of Purity have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Sentinels of Purity have %1%%% reduced Area of Effect"}}},stats={[1]="herald_of_light_minion_area_of_effect_+%"}},[4436]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Purity has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Purity has %1%%% reduced Mana Reservation"}}},stats={[1]="herald_of_purity_mana_reservation_+%"}},[4437]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Thunder has %1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Thunder has %1%%% reduced Buff Effect"}}},stats={[1]="herald_of_thunder_buff_effect_+%"}},[4438]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Summoned Agony Crawler fires %1% additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Summoned Agony Crawler fires %1% additional Projectiles"}}},stats={[1]="herald_scorpion_number_of_additional_projectiles"}},[4439]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Reservation of Herald Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Reservation of Herald Skills"}}},stats={[1]="herald_skills_mana_reservation_+%"}},[4440]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Area of Effect per 50 Unreserved Maximum Mana, up to 100%%"}}},stats={[1]="hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%"}},[4441]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Mana Cost of Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Mana Cost of Skills"}}},stats={[1]="hierophant_mana_cost_+%_final"}},[4442]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Mana Reservation of Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Mana Reservation of Skills"}}},stats={[1]="hierophant_mana_reservation_+%_final"}},[4443]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Hinder on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced effect of Hinder on you"}}},stats={[1]="hinder_effect_on_self_+%"}},[4444]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Bleeding Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Bleeding Enemies"}}},stats={[1]="hit_and_ailment_damage_+%_vs_bleeding_enemies"}},[4445]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Blinded Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Blinded Enemies"}}},stats={[1]="hit_and_ailment_damage_+%_vs_blinded_enemies"}},[4446]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Chilled Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Chilled Enemies"}}},stats={[1]="hit_and_ailment_damage_+%_vs_chilled_enemies"}},[4447]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs"}}},stats={[1]="hit_and_ailment_damage_+%_vs_enemies_affected_by_at_least_3_spiders_webs"}},[4448]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Hits can't be Evaded by Blinded Enemies"}}},stats={[1]="hits_cannot_be_evaded_vs_blinded_enemies"}},[4449]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items"}}},stats={[1]="hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped"}},[4450]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hits ignore Enemy Monster Fire Resistance while you are Ignited"}}},stats={[1]="hits_ignore_enemy_fire_resistance_while_you_are_ignited"}},[4451]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Consecrated Path has %1%%% increased teleport range"}}},stats={[1]="holy_path_teleport_range_+%"}},[4452]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Holy Relics have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Holy Relics have %1%%% reduced Area of Effect"}}},stats={[1]="holy_relic_area_of_effect_+%"}},[4453]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Holy Relics have %1%%% increased Buff Effect"}}},stats={[1]="holy_relic_buff_effect_+%"}},[4454]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Holy Relics have %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Holy Relics have %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="holy_relic_cooldown_recovery_+%"}},[4455]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Holy Relics deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Holy Relics deal %1%%% reduced Damage"}}},stats={[1]="holy_relic_damage_+%"}},[4456]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Frostblink has %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Frostblink has %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="ice_dash_cooldown_speed_+%"}},[4457]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Frostblink has %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Frostblink has %1%%% reduced Duration"}}},stats={[1]="ice_dash_duration_+%"}},[4458]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Frostblink has %1%%% increased maximum travel distance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Frostblink has %1%%% reduced maximum travel distance"}}},stats={[1]="ice_dash_travel_distance_+%"}},[4459]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chills from Ice Nova Hits always reduce Action Speed by at least %1%%%"}}},stats={[1]="ice_nova_chill_minimum_slow_%"}},[4460]={lang={English={[1]={limit={[1]={[1]=10,[2]=19}},text="Ice Shot Pierces an additional Target"},[2]={[1]={k="divide_by_ten_0dp",v=1},limit={[1]={[1]=20,[2]="#"}},text="Ice Shot Pierces %1% additional Targets"}}},stats={[1]="ice_shot_additional_pierce_per_10_old"}},[4461]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ice Shot has %1%%% increased Area of Effect angle"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ice Shot has %1%%% reduced Area of Effect angle"}}},stats={[1]="ice_shot_area_angle_+%"}},[4462]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Ice Shot Pierces an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Ice Shot Pierces %1% additional Targets"}}},stats={[1]="ice_shot_pierce_+"}},[4463]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Siphoning Trap has %1%%% increased Chill Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Siphoning Trap has %1%%% reduced Chill Effect"}}},stats={[1]="ice_siphon_trap_chill_effect_+%"}},[4464]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Siphoning Trap deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Siphoning Trap deals %1%%% reduced Damage"}}},stats={[1]="ice_siphon_trap_damage_+%"}},[4465]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Siphoning Trap's beam to you grants %1%%% increased Damage taken for each other beam"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Siphoning Trap's beam to you grants %1%%% reduced Damage taken for each other beam"}}},stats={[1]="ice_siphon_trap_damage_taken_+%_per_beam"}},[4466]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Siphoning Trap has %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Siphoning Trap has %1%%% reduced Skill Effect Duration"}}},stats={[1]="ice_siphon_trap_duration_+%"}},[4467]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ice Spear travels %1%%% increased distance before changing forms"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ice Spear travels %1%%% reduced distance before changing forms"}}},stats={[1]="ice_spear_distance_before_form_change_+%"}},[4468]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Ice Spear fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Ice Spear fires %1% additional Projectiles"}}},stats={[1]="ice_spear_number_of_additional_projectiles"}},[4469]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ice Trap Damage Penetrates %1%%% Cold Resistance"}}},stats={[1]="ice_trap_cold_resistance_penetration_%"}},[4470]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ignite inflicted on Chilled Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ignite inflicted on Chilled Enemies"}}},stats={[1]="ignite_damage_+%_vs_chilled_enemies"}},[4471]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Ignite Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Ignite Duration"}}},stats={[1]="ignite_duration_-%"}},[4472]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hits ignore Enemy Cold Resistance"}}},stats={[1]="ignores_enemy_cold_resistance"}},[4473]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hits ignore Enemy Fire Resistance"}}},stats={[1]="ignores_enemy_fire_resistance"}},[4474]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hits ignore Enemy Lightning Resistance"}}},stats={[1]="ignores_enemy_lightning_resistance"}},[4475]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Immortal Call has %1%%% increased Buff Duration per Endurance Charge removed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Immortal Call has %1%%% decreased Buff Duration per Endurance Charge removed"}}},stats={[1]="immortal_call_buff_effect_duration_+%_per_removable_endurance_charge"}},[4476]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Burning Ground, Shocked Ground and Chilled Ground"}}},stats={[1]="immune_to_burning_shocks_and_chilled_ground"}},[4477]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Immune to Elemental Ailments while on Consecrated Ground"}}},stats={[1]="immune_to_elemental_ailments_while_on_consecrated_ground"}},[4478]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Immune to Elemental Ailments while on Consecrated Ground if you have at least 150 Devotion"}}},stats={[1]="immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"}},[4479]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Immune to Elemental Ailments while you have Arcane Surge"}}},stats={[1]="immune_to_elemental_ailments_while_you_have_arcane_surge"}},[4480]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Freeze and Chill while Ignited"}}},stats={[1]="immune_to_freeze_and_chill_while_ignited"}},[4481]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Freeze while affected by Purity of Ice"}}},stats={[1]="immune_to_freeze_while_affected_by_purity_of_ice"}},[4482]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Ignite and Shock"}}},stats={[1]="immune_to_ignite_and_shock"}},[4483]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Ignite while affected by Purity of Fire"}}},stats={[1]="immune_to_ignite_while_affected_by_purity_of_fire"}},[4484]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Shock while affected by Purity of Lightning"}}},stats={[1]="immune_to_shock_while_affected_by_purity_of_lightning"}},[4485]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="You are Immune to Ailments while Focussed"}}},stats={[1]="immune_to_status_ailments_while_focused"}},[4486]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Impale Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Impale Effect"}}},stats={[1]="impale_debuff_effect_+%"}},[4487]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Impales you inflict last %1% additional Hits"}}},stats={[1]="impaled_debuff_number_of_reflected_hits"}},[4488]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Cold Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Cold Damage taken"}}},stats={[1]="impurity_cold_damage_taken_+%_final"}},[4489]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Fire Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Fire Damage taken"}}},stats={[1]="impurity_fire_damage_taken_+%_final"}},[4490]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Lightning Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Lightning Damage taken"}}},stats={[1]="impurity_lightning_damage_taken_+%_final"}},[4491]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Infernal Blow Debuff deals an additional %1%%% of Damage per Charge"}}},stats={[1]="infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack"}},[4492]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextColdExposure"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Cold Exposure on Hit if you have at least 150 Devotion"},[2]={[1]={k="reminderstring",v="ReminderTextColdExposure"},limit={[1]={[1]=100,[2]="#"}},text="Inflict Cold Exposure on Hit if you have at least 150 Devotion"}}},stats={[1]="inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"}},[4493]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFireExposure"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Fire Exposure on Hit if you have at least 150 Devotion"},[2]={[1]={k="reminderstring",v="ReminderTextFireExposure"},limit={[1]={[1]=100,[2]="#"}},text="Inflict Fire Exposure on Hit if you have at least 150 Devotion"}}},stats={[1]="inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"}},[4494]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLightningExposure"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Lightning Exposure on Hit if you have at least 150 Devotion"},[2]={[1]={k="reminderstring",v="ReminderTextLightningExposure"},limit={[1]={[1]=100,[2]="#"}},text="Inflict Lightning Exposure on Hit if you have at least 150 Devotion"}}},stats={[1]="inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"}},[4495]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Inspiration Charge Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Inspiration Charge Duration"}}},stats={[1]="inspiration_charge_duration_+%"}},[4496]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Intelligence Skill Gems"}}},stats={[1]="intelligence_skill_gem_level_+"}},[4497]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges"},[2]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]=100,[2]="#"}},text="Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges"}}},stats={[1]="intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%"}},[4498]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is infested with Fungal Growths"}}},stats={[1]="is_blighted_map"}},[4499]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items found per Chest opened Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items found per Chest opened Recently"}}},stats={[1]="item_found_quantity_+%_per_chest_opened_recently"}},[4500]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="1%% increased Rarity of Items found per %1% Rampage Kills"}}},stats={[1]="item_found_rarity_+1%_per_X_rampage_stacks"}},[4501]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]="#",[2]="#"}},text="Gain 1 Rage on Critical Hit with attacks, no more than once every %1% seconds"}}},stats={[1]="kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms"}},[4502]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% chance for Kills to count twice for Rampage"},[2]={limit={[1]={[1]=100,[2]=100}},text="Kills count twice for Rampage"}}},stats={[1]="kills_count_twice_for_rampage_%"}},[4503]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Labyrinth Traps are disabled in the Aspirant's Trial"}}},stats={[1]="labyrinth_darkshrine_boss_room_traps_are_disabled"}},[4504]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You will receive an additional use of the Divine Font"}}},stats={[1]="labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x"}},[4505]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Izaro will drop an additional Unique Item on Death"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Izaro will drop %1% additional Unique Items on Death"}}},stats={[1]="labyrinth_darkshrine_izaro_dropped_unique_items_+"}},[4506]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Izaro will drop an additional Treasure Key on Death"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Izaro will drop %1% additional Treasure Keys on Death"}}},stats={[1]="labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys"}},[4507]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage Taken from Hits from Labyrinth Traps\n%1%%% increased effectiveness of Damage over Time Debuffs from Labyrinth Traps on Players"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage Taken from Hits from Labyrinth Traps\n%1%%% reduced effectiveness of Damage over Time Debuffs from Labyrinth Traps on Players"}}},stats={[1]="labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%"}},[4508]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Players in the Labyrinth will be affected by Acceleration Shrine"},[2]={limit={[1]={[1]=2,[2]=2}},text="Players in the Labyrinth will be affected by Lightning Shrine"},[3]={limit={[1]={[1]=3,[2]=3}},text="Players in the Labyrinth will be affected by Freezing Shrine"},[4]={limit={[1]={[1]=4,[2]=4}},text="Players in the Labyrinth will be affected by Burning Shrine"},[5]={limit={[1]={[1]=5,[2]=5}},text="Players in the Labyrinth will be affected by Static Shrine"},[6]={limit={[1]={[1]=6,[2]=6}},text="Players in the Labyrinth will be affected by Diamond Shrine"},[7]={limit={[1]={[1]=7,[2]=7}},text="Players in the Labyrinth will be affected by Brutal Shrine"},[8]={limit={[1]={[1]=8,[2]=8}},text="Players in the Labyrinth will be affected by Thorned Shrine"},[9]={limit={[1]={[1]=9,[2]=9}},text="Players in the Labyrinth will be affected by Replenishing Shrine"},[10]={limit={[1]={[1]=10,[2]=10}},text="Players in the Labyrinth will be affected by Massive Shrine"},[11]={limit={[1]={[1]=11,[2]=11}},text="Players in the Labyrinth will be affected by Impenetrable Shrine"},[12]={limit={[1]={[1]=12,[2]=12}},text="Players in the Labyrinth will be affected by Resistance Shrine"},[13]={limit={[1]={[1]=13,[2]=13}},text="Players in the Labyrinth will be affected by Divine Shrine"},[14]={limit={[1]={[1]=14,[2]=14}},text="Players in the Labyrinth will be affected by Echoing Shrine"},[15]={limit={[1]={[1]=15,[2]=15}},text="Players in the Labyrinth will be affected by Hexing Shrine"},[16]={limit={[1]={[1]=16,[2]=16}},text="Players in the Labyrinth will be affected by Skeletal Shrine"},[17]={limit={[1]={[1]=17,[2]=17}},text="Players in the Labyrinth will be affected by Shrouded Shrine"}}},stats={[1]="labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth"}},[4509]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lancing Steel deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lancing Steel deals %1%%% reduced Damage"}}},stats={[1]="lancing_steel_damage_+%"}},[4510]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="Lancing Steel's additional Projectiles have %1$+d%% chance to Impale Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Lancing Steel's additional Projectiles Impale Enemies"}}},stats={[1]="lancing_steel_impale_chance_%"}},[4511]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Lancing Steel's primary Projectile Pierces 1 additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Lancing Steel's primary Projectile Pierces %1% additional Targets"}}},stats={[1]="lancing_steel_primary_proj_pierce_num"}},[4512]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Leech Energy Shield instead of Life"}}},stats={[1]="leech_energy_shield_instead_of_life"}},[4513]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Recovery rate of Life and Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Recovery rate of Life and Energy Shield"}}},stats={[1]="life_and_energy_shield_recovery_rate_+%"}},[4514]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Recovery rate of Life and Energy Shield if you've stopped taking Damage Over Time Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Recovery rate of Life and Energy Shield if you've stopped taking Damage Over Time Recently"}}},stats={[1]="life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently"}},[4515]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Recovery Rate of Life and Energy Shield per Minion, up to 30%%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Recovery Rate of Life and Energy Shield per Minion"}}},stats={[1]="life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%"}},[4516]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Recovery rate of Life and Energy Shield per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Recovery rate of Life and Energy Shield per Power Charge"}}},stats={[1]="life_and_energy_shield_recovery_rate_+%_per_power_charge"}},[4517]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Recovery rate of Life and Energy Shield while affected by Malevolence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Recovery rate of Life and Energy Shield while affected by Malevolence"}}},stats={[1]="life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence"}},[4518]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},[3]={k="reminderstring",v="ReminderTextLifeLeech"},[4]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Attack Damage Leeched as Life and Mana if you've Killed Recently"}}},stats={[1]="life_and_mana_leech_from_attack_damage_permyriad_if_killed_recently"}},[4519]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Life Flasks gain %1% Charges every 3 seconds if you haven't used a Life Flask Recently"}}},stats={[1]="life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently"}},[4520]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life gained for each Enemy Hit while affected by Vitality"}}},stats={[1]="life_gain_per_target_hit_while_affected_by_vitality"}},[4521]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1% Life gained for each Enemy Hit if you have used a Vaal Skill Recently"}}},stats={[1]="life_gain_per_target_if_have_used_a_vaal_skill_recently"}},[4522]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Life Leech effects are not removed at Full Life\nLife Leech effects Recover Energy Shield instead while on Full Life"}}},stats={[1]="life_leech_applies_to_energy_shield_on_full_life"}},[4523]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage leeched as Life while affected by Vitality"}}},stats={[1]="life_leech_from_any_damage_permyriad_while_affected_by_vitality"}},[4524]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage Leeched as Life while Focussed"}}},stats={[1]="life_leech_from_any_damage_permyriad_while_focused"}},[4525]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Attack Damage Leeched as Life per Frenzy Charge"}}},stats={[1]="life_leech_from_attack_damage_permyriad_per_frenzy_charge"}},[4526]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life against Maimed Enemies"}}},stats={[1]="life_leech_from_attack_damage_permyriad_vs_maimed_enemies"}},[4527]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life against Taunted Enemies"}}},stats={[1]="life_leech_from_attack_damage_permyriad_vs_taunted_enemies"}},[4528]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Fire Damage Leeched as Life while affected by Anger"}}},stats={[1]="life_leech_from_fire_damage_permyriad_while_affected_by_anger"}},[4529]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Fire Damage Leeched as Life while Ignited"}}},stats={[1]="life_leech_from_fire_damage_while_ignited_permyriad"}},[4530]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Spell Damage Leeched as Life while you have Arcane Surge"}}},stats={[1]="life_leech_from_spell_damage_permyriad_while_you_have_arcane_surge"}},[4531]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Taken from Hits is Leeched as Life"}}},stats={[1]="life_leech_on_damage_taken_%_permyriad"}},[4532]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Leech %1%%% of Damage as Life against Poisoned Enemies"}}},stats={[1]="life_leech_permyriad_vs_poisoned_enemies"}},[4533]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Life Leeched per Second is doubled"}}},stats={[1]="life_leech_speed_is_doubled"}},[4534]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Lose %1%%% of Life per second per Rage while you are not losing Rage"}}},stats={[1]="life_loss_%_per_minute_per_rage_while_not_losing_rage"}},[4535]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Maximum Life per Level"}}},stats={[1]="life_per_level"}},[4536]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovery from Flasks used when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Recovery from Flasks used when on Low Life"}}},stats={[1]="life_recovery_+%_from_flasks_while_on_low_life"}},[4537]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovery Rate if you've taken Fire Damage from an Enemy Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Recovery Rate if you've taken Fire Damage from an Enemy Hit Recently"}}},stats={[1]="life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently"}},[4538]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovery Rate while affected by Vitality"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Recovery Rate while affected by Vitality"}}},stats={[1]="life_recovery_rate_+%_while_affected_by_vitality"}},[4539]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Life per second per Buff on you"}}},stats={[1]="life_regeneration_per_minute_per_active_buff"}},[4540]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second while affected by a Guard Skill Buff"}}},stats={[1]="life_regeneration_per_minute_%_while_affected_by_guard_skill"}},[4541]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Life per Second while affected by Vitality"}}},stats={[1]="life_regeneration_per_minute_while_affected_by_vitality"}},[4542]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second while Ignited"}}},stats={[1]="life_regeneration_per_minute_while_ignited"}},[4543]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Life per second while moving"}}},stats={[1]="life_regeneration_per_minute_while_moving"}},[4544]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per Second while you have Avian's Flight"}}},stats={[1]="life_regeneration_per_minute_while_you_have_avians_flight"}},[4545]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second if you have been Hit Recently"}}},stats={[1]="life_regeneration_rate_per_minute_%_if_have_been_hit_recently"}},[4546]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second if you've taken Fire Damage from an Enemy Hit Recently"}}},stats={[1]="life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently"}},[4547]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second per 500 Maximum Energy Shield"}}},stats={[1]="life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield"}},[4548]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second for each Mine Detonated Recently, up to 10%% per second"}}},stats={[1]="life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%"}},[4549]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second per Power Charge"}}},stats={[1]="life_regeneration_rate_per_minute_%_per_power_charge"}},[4550]={lang={English={[1]={[1]={k="per_minute_to_per_second_2dp_if_required",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second for each Raised Zombie"}}},stats={[1]="life_regeneration_rate_per_minute_%_per_raised_zombie"}},[4551]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per Second for each Trap Triggered Recently, up to 10%% per second"}}},stats={[1]="life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%"}},[4552]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second while moving"}}},stats={[1]="life_regeneration_rate_per_minute_%_while_moving"}},[4553]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second during any Flask Effect"}}},stats={[1]="life_regeneration_rate_per_minute_%_while_using_flask"}},[4554]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second with at least 400 Strength"}}},stats={[1]="life_regeneration_rate_per_minute_%_with_400_or_more_strength"}},[4555]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Light Radius also apply to Accuracy"}}},stats={[1]="light_radius_increases_apply_to_accuracy"}},[4556]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Light Radius also apply to Area of Effect"}}},stats={[1]="light_radius_increases_apply_to_area_of_effect"}},[4557]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Lightning and Chaos Resistances"}}},stats={[1]="lightning_and_chaos_damage_resistance_%"}},[4558]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Lightning Damage can Ignite"}}},stats={[1]="lightning_damage_can_ignite"}},[4559]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Lightning Damage per 1%% Lightning Resistance above 75%%"}}},stats={[1]="lightning_damage_+%_per_lightning_resistance_above_75"}},[4560]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Lightning Damage as Extra Chaos Damage per Power Charge"}}},stats={[1]="lightning_damage_%_to_add_as_chaos_per_power_charge"}},[4561]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage while affected by Herald of Thunder"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage while affected by Herald of Thunder"}}},stats={[1]="lightning_damage_+%_while_affected_by_herald_of_thunder"}},[4562]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage while affected by Wrath"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage while affected by Wrath"}}},stats={[1]="lightning_damage_+%_while_affected_by_wrath"}},[4563]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Lightning Resistance while affected by Herald of Thunder"}}},stats={[1]="lightning_damage_resistance_%_while_affected_by_herald_of_thunder"}},[4564]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Lightning Damage taken from Hits"}}},stats={[1]="lightning_damage_taken_+"}},[4565]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage with Attack Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage with Attack Skills"}}},stats={[1]="lightning_damage_with_attack_skills_+%"}},[4566]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage with Spell Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage with Spell Skills"}}},stats={[1]="lightning_damage_with_spell_skills_+%"}},[4567]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Stormblast Mine has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Stormblast Mine has %1%%% reduced Aura Effect"}}},stats={[1]="lightning_explosion_mine_aura_effect_+%"}},[4568]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Stormblast Mine deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Stormblast Mine deals %1%%% reduced Damage"}}},stats={[1]="lightning_explosion_mine_damage_+%"}},[4569]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Stormblast Mine has %1%%% increased Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Stormblast Mine has %1%%% reduced Throwing Speed"}}},stats={[1]="lightning_explosion_mine_throwing_speed_+%"}},[4570]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Lightning Damage taken while affected by Purity of Lightning"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Lightning Damage taken while affected by Purity of Lightning"}}},stats={[1]="lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning"}},[4571]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Lightning Skill Gems"}}},stats={[1]="lightning_skill_gem_level_+"}},[4572]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Lightning Skills have %1%%% chance to Poison on Hit"}}},stats={[1]="lightning_skills_chance_to_poison_on_hit_%"}},[4573]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lightning Spells have %1%%% of Physical Damage Converted to Lightning Damage"}}},stats={[1]="lightning_spell_physical_damage_%_to_convert_to_lightning"}},[4574]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lightning Tendrils has %1%%% increased Area of Effect per Enemy Hit"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lightning Tendrils has %1%%% reduced Area of Effect per Enemy Hit"}}},stats={[1]="lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit"}},[4575]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Lightning Spire Trap strikes an additional area"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Lightning Spire Trap strikes %1% additional areas"}}},stats={[1]="lightning_tower_trap_additional_number_of_beams"}},[4576]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lightning Spire Trap has %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lightning Spire Trap has %1%%% reduced Cast Speed"}}},stats={[1]="lightning_tower_trap_cast_speed_+%"}},[4577]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lightning Spire Trap has %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lightning Spire Trap has %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="lightning_tower_trap_cooldown_speed_+%"}},[4578]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lightning Spire Trap deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lightning Spire Trap deals %1%%% reduced Damage"}}},stats={[1]="lightning_tower_trap_damage_+%"}},[4579]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lightning Spire Trap has %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lightning Spire Trap has %1%%% reduced Skill Effect Duration"}}},stats={[1]="lightning_tower_trap_duration_+%"}},[4580]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lightning Trap Damage Penetrates %1%%% Lightning Resistance"}}},stats={[1]="lightning_trap_lightning_resistance_penetration_%"}},[4581]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Trap Shock Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Trap Shock Effect"}}},stats={[1]="lightning_trap_shock_effect_+%"}},[4582]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed if Corrupted"}}},stats={[1]="local_attack_and_cast_speed_+%_if_item_corrupted"}},[4583]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack, Cast and Movement Speed during Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack, Cast and Movement Speed during Flask Effect"}}},stats={[1]="local_attack_cast_movement_speed_+%_during_flask_effect"}},[4584]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Increase Attack, Cast and Movement Speed by %1%%% every second during Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Reduce Attack, Cast and Movement Speed %1%%% every second during Flask Effect"}}},stats={[1]="local_attack_cast_movement_speed_+%_per_second_during_flask_effect"}},[4585]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage if Corrupted"}}},stats={[1]="local_attack_damage_+%_if_item_corrupted"}},[4586]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Impale Enemies on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Impale Enemies on Hit with Attacks"}}},stats={[1]="local_attacks_impale_on_hit_%_chance"}},[4587]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks"}}},stats={[1]="local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed"}},[4588]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]="#",[2]="#"}},text="With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"}}},stats={[1]="local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed"}},[4589]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Cause Bleeding on Critical Strike"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"}},text="Cause Bleeding on Critical Strike"}}},stats={[1]="local_bleed_on_critical_strike_chance_%"}},[4590]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can only Socket Corrupted Gems in this item"}}},stats={[1]="local_can_only_socket_corrupted_gems"}},[4591]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Bleeding inflicted with this Weapon to deal 100%% more Damage"}}},stats={[1]="local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon"}},[4592]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Poisons inflicted with this Weapon to deal 100%% more Damage"}}},stats={[1]="local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon"}},[4593]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Poisons inflicted with this Weapon to deal 300%% more Damage"}}},stats={[1]="local_chance_for_poison_damage_+300%_final_inflicted_with_weapon"}},[4594]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="50%% chance to cause Bleeding on Critical Strike"}}},stats={[1]="local_chance_to_bleed_on_crit_50%"}},[4595]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Intimidate Enemies for 4 seconds on Hit"}}},stats={[1]="local_chance_to_intimidate_on_hit_%"}},[4596]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Poison on Hit during Flask effect"}}},stats={[1]="local_chance_to_poison_on_hit_%_during_flask_effect"}},[4597]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks with this Weapon Penetrate %1%%% Chaos Resistance"}}},stats={[1]="local_chaos_penetration_%"}},[4598]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]=1000,[2]=1000}},text="Chill Enemies for %1% second on Hit with this Weapon when in Off Hand"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]=1,[2]="#"}},text="Chill Enemies for %1% seconds on Hit with this Weapon when in Off Hand"}}},stats={[1]="local_chill_on_hit_ms_if_in_off_hand"}},[4599]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Critical Strike Chance if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Critical Strike Chance if Corrupted"}}},stats={[1]="local_critical_strike_chance_+%_if_item_corrupted"}},[4600]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]="#",[2]="#"}},text="Critical Strikes with this Weapon have Culling Strike"}}},stats={[1]="local_crits_have_culling_strike"}},[4601]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]="#",[2]="#"}},text="Hits with this Weapon have Culling Strike if you have dealt a Critical Strike Recently"}}},stats={[1]="local_culling_strike_if_crit_recently"}},[4602]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]=1,[2]="#"}},text="Hits with this Weapon have Culling Strike against Bleeding Enemies"}}},stats={[1]="local_culling_strike_vs_bleeding_enemies"}},[4603]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if Corrupted"}}},stats={[1]="local_damage_+%_if_item_corrupted"}},[4604]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="canonical_line",v="reminderstring"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken if Corrupted"}}},stats={[1]="local_damage_taken_+%_if_item_corrupted"}},[4605]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Curse Enemies with Socketed Curse Gem on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Curse Enemies with Socketed Curse Gem on Hit"}}},stats={[1]="local_display_curse_enemies_with_socketed_curse_on_hit_%_chance"}},[4606]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Every 10 seconds, gain %1%%% of Physical Damage\nas Extra Fire Damage for 4 seconds"}}},stats={[1]="local_display_every_10_seconds_physical_damage_%_to_add_as_fire_for_3_seconds"}},[4607]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Enemies have %1%%% increased Fire and Cold Resistances"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nearby Enemies have %1%%% reduced Fire and Cold Resistances"}}},stats={[1]="local_display_fire_and_cold_resist_debuff"}},[4608]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Power Charge after Spending a total of 200 Mana"}}},stats={[1]="local_display_gain_power_charge_on_spending_mana"}},[4609]={lang={English={[1]={limit={[1]={[1]=1000,[2]=1000}},text="Gain a Void Charge every second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain a Void Charge every %1% seconds"}}},stats={[1]="local_display_grant_void_arrow_every_x_ms"}},[4610]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed for you and nearby Allies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed for you and nearby Allies"}}},stats={[1]="local_display_movement_speed_+%_for_you_and_nearby_allies"}},[4611]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Allies' Action Speed cannot be modified to below base value"}}},stats={[1]="local_display_nearby_allies_action_speed_cannot_be_reduced_below_base"}},[4612]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Allies have %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="local_display_nearby_allies_critical_strike_multiplier_+"}},[4613]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]="#",[2]="#"}},text="Nearby Allies' Damage with Hits is Lucky"}}},stats={[1]="local_display_nearby_allies_extra_damage_rolls"}},[4614]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]="#"}},text="Nearby Allies have Fortify"}}},stats={[1]="local_display_nearby_allies_have_fortify"}},[4615]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies are Intimidated"}}},stats={[1]="local_display_nearby_enemies_are_intimidated"}},[4616]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies cannot deal Critical Strikes"}}},stats={[1]="local_display_nearby_enemies_cannot_crit"}},[4617]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies have %1$+d%% to Chaos Resistance"}}},stats={[1]="local_display_nearby_enemy_chaos_damage_resistance_%"}},[4618]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies have %1$+d%% to Cold Resistance"}}},stats={[1]="local_display_nearby_enemy_cold_damage_resistance_%"}},[4619]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies have %1$+d%% to Fire Resistance"}}},stats={[1]="local_display_nearby_enemy_fire_damage_resistance_%"}},[4620]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies have %1$+d%% to Lightning Resistance"}}},stats={[1]="local_display_nearby_enemy_lightning_damage_resistance_%"}},[4621]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies take %1%%% increased Physical Damage"}}},stats={[1]="local_display_nearby_enemy_physical_damage_taken_+%"}},[4622]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Deathmark"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_deathmark"}},[4623]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Nightblade"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_nightblade"}},[4624]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Enemies inflict Elemental Ailments on you instead of nearby Allies"}}},stats={[1]="local_display_you_get_elemental_ailments_instead_of_allies"}},[4625]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attacks with this Weapon deal Double Damage"}}},stats={[1]="local_double_damage_with_attacks"}},[4626]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating and Energy Shield"}}},stats={[1]="local_evasion_rating_and_energy_shield"}},[4627]={lang={English={[1]={limit={[1]={[1]=200,[2]=200}},text="Consecrated Ground created by this Flask has Tripled Radius"},[2]={limit={[1]={[1]=100,[2]=100}},text="Consecrated Ground created by this Flask has Doubled Radius"},[3]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Radius of Consecrated Ground created by this Flask"}}},stats={[1]="local_flask_area_of_consecrated_ground_+%"}},[4628]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Area of Effect during Flask Effect"}}},stats={[1]="local_flask_area_of_effect_+%_during_flask_effect"}},[4629]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% Chance to avoid being Stunned during Flask Effect"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Stunned during Flask Effect"}}},stats={[1]="local_flask_avoid_stun_chance_%_during_flask_effect"}},[4630]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"}}},stats={[1]="local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect"}},[4631]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance during Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance during Flask Effect"}}},stats={[1]="local_flask_critical_strike_chance_+%_during_flask_effect"}},[4632]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Consecrated Ground created during Effect applies %1%%% increased Damage taken to Enemies"}}},stats={[1]="local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground"}},[4633]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Flask Effect is not removed at Full Mana"}}},stats={[1]="local_flask_effect_not_removed_at_full_mana"}},[4634]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Vaal Souls on use"}}},stats={[1]="local_flask_gain_x_vaal_souls_on_use"}},[4635]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found during Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items found during Flask Effect"}}},stats={[1]="local_flask_item_found_rarity_+%_during_flask_effect"}},[4636]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Taken from Hits is Leeched as Life during Flask Effect"}}},stats={[1]="local_flask_life_leech_on_damage_taken_%_permyriad_during_flask_effect"}},[4637]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeFlasksStillRemovedOnFullLife"},limit={[1]={[1]="#",[2]="#"}},text="Life Recovery from Flasks also applies to Energy Shield during Flask Effect"}}},stats={[1]="local_flask_life_recovery_from_flasks_also_recovers_energy_shield"}},[4638]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second during Flask Effect"}}},stats={[1]="local_flask_life_regeneration_per_minute_%_during_flask_effect"}},[4639]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot gain Mana during effect"}}},stats={[1]="local_flask_no_mana_recovery_during_effect"}},[4640]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]=60}},text="Gain %1% Vaal Soul Per Second during effect"},[2]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=61,[2]="#"}},text="Gain %1% Vaal Souls Per Second during effect"}}},stats={[1]="local_flask_vaal_souls_gained_per_minute_during_effect"}},[4641]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hits with this Weapon can't be Evaded if you have Blocked Recently"}}},stats={[1]="local_hits_with_this_weapon_always_hit_if_have_blocked_recently"}},[4642]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="Immune to Curses if Corrupted"}}},stats={[1]="local_immune_to_curses_if_item_corrupted"}},[4643]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality"}}},stats={[1]="local_item_quality_+"}},[4644]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Item sells for much more to vendors"}}},stats={[1]="local_item_sell_price_doubled"}},[4645]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Properties are doubled while in a Breach"}}},stats={[1]="local_item_stats_are_doubled_in_breach"}},[4646]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSmallPassives"},limit={[1]={[1]="#",[2]="#"}},text="Allocated Small Passive Skills in Radius grant nothing"}}},stats={[1]="local_jewel_allocated_non_notable_passives_in_radius_grant_nothing"}},[4647]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSmallPassives"},limit={[1]={[1]="#",[2]="#"}},text="Grants all bonuses of Unallocated Small Passive Skills in Radius"}}},stats={[1]="local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius"}},[4648]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Left ring slot: Projectiles from Spells cannot Chain"}}},stats={[1]="local_left_ring_slot_projectiles_from_spells_cannot_chain"}},[4649]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Left ring slot: Projectiles from Spells Fork"}}},stats={[1]="local_left_ring_slot_projectiles_from_spells_fork"}},[4650]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life gained for each Blinded Enemy Hit by this Weapon"}}},stats={[1]="local_life_gain_per_target_vs_blinded_enemies"}},[4651]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life gained for each Enemy Hit by this Weapon while you are Leeching"}}},stats={[1]="local_life_gain_per_target_while_leeching"}},[4652]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life"}}},stats={[1]="local_life_leech_from_any_damage_permyriad"}},[4653]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Maim on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=100,[2]="#"}},text="Maim on Hit"}}},stats={[1]="local_maim_on_hit_%"}},[4654]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Mana"}}},stats={[1]="local_mana_leech_from_any_damage_permyriad"}},[4655]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased maximum Energy Shield if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced maximum Energy Shield if Corrupted"}}},stats={[1]="local_maximum_energy_shield_+%_if_item_corrupted"}},[4656]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased maximum Life if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced maximum Life if Corrupted"}}},stats={[1]="local_maximum_life_+%_if_item_corrupted"}},[4657]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With a Ghastly Eye Jewel Socketed, Minions have +%1% to Accuracy Rating"}}},stats={[1]="local_minion_accuracy_rating_with_minion_abyss_jewel_socketed"}},[4658]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if Corrupted"}}},stats={[1]="local_movement_speed_+%_if_item_corrupted"}},[4659]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Critical Strikes do not deal extra Damage during Flask effect"}}},stats={[1]="local_no_critical_strike_multiplier_during_flask_effect"}},[4660]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Poisons you inflict during Flask effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Poisons you inflict during Flask effect"}}},stats={[1]="local_poison_duration_+%_during_flask_effect"}},[4661]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Cause Poison on Critical Strike"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Cause Poison on Critical Strike"}}},stats={[1]="local_poison_on_critical_strike_chance_%"}},[4662]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Always Poison on Hit"}}},stats={[1]="local_poison_on_hit_%"}},[4663]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances if Corrupted"}}},stats={[1]="local_resist_all_elements_%_if_item_corrupted"}},[4664]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Right ring slot: Projectiles from Spells Chain +%1% times"}}},stats={[1]="local_right_ring_slot_number_of_additional_chains_for_spell_projectiles"}},[4665]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Right ring slot: Projectiles from Spells cannot Fork"}}},stats={[1]="local_right_ring_slot_projectiles_from_spells_cannot_fork"}},[4666]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed"}}},stats={[1]="local_ring_attack_speed_+%_final"}},[4667]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nova Spells have %1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nova Spells have %1%%% less Area of Effect"}}},stats={[1]="local_ring_nova_spells_area_of_effect_+%_final"}},[4668]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed AoE Gems"}}},stats={[1]="local_socketed_area_of_effect_gem_quality_+"}},[4669]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Aura Gems"}}},stats={[1]="local_socketed_aura_gem_quality_+"}},[4670]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Bow Gems"}}},stats={[1]="local_socketed_bow_gem_quality_+"}},[4671]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Chaos Gems"}}},stats={[1]="local_socketed_chaos_gem_quality_+"}},[4672]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Cold Gems"}}},stats={[1]="local_socketed_cold_gem_quality_+"}},[4673]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Dexterity Gems"}}},stats={[1]="local_socketed_dexterity_gem_quality_+"}},[4674]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Fire Gems"}}},stats={[1]="local_socketed_fire_gem_quality_+"}},[4675]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Intelligence Gems"}}},stats={[1]="local_socketed_intelligence_gem_quality_+"}},[4676]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Lightning Gems"}}},stats={[1]="local_socketed_lightning_gem_quality_+"}},[4677]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Melee Gems"}}},stats={[1]="local_socketed_melee_gem_quality_+"}},[4678]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Minion Gems"}}},stats={[1]="local_socketed_minion_gem_quality_+"}},[4679]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Projectile Gems"}}},stats={[1]="local_socketed_projectile_gem_quality_+"}},[4680]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Strength Gems"}}},stats={[1]="local_socketed_strength_gem_quality_+"}},[4681]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage if Corrupted"}}},stats={[1]="local_spell_damage_+%_if_item_corrupted"}},[4682]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]="#"}},text="With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells"}}},stats={[1]="local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed"}},[4683]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage Over Time during Flask Effect"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage Over Time during Flask Effect"}}},stats={[1]="local_unique_flask_damage_over_time_+%_during_flask_effect"}},[4684]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUncappedResist"},limit={[1]={[1]=1,[2]="#"}},text="During Flask Effect, %1%%% increased Damage taken of each Element for which your Uncapped Elemental Resistance is lowest"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUncappedResist"},limit={[1]={[1]="#",[2]=-1}},text="During Flask Effect, %1%%% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest"}}},stats={[1]="local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type"}},[4685]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUncappedResist"},limit={[1]={[1]=1,[2]="#"}},text="During Flask Effect, Damage Penetrates %1%%% Resistance of each Element for which your Uncapped Elemental Resistance is highest"}}},stats={[1]="local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type"}},[4686]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Despair Curse Aura during Flask Effect"}}},stats={[1]="local_unique_flask_nearby_enemies_cursed_with_level_x_despair_during_flask_effect"}},[4687]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vaal Skills deal %1%%% increased Damage during effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vaal Skills deal %1%%% reduced Damage during effect"}}},stats={[1]="local_unique_flask_vaal_skill_damage_+%_during_flask_effect"}},[4688]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vaal Skills deal %1%%% more Damage during Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vaal Skills deal %1%%% less Damage during Effect"}}},stats={[1]="local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect"}},[4689]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Vaal Skills used during effect do not apply Soul Gain Prevention"}}},stats={[1]="local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect"}},[4690]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vaal Skills have %1%%% increased Soul Cost during effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vaal Skills have %1%%% reduced Soul Cost during effect"}}},stats={[1]="local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect"}},[4691]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vaal Skills used during effect have %1%%% increased Soul Gain Prevention Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vaal Skills used during effect have %1%%% reduced Soul Gain Prevention Duration"}}},stats={[1]="local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect"}},[4692]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Blight inflicts Withered for %1% seconds"}}},stats={[1]="local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius"}},[4693]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds"}}},stats={[1]="local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius"}},[4694]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Blight has %1%%% increased Hinder Duration"}}},stats={[1]="local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius"}},[4695]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Enemies Hindered by\nBlight take %1%%% increased Chaos Damage"}}},stats={[1]="local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius"}},[4696]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Blight has %1%%% increased Area of Effect after 1 second of Channelling"}}},stats={[1]="local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius"}},[4697]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Caustic Arrow has a %1%%% chance on Hit to Poison Enemies on Caustic Ground"}}},stats={[1]="local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius"}},[4698]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Caustic Arrow deals %1%%% increased Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Dexterity in Radius, Caustic Arrow deals %1%%% reduced Damage over Time"}}},stats={[1]="local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius"}},[4699]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Caustic Arrow deals %1%%% increased Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Dexterity in Radius, Caustic Arrow deals %1%%% reduced Damage with Hits"}}},stats={[1]="local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius"}},[4700]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cold Resistance and Lightning Resistance in Radius are Transformed to increased Melee Damage"}}},stats={[1]="local_unique_jewel_cold_and_lightning_resistance_to_melee_damage"}},[4701]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant Chance to Dodge Attack Hits at %1%%% of its value"}}},stats={[1]="local_unique_jewel_cold_resistance_also_grants_dodge_chance_scaled_%"}},[4702]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Frenzy Charge on Kill"}}},stats={[1]="local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance"}},[4703]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area\nWith at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges"}}},stats={[1]="local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius"}},[4704]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="With at least 40 Dexterity in Radius, Dual Strike has a %1%%% chance\nto deal Double Damage with the Main-Hand Weapon"},[2]={limit={[1]={[1]=100,[2]=100}},text="With at least 40 Dexterity in Radius, Dual Strike deals Double Damage with the Main-Hand Weapon"}}},stats={[1]="local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius"}},[4705]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage\nto surrounding targets"}}},stats={[1]="local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius"}},[4706]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike deal 50%% less Cold Damage"}}},stats={[1]="local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int"}},[4707]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike deal 50%% less Fire Damage"}}},stats={[1]="local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex"}},[4708]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike deal 50%% less Lightning Damage"}}},stats={[1]="local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex"}},[4709]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike cannot choose Cold"}}},stats={[1]="local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius"}},[4710]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike cannot choose Fire"}}},stats={[1]="local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius"}},[4711]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike cannot choose Lightning"}}},stats={[1]="local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius"}},[4712]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fire Resistance and Cold Resistance in Radius are Transformed to increased Spell Damage"}}},stats={[1]="local_unique_jewel_fire_and_cold_resistance_to_spell_damage"}},[4713]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fire Resistance and Lightning Resistance in Radius are Transformed to increased Projectile Attack Damage"}}},stats={[1]="local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage"}},[4714]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Attack Damage at %1%%% of its value"}}},stats={[1]="local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%"}},[4715]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain an Endurance Charge on Kill"}}},stats={[1]="local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance"}},[4716]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Dexterity in Radius, Fire Trap throws up to 1 additional Trap"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Fire Trap throws up to %1% additional Traps"}}},stats={[1]="local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius"}},[4717]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Melee Damage\ndealt by Frost Blades Penetrates %1%%% Cold Resistance"}}},stats={[1]="local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius"}},[4718]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Frost Blades has %1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Dexterity in Radius, Frost Blades has %1%%% reduced Projectile Speed"}}},stats={[1]="local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius"}},[4719]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Intelligence in Radius, Frostbolt fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Frostbolt fires %1% additional Projectiles"}}},stats={[1]="local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius"}},[4720]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, Frostbolt Projectiles gain %1%%% increased Projectile Speed per second"},[2]={limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Intelligence in Radius, Frostbolt Projectiles gain %1%%% reduced Projectile Speed per second"}}},stats={[1]="local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius"}},[4721]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With 40 Intelligence in Radius, Glacial Cascade has an additional Burst"},[2]={limit={[1]={[1]=2,[2]="#"}},text="With 40 Intelligence in Radius, Glacial Cascade has %1% additional Bursts"}}},stats={[1]="local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius"}},[4722]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 Intelligence in Radius, %1%%% of Glacial Cascade Physical Damage\nConverted to Cold Damage"}}},stats={[1]="local_unique_jewel_glacial_cascade_physical_damage_%_to_convert_to_cold_with_40_int_in_radius"}},[4723]={lang={English={[1]={limit={[1]={[1]=10,[2]=19}},text="With at least 40 Dexterity in Radius, Ice Shot Pierces an additional Target"},[2]={[1]={k="divide_by_ten_0dp",v=1},limit={[1]={[1]=20,[2]="#"}},text="With at least 40 Dexterity in Radius, Ice Shot Pierces %1% additional Targets"}}},stats={[1]="local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius"}},[4724]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Ice Shot has %1%%% increased Area of Effect"}}},stats={[1]="local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius"}},[4725]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Dexterity in Radius, Ice Shot Pierces an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="With at least 40 Dexterity in Radius, Ice Shot Pierces %1% additional Targets"}}},stats={[1]="local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius"}},[4726]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Spell Damage at %1%%% of its value"}}},stats={[1]="local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_%"}},[4727]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Power Charge on Kill"}}},stats={[1]="local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance"}},[4728]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, each Lightning Tendrils Repeat has %1%%% increased Area of Effect per Enemy Hit"}}},stats={[1]="local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius"}},[4729]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Intelligence in Radius, Magma Orb fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Magma Orb fires %1% additional Projectiles"}}},stats={[1]="local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius"}},[4730]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, Magma Orb\nhas %1%%% increased Area of Effect per Chain"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Intelligence in Radius, Magma Orb\nhas %1%%% reduced Area of Effect per Chain"}}},stats={[1]="local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius"}},[4731]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Strength in Radius, Molten Strike fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Strength in Radius, Molten Strike fires %1% additional Projectiles"}}},stats={[1]="local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius"}},[4732]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Strength in Radius, Molten Strike has %1%%% increased Area of Effect"}}},stats={[1]="local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius"}},[4733]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of non-Keystone Passive Skills in Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of non-Keystone Passive Skills in Radius"}}},stats={[1]="local_unique_jewel_non_keystone_passive_in_radius_effect_+%"}},[4734]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Notable Passive Skills in Radius grant nothing"}}},stats={[1]="local_unique_jewel_notable_passive_in_radius_does_nothing"}},[4735]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Galvanic Arrow deals %1%%% increased Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Dexterity in Radius, Galvanic Arrow deals %1%%% increased Area Damage"}}},stats={[1]="local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius"}},[4736]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Intelligence in Radius, Spark fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Spark fires %1% additional Projectiles"}}},stats={[1]="local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius"}},[4737]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle"}}},stats={[1]="local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius"}},[4738]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Dexterity and Strength in Radius, Spectral Shield Throw Chains +%1% times"}}},stats={[1]="local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius"}},[4739]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires Shard Projectiles when Chaining"}}},stats={[1]="local_unique_jewel_spectral_shield_throw_fire_shards_on_chain_with_total_40_str_+_dex_in_radius"}},[4740]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires %1%%% more Shard Projectiles"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires %1%%% less Shard Projectiles"}}},stats={[1]="local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius"}},[4741]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Spectral Throw has %1%%% chance on Hit to give a Vaal soul to Vaal Spectral Throw"}}},stats={[1]="local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius"}},[4742]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSoulEater"},limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, Raised Spectres have a %1%%% chance to gain Soul Eater for 20 seconds on Kill"}}},stats={[1]="local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius"}},[4743]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Split Arrow fires Projectiles in Parallel"}}},stats={[1]="local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius"}},[4744]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Viper Strike has a %1%%% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit"}}},stats={[1]="local_unique_jewel_viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy_with_50_dex_in_radius"}},[4745]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Raised\nZombies' Slam Attack has %1%%% increased Cooldown Recovery Speed"}}},stats={[1]="local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius"}},[4746]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Raised Zombies' Slam\nAttack deals %1%%% increased Damage"}}},stats={[1]="local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius"}},[4747]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gains no Charges during effect of any Soul Ripper Flask"}}},stats={[1]="local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect"}},[4748]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose all Frenzy, Endurance, and Power Charges when you Move"}}},stats={[1]="lose_all_charges_on_starting_movement"}},[4749]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Lose a Power Charge each second if you have not Detonated Mines Recently"}}},stats={[1]="lose_power_charge_each_second_if_not_detonated_mines_recently"}},[4750]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain Magic Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain Magic Enemies"}}},stats={[1]="magic_monster_dropped_item_rarity_+%"}},[4751]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Magma Orb fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Magma Orb fires %1% additional Projectiles"}}},stats={[1]="magma_orb_number_of_additional_projectiles"}},[4752]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Magma Orb has %1%%% increased Area of Effect per Chain"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Magma Orb has %1%%% reduced Area of Effect per Chain"}}},stats={[1]="magma_orb_skill_area_of_effect_+%_per_bounce"}},[4753]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Maim"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Maim"}}},stats={[1]="maim_effect_+%"}},[4754]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Maim Enemies on Critical Strike with Attacks"}}},stats={[1]="maim_on_crit_%_with_attacks"}},[4755]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]=99}},text="Attacks have %1%%% chance to Maim on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=100,[2]="#"}},text="Attacks always Maim on Hit"}}},stats={[1]="maim_on_hit_%"}},[4756]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Pestilent Strike has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pestilent Strike has %1%%% reduced Area of Effect"}}},stats={[1]="mamba_strike_area_of_effect_+%"}},[4757]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Pestilent Strike deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pestilent Strike deals %1%%% reduced Damage"}}},stats={[1]="mamba_strike_damage_+%"}},[4758]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Pestilent Strike has %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pestilent Strike has %1%%% reduced Duration"}}},stats={[1]="mamba_strike_duration_+%"}},[4759]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills that throw Traps or Mines"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills that throw Traps or Mines"}}},stats={[1]="mana_cost_+%_for_trap_and_mine_skills"}},[4760]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills that throw Traps"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills that throw Traps"}}},stats={[1]="mana_cost_+%_for_trap_skills"}},[4761]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills per 10 Devotion"}}},stats={[1]="mana_cost_+%_per_10_devotion"}},[4762]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Lose %1% Mana per Second"}}},stats={[1]="mana_degeneration_per_minute"}},[4763]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Lose %1%%% of Mana per Second"}}},stats={[1]="mana_degeneration_per_minute_%"}},[4764]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Mana Flasks gain %1% Charge every 3 seconds"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Mana Flasks gain %1% Charges every 3 seconds"}}},stats={[1]="mana_flasks_gain_X_charges_every_3_seconds"}},[4765]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained for each Enemy Hit by your Spells"}}},stats={[1]="mana_gained_on_spell_hit"}},[4766]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained for each Cursed Enemy Hit by your Spells"}}},stats={[1]="mana_gained_on_spell_hit_vs_cursed_enemies"}},[4767]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Mana per Power Charge"}}},stats={[1]="mana_leech_from_attack_damage_permyriad_per_power_charge"}},[4768]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Lightning Damage is Leeched as Mana while affected by Wrath"}}},stats={[1]="mana_leech_from_lightning_damage_permyriad_while_affected_by_wrath"}},[4769]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Mana against Frozen Enemies"}}},stats={[1]="mana_leech_permyriad_vs_frozen_enemies"}},[4770]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Maximum Mana per Level"}}},stats={[1]="mana_per_level"}},[4771]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of your maximum Mana when you Block"}}},stats={[1]="mana_%_gained_on_block"}},[4772]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Maximum Mana as Extra Maximum Energy Shield while you have at least 150 Devotion"}}},stats={[1]="mana_%_to_add_as_energy_shield_at_devotion_threshold"}},[4773]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Mana per second if all Equipped Items are Corrupted"}}},stats={[1]="mana_recharge_rate_per_minute_with_all_corrupted_equipped_items"}},[4774]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Recovery Rate during Effect of any Mana Flask"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Recovery Rate during Effect of any Mana Flask"}}},stats={[1]="mana_recovery_rate_+%_while_affected_by_a_mana_flask"}},[4775]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Recovery Rate while affected by Clarity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Recovery Rate while affected by Clarity"}}},stats={[1]="mana_recovery_rate_+%_while_affected_by_clarity"}},[4776]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate per 1%% Chance to Block Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate per 1%% Chance to Block Spell Damage"}}},stats={[1]="mana_regeneration_rate_+%_per_1%_spell_block_chance"}},[4777]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per second if you've Hit an Enemy Recently"}}},stats={[1]="mana_regeneration_rate_per_minute_if_enemy_hit_recently"}},[4778]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Mana per second if you've used a Movement Skill Recently"}}},stats={[1]="mana_regeneration_rate_per_minute_if_used_movement_skill_recently"}},[4779]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per Second per 10 Devotion"}}},stats={[1]="mana_regeneration_rate_per_minute_per_10_devotion"}},[4780]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per Second per Power Charge"}}},stats={[1]="mana_regeneration_rate_per_minute_per_power_charge"}},[4781]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Mana per second if you've Hit an Enemy Recently"}}},stats={[1]="mana_regeneration_rate_per_minute_%_if_enemy_hit_recently"}},[4782]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Mana per second for each Summoned Totem"}}},stats={[1]="mana_regeneration_rate_per_minute_%_per_active_totem"}},[4783]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per Second while Dual Wielding"}}},stats={[1]="mana_regeneration_rate_per_minute_while_dual_wielding"}},[4784]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per Second while holding a Shield"}}},stats={[1]="mana_regeneration_rate_per_minute_while_holding_shield"}},[4785]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per Second while on Consecrated Ground"}}},stats={[1]="mana_regeneration_rate_per_minute_while_on_consecrated_ground"}},[4786]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per second while wielding a Staff"}}},stats={[1]="mana_regeneration_rate_per_minute_while_wielding_staff"}},[4787]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Mana per Second while you have Avian's Flight"}}},stats={[1]="mana_regeneration_rate_per_minute_while_you_have_avians_flight"}},[4788]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate if you've Hit a Cursed Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate if you've Hit a Cursed Enemy Recently"}}},stats={[1]="mana_regeneration_rate_+%_if_hit_cursed_enemy_recently"}},[4789]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate per Raised Spectre"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate per Raised Spectre"}}},stats={[1]="mana_regeneration_rate_+%_per_raised_spectre"}},[4790]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate while moving"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate while moving"}}},stats={[1]="mana_regeneration_rate_+%_while_moving"}},[4791]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Reservation of Skills that throw Mines"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Reservation of Skills that throw Mines"}}},stats={[1]="mana_reservation_+%_with_skills_that_throw_mines"}},[4792]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Reserved per 250 total Attributes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Reserved per 250 total Attributes"}}},stats={[1]="mana_reservation_+%_per_250_total_attributes"}},[4793]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Manifest Dancing Dervish also manifests a copy of Dancing Dervish"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Manifest Dancing Dervish also manifests %1% copies of Dancing Dervish"}}},stats={[1]="manifest_dancing_dervish_number_of_additional_copies"}},[4794]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Rare Packs to have an additional Rare Monster"}}},stats={[1]="map_additional_rare_in_rare_pack_%_chance"}},[4795]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Synthesised Rare Packs to have an additional Rare Monster"}}},stats={[1]="map_additional_rare_in_synthesised_rare_pack_%_chance"}},[4796]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains %1% additional Red Beast"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Red Beasts"}}},stats={[1]="map_additional_red_beasts"}},[4797]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Map has %1% additional random Modifier"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Map has %1% additional random Modifiers"}}},stats={[1]="map_adds_X_extra_synthesis_mods"}},[4798]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Map has %1% additional Synthesis Global Modifier"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Map has %1% additional Synthesis Global Modifiers"}}},stats={[1]="map_adds_X_extra_synthesis_special_mods"}},[4799]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area is influenced by The Shaper"},[2]={limit={[1]={[1]=2,[2]=2}},text="Area is influenced by The Elder"}}},stats={[1]="map_atlas_influence_type"}},[4800]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Arcanist's Strongbox"}}},stats={[1]="map_area_contains_arcanists_strongbox"}},[4801]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Ambush"}}},stats={[1]="map_area_contains_avatar_of_ambush"}},[4802]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Anarchy"}}},stats={[1]="map_area_contains_avatar_of_anarchy"}},[4803]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Beyond"}}},stats={[1]="map_area_contains_avatar_of_beyond"}},[4804]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Bloodlines"}}},stats={[1]="map_area_contains_avatar_of_bloodlines"}},[4805]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Breach"}}},stats={[1]="map_area_contains_avatar_of_breach"}},[4806]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Domination"}}},stats={[1]="map_area_contains_avatar_of_domination"}},[4807]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Essence"}}},stats={[1]="map_area_contains_avatar_of_essence"}},[4808]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Invasion"}}},stats={[1]="map_area_contains_avatar_of_invasion"}},[4809]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Nemesis"}}},stats={[1]="map_area_contains_avatar_of_nemesis"}},[4810]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Onslaught"}}},stats={[1]="map_area_contains_avatar_of_onslaught"}},[4811]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Perandus"}}},stats={[1]="map_area_contains_avatar_of_perandus"}},[4812]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Prophecy"}}},stats={[1]="map_area_contains_avatar_of_prophecy"}},[4813]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Rampage"}}},stats={[1]="map_area_contains_avatar_of_rampage"}},[4814]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Talisman"}}},stats={[1]="map_area_contains_avatar_of_talisman"}},[4815]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Tempest"}}},stats={[1]="map_area_contains_avatar_of_tempest"}},[4816]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Torment"}}},stats={[1]="map_area_contains_avatar_of_torment"}},[4817]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Warbands"}}},stats={[1]="map_area_contains_avatar_of_warbands"}},[4818]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Cartographer's Strongbox"}}},stats={[1]="map_area_contains_cartographers_strongbox"}},[4819]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Perandus Treasury"}}},stats={[1]="map_area_contains_currency_chest"}},[4820]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Gemcutter's Strongbox"}}},stats={[1]="map_area_contains_gemcutters_strongbox"}},[4821]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Grandmaster Ally"}}},stats={[1]="map_area_contains_grandmaster_ally"}},[4822]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Perandus Jewellery Box"}}},stats={[1]="map_area_contains_jewellery_chest"}},[4823]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Perandus Archive"}}},stats={[1]="map_area_contains_map_chest"}},[4824]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Perandus Coffer"}}},stats={[1]="map_area_contains_perandus_coin_chest"}},[4825]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Tormented Embezzler"}}},stats={[1]="map_area_contains_tormented_embezzler"}},[4826]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Tormented Seditionist"}}},stats={[1]="map_area_contains_tormented_seditionist"}},[4827]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Tormented Vaal Cultist"}}},stats={[1]="map_area_contains_tormented_vaal_cultist"}},[4828]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Perandus Locker"}}},stats={[1]="map_area_contains_unique_item_chest"}},[4829]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Unique Strongbox"}}},stats={[1]="map_area_contains_unique_strongbox"}},[4830]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Clusters of Mysterious Barrels"}}},stats={[1]="map_area_contains_x_additional_clusters_of_beacon_barrels"}},[4831]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Clusters of Mysterious Barrels"}}},stats={[1]="map_area_contains_x_additional_clusters_of_bloodworm_barrels"}},[4832]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Clusters of Mysterious Barrels"}}},stats={[1]="map_area_contains_x_additional_clusters_of_explosive_barrels"}},[4833]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is Overgrown with Caustic Plants"}}},stats={[1]="map_area_contains_x_additional_clusters_of_explosive_eggs"}},[4834]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Clusters of Mysterious Barrels"}}},stats={[1]="map_area_contains_x_additional_clusters_of_parasite_barrels"}},[4835]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Clusters of Mysterious Barrels"}}},stats={[1]="map_area_contains_x_additional_clusters_of_volatile_barrels"}},[4836]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Clusters of Mysterious Barrels"}}},stats={[1]="map_area_contains_x_additional_clusters_of_wealthy_barrels"}},[4837]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Beyond Portals have a %1%%% chance to spawn an additional Beyond Demon"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Beyond Portals spawn an additional Beyond Demon"}}},stats={[1]="map_beyond_portal_spawn_additional_demon_%_chance"}},[4838]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for Blight Chests to drop an additional Reward"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Blight Chests drop an additional Reward"}}},stats={[1]="map_blight_chest_%_chance_for_additional_drop"}},[4839]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cost of Building and Upgrading Towers"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cost of Building and Upgrading Towers"}}},stats={[1]="map_blight_tower_cost_+%"}},[4840]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="When a Bloodline Pack is Slain, it drops a Currency Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="When a Bloodline Pack is Slain, it drops %1% Currency Items"}}},stats={[1]="map_bloodline_packs_drop_x_additional_currency_items"}},[4841]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="When a Bloodline Pack is Slain, it drops a Rare Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="When a Bloodline Pack is Slain, it drops %1% Rare Items"}}},stats={[1]="map_bloodline_packs_drop_x_additional_rare_items"}},[4842]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss is accompanied by Bodyguards"}}},stats={[1]="map_boss_accompanied_by_bodyguards"}},[4843]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss is accompanied by a mysterious Harbinger"}}},stats={[1]="map_boss_accompanied_by_harbinger"}},[4844]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items dropped by Unique Boss"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items dropped by Unique Boss"}}},stats={[1]="map_boss_dropped_item_quantity_+%"}},[4845]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Unique Boss drops %1% additional Unique Item"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Unique Boss drops %1% additional Unique Items"}}},stats={[1]="map_boss_dropped_unique_items_+"}},[4846]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss drops additional Currency Shards"}}},stats={[1]="map_boss_drops_additional_currency_shards"}},[4847]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss drops Corrupted Items"}}},stats={[1]="map_boss_drops_corrupted_items"}},[4848]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Unique Boss drops an additional Vaal Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss drops %1% additional Vaal Items"}}},stats={[1]="map_boss_drops_x_additional_vaal_items"}},[4849]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Breaches each contain a Breachlord"}}},stats={[1]="map_breach_has_boss"}},[4850]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Breaches contain a Breachlord's Clasped Hand"}}},stats={[1]="map_breach_has_large_chest"}},[4851]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Breaches have %1%%% increased Monster density"}}},stats={[1]="map_breach_monster_quantity_+%"}},[4852]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Breach"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Breaches"}}},stats={[1]="map_contains_additional_breaches"}},[4853]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Chrysalis Talisman"}}},stats={[1]="map_contains_additional_chrysalis_talisman"}},[4854]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Clutching Talisman"}}},stats={[1]="map_contains_additional_clutching_talisman"}},[4855]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Fangjaw Talisman"}}},stats={[1]="map_contains_additional_fangjaw_talisman"}},[4856]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Mandible Talisman"}}},stats={[1]="map_contains_additional_mandible_talisman"}},[4857]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Monsters that deal Chaos Damage"}}},stats={[1]="map_contains_additional_packs_of_chaos_monsters"}},[4858]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Monsters that deal Cold Damage"}}},stats={[1]="map_contains_additional_packs_of_cold_monsters"}},[4859]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Monsters that deal Fire Damage"}}},stats={[1]="map_contains_additional_packs_of_fire_monsters"}},[4860]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Monsters that deal Lightning Damage"}}},stats={[1]="map_contains_additional_packs_of_lightning_monsters"}},[4861]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Monsters that deal Physical Damage"}}},stats={[1]="map_contains_additional_packs_of_physical_monsters"}},[4862]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Corrupted Vaal Monsters"}}},stats={[1]="map_contains_additional_packs_of_vaal_monsters"}},[4863]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Three Rat Talisman"}}},stats={[1]="map_contains_additional_three_rat_talisman"}},[4864]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Tormented Betrayer"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Tormented Betrayers"}}},stats={[1]="map_contains_additional_tormented_betrayers"}},[4865]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Tormented Graverobber"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Tormented Graverobbers"}}},stats={[1]="map_contains_additional_tormented_graverobbers"}},[4866]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Tormented Heretic"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Tormented Heretics"}}},stats={[1]="map_contains_additional_tormented_heretics"}},[4867]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Unique Talisman"}}},stats={[1]="map_contains_additional_unique_talisman"}},[4868]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Writhing Talisman"}}},stats={[1]="map_contains_additional_writhing_talisman"}},[4869]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Chayula Breach"}}},stats={[1]="map_contains_chayula_breach"}},[4870]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="A Strongbox in this Area is Corrupted"}}},stats={[1]="map_contains_corrupted_strongbox"}},[4871]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains Creeping Agony"}}},stats={[1]="map_contains_creeping_agony"}},[4872]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Keepers of the Trove Bloodline Pack"}}},stats={[1]="map_contains_keepers_of_the_trove_bloodline_pack"}},[4873]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Forsaken Master"}}},stats={[1]="map_contains_master"}},[4874]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains Yama the White"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains Yama the Generous"}}},stats={[1]="map_contains_nevalis_monkey"}},[4875]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="At least one Perandus Chest is guarded by a Unique Monster"}}},stats={[1]="map_contains_perandus_boss"}},[4876]={lang={English={[1]={limit={[1]={[1]=2,[2]=2}},text="Area contains a Rare Monster carrying a Tier 2 Talisman"},[2]={limit={[1]={[1]=3,[2]=3}},text="Area contains a Unique Monster carrying a Tier 3 Talisman"}}},stats={[1]="map_contains_talisman_boss_with_higher_tier"}},[4877]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]="#"}},text="Area contains 3 additional Magic Packs which\nhave %1%%% increased Attack, Cast and Movement Speed, and drop %2%%% more items"},[2]={[1]={k="negate",v=1},[2]={k="negate",v=2},limit={[1]={[1]="#",[2]=-1},[2]={[1]="#",[2]=-1}},text="Area contains 3 additional Magic Packs which\nhave %1%%% reduced Attack, Cast and Movement Speed, and drop %2%%% less items"}}},stats={[1]="map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+%",[2]="map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final"}},[4878]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Uul-Netol Breach"}}},stats={[1]="map_contains_uul_netol_breach"}},[4879]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Magic Pack of Wealth"}}},stats={[1]="map_contains_wealthy_pack"}},[4880]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Animated Weapon Packs"}}},stats={[1]="map_contains_x_additional_animated_weapon_packs"}},[4881]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Monsters that Heal"}}},stats={[1]="map_contains_x_additional_healing_packs"}},[4882]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Magic Monster pack"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Magic Monster packs"}}},stats={[1]="map_contains_x_additional_magic_packs"}},[4883]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional Normal Monsters"}}},stats={[1]="map_contains_x_additional_normal_packs"}},[4884]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains hunted traitors"}}},stats={[1]="map_contains_x_additional_packs_on_their_own_team"}},[4885]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional Monsters that Convert when Killed"}}},stats={[1]="map_contains_x_additional_packs_that_convert_on_death"}},[4886]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Packs with Mirrored Rare Monsters"}}},stats={[1]="map_contains_x_additional_packs_with_mirrored_rare_monsters"}},[4887]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Poisonous Monsters"}}},stats={[1]="map_contains_x_additional_poison_packs"}},[4888]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional pack with a Rare monster"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional packs with a Rare monster"}}},stats={[1]="map_contains_x_additional_rare_packs"}},[4889]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% fewer Portals to Area"}}},stats={[1]="map_contains_x_fewer_portals"}},[4890]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Rare Monster with Inner Treasure"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% Rare Monsters with Inner Treasure"}}},stats={[1]="map_area_contains_x_rare_monsters_with_inner_treasure"}},[4891]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional waves of Ghosts"}}},stats={[1]="map_cowards_trial_extra_ghosts"}},[4892]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional waves of Oriathan Zombies"}}},stats={[1]="map_cowards_trial_extra_oriath_citizens"}},[4893]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional waves of Phantasms"}}},stats={[1]="map_cowards_trial_extra_phantasms"}},[4894]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional waves of Raging Spirits"}}},stats={[1]="map_cowards_trial_extra_raging_spirits"}},[4895]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional waves of Bone Rhoas"}}},stats={[1]="map_cowards_trial_extra_rhoas"}},[4896]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional waves of Ravager Maws"}}},stats={[1]="map_cowards_trial_extra_skeleton_cannons"}},[4897]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional waves of Zombies"}}},stats={[1]="map_cowards_trial_extra_zombies"}},[4898]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players deal %1%%% increased Damage for each Poison on them"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players deal %1%%% reduced Damage for each Poison on them"}}},stats={[1]="map_damage_+%_per_poison_stack"}},[4899]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="While on Elemental Ground, Players have %1%%% increased Damage of the associated Damage Type"}}},stats={[1]="map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on"}},[4900]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players take %1%%% increased Damage from Monsters from Beyond"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players take %1%%% reduced Damage from Monsters from Beyond"}}},stats={[1]="map_damage_taken_+%_from_beyond_monsters"}},[4901]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players take %1%%% increased Damage while stationary"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players take %1%%% reduced Damage while stationary"}}},stats={[1]="map_damage_taken_while_stationary_+%"}},[4902]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players deal %1%%% increased Damage while stationary"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players deal %1%%% reduced Damage while stationary"}}},stats={[1]="map_damage_while_stationary_+%"}},[4903]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Areas contain deposits of Voltaxic Sulphite"}}},stats={[1]="map_delve_rules"}},[4904]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]=20},[3]={[1]=0,[2]=99},[4]={[1]=1,[2]="#"}},text="Area is Alluring"},[2]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]=20},[3]={[1]=100,[2]="#"},[4]={[1]=1,[2]="#"}},text="Area is always Alluring"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]=20},[3]={[1]=0,[2]=99},[4]={[1]="#",[2]=-1}},text="Area is Repulsive"},[4]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]=20},[3]={[1]=100,[2]="#"},[4]={[1]="#",[2]=-1}},text="Area is always Repulsive"},[5]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=21,[2]=40},[3]={[1]=0,[2]=99},[4]={[1]=1,[2]="#"}},text="Area is very Alluring"},[6]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=21,[2]=40},[3]={[1]=100,[2]="#"},[4]={[1]=1,[2]="#"}},text="Area is always very Alluring"},[7]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=21,[2]=40},[3]={[1]=0,[2]=99},[4]={[1]="#",[2]=-1}},text="Area is very Repulsive"},[8]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=21,[2]=40},[3]={[1]=100,[2]="#"},[4]={[1]="#",[2]=-1}},text="Area is always very Repulsive"},[9]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=41,[2]=60},[3]={[1]=0,[2]=99},[4]={[1]=1,[2]="#"}},text="Area is extremely Alluring"},[10]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=41,[2]=60},[3]={[1]=100,[2]="#"},[4]={[1]=1,[2]="#"}},text="Area is always extremely Alluring"},[11]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=41,[2]=60},[3]={[1]=0,[2]=99},[4]={[1]="#",[2]=-1}},text="Area is extremely Repulsive"},[12]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=41,[2]=60},[3]={[1]=100,[2]="#"},[4]={[1]="#",[2]=-1}},text="Area is always extremely Repulsive"},[13]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=61,[2]=80},[3]={[1]=0,[2]=99},[4]={[1]=1,[2]="#"}},text="Area is incredibly Alluring"},[14]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=61,[2]=80},[3]={[1]=100,[2]="#"},[4]={[1]=1,[2]="#"}},text="Area is always incredibly Alluring"},[15]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=61,[2]=80},[3]={[1]=0,[2]=99},[4]={[1]="#",[2]=-1}},text="Area is incredibly Repulsive"},[16]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=61,[2]=80},[3]={[1]=100,[2]="#"},[4]={[1]="#",[2]=-1}},text="Area is always incredibly Repulsive"},[17]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=81,[2]=100},[3]={[1]=0,[2]=99},[4]={[1]=1,[2]="#"}},text="Area is alluringly Alluring"},[18]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=81,[2]=100},[3]={[1]=100,[2]="#"},[4]={[1]=1,[2]="#"}},text="Area is always alluringly Alluring"},[19]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=81,[2]=100},[3]={[1]=0,[2]=99},[4]={[1]="#",[2]=-1}},text="Area is alluringly Repulsive"},[20]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=81,[2]=100},[3]={[1]=100,[2]="#"},[4]={[1]="#",[2]=-1}},text="Area is always alluringly Repulsive"}}},stats={[1]="map_fishy_effect_0",[2]="map_fishy_effect_1",[3]="map_fishy_effect_2",[4]="map_fishy_effect_3"}},[4905]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strongbox Monsters are Enraged"}}},stats={[1]="map_display_strongbox_monsters_are_enraged"}},[4906]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Divination Cards found in Area"}}},stats={[1]="map_divination_card_drop_chance_+%"}},[4907]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players gain %1%%% chance to Dodge Attack Hits while under a Shrine Effect"}}},stats={[1]="map_player_dodge_chance_%_during_shrine_effect"}},[4908]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Duplicate %1% Rare Monsters"}}},stats={[1]="map_duplicate_x_rare_monsters"}},[4909]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Duplicate up to %1% Synthesised Rare Monsters"}}},stats={[1]="map_duplicate_x_synthesised_rare_monsters"}},[4910]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Map is occupied by The Enslaver"},[2]={limit={[1]={[1]=2,[2]=2}},text="Map is occupied by The Eradicator"},[3]={limit={[1]={[1]=3,[2]=3}},text="Map is occupied by The Constrictor"},[4]={limit={[1]={[1]=4,[2]=4}},text="Map is occupied by The Purifier"}}},stats={[1]="map_elder_boss_variation"}},[4911]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Rare Elder Items found in Area"}}},stats={[1]="map_elder_rare_chance_+%"}},[4912]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Found Items drop Identified in Area"}}},stats={[1]="map_equipment_drops_identified"}},[4913]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters Imprisoned by Essences have a %1%%% chance to contain an additional Remnant of Corruption"}}},stats={[1]="map_essence_monolith_contains_additional_essence_of_corruption"}},[4914]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters Imprisoned by Essences have a %1%%% chance to contain a Remnant of Corruption"}}},stats={[1]="map_essence_monolith_contains_essence_of_corruption_%"}},[4915]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Essences found in this Area are Corrupted"}}},stats={[1]="map_essence_monsters_are_corrupted"}},[4916]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Imprisoned Monsters have an additional Essence"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Imprisoned Monsters have %1% additional Essences"}}},stats={[1]="map_essence_monsters_have_additional_essences"}},[4917]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Essences found in this Area are a higher level"}}},stats={[1]="map_essence_monsters_higher_tier"}},[4918]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Essence"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Essences"}}},stats={[1]="map_extra_monoliths"}},[4919]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="An additional Currency Item drops when the first Invasion Boss is slain"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1% additional Currency Items drops when the first Invasion Boss is slain"}}},stats={[1]="map_first_invasion_boss_killed_drops_x_additional_currency"}},[4920]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="The first Strongbox Opened in this Area is guarded by an additional Rare Monster"},[2]={limit={[1]={[1]="#",[2]="#"}},text="The first Strongbox Opened in this Area is guarded by %1% additional Rare Monsters"}}},stats={[1]="map_first_strongbox_contains_x_additional_rare_monsters"}},[4921]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="A Beyond Unique drops when the first Unique Monster from Beyond is slain"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1% Beyond Uniques drop when the first Unique Monster from Beyond is slain"}}},stats={[1]="map_first_unique_beyond_boss_slain_drops_x_beyond_uniques"}},[4922]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1% Flask Charges recovered every 3 seconds"}}},stats={[1]="map_flask_charges_recovered_per_3_seconds_%"}},[4923]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Players gain Onslaught for %1% seconds when they Kill a Rare Monster"}}},stats={[1]="map_gain_onslaught_for_x_ms_on_killing_rare_monster"}},[4924]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains Slipstreams"}}},stats={[1]="map_ground_haste_action_speed_+%"}},[4925]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Harbingers drop additional Currency Shards"}}},stats={[1]="map_harbingers_drops_additional_currency_shards"}},[4926]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Areas can contain Essences"}}},stats={[1]="map_has_monoliths"}},[4927]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Map has %1%%% Quality"}}},stats={[1]="map_has_x%_quality"}},[4928]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Imprisoned Monsters have %1%%% increased Action Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Imprisoned Monsters have %1%%% reduced Action Speed"}}},stats={[1]="map_imprisoned_monsters_action_speed_+%"}},[4929]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Imprisoned Monsters deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Imprisoned Monsters deal %1%%% reduced Damage"}}},stats={[1]="map_imprisoned_monsters_damage_+%"}},[4930]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Imprisoned Monsters take %1%%% increased Damage"}}},stats={[1]="map_imprisoned_monsters_damage_taken_+%"}},[4931]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Invasion Bosses are Duplicated"}}},stats={[1]="map_invasion_bosses_are_twinned"}},[4932]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Invasion Bosses drop an additional Vaal Orb"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Invasion Bosses drop %1% additional Vaal Orbs"}}},stats={[1]="map_invasion_bosses_drop_x_additional_vaal_orbs"}},[4933]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Items dropped by Invasion Bosses are fully Linked"}}},stats={[1]="map_invasion_bosses_dropped_items_are_fully_linked"}},[4934]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Items dropped by Invasion Bosses have an additional Socket"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Items dropped by Invasion Bosses have %1% additional Sockets"}}},stats={[1]="map_invasion_bosses_dropped_items_have_x_additional_sockets"}},[4935]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Invasion Bosses are guarded by a Magic Pack"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Invasion Bosses are guarded by %1% Magic Packs"}}},stats={[1]="map_invasion_monsters_guarded_by_x_magic_packs"}},[4936]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Map's Quality also applies to Rarity of Items found"}}},stats={[1]="map_item_drop_quality_also_applies_to_map_item_drop_rarity"}},[4937]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% increased Rarity of Items Found per 15 Rampage Kills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% reduced Rarity of Items Found per 15 Rampage Kills"}}},stats={[1]="map_item_found_rarity_+%_per_15_rampage_stacks"}},[4938]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters with Silver Coins have %1%%% increased Quantity of Items Dropped, and are highlighted"}}},stats={[1]="map_item_quantity_from_monsters_that_drop_silver_coin_+%"}},[4939]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Leaguestone"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Leaguestones"}}},stats={[1]="map_leaguestone_area_contains_x_additional_leaguestones"}},[4940]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Monsters from Beyond have %1%%% more Quantity and Rarity of Dropped Items"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters from Beyond have %1%%% less Quantity and Rarity of Dropped Items"}}},stats={[1]="map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final"}},[4941]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is controlled by a Warband Boss"}}},stats={[1]="map_leaguestone_contains_warband_leader"}},[4942]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area is inhabited by Redblade Warbands"},[2]={limit={[1]={[1]=2,[2]=2}},text="Area is inhabited by Mutewind Warbands"},[3]={limit={[1]={[1]=3,[2]=3}},text="Area is inhabited by Brinerot Warbands"},[4]={limit={[1]={[1]=4,[2]=4}},text="Area is inhabited by Renegade Warbands"}}},stats={[1]="map_leaguestone_explicit_warband_type_override"}},[4943]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% More Quantity of Items Dropped by Imprisoned Monsters"}}},stats={[1]="map_leaguestone_imprisoned_monsters_item_quantity_+%_final"}},[4944]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Rarity of Items Dropped by Imprisoned Monsters"}}},stats={[1]="map_leaguestone_imprisoned_monsters_item_rarity_+%_final"}},[4945]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Invasion Bosses have %1%%% more Quantity and Rarity of dropped Items"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Invasion Bosses have %1%%% less Quantity and Rarity of dropped Items"}}},stats={[1]="map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final"}},[4946]={lang={English={[1]={limit={[1]={[1]=21,[2]=21}},text="Area contains an Essence of Hysteria"},[2]={limit={[1]={[1]=22,[2]=22}},text="Area contains an Essence of Insanity"},[3]={limit={[1]={[1]=23,[2]=23}},text="Area contains an Essence of Horror"},[4]={limit={[1]={[1]=24,[2]=24}},text="Area contains an Essence of Delirium"},[5]={limit={[1]={[1]=25,[2]=25}},text="Area contains a Remnant of Corruption"}}},stats={[1]="map_leaguestone_monolith_contains_essence_type"}},[4947]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Breach"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% Breaches"}}},stats={[1]="map_leaguestone_override_base_num_breaches"}},[4948]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an Invasion Boss"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% Invasion Bosses"}}},stats={[1]="map_leaguestone_override_base_num_invasion_bosses"}},[4949]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains up to 1 Monster imprisoned by Essences"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains up to %1% Monsters imprisoned by Essences"}}},stats={[1]="map_leaguestone_override_base_num_monoliths"}},[4950]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Perandus Chest"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% Perandus Chests"}}},stats={[1]="map_leaguestone_override_base_num_perandus_chests"}},[4951]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Silver Coin"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% Silver Coins"}}},stats={[1]="map_leaguestone_override_base_num_prophecy_coins"}},[4952]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Rogue Exile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% Rogue Exiles"}}},stats={[1]="map_leaguestone_override_base_num_rogue_exiles"}},[4953]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains up to 1 Shrine"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains up to %1% Shrines"}}},stats={[1]="map_leaguestone_override_base_num_shrines"}},[4954]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Strongbox"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% Strongboxes"}}},stats={[1]="map_leaguestone_override_base_num_strongboxes"}},[4955]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Monster possessed by an Ancient Talisman"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% Monsters possessed by Ancient Talismans"}}},stats={[1]="map_leaguestone_override_base_num_talismans"}},[4956]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Tormented Spirit"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% Tormented Spirits"}}},stats={[1]="map_leaguestone_override_base_num_tormented_spirits"}},[4957]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains at least 1 Warband Pack"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains at least %1% Warband Packs"}}},stats={[1]="map_leaguestone_override_base_num_warband_packs"}},[4958]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Perandus Chests have %1%%% more Quantity of Items Dropped"}}},stats={[1]="map_leaguestone_perandus_chests_have_item_quantity_+%_final"}},[4959]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Perandus Chests have %1%%% more Rarity of Items Dropped"}}},stats={[1]="map_leaguestone_perandus_chests_have_item_rarity_+%_final"}},[4960]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rogue Exiles have %1%%% more Rarity of Items Dropped"}}},stats={[1]="map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final"}},[4961]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters guarding Shrines are Magic"},[2]={limit={[1]={[1]=2,[2]=2}},text="Some Monsters guarding Shrines are Rare"}}},stats={[1]="map_leaguestone_shrine_monster_rarity_override"}},[4962]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="At least one Shine in this Area is an Acceleration Shrine"},[2]={limit={[1]={[1]=2,[2]=2}},text="At least one Shine in this Area is an Echoing Shrine"},[3]={limit={[1]={[1]=3,[2]=3}},text="At least one Shine in this Area is a Divine Shrine"}}},stats={[1]="map_leaguestone_shrine_override_type"}},[4963]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Strongboxes are Magic"},[2]={limit={[1]={[1]=2,[2]=2}},text="Strongboxes are Rare"}}},stats={[1]="map_leaguestone_strongboxes_rarity_override"}},[4964]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strongboxes in Area have %1%%% chance to contain an additional Vaal Orb"}}},stats={[1]="map_strongboxes_vaal_orb_drop_chance_%"}},[4965]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Warbands have %1%%% more Quantity of Items Dropped"}}},stats={[1]="map_leaguestone_warbands_packs_have_item_quantity_+%_final"}},[4966]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Warbands have %1%%% more Rarity of Items Dropped"}}},stats={[1]="map_leaguestone_warbands_packs_have_item_rarity_+%_final"}},[4967]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="A Monster in this Area will summon Abaxoth when Slain"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1% Monsters in this Area will summon Abaxoth when Slain"}}},stats={[1]="map_leaguestone_x_monsters_spawn_abaxoth"}},[4968]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="A Monster in this Area will summon a Unique Monster from Beyond when Slain"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1% Monsters in this Area will summon a Unique Monster from Beyond when Slain"}}},stats={[1]="map_leaguestone_x_monsters_spawn_random_beyond_boss"}},[4969]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="The first time a Player reaches %1% Rampage Kills in this Area, 6 Currency Items will drop"}}},stats={[1]="map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks"}},[4970]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="The first time a Player reaches %1% Rampage Kills in this Area, they will encounter a Powerful Monster"}}},stats={[1]="map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks"}},[4971]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Legion Encounter"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Legion Encounters"}}},stats={[1]="map_legion_league_extra_spawns"}},[4972]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Each Legion is accompanied by a General"}}},stats={[1]="map_legion_league_force_general"}},[4973]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Each Legion contains a War Hoard"}}},stats={[1]="map_legion_league_force_war_chest"}},[4974]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Monster Level of Area"}}},stats={[1]="map_level_+"}},[4975]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Randomly dropped Items are Normal instead of Magic"}}},stats={[1]="map_magic_items_drop_as_normal"}},[4976]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]="#",[2]="#"}},text="Magic Monsters are Maimed"}}},stats={[1]="map_magic_monsters_are_maimed"}},[4977]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Magic Monsters take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Magic Monsters take %1%%% reduced Damage"}}},stats={[1]="map_magic_monsters_damage_taken_+%"}},[4978]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Magic Pack Size"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Magic Pack Size"}}},stats={[1]="map_magic_pack_size_+%"}},[4979]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Maps found in Area"}}},stats={[1]="map_map_item_drop_chance_+%"}},[4980]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters Imprisoned around Essences in Area are Magic"}}},stats={[1]="map_mini_monolith_monsters_are_magic"}},[4981]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Onslaught on Players and Monsters"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced effect of Onslaught on Players and Monsters"}}},stats={[1]="map_monster_and_player_onslaught_effect_+%"}},[4982]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Monsters have %1%%% increased Attack, Cast and Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters have %1%%% reduced Attack, Cast and Movement Speed"}}},stats={[1]="map_monster_attack_cast_and_movement_speed_+%"}},[4983]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Monsters have %1%%% increased chance to spawn a Beyond Portal"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters have %1%%% reduced chance to spawn a Beyond Portal"}}},stats={[1]="map_monster_beyond_portal_chance_+%"}},[4984]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Curses on Monsters"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Curses on Monsters"}}},stats={[1]="map_monster_curse_effect_on_self_+%"}},[4985]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Monsters Possessed by Tormented Spirits take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters Possessed by Tormented Spirits take %1%%% reduced Damage"}}},stats={[1]="map_monster_damage_taken_+%_while_possessed"}},[4986]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Monsters grant %1%%% increased Experience"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters grant %1%%% reduced Experience"}}},stats={[1]="map_monster_slain_experience_+%"}},[4987]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Monsters have %1%%% increased Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters have %1%%% reduced Accuracy Rating"}}},stats={[1]="map_monsters_accuracy_rating_+%"}},[4988]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to gain an Endurance Charge on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Monsters gain an Endurance Charge on Hit"}}},stats={[1]="map_monsters_add_endurance_charge_on_hit_%"}},[4989]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to gain a Frenzy Charge on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Monsters gain a Frenzy Charge on Hit"}}},stats={[1]="map_monsters_add_frenzy_charge_on_hit_%"}},[4990]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to gain a Power Charge on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Monsters gain a Power Charge on Hit"}}},stats={[1]="map_monsters_add_power_charge_on_hit_%"}},[4991]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1%%% Monster Chaos Resistance"}}},stats={[1]="map_monsters_additional_chaos_resistance"}},[4992]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1%%% Monster Elemental Resistance"}}},stats={[1]="map_monsters_additional_elemental_resistance"}},[4993]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="All Monster Damage from Hits always Ignites"}}},stats={[1]="map_monsters_always_ignite"}},[4994]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters are Revived as Allies on Kill"}}},stats={[1]="map_monsters_are_converted_on_kill"}},[4995]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters have a %1%%% chance to avoid Poison, Blind, and Bleeding"}}},stats={[1]="map_monsters_avoid_poison_blind_bleed_%"}},[4996]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters cannot be Taunted"}}},stats={[1]="map_monsters_cannot_be_taunted"}},[4997]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more effect of Curses on Monsters"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less effect of Curses on Monsters"}}},stats={[1]="map_monsters_curse_effect_on_self_+%_final"}},[4998]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1$+d%% Monster Energy Shield Leech Resistance"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot Leech Energy Shield from Monsters"}}},stats={[1]="map_monsters_energy_shield_leech_resistance_%"}},[4999]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters' Action Speed cannot be modified to below base value"}}},stats={[1]="map_monsters_movement_speed_cannot_be_reduced_below_base"}},[5000]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]="#",[2]="#"}},text="Monsters near Shrines are Chilled"}}},stats={[1]="map_monsters_near_shrines_are_chilled"}},[5001]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monster Damage Penetrates %1%%% Elemental Resistances"}}},stats={[1]="map_monsters_penetrate_elemental_resistances_%"}},[5002]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Monsters have a %1%%% chance to cause Elemental Ailments on Hit"}}},stats={[1]="map_monsters_%_chance_to_inflict_status_ailments"}},[5003]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to remove Power, Frenzy and Endurance charges on Hit"},[2]={limit={[1]={[1]=100,[2]=100}},text="Monsters remove Power, Frenzy and Endurance charges on Hit"}}},stats={[1]="map_monsters_remove_charges_on_hit_%"}},[5004]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters initially carrying a Talisman drop an additional Rare Item"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Monsters initially carrying a Talisman drop %1% additional Rare Items"}}},stats={[1]="map_monsters_spawned_with_talisman_drop_additional_rare_items"}},[5005]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to steal Power, Frenzy and Endurance charges on Hit"},[2]={limit={[1]={[1]=100,[2]=100}},text="Monsters steal Power, Frenzy and Endurance charges on Hit"}}},stats={[1]="map_monsters_steal_charges"}},[5006]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters with Silver Coins drop an additional Silver Coin"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Monsters with Silver Coins drop %1% additional Silver Coins"}}},stats={[1]="map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins"}},[5007]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters with Silver Coins drop an additional Currency Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Monsters with Silver Coins drop %1% additional Currency Items"}}},stats={[1]="map_monsters_with_silver_coins_drop_x_additional_currency_items"}},[5008]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters with Silver Coins drop an additional Rare Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Monsters with Silver Coins drop %1% additional Rare Items"}}},stats={[1]="map_monsters_with_silver_coins_drop_x_additional_rare_items"}},[5009]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area's inhabitants are lying in ambush"}}},stats={[1]="map_monstrous_treasure_no_monsters"}},[5010]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% increased Movement Speed for each Poison on them"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% reduced Movement Speed for each Poison on them"}}},stats={[1]="map_movement_velocity_+%_per_poison_stack"}},[5011]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Nemesis Monsters drop %1% additional Currency Item"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Nemesis Monsters drop %1% additional Currency Items"}}},stats={[1]="map_nemesis_dropped_items_+"}},[5012]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Bearers of the Guardian Bloodline Pack"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% Bearers of the Guardian Bloodline Packs"}}},stats={[1]="map_next_area_contains_x_additional_bearers_of_the_guardian_packs"}},[5013]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Voidspawn of Abaxoth Bloodline Pack"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% Voidspawn of Abaxoth Bloodline Packs"}}},stats={[1]="map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs"}},[5014]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Dropped Items cannot be Magic"}}},stats={[1]="map_no_magic_items_drop"}},[5015]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Dropped Items cannot be Rare"}}},stats={[1]="map_no_rare_items_drop"}},[5016]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Stashes cannot be used"}}},stats={[1]="map_no_stashes"}},[5017]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Randomly dropped Items cannot be Unique"}}},stats={[1]="map_no_uniques_drop_randomly"}},[5018]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Items cannot be sold to or purchased from NPCs"}}},stats={[1]="map_no_vendors"}},[5019]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Items cannot drop as Magic or Rare"}}},stats={[1]="map_non_unique_items_drop_normal"}},[5020]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Non-Unique Monsters in this Area Regenerate %1%%% of Life per second"}}},stats={[1]="map_non_unique_monster_life_regeneration_rate_per_minute_%"}},[5021]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Randomly dropped Items are Magic instead of Normal"}}},stats={[1]="map_normal_items_drop_as_magic"}},[5022]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Natural inhabitants of this area have been removed"}}},stats={[1]="map_nuke_everything"}},[5023]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Abyss"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Abysses"}}},stats={[1]="map_num_extra_abysses"}},[5024]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an extra Gloom Shrine"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% extra Gloom Shrines"}}},stats={[1]="map_num_extra_gloom_shrines"}},[5025]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an extra Harbinger"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% extra Harbingers"}}},stats={[1]="map_num_extra_harbingers"}},[5026]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an extra Resonating Shrine"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% extra Resonating Shrines"}}},stats={[1]="map_num_extra_resonating_shrines"}},[5027]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Map has %1% additional random Modifier"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Map has %1% additional random Modifiers"}}},stats={[1]="map_number_of_additional_mods"}},[5028]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Map has %1% additional random Prefix"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Map has %1% additional random Prefixes"}}},stats={[1]="map_number_of_additional_prefixes"}},[5029]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area has a Monster that drops a Silver Coin"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area has %1% Monsters that drop a Silver Coin"}}},stats={[1]="map_number_of_additional_silver_coin_drops"}},[5030]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Map has %1% additional random Suffix"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Map has %1% additional random Suffixes"}}},stats={[1]="map_number_of_additional_suffixes"}},[5031]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="An additional Map drops on Completing Area"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% additional Maps drop on Completing Area"}}},stats={[1]="map_on_complete_drop_x_additional_maps"}},[5032]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Map owner gains %1%%% more Sulphite"}}},stats={[1]="map_owner_sulphite_gained_+%"}},[5033]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Abominations"}}},stats={[1]="map_packs_are_abomination_monsters"}},[5034]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Blackguards"}}},stats={[1]="map_packs_are_blackguards"}},[5035]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Ghosts"}}},stats={[1]="map_packs_are_ghosts"}},[5036]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Cultists of Kitava"}}},stats={[1]="map_packs_are_kitava"}},[5037]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Lunaris fanatics"}}},stats={[1]="map_packs_are_lunaris"}},[5038]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Solaris fanatics"}}},stats={[1]="map_packs_are_solaris"}},[5039]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Spiders"}}},stats={[1]="map_packs_are_spiders"}},[5040]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by the Vaal"}}},stats={[1]="map_packs_are_vaal"}},[5041]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Perandus Chests are guarded by additional Rare monsters"}}},stats={[1]="map_perandus_guards_are_rare"}},[5042]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Perandus Monsters have a %1%%% chance to drop Perandus Coins"}}},stats={[1]="map_perandus_monsters_drop_perandus_coin_stack_%"}},[5043]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% increased Attack, Cast and Movement Speed while they have Onslaught"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% reduced Attack, Cast and Movement Speed while they have Onslaught"}}},stats={[1]="map_player_attack_cast_and_movement_speed_+%_during_onslaught"}},[5044]={lang={English={[1]={limit={[1]={[1]=100,[2]="#"}},text="Players gain an additional Vaal Soul on Kill"},[2]={limit={[1]={[1]=1,[2]=99}},text="Players have %1%%% chance to gain an additional Vaal Soul on Kill"}}},stats={[1]="map_player_chance_to_gain_vaal_soul_on_kill_%"}},[5045]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players gain %1%%% increased Flask Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players gain %1%%% reduced Flask Charges"}}},stats={[1]="map_player_charges_gained_+%"}},[5046]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Curses on Players"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Curses on Players"}}},stats={[1]="map_player_curse_effect_on_self_+%"}},[5047]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players deal %1%%% increased Damage with Hits to Breach Monsters"}}},stats={[1]="map_player_damage_+%_vs_breach_monsters"}},[5048]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players take %1%%% increased Damage from Breach Monsters"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players take %1%%% reduced Damage from Breach Monsters"}}},stats={[1]="map_player_damage_taken_+%_vs_breach_monsters"}},[5049]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players with at least 50 Rampage Kills take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players with at least 50 Rampage Kills take %1%%% reduced Damage"}}},stats={[1]="map_player_damage_taken_+%_while_rampaging"}},[5050]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players' Vaal Skills do not apply Soul Gain Prevention"}}},stats={[1]="map_player_disable_soul_gain_prevention"}},[5051]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Player's Life and Mana Recovery from Flasks are instant"}}},stats={[1]="map_player_flask_recovery_is_instant"}},[5052]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Conductivity"}}},stats={[1]="map_player_has_level_X_conductivity"}},[5053]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Flammability"}}},stats={[1]="map_player_has_level_X_flammability"}},[5054]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Frostbite"}}},stats={[1]="map_player_has_level_X_frostbite"}},[5055]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Projectile Weakness"}}},stats={[1]="map_player_has_level_X_projectile_weakness"}},[5056]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSilence"},limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Silence"}}},stats={[1]="map_player_has_level_X_silence"}},[5057]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have a random Curse on them every 10 seconds"}}},stats={[1]="map_player_has_random_level_X_curse_every_10_seconds"}},[5058]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% more Recovery Rate of Life and Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% less Recovery Rate of Life and Energy Shield"}}},stats={[1]="map_player_life_and_es_recovery_speed_+%_final"}},[5059]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Players Regenerate %1%%% of Life per second per 25 Rampage Kills"}}},stats={[1]="map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks"}},[5060]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have %1%%% increased Movement Speed"}}},stats={[1]="map_player_movement_velocity_+%"}},[5061]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]=99}},text="Players have a %1%%% chance to gain Onslaught on Kill For 4 seconds"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]=100}},text="Players gain Onslaught on Kill for 4 seconds"}}},stats={[1]="map_player_onslaught_on_kill_%"}},[5062]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Duration of Shrine Effects on Players"}}},stats={[1]="map_player_shrine_effect_duration_+%"}},[5063]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have %1%%% chance to Dodge Spell Hits"}}},stats={[1]="map_players_additional_spell_dodge_%"}},[5064]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players and Monsters take %1%%% increased Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players and Monsters take %1%%% reduced Chaos Damage"}}},stats={[1]="map_players_and_monsters_chaos_damage_taken_+%"}},[5065]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players and Monsters take %1%%% increased Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players and Monsters take %1%%% reduced Cold Damage"}}},stats={[1]="map_players_and_monsters_cold_damage_taken_+%"}},[5066]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players and Monsters have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players and Monsters have %1%%% reduced Critical Strike Chance"}}},stats={[1]="map_players_and_monsters_critical_strike_chance_+%"}},[5067]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Player's and Monster's Curses are Reflected"}}},stats={[1]="map_players_and_monsters_curses_are_reflected"}},[5068]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players and Monsters have %1%%% increased Damage per Curse on them"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players and Monsters have %1%%% reduced Damage per Curse on them"}}},stats={[1]="map_players_and_monsters_damage_+%_per_curse"}},[5069]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players and Monsters take %1%%% increased Damage while stationary"}}},stats={[1]="map_players_and_monsters_damage_taken_+%_while_stationary"}},[5070]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players and Monsters take %1%%% increased Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players and Monsters take %1%%% reduced Fire Damage"}}},stats={[1]="map_players_and_monsters_fire_damage_taken_+%"}},[5071]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Players and Monsters have Onslaught if they have been Hit Recently"}}},stats={[1]="map_players_and_monsters_have_onslaught_if_hit_recently"}},[5072]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players and Monsters have Resolute Technique"}}},stats={[1]="map_players_and_monsters_have_resolute_technique"}},[5073]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players and Monsters take %1%%% increased Lightning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players and Monsters take %1%%% reduced Lightning Damage"}}},stats={[1]="map_players_and_monsters_lightning_damage_taken_+%"}},[5074]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Player and Monster Movement Speed"}}},stats={[1]="map_players_and_monsters_movement_speed_+%"}},[5075]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players and Monsters take %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players and Monsters take %1%%% reduced Physical Damage"}}},stats={[1]="map_players_and_monsters_physical_damage_taken_+%"}},[5076]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Players are Poisoned while moving"}}},stats={[1]="map_players_are_poisoned_while_moving_chaos_damage_per_second"}},[5077]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% more Armour"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% less Armour"}}},stats={[1]="map_players_armour_+%_final"}},[5078]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% increased Chance to Block"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% reduced Chance to Block"}}},stats={[1]="map_players_block_chance_+%"}},[5079]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players cannot gain Endurance Charges"}}},stats={[1]="map_players_cannot_gain_endurance_charges"}},[5080]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players cannot gain Frenzy Charges"}}},stats={[1]="map_players_cannot_gain_frenzy_charges"}},[5081]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players cannot gain Power Charges"}}},stats={[1]="map_players_cannot_gain_power_charges"}},[5082]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players cannot take Reflected Damage"}}},stats={[1]="map_players_cannot_take_reflected_damage"}},[5083]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Player chance to Dodge is Lucky"},[2]={limit={[1]={[1]=-1,[2]=-1}},text="Player chance to Dodge is Unlucky"}}},stats={[1]="map_players_extra_dodge_rolls"}},[5084]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Players gain a Random Mod from Slain Rare Monsters for %1% seconds"}}},stats={[1]="map_players_gain_1_random_rare_monster_mod_on_kill_ms"}},[5085]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Players have a %1%%% chance when they Kill a Rare Monster to gain 1 of its Modifiers for 20 seconds"},[2]={limit={[1]={[1]=100,[2]=100}},text="When Players Kill a Rare Monster they will gain 1 of its Modifiers for 20 seconds"}}},stats={[1]="map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%"}},[5086]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Strongboxes grant Onslaught for %1% seconds when opened"}}},stats={[1]="map_players_gain_onslaught_after_opening_a_strongbox_ms"}},[5087]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have Onslaught while using Flasks"}}},stats={[1]="map_players_gain_onslaught_during_flask_effect"}},[5088]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When a Player Kills a Rare Monster, they have %1%%% chance to gain its Modifiers for 20 seconds"}}},stats={[1]="map_players_gain_rare_monster_mods_on_kill_%_chance"}},[5089]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have Point Blank"}}},stats={[1]="map_players_have_point_blank"}},[5090]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have %1%%% increased Cooldown Recovery Speed for Movement Skills"}}},stats={[1]="map_players_movement_skills_cooldown_speed_+%"}},[5091]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% reduced Movement Speed"}}},stats={[1]="map_players_movement_speed_+%"}},[5092]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players cannot Regenerate Life, Mana or Energy Shield"}}},stats={[1]="map_players_no_regeneration_including_es"}},[5093]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have %1$+d%% to All Resistances"}}},stats={[1]="map_players_resist_all_%"}},[5094]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% less Area of Effect"}}},stats={[1]="map_players_skill_area_of_effect_+%_final"}},[5095]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Map Portals do not expire"}}},stats={[1]="map_portals_do_not_expire"}},[5096]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="The First 3 Possessed Monsters have a %1%%% chance to drop an additional Gilded Scarab"},[2]={limit={[1]={[1]=100,[2]="#"}},text="The First 3 Possessed Monsters drop an additional Gilded Scarab"}}},stats={[1]="map_possessed_monsters_drop_gilded_scarab_chance_%"}},[5097]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="The First 3 Possessed Monsters have a %1%%% chance to drop an additional Map"},[2]={limit={[1]={[1]=100,[2]="#"}},text="The First 3 Possessed Monsters drop an additional Map"}}},stats={[1]="map_possessed_monsters_drop_map_chance_%"}},[5098]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="The First 3 Possessed Monsters have a %1%%% chance to drop an additional Polished Scarab"},[2]={limit={[1]={[1]=100,[2]="#"}},text="The First 3 Possessed Monsters drop an additional Polished Scarab"}}},stats={[1]="map_possessed_monsters_drop_polished_scarab_chance_%"}},[5099]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="The First 3 Possessed Monsters have a %1%%% chance to drop an additional Rusted Scarab"},[2]={limit={[1]={[1]=100,[2]="#"}},text="The First 3 Possessed Monsters drop an additional Rusted Scarab"}}},stats={[1]="map_possessed_monsters_drop_rusted_scarab_chance_%"}},[5100]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="The First 3 Possessed Monsters have a %1%%% chance to drop an additional Unique Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="The First 3 Possessed Monsters drop an additional Unique Item"}}},stats={[1]="map_possessed_monsters_drop_unique_chance_%"}},[5101]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rampage Streak Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rampage Streak Duration"}}},stats={[1]="map_rampage_time_+%"}},[5102]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="If this Area contains any Unique Monsters, one is Possessed"}}},stats={[1]="map_random_unique_monster_is_possessed"}},[5103]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rare Monsters from Breaches have a %1%%% chance to Drop a Breach Ring"}}},stats={[1]="map_rare_breach_monster_additional_breach_ring_drop_chance_%"}},[5104]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Rare Breach Monsters drop an additional Splinter"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Rare Breach Monsters drop %1% additional Splinters"}}},stats={[1]="map_rare_breach_monsters_drop_additional_shards"}},[5105]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=1,[2]="#"}},text="Rare Monsters are Hindered, with %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]="#",[2]=-1}},text="Rare Monsters are Hindered, with %1%%% reduced Movement Speed"}}},stats={[1]="map_rare_monsters_are_hindered"}},[5106]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Rare Monsters have %1%%% chance to drop a Rare Prismatic Ring"},[2]={limit={[1]={[1]=100,[2]=100}},text="Rare Monsters drop a Rare Prismatic Ring"}}},stats={[1]="map_rare_monsters_drop_rare_prismatic_ring_on_death_%"}},[5107]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Rare Monsters drop an additional Rare Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Rare Monsters drop %1% additional Rare Items"}}},stats={[1]="map_rare_monsters_drop_x_additional_rare_items"}},[5108]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rare Monsters have Inner Treasure in addition to their other Modifiers"}}},stats={[1]="map_rare_monsters_have_inner_treasure"}},[5109]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rogue Exiles have %1%%% increased Attack, Cast and Movement Speed"}}},stats={[1]="map_rogue_exile_attack_cast_and_movement_speed_+%"}},[5110]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rogue Exiles each drop a Skill Gem with Quality"}}},stats={[1]="map_rogue_exile_drop_skill_gem_with_quality"}},[5111]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rogue Exiles each have a Rogue Exile ally"}}},stats={[1]="map_rogue_exiles_are_doubled"}},[5112]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Rogue Exiles deal %1%%% increased Damage"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Rogue Exiles deal %1%%% reduced Damage"}}},stats={[1]="map_rogue_exiles_damage_+%"}},[5113]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Rogue Exiles drop %1% additional Currency Items"}}},stats={[1]="map_rogue_exiles_drop_additional_currency_items_with_quality"}},[5114]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Rogue Exiles drop an additional Jewel"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Rogue Exiles drop %1% additional Jewels"}}},stats={[1]="map_rogue_exiles_drop_x_additional_jewels"}},[5115]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Items dropped by Rogue Exiles are Corrupted"}}},stats={[1]="map_rogue_exiles_dropped_items_are_corrupted"}},[5116]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Items dropped by Rogue Exiles are Mirrored"}}},stats={[1]="map_rogue_exiles_dropped_items_are_duplicated"}},[5117]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Items dropped by Rogue Exiles are fully Linked"}}},stats={[1]="map_rogue_exiles_dropped_items_are_fully_linked"}},[5118]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Rogue Exiles have %1%%% increased Maximum Life"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Rogue Exiles have %1%%% reduced Maximum Life"}}},stats={[1]="map_rogue_exiles_maximum_life_+%"}},[5119]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Rare Shaper Items found in Area"}}},stats={[1]="map_shaper_rare_chance_+%"}},[5120]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Shrines drop a Currency Item when used"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Shrines drop %1% Currency Items when used"}}},stats={[1]="map_shrines_drop_x_currency_items_on_activation"}},[5121]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Shrines grant a random additional Shrine Effect"}}},stats={[1]="map_shrines_grant_a_random_additional_effect"}},[5122]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Areas can contain Abysses"}}},stats={[1]="map_spawn_abysses"}},[5123]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Areas contain Beasts to hunt"}}},stats={[1]="map_spawn_bestiary_encounters"}},[5124]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Unique Monsters from Beyond have a %1%%% chance to Summon\nanother Unique Monster from Beyond when Slain"},[2]={limit={[1]={[1]=100,[2]=100}},text="Unique Monsters from Beyond will Summon another Unique Monster from Beyond when Slain"}}},stats={[1]="map_spawn_beyond_boss_when_beyond_boss_slain_%"}},[5125]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Area has a %1%%% chance to contain Cadiro Perandus"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Area contains Cadiro Perandus"}}},stats={[1]="map_spawn_cadiro_%_chance"}},[5126]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Perandus Chest"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Perandus Chests"}}},stats={[1]="map_spawn_extra_perandus_chests"}},[5127]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Areas contain Temporal Incursions"}}},stats={[1]="map_spawn_incursion_encounters"}},[5128]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Tempest Effects have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Tempest Effects have %1%%% reduced Area of Effect"}}},stats={[1]="map_storm_area_of_effect_+%"}},[5129]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strongbox contents are Mirrored"}}},stats={[1]="map_strongbox_items_dropped_are_mirrored"}},[5130]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Strongbox Monsters are Enraged"}}},stats={[1]="map_strongbox_monsters_attack_speed_+%"}},[5131]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Strongbox Monsters have %1%%% increased Item Quantity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="Strongbox Monsters have %1%%% reduced Item Quantity"}}},stats={[1]="map_strongbox_monsters_item_quantity_+%"}},[5132]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strongboxes in Area are Corrupted"}}},stats={[1]="map_strongboxes_are_corrupted"}},[5133]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Strongboxes each contain an additional random Rare Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Strongboxes each contain %1% additional random Rare Items"}}},stats={[1]="map_strongboxes_drop_x_additional_rare_items"}},[5134]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Strongboxes in Area are at least Magic Rarity"},[2]={limit={[1]={[1]=2,[2]=2}},text="Strongboxes in Area are at least Rare Rarity"},[3]={limit={[1]={[1]=3,[2]=3}},text="Strongboxes in Area are at least Unique Rarity"}}},stats={[1]="map_strongboxes_minimum_rarity"}},[5135]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Areas contain Memory Fragments"}}},stats={[1]="map_synthesis_league"}},[5136]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Area contains %1% additional Abyss Bone Chest Clusters"}}},stats={[1]="map_synthesis_spawn_additional_abyss_bone_chest_clusters"}},[5137]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Area contains %1% additional Bloodworm Chest Clusters"}}},stats={[1]="map_synthesis_spawn_additional_bloodworm_barrel_clusters"}},[5138]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Area contains %1% additional Fungal Chest Clusters"}}},stats={[1]="map_synthesis_spawn_additional_fungal_chest_clusters"}},[5139]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains %1% additional Synthesised Chest which contains Magic Monsters"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Synthesised Chests which contain Magic Monsters"}}},stats={[1]="map_synthesis_spawn_additional_magic_ambush_chest"}},[5140]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains %1% additional Synthesised Chest which contains Normal Monsters"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Synthesised Chests which contain Normal Monsters"}}},stats={[1]="map_synthesis_spawn_additional_normal_ambush_chest"}},[5141]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Area contains %1% additional Parasitic Chest Clusters"}}},stats={[1]="map_synthesis_spawn_additional_parasite_barrel_clusters"}},[5142]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains %1% additional Synthesised Chest which contains Rare Monsters"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Synthesised Chests which contain Rare Monsters"}}},stats={[1]="map_synthesis_spawn_additional_rare_ambush_chest"}},[5143]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Area contains %1% additional Explosive Chest Clusters"}}},stats={[1]="map_synthesis_spawn_additional_volatile_barrel_clusters"}},[5144]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Area contains %1% additional Wealthy Barrel Clusters"}}},stats={[1]="map_synthesis_spawn_additional_wealthy_barrel_clusters"}},[5145]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop a Breach Splinter"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop a Breach Splinter"}}},stats={[1]="map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%"}},[5146]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop a Currency Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop a Currency Item"}}},stats={[1]="map_synthesised_magic_monster_additional_currency_item_drop_chance_%"}},[5147]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop a Currency Shard"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop a Currency Shard"}}},stats={[1]="map_synthesised_magic_monster_additional_currency_shard_drop_chance_%"}},[5148]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop a Divination Card"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop a Divination Card"}}},stats={[1]="map_synthesised_magic_monster_additional_divination_card_drop_chance_%"}},[5149]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop an Elder Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop an Elder Item"}}},stats={[1]="map_synthesised_magic_monster_additional_elder_item_drop_chance_%"}},[5150]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop a Fossil"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop a Fossil"}}},stats={[1]="map_synthesised_magic_monster_additional_fossil_drop_chance_%"}},[5151]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop a Quality Currency Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop a Quality Currency Item"}}},stats={[1]="map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%"}},[5152]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop a Shaper Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop a Shaper Item"}}},stats={[1]="map_synthesised_magic_monster_additional_shaper_item_drop_chance_%"}},[5153]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Magic Monsters drop an additional Currency Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Synthesised Magic Monsters drop %1% additional Currency Items"}}},stats={[1]="map_synthesised_magic_monster_drop_additional_currency"}},[5154]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Magic Monsters drop an additional Currency Shard"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Synthesised Magic Monsters drop %1% additional Currency Shards"}}},stats={[1]="map_synthesised_magic_monster_drop_additional_currency_shard"}},[5155]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Magic Monsters drop an additional Quality Currency Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Synthesised Magic Monsters drop %1% additional Quality Currency Items"}}},stats={[1]="map_synthesised_magic_monster_drop_additional_quality_currency"}},[5156]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Synthesised Magic Monsters"}}},stats={[1]="map_synthesised_magic_monster_dropped_item_quantity_+%"}},[5157]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Synthesised Magic Monsters"}}},stats={[1]="map_synthesised_magic_monster_dropped_item_rarity_+%"}},[5158]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Magic Monsters have %1%%% increased chance to drop a Fractured Item"}}},stats={[1]="map_synthesised_magic_monster_fractured_item_drop_chance_+%"}},[5159]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Items dropped by Synthesised Magic Monsters have %1%%% chance to be Corrupted"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Items dropped by Synthesised Magic Monsters are Corrupted"}}},stats={[1]="map_synthesised_magic_monster_items_drop_corrupted_%"}},[5160]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Magic Monsters have %1%%% increased chance to drop a Map"}}},stats={[1]="map_synthesised_magic_monster_map_drop_chance_+%"}},[5161]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Magic Monsters grant %1%%% increased Experience"}}},stats={[1]="map_synthesised_magic_monster_slain_experience_+%"}},[5162]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Magic Monsters have %1%%% increased chance to drop a Unique Item"}}},stats={[1]="map_synthesised_magic_monster_unique_item_drop_chance_+%"}},[5163]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop a Breach Splinter"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop a Breach Splinter"}}},stats={[1]="map_synthesised_monster_additional_breach_splinter_drop_chance_%"}},[5164]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop a Currency Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop a Currency Item"}}},stats={[1]="map_synthesised_monster_additional_currency_item_drop_chance_%"}},[5165]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop a Currency Shard"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop a Currency Shard"}}},stats={[1]="map_synthesised_monster_additional_currency_shard_drop_chance_%"}},[5166]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop a Divination Card"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop a Divination Card"}}},stats={[1]="map_synthesised_monster_additional_divination_card_drop_chance_%"}},[5167]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop an Elder Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop an Elder Item"}}},stats={[1]="map_synthesised_monster_additional_elder_item_drop_chance_%"}},[5168]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop a Fossil"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop a Fossil"}}},stats={[1]="map_synthesised_monster_additional_fossil_drop_chance_%"}},[5169]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop a Quality Currency Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop a Quality Currency Item"}}},stats={[1]="map_synthesised_monster_additional_quality_currency_item_drop_chance_%"}},[5170]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop a Shaper Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop a Shaper Item"}}},stats={[1]="map_synthesised_monster_additional_shaper_item_drop_chance_%"}},[5171]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Synthesised Monsters"}}},stats={[1]="map_synthesised_monster_dropped_item_quantity_+%"}},[5172]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Synthesised Monsters"}}},stats={[1]="map_synthesised_monster_dropped_item_rarity_+%"}},[5173]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Monsters have %1%%% increased chance to drop a Fractured Item"}}},stats={[1]="map_synthesised_monster_fractured_item_drop_chance_+%"}},[5174]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Items dropped by Synthesised Monsters have %1%%% chance to be Corrupted"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Items dropped by Synthesised Monsters are Corrupted"}}},stats={[1]="map_synthesised_monster_items_drop_corrupted_%"}},[5175]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Monsters have %1%%% increased chance to drop a Map"}}},stats={[1]="map_synthesised_monster_map_drop_chance_+%"}},[5176]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Size of Synthesised Monster Packs"}}},stats={[1]="map_synthesised_monster_pack_size_+%"}},[5177]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Monsters grant %1%%% increased Experience"}}},stats={[1]="map_synthesised_monster_slain_experience_+%"}},[5178]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Monsters have %1%%% increased chance to drop a Unique Item"}}},stats={[1]="map_synthesised_monster_unique_item_drop_chance_+%"}},[5179]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop an Abyss Jewel"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop an Abyss Jewel"}}},stats={[1]="map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%"}},[5180]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Breach Splinter"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Breach Splinter"}}},stats={[1]="map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%"}},[5181]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Currency Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Currency Item"}}},stats={[1]="map_synthesised_rare_monster_additional_currency_item_drop_chance_%"}},[5182]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Rare Monsters drop an additional Currency Shard"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Synthesised Rare Monsters drop %1% additional Currency Shards"}}},stats={[1]="map_synthesised_rare_monster_additional_currency_shard_drop_chance_%"}},[5183]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Divination Card"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Divination Card"}}},stats={[1]="map_synthesised_rare_monster_additional_divination_card_drop_chance_%"}},[5184]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop an Elder Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop an Elder Item"}}},stats={[1]="map_synthesised_rare_monster_additional_elder_item_drop_chance_%"}},[5185]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop an Essence"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop an Essence"}}},stats={[1]="map_synthesised_rare_monster_additional_essence_drop_chance_%"}},[5186]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Fossil"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Fossil"}}},stats={[1]="map_synthesised_rare_monster_additional_fossil_drop_chance_%"}},[5187]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Jewel"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Jewel"}}},stats={[1]="map_synthesised_rare_monster_additional_jewel_drop_chance_%"}},[5188]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Map"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Map"}}},stats={[1]="map_synthesised_rare_monster_additional_map_drop_chance_%"}},[5189]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Quality Currency Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Quality Currency Item"}}},stats={[1]="map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%"}},[5190]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Shaper Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Shaper Item"}}},stats={[1]="map_synthesised_rare_monster_additional_shaper_item_drop_chance_%"}},[5191]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Talisman"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Talisman"}}},stats={[1]="map_synthesised_rare_monster_additional_talisman_drop_chance_%"}},[5192]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Vaal Fragment"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Vaal Fragment"}}},stats={[1]="map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%"}},[5193]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Veiled Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Veiled Item"}}},stats={[1]="map_synthesised_rare_monster_additional_veiled_item_drop_chance_%"}},[5194]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Rare Monsters drop an additional Breach Splinter"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Synthesised Rare Monsters drop %1% additional Breach Splinters"}}},stats={[1]="map_synthesised_rare_monster_drop_additional_breach_splinter"}},[5195]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Rare Monsters drop an additional Currency Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Synthesised Rare Monsters drop %1% additional Currency Items"}}},stats={[1]="map_synthesised_rare_monster_drop_additional_currency"}},[5196]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Rare Monsters drop an additional Currency Shard"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Synthesised Rare Monsters drop %1% additional Currency Shards"}}},stats={[1]="map_synthesised_rare_monster_drop_additional_currency_shard"}},[5197]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Rare Monsters drop an additional Quality Currency Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Synthesised Rare Monsters drop %1% additional Quality Currency Items"}}},stats={[1]="map_synthesised_rare_monster_drop_additional_quality_currency"}},[5198]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Synthesised Rare Monsters"}}},stats={[1]="map_synthesised_rare_monster_dropped_item_quantity_+%"}},[5199]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Synthesised Rare Monsters"}}},stats={[1]="map_synthesised_rare_monster_dropped_item_rarity_+%"}},[5200]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Rare Monsters have %1%%% increased chance to drop a Fractured Item"}}},stats={[1]="map_synthesised_rare_monster_fractured_item_drop_chance_+%"}},[5201]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="When a Player Kills a Synthesised Rare Monster, they have %1%%% chance to gain its Modifiers for 20 seconds"},[2]={limit={[1]={[1]=100,[2]="#"}},text="When a Player Kills a Synthesised Rare Monster, they gain its Modifiers for 20 seconds"}}},stats={[1]="map_synthesised_rare_monster_gives_mods_to_killer_chance_%"}},[5202]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Items dropped by Synthesised Rare Monsters have %1%%% chance to be Corrupted"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Items dropped by Synthesised Rare Monsters are Corrupted"}}},stats={[1]="map_synthesised_rare_monster_items_drop_corrupted_%"}},[5203]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Rare Monsters have %1%%% increased chance to drop a Map"}}},stats={[1]="map_synthesised_rare_monster_map_drop_chance_+%"}},[5204]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have a %1%%% chance to resurrect as an Ally when slain"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters are resurrected as an Ally when slain"}}},stats={[1]="map_synthesised_rare_monster_resurrect_as_ally_chance_%"}},[5205]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Rare Monsters grant %1%%% increased Experience"}}},stats={[1]="map_synthesised_rare_monster_slain_experience_+%"}},[5206]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Rare Monsters have %1%%% increased chance to drop a Unique Item"}}},stats={[1]="map_synthesised_rare_monster_unique_item_drop_chance_+%"}},[5207]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Talismans found in this Area are Rare"}}},stats={[1]="map_talismans_dropped_as_rare"}},[5208]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Talismans found in this Area are 1 Tier higher"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Talismans found in this Area are %1% Tiers higher"}}},stats={[1]="map_talismans_higher_tier"}},[5209]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Tempest Effects have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Tempest Effects have %1%%% reduced Area of Effect"}}},stats={[1]="map_tempest_area_of_effect_+%_visible"}},[5210]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased frequency of Tempest effects"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced frequency of Tempest effects"}}},stats={[1]="map_tempest_frequency_+%"}},[5211]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Tormented Spirits drop 1 additional Rare Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Tormented Spirits drop %1% additional Rare Items"}}},stats={[1]="map_tormented_spirits_drop_x_additional_rare_items"}},[5212]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Tormented Spirits have %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Tormented Spirits have %1%%% reduced Duration"}}},stats={[1]="map_tormented_spirits_duration_+%"}},[5213]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Tormented Spirits have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Tormented Spirits have %1%%% reduced Movement Speed"}}},stats={[1]="map_tormented_spirits_movement_speed_+%"}},[5214]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss drops divination cards"}}},stats={[1]="map_unique_boss_drops_divination_cards"}},[5215]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Unique Items found in Area"}}},stats={[1]="map_unique_item_drop_chance_+%"}},[5216]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Monsters drop Corrupted Items"}}},stats={[1]="map_unique_monsters_drop_corrupted_items"}},[5217]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Packs to be upgraded to Magic"}}},stats={[1]="map_upgrade_pack_to_magic_%_chance"}},[5218]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Packs to be upgraded to Rare"}}},stats={[1]="map_upgrade_pack_to_rare_%_chance"}},[5219]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Synthesised Packs to be upgraded to Magic"}}},stats={[1]="map_upgrade_synthesised_pack_to_magic_%_chance"}},[5220]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Synthesised Packs to be upgraded to Rare"}}},stats={[1]="map_upgrade_synthesised_pack_to_rare_%_chance"}},[5221]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Items dropped by Corrupted Vaal Monsters have %1%%% chance to be Corrupted"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Items dropped by Corrupted Vaal Monsters are Corrupted"}}},stats={[1]="map_vaal_monster_items_drop_corrupted_%"}},[5222]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has %1%%% chance to contain Gifts of the Red Queen per Mortal Fragment used"}}},stats={[1]="map_vaal_mortal_strongbox_chance_per_fragment_%"}},[5223]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has %1%%% chance to contain Gifts of the Sacrificed per Sacrifice Fragment used"}}},stats={[1]="map_vaal_sacrifice_strongbox_chance_per_fragment_%"}},[5224]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Warbands in the Area have an additional Elite Member"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Warbands in the Area have %1% additional Elites Members"}}},stats={[1]="map_warbands_packs_have_additional_elites"}},[5225]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Warbands in this Area have an additional Member"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Warbands in this Area have %1% additional Members"}}},stats={[1]="map_warbands_packs_have_additional_grunts"}},[5226]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Warbands in the Area have an additional Support Member"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Warbands in the Area have %1% additional Support Members"}}},stats={[1]="map_warbands_packs_have_additional_supports"}},[5227]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Elder Fiends"}}},stats={[1]="map_watchstone_additional_packs_of_elder_monsters"}},[5228]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Shaper Creations"}}},stats={[1]="map_watchstone_additional_packs_of_shaper_monsters"}},[5229]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Monster Damage"}}},stats={[1]="map_watchstone_monsters_damage_+%_final"}},[5230]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Monster Life"}}},stats={[1]="map_watchstone_monsters_life_+%_final"}},[5231]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently"}}},stats={[1]="max_chance_to_block_attacks_if_not_blocked_recently"}},[5232]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Adds %1% maximum Lightning Damage per 10 Intelligence"}}},stats={[1]="maximum_added_lightning_damage_per_10_int"}},[5233]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Blitz Charges"}}},stats={[1]="maximum_blitz_charges"}},[5234]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Challenger Charges"}}},stats={[1]="maximum_challenger_charges"}},[5235]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Cold Resistance while affected by Herald of Ice"}}},stats={[1]="maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice"}},[5236]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Chance to Dodge Attack Hits"}}},stats={[1]="maximum_dodge_chance_%"}},[5237]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges"}}},stats={[1]="maximum_endurance_charges_is_equal_to_maximum_frenzy_charges"}},[5238]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Energy Shield from Body Armour"}}},stats={[1]="maximum_energy_shield_from_body_armour_+%"}},[5239]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Fire Resistance while affected by Herald of Ash"}}},stats={[1]="maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash"}},[5240]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Maximum Frenzy Charges is equal to your Maximum Power Charges"}}},stats={[1]="maximum_frenzy_charges_is_equal_to_maximum_power_charges"}},[5241]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% of Maximum Life to maximum Recovery per Life Leech"}}},stats={[1]="maximum_life_leech_amount_per_leech_%_max_life"}},[5242]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum total Recovery per second from Life Leech is doubled"}}},stats={[1]="maximum_life_leech_rate_%_per_minute_is_doubled"}},[5243]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum total Recovery per second from Life Leech if you've taken a Savage Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum total Recovery per second from Life Leech if you've taken a Savage Hit Recently"}}},stats={[1]="maximum_life_leech_rate_+%_if_have_taken_a_savage_hit_recently"}},[5244]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Life per 10 Dexterity"}}},stats={[1]="maximum_life_per_10_dexterity"}},[5245]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Life per 10 Intelligence"}}},stats={[1]="maximum_life_per_10_intelligence"}},[5246]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life per 2%% increased Rarity of Items found"}}},stats={[1]="maximum_life_per_2%_increased_item_found_rarity"}},[5247]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Maximum Life as Extra Armour"}}},stats={[1]="maximum_life_%_to_add_as_maximum_armour"}},[5248]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Maximum Life as Extra Maximum Energy Shield"}}},stats={[1]="maximum_life_%_to_add_as_maximum_energy_shield"}},[5249]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Maximum Life Converted to Energy Shield"}}},stats={[1]="maximum_life_%_to_convert_to_maximum_energy_shield"}},[5250]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSpawnCorpse"},limit={[1]={[1]=1,[2]="#"}},text="Corpses you Spawn have %1%%% increased Maximum Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextSpawnCorpse"},limit={[1]={[1]="#",[2]=-1}},text="Corpses you Spawn have %1%%% reduced Maximum Life"}}},stats={[1]="maximum_life_+%_for_corpses_you_create"}},[5251]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Life per Abyss Jewel affecting you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Life per Abyss Jewel affecting you"}}},stats={[1]="maximum_life_+%_per_abyssal_jewel_affecting_you"}},[5252]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Lightning Resistance while affected by Herald of Thunder"}}},stats={[1]="maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder"}},[5253]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% of Maximum Mana to maximum Recovery per Mana Leech"}}},stats={[1]="maximum_mana_leech_amount_per_leech_%_max_mana"}},[5254]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity"}}},stats={[1]="maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity"}},[5255]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Mana per Abyss Jewel affecting you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Mana per Abyss Jewel affecting you"}}},stats={[1]="maximum_mana_+%_per_abyssal_jewel_affecting_you"}},[5256]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Chance to Dodge Spell Hits"}}},stats={[1]="maximum_spell_dodge_chance_%"}},[5257]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Strike Skills target %1% additional nearby Enemy"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Strike Skills target %1% additional nearby Enemies"}}},stats={[1]="melee_attack_number_of_spirit_strikes"}},[5258]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage during any Flask Effect"}}},stats={[1]="melee_damage_+%_during_flask_effect"}},[5259]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="Melee Movement Skills have %1%%% chance to Fortify on Hit"}}},stats={[1]="melee_movement_skill_chance_to_fortify_on_hit_%"}},[5260]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Melee Physical Damage per 10 Dexterity"}}},stats={[1]="melee_physical_damage_+%_per_10_dexterity"}},[5261]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage per 10 Strength while Fortified"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage per 10 Strength while Fortified"}}},stats={[1]="melee_physical_damage_+%_per_10_strength_while_fortified"}},[5262]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Weapon and Unarmed Attack range while Holding a Shield "}}},stats={[1]="melee_range_+_while_wielding_shield"}},[5263]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Weapon range while Dual Wielding"}}},stats={[1]="melee_range_+_while_dual_wielding"}},[5264]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee range with Axes"}}},stats={[1]="melee_range_+_with_axe"}},[5265]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee range with Claws"}}},stats={[1]="melee_range_+_with_claw"}},[5266]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee range with Daggers"}}},stats={[1]="melee_range_+_with_dagger"}},[5267]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee range with Maces and Sceptres"}}},stats={[1]="melee_range_+_with_mace"}},[5268]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee range with One Handed Weapons"}}},stats={[1]="melee_range_+_with_one_handed"}},[5269]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee range with Staves"}}},stats={[1]="melee_range_+_with_staff"}},[5270]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee range with Swords"}}},stats={[1]="melee_range_+_with_sword"}},[5271]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee range with Two Handed Weapons"}}},stats={[1]="melee_range_+_with_two_handed"}},[5272]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Melee Skills have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Melee Skills have %1%%% reduced Area of Effect"}}},stats={[1]="melee_skills_area_of_effect_+%"}},[5273]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strike Skills also target the previous location they were Used"}}},stats={[1]="melee_strike_skill_strike_previous_location"}},[5274]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1$+d to Melee Weapon Range if you have Killed Recently"}}},stats={[1]="melee_weapon_range_+_if_you_have_killed_recently"}},[5275]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d to Melee Weapon Range while at Maximum Frenzy Charges"}}},stats={[1]="melee_weapon_range_+_while_at_maximum_frenzy_charges"}},[5276]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d to Melee Weapon Range while Fortified"}}},stats={[1]="melee_weapon_range_+_while_fortified"}},[5277]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Skills used by Mines deal %1%%% increased Area Damage if you Detonated a Mine Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Skills used by Mines deal %1%%% reduced Area Damage if you Detonated a Mine Recently"}}},stats={[1]="mine_area_damage_+%_if_detonated_mine_recently"}},[5278]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skills used by Mines have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Skills used by Mines have %1%%% reduced Area of Effect"}}},stats={[1]="mine_area_of_effect_+%"}},[5279]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Skills used by Mines have %1%%% increased Area of Effect if you Detonated a Mine Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Skills used by Mines have %1%%% reduced Area of Effect if you Detonated a Mine Recently"}}},stats={[1]="mine_area_of_effect_+%_if_detonated_mine_recently"}},[5280]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Auras from Mines"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Auras from Mines"}}},stats={[1]="mine_aura_effect_+%"}},[5281]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mines have %1%%% increased Detonation Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mines have %1%%% reduced Detonation Speed"}}},stats={[1]="mine_detonation_speed_+%"}},[5282]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=1000,[2]=1000}},text="Mines Hinder Enemies near them for %1% second when they Land,\nreducing Movement Speed by 40%%"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]="#",[2]="#"}},text="Mines Hinder Enemies near them for %1% seconds when they Land,\nreducing Movement Speed by 40%%"}}},stats={[1]="mines_hinder_nearby_enemies_for_x_ms_on_arming"}},[5283]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="minimum_added_chaos_damage_if_have_crit_recently",[2]="maximum_added_chaos_damage_if_have_crit_recently"}},[5284]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage for each Spider's Web on the Enemy"}}},stats={[1]="minimum_added_chaos_damage_per_spiders_web_on_enemy",[2]="maximum_added_chaos_damage_per_spiders_web_on_enemy"}},[5285]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Attacks with this Weapon deal %1%-%2% added Chaos Damage against\nEnemies affected by at least 5 Poisons"}}},stats={[1]="minimum_added_chaos_damage_vs_enemies_with_5+_poisons",[2]="maximum_added_chaos_damage_vs_enemies_with_5+_poisons"}},[5286]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="minimum_added_cold_damage_if_have_crit_recently",[2]="maximum_added_cold_damage_if_have_crit_recently"}},[5287]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Attacks per 10 Dexterity"}}},stats={[1]="minimum_added_cold_damage_to_attacks_per_10_dexterity",[2]="maximum_added_cold_damage_to_attacks_per_10_dexterity"}},[5288]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage against Chilled Enemies"}}},stats={[1]="minimum_added_cold_damage_vs_chilled_enemies",[2]="maximum_added_cold_damage_vs_chilled_enemies"}},[5289]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage while affected by Hatred"}}},stats={[1]="minimum_added_cold_damage_while_affected_by_hatred",[2]="maximum_added_cold_damage_while_affected_by_hatred"}},[5290]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage while you have Avian's Might"}}},stats={[1]="minimum_added_cold_damage_while_you_have_avians_might",[2]="maximum_added_cold_damage_while_you_have_avians_might"}},[5291]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="minimum_added_fire_damage_if_have_crit_recently",[2]="maximum_added_fire_damage_if_have_crit_recently"}},[5292]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Fire Damage per Endurance Charge"}}},stats={[1]="minimum_added_fire_damage_per_endurance_charge",[2]="maximum_added_fire_damage_per_endurance_charge"}},[5293]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Attacks per 10 Strength"}}},stats={[1]="minimum_added_fire_damage_to_attacks_per_10_strength",[2]="maximum_added_fire_damage_to_attacks_per_10_strength"}},[5294]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Hits with this Weapon against Blinded Enemies"}}},stats={[1]="minimum_added_fire_damage_to_hits_vs_blinded_enemies",[2]="maximum_added_fire_damage_to_hits_vs_blinded_enemies"}},[5295]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="minimum_added_lightning_damage_if_have_crit_recently",[2]="maximum_added_lightning_damage_if_have_crit_recently"}},[5296]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Lightning Damage per Power Charge"}}},stats={[1]="minimum_added_lightning_damage_per_power_charge",[2]="maximum_added_lightning_damage_per_power_charge"}},[5297]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage for each Shocked Enemy you've Killed Recently"}}},stats={[1]="minimum_added_lightning_damage_per_shocked_enemy_killed_recently",[2]="maximum_added_lightning_damage_per_shocked_enemy_killed_recently"}},[5298]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Attacks per 10 Intelligence"}}},stats={[1]="minimum_added_lightning_damage_to_attacks_per_10_intelligence",[2]="maximum_added_lightning_damage_to_attacks_per_10_intelligence"}},[5299]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells per Power Charge"}}},stats={[1]="minimum_added_lightning_damage_to_spells_per_power_charge",[2]="maximum_added_lightning_damage_to_spells_per_power_charge"}},[5300]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage while you have Avian's Might"}}},stats={[1]="minimum_added_lightning_damage_while_you_have_avians_might",[2]="maximum_added_lightning_damage_while_you_have_avians_might"}},[5301]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="minimum_added_physical_damage_if_have_crit_recently",[2]="maximum_added_physical_damage_if_have_crit_recently"}},[5302]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage per Endurance Charge"}}},stats={[1]="minimum_added_physical_damage_per_endurance_charge",[2]="maximum_added_physical_damage_per_endurance_charge"}},[5303]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage against Poisoned Enemies"}}},stats={[1]="minimum_added_physical_damage_vs_poisoned_enemies",[2]="maximum_added_physical_damage_vs_poisoned_enemies"}},[5304]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells while no Life is Reserved"}}},stats={[1]="minimum_added_spell_cold_damage_while_no_life_is_reserved",[2]="maximum_added_spell_cold_damage_while_no_life_is_reserved"}},[5305]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Spells while no Life is Reserved"}}},stats={[1]="minimum_added_spell_fire_damage_while_no_life_is_reserved",[2]="maximum_added_spell_fire_damage_while_no_life_is_reserved"}},[5306]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells while no Life is Reserved"}}},stats={[1]="minimum_added_spell_lightning_damage_while_no_life_is_reserved",[2]="maximum_added_spell_lightning_damage_while_no_life_is_reserved"}},[5307]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Endurance Charges while you have at least 150 Devotion"}}},stats={[1]="minimum_endurance_charges_at_devotion_threshold"}},[5308]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Endurance Charges while on Low Life"}}},stats={[1]="minimum_endurance_charges_while_on_low_life_+"}},[5309]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Frenzy Charges while you have at least 150 Devotion"}}},stats={[1]="minimum_frenzy_charges_at_devotion_threshold"}},[5310]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Power Charges while you have at least 150 Devotion"}}},stats={[1]="minimum_power_charges_at_devotion_threshold"}},[5311]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Power Charges while on Low Life"}}},stats={[1]="minimum_power_charges_while_on_low_life_+"}},[5312]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d to Accuracy Rating"}}},stats={[1]="minion_accuracy_rating"}},[5313]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have +%1% to Accuracy Rating per 10 Devotion"}}},stats={[1]="minion_accuracy_rating_per_10_devotion"}},[5314]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Accuracy Rating"}}},stats={[1]="minion_accuracy_rating_+%"}},[5315]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Area of Effect if you have used a Minion Skill Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Area of Effect if you have used a Minion Skill Recently"}}},stats={[1]="minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently"}},[5316]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Attack and Cast Speed if you or your Minions have Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Attack and Cast Speed if you or your Minions have Killed Recently"}}},stats={[1]="minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"}},[5317]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Attack and Cast Speed per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Attack and Cast Speed per 10 Devotion"}}},stats={[1]="minion_attack_and_cast_speed_+%_per_10_devotion"}},[5318]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Attack Speed per 50 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Attack Speed per 50 Dexterity"}}},stats={[1]="minion_attack_speed_+%_per_50_dex"}},[5319]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Blind on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=100,[2]="#"}},text="Minions Blind on Hit with Attacks"}}},stats={[1]="minion_attacks_chance_to_blind_on_hit_%"}},[5320]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to deal Double Damage"}}},stats={[1]="minion_chance_to_deal_double_damage_%"}},[5321]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to Dodge Spell Hits"}}},stats={[1]="minion_chance_to_dodge_spells_%"}},[5322]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Freeze, Shock and Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Minions always Freeze, Shock and Ignite"}}},stats={[1]="minion_chance_to_freeze_shock_ignite_%"}},[5323]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage if you've Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage if you've Hit Recently"}}},stats={[1]="minion_damage_+%_if_enemy_hit_recently"}},[5324]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage against Abyssal Monsters"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage against Abyssal Monsters"}}},stats={[1]="minion_damage_+%_vs_abyssal_monsters"}},[5325]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions take %1%%% reduced Damage"}}},stats={[1]="minion_damage_taken_+%"}},[5326]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions gain %1%%% of Elemental Damage as Extra Chaos Damage"}}},stats={[1]="minion_elemental_damage_%_to_add_as_chaos"}},[5327]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have +30%% to all Elemental Resistances"}}},stats={[1]="minion_elemental_resistance_30%"}},[5328]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Rampage Kill when Minion hits a Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Rampage Kill when Minion hits a Unique Enemy"}}},stats={[1]="minion_grants_rampage_kill_to_parent_on_hitting_unique_enemy_%"}},[5329]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Minions Leech %1%%% of Damage as Life against Poisoned Enemies"}}},stats={[1]="minion_life_leech_permyriad_vs_poisoned_enemies"}},[5330]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions Regenerate %1% Life per second"}}},stats={[1]="minion_life_regeneration_rate_per_second"}},[5331]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% to all maximum Elemental Resistances"}}},stats={[1]="minion_maximum_all_elemental_resistances_%"}},[5332]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions gain %1%%% of Maximum Life as Extra Maximum Energy Shield"}}},stats={[1]="minion_maximum_life_%_to_add_as_maximum_energy_shield"}},[5333]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Movement Speed per 50 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Movement Speed per 50 Dexterity"}}},stats={[1]="minion_movement_speed_+%_per_50_dex"}},[5334]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Raging Spirits have %1%%% increased maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Raging Spirits have %1%%% reduced maximum Life"}}},stats={[1]="minion_raging_spirit_maximum_life_+%"}},[5335]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Summoned Raging Spirits take %1%%% of their Maximum Life per second as Chaos Damage"}}},stats={[1]="minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage"}},[5336]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Minion Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Minion Skills"}}},stats={[1]="minion_skill_mana_cost_+%"}},[5337]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Hinder Enemies on Hit with Spells, with 30%% reduced Movement Speed"},[2]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=100,[2]="#"}},text="Minions Hinder Enemies on Hit with Spells, with 30%% reduced Movement Speed"}}},stats={[1]="minion_spells_chance_to_hinder_on_hit_%"}},[5338]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions cannot Taunt Enemies"}}},stats={[1]="minions_cannot_taunt_enemies"}},[5339]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Intimidate Enemies for 4 seconds on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]=100,[2]="#"}},text="Minions Intimidate Enemies for 4 seconds on Hit"}}},stats={[1]="minions_chance_to_intimidate_on_hit_%"}},[5340]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Half of your Strength is added to your Minions"}}},stats={[1]="minions_gain_your_strength"}},[5341]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions' Hits can only Kill Ignited Enemies"}}},stats={[1]="minions_hits_can_only_kill_ignited_enemies"}},[5342]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions Recover %1%%% of Life on Killing a Poisoned Enemy"}}},stats={[1]="minions_recover_%_maximum_life_on_killing_poisoned_enemy"}},[5343]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions Recover %1%%% of their Life when you Focus"}}},stats={[1]="minions_recover_%_maximum_life_when_you_focus"}},[5344]={lang={English={[1]={[1]={k="passive_hash",v=1},limit={[1]={[1]="#",[2]="#"}},text="Allocates %1%"}}},stats={[1]="mod_granted_passive_hash"}},[5345]={lang={English={[1]={[1]={k="passive_hash",v=1},limit={[1]={[1]="#",[2]="#"}},text="Allocates %1%"}}},stats={[1]="mod_granted_passive_hash_2"}},[5346]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to number of Projectiles instead apply\nto the number of targets Projectiles Split towards"}}},stats={[1]="modifiers_to_number_of_projectiles_instead_apply_to_splitting"}},[5347]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Molten Shell has %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Molten Shell has %1%%% reduced Skill Effect Duration"}}},stats={[1]="molten_shell_duration_+%"}},[5348]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Pyroclast Mine deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pyroclast Mine deals %1%%% reduced Damage"}}},stats={[1]="mortar_barrage_mine_damage_+%"}},[5349]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Pyroclast Mine fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Pyroclast Mine fires %1% additional Projectiles"}}},stats={[1]="mortar_barrage_mine_num_projectiles"}},[5350]={lang={English={[1]={[1]={k="divide_by_two_0dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Pyroclast Mine has %1%%% increased Throwing Speed"},[2]={[1]={k="divide_by_two_0dp",v=1},[2]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pyroclast Mine has %1%%% reduced Throwing Speed"}}},stats={[1]="mortar_barrage_mine_throwing_speed_halved_+%"}},[5351]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Pyroclast Mine has %1%%% increased Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pyroclast Mine has %1%%% reduced Throwing Speed"}}},stats={[1]="mortar_barrage_mine_throwing_speed_+%"}},[5352]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Movement Attack Skills have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Movement Attack Skills have %1%%% reduced Attack Speed"}}},stats={[1]="movement_attack_skills_attack_speed_+%"}},[5353]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cooldown Recovery Speed of Movement Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cooldown Recovery Speed of Movement Skills"}}},stats={[1]="movement_skills_cooldown_speed_+%"}},[5354]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased cooldown recovery speed of Movement Skills used while affected by Haste"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced cooldown recovery speed of Movement Skills used while affected by Haste"}}},stats={[1]="movement_skills_cooldown_speed_+%_while_affected_by_haste"}},[5355]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Movement Skills deal no Physical Damage"}}},stats={[1]="movement_skills_deal_no_physical_damage"}},[5356]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you've thrown a Trap or Mine Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you've thrown a Trap or Mine Recently"}}},stats={[1]="movement_speed_+%_if_placed_trap_or_mine_recently"}},[5357]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Movement Speed is %1%%% of its base value"}}},stats={[1]="movement_speed_is_%_of_base"}},[5358]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you've Hit an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you've Hit an Enemy Recently"}}},stats={[1]="movement_speed_+%_if_enemy_hit_recently"}},[5359]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you haven't taken Damage Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you haven't taken Damage Recently"}}},stats={[1]="movement_speed_+%_if_have_not_taken_damage_recently"}},[5360]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you have used a Vaal Skill Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you have used a Vaal Skill Recently"}}},stats={[1]="movement_speed_+%_if_have_used_a_vaal_skill_recently"}},[5361]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed per Chest opened Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed per Chest opened Recently"}}},stats={[1]="movement_speed_+%_per_chest_opened_recently"}},[5362]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed per Endurance Charge"}}},stats={[1]="movement_speed_+%_per_endurance_charge"}},[5363]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Movement Speed for each\nnearby Enemy, up to 8%%"}}},stats={[1]="movement_speed_+%_per_nearby_enemy"}},[5364]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed per Power Charge"}}},stats={[1]="movement_speed_+%_per_power_charge"}},[5365]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while affected by Grace"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while affected by Grace"}}},stats={[1]="movement_speed_+%_while_affected_by_grace"}},[5366]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while Bleeding"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while Bleeding"}}},stats={[1]="movement_speed_+%_while_bleeding"}},[5367]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement speed while on Burning, Chilled or Shocked ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement speed while on Burning, Chilled or Shocked ground"}}},stats={[1]="movement_speed_+%_while_on_burning_chilled_shocked_ground"}},[5368]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while on Burning Ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while on Burning Ground"}}},stats={[1]="movement_speed_+%_while_on_burning_ground"}},[5369]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while you have Cat's Stealth"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while you have Cat's Stealth"}}},stats={[1]="movement_speed_+%_while_you_have_cats_stealth"}},[5370]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while you have Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while you have Energy Shield"}}},stats={[1]="movement_speed_+%_while_you_have_energy_shield"}},[5371]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed per Summoned Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed per Summoned Totem"}}},stats={[1]="movement_velocity_+%_per_totem"}},[5372]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while at maximum Power Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while at maximum Power Charges"}}},stats={[1]="movement_velocity_+%_while_at_maximum_power_charges"}},[5373]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying %1$+d%% to those Resistances"}}},stats={[1]="nearby_enemies_all_exposure_%_while_phasing"}},[5374]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least one nearby corpse, you and nearby Allies deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least one nearby corpse, you and nearby Allies deal %1%%% less Damage"}}},stats={[1]="necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse"}},[5375]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least one nearby corpse, nearby Enemies deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least one nearby corpse, nearby Enemies deal %1%%% reduced Damage"}}},stats={[1]="necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse"}},[5376]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Maximum Life"}}},stats={[1]="necromancer_defensive_notable_minion_maximum_life_+%_final"}},[5377]={lang={English={[1]={[1]={k="per_minute_to_per_second_1dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="For each nearby corpse, you and nearby Allies Regenerate %1%%% of Energy Shield per second, up to 2.0%% per second"}}},stats={[1]="necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse"}},[5378]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="For each nearby corpse, you and nearby Allies Regenerate %1% Mana\nper second, up to 50 per second"}}},stats={[1]="necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse"}},[5379]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Bleeding does not deal extra Damage while the Enemy is moving"}}},stats={[1]="no_extra_bleed_damage_while_target_is_moving"}},[5380]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Non-Chaos Damage as extra Chaos Damage"}}},stats={[1]="non_chaos_damage_to_add_as_chaos_damage_%"}},[5381]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHit"},limit={[1]={[1]="#",[2]="#"}},text="Non-Chilled Enemies you inflict Bleeding on are Chilled"}}},stats={[1]="non_chilled_enemies_you_bleed_are_chilled"}},[5382]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHit"},limit={[1]={[1]="#",[2]="#"}},text="Non-Chilled Enemies you Poison are Chilled"}}},stats={[1]="non_chilled_enemies_you_poison_are_chilled"}},[5383]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Non-Critical Strikes deal no Damage"}}},stats={[1]="non_critical_strikes_deal_no_damage"}},[5384]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Non-Curse Auras per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced effect of Non-Curse Auras per 10 Devotion"}}},stats={[1]="non_curse_aura_effect_+%_per_10_devotion"}},[5385]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of non-Damaging Ailments on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of non-Damaging Ailments on Enemies"}}},stats={[1]="non_damaging_ailment_effect_+%"}},[5386]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of non-Damaging Ailments on Enemies per 10 Devotion"}}},stats={[1]="non_damaging_ailment_effect_+%_per_10_devotion"}},[5387]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Inflict non-Damaging Ailments as though dealing %1%%% more Damage"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Inflict non-Damaging Ailments as though dealing %1%%% less Damage"}}},stats={[1]="non_damaging_ailments_as_though_damage_+%_final"}},[5388]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles have %1%%% increased Critical Strike Chance against Targets they do not Pierce"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles have %1%%% reduced Critical Strike Chance against Targets they do not Pierce"}}},stats={[1]="non_piercing_projectiles_critical_strike_chance_+%"}},[5389]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Slain Normal Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Dropped by Slain Normal Enemies"}}},stats={[1]="normal_monster_dropped_item_quantity_+%"}},[5390]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nova Spells Cast at the targeted location instead of around you"}}},stats={[1]="nova_spells_cast_at_target_location"}},[5391]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Bow Attacks fire an additional Arrow while Main Hand Accuracy Rating is at least 3000"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Bow Attacks fire %1% additional Arrows while Main Hand Accuracy Rating is at least 3000"}}},stats={[1]="number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more"}},[5392]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You can apply an additional Curse while at maximum Power Charges"},[2]={limit={[1]={[1]=1,[2]="#"}},text="You can apply %1% additional Curses while at maximum Power Charges"}}},stats={[1]="number_of_additional_curses_allowed_while_at_maximum_power_charges"}},[5393]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You can inflict an additional Ignite on an Enemy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You can inflict %1% additional Ignites on an Enemy"}}},stats={[1]="number_of_additional_ignites_allowed"}},[5394]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Skills which throw Mines throw up to %1% additional Mines if you have at least 800 Dexterity"}}},stats={[1]="number_of_additional_mines_to_place_with_at_least_500_dex"}},[5395]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Skills which throw Mines throw up to %1% additional Mines if you have at least 800 Intelligence"}}},stats={[1]="number_of_additional_mines_to_place_with_at_least_500_int"}},[5396]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]=1}},text="Skills fire an additional Projectile if you've been Hit Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=2,[2]="#"}},text="Skills fire %1% additional Projectiles if you've been Hit Recently"}}},stats={[1]="number_of_additional_projectiles_if_you_have_been_hit_recently"}},[5397]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]=1}},text="Skills fire an additional Projectile if you've used a Movement Skill Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=2,[2]="#"}},text="Skills fire %1% additional Projectiles if you've used a Movement Skill Recently"}}},stats={[1]="number_of_additional_projectiles_if_you_have_used_movement_skill_recently"}},[5398]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Skills which Throw Traps throw up to 1 additional Trap"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Skills which Throw Traps throw up to %1% additional Traps"}}},stats={[1]="number_of_additional_traps_to_throw"}},[5399]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Animated Weapons"}}},stats={[1]="number_of_animated_weapons_allowed"}},[5400]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Gain an Endurance Charge every 4 seconds while Stationary"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Gain %1% Endurance Charges every 4 seconds while Stationary"}}},stats={[1]="number_of_endurance_charges_to_gain_every_4_seconds_while_stationary"}},[5401]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="%1$+d to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped"}}},stats={[1]="number_of_golems_allowed_with_3_primordial_jewels"}},[5402]={lang={English={[1]={limit={[1]={[1]="#",[2]=-1}},text="Skills fire %1%%% less projectiles"},[2]={limit={[1]={[1]=1,[2]="#"}},text="Skills fire %1%%% more projectiles"}}},stats={[1]="number_of_projectiles_+%_final_from_skill"}},[5403]={lang={English={[1]={[1]={k="divide_by_two_0dp",v=1},limit={[1]={[1]=2,[2]="#"}},text="%1$+d to maximum number of Skeletons"}}},stats={[1]="number_of_skeletons_allowed_per_2_old"}},[5404]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+1 to maximum number of Raised Zombies per %1% Strength"}}},stats={[1]="number_of_zombies_allowed_+1_per_X_strength"}},[5405]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Offering Skills have %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Offering Skills have %1%%% reduced Duration"}}},stats={[1]="offering_duration_+%"}},[5406]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage\nequal to %1%%% of Sacrificed Mana for 4 seconds"}}},stats={[1]="on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds"}},[5407]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When you create a Banner, it gains %1%%% of the Stages of your placed Banner"}}},stats={[1]="on_casting_banner_recover_%_of_planted_banner_stages"}},[5408]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="When you place a Banner, you and nearby Allies Recover %1%%% of Life for\neach Stage the Banner has"}}},stats={[1]="on_planting_banner_you_and_nearby_allies_recover_permyriad_maximum_life_per_stage"}},[5409]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Onslaught duration"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Onslaught duration"}}},stats={[1]="onslaught_duration_+%"}},[5410]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Orb of Storms has %1%%% increased Cast Speed"}}},stats={[1]="orb_of_storms_cast_speed_+%"}},[5411]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Maximum Resistances are %1%%%"}}},stats={[1]="override_maximum_damage_resistance_%"}},[5412]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Base Critical Strike Chance for Attacks with Weapons is %1%%%"}}},stats={[1]="override_weapon_base_critical_strike_chance"}},[5413]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Poisons you inflict during any Flask Effect have %1%%% chance to deal 100%% more Damage"}}},stats={[1]="pathfinder_poison_damage_+100%_final_chance_during_flask_effect"}},[5414]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Number of Perandus Coins dropped in this Area is Doubled"}}},stats={[1]="perandus_double_number_of_coins_found"}},[5415]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain an Endurance, Frenzy or Power Charge when any\nof your Traps are Triggered by an Enemy"}}},stats={[1]="%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy"}},[5416]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="While in Her Embrace, take %1%%% of your total Maximum Life and Energy Shield as Fire Damage per second per Level"}}},stats={[1]="%_maximum_es_and_life_taken_as_fire_damage_per_minute_per_level_while_in_her_embrace"}},[5417]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum number of Summoned Raging Spirits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum number of Summoned Raging Spirits"}}},stats={[1]="%_number_of_raging_spirits_allowed"}},[5418]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="Permanently Intimidate Enemies on Block"}}},stats={[1]="permanently_intimidate_enemy_on_block"}},[5419]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You have Phasing if you have Blocked Recently"}}},stats={[1]="phasing_if_blocked_recently"}},[5420]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Seismic Trap has %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Seismic Trap has %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="phys_cascade_trap_cooldown_speed_+%"}},[5421]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Seismic Trap deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Seismic Trap deals %1%%% reduced Damage"}}},stats={[1]="phys_cascade_trap_damage_+%"}},[5422]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Seismic Trap has %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Seismic Trap has %1%%% reduced Skill Effect Duration"}}},stats={[1]="phys_cascade_trap_duration_+%"}},[5423]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Seismic Trap releases an additional Wave"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Seismic Trap releases %1% additional Waves"}}},stats={[1]="phys_cascade_trap_number_of_additional_cascades"}},[5424]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Physical Damage for each Map Item Modifier affecting the Area"}}},stats={[1]="physical_damage_+%_per_explicit_map_mod_affecting_area"}},[5425]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Damage of a Random Element"}}},stats={[1]="physical_damage_from_hits_%_taken_as_random_element"}},[5426]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage over Time taken while moving"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage over Time Damage taken while moving"}}},stats={[1]="physical_damage_over_time_taken_+%_while_moving"}},[5427]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Chaos Damage against\nPoisoned Enemies"}}},stats={[1]="physical_damage_%_to_add_as_chaos_vs_poisoned_enemies"}},[5428]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Fire Damage while affected by Anger"}}},stats={[1]="physical_damage_%_to_add_as_fire_damage_while_affected_by_anger"}},[5429]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="physical_damage_%_to_add_as_fire_if_have_crit_recently"}},[5430]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Fire Damage per 1 Rage"}}},stats={[1]="physical_damage_%_to_add_as_fire_per_rage"}},[5431]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Lightning Damage while affected by Wrath"}}},stats={[1]="physical_damage_%_to_add_as_lightning_damage_while_affected_by_wrath"}},[5432]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Cold Damage while you have at least 150 Devotion"}}},stats={[1]="physical_damage_%_to_convert_to_cold_at_devotion_threshold"}},[5433]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Fire Damage while you have at least 150 Devotion"}}},stats={[1]="physical_damage_%_to_convert_to_fire_at_devotion_threshold"}},[5434]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Lightning Damage while you have at least 150 Devotion"}}},stats={[1]="physical_damage_%_to_convert_to_lightning_at_devotion_threshold"}},[5435]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Hits and Ailments against Ignited Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Hits and Ailments against Ignited Enemies"}}},stats={[1]="physical_damage_+%_vs_ignited_enemies"}},[5436]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage while affected by Herald of Purity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage while affected by Herald of Purity"}}},stats={[1]="physical_damage_+%_while_affected_by_herald_of_purity"}},[5437]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage while you have Unholy Might"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage while you have Unholy Might"}}},stats={[1]="physical_damage_+%_with_unholy_might"}},[5438]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction while you have at least 150 Devotion"}}},stats={[1]="physical_damage_reduction_%_at_devotion_threshold"}},[5439]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction per Frenzy Charge"}}},stats={[1]="physical_damage_reduction_percent_per_frenzy_charge"}},[5440]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction for each Hit you've taken Recently up to a maximum of 5%%"}}},stats={[1]="physical_damage_reduction_%_per_hit_you_have_taken_recently"}},[5441]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction per Power Charge"}}},stats={[1]="physical_damage_reduction_percent_per_power_charge"}},[5442]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction while affected by Herald of Purity"}}},stats={[1]="physical_damage_reduction_%_while_affected_by_herald_of_purity"}},[5443]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour during Soul Gain Prevention"}}},stats={[1]="physical_damage_reduction_rating_during_soul_gain_prevention"}},[5444]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour if you've Hit an Enemy Recently"}}},stats={[1]="physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently"}},[5445]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour per Endurance Charge"}}},stats={[1]="physical_damage_reduction_rating_per_endurance_charge"}},[5446]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction while there\nis only one nearby Enemy"}}},stats={[1]="physical_damage_reduction_%_if_only_one_enemy_nearby"}},[5447]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Armour per Endurance Charge"}}},stats={[1]="physical_damage_reduction_rating_+%_per_endurance_charge"}},[5448]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction for each\nnearby Enemy, up to 8%%"}}},stats={[1]="physical_damage_reduction_%_per_nearby_enemy"}},[5449]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements"}}},stats={[1]="physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements"}},[5450]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice"}}},stats={[1]="physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice"}},[5451]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements"}}},stats={[1]="physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements"}},[5452]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire"}}},stats={[1]="physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire"}},[5453]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements"}}},stats={[1]="physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements"}},[5454]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning"}}},stats={[1]="physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning"}},[5455]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Attack Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Attack Skills"}}},stats={[1]="physical_damage_with_attack_skills_+%"}},[5456]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Spell Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Spell Skills"}}},stats={[1]="physical_damage_with_spell_skills_+%"}},[5457]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Physical Skill Gems"}}},stats={[1]="physical_skill_gem_level_+"}},[5458]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles have %1%%% increased Critical Strike Chance against Targets they Pierce"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles have %1%%% reduced Critical Strike Chance against Targets they Pierce"}}},stats={[1]="piercing_projectiles_critical_strike_chance_+%"}},[5459]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Poison per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Poison per Frenzy Charge"}}},stats={[1]="poison_damage_+%_per_frenzy_charge"}},[5460]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Poison per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Poison per Power Charge"}}},stats={[1]="poison_damage_+%_per_power_charge"}},[5461]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Poison inflicted on Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Poison inflicted on Bleeding Enemies"}}},stats={[1]="poison_damage_+%_vs_bleeding_enemies"}},[5462]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Poison if you have at least 300 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Poison if you have at least 300 Dexterity"}}},stats={[1]="poison_damage_+%_with_over_300_dexterity"}},[5463]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Poison per Frenzy Charge"}}},stats={[1]="poison_dot_multiplier_+_per_frenzy_charge"}},[5464]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poison Duration for each Poison you have inflicted Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poison Duration for each Poison you have inflicted Recently"}}},stats={[1]="poison_duration_+%_per_poison_applied_recently"}},[5465]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poison Duration per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poison Duration per Power Charge"}}},stats={[1]="poison_duration_+%_per_power_charge"}},[5466]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poison Duration if you have at least 150 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poison Duration if you have at least 150 Intelligence"}}},stats={[1]="poison_duration_+%_with_over_150_intelligence"}},[5467]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]="#"}},text="Critical Strikes Poison the Enemy"}}},stats={[1]="poison_on_critical_strike"}},[5468]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you"}}},stats={[1]="poison_reflected_to_self"}},[5469]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Poisons on you expire %1%%% faster"},[2]={[1]={k="negate",v=1},[2]={k="canonical_line",v="reminderstring"},limit={[1]={[1]="#",[2]=-1}},text="Poisons on you expire %1%%% slower"}}},stats={[1]="poison_time_passed_+%"}},[5470]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Power Charge on Kill while holding a Shield"}}},stats={[1]="power_charge_on_kill_percent_chance_while_holding_shield"}},[5471]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when you Block Spell Damage"}}},stats={[1]="power_charge_on_spell_block_%_chance"}},[5472]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Power Siphon fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Power Siphon fires %1% additional Projectiles"}}},stats={[1]="power_siphon_number_of_additional_projectiles"}},[5473]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Precision has 50%% less Mana Reservation"}}},stats={[1]="precision_mana_reservation_-50%_final"}},[5474]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Precision has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Precision has %1%%% reduced Mana Reservation"}}},stats={[1]="precision_mana_reservation_+%"}},[5475]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Precision Reserves no Mana"}}},stats={[1]="precision_reserves_no_mana"}},[5476]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to prevent Projectiles Chaining to or from you"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Prevent Projectiles Chaining to or from you"}}},stats={[1]="prevent_projectile_chaining_%_chance"}},[5477]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Pride has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pride has %1%%% reduced Aura Effect"}}},stats={[1]="pride_aura_effect_+%"}},[5478]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to deal Double Damage while using Pride"}}},stats={[1]="pride_chance_to_deal_double_damage_%"}},[5479]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Impale Enemies on Hit with Attacks while using Pride"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Impale Enemies on Hit with Attacks while using Pride"}}},stats={[1]="pride_chance_to_impale_with_attacks_%"}},[5480]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="Your Hits Intimidate Enemies for 4 seconds while you are using Pride"}}},stats={[1]="pride_intimidate_enemy_for_4_seconds_on_hit"}},[5481]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Pride has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pride has %1%%% reduced Mana Reservation"}}},stats={[1]="pride_mana_reservation_+%"}},[5482]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Physical Damage while using Pride"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Physical Damage while using Pride"}}},stats={[1]="pride_physical_damage_+%"}},[5483]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Pride Reserves no Mana"}}},stats={[1]="pride_reserves_no_mana"}},[5484]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Impales you inflict last %1% additional Hits while using Pride"}}},stats={[1]="pride_your_impaled_debuff_lasts_+_additional_hits"}},[5485]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Attack Damage during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Attack Damage during any Flask Effect"}}},stats={[1]="projectile_attack_damage_+%_during_flask_effect"}},[5486]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles deal %1%%% more Damage for each remaining Chain"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles deal %1%%% less Damage for each remaining Chain"}}},stats={[1]="projectile_damage_%_for_each_remaining_chain"}},[5487]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles deal %1%%% increased Damage for each time they have Chained"}}},stats={[1]="projectile_damage_+%_per_chain"}},[5488]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles deal %1%%% increased Damage for each Enemy Pierced"}}},stats={[1]="projectile_damage_+%_per_pierced_enemy"}},[5489]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles gain %1%%% of Non-Chaos Damage as extra Chaos Damage per Chain"}}},stats={[1]="projectile_non_chaos_damage_to_add_as_chaos_damage_%_per_chain"}},[5490]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemy Projectiles Pierce you"}}},stats={[1]="projectiles_always_pierce_you"}},[5491]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles from Spells cannot Pierce"}}},stats={[1]="projectiles_from_spells_cannot_pierce"}},[5492]={lang={English={[1]={limit={[1]={[1]=10,[2]=19}},text="Projectiles Pierce an additional Target"},[2]={[1]={k="divide_by_ten_0dp",v=1},limit={[1]={[1]=20,[2]="#"}},text="Projectiles Pierce %1% additional Targets"}}},stats={[1]="projectiles_pierce_1_additional_target_per_10_stat_value"}},[5493]={lang={English={[1]={limit={[1]={[1]=15,[2]=24}},text="Projectiles Pierce an additional Target"},[2]={[1]={k="divide_by_fifteen_0dp",v=1},limit={[1]={[1]=25,[2]="#"}},text="Projectiles Pierce %1% additional Targets"}}},stats={[1]="projectiles_pierce_1_additional_target_per_15_stat_value"}},[5494]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Pierce all nearby Targets"}}},stats={[1]="projectiles_pierce_all_nearby_targets"}},[5495]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Pierce all Targets while you have Phasing"}}},stats={[1]="projectiles_pierce_while_phasing"}},[5496]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Projectiles Pierce an additional Target while you have Phasing"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Projectiles Pierce %1% additional Targets while you have Phasing"}}},stats={[1]="projectiles_pierce_x_additional_targets_while_you_have_phasing"}},[5497]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Feeding Frenzy base Duration is %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Feeding Frenzy base Duration is %1% seconds"}}},stats={[1]="puppet_master_base_duration_ms"}},[5498]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Wave of Conviction's Exposure applies %1$+d%% Elemental Resistance"}}},stats={[1]="purge_additional_enemy_resistance_%"}},[5499]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Wave of Conviction deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Wave of Conviction deals %1%%% reduced Damage"}}},stats={[1]="purge_damage_+%"}},[5500]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Wave of Conviction has %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Wave of Conviction has %1%%% reduced Duration"}}},stats={[1]="purge_duration_+%"}},[5501]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Purity of Elements Reserves no Mana"}}},stats={[1]="purity_of_elements_reserves_no_mana"}},[5502]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Purity of Fire Reserves no Mana"}}},stats={[1]="purity_of_fire_reserves_no_mana"}},[5503]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Purity of Ice Reserves no Mana"}}},stats={[1]="purity_of_ice_reserves_no_mana"}},[5504]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Purity of Lightning Reserves no Mana"}}},stats={[1]="purity_of_lightning_reserves_no_mana"}},[5505]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Dash has %1$+d Cooldown"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Dash has %1$+d Cooldowns"}}},stats={[1]="quick_dodge_added_cooldown_count"}},[5506]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Dash travels %1%%% increased distance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Dash travels %1%%% reduced distance"}}},stats={[1]="quick_dodge_travel_distance_+%"}},[5507]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Steelskin grants %1%%% additional Physical Damage Reduction"}}},stats={[1]="quick_guard_additional_physical_damage_reduction_%"}},[5508]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Pierce an additional Target"}}},stats={[1]="quiver_projectiles_pierce_1_additional_target"}},[5509]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Pierce 2 additional Targets"}}},stats={[1]="quiver_projectiles_pierce_2_additional_targets"}},[5510]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Pierce 3 additional Targets"}}},stats={[1]="quiver_projectiles_pierce_3_additional_targets"}},[5511]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d to Maximum Rage"}}},stats={[1]="maximum_rage"}},[5512]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]=1,[2]=1}},text="Inherent effects from having Rage are Tripled"}}},stats={[1]="rage_effects_doubled"}},[5513]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]=1,[2]="#"}},text="Gain %1% Rage when you Kill an Enemy"}}},stats={[1]="gain_rage_on_kill"}},[5514]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain 1 Rage when you Hit a Rare or Unique Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]=100,[2]="#"}},text="Gain 1 Rage when you Hit a Rare or Unique Enemy"}}},stats={[1]="gain_rage_on_hitting_rare_unique_enemy_%"}},[5515]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]=1,[2]="#"}},text="Gain %1% Rage when you use a Warcry"}}},stats={[1]="gain_rage_when_you_use_a_warcry"}},[5516]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned while you have at least 25 Rage"}}},stats={[1]="cannot_be_stunned_with_25_rage"}},[5517]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Rage on Hit"}}},stats={[1]="gain_rage_on_hit"}},[5518]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Raging Spirits' Hits always Ignite"}}},stats={[1]="raging_spirits_always_ignite"}},[5519]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy"}}},stats={[1]="raging_spirits_refresh_duration_when_they_kill_ignited_enemy"}},[5520]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Enemies have %1%%% more Accuracy Rating while you have Phasing"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nearby Enemies have %1%%% less Accuracy Rating while you have Phasing"}}},stats={[1]="raider_nearby_enemies_accuracy_rating_+%_final_while_phasing"}},[5521]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rain of Arrows has %1%%% chance to fire an additional sequence of arrows"}}},stats={[1]="rain_of_arrows_additional_sequence_chance_%"}},[5522]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rain of Arrows has %1%%% chance to fire an additional sequence of arrows"}}},stats={[1]="rain_of_arrows_rain_of_arrows_additional_sequence_chance_%"}},[5523]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Raise Spectre"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Raise Spectre"}}},stats={[1]="raise_spectre_mana_cost_+%"}},[5524]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raise Zombie does not require a corpse"}}},stats={[1]="raise_zombie_does_not_use_corpses"}},[5525]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Raised Zombies count as corpses"}}},stats={[1]="raised_zombies_are_usable_as_corpses_when_alive"}},[5526]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Curse non-Cursed Enemies with a random Curse on Hit"}}},stats={[1]="random_curse_on_hit_%_against_uncursed_enemies"}},[5527]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain Rare or Unique Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain Rare or Unique Enemies"}}},stats={[1]="rare_or_unique_monster_dropped_item_rarity_+%"}},[5528]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Brand Attachment range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Brand Attachment range"}}},stats={[1]="recall_sigil_target_search_range_+%"}},[5529]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to be inflicted with Bleeding when Hit by an Attack"}}},stats={[1]="receive_bleeding_chance_%_when_hit_by_attack"}},[5530]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Flask Charge when you deal a Critical Strike while affected by Precision"}}},stats={[1]="recharge_flasks_on_crit_while_affected_by_precision"}},[5531]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Recover 10%% of Mana when you use a Skill while affected by Clarity"}}},stats={[1]="recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity"}},[5532]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1% Life when you Ignite an Enemy"}}},stats={[1]="recover_X_life_on_enemy_ignited"}},[5533]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Mana gained on Killing a Frozen Enemy"}}},stats={[1]="recover_X_mana_on_killing_frozen_enemy"}},[5534]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life when you gain Adrenaline"}}},stats={[1]="recover_%_life_when_gaining_adrenaline"}},[5535]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life per Poison affecting Enemies you Kill"}}},stats={[1]="recover_permyriad_maximum_life_per_poison_on_enemy_on_kill"}},[5536]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% Cold Resistance while affected by Hatred"}}},stats={[1]="reduce_enemy_cold_resistance_%_while_affected_by_hatred"}},[5537]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% Fire Resistance against Blinded Enemies"}}},stats={[1]="reduce_enemy_fire_resistance_%_vs_blinded_enemies"}},[5538]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% Fire Resistance while affected by Anger "}}},stats={[1]="reduce_enemy_fire_resistance_%_while_affected_by_anger"}},[5539]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% Lightning Resistance while affected by Wrath"}}},stats={[1]="reduce_enemy_lightning_resistance_%_while_affected_by_wrath"}},[5540]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Reflect Enemy Chills and Freezes"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Chill and Freeze Reflection"}}},stats={[1]="reflect_chill_and_freeze_%_chance"}},[5541]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Shock Reflection"}}},stats={[1]="reflect_shocks"}},[5542]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Reflect Shocks applied to you to all Nearby Enemies"}}},stats={[1]="reflect_shocks_to_enemies_in_radius"}},[5543]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Physical Damage taken while affected by Determination"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Physical Damage taken while affected by Determination"}}},stats={[1]="reflected_physical_damage_taken_+%_while_affected_by_determination"}},[5544]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield over 2 seconds when you Consume a corpse"}}},stats={[1]="regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse"}},[5545]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Mana over 2 seconds when you Consume a corpse"}}},stats={[1]="regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse"}},[5546]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Remove all Ailments and Burning when you gain Adrenaline"}}},stats={[1]="remove_ailments_and_burning_on_gaining_adrenaline"}},[5547]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Elemental Ailments you inflict are removed from you"}}},stats={[1]="base_remove_elemental_ailments_from_you_when_you_inflict_them"}},[5548]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes Bleeding when you use a Warcry"}}},stats={[1]="remove_bleeding_on_warcry"}},[5549]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Remove Chill and Freeze when you use a Flask"}}},stats={[1]="remove_chill_and_freeze_on_flask_use"}},[5550]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Remove a Curse when you use a Mana Flask"}}},stats={[1]="remove_curse_on_mana_flask_use"}},[5551]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Remove Ignite and Burning when you use a Flask"}}},stats={[1]="remove_ignite_and_burning_on_flask_use"}},[5552]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Remove an Ailment when you use a Flask if all Equipped Items are Elder Items"}}},stats={[1]="remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder"}},[5553]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Remove a random Elemental Ailment when you use a Mana Flask"}}},stats={[1]="remove_random_elemental_ailment_on_mana_flask_use"}},[5554]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Remove Shock when you use a Flask"}}},stats={[1]="remove_shock_on_flask_use"}},[5555]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies affected by your Spider's Webs have %1$+d%% to All Resistances"}}},stats={[1]="resist_all_%_for_enemies_you_inflict_spiders_web_upon"}},[5556]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Recover %1%%% of Mana and Energy Shield when you Focus"}}},stats={[1]="restore_energy_shield_and_mana_when_you_focus_%"}},[5557]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Returning Projectiles Pierce all Targets"}}},stats={[1]="returning_projectiles_always_pierce"}},[5558]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Mine applies %1%%% increased Damage dealt to Enemies near it, up to 10%%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Mine applies %1%%% reduced Damage dealt to Enemies near it, up to 10%%"}}},stats={[1]="sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%"}},[5559]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Mine applies %1%%% increased Damage taken to Enemies near it, up to 10%%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Mine applies %1%%% reduced Damage taken to Enemies near it, up to 10%%"}}},stats={[1]="sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%"}},[5560]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Sacrifice %1%%% of your Life when you Use or Trigger a Spell Skill"}}},stats={[1]="sacrifice_%_life_on_spell_skill"}},[5561]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Sacrifice %1%%% of Life to gain that much Energy Shield when you Cast a Spell"}}},stats={[1]="sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast"}},[5562]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purifying Flame has %1%%% increased Area of Effect if targeting Consecrated Ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purifying Flame has %1%%% reduced Area of Effect if targeting Consecrated Ground"}}},stats={[1]="sanctify_area_of_effect_+%_when_targeting_consecrated_ground"}},[5563]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Consecrated Ground from Purifying Flame applies %1%%% increased Damage taken to Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Consecrated Ground from Purifying Flame applies %1%%% reduced Damage taken to Enemies"}}},stats={[1]="sanctify_consecrated_ground_enemy_damage_taken_+%"}},[5564]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purifying Flame deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purifying Flame deals %1%%% reduced Damage"}}},stats={[1]="sanctify_damage_+%"}},[5565]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Scourge Arrow deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Scourge Arrow deals %1%%% reduced Damage"}}},stats={[1]="scourge_arrow_damage_+%"}},[5566]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Curses on you per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Curses on you per 10 Devotion"}}},stats={[1]="self_curse_duration_+%_per_10_devotion"}},[5567]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Elemental Ailment Duration on you per 10 Devotion"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Elemental Ailment Duration on you per 10 Devotion"}}},stats={[1]="self_elemental_status_duration_-%_per_10_devotion"}},[5568]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Take %1% Physical Damage when you use a Movement Skill"}}},stats={[1]="self_physical_damage_on_movement_skill_use"}},[5569]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Take no Extra Damage from Critical Strikes if you have taken a Critical Strike Recently"}}},stats={[1]="self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently"}},[5570]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You take no Extra Damage from Critical Strikes while there is only one nearby Enemy"}}},stats={[1]="self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy"}},[5571]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="While there is at most one Rare or Unique Enemy nearby, you take no Extra Damage from Critical Strikes"}}},stats={[1]="self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby"}},[5572]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You take no Extra Damage from Critical Strikes while Elusive"}}},stats={[1]="self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive"}},[5573]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Sentinels of Purity deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Sentinels of Purity deal %1%%% reduced Damage"}}},stats={[1]="sentinel_of_purity_damage_+%"}},[5574]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% summoned Burrowing Viper"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% summoned Burrowing Vipers"}}},stats={[1]="serpent_strike_maximum_snakes"}},[5575]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Bleeding Enemies you Kill with Hits Shatter"}}},stats={[1]="shatter_on_kill_vs_bleeding_enemies"}},[5576]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Poisoned Enemies you Kill with Hits Shatter"}}},stats={[1]="shatter_on_kill_vs_poisoned_enemies"}},[5577]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shattering Steel deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shattering Steel deals %1%%% reduced Damage"}}},stats={[1]="shattering_steel_damage_+%"}},[5578]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]="#"}},text="Shattering Steel grants Fortify on Hitting an Enemy at Close Range"}}},stats={[1]="shattering_steel_fortify_on_hit_close_range"}},[5579]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Shattering Steel fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Shattering Steel fires %1% additional Projectiles"}}},stats={[1]="shattering_steel_number_of_additional_projectiles"}},[5580]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Defences from Equipped Shield per 10 Devotion"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Defences from Equipped Shield per 10 Devotion"}}},stats={[1]="shield_defences_+%_per_10_devotion"}},[5581]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHitNoDuration"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Shock Attackers for 4 seconds on Block"}}},stats={[1]="shock_attackers_for_4_seconds_on_block_%_chance"}},[5582]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Shock"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Shock"}}},stats={[1]="shock_effect_+%"}},[5583]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shocks from your Hits always increase Damage taken by at least %1%%%"}}},stats={[1]="shock_minimum_damage_taken_increase_%"}},[5584]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextShockNonHitNoDuration"},limit={[1]={[1]=1,[2]="#"}},text="Shock nearby Enemies for %1% Seconds when you Focus"}}},stats={[1]="shock_nearby_enemies_for_x_ms_when_you_focus"}},[5585]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Shock on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]=-99,[2]=-1}},text="%1%%% reduced Effect of Shock on you"}}},stats={[1]="shocked_effect_on_self_+%"}},[5586]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shocked Enemies you Kill Explode, dealing %1%%% of\ntheir Maximum Life as Lightning Damage which cannot Shock"}}},stats={[1]="shocked_enemies_explode_for_%_life_as_lightning_damage"}},[5587]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shocked Ground you create causes %1%%% increased Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shocked Ground you create causes %1%%% reduced Damage taken"}}},stats={[1]="shocked_ground_base_magnitude_override"}},[5588]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Shrapnel Ballista fires an additional Arrow"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Shrapnel Ballista fires %1% additional Arrows"}}},stats={[1]="shrapnel_ballista_num_additional_arrows"}},[5589]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Shrapnel Ballista Pierces an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Shrapnel Ballista Pierces %1% additional Targets"}}},stats={[1]="shrapnel_ballista_num_pierce"}},[5590]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shrapnel Ballista has %1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shrapnel Ballista has %1%%% reduced Projectile Speed"}}},stats={[1]="shrapnel_ballista_projectile_speed_+%"}},[5591]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Galvanic Arrow deals %1%%% increased Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Galvanic Arrow deals %1%%% reduced Area Damage"}}},stats={[1]="galvanic_arrow_area_damage_+%"}},[5592]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Explosive Trap has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Explosive Trap has %1%%% reduced Area of Effect"}}},stats={[1]="shrapnel_trap_area_of_effect_+%"}},[5593]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Explosive Trap deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Explosive Trap deals %1%%% reduced Damage"}}},stats={[1]="shrapnel_trap_damage_+%"}},[5594]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Explosive Trap causes an additional smaller explosion"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Explosive Trap causes %1% additional smaller explosions"}}},stats={[1]="shrapnel_trap_number_of_additional_secondary_explosions"}},[5595]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Brand Skills deal %1%%% increased Damage to Enemies they're Attached to"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Brand Skills deal %1%%% reduced Damage to Enemies they're Attached to"}}},stats={[1]="sigil_attached_target_damage_+%"}},[5596]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies take %1%%% increased Damage for each of your Brands Attached to them"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies take %1%%% reduced Damage for each of your Brands Attached to them"}}},stats={[1]="sigil_attached_target_damage_taken_+%"}},[5597]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Brand Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Brand Skills"}}},stats={[1]="sigil_critical_strike_chance_+%"}},[5598]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Brand Skills"}}},stats={[1]="sigil_critical_strike_multiplier_+"}},[5599]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Brand Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Brand Skills"}}},stats={[1]="sigil_damage_+%"}},[5600]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Brand Skills per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Brand Skills per 10 Devotion"}}},stats={[1]="sigil_damage_+%_per_10_devotion"}},[5601]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Brand Skills have %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Brand Skills have %1%%% reduced Duration"}}},stats={[1]="sigil_duration_+%"}},[5602]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Brand Recall has %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Brand Recall has %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="sigil_recall_cooldown_speed_+%"}},[5603]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Brand Activation frequency"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Brand Activation frequency"}}},stats={[1]="sigil_repeat_frequency_+%"}},[5604]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Brand Attachment range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Brand Attachment range"}}},stats={[1]="sigil_target_search_range_+%"}},[5605]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dark Pact Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dark Pact Area of Effect"}}},stats={[1]="skeletal_chains_area_of_effect_+%"}},[5606]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dark Pact Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dark Pact Cast Speed"}}},stats={[1]="skeletal_chains_cast_speed_+%"}},[5607]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skeleton Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skeleton Attack Speed"}}},stats={[1]="skeleton_attack_speed_+%"}},[5608]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skeleton Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skeleton Cast Speed"}}},stats={[1]="skeleton_cast_speed_+%"}},[5609]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skeleton Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skeleton Movement Speed"}}},stats={[1]="skeleton_movement_speed_+%"}},[5610]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum 1 Summoned Mirage Archer"}}},stats={[1]="skill_can_own_mirage_archers"}},[5611]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skill Effect Duration while affected by Malevolence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skill Effect Duration while affected by Malevolence"}}},stats={[1]="skill_effect_duration_+%_while_affected_by_malevolence"}},[5612]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Total Mana Cost of Skills while affected by Clarity"}}},stats={[1]="skill_mana_cost_+_while_affected_by_clarity"}},[5613]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Channelling Skills have %1$+d to Total Mana Cost"}}},stats={[1]="skill_mana_cost_+_with_channelling_skills"}},[5614]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Non-Channelling Skills have %1$+d to Total Mana Cost while affected by Clarity"}}},stats={[1]="skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity"}},[5615]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Non-Channelling Skills have %1$+d to Total Mana Cost"}}},stats={[1]="skill_mana_cost_+_with_non_channelling_skills"}},[5616]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Skills Cost no Mana while Focussed"}}},stats={[1]="skills_cost_no_mana_while_focused"}},[5617]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per Enemy killed recently, up to 50%%"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per Enemy killed recently"}}},stats={[1]="slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%"}},[5618]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier per Nearby Enemy, up to +100%%"}}},stats={[1]="slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100"}},[5619]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage against Unique Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage against Unique Enemies"}}},stats={[1]="slayer_damage_+%_final_against_unique_enemies"}},[5620]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Deal up to %1%%% more Melee Damage to Enemies, based on proximity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Deal up to %1%%% less Melee Damage to Enemies, based on proximity"}}},stats={[1]="slayer_damage_+%_final_from_distance"}},[5621]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]="#"}},text="Withering Step has %1%%% increased Elusive Effect"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]="#",[2]=-1}},text="Withering Step has %1%%% reduced Elusive Effect"}}},stats={[1]="slither_elusive_effect_+%"}},[5622]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=1,[2]="#"}},text="Withering Step inflicts %1% additional Withered Debuffs"}}},stats={[1]="slither_wither_stacks"}},[5623]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Smite has %1%%% increased Aura Effect"}}},stats={[1]="smite_aura_effect_+%"}},[5624]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Smite has a %1%%% chance for lightning to strike another target"}}},stats={[1]="smite_chance_for_lighting_to_strike_extra_target_%"}},[5625]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Smite deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Smite deals %1%%% reduced Damage"}}},stats={[1]="smite_damage_+%"}},[5626]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Venom Gyre deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Venom Gyre deals %1%%% reduced Damage"}}},stats={[1]="snapping_adder_damage_+%"}},[5627]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Venom Gyre has a %1%%% chance to keep caught Projectiles fired by using Whirling Blades"}}},stats={[1]="snapping_adder_%_chance_to_retain_projectile_on_release"}},[5628]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=1,[2]=99}},text="Venom Gyre has a %1%%% chance to inflict Withered for 2 seconds on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=100,[2]="#"}},text="Venom Gyre inflicts Withered for 2 seconds on Hit"}}},stats={[1]="snapping_adder_withered_on_hit_for_2_seconds_%_chance"}},[5629]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Soulrend also Hinders Enemies, with %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Soulrend also Hinders Enemies, with %1%%% reduced Movement Speed"}}},stats={[1]="soulrend_applies_hinder_movement_speed_+%"}},[5630]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Soulrend deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Soulrend deals %1%%% reduced Damage"}}},stats={[1]="soulrend_damage_+%"}},[5631]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Soulrend fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Soulrend fires %1% additional Projectiles"}}},stats={[1]="soulrend_number_of_additional_projectiles"}},[5632]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spark fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Spark fires %1% additional Projectiles"}}},stats={[1]="spark_number_of_additional_projectiles"}},[5633]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spark fires Projectiles in a circle"}}},stats={[1]="spark_projectiles_nova"}},[5634]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spark Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spark Duration"}}},stats={[1]="spark_skill_effect_duration_+%"}},[5635]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spectral Shield Throw's Shield Projectile Chains an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spectral Shield Throw's Shield Projectile Chains %1% additional times"}}},stats={[1]="spectral_shield_throw_additional_chains"}},[5636]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spectral Shield Throw Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spectral Shield Throw Damage"}}},stats={[1]="spectral_shield_throw_damage_+%"}},[5637]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spectral Shield Throw fires Shard Projectiles when Chaining"}}},stats={[1]="spectral_shield_throw_fire_shards_on_chain"}},[5638]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spectral Shield Throw fires an additional Shard Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spectral Shield Throw fires %1% additional Shard Projectiles"}}},stats={[1]="spectral_shield_throw_num_of_additional_projectiles"}},[5639]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spectral Shield Throw Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spectral Shield Throw Projectile Speed"}}},stats={[1]="spectral_shield_throw_projectile_speed_+%"}},[5640]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Shard Projectiles Pierce all Targets"}}},stats={[1]="spectral_shield_throw_secondary_projectiles_pierce"}},[5641]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spectral Shield Throw fires %1%%% less Shard Projectiles"},[2]={limit={[1]={[1]=1,[2]="#"}},text="Spectral Shield Throw fires %1%%% more Shard Projectiles"}}},stats={[1]="spectral_shield_throw_shard_projectiles_+%_final"}},[5642]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spectral Throw has %1%%% chance on Hit to give a Vaal soul to Vaal Spectral Throw"}}},stats={[1]="spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%"}},[5643]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Spectre maximum Life"}}},stats={[1]="spectre_maximum_life_+"}},[5644]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spectres have %1%%% increased Critical Strike Chance"}}},stats={[1]="spectres_critical_strike_chance_+%"}},[5645]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]="#"}},text="Your Raised Spectres also gain Arcane Surge when you do"}}},stats={[1]="spectres_gain_arcane_surge_when_you_do"}},[5646]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSoulEater"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Spectres to gain Soul Eater on Kill for 20 seconds"}}},stats={[1]="spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance"}},[5647]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Spectres have a Base Duration of %1% seconds\nSpectres do not travel between Areas"}}},stats={[1]="spectres_have_base_duration_ms"}},[5648]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Spells have %1$+d%% to Critical Strike Chance "}}},stats={[1]="spell_additional_critical_strike_chance_permyriad"}},[5649]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage to Spells and Attacks during any Flask Effect"}}},stats={[1]="spell_and_attack_minimum_added_chaos_damage_during_flask_effect",[2]="spell_and_attack_maximum_added_chaos_damage_during_flask_effect"}},[5650]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spell Skills have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spell Skills have %1%%% reduced Area of Effect"}}},stats={[1]="spell_area_of_effect_+%"}},[5651]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage if you have Blocked Spell Damage Recently"}}},stats={[1]="spell_block_%_if_blocked_a_spell_recently"}},[5652]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to Block Spell Damage if you have Blocked Attack Damage Recently"}}},stats={[1]="spell_block_%_if_blocked_an_attack_recently"}},[5653]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Spells have a %1%%% chance to deal Double Damage"},[2]={limit={[1]={[1]=100,[2]=100}},text="Spells Deal Double Damage"}}},stats={[1]="spell_chance_to_deal_double_damage_%"}},[5654]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Spells per 100 Player Maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Spells per 100 Player Maximum Life"}}},stats={[1]="spell_critical_strike_chance_+%_per_100_max_life"}},[5655]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Spells per Raised Spectre"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Spells per Raised Spectre"}}},stats={[1]="spell_critical_strike_chance_+%_per_raised_spectre"}},[5656]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage if you've dealt a Critical Strike Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="spell_damage_+%_if_have_crit_recently"}},[5657]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per 500 Maximum Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% redcued Spell Damage per 500 Maximum Mana"}}},stats={[1]="spell_damage_+%_per_500_maximum_mana"}},[5658]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage during any Flask Effect"}}},stats={[1]="spell_damage_+%_during_flask_effect"}},[5659]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage if you've dealt a Critical Strike in the past 8 seconds"}}},stats={[1]="spell_damage_+%_if_have_crit_in_past_8_seconds"}},[5660]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage if you've Blocked Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage if you've Blocked Recently"}}},stats={[1]="spell_damage_+%_if_you_have_blocked_recently"}},[5661]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per 100 Player Maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage per 100 Player Maximum Life"}}},stats={[1]="spell_damage_+%_per_100_max_life"}},[5662]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per 100 Maximum Mana, up to 40%%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage per 100 Maximum Mana"}}},stats={[1]="spell_damage_+%_per_100_maximum_mana_up_to_60%"}},[5663]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per 10 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage per 10 Strength"}}},stats={[1]="spell_damage_+%_per_10_strength"}},[5664]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per 16 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage per 16 Dexterity"}}},stats={[1]="spell_damage_+%_per_16_dex"}},[5665]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per 16 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage per 16 Intelligence"}}},stats={[1]="spell_damage_+%_per_16_int"}},[5666]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per 16 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage per 16 Strength"}}},stats={[1]="spell_damage_+%_per_16_strength"}},[5667]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while Shocked"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while Shocked"}}},stats={[1]="spell_damage_+%_while_shocked"}},[5668]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while you have Arcane Surge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while you have Arcane Surge"}}},stats={[1]="spell_damage_+%_while_you_have_arcane_surge"}},[5669]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Spell Hits if you have Energy Shield"}}},stats={[1]="spell_dodge_while_you_have_energy_shield_+%"}},[5670]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spells have %1%%% of Physical Damage Converted to Fire Damage"}}},stats={[1]="spell_physical_damage_%_to_convert_to_fire"}},[5671]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spell Skills deal no Damage"}}},stats={[1]="spell_skills_deal_no_damage"}},[5672]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Hinder Enemies on Hit with Spells, with 30%% reduced Movement Speed"},[2]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=100,[2]="#"}},text="Hinder Enemies on Hit with Spells, with 30%% reduced Movement Speed"}}},stats={[1]="spells_chance_to_hinder_on_hit_%"}},[5673]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Aspect of the Spider Debuff Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Aspect of the Spider Debuff Duration"}}},stats={[1]="spider_aspect_debuff_duration_+%"}},[5674]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Aspect of the Spider Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Aspect of the Spider Area of Effect"}}},stats={[1]="spider_aspect_skill_area_of_effect_+%"}},[5675]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Aspect of the Spider inflicts Spider's Webs and Hinder every %1% Seconds instead"}}},stats={[1]="spider_aspect_web_interval_ms_override"}},[5676]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Split Arrow fires Projectiles in Parallel"}}},stats={[1]="split_arrow_projectiles_fire_in_parallel_x_dist"}},[5677]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Static Strike has %1$+d maximum Beam Targets"}}},stats={[1]="static_strike_additional_number_of_beam_targets"}},[5678]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Ailments you inflict while Focussed"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Ailments you inflict while Focussed"}}},stats={[1]="status_ailments_you_inflict_duration_+%_while_focused"}},[5679]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Steelskin Buff can take %1%%% increased amount of Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Steelskin Buff can take %1%%% reduced amount of Damage"}}},stats={[1]="steelskin_damage_limit_+%"}},[5680]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Storm Brand has a %1%%% chance to Chain an additional time"}}},stats={[1]="storm_brand_additional_chain_chance_%"}},[5681]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Storm Brand Damage Penetrates %1%%% of Branded Enemy's Lightning Resistance"}}},stats={[1]="storm_brand_attached_target_lightning_penetration_%"}},[5682]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Storm Brand deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Storm Brand deals %1%%% reduced Damage"}}},stats={[1]="storm_brand_damage_+%"}},[5683]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Storm Burst has a 15%% chance to create an additional Orb"}}},stats={[1]="storm_burst_15_%_chance_to_create_additional_orb"}},[5684]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Storm Burst has a %1%%% chance to create an additional Orb"}}},stats={[1]="storm_burst_additional_object_chance_%"}},[5685]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Storm Burst Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Storm Burst Area of Effect"}}},stats={[1]="storm_burst_area_of_effect_+%"}},[5686]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Avoid interruption from Stuns while Casting Storm Burst"}}},stats={[1]="storm_burst_avoid_interruption_while_casting_%"}},[5687]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Storm Burst fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Storm Burst fires %1% additional Projectiles"}}},stats={[1]="storm_burst_number_of_additional_projectiles"}},[5688]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strength's Damage Bonus instead grants 3%% increased Melee\nPhysical Damage per 10 Strength"}}},stats={[1]="strength_damage_bonus_grants_melee_physical_damage_+3%_per_10_strength_instead"}},[5689]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Strength Skill Gems"}}},stats={[1]="strength_skill_gem_level_+"}},[5690]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration per 15 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration per 15 Strength"}}},stats={[1]="stun_duration_+%_per_15_strength"}},[5691]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration on Enemies per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration on Enemies per Endurance Charge"}}},stats={[1]="stun_duration_+%_per_endurance_charge"}},[5692]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Stun Threshold while you have at least 500 Strength"}}},stats={[1]="stun_threshold_reduction_+%_with_500_or_more_strength"}},[5693]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Skills that would Summon a Totem Summon two Totems instead"}}},stats={[1]="summon_2_totems"}},[5694]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="20%% chance to Summon an additional Skeleton Warrior with Summon Skeleton"},[2]={limit={[1]={[1]=2,[2]=2}},text="40%% chance to Summon an additional Skeleton Warrior with Summon Skeleton"},[3]={limit={[1]={[1]=3,[2]=3}},text="60%% chance to Summon an additional Skeleton Warrior with Summon Skeleton"},[4]={limit={[1]={[1]=4,[2]=4}},text="80%% chance to Summon an additional Skeleton Warrior with Summon Skeleton"},[5]={limit={[1]={[1]=5,[2]="#"}},text="Summon an additional Skeleton Warrior with Summon Skeleton"}}},stats={[1]="summon_skeletons_additional_warrior_skeleton_one_twentieth_chance"}},[5695]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Summon an additional Skeleton Warrior with Summon Skeleton"}}},stats={[1]="summon_skeletons_additional_warrior_skeleton_%_chance"}},[5696]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="%1$+d second to Summon Skeleton Cooldown"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Summon Skeleton Cooldown"}}},stats={[1]="summon_skeletons_cooldown_modifier_ms"}},[5697]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Skitterbots have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Skitterbots have %1%%% reduced Area of Effect"}}},stats={[1]="summon_skitterbots_area_of_effect_+%"}},[5698]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summon Skitterbots has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summon Skitterbots has %1%%% reduced Mana Reservation"}}},stats={[1]="summon_skitterbots_mana_reservation_+%"}},[5699]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhantasmalMight"},limit={[1]={[1]="#",[2]="#"}},text="Each Summoned Phantasm grants you Phantasmal Might"}}},stats={[1]="summoned_phantasms_grant_buff"}},[5700]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Phantasms have no Duration"}}},stats={[1]="summoned_phantasms_have_no_duration"}},[5701]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCoveredInAsh"},limit={[1]={[1]="#",[2]=99}},text="Summoned Skeletons have a %1%%% chance to Cover Enemies in Ash on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextCoveredInAsh"},limit={[1]={[1]=100,[2]=100}},text="Summoned Skeletons Cover Enemies in Ash on Hit"}}},stats={[1]="summoned_skeletons_cover_in_ash_on_hit_%"}},[5702]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Summoned Skeletons take %1%%% of their Maximum Life per second as Fire Damage"}}},stats={[1]="summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute"}},[5703]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Skeletons' hits can't be Evaded"}}},stats={[1]="summoned_skeletons_hits_cant_be_evaded"}},[5704]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Maimed by you take %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Maimed by you take %1%%% reduced Physical Damage"}}},stats={[1]="support_maimed_enemies_physical_damage_taken_+%"}},[5705]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% added Fire Damage against Burning Enemies"}}},stats={[1]="global_minimum_added_fire_damage_vs_burning_enemies",[2]="global_maximum_added_fire_damage_vs_burning_enemies"}},[5706]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Mirage Archer lasts %1% seconds"}}},stats={[1]="support_mirage_archer_base_duration"}},[5707]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Deal up to %1%%% more Melee Damage to Enemies, based on proximity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Deal up to %1%%% less Melee Damage to Enemies, based on proximity"}}},stats={[1]="support_slashing_damage_+%_final_from_distance"}},[5708]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Supported Aura Skill Gems"}}},stats={[1]="supported_aura_skill_gem_level_+"}},[5709]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Supported Cold Skill Gems"}}},stats={[1]="supported_cold_skill_gem_level_+"}},[5710]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Supported Curse Skill Gems"}}},stats={[1]="supported_curse_skill_gem_level_+"}},[5711]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Supported Elemental Skill Gems"}}},stats={[1]="supported_elemental_skill_gem_level_+"}},[5712]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Supported Fire Skill Gems"}}},stats={[1]="supported_fire_skill_gem_level_+"}},[5713]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Supported Lightning Skill Gems"}}},stats={[1]="supported_lightning_skill_gem_level_+"}},[5714]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Doubles the values of Global Mods affecting Memories placed next to this Location"}}},stats={[1]="synthesis_map_adjacent_nodes_global_mod_values_doubled"}},[5715]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Doubles the values of Memory Modifiers affecting Memories placed on this location"}}},stats={[1]="synthesis_map_global_mod_values_doubled_on_this_node"}},[5716]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triples the values of Global Mods affecting Memories placed on this location"}}},stats={[1]="synthesis_map_global_mod_values_tripled_on_this_node"}},[5717]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Memories at this location do not collapse"}}},stats={[1]="synthesis_map_memories_do_not_collapse_on_this_node"}},[5718]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Experience from Monsters Slain in Memories placed on this Location"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Experience from Monsters Slain in Memories placed on this Location"}}},stats={[1]="synthesis_map_monster_slain_experience_+%_on_this_node"}},[5719]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Allow for memories at or adjacent to this location have BONUS"}}},stats={[1]="synthesis_map_nearby_memories_have_bonus"}},[5720]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Memories placed on this location can be run an additional time before Decaying"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Memories placed on this location can be run %1% additional times before Decaying"}}},stats={[1]="synthesis_map_node_additional_uses_+"}},[5721]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triples the values of Global Mods affecting Memories placed on this location, if all adjacent locations have Memories"}}},stats={[1]="synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories"}},[5722]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Applies a Memory Modifier to Memories placed on or next to this location"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Applies %1% Memory Modifiers to Memories placed on or next to this location"}}},stats={[1]="synthesis_map_node_grants_additional_global_mod"}},[5723]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Memories placed on this location are unaffected by Global Mods"}}},stats={[1]="synthesis_map_node_grants_no_global_mod"}},[5724]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Guest Monsters within Memories placed on this location are replaced by Synthesised Monsters"}}},stats={[1]="synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters"}},[5725]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Doubles bonuses to Quantity of Items Found in Memories placed on this location"}}},stats={[1]="synthesis_map_node_item_quantity_increases_doubled"}},[5726]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Doubles bonuses to Rarity of Items Found in Memories placed on this location"}}},stats={[1]="synthesis_map_node_item_rarity_increases_doubled"}},[5727]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Memories placed on this location are %1% Level Higher"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Memories placed on this location are %1% Levels Higher"}}},stats={[1]="synthesis_map_node_level_+"}},[5728]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters Slain within Memories placed on this location drop no Items"}}},stats={[1]="synthesis_map_node_monsters_drop_no_items"}},[5729]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Doubles bonuses to Monster Pack Size in Memories placed on this location"}}},stats={[1]="synthesis_map_node_pack_size_increases_doubled"}},[5730]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Tailwind on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Tailwind on you"}}},stats={[1]="tailwind_effect_on_self_+%"}},[5731]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Tailwind on you for each Skill you've used Recently, up to 100%%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Tailwind on you for each Skill you've used Recently"}}},stats={[1]="tailwind_effect_on_self_+%_for_each_skill_used_recently"}},[5732]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You have Tailwind if you have dealt a Critical Strike Recently"}}},stats={[1]="tailwind_if_have_crit_recently"}},[5733]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to take 50%% less Area Damage from Hits"}}},stats={[1]="take_half_area_damage_from_hit_%_chance"}},[5734]={lang={English={[1]={[1]={k="divide_by_ten_0dp",v=1},limit={[1]={[1]=20,[2]=35}},text="Projectiles Pierce %1% additional Targets"},[2]={[1]={k="divide_by_twenty_then_double_0dp",v=1},limit={[1]={[1]=50,[2]=75}},text="Projectiles Pierce %1% additional Targets"}}},stats={[1]="talisman_implicit_projectiles_pierce_1_additional_target_per_10"}},[5735]={lang={English={[1]={[1]={k="divide_by_two_0dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to create a Charged Slam"}}},stats={[1]="tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value"}},[5736]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Tectonic Slam Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Tectonic Slam Area of Effect"}}},stats={[1]="tectonic_slam_area_of_effect_+%"}},[5737]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to consume an Endurance Charge to create a larger Slam"}}},stats={[1]="tectonic_slam_chance_to_use_endurance_charge_%"}},[5738]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Tectonic Slam Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Tectonic Slam Damage"}}},stats={[1]="tectonic_slam_damage_+%"}},[5739]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Tectonic Slam has %1%%% chance to create a Charged Slam"}}},stats={[1]="tectonic_slam_%_chance_to_do_charged_slam"}},[5740]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMalachaisEndurance"},[2]={k="reminderstring",v="ReminderTextMalachaisFrenzy"},[3]={k="reminderstring",v="ReminderTextMalachaisPower"},limit={[1]={[1]="#",[2]="#"}},text="Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"}}},stats={[1]="thaumaturgy_rotation_active"}},[5741]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shard Projectiles Deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shard Projectiles Deal %1%%% less Damage"}}},stats={[1]="thrown_shield_secondary_projectile_damage_+%_final"}},[5742]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Totems' Action Speed cannot be modified to below base value"}}},stats={[1]="totems_action_speed_cannot_be_modified_below_base"}},[5743]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Attack Damage dealt by your Totems is Leeched to you as Mana"}}},stats={[1]="totem_attack_damage_leeched_as_mana_to_you_permyriad"}},[5744]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Damage per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Damage per 10 Devotion"}}},stats={[1]="totem_damage_+%_per_10_devotion"}},[5745]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Totems have %1$+d to Maximum Energy Shield"}}},stats={[1]="totem_maximum_energy_shield"}},[5746]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Totem applies %1%%% increased Damage taken to Enemies near it"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Totem applies %1%%% reduced Damage taken to Enemies near it"}}},stats={[1]="totems_nearby_enemies_damage_taken_+%"}},[5747]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Toxic Rain deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Toxic Rain deals %1%%% reduced Damage"}}},stats={[1]="toxic_rain_damage_+%"}},[5748]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Toxic Rain fires %1% additional Arrow"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Toxic Rain fires %1% additional Arrows"}}},stats={[1]="toxic_rain_num_of_additional_projectiles"}},[5749]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Toxic Rain gains %1%%% of Physical Damage as Extra Chaos Damage"}}},stats={[1]="toxic_rain_physical_damage_%_to_add_as_chaos"}},[5750]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Traps deal %1%%% increased Damage with Hits and Ailments if they were not Armed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Traps deal %1%%% reduced Damage with Hits and Ailments if they were not Armed Recently"}}},stats={[1]="trap_and_mine_damage_+%_if_armed_for_4_seconds"}},[5751]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap and Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap and Mine Throwing Speed"}}},stats={[1]="trap_and_mine_throwing_speed_+%"}},[5752]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Throwing Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Throwing Speed per Frenzy Charge"}}},stats={[1]="trap_throwing_speed_+%_per_frenzy_charge"}},[5753]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage over Time"}}},stats={[1]="trickster_damage_over_time_+%_final"}},[5754]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Triggered Spells deal %1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Triggered Spells deal %1%%% reduced Spell Damage"}}},stats={[1]="triggered_spell_spell_damage_+%"}},[5755]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Bleeding while affected by Malevolence"}}},stats={[1]="unaffected_by_bleeding_while_affected_by_malevolence"}},[5756]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="You are Unaffected by Bleeding while Leeching"}}},stats={[1]="unaffected_by_bleeding_while_leeching"}},[5757]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Burning Ground"}}},stats={[1]="unaffected_by_burning_ground"}},[5758]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Burning Ground while affected by Purity of Fire"}}},stats={[1]="unaffected_by_burning_ground_while_affected_by_purity_of_fire"}},[5759]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Chilled Ground"}}},stats={[1]="unaffected_by_chilled_ground"}},[5760]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Chilled Ground while affected by Purity of Ice"}}},stats={[1]="unaffected_by_chilled_ground_while_affected_by_purity_of_ice"}},[5761]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Conductivity while affected by Purity of Lightning"}}},stats={[1]="unaffected_by_conductivity_while_affected_by_purity_of_lightning"}},[5762]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Desecrated Ground"}}},stats={[1]="unaffected_by_desecrated_ground"}},[5763]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Elemental Weakness while affected by Purity of Elements"}}},stats={[1]="unaffected_by_elemental_weakness_while_affected_by_purity_of_elements"}},[5764]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Enfeeble while affected by Grace"}}},stats={[1]="unaffected_by_enfeeble_while_affected_by_grace"}},[5765]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Flammability while affected by Purity of Fire"}}},stats={[1]="unaffected_by_flammability_while_affected_by_purity_of_fire"}},[5766]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Frostbite while affected by Purity of Ice"}}},stats={[1]="unaffected_by_frostbite_while_affected_by_purity_of_ice"}},[5767]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Ignite"}}},stats={[1]="unaffected_by_ignite"}},[5768]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Poison while affected by Malevolence"}}},stats={[1]="unaffected_by_poison_while_affected_by_malevolence"}},[5769]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Shock"}}},stats={[1]="unaffected_by_shock"}},[5770]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Shocked Ground"}}},stats={[1]="unaffected_by_shocked_ground"}},[5771]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Shocked Ground while affected by Purity of Lightning"}}},stats={[1]="unaffected_by_shocked_ground_while_affected_by_purity_of_lightning"}},[5772]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Temporal Chains"}}},stats={[1]="unaffected_by_temporal_chains"}},[5773]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Temporal Chains while affected by Haste"}}},stats={[1]="unaffected_by_temporal_chains_while_affected_by_haste"}},[5774]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Vulnerability while affected by Determination"}}},stats={[1]="unaffected_by_vulnerability_while_affected_by_determination"}},[5775]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unearth Spawns corpses with %1$+d Level"}}},stats={[1]="unearth_additional_corpse_level"}},[5776]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0}},text="While your Passive Skill Tree connects to the Marauder's starting location, you gain:\nMelee Skills have %1%%% increased Area of Effect"},[2]={[1]={k="divide_by_one_hundred",v="2reminderstring"},limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0}},text="While your Passive Skill Tree connects to the Duelist's starting location, you gain:\n%2%%% of Attack Damage Leeched as Life"},[3]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]="#",[2]="#"},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0}},text="While your Passive Skill Tree connects to the Ranger's starting location, you gain:\n%3%%% increased Movement Speed"},[4]={[1]={k="divide_by_one_hundred",v=4},limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]="#",[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0}},text="While your Passive Skill Tree connects to the Shadow's starting location, you gain:\n%4$+d%% to Critical Strike Chance"},[5]={[1]={k="per_minute_to_per_second",v=5},limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0}},text="While your Passive Skill Tree connects to the Witch's starting location, you gain:\n%5%%% of Mana Regenerated per second"},[6]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]=0,[2]=0}},text="While your Passive Skill Tree connects to the Templar's starting location, you gain:\nDamage Penetrates %6%%% Elemental Resistances"},[7]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0},[6]={[1]=0,[2]=0},[7]={[1]="#",[2]="#"}},text="While your Passive Skill Tree connects to the Scion's starting location, you gain:\n%7$+d to All Attributes"},[8]={[1]={k="divide_by_one_hundred",v=2},[2]={k="reminderstring",v="ReminderTextLifeLeech"},[3]={k="divide_by_one_hundred",v=4},[4]={k="per_minute_to_per_second",v=5},[5]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"}},text="While your Passive Skill Tree connects to a class' starting location, you gain:\nMarauder: Melee Skills have %1%%% increased Area of Effect\nDuelist: %2%%% of Attack Damage Leeched as Life\nRanger: %3%%% increased Movement Speed\nShadow: %4$+d%% to Critical Strike Chance\nWitch: %5%%% of Mana Regenerated per second\nTemplar: Damage Penetrates %6%%% Elemental Resistances\nScion: %7$+d to All Attributes"}}},stats={[1]="local_unique_jewel_melee_skills_area_of_effect_+%_with_passive_tree_connected_to_marauder_start",[2]="local_unique_jewel_life_leech_from_attack_damage_permyriad_with_passive_tree_connected_to_duelist_start",[3]="local_unique_jewel_movement_speed_+%_with_passive_tree_connected_to_ranger_start",[4]="local_unique_jewel_additional_critical_strike_chance_permyriad_with_passive_tree_connected_to_shadow_start",[5]="local_unique_jewel_mana_regeneration_rate_per_minute_%_with_passive_tree_connected_to_witch_start",[6]="local_unique_jewel_elemental_penetration_%_with_passive_tree_connected_to_templar_start",[7]="local_unique_jewel_additional_all_attributes_with_passive_tree_connected_to_scion_start"}},[5777]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose a Power Charge when Hit"}}},stats={[1]="unique_lose_a_power_charge_when_hit"}},[5778]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found from Slain Unique Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items found from Slain Unique Enemies"}}},stats={[1]="unique_monster_dropped_item_rarity_+%"}},[5779]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When you kill a Poisoned Enemy during any Flask Effect, nearby Enemies are Poisoned"}}},stats={[1]="unique_spread_poison_to_nearby_enemies_during_flask_effect"}},[5780]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shock Enemies as though dealing %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shock Enemies as though dealing %1%%% less Damage"}}},stats={[1]="unique_voltaxic_rift_shock_as_though_damage_+%_final"}},[5781]={lang={English={[1]={limit={[1]={[1]=51,[2]="#"}},text="Your Shocks can increase Damage taken by up to a maximum of %1%%%"},[2]={limit={[1]={[1]=1,[2]=49}},text="Your Shocks can only increase Damage taken by up to a maximum of %1%%%"}}},stats={[1]="unique_voltaxic_rift_shock_maximum_magnitude_override"}},[5782]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Cold Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Cold Damage taken"}}},stats={[1]="utility_flask_cold_damage_taken_+%_final"}},[5783]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Fire Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Fire Damage taken"}}},stats={[1]="utility_flask_fire_damage_taken_+%_final"}},[5784]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Lightning Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Lightning Damage taken"}}},stats={[1]="utility_flask_lightning_damage_taken_+%_final"}},[5785]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Soul Cost of Vaal Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Soul Cost of Vaal Skills"}}},stats={[1]="vaal_skill_soul_cost_+%"}},[5786]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Viper Strike has a %1%%% chance to grant Unholy Might for 4 seconds on Hit per Poison on Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Viper Strike grants Unholy Might for 4 seconds on Hit per Poison on Enemy"}}},stats={[1]="viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy"}},[5787]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% More Attack Speed if Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% Less Attack Speed if Dual Wielding"}}},stats={[1]="viper_strike_dual_wield_attack_speed_+%_final"}},[5788]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Weapon Hits separately if Dual Wielding, dealing %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=1}},text="Each Weapon Hits separately if Dual Wielding, dealing %1%%% less Damage"}}},stats={[1]="viper_strike_dual_wield_damage_+%_final"}},[5789]={lang={English={[1]={limit={[1]={[1]=0,[2]=0}},text="You take no damage from hits you Block"},[2]={limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% of the damage from hits you Block"}}},stats={[1]="virtual_block_%_damage_taken"}},[5790]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Beams Chain %1% Time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Beams Chain %1% Times"}}},stats={[1]="additional_beam_only_chains"}},[5791]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Scourge Arrow creates an additional spore pod at Maximum Stages"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Scourge Arrow creates %1% additional spore pods at Maximum Stages"}}},stats={[1]="virulent_arrow_additional_spores_at_max_stages"}},[5792]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Scourge Arrow has %1%%% chance to Poison per Stage"}}},stats={[1]="virulent_arrow_chance_to_poison_%_per_stage"}},[5793]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Vitality Reserves no Mana"}}},stats={[1]="vitality_reserves_no_mana"}},[5794]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Volatile Dead Consumes up to %1% additional corpse"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Volatile Dead Consumes up to %1% additional corpses"}}},stats={[1]="volatile_dead_base_number_of_corpses_to_consume"}},[5795]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Volatile Dead Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Volatile Dead Cast Speed"}}},stats={[1]="volatile_dead_cast_speed_+%"}},[5796]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Volatile Dead Consumes up to 1 additional corpse"}}},stats={[1]="volatile_dead_consume_additional_corpse"}},[5797]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Volatile Dead Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Volatile Dead Damage"}}},stats={[1]="volatile_dead_damage_+%"}},[5798]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vortex has %1%%% increased Area of Effect when Cast on Frostbolt"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vortex has %1%%% reduced Area of Effect when Cast on Frostbolt"}}},stats={[1]="vortex_area_of_effect_+%_when_cast_on_frostbolt"}},[5799]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="War Banner has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="War Banner has %1%%% reduced Aura Effect"}}},stats={[1]="war_banner_aura_effect_+%"}},[5800]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Warcries Knock Enemies Back in an Area"}}},stats={[1]="warcries_knock_back_enemies"}},[5801]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Warcry Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Warcry Buff Effect"}}},stats={[1]="warcry_buff_effect_+%"}},[5802]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Warcry Skills' Cooldown Time is 2 seconds"}}},stats={[1]="warcry_skills_cooldown_is_2_seconds"}},[5803]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="While stationary, gain %1%%% additional Physical Damage Reduction every second, up to a maximum of 8%%"}}},stats={[1]="while_stationary_gain_additional_physical_damage_reduction_%"}},[5804]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="While stationary, gain %1%%% of Life Regenerated per second every second, up to a maximum of 2%%"}}},stats={[1]="while_stationary_gain_life_regeneration_rate_per_minute_%"}},[5805]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Withered for 2 seconds on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=100,[2]="#"}},text="Inflict Withered for 2 seconds on Hit"}}},stats={[1]="withered_on_hit_for_2_seconds_%_chance"}},[5806]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Wrath Reserves no Mana"}}},stats={[1]="wrath_reserves_no_mana"}},[5807]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="If you've Attacked Recently, you\nand nearby Allies have %1$+d%% Chance to Block Attack Damage"}}},stats={[1]="you_and_allies_additional_block_%_if_have_attacked_recently"}},[5808]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="If you've Cast a Spell Recently, you\nand nearby Allies have %1$+d%% Chance to Block Spell Damage"}}},stats={[1]="you_and_allies_additional_spell_block_%_if_cast_spell_recently"}},[5809]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="If you've Impaled an Enemy Recently, you\nand nearby Allies have +%1% to Armour"}}},stats={[1]="you_and_nearby_allies_armour_+_if_have_impaled_recently"}},[5810]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="If you Consumed a corpse Recently, you and nearby Allies Regenerate %1%%% of Life per second"}}},stats={[1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently"}},[5811]={lang={English={[1]={[1]={k="per_minute_to_per_second_0dp",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="If you have Blocked Recently, you and nearby Allies Regenerate %1%%% of Life per second"}}},stats={[1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently"}},[5812]={lang={English={[1]={[1]={k="per_minute_to_per_second_1dp",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="If you've Hit an Enemy Recently, you and nearby Allies Regenerate %1%%% of Life per second"}}},stats={[1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently"}},[5813]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="You and your Totems Regenerate %1%%% of Life per second for each Summoned Totem"}}},stats={[1]="you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem"}},[5814]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be Hindered"}}},stats={[1]="you_cannot_be_hindered"}},[5815]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot have non-Animated Minions"}}},stats={[1]="you_cannot_have_non_animated_minions"}},[5816]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You count as on Low Life while not on Full Life"}}},stats={[1]="you_count_as_low_life_while_not_on_full_life"}},[5817]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You have no Armour or Maximum Energy Shield"}}},stats={[1]="you_have_no_armour_or_energy_shield"}},[5818]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDealsDamageFaster"},limit={[1]={[1]="#",[2]="#"}},text="Damaging Ailments you inflict deal Damage %1%%% faster while affected by Malevolence"}}},stats={[1]="your_ailments_deal_damage_faster_%_while_affected_by_malevolence"}},[5819]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDealsDamageFaster"},limit={[1]={[1]="#",[2]="#"}},text="Damaging Ailments you inflict deal Damage %1%%% faster while affected by Malevolence"}}},stats={[1]="your_ailments_deal_damage_faster_%_while_affected_by_malevolence"}},[5820]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextLingers"},limit={[1]={[1]="#",[2]="#"}},text="Effects of Consecrated Ground you create Linger for %1% seconds"}}},stats={[1]="your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"}},[5821]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Spells are disabled"}}},stats={[1]="your_spells_are_disabled"}},[5822]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1% Cold Damage taken per second per Frenzy Charge while moving"}}},stats={[1]="cold_damage_taken_per_minute_per_frenzy_charge_while_moving"}},[5823]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1% Fire Damage taken per second per Endurance Charge if you've been Hit Recently"}}},stats={[1]="fire_damage_taken_per_minute_per_endurance_charge_if_you_have_been_hit_recently"}},[5824]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1% Lightning Damage taken per second per Power Charge if\nyour Skills have dealt a Critical Strike Recently"}}},stats={[1]="lightning_damage_taken_per_minute_per_power_charge_if_have_crit_recently"}},[5825]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When used in the Synthesiser, the new item will have an additional Herald Modifier"}}},stats={[1]="local_apply_extra_herald_mod_when_synthesised"}},[5826]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Historic"}}},stats={[1]="local_unique_jewel_alternate_tree_internal_revision"}},[5827]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Primordial"}}},stats={[1]="primordial_jewel_count"}},[5828]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=1,[2]="#"},[3]={[1]=0,[2]=0}},text="Skills supported by Unleash have %2$+d to maximum number of Seals"}}},stats={[1]="support_anticipation_charge_gain_interval_ms",[2]="support_anticipation_rapid_fire_count",[3]="skill_max_unleash_seals"}},[5829]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Zealotry has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Zealotry has %1%%% reduced Aura Effect"}}},stats={[1]="zealotry_aura_effect_+%"}},[5830]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Zealotry has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Zealotry has %1%%% reduced Mana Reservation"}}},stats={[1]="zealotry_mana_reservation_+%"}},[5831]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Zealotry Reserves no Mana"}}},stats={[1]="zealotry_reserves_no_mana"}},[5832]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Your Raised Zombies spread Caustic Ground on Death, dealing %1%%% of their maximum Life as Chaos Damage per second"}}},stats={[1]="zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"}},[5833]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="With at least 1000 Strength, %1%%% of Damage dealt by your Raised Zombies is Leeched to you as Life"}}},stats={[1]="zombie_damage_leeched_as_life_to_you_permyriad_if_over_1000_strength"}},[5834]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Raised Zombies deal %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Raised Zombies deal %1%%% less Physical Damage"}}},stats={[1]="zombie_physical_damage_+%_final"}},[5835]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Raised Zombies' Slam Attack has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Raised Zombies' Slam Attack has %1%%% reduced Area of Effect"}}},stats={[1]="zombie_slam_area_of_effect_+%"}},[5836]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raised Zombies' Slam Attack has %1%%% increased Cooldown Recovery Speed"}}},stats={[1]="zombie_slam_cooldown_speed_+%"}},[5837]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raised Zombies' Slam Attack deals %1%%% increased Damage"}}},stats={[1]="zombie_slam_damage_+%"}},[5838]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAggressiveMinions"},limit={[1]={[1]="#",[2]="#"}},text="Summoned Golems are Aggressive"}}},stats={[1]="golems_larger_aggro_radius"}},[5839]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAggressiveMinions"},limit={[1]={[1]="#",[2]="#"}},text="Minions are Aggressive"}}},stats={[1]="minion_larger_aggro_radius"}},[5840]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions take %1%%% reduced Damage"}}},stats={[1]="local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%"}},[5841]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions have %1%%% reduced Movement Speed"}}},stats={[1]="local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%"}},[5842]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Passive Skills in Radius also grant: Traps and Mines deal %1% to %2% added Physical Damage"}}},stats={[1]="local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage",[2]="local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage"}},[5843]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRampage"},limit={[1]={[1]=1,[2]="#"}},text="Rampage"}}},stats={[1]="player_gain_rampage_stacks"}},[5844]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneAcrobatics"},limit={[1]={[1]="#",[2]="#"}},text="Acrobatics"}}},stats={[1]="keystone_acrobatics"}},[5845]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystonePerfectAgony"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]="#"}},text="Perfect Agony"}}},stats={[1]="keystone_ailment_crit"}},[5846]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneAncestralBond"},limit={[1]={[1]="#",[2]="#"}},text="Ancestral Bond"}}},stats={[1]="keystone_ancestral_bond"}},[5847]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneAvatarOfFire"},limit={[1]={[1]="#",[2]="#"}},text="Avatar of Fire"}}},stats={[1]="keystone_avatar_of_fire"}},[5848]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneBloodMagic"},limit={[1]={[1]="#",[2]="#"}},text="Blood Magic"}}},stats={[1]="keystone_blood_magic"}},[5849]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneChaosInoculation"},limit={[1]={[1]=1,[2]="#"}},text="Chaos Inoculation"}}},stats={[1]="keystone_chaos_inoculation"}},[5850]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneConduit"},limit={[1]={[1]="#",[2]="#"}},text="Conduit"}}},stats={[1]="keystone_conduit"}},[5851]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneCrimsonDance"},limit={[1]={[1]="#",[2]="#"}},text="Crimson Dance"}}},stats={[1]="keystone_crimson_dance"}},[5852]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneEldritchBattery"},limit={[1]={[1]="#",[2]="#"}},text="Eldritch Battery"}}},stats={[1]="keystone_eldritch_battery"}},[5853]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneElementalEquilibrium"},limit={[1]={[1]="#",[2]="#"}},text="Elemental Equilibrium"}}},stats={[1]="keystone_elemental_equilibrium"}},[5854]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneElementalOverload"},limit={[1]={[1]="#",[2]="#"}},text="Elemental Overload"}}},stats={[1]="keystone_elemental_overload"}},[5855]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneGhostReaver"},limit={[1]={[1]="#",[2]="#"}},text="Ghost Reaver"}}},stats={[1]="keystone_ghost_reaver"}},[5856]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneIronReflexes"},limit={[1]={[1]="#",[2]="#"}},text="Iron Reflexes"}}},stats={[1]="keystone_iron_reflexes"}},[5857]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneMindOverMatter"},limit={[1]={[1]="#",[2]="#"}},text="Mind Over Matter"}}},stats={[1]="keystone_mana_shield"}},[5858]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneMinionInstability"},limit={[1]={[1]="#",[2]="#"}},text="Minion Instability"}}},stats={[1]="keystone_minion_instability"}},[5859]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneMortalConviction"},limit={[1]={[1]="#",[2]="#"}},text="Mortal Conviction"}}},stats={[1]="keystone_mortal_conviction"}},[5860]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},[2]={k="reminderstring",v="ReminderTextKeystonePainAttunement"},limit={[1]={[1]="#",[2]="#"}},text="Pain Attunement"}}},stats={[1]="keystone_pain_attunement"}},[5861]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystonePhaseAcrobatics"},limit={[1]={[1]="#",[2]="#"}},text="Phase Acrobatics"}}},stats={[1]="keystone_phase_acrobatics"}},[5862]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystonePointBlank"},limit={[1]={[1]="#",[2]="#"}},text="Point Blank"}}},stats={[1]="keystone_point_blank"}},[5863]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneProjectileEvasion"},limit={[1]={[1]="#",[2]="#"}},text="Arrow Dancing"}}},stats={[1]="keystone_projectile_evasion"}},[5864]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneInnerConviction"},limit={[1]={[1]="#",[2]="#"}},text="Inner Conviction"}}},stats={[1]="keystone_quiet_might"}},[5865]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneZealotsOath"},limit={[1]={[1]="#",[2]="#"}},text="Zealot's Oath"}}},stats={[1]="regenerate_energy_shield_instead_of_life"}},[5866]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneRunebinder"},limit={[1]={[1]="#",[2]="#"}},text="Runebinder"}}},stats={[1]="keystone_runebinder"}},[5867]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneSharedSuffering"},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Shared Suffering"}}},stats={[1]="keystone_shared_suffering"}},[5868]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneIronGrip"},limit={[1]={[1]="#",[2]="#"}},text="Iron Grip"}}},stats={[1]="keystone_strong_bowman"}},[5869]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneUnwaveringStance"},limit={[1]={[1]="#",[2]="#"}},text="Unwavering Stance"}}},stats={[1]="keystone_unwavering_stance"}},[5870]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneVaalPact"},limit={[1]={[1]="#",[2]="#"}},text="Vaal Pact"}}},stats={[1]="keystone_vaal_pact"}},[5871]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},[2]={k="reminderstring",v="ReminderTextKeystoneVaalPact"},limit={[1]={[1]="#",[2]="#"}},text="Vaal Pact"}}},stats={[1]="keystone_vampirism"}},[5872]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneWickedWard"},limit={[1]={[1]="#",[2]="#"}},text="Wicked Ward"}}},stats={[1]="keystone_wicked_ward"}},[5873]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFarShot"},limit={[1]={[1]="#",[2]="#"}},text="Far Shot"}}},stats={[1]="player_far_shot"}},[5874]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneResoluteTechnique"},limit={[1]={[1]="#",[2]="#"}},text="Resolute Technique"}}},stats={[1]="resolute_technique"}},[5875]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIronWill"},limit={[1]={[1]="#",[2]="#"}},text="Iron Will"}}},stats={[1]="strong_casting"}},[5876]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneAvatarOfFire"},limit={[1]={[1]="#",[2]="#"}},text="Summoned Skeletons have Avatar of Fire"}}},stats={[1]="summoned_skeletons_have_avatar_of_fire"}},[5877]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextKeystoneCrimsonDance"},limit={[1]={[1]="#",[2]="#"}},text="You have Crimson Dance if you have dealt a Critical Strike Recently"}}},stats={[1]="gain_crimson_dance_if_have_dealt_critical_strike_recently"}},[5878]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneCrimsonDance"},limit={[1]={[1]="#",[2]="#"}},text="You have Crimson Dance while you have Cat's Stealth"}}},stats={[1]="gain_crimson_dance_while_you_have_cat_stealth"}},[5879]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneIronReflexes"},limit={[1]={[1]="#",[2]="#"}},text="You have Iron Reflexes while at maximum Frenzy Charges"}}},stats={[1]="gain_iron_reflexes_while_at_maximum_frenzy_charges"}},[5880]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneMindOverMatter"},limit={[1]={[1]="#",[2]="#"}},text="You have Mind over Matter while at maximum Power Charges"}}},stats={[1]="gain_mind_over_matter_while_at_maximum_power_charges"}},[5881]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneVaalPact"},limit={[1]={[1]="#",[2]="#"}},text="You have Vaal Pact while at maximum Endurance Charges"}}},stats={[1]="gain_vaal_pact_while_at_maximum_endurance_charges"}},[5882]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneVaalPact"},limit={[1]={[1]="#",[2]="#"}},text="You have Vaal Pact while all Socketed Gems are Red"}}},stats={[1]="local_gain_vaal_pact_if_all_socketed_gems_red"}},[5883]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneAvatarOfFire"},limit={[1]={[1]="#",[2]="#"}},text="Every 8 seconds, gain Avatar of Fire for 4 seconds"}}},stats={[1]="avatar_of_fire_rotation_active"}},[5884]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneElementalOverload"},limit={[1]={[1]="#",[2]="#"}},text="Every 16 seconds you gain Elemental Overload for 8 seconds"}}},stats={[1]="elemental_overload_rotation_active"}},[5885]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneIronReflexes"},limit={[1]={[1]="#",[2]="#"}},text="Iron Reflexes while stationary"}}},stats={[1]="gain_iron_reflexes_while_stationary"}},[5886]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneResoluteTechnique"},limit={[1]={[1]="#",[2]="#"}},text="You have Resolute Technique while you do not have Elemental Overload"}}},stats={[1]="gain_resolute_technique_while_do_not_have_elemental_overload"}},[5887]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystonePerfectAgony"},limit={[1]={[1]="#",[2]="#"}},text="Grants Perfect Agony during Flask effect"}}},stats={[1]="local_grant_perfect_agony_during_flask_effect"}},[5888]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneIronReflexes"},limit={[1]={[1]="#",[2]="#"}},text="Every 16 seconds you gain Iron Reflexes for 8 seconds"}}},stats={[1]="iron_reflexes_rotation_active"}},[5889]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneZealotsOath"},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You have Zealot's Oath if you haven't been hit recently"}}},stats={[1]="you_have_zealots_oath_if_you_havent_been_hit_recently"}},[5890]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage while you have Resolute Technique"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage while you have Resolute Technique"}}},stats={[1]="physical_damage_+%_while_you_have_resolute_technique"}},[5891]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance while you have Avatar of Fire"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance while you have Avatar of Fire"}}},stats={[1]="critical_strike_chance_+%_while_you_have_avatar_of_fire"}},[5892]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage Converted to Fire while you have Avatar of Fire"}}},stats={[1]="physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire"}},[5893]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Damage with Arrow Hits at Close Range while you have Iron Reflexes"}}},stats={[1]="unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes"}},[5894]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Attacks with this Weapon have %1%%% chance to inflict Bleeding while you do not have Avatar of Fire"}}},stats={[1]="local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire"}},[5895]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Armour while you do not have Avatar of Fire"}}},stats={[1]="armour_while_you_do_not_have_avatar_of_fire"}},[5896]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack, Cast and Movement Speed while you do not have Iron Reflexes"}}},stats={[1]="attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes"}},[5897]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFarShot"},limit={[1]={[1]="#",[2]="#"}},text="You have Far Shot while you do not have Iron Reflexes"}}},stats={[1]="gain_player_far_shot_while_do_not_have_iron_reflexes"}},[5898]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gore Footprints"}}},stats={[1]="blood_footprints_from_item"}},[5899]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Celestial Footprints"}}},stats={[1]="celestial_footprints_from_item"}},[5900]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Demigod Footprints"}}},stats={[1]="demigod_footprints_from_item"}},[5901]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra gore"}}},stats={[1]="extra_gore"}},[5902]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Burning Hoofprints"}}},stats={[1]="goat_footprints_from_item"}},[5903]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Mercury Footprints"}}},stats={[1]="silver_footprints_from_item"}},["%_chance_to_blind_on_critical_strike"]=3432,["%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth"]=3500,["%_chance_to_cause_bleeding_enemies_to_flee_on_hit"]=2963,["%_chance_to_create_smoke_cloud_on_mine_or_trap_creation"]=3233,["%_chance_to_gain_100%_non_chaos_damage_to_add_as_chaos_damage"]=3498,["%_chance_to_gain_25%_non_chaos_damage_to_add_as_chaos_damage"]=3496,["%_chance_to_gain_50%_non_chaos_damage_to_add_as_chaos_damage"]=3497,["%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy"]=2758,["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=2757,["%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life"]=3231,["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1374,["%_chance_to_gain_power_charge_on_placing_a_totem"]=3217,["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1373,["%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy"]=5415,["%_maximum_es_and_life_taken_as_fire_damage_per_minute_per_level_while_in_her_embrace"]=5416,["%_number_of_raging_spirits_allowed"]=5417,["X_accuracy_per_2_intelligence"]=1267,["X_armour_if_you_have_blocked_recently"]=3533,["X_armour_per_active_totem"]=3534,["X_armour_per_stackable_unique_jewel"]=3315,["X_life_per_4_dexterity"]=1268,["X_mana_per_4_strength"]=1269,["X_mana_per_stackable_unique_jewel"]=3314,["abyssal_cry_damage_+%"]=2888,["abyssal_cry_duration_+%"]=3082,["accuracy_rating"]=742,["accuracy_rating_+%"]=743,["accuracy_rating_+%_if_enemy_not_killed_recently"]=3536,["accuracy_rating_+%_if_have_crit_in_past_8_seconds"]=3537,["accuracy_rating_+%_per_frenzy_charge"]=1298,["accuracy_rating_+%_when_on_low_life"]=1773,["accuracy_rating_is_doubled"]=3535,["accuracy_rating_vs_bleeding_enemies"]=3538,["accuracy_rating_while_at_maximum_frenzy_charges"]=3539,["accuracy_rating_while_dual_wielding_+%"]=744,["acrobatics_additional_chance_to_dodge_%"]=1463,["action_speed_+%_while_chilled"]=2744,["action_speed_cannot_be_reduced_below_base"]=2361,["active_skill_attack_speed_+%_final"]=720,["active_skill_attack_speed_+%_final_per_frenzy_charge"]=2952,["active_skill_damage_over_time_from_projectile_hits_+%_final"]=1462,["active_skill_level_+"]=1126,["active_skill_projectile_damage_+%_final"]=1461,["add_endurance_charge_on_critical_strike"]=1070,["add_endurance_charge_on_enemy_critical_strike"]=1086,["add_endurance_charge_on_gain_power_charge_%"]=2765,["add_endurance_charge_on_kill"]=1999,["add_endurance_charge_on_skill_hit_%"]=1083,["add_endurance_charge_on_status_ailment"]=1087,["add_frenzy_charge_every_50_rampage_stacks"]=3513,["add_frenzy_charge_on_critical_strike"]=1079,["add_frenzy_charge_on_enemy_block"]=1369,["add_frenzy_charge_on_kill_%_chance"]=1808,["add_frenzy_charge_on_skill_hit_%"]=1084,["add_frenzy_charge_when_hit_%"]=3540,["add_power_charge_on_critical_strike"]=1080,["add_power_charge_on_critical_strike_%"]=1081,["add_power_charge_on_hit_%"]=2759,["add_power_charge_on_kill_%_chance"]=1810,["add_power_charge_on_melee_critical_strike"]=1082,["add_power_charge_on_minion_death"]=1305,["add_power_charge_on_skill_hit_%"]=1085,["add_power_charge_when_interrupted_while_casting"]=1396,["add_power_charge_when_kill_shocked_enemy"]=1385,["additional_%_chance_to_evade_attacks_if_you_have_taken_a_savage_hit_recently"]=3561,["additional_all_attributes"]=545,["additional_attack_block_%_if_used_shield_skill_recently"]=3541,["additional_attack_block_%_per_endurance_charge"]=3542,["additional_attack_block_%_per_frenzy_charge"]=3543,["additional_attack_block_%_per_power_charge"]=3544,["additional_attack_block_%_per_summoned_skeleton"]=3545,["additional_base_critical_strike_chance"]=768,["additional_beam_only_chains"]=5790,["additional_block_%"]=1653,["additional_block_%_if_you_have_crit_recently"]=3546,["additional_block_%_per_endurance_charge"]=3547,["additional_block_%_per_hit_you_have_blocked_in_past_10_seconds"]=3548,["additional_block_%_while_not_cursed"]=3549,["additional_block_%_while_on_consecrated_ground"]=3550,["additional_block_%_while_you_have_at_least_10_crab_charges"]=3493,["additional_block_%_while_you_have_at_least_5_crab_charges"]=3492,["additional_block_%_with_5_or_more_nearby_enemies"]=3551,["additional_block_chance_%_for_1_second_every_5_seconds"]=1654,["additional_block_chance_%_for_you_and_allies_affected_by_your_auras"]=3223,["additional_block_chance_%_when_in_off_hand"]=3337,["additional_block_chance_against_projectiles_%"]=1659,["additional_chance_to_freeze_chilled_enemies_%"]=1279,["additional_chaos_resistance_against_damage_over_time_%"]=3961,["additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad"]=3552,["additional_critical_strike_chance_per_power_charge_permyriad"]=3553,["additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%"]=3554,["additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect"]=3499,["additional_critical_strike_chance_permyriad_while_affected_by_hatred"]=3555,["additional_critical_strike_chance_permyriad_while_at_maximum_power_charges"]=2635,["additional_dexterity"]=547,["additional_dexterity_and_intelligence"]=551,["additional_intelligence"]=548,["additional_max_number_of_dominated_magic_monsters"]=3556,["additional_max_number_of_dominated_rare_monsters"]=3557,["additional_maximum_all_elemental_resistances_%"]=928,["additional_maximum_all_resistances_%"]=927,["additional_maximum_all_resistances_%_at_devotion_threshold"]=3559,["additional_maximum_all_resistances_%_while_poisoned"]=3558,["additional_maximum_all_resistances_%_with_no_endurance_charges"]=3560,["additional_physical_damage_reduction_%_during_flask_effect"]=3423,["additional_physical_damage_reduction_%_during_focus"]=3562,["additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently"]=3563,["additional_physical_damage_reduction_%_per_keystone"]=3564,["additional_physical_damage_reduction_%_per_minion_up_to_10%"]=3565,["additional_physical_damage_reduction_%_vs_abyssal_monsters"]=3566,["additional_physical_damage_reduction_%_when_on_low_life"]=1497,["additional_physical_damage_reduction_%_while_affected_by_determination"]=3567,["additional_physical_damage_reduction_%_while_affected_by_guard_skill"]=3568,["additional_physical_damage_reduction_%_while_bleeding"]=3569,["additional_physical_damage_reduction_%_while_channelling"]=3570,["additional_physical_damage_reduction_%_while_moving"]=3571,["additional_physical_damage_reduction_against_hits_%_per_siphoning_charge"]=3480,["additional_scroll_of_wisdom_drop_chance_%"]=1783,["additional_spell_block_%"]=533,["additional_spell_block_%_per_power_charge"]=3572,["additional_spell_block_%_while_cursed"]=3573,["additional_staff_block_%"]=529,["additional_strength"]=546,["additional_strength_and_dexterity"]=549,["additional_strength_and_intelligence"]=550,["additive_cast_speed_modifiers_apply_to_trap_throwing_speed"]=3574,["additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value"]=3575,["additive_life_modifiers_apply_to_attack_damage_at_30%_value"]=3576,["additive_mana_modifiers_apply_to_damage_at_30%_value"]=3577,["additive_modifiers_to_minion_attack_speed_also_affect_you"]=2914,["additive_spell_damage_modifiers_apply_to_attack_damage"]=1846,["additive_vaal_skill_damage_modifiers_apply_to_all_skills"]=1847,["agony_crawler_damage_+%"]=3578,["ailment_damage_+%_per_equipped_elder_item"]=3471,["ailment_dot_multiplier_+"]=603,["ailment_dot_multiplier_+_per_equipped_elder_item"]=3472,["ailment_types_apply_damage_taken_+%"]=1657,["all_attributes_+%"]=552,["all_attributes_+%_per_assigned_keystone"]=2255,["all_damage_can_freeze"]=2030,["all_resistances_%_per_equipped_corrupted_item"]=2271,["allow_multiple_offerings"]=3579,["always_crit"]=1292,["always_crit_shocked_enemies"]=3293,["always_freeze"]=1276,["always_ignite"]=1101,["always_ignite_while_burning"]=3580,["always_pierce"]=3581,["always_shock"]=1102,["always_stun"]=1103,["always_stun_enemies_that_are_on_full_life"]=2508,["ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=2601,["ancestor_totem_buff_effect_+%"]=3582,["ancestor_totem_parent_activation_range_+%"]=3583,["anger_aura_effect_+%"]=2536,["anger_mana_reservation_+%"]=2585,["anger_reserves_no_mana"]=3584,["animate_guardian_damage_+%"]=2869,["animate_guardian_damage_+%_per_animated_weapon"]=3585,["animate_guardian_elemental_resistances_%"]=3150,["animate_item_maximum_level_requirement"]=1963,["animate_weapon_can_animate_bows"]=2329,["animate_weapon_can_animate_up_to_x_additional_ranged_weapons"]=2424,["animate_weapon_can_animate_wands"]=2330,["animate_weapon_chance_to_create_additional_copy_%"]=3155,["animate_weapon_damage_+%"]=2791,["animate_weapon_duration_+%"]=1965,["animate_weapon_number_of_additional_copies"]=1966,["animated_minions_melee_splash"]=3586,["apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy"]=3587,["apply_covered_in_ash_to_attacker_when_hit_%"]=3588,["apply_poison_on_hit_vs_bleeding_enemies_%"]=2452,["arc_damage_+%"]=2824,["arc_damage_+%_per_chain"]=3589,["arc_num_of_additional_projectiles_in_chain"]=3113,["arc_shock_chance_%"]=3128,["arcane_surge_effect_+%"]=2456,["arcane_surge_effect_+%_per_200_mana_spent_recently_up_to_50%"]=2457,["arctic_armour_buff_effect_+%"]=3182,["arctic_armour_chill_when_hit_duration"]=3590,["arctic_armour_mana_reservation_+%"]=3189,["arctic_breath_chilling_area_movement_velocity_+%"]=3591,["arctic_breath_damage_+%"]=2842,["arctic_breath_duration_+%"]=3093,["arctic_breath_radius_+%"]=2985,["area_damage_+%"]=1282,["area_damage_+%_per_10_devotion"]=3592,["area_damage_+%_per_12_strength"]=3593,["area_damage_taken_from_hits_+%"]=1478,["area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently"]=3594,["area_of_effect_+%_if_have_stunned_an_enemy_recently"]=3595,["area_of_effect_+%_if_you_have_blocked_recently"]=3596,["area_of_effect_+%_per_20_int"]=1731,["area_of_effect_+%_per_25_rampage_stacks"]=3512,["area_of_effect_+%_per_50_strength"]=3597,["area_of_effect_+%_per_active_herald_of_light_minion"]=3598,["area_of_effect_+%_per_endurance_charge"]=3599,["area_of_effect_+%_per_enemy_killed_recently"]=3600,["area_of_effect_+%_while_fortified"]=3601,["area_of_effect_+%_while_totem_active"]=3602,["area_of_effect_+%_while_wielding_bow"]=3603,["area_of_effect_+%_while_wielding_staff"]=3604,["area_of_effect_+%_while_you_have_arcane_surge"]=3605,["area_of_effect_+%_with_500_or_more_strength"]=3606,["area_skill_accuracy_rating_+%"]=3607,["armageddon_brand_attached_target_fire_penetration_%"]=3608,["armageddon_brand_damage_+%"]=3609,["armageddon_brand_repeat_frequency_+%"]=3610,["armour_%_to_leech_as_life_on_block"]=1907,["armour_+%_if_enemy_not_killed_recently"]=3615,["armour_+%_while_bleeding"]=3616,["armour_+%_while_no_energy_shield"]=3617,["armour_+%_while_stationary"]=3618,["armour_+_while_affected_by_determination"]=3613,["armour_+_while_affected_by_guard_skill"]=3614,["armour_and_evasion_+%_while_fortified"]=3403,["armour_and_evasion_on_low_life_+%"]=2380,["armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently"]=3344,["armour_and_evasion_rating_+_while_fortified"]=3611,["armour_increased_by_uncapped_fire_resistance"]=3612,["armour_while_stationary"]=3456,["armour_while_you_do_not_have_avatar_of_fire"]=5895,["arrow_base_number_of_targets_to_pierce"]=1053,["arrow_damage_+%_vs_pierced_targets"]=3619,["arrow_damage_+50%_vs_pierced_targets"]=3620,["arrows_always_pierce_after_chaining"]=3449,["arrows_always_pierce_after_forking"]=3621,["arrows_pierce_additional_target"]=3622,["arrows_that_pierce_also_return"]=3623,["arrows_that_pierce_cause_bleeding"]=3447,["arrows_that_pierce_chance_to_bleed_25%"]=3448,["artillery_ballista_cross_strafe_pattern"]=3624,["artillery_ballista_fire_pen_+%"]=3625,["artillery_ballista_num_additional_arrows"]=3626,["ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final"]=3627,["aspect_of_the_avian_buff_effect_+%"]=3628,["aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies"]=3629,["aspect_of_the_spider_web_count_+"]=3630,["assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final"]=2603,["assassins_mark_curse_effect_+%"]=3169,["assassins_mark_duration_+%"]=3079,["attack_additional_critical_strike_chance_permyriad"]=3631,["attack_ailment_damage_+%_while_dual_wielding"]=3632,["attack_ailment_damage_+%_while_holding_shield"]=3633,["attack_ailment_damage_+%_while_wielding_axe"]=3634,["attack_ailment_damage_+%_while_wielding_bow"]=3635,["attack_ailment_damage_+%_while_wielding_claw"]=3636,["attack_ailment_damage_+%_while_wielding_dagger"]=3637,["attack_ailment_damage_+%_while_wielding_mace"]=3638,["attack_ailment_damage_+%_while_wielding_melee_weapon"]=3639,["attack_ailment_damage_+%_while_wielding_one_handed_weapon"]=3640,["attack_ailment_damage_+%_while_wielding_staff"]=3641,["attack_ailment_damage_+%_while_wielding_sword"]=3642,["attack_ailment_damage_+%_while_wielding_two_handed_weapon"]=3643,["attack_ailment_damage_+%_while_wielding_wand"]=3644,["attack_always_crit"]=2942,["attack_and_cast_speed_+%"]=1294,["attack_and_cast_speed_+%_during_flask_effect"]=3428,["attack_and_cast_speed_+%_during_onslaught"]=2198,["attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds"]=3648,["attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge"]=2691,["attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use"]=2638,["attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras"]=3224,["attack_and_cast_speed_+%_if_enemy_hit_recently"]=3649,["attack_and_cast_speed_+%_on_placing_totem"]=2372,["attack_and_cast_speed_+%_per_corpse_consumed_recently"]=3407,["attack_and_cast_speed_+%_per_endurance_charge"]=3650,["attack_and_cast_speed_+%_per_frenzy_charge"]=1296,["attack_and_cast_speed_+%_per_power_charge"]=3651,["attack_and_cast_speed_+%_per_summoned_raging_spirit"]=3652,["attack_and_cast_speed_+%_while_affected_by_a_mana_flask"]=3645,["attack_and_cast_speed_+%_while_affected_by_elusive"]=3646,["attack_and_cast_speed_+%_while_focused"]=3653,["attack_and_cast_speed_+%_while_leeching"]=3246,["attack_and_cast_speed_+%_while_leeching_energy_shield"]=3654,["attack_and_cast_speed_+%_while_on_consecrated_ground"]=3381,["attack_and_cast_speed_+%_while_totem_active"]=2767,["attack_and_cast_speed_+%_while_you_have_fortify"]=1505,["attack_and_cast_speed_+%_with_channelling_skills"]=3655,["attack_and_cast_speed_+%_with_shield_skills"]=3656,["attack_and_cast_speed_per_ghost_dance_stack_+%"]=3647,["attack_and_cast_speed_when_hit_+%"]=2387,["attack_and_movement_speed_+%_final_per_challenger_charge"]=3657,["attack_and_movement_speed_+%_if_you_have_beast_minion"]=3465,["attack_and_movement_speed_+%_with_her_blessing"]=2450,["attack_and_spell_maximum_added_physical_damage_per_siphoning_charge"]=3478,["attack_and_spell_minimum_added_physical_damage_per_siphoning_charge"]=3478,["attack_area_of_effect_+%"]=3658,["attack_block_%_if_blocked_a_spell_recently"]=3659,["attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes"]=5896,["attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras"]=3225,["attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently"]=3660,["attack_critical_strike_chance_+%"]=3661,["attack_critical_strike_chance_+%_per_200_accuracy_rating"]=3662,["attack_critical_strike_damage_life_leech_permyriad"]=2931,["attack_damage_+%"]=562,["attack_damage_+%_for_4_seconds_on_cast"]=2696,["attack_damage_+%_if_other_ring_is_shaper_item"]=3466,["attack_damage_+%_per_450_evasion"]=2117,["attack_damage_+%_per_500_maximum_mana"]=3663,["attack_damage_+%_per_explicit_map_mod_affecting_area"]=3664,["attack_damage_+%_per_frenzy_charge"]=2454,["attack_damage_+%_per_level"]=2132,["attack_damage_+%_while_affected_by_precision"]=3666,["attack_damage_+%_while_channelling"]=3667,["attack_damage_+%_while_holding_a_shield"]=570,["attack_damage_+%_while_leeching"]=3668,["attack_damage_+%_while_onslaught_active"]=2459,["attack_damage_+%_while_you_have_fortify"]=3669,["attack_damage_+%_with_channelling_skills"]=3670,["attack_damage_+1%_per_300_of_min_of_armour_or_evasion"]=3665,["attack_damage_that_stuns_also_chills"]=2181,["attack_damage_vs_bleeding_enemies_+%"]=1683,["attack_dodge_%_while_channelling"]=3671,["attack_ignite_chance_%"]=1870,["attack_maximum_added_chaos_damage"]=698,["attack_maximum_added_chaos_damage_if_you_have_beast_minion"]=3464,["attack_maximum_added_cold_damage"]=683,["attack_maximum_added_cold_damage_with_axes"]=1319,["attack_maximum_added_cold_damage_with_bows"]=1320,["attack_maximum_added_cold_damage_with_claws"]=1321,["attack_maximum_added_cold_damage_with_daggers"]=1322,["attack_maximum_added_cold_damage_with_maces"]=1323,["attack_maximum_added_cold_damage_with_staves"]=1324,["attack_maximum_added_cold_damage_with_swords"]=1325,["attack_maximum_added_cold_damage_with_wand"]=1317,["attack_maximum_added_fire_damage"]=676,["attack_maximum_added_fire_damage_per_10_strength"]=3672,["attack_maximum_added_fire_damage_with_axes"]=1326,["attack_maximum_added_fire_damage_with_bow"]=1327,["attack_maximum_added_fire_damage_with_claws"]=1328,["attack_maximum_added_fire_damage_with_daggers"]=1329,["attack_maximum_added_fire_damage_with_maces"]=1330,["attack_maximum_added_fire_damage_with_staves"]=1331,["attack_maximum_added_fire_damage_with_swords"]=1332,["attack_maximum_added_fire_damage_with_wand"]=1316,["attack_maximum_added_lightning_damage"]=692,["attack_maximum_added_lightning_damage_per_10_int"]=3674,["attack_maximum_added_lightning_damage_while_unarmed"]=1634,["attack_maximum_added_lightning_damage_with_axes"]=1333,["attack_maximum_added_lightning_damage_with_bows"]=1334,["attack_maximum_added_lightning_damage_with_claws"]=1335,["attack_maximum_added_lightning_damage_with_daggers"]=1336,["attack_maximum_added_lightning_damage_with_maces"]=1337,["attack_maximum_added_lightning_damage_with_staves"]=1338,["attack_maximum_added_lightning_damage_with_swords"]=1339,["attack_maximum_added_lightning_damage_with_wand"]=1315,["attack_maximum_added_physical_damage"]=620,["attack_maximum_added_physical_damage_if_have_crit_recently"]=3675,["attack_maximum_added_physical_damage_if_you_have_beast_minion"]=3463,["attack_maximum_added_physical_damage_per_25_dexterity"]=2566,["attack_maximum_added_physical_damage_per_level"]=3676,["attack_maximum_added_physical_damage_while_holding_a_shield"]=1340,["attack_maximum_added_physical_damage_while_unarmed"]=1341,["attack_maximum_added_physical_damage_with_axes"]=1342,["attack_maximum_added_physical_damage_with_bow"]=1318,["attack_maximum_added_physical_damage_with_claws"]=1343,["attack_maximum_added_physical_damage_with_daggers"]=1344,["attack_maximum_added_physical_damage_with_maces"]=1345,["attack_maximum_added_physical_damage_with_staves"]=1346,["attack_maximum_added_physical_damage_with_swords"]=1347,["attack_maximum_added_physical_damage_with_wands"]=1348,["attack_maximum_added_physical_damage_with_weapons"]=621,["attack_minimum_added_chaos_damage"]=698,["attack_minimum_added_chaos_damage_if_you_have_beast_minion"]=3464,["attack_minimum_added_cold_damage"]=683,["attack_minimum_added_cold_damage_with_axes"]=1319,["attack_minimum_added_cold_damage_with_bows"]=1320,["attack_minimum_added_cold_damage_with_claws"]=1321,["attack_minimum_added_cold_damage_with_daggers"]=1322,["attack_minimum_added_cold_damage_with_maces"]=1323,["attack_minimum_added_cold_damage_with_staves"]=1324,["attack_minimum_added_cold_damage_with_swords"]=1325,["attack_minimum_added_cold_damage_with_wand"]=1317,["attack_minimum_added_fire_damage"]=676,["attack_minimum_added_fire_damage_per_10_strength"]=3672,["attack_minimum_added_fire_damage_with_axes"]=1326,["attack_minimum_added_fire_damage_with_bow"]=1327,["attack_minimum_added_fire_damage_with_claws"]=1328,["attack_minimum_added_fire_damage_with_daggers"]=1329,["attack_minimum_added_fire_damage_with_maces"]=1330,["attack_minimum_added_fire_damage_with_staves"]=1331,["attack_minimum_added_fire_damage_with_swords"]=1332,["attack_minimum_added_fire_damage_with_wand"]=1316,["attack_minimum_added_lightning_damage"]=692,["attack_minimum_added_lightning_damage_per_10_int"]=3674,["attack_minimum_added_lightning_damage_while_unarmed"]=1634,["attack_minimum_added_lightning_damage_with_axes"]=1333,["attack_minimum_added_lightning_damage_with_bows"]=1334,["attack_minimum_added_lightning_damage_with_claws"]=1335,["attack_minimum_added_lightning_damage_with_daggers"]=1336,["attack_minimum_added_lightning_damage_with_maces"]=1337,["attack_minimum_added_lightning_damage_with_staves"]=1338,["attack_minimum_added_lightning_damage_with_swords"]=1339,["attack_minimum_added_lightning_damage_with_wand"]=1315,["attack_minimum_added_physical_damage"]=620,["attack_minimum_added_physical_damage_if_have_crit_recently"]=3675,["attack_minimum_added_physical_damage_if_you_have_beast_minion"]=3463,["attack_minimum_added_physical_damage_per_25_dexterity"]=2566,["attack_minimum_added_physical_damage_per_level"]=3676,["attack_minimum_added_physical_damage_while_holding_a_shield"]=1340,["attack_minimum_added_physical_damage_while_unarmed"]=1341,["attack_minimum_added_physical_damage_with_axes"]=1342,["attack_minimum_added_physical_damage_with_bow"]=1318,["attack_minimum_added_physical_damage_with_claws"]=1343,["attack_minimum_added_physical_damage_with_daggers"]=1344,["attack_minimum_added_physical_damage_with_maces"]=1345,["attack_minimum_added_physical_damage_with_staves"]=1346,["attack_minimum_added_physical_damage_with_swords"]=1347,["attack_minimum_added_physical_damage_with_wands"]=1348,["attack_minimum_added_physical_damage_with_weapons"]=621,["attack_physical_damage_%_to_add_as_cold"]=2939,["attack_physical_damage_%_to_add_as_fire"]=2938,["attack_physical_damage_%_to_add_as_lightning"]=2940,["attack_projectiles_return"]=1995,["attack_projectiles_return_if_no_hit_object"]=1995,["attack_repeat_count"]=1140,["attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem"]=1885,["attack_skills_additional_ballista_totems_allowed"]=3398,["attack_skills_additional_totems_allowed"]=3399,["attack_speed_+%"]=719,["attack_speed_+%_during_flask_effect"]=2468,["attack_speed_+%_final_per_blitz_charge"]=3679,["attack_speed_+%_for_4_seconds_on_attack"]=2697,["attack_speed_+%_if_enemy_killed_recently"]=3680,["attack_speed_+%_if_enemy_not_killed_recently"]=3386,["attack_speed_+%_if_have_been_hit_recently"]=3681,["attack_speed_+%_if_have_blocked_recently"]=3682,["attack_speed_+%_if_have_crit_recently"]=3683,["attack_speed_+%_if_rare_or_unique_enemy_nearby"]=3684,["attack_speed_+%_per_10_dex"]=1732,["attack_speed_+%_per_200_accuracy_rating"]=3391,["attack_speed_+%_per_25_dex"]=3685,["attack_speed_+%_per_explicit_map_mod_affecting_area"]=3678,["attack_speed_+%_per_frenzy_charge"]=1295,["attack_speed_+%_when_hit"]=2368,["attack_speed_+%_when_on_full_life"]=583,["attack_speed_+%_when_on_low_life"]=582,["attack_speed_+%_while_affected_by_precision"]=3686,["attack_speed_+%_while_holding_shield"]=726,["attack_speed_+%_while_ignited"]=2112,["attack_speed_+%_while_leeching"]=2375,["attack_speed_+%_with_channelling_skills"]=3687,["attack_speed_+%_with_movement_skills"]=741,["attack_speed_while_dual_wielding_+%"]=724,["attack_speed_while_fortified_+%"]=2383,["attacks_bleed_on_hit_while_you_have_cat_stealth"]=3688,["attacks_bleed_on_stun"]=1677,["attacks_cause_bleeding_vs_cursed_enemies"]=3689,["attacks_chance_to_bleed_25%_vs_cursed_enemies"]=3691,["attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies"]=3692,["attacks_chance_to_blind_on_hit_%"]=3693,["attacks_chance_to_poison_%_on_max_frenzy_charges"]=1301,["attacks_chance_to_taunt_on_hit_%"]=3694,["attacks_deal_no_physical_damage"]=1672,["attacks_do_not_cost_mana"]=1133,["attacks_impale_on_hit_%_chance"]=3695,["attacks_intimidate_on_hit_%"]=3696,["attacks_num_of_additional_chains"]=3287,["attacks_num_of_additional_chains_when_in_main_hand"]=3349,["attacks_number_of_additional_projectiles"]=3350,["attacks_number_of_additional_projectiles_when_in_off_hand"]=3351,["attacks_poison_while_at_max_frenzy_charges"]=1300,["attacks_use_life_in_place_of_mana"]=2378,["attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity"]=3697,["attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity"]=3697,["aura_effect_+%"]=1990,["aura_effect_on_self_+%"]=1387,["aura_grant_shield_defences_to_nearby_allies"]=2628,["aura_melee_physical_damage_+%_per_10_strength"]=2614,["auras_grant_additional_physical_damage_reduction_%_to_you_and_your_allies"]=2623,["auras_grant_attack_and_cast_speed_+%_to_you_and_your_allies"]=2624,["auras_grant_damage_+%_to_you_and_your_allies"]=2622,["avatar_of_fire_rotation_active"]=5883,["avians_flight_duration_ms_+"]=3698,["avians_might_duration_ms_+"]=3699,["avoid_ailments_%_from_crit"]=3700,["avoid_ailments_%_on_consecrated_ground"]=2718,["avoid_ailments_%_while_holding_shield"]=3701,["avoid_all_elemental_ailment_%_per_summoned_golem"]=3702,["avoid_all_elemental_status_%"]=1092,["avoid_blind_%"]=1763,["avoid_chained_projectile_%_chance"]=3703,["avoid_chaos_damage_%"]=2549,["avoid_chill_%"]=1088,["avoid_cold_damage_%"]=2547,["avoid_corrupted_blood_%_chance"]=3704,["avoid_elemental_damage_%_per_frenzy_charge"]=2545,["avoid_elemental_damage_chance_%_during_soul_gain_prevention"]=3705,["avoid_elemental_damage_while_phasing_%"]=3706,["avoid_fire_damage_%"]=2546,["avoid_freeze_%"]=1089,["avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently"]=3707,["avoid_freeze_chill_ignite_%_while_have_onslaught"]=2207,["avoid_freeze_chill_ignite_%_with_her_blessing"]=2449,["avoid_freeze_shock_ignite_bleed_%_during_flask_effect"]=3241,["avoid_ignite_%"]=1090,["avoid_ignite_%_when_on_low_life"]=1096,["avoid_interruption_while_casting_%"]=1139,["avoid_knockback_%"]=830,["avoid_lightning_damage_%"]=2548,["avoid_maim_%_chance"]=3708,["avoid_physical_damage_%"]=2544,["avoid_projectiles_while_phasing_%_chance"]=3709,["avoid_shock_%"]=1091,["avoid_shock_%_while_chilled"]=3710,["avoid_status_ailments_%_during_flask_effect"]=2467,["avoid_stun_%"]=1099,["avoid_stun_%_for_4_seconds_on_kill"]=2502,["avoid_stun_%_while_channelling"]=3712,["avoid_stun_%_while_holding_shield"]=3713,["avoid_stun_35%_per_active_herald"]=3711,["axe_accuracy_rating"]=1257,["axe_accuracy_rating_+%"]=747,["axe_attack_speed_+%"]=729,["axe_critical_strike_chance_+%"]=782,["axe_critical_strike_multiplier_+"]=804,["axe_damage_+%"]=641,["ball_lightning_damage_+%"]=2335,["ball_lightning_number_of_additional_projectiles"]=3714,["ball_lightning_projectile_speed_+%"]=3052,["ball_lightning_radius_+%"]=2986,["banner_skills_reserve_no_mana"]=3715,["barrage_attack_speed_+%"]=3021,["barrage_damage_+%"]=2825,["barrage_final_volley_fires_x_additional_projectiles_simultaneously"]=2433,["barrage_num_of_additional_projectiles"]=3110,["base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=2950,["base_actor_scale_+%"]=1304,["base_additional_physical_damage_reduction_%"]=1510,["base_ailment_damage_+%"]=3716,["base_all_ailment_duration_+%"]=1108,["base_all_damage_can_cause_elemental_ailments_you_are_suffering_from"]=2031,["base_always_inflict_elemental_ailments_you_are_suffering_from"]=3717,["base_arrow_speed_+%"]=1057,["base_arrows_always_pierce"]=3718,["base_attack_speed_+%_per_frenzy_charge"]=1297,["base_aura_area_of_effect_+%"]=1470,["base_avoid_bleed_%"]=3369,["base_avoid_chill_%"]=1093,["base_avoid_chill_%_while_have_onslaught"]=2199,["base_avoid_freeze_%"]=1094,["base_avoid_ignite_%"]=1095,["base_avoid_poison_%"]=1098,["base_avoid_projectiles_%_chance"]=3719,["base_avoid_shock_%"]=1097,["base_avoid_stun_%"]=1100,["base_bleed_duration_+%"]=3720,["base_bone_golem_granted_buff_effect_+%"]=3721,["base_cannot_be_stunned"]=1418,["base_cannot_evade"]=1156,["base_cannot_gain_bleeding"]=3368,["base_cannot_gain_endurance_charges"]=3722,["base_cannot_leech"]=1660,["base_cannot_leech_life"]=1755,["base_cannot_leech_mana"]=1756,["base_cast_speed_+%"]=755,["base_chance_to_dodge_%"]=1408,["base_chance_to_dodge_spells_%"]=1409,["base_chance_to_freeze_%"]=1276,["base_chance_to_ignite_%"]=1273,["base_chance_to_poison_on_hit_%"]=2340,["base_chance_to_shock_%"]=1280,["base_chaos_damage_%_of_maximum_life_taken_per_minute"]=1184,["base_chaos_damage_resistance_%"]=926,["base_chaos_damage_taken_per_minute"]=1185,["base_chaos_golem_granted_buff_effect_+%"]=3258,["base_cold_damage_%_to_convert_to_chaos"]=1207,["base_cold_damage_%_to_convert_to_fire"]=1206,["base_cold_damage_can_poison"]=2032,["base_cold_damage_heals"]=2204,["base_cold_damage_resistance_%"]=917,["base_cold_immunity"]=3260,["base_cooldown_speed_+%"]=3724,["base_critical_strike_chance_while_unarmed_%"]=2727,["base_critical_strike_multiplier_+"]=798,["base_curse_duration_+%"]=1044,["base_damage_removed_from_mana_before_life_%"]=1867,["base_damage_taken_+%"]=1477,["base_deal_no_chaos_damage"]=3725,["base_deal_no_physical_damage"]=1961,["base_elemental_damage_heals"]=2206,["base_elemental_status_ailment_duration_+%"]=1109,["base_enemy_critical_strike_chance_+%_against_self"]=2297,["base_energy_shield_gained_on_enemy_death"]=1759,["base_energy_shield_leech_from_chaos_damage_permyriad"]=3726,["base_energy_shield_leech_from_cold_damage_permyriad"]=3727,["base_energy_shield_leech_from_elemental_damage_permyriad"]=3728,["base_energy_shield_leech_from_fire_damage_permyriad"]=3729,["base_energy_shield_leech_from_lightning_damage_permyriad"]=3730,["base_energy_shield_leech_from_physical_damage_permyriad"]=3731,["base_energy_shield_leech_from_spell_damage_permyriad"]=987,["base_energy_shield_regeneration_rate_per_minute"]=1821,["base_energy_shield_regeneration_rate_per_minute_%"]=1822,["base_evasion_rating"]=842,["base_fire_damage_%_to_convert_to_chaos"]=1208,["base_fire_damage_%_to_convert_to_chaos_60%_value"]=1209,["base_fire_damage_can_poison"]=2033,["base_fire_damage_heals"]=2203,["base_fire_damage_resistance_%"]=911,["base_fire_elemental_maximum_life_+%"]=1034,["base_fire_golem_granted_buff_effect_+%"]=3255,["base_fire_hit_damage_taken_%_as_physical"]=1641,["base_fire_hit_damage_taken_%_as_physical_value_negated"]=1642,["base_fire_immunity"]=893,["base_frenzy_charge_duration_+%"]=1370,["base_global_chance_to_knockback_%"]=1242,["base_ice_golem_granted_buff_effect_+%"]=3256,["base_ignite_proliferation_radius"]=1468,["base_immune_to_ignite"]=3732,["base_immune_to_shock"]=3733,["base_inflict_cold_exposure_on_hit_%_chance"]=3734,["base_inflict_fire_exposure_on_hit_%_chance"]=3735,["base_inflict_lightning_exposure_on_hit_%_chance"]=3736,["base_item_found_quantity_+%"]=880,["base_item_found_rarity_+%"]=884,["base_killed_monster_dropped_item_quantity_+%"]=1263,["base_killed_monster_dropped_item_rarity_+%"]=1262,["base_leech_is_instant_on_critical"]=1726,["base_life_gain_per_target"]=1005,["base_life_gained_on_enemy_death"]=1013,["base_life_gained_on_spell_hit"]=1004,["base_life_leech_applies_recovery_to_energy_shield"]=3737,["base_life_leech_from_attack_damage_permyriad"]=946,["base_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"]=963,["base_life_leech_from_chaos_damage_permyriad"]=955,["base_life_leech_from_cold_damage_permyriad"]=952,["base_life_leech_from_elemental_damage_permyriad"]=957,["base_life_leech_from_fire_damage_permyriad"]=950,["base_life_leech_from_lightning_damage_permyriad"]=954,["base_life_leech_from_physical_damage_permyriad"]=948,["base_life_leech_from_spell_damage_permyriad"]=945,["base_life_leech_is_instant"]=1724,["base_life_leech_permyriad_vs_frozen_enemies"]=961,["base_life_leech_permyriad_vs_shocked_enemies"]=959,["base_life_regeneration_rate_per_minute"]=870,["base_lightning_damage_%_to_convert_to_chaos"]=1204,["base_lightning_damage_%_to_convert_to_chaos_60%_value"]=1205,["base_lightning_damage_%_to_convert_to_cold"]=1203,["base_lightning_damage_%_to_convert_to_fire"]=1202,["base_lightning_damage_can_poison"]=2034,["base_lightning_damage_heals"]=2205,["base_lightning_damage_resistance_%"]=922,["base_lightning_golem_granted_buff_effect_+%"]=3257,["base_lightning_immunity"]=3261,["base_main_hand_damage_+%"]=633,["base_mana_cost_-%"]=1129,["base_mana_gained_on_enemy_death"]=1026,["base_mana_leech_from_attack_damage_permyriad"]=974,["base_mana_leech_from_chaos_damage_permyriad"]=980,["base_mana_leech_from_cold_damage_permyriad"]=977,["base_mana_leech_from_elemental_damage_permyriad"]=981,["base_mana_leech_from_fire_damage_permyriad"]=976,["base_mana_leech_from_lightning_damage_permyriad"]=979,["base_mana_leech_from_physical_damage_permyriad"]=975,["base_mana_leech_from_spell_damage_permyriad"]=973,["base_mana_leech_permyriad_vs_shocked_enemies"]=983,["base_mana_regeneration_rate_per_minute"]=875,["base_mana_reservation_+%"]=1472,["base_maximum_chaos_damage_resistance_%"]=925,["base_maximum_cold_damage_resistance_%"]=915,["base_maximum_energy_shield"]=855,["base_maximum_energy_shield_per_blue_socket_on_item"]=1894,["base_maximum_fire_damage_resistance_%"]=909,["base_maximum_life"]=865,["base_maximum_life_per_red_socket_on_item"]=1886,["base_maximum_lightning_damage_on_charge_expiry"]=1745,["base_maximum_lightning_damage_resistance_%"]=920,["base_maximum_mana"]=872,["base_maximum_mana_per_green_socket_on_item"]=1890,["base_maximum_spell_block_%"]=1237,["base_minimum_endurance_charges"]=1063,["base_minimum_frenzy_charges"]=1065,["base_minimum_lightning_damage_on_charge_expiry"]=1745,["base_minimum_power_charges"]=1067,["base_minion_duration_+%"]=3738,["base_movement_velocity_+%"]=1058,["base_number_of_additional_arrows"]=1055,["base_number_of_champions_of_light_allowed"]=3739,["base_number_of_essence_spirits_allowed"]=389,["base_number_of_golems_allowed"]=2854,["base_number_of_herald_scorpions_allowed"]=3740,["base_number_of_raging_spirits_allowed"]=1406,["base_number_of_relics_allowed"]=3741,["base_number_of_remote_mines_allowed"]=1492,["base_number_of_sigils_allowed_per_target"]=3742,["base_number_of_skeletons_allowed"]=1405,["base_number_of_spectres_allowed"]=1404,["base_number_of_totems_allowed"]=1490,["base_number_of_traps_allowed"]=1491,["base_number_of_zombies_allowed"]=1403,["base_off_hand_attack_speed_+%"]=725,["base_penetrate_elemental_resistances_%"]=2721,["base_physical_damage_%_to_convert_to_chaos"]=1200,["base_physical_damage_%_to_convert_to_cold"]=1196,["base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred"]=3744,["base_physical_damage_%_to_convert_to_fire"]=1194,["base_physical_damage_%_to_convert_to_fire_while_affected_by_anger"]=3745,["base_physical_damage_%_to_convert_to_lightning"]=1198,["base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath"]=3746,["base_physical_damage_over_time_taken_+%"]=3743,["base_physical_damage_reduction_and_evasion_rating"]=3421,["base_physical_damage_reduction_rating"]=836,["base_poison_damage_+%"]=2348,["base_poison_duration_+%"]=2337,["base_projectile_speed_+%"]=1056,["base_raven_maximum_life_+%"]=1035,["base_reduce_enemy_cold_resistance_%"]=2155,["base_reduce_enemy_fire_resistance_%"]=2154,["base_reduce_enemy_lightning_resistance_%"]=2156,["base_remove_elemental_ailments_from_you_when_you_inflict_them"]=5547,["base_resist_all_elements_%"]=905,["base_self_chill_duration_-%"]=1120,["base_self_critical_strike_multiplier_-%"]=821,["base_self_freeze_duration_-%"]=1122,["base_self_ignite_duration_-%"]=1123,["base_self_shock_duration_-%"]=1121,["base_shield_evasion_rating"]=1245,["base_shield_maximum_energy_shield"]=1247,["base_shield_physical_damage_reduction_rating"]=1246,["base_shock_proliferation_radius"]=1469,["base_skill_area_of_effect_+%"]=1128,["base_spectre_maximum_life_+%"]=1032,["base_spell_block_%"]=535,["base_spell_block_luck"]=534,["base_spell_critical_strike_chance"]=765,["base_spell_critical_strike_multiplier_+"]=801,["base_steal_power_frenzy_endurance_charges_on_hit_%"]=2163,["base_stone_golem_granted_buff_effect_+%"]=3254,["base_stun_duration_+%"]=1111,["base_stun_recovery_+%"]=1141,["base_stun_threshold_reduction_+%"]=825,["base_total_number_of_sigils_allowed"]=3747,["base_unaffected_by_poison"]=3748,["base_zombie_maximum_life_+%"]=1033,["bear_trap_additional_damage_taken_+%_from_traps_and_mines"]=3749,["bear_trap_cooldown_speed_+%"]=3039,["bear_trap_damage_+%"]=2870,["bear_trap_damage_taken_+%_from_traps_and_mines"]=3750,["bear_trap_movement_speed_+%_final"]=3751,["berserk_buff_effect_+%"]=3752,["berserk_rage_loss_+%"]=3753,["berserker_damage_+%_final"]=3214,["berserker_gain_rage_on_attack_hit_cooldown_ms"]=3754,["berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies"]=3755,["berserker_warcry_grant_damage_+%_to_you_and_nearby_allies"]=3756,["blade_vortex_critical_strike_multiplier_+_per_blade"]=3757,["blade_vortex_damage_+%"]=2893,["blade_vortex_duration_+%"]=3086,["blade_vortex_radius_+%"]=3003,["bladefall_critical_strike_chance_+%"]=3105,["bladefall_damage_+%"]=2894,["bladefall_number_of_volleys"]=3758,["bladefall_radius_+%"]=3004,["bladestorm_damage_+%"]=3759,["bladestorm_maximum_number_of_storms_allowed"]=3760,["bladestorm_sandstorm_movement_speed_+%"]=3761,["blast_rain_%_chance_for_additional_blast"]=3266,["blast_rain_damage_+%"]=2890,["blast_rain_number_of_blasts"]=3152,["blast_rain_radius_+%"]=3000,["bleed_damage_+%_per_endurance_charge"]=3762,["bleed_damage_+%_vs_maimed_enemies_final"]=3401,["bleed_duration_per_12_intelligence_+%"]=2962,["bleed_on_bow_attack_chance_%"]=1681,["bleed_on_crit_%_with_attacks"]=1678,["bleed_on_hit_with_attacks_%"]=1682,["bleed_on_melee_attack_chance_%"]=1680,["bleed_on_melee_crit_chance_%"]=1679,["bleed_on_melee_critical_strike"]=3433,["bleeding_damage_+%"]=2336,["bleeding_damage_+%_vs_poisoned_enemies"]=3763,["bleeding_damage_on_self_converted_to_chaos"]=1646,["bleeding_dot_multiplier_+"]=606,["bleeding_enemies_explode_for_%_life_as_physical_damage"]=2645,["bleeding_monsters_movement_velocity_+%"]=2135,["bleeding_reflected_to_self"]=3764,["bleeding_stacks_up_to_x_times"]=3765,["blight_arc_tower_additional_chains"]=3766,["blight_arc_tower_additional_repeats"]=3767,["blight_arc_tower_damage_+%"]=3768,["blight_arc_tower_range_+%"]=3769,["blight_chilling_tower_chill_effect_+%"]=3770,["blight_chilling_tower_damage_+%"]=3771,["blight_chilling_tower_duration_+%"]=3772,["blight_chilling_tower_freeze_for_ms"]=3773,["blight_chilling_tower_range_+%"]=3774,["blight_damage_+%"]=2903,["blight_duration_+%"]=3088,["blight_empowering_tower_buff_effect_+%"]=3775,["blight_empowering_tower_grant_%_chance_to_deal_double_damage"]=3778,["blight_empowering_tower_grant_cast_speed_+%"]=3776,["blight_empowering_tower_grant_damage_+%"]=3777,["blight_empowering_tower_range_+%"]=3779,["blight_fireball_tower_additional_projectiles_+"]=3780,["blight_fireball_tower_cast_speed_+%"]=3781,["blight_fireball_tower_damage_+%"]=3782,["blight_fireball_tower_projectiles_nova"]=3783,["blight_fireball_tower_range_+%"]=3784,["blight_flamethrower_tower_cast_speed_+%"]=3785,["blight_flamethrower_tower_damage_+%"]=3786,["blight_flamethrower_tower_full_damage_fire_enemies"]=3787,["blight_flamethrower_tower_range_+%"]=3788,["blight_freezebolt_tower_damage_+%"]=3789,["blight_freezebolt_tower_full_damage_cold_enemies"]=3790,["blight_freezebolt_tower_projectiles_+"]=3791,["blight_freezebolt_tower_range_+%"]=3792,["blight_glacialcage_tower_cooldown_recovery_+%"]=3793,["blight_glacialcage_tower_duration_+%"]=3794,["blight_glacialcage_tower_enemy_damage_taken_+%"]=3795,["blight_glacialcage_tower_range_+%"]=3796,["blight_hinder_enemy_chaos_damage_taken_+%"]=3797,["blight_imbuing_tower_buff_effect_+%"]=3798,["blight_imbuing_tower_grant_critical_strike_+%"]=3799,["blight_imbuing_tower_grant_damage_+%"]=3800,["blight_imbuing_tower_range_+%"]=3801,["blight_lightningstorm_tower_area_of_effect_+%"]=3802,["blight_lightningstorm_tower_damage_+%"]=3803,["blight_lightningstorm_tower_delay_+%"]=3804,["blight_lightningstorm_tower_range_+%"]=3805,["blight_meteor_tower_additional_meteor_+"]=3806,["blight_meteor_tower_always_stun"]=3807,["blight_meteor_tower_damage_+%"]=3808,["blight_meteor_tower_range_+%"]=3809,["blight_radius_+%"]=3009,["blight_scout_tower_minion_damage_+%"]=3810,["blight_scout_tower_minion_life_+%"]=3811,["blight_scout_tower_minion_movement_speed_+%"]=3812,["blight_scout_tower_range_+%"]=3813,["blight_secondary_skill_effect_duration_+%"]=3814,["blight_seismic_tower_additional_cascades_+"]=3815,["blight_seismic_tower_cascade_range_+%"]=3816,["blight_seismic_tower_damage_+%"]=3817,["blight_seismic_tower_range_+%"]=3818,["blight_seismic_tower_stun_duration_+%"]=3819,["blight_sentinel_tower_minion_damage_+%"]=3820,["blight_sentinel_tower_minion_life_+%"]=3821,["blight_sentinel_tower_minion_movement_speed_+%"]=3822,["blight_sentinel_tower_range_+%"]=3823,["blight_shocking_tower_damage_+%"]=3824,["blight_shocking_tower_range_+%"]=3825,["blight_shocknova_tower_full_damage_lightning_enemies"]=3826,["blight_shocknova_tower_shock_additional_repeats"]=3827,["blight_shocknova_tower_shock_effect_+%"]=3828,["blight_shocknova_tower_shock_repeats_with_area_effect_+%"]=3829,["blight_skill_area_of_effect_+%_after_1_second_channelling"]=3830,["blight_smothering_tower_buff_effect_+%"]=3831,["blight_smothering_tower_grant_damage_+%"]=3832,["blight_smothering_tower_grant_movement_speed_+%"]=3833,["blight_smothering_tower_range_+%"]=3834,["blight_stonegaze_tower_cooldown_recovery_+%"]=3835,["blight_stonegaze_tower_duration_+%"]=3836,["blight_stonegaze_tower_petrify_tick_speed_+%"]=3837,["blight_stonegaze_tower_range_+%"]=3838,["blight_summoning_tower_minion_damage_+%"]=3839,["blight_summoning_tower_minion_life_+%"]=3840,["blight_summoning_tower_minion_movement_speed_+%"]=3841,["blight_summoning_tower_minions_summoned_+"]=3842,["blight_summoning_tower_range_+%"]=3843,["blight_temporal_tower_buff_effect_+%"]=3844,["blight_temporal_tower_grant_you_action_speed_-%"]=3845,["blight_temporal_tower_range_+%"]=3846,["blight_temporal_tower_tick_speed_+%"]=3847,["blight_tertiary_skill_effect_duration"]=3848,["blight_tower_arc_damage_+%"]=3849,["blight_tower_chilling_cost_+%"]=3850,["blight_tower_fireball_additional_projectile"]=3851,["blighted_map_chest_reward_lucky_count"]=3852,["blighted_map_tower_damage_+%_final"]=3853,["blind_chilled_enemies_on_hit_%"]=3854,["blind_duration_+%"]=2602,["blind_enemies_when_hit_%_chance"]=3855,["blind_enemies_when_hit_while_affected_by_grace_%_chance"]=3856,["blind_nearby_enemies_when_gaining_her_blessing_%"]=2448,["blind_nearby_enemies_when_ignited_%"]=2211,["blink_and_mirror_arrow_cooldown_speed_+%"]=3857,["blink_arrow_and_blink_arrow_clone_attack_speed_+%"]=3028,["blink_arrow_and_blink_arrow_clone_damage_+%"]=2883,["blink_arrow_cooldown_speed_+%"]=3044,["block_%_if_blocked_an_attack_recently"]=3859,["block_%_while_affected_by_determination"]=3860,["block_causes_monster_flee_%"]=2129,["block_chance_%_per_50_strength"]=528,["block_chance_%_vs_taunted_enemies"]=3341,["block_chance_%_while_holding_shield"]=3858,["block_chance_+%"]=539,["block_chance_on_damage_taken_%"]=2384,["block_recovery_+%"]=540,["block_spells_chance_%_while_holding_shield"]=3861,["block_while_dual_wielding_%"]=536,["block_while_dual_wielding_claws_%"]=537,["blood_footprints_from_item"]=5898,["blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill"]=3263,["blood_rage_grants_additional_attack_speed_+%"]=3262,["blood_sand_armour_mana_reservation_+%"]=3862,["blood_sand_stance_buff_effect_+%"]=3863,["blood_spears_area_of_effect_+%"]=3864,["blood_spears_base_number_of_spears"]=3865,["blood_spears_damage_+%"]=3866,["blood_spears_damage_+%_final_in_blood_stance"]=3867,["bone_golem_damage_+%"]=3868,["bone_golem_elemental_resistances_%"]=3869,["bone_lance_cast_speed_+%"]=3870,["bone_lance_damage_+%"]=3871,["bone_offering_block_chance_+%"]=3278,["bone_offering_duration_+%"]=3062,["bow_accuracy_rating"]=1255,["bow_accuracy_rating_+%"]=752,["bow_attack_speed_+%"]=734,["bow_critical_strike_chance_+%"]=775,["bow_critical_strike_multiplier_+"]=805,["bow_damage_+%"]=664,["bow_elemental_damage_+%"]=665,["bow_enemy_block_-%"]=1144,["bow_physical_damage_+%_while_holding_shield"]=1235,["bow_steal_power_frenzy_endurance_charges_on_hit_%"]=2121,["bow_stun_duration_+%"]=1113,["bow_stun_threshold_reduction_+%"]=827,["buff_affects_party"]=1048,["buff_auras_dont_affect_allies"]=2189,["buff_duration_+%"]=1042,["buff_effect_+%_on_low_energy_shield"]=3872,["buff_effect_on_self_+%"]=1386,["buff_party_effect_radius_+%"]=1049,["burn_damage_+%"]=1125,["burning_arrow_additional_ignite_stacks"]=3873,["burning_arrow_cannot_inflict_additional_burning_debuff_with_ignite"]=3874,["burning_arrow_damage_+%"]=2792,["burning_arrow_debuff_effect_+%"]=3875,["burning_arrow_ignite_chance_%"]=3117,["burning_arrow_physical_damage_%_to_add_as_fire_damage"]=3118,["burning_arrow_spread_burning_ground_when_igniting_enemy_on_hit_%"]=2534,["burning_arrow_spread_tar_ground_when_not_igniting_enemy_on_hit_%"]=2535,["burning_damage_+%_if_ignited_an_enemy_recently"]=3443,["burning_damage_+%_per_non_shocked_enemy_shocked_recently"]=3876,["burning_damage_taken_+%"]=1736,["burning_ground_effect_on_self_+%"]=1393,["can_catch_corrupted_fish"]=2026,["can_catch_exotic_fish"]=2025,["can_inflict_multiple_ignites"]=1782,["cannot_be_affected_by_flasks"]=2911,["cannot_be_blinded"]=2147,["cannot_be_blinded_while_affected_by_precision"]=3877,["cannot_be_chilled_or_frozen_while_ice_golem_summoned"]=3878,["cannot_be_chilled_or_frozen_while_moving"]=3879,["cannot_be_cursed_with_silence"]=2262,["cannot_be_damaged"]=878,["cannot_be_frozen_if_you_have_been_frozen_recently"]=3880,["cannot_be_frozen_with_dex_higher_than_int"]=3881,["cannot_be_ignited_while_flame_golem_summoned"]=3882,["cannot_be_ignited_with_strength_higher_than_dex"]=3883,["cannot_be_inflicted_by_corrupted_blood"]=3884,["cannot_be_killed_by_elemental_reflect"]=1835,["cannot_be_knocked_back"]=829,["cannot_be_poisoned"]=2542,["cannot_be_shocked_or_ignited_while_moving"]=3885,["cannot_be_shocked_while_at_maximum_endurance_charges"]=3330,["cannot_be_shocked_while_frozen"]=2064,["cannot_be_shocked_while_lightning_golem_summoned"]=3886,["cannot_be_shocked_with_int_higher_than_strength"]=3887,["cannot_be_stunned"]=1417,["cannot_be_stunned_by_attacks_if_other_ring_is_elder_item"]=3469,["cannot_be_stunned_by_blocked_hits"]=3888,["cannot_be_stunned_by_spells_if_other_ring_is_shaper_item"]=3468,["cannot_be_stunned_if_have_been_stunned_or_blocked_stunning_hit_in_past_2_seconds"]=3889,["cannot_be_stunned_if_have_not_been_hit_recently"]=3890,["cannot_be_stunned_if_you_have_10_or_more_crab_charges"]=3487,["cannot_be_stunned_if_you_have_been_stunned_recently"]=3891,["cannot_be_stunned_if_you_have_blocked_a_stun_recently"]=3892,["cannot_be_stunned_if_you_have_ghost_dance"]=3893,["cannot_be_stunned_when_on_low_life"]=1419,["cannot_be_stunned_while_at_max_endurance_charges"]=3211,["cannot_be_stunned_while_fortified"]=3894,["cannot_be_stunned_while_leeching"]=2377,["cannot_be_stunned_with_25_rage"]=5516,["cannot_block_attacks"]=1496,["cannot_block_spells"]=3895,["cannot_cast_curses"]=1843,["cannot_cast_spells"]=3896,["cannot_cause_bleeding"]=1682,["cannot_crit_non_shocked_enemies"]=3294,["cannot_freeze_shock_ignite_on_critical"]=1836,["cannot_gain_endurance_charges_while_have_onslaught"]=1921,["cannot_gain_power_charges"]=2185,["cannot_have_energy_shield_leeched_from"]=3897,["cannot_have_life_leeched_from"]=1637,["cannot_have_mana_leeched_from"]=1638,["cannot_increase_quantity_of_dropped_items"]=1738,["cannot_increase_rarity_of_dropped_items"]=1737,["cannot_inflict_status_ailments"]=1110,["cannot_knockback"]=2180,["cannot_leech_energy_shield"]=3723,["cannot_leech_life_from_critical_strikes"]=3431,["cannot_leech_or_regenerate_mana"]=1757,["cannot_leech_when_on_low_life"]=1758,["cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently"]=3488,["cannot_recharge_energy_shield"]=3898,["cannot_regenerate_energy_shield"]=3899,["cannot_resist_cold_damage"]=1435,["cannot_take_reflected_elemental_damage"]=3900,["cannot_take_reflected_physical_damage"]=3901,["cannot_taunt_enemies"]=3902,["cast_linked_spells_on_shocked_enemy_kill_%"]=390,["cast_socketed_minion_skills_on_bow_kill_%"]=391,["cast_socketed_spells_on_X_mana_spent"]=392,["cast_socketed_spells_on_mana_spent_%_chance"]=392,["cast_speed_+%_during_flask_effect"]=3904,["cast_speed_+%_for_4_seconds_on_attack"]=2698,["cast_speed_+%_if_enemy_killed_recently"]=3905,["cast_speed_+%_if_have_crit_recently"]=3906,["cast_speed_+%_if_player_minion_has_been_killed_recently"]=3907,["cast_speed_+%_per_corpse_consumed_recently"]=3908,["cast_speed_+%_per_frenzy_charge"]=1251,["cast_speed_+%_per_power_charge"]=760,["cast_speed_+%_when_on_full_life"]=1250,["cast_speed_+%_when_on_low_life"]=1249,["cast_speed_+%_while_affected_by_zealotry"]=3909,["cast_speed_+%_while_holding_bow"]=759,["cast_speed_+%_while_holding_shield"]=757,["cast_speed_+%_while_holding_staff"]=758,["cast_speed_+%_while_ignited"]=2113,["cast_speed_for_chaos_skills_+%"]=701,["cast_speed_for_cold_skills_+%"]=689,["cast_speed_for_elemental_skills_+%"]=3903,["cast_speed_for_fire_skills_+%"]=680,["cast_speed_for_lightning_skills_+%"]=695,["cast_speed_while_dual_wielding_+%"]=756,["cat_aspect_reserves_no_mana"]=3910,["cats_stealth_duration_ms_+"]=3911,["cause_maim_on_critical_strike_attack"]=3232,["caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground"]=3912,["caustic_arrow_damage_+%"]=2852,["caustic_arrow_damage_over_time_+%"]=3913,["caustic_arrow_duration_+%"]=3096,["caustic_arrow_hit_damage_+%"]=3914,["caustic_arrow_radius_+%"]=2994,["caustic_arrow_withered_base_duration_ms"]=2853,["caustic_arrow_withered_on_hit_%"]=2853,["caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=2605,["celestial_footprints_from_item"]=5899,["chain_strike_cone_radius_+_per_12_rage"]=3915,["chain_strike_cone_radius_+_per_x_rage"]=3916,["chain_strike_damage_+%"]=3917,["chain_strike_gain_rage_on_hit_%_chance"]=3918,["chance_for_elemental_damage_to_be_added_as_additional_chaos_damage_%"]=2713,["chance_per_second_of_fire_spreading_between_enemies_%"]=1124,["chance_to_avoid_stun_%_aura_while_wielding_a_staff"]=2491,["chance_to_be_ignited_%"]=2118,["chance_to_be_poisoned_%"]=2543,["chance_to_be_shocked_%"]=2119,["chance_to_block_spells_%_if_damaged_by_a_hit_recently"]=3919,["chance_to_block_spells_%_while_affected_by_discipline"]=3920,["chance_to_counter_strike_when_hit_%"]=2000,["chance_to_curse_self_with_punishment_on_kill_%"]=2288,["chance_to_deal_double_damage_%"]=3922,["chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds"]=3923,["chance_to_deal_double_damage_%_per_4_rage"]=3924,["chance_to_deal_double_damage_%_per_500_strength"]=3925,["chance_to_deal_double_damage_%_while_focused"]=3926,["chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds"]=3921,["chance_to_dodge_%_at_max_charged_attack_stacks"]=3927,["chance_to_dodge_%_per_frenzy_charge"]=1734,["chance_to_dodge_attacks_%_per_endurance_charge"]=3929,["chance_to_dodge_attacks_%_per_power_charge"]=3930,["chance_to_dodge_attacks_%_while_affected_by_grace"]=3931,["chance_to_dodge_attacks_%_while_off_hand_is_empty"]=3932,["chance_to_dodge_attacks_%_while_phasing"]=1697,["chance_to_dodge_attacks_and_spells_%_while_you_have_energy_shield"]=3928,["chance_to_dodge_spells_%_while_affected_by_haste"]=3933,["chance_to_dodge_spells_%_while_es_full"]=2250,["chance_to_dodge_spells_%_while_phased"]=2633,["chance_to_double_armour_effect_on_hit_%"]=3934,["chance_to_double_stun_duration_%"]=2722,["chance_to_evade_%_while_you_have_energy_shield"]=3937,["chance_to_evade_attacks_%"]=3935,["chance_to_evade_attacks_%_while_affected_by_grace"]=3936,["chance_to_fortify_on_melee_hit_+%"]=1502,["chance_to_fortify_on_melee_stun_%"]=3938,["chance_to_freeze_%_while_using_flask"]=2093,["chance_to_freeze_shock_ignite_%"]=1970,["chance_to_freeze_shock_ignite_%_during_flask_effect"]=3379,["chance_to_gain_endurance_charge_on_block_%"]=1367,["chance_to_gain_endurance_charge_on_bow_crit_%"]=1074,["chance_to_gain_endurance_charge_on_crit_%"]=1071,["chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy"]=3939,["chance_to_gain_endurance_charge_on_melee_crit_%"]=1072,["chance_to_gain_endurance_charge_when_hit_%"]=1918,["chance_to_gain_endurance_charge_when_you_stun_enemy_%"]=3940,["chance_to_gain_endurance_charge_when_you_taunt_enemy_%"]=3941,["chance_to_gain_frenzy_charge_on_block_%"]=3943,["chance_to_gain_frenzy_charge_on_block_attack_%"]=3942,["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=1075,["chance_to_gain_frenzy_charge_on_stun_%"]=3944,["chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%"]=3494,["chance_to_gain_onslaught_on_flask_use_%"]=3945,["chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy"]=3946,["chance_to_gain_onslaught_on_kill_%"]=2164,["chance_to_gain_onslaught_on_kill_for_10_seconds_%"]=3947,["chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=2553,["chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%"]=3948,["chance_to_gain_power_charge_on_killing_frozen_enemy_%"]=1076,["chance_to_gain_power_charge_on_melee_stun_%"]=1941,["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=3949,["chance_to_gain_power_charge_on_stun_%"]=1942,["chance_to_gain_power_charge_when_block_%"]=1371,["chance_to_gain_random_curse_when_hit_%_per_10_levels"]=1931,["chance_to_gain_random_standard_charge_on_hit_%"]=3950,["chance_to_gain_unholy_might_on_block_%"]=2217,["chance_to_gain_unholy_might_on_block_ms"]=2217,["chance_to_gain_unholy_might_on_kill_for_10_seconds_%"]=3951,["chance_to_gain_unholy_might_on_kill_for_3_seconds_%"]=2550,["chance_to_gain_unholy_might_on_kill_for_4_seconds_%"]=2551,["chance_to_gain_unholy_might_on_melee_kill_%"]=2251,["chance_to_gain_vaal_soul_on_enemy_shatter_%"]=2276,["chance_to_gain_vaal_soul_on_kill_%"]=2272,["chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%"]=2558,["chance_to_grant_nearby_enemies_onslaught_on_kill_%"]=2555,["chance_to_grant_nearby_enemies_unholy_might_on_kill_%"]=2556,["chance_to_grant_power_charge_to_nearby_allies_on_kill_%"]=2557,["chance_to_hit_while_blinded_+%_final"]=3952,["chance_to_ignite_%_while_ignited"]=2114,["chance_to_ignite_%_while_using_flask"]=2092,["chance_to_ignore_hexproof_%"]=3953,["chance_to_inflict_frostburn_%"]=1277,["chance_to_inflict_sapped_%"]=1281,["chance_to_intimidate_on_hit_%"]=3954,["chance_to_place_an_additional_mine_%"]=2711,["chance_to_poison_%_vs_cursed_enemies"]=3362,["chance_to_poison_on_critical_strike_with_bow_%"]=762,["chance_to_poison_on_critical_strike_with_dagger_%"]=763,["chance_to_poison_on_hit_%_per_power_charge"]=3955,["chance_to_poison_on_hit_with_attacks_%"]=2342,["chance_to_poison_on_melee_hit_%"]=3414,["chance_to_scorch_%"]=1274,["chance_to_shock_%_while_using_flask"]=2094,["chance_to_shock_chilled_enemies_%"]=3956,["chance_to_taunt_on_hit_%"]=2597,["chance_to_trigger_socketed_bow_skill_on_bow_attack_%"]=393,["chance_to_trigger_socketed_spell_on_bow_attack_%"]=287,["chance_to_unnerve_on_hit_%"]=3957,["channelled_skill_damage_+%"]=3958,["channelled_skill_damage_+%_per_10_devotion"]=3959,["chaos_critical_strike_chance_+%"]=795,["chaos_critical_strike_multiplier_+"]=820,["chaos_damage_%_taken_from_mana_before_life"]=3962,["chaos_damage_+%"]=696,["chaos_damage_+%_per_equipped_corrupted_item"]=2267,["chaos_damage_+%_per_level"]=2150,["chaos_damage_+%_while_affected_by_herald_of_agony"]=3963,["chaos_damage_can_chill"]=2035,["chaos_damage_can_freeze"]=2036,["chaos_damage_can_ignite_chill_and_shock"]=2054,["chaos_damage_can_shock"]=2037,["chaos_damage_cannot_poison"]=2055,["chaos_damage_chance_to_poison_%"]=2201,["chaos_damage_does_not_bypass_energy_shield"]=1701,["chaos_damage_does_not_bypass_energy_shield_while_not_low_life_or_mana"]=3960,["chaos_damage_over_time_multiplier_+_while_affected_by_malevolence"]=614,["chaos_damage_poisons"]=2200,["chaos_damage_resistance_%_per_endurance_charge"]=3964,["chaos_damage_resistance_%_per_poison_stack"]=3966,["chaos_damage_resistance_%_when_on_low_life"]=1743,["chaos_damage_resistance_%_while_affected_by_herald_of_agony"]=3967,["chaos_damage_resistance_%_while_affected_by_purity_of_elements"]=3968,["chaos_damage_resistance_is_doubled"]=3965,["chaos_damage_taken_+"]=2009,["chaos_damage_taken_+%"]=1482,["chaos_damage_taken_over_time_+%"]=1186,["chaos_damage_taken_over_time_+%_while_in_caustic_cloud"]=3969,["chaos_damage_taken_when_hit_by_attack"]=1460,["chaos_damage_to_return_to_melee_attacker"]=1450,["chaos_damage_to_return_when_hit"]=1455,["chaos_damage_with_attack_skills_+%"]=3970,["chaos_damage_with_spell_skills_+%"]=3971,["chaos_dot_multiplier_+"]=615,["chaos_golem_damage_+%"]=2861,["chaos_golem_elemental_resistances_%"]=3149,["chaos_immunity"]=1412,["chaos_inoculation_keystone_energy_shield_+%_final"]=1437,["chaos_non_ailment_damage_over_time_multiplier_+"]=616,["chaos_resistance_%_for_you_and_allies_affected_by_your_auras"]=3226,["chaos_resistance_+_while_using_flask"]=2469,["chaos_skill_effect_duration_+%"]=1137,["chaos_skill_gem_level_+"]=3972,["chaos_skills_area_of_effect_+%"]=3973,["chaos_spell_skill_gem_level_+"]=900,["chaos_weakness_mana_reservation_+%"]=3205,["charge_duration_+%"]=2195,["charged_attack_damage_+%"]=3298,["charged_attack_damage_per_stack_+%_final"]=3307,["charged_attack_radius_+%"]=3305,["charged_dash_area_of_effect_radius_+_of_final_explosion"]=3012,["charged_dash_chance_to_dodge_%_if_finished_channelling_recently"]=3974,["charged_dash_damage_+%"]=2896,["charged_dash_movement_speed_+%_final"]=3975,["charges_gained_+%"]=1427,["chest_drop_additional_corrupted_item_divination_cards"]=3976,["chest_drop_additional_currency_item_divination_cards"]=3977,["chest_drop_additional_divination_cards_from_current_world_area"]=3978,["chest_drop_additional_divination_cards_from_same_set"]=3979,["chest_drop_additional_unique_item_divination_cards"]=3980,["chest_item_quality_+%"]=23,["chest_item_quantity_+%"]=882,["chest_item_rarity_+%"]=887,["chest_level_+"]=24,["chest_number_of_additional_pirate_uniques_to_drop"]=3981,["chest_only_currency_items"]=29,["chest_only_gems"]=30,["chest_only_magic_rarity"]=26,["chest_only_normal_rarity"]=25,["chest_only_rare_rarity"]=27,["chest_only_unique_rarity"]=28,["chest_trap_defuse_%"]=1149,["chieftain_burning_damage_+%_final"]=1275,["chill_and_freeze_duration_+%"]=3982,["chill_and_freeze_duration_based_on_%_energy_shield"]=1779,["chill_attackers_for_4_seconds_on_block_%_chance"]=3983,["chill_duration_+%"]=1104,["chill_effect_+%"]=3985,["chill_effect_is_reversed"]=3984,["chill_effectiveness_on_self_+%"]=930,["chill_enemy_when_hit_duration_ms"]=2307,["chill_minimum_slow_%"]=3986,["chill_nearby_enemies_when_you_focus"]=3987,["chill_on_you_proliferates_to_nearby_enemies_within_x_radius"]=2788,["chill_prevention_ms_when_chilled"]=2060,["chilled_ground_effect_+%"]=3988,["chilled_ground_effect_on_self_+%"]=1392,["chilled_ground_on_freeze_%_chance_for_3_seconds"]=2575,["chilled_ground_when_hit_with_attack_%"]=3989,["chilled_monsters_take_+%_burning_damage"]=1937,["chilled_while_bleeding"]=3990,["chilled_while_poisoned"]=3991,["clarity_mana_reservation_+%"]=3193,["clarity_reserves_no_mana"]=3992,["claw_accuracy_rating"]=1258,["claw_accuracy_rating_+%"]=749,["claw_attack_speed_+%"]=731,["claw_critical_strike_chance_+%"]=776,["claw_critical_strike_multiplier_+"]=808,["claw_damage_+%"]=649,["claw_steal_power_frenzy_endurance_charges_on_hit_%"]=2120,["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=3994,["cleave_attack_speed_+%"]=3013,["cleave_damage_+%"]=2793,["cleave_fortify_on_hit"]=3993,["cleave_radius_+%"]=2968,["cluster_burst_spawn_amount"]=3269,["cobra_lash_damage_+%"]=3995,["cobra_lash_number_of_additional_chains"]=3996,["cobra_lash_projectile_speed_+%"]=3997,["cold_and_chaos_damage_resistance_%"]=3998,["cold_and_lightning_damage_resistance_%"]=1969,["cold_attack_damage_+%"]=565,["cold_attack_damage_+%_while_holding_a_shield"]=568,["cold_axe_damage_+%"]=644,["cold_bow_damage_+%"]=663,["cold_claw_damage_+%"]=652,["cold_critical_strike_chance_+%"]=793,["cold_critical_strike_multiplier_+"]=818,["cold_dagger_damage_+%"]=656,["cold_damage_%_to_add_as_chaos"]=1179,["cold_damage_%_to_add_as_chaos_per_frenzy_charge"]=4000,["cold_damage_%_to_add_as_fire"]=1178,["cold_damage_+%"]=681,["cold_damage_+%_if_you_have_used_a_fire_skill_recently"]=4001,["cold_damage_+%_per_1%_block_chance"]=2740,["cold_damage_+%_per_cold_resistance_above_75"]=3999,["cold_damage_+%_per_frenzy_charge"]=4002,["cold_damage_+%_while_affected_by_hatred"]=4003,["cold_damage_+%_while_affected_by_herald_of_ice"]=4004,["cold_damage_+%_while_off_hand_is_empty"]=4005,["cold_damage_can_ignite"]=2038,["cold_damage_can_shock"]=2039,["cold_damage_cannot_chill"]=2053,["cold_damage_cannot_freeze"]=2052,["cold_damage_over_time_+%"]=575,["cold_damage_over_time_multiplier_+_while_affected_by_malevolence"]=611,["cold_damage_resistance_%_while_affected_by_herald_of_ice"]=4006,["cold_damage_resistance_+%"]=919,["cold_damage_resistance_is_%"]=916,["cold_damage_taken_%_as_fire"]=2345,["cold_damage_taken_%_as_lightning"]=2346,["cold_damage_taken_+"]=4007,["cold_damage_taken_+%"]=2561,["cold_damage_taken_+%_if_have_been_hit_recently"]=4008,["cold_damage_taken_per_minute_per_frenzy_charge_while_moving"]=5822,["cold_damage_taken_when_hit_by_attack"]=1458,["cold_damage_to_return_to_melee_attacker"]=1447,["cold_damage_to_return_when_hit"]=1453,["cold_damage_while_dual_wielding_+%"]=632,["cold_damage_with_attack_skills_+%"]=4009,["cold_damage_with_spell_skills_+%"]=4010,["cold_dot_multiplier_+"]=612,["cold_mace_damage_+%"]=660,["cold_penetration_%_vs_chilled_enemies"]=4011,["cold_projectile_mine_critical_multiplier_+"]=4012,["cold_projectile_mine_damage_+%"]=4013,["cold_projectile_mine_throwing_speed_+%"]=4015,["cold_projectile_mine_throwing_speed_negated_+%"]=4014,["cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice"]=4016,["cold_skill_gem_level_+"]=4017,["cold_skills_chance_to_poison_on_hit_%"]=4018,["cold_snap_cooldown_speed_+%"]=3037,["cold_snap_damage_+%"]=2867,["cold_snap_gain_power_charge_on_kill_%"]=2429,["cold_snap_radius_+%"]=2995,["cold_snap_uses_and_gains_power_charges_instead_of_frenzy"]=4019,["cold_spell_physical_damage_%_to_convert_to_cold"]=4020,["cold_spell_skill_gem_level_+"]=898,["cold_staff_damage_+%"]=648,["cold_sword_damage_+%"]=669,["cold_wand_damage_+%"]=672,["conductivity_curse_effect_+%"]=3170,["conductivity_duration_+%"]=3078,["conductivity_mana_reservation_+%"]=3206,["consecrate_ground_for_3_seconds_when_hit_%"]=2716,["consecrate_ground_on_kill_%_for_3_seconds"]=2576,["consecrate_ground_on_shatter_%_chance_for_3_seconds"]=3285,["consecrate_on_block_%_chance_to_create"]=1761,["consecrate_on_crit_%_chance_to_create"]=1815,["consecrated_ground_additional_physical_damage_reduction_%"]=4021,["consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry"]=4026,["consecrated_ground_enemy_damage_taken_+%"]=4022,["consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry"]=4023,["consecrated_ground_immune_to_curses"]=4024,["consecrated_ground_immune_to_status_ailments"]=4025,["consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds"]=4027,["consecrated_ground_while_stationary_radius"]=4028,["consecrated_path_area_of_effect_+%"]=4029,["consecrated_path_damage_+%"]=4030,["contagion_damage_+%"]=2892,["contagion_duration_+%"]=3083,["contagion_radius_+%"]=3001,["conversion_trap_cooldown_speed_+%"]=3050,["convert_all_physical_damage_to_fire"]=1421,["converted_enemies_damage_+%"]=2887,["convocation_buff_effect_+%"]=3183,["convocation_cooldown_speed_+%"]=3038,["corpse_erruption_base_maximum_number_of_geyers"]=4031,["corpse_eruption_cast_speed_+%"]=4032,["corpse_eruption_damage_+%"]=4033,["corpse_warp_cast_speed_+%"]=4034,["corpse_warp_damage_+%"]=4035,["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=4036,["corrosive_shroud_poison_dot_multiplier_+_while_aura_active"]=4037,["corrupted_gem_experience_gain_+%"]=2278,["counter_attacks_maximum_added_cold_damage"]=3359,["counter_attacks_maximum_added_physical_damage"]=3352,["counter_attacks_minimum_added_cold_damage"]=3359,["counter_attacks_minimum_added_physical_damage"]=3352,["counterattacks_deal_double_damage"]=4038,["crab_aspect_crab_barrier_max_+"]=3489,["create_blighted_spore_on_killing_rare_enemy"]=4039,["create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"]=4040,["create_consecrated_ground_on_kill_%"]=4041,["critical_ailment_dot_multiplier_+"]=604,["critical_bleeding_dot_multiplier_+"]=607,["critical_ignite_dot_multiplier_+"]=609,["critical_poison_dot_multiplier_+"]=617,["critical_strike_chance_+%"]=770,["critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry"]=4045,["critical_strike_chance_+%_during_any_flask_effect"]=4046,["critical_strike_chance_+%_for_4_seconds_on_kill"]=2618,["critical_strike_chance_+%_for_forking_arrows"]=3446,["critical_strike_chance_+%_for_spells_if_you_have_killed_recently"]=4047,["critical_strike_chance_+%_if_enemy_killed_recently"]=4048,["critical_strike_chance_+%_if_have_not_crit_recently"]=4049,["critical_strike_chance_+%_per_8_strength"]=2109,["critical_strike_chance_+%_per_blitz_charge"]=4050,["critical_strike_chance_+%_per_endurance_charge"]=4051,["critical_strike_chance_+%_per_frenzy_charge"]=4052,["critical_strike_chance_+%_per_level"]=2131,["critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%"]=4053,["critical_strike_chance_+%_per_power_charge"]=2333,["critical_strike_chance_+%_per_righteous_charge"]=4054,["critical_strike_chance_+%_vs_bleeding_enemies"]=2357,["critical_strike_chance_+%_vs_blinded_enemies"]=2574,["critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments"]=3216,["critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments"]=2694,["critical_strike_chance_+%_vs_poisoned_enemies"]=2460,["critical_strike_chance_+%_vs_shocked_enemies"]=4042,["critical_strike_chance_+%_when_in_main_hand"]=3336,["critical_strike_chance_+%_while_affected_by_wrath"]=4055,["critical_strike_chance_+%_while_you_have_avatar_of_fire"]=5891,["critical_strike_chance_+%_with_at_least_200_int"]=3503,["critical_strike_chance_against_enemies_on_full_life_+%"]=2930,["critical_strike_chance_increased_by_lightning_resistance"]=4043,["critical_strike_chance_increased_by_uncapped_lightning_resistance"]=4044,["critical_strike_chance_while_dual_wielding_+%"]=790,["critical_strike_chance_while_wielding_shield_+%"]=783,["critical_strike_damage_cannot_be_reflected"]=4059,["critical_strike_multiplier_+_during_any_flask_effect"]=4063,["critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently"]=4064,["critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"]=4065,["critical_strike_multiplier_+_if_enemy_killed_recently"]=4066,["critical_strike_multiplier_+_if_enemy_shattered_recently"]=4067,["critical_strike_multiplier_+_if_have_dealt_non_crit_recently"]=4060,["critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently"]=4068,["critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby"]=4069,["critical_strike_multiplier_+_if_you_have_blocked_recently"]=4070,["critical_strike_multiplier_+_per_1%_block_chance"]=2356,["critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40"]=4071,["critical_strike_multiplier_+_per_power_charge"]=2451,["critical_strike_multiplier_+_vs_bleeding_enemies"]=2354,["critical_strike_multiplier_+_vs_burning_enemies"]=2355,["critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment"]=2719,["critical_strike_multiplier_+_while_affected_by_anger"]=4072,["critical_strike_multiplier_+_while_affected_by_precision"]=4073,["critical_strike_multiplier_for_arrows_that_pierce_+"]=4061,["critical_strike_multiplier_is_100"]=823,["critical_strike_multiplier_is_300"]=4062,["critical_strike_multiplier_vs_enemies_on_full_life_+"]=2600,["critical_strike_multiplier_while_dual_wielding_+"]=812,["critical_strike_multiplier_with_dagger_+"]=802,["critical_strikes_deal_no_damage"]=4077,["critical_strikes_do_not_always_apply_non_damaging_ailments"]=4078,["critical_strikes_do_not_always_freeze"]=1278,["critical_strikes_ignore_elemental_resistances"]=2616,["critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry"]=4079,["crits_have_culling_strike"]=2604,["culling_strike_on_burning_enemies"]=2006,["culling_strike_on_enemies_affected_by_poachers_mark"]=4080,["current_endurance_charges"]=6,["current_frenzy_charges"]=7,["current_power_charges"]=8,["curse_apply_as_aura"]=2615,["curse_area_of_effect_+%"]=1471,["curse_cast_speed_+%"]=1466,["curse_effect_+%"]=1789,["curse_effect_+%_if_200_mana_spent_recently"]=4081,["curse_effect_on_self_+%"]=1415,["curse_on_block_level_5_vulnerability"]=2157,["curse_on_hit_%_enfeeble"]=1704,["curse_on_hit_%_flammability"]=1917,["curse_on_hit_%_temporal_chains"]=1705,["curse_on_hit_%_vulnerability"]=4083,["curse_on_hit_level_10_vulnerability_%"]=1708,["curse_on_hit_level_assassins_mark"]=1710,["curse_on_hit_level_cold_weakness"]=1711,["curse_on_hit_level_conductivity"]=1712,["curse_on_hit_level_despair"]=1713,["curse_on_hit_level_elemental_weakness"]=1709,["curse_on_hit_level_enfeeble"]=1714,["curse_on_hit_level_flammability"]=1715,["curse_on_hit_level_frostbite"]=1716,["curse_on_hit_level_poachers_mark"]=1717,["curse_on_hit_level_poachers_mark_bypass_hexproof"]=4082,["curse_on_hit_level_projectile_weakness"]=1718,["curse_on_hit_level_temporal_chains"]=1706,["curse_on_hit_level_vulnerability"]=1707,["curse_on_hit_level_warlords_mark"]=1719,["curse_on_melee_block_level_15_punishment"]=2158,["curse_on_projectile_block_level_15_temporal_chains"]=2159,["curse_on_spell_block_level_15_elemental_weakness"]=2160,["curse_skill_effect_duration_+%"]=4084,["curse_with_enfeeble_on_hit_%_against_uncursed_enemies"]=4085,["curses_have_no_effect_on_you_for_4_seconds_every_10_seconds"]=4086,["curses_never_expire"]=1407,["curses_you_inflict_remain_after_death"]=4087,["cyclone_attack_speed_+%"]=3023,["cyclone_damage_+%"]=2840,["dagger_accuracy_rating"]=1256,["dagger_accuracy_rating_+%"]=750,["dagger_attack_speed_+%"]=732,["dagger_critical_strike_chance_+%"]=777,["dagger_damage_+%"]=653,["damage_+%"]=556,["damage_+%_during_flask_effect"]=3240,["damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=4088,["damage_+%_final_per_endurance_charge_lost_recently_up_to_15%"]=4097,["damage_+%_final_with_at_least_1_nearby_ally"]=4098,["damage_+%_for_4_seconds_on_crit"]=2617,["damage_+%_for_4_seconds_on_detonation"]=2641,["damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy"]=3243,["damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy"]=3220,["damage_+%_for_each_level_the_enemy_is_higher_than_you"]=3346,["damage_+%_for_each_trap_and_mine_active"]=3234,["damage_+%_for_enemies_you_inflict_spiders_web_upon"]=4099,["damage_+%_for_you_and_allies_affected_by_your_auras"]=3227,["damage_+%_if_enemy_killed_recently"]=4100,["damage_+%_if_enemy_killed_recently_final"]=3371,["damage_+%_if_golem_summoned_in_past_8_seconds"]=2862,["damage_+%_if_have_crit_in_past_8_seconds"]=4101,["damage_+%_if_only_one_enemy_nearby"]=4102,["damage_+%_if_you_have_consumed_a_corpse_recently"]=3406,["damage_+%_if_you_have_frozen_enemy_recently"]=4103,["damage_+%_if_you_have_shocked_recently"]=4104,["damage_+%_of_each_type_that_you_have_an_active_golem_of"]=3249,["damage_+%_on_consecrated_ground"]=2715,["damage_+%_on_full_energy_shield"]=4118,["damage_+%_per_1%_block_chance"]=4109,["damage_+%_per_1%_increased_item_found_quantity"]=4110,["damage_+%_per_10_dex"]=4105,["damage_+%_per_10_levels"]=2008,["damage_+%_per_15_dex"]=4106,["damage_+%_per_15_int"]=4107,["damage_+%_per_15_strength"]=4108,["damage_+%_per_5_of_your_lowest_attribute"]=4111,["damage_+%_per_abyss_jewel_type"]=3317,["damage_+%_per_active_curse_on_self"]=577,["damage_+%_per_active_golem"]=4112,["damage_+%_per_active_trap"]=2630,["damage_+%_per_crab_charge"]=3490,["damage_+%_per_endurance_charge"]=2365,["damage_+%_per_equipped_magic_item"]=2247,["damage_+%_per_frenzy_charge"]=2455,["damage_+%_per_frenzy_power_or_endurance_charge"]=4113,["damage_+%_per_power_charge"]=4114,["damage_+%_per_raised_zombie"]=4089,["damage_+%_per_shock"]=1946,["damage_+%_to_rare_and_unique_enemies"]=2373,["damage_+%_to_you_and_nearby_allies_while_you_have_fortify"]=3244,["damage_+%_vs_abyssal_monsters"]=4115,["damage_+%_vs_bleeding_enemies"]=2644,["damage_+%_vs_blinded_enemies"]=1980,["damage_+%_vs_burning_enemies"]=2612,["damage_+%_vs_chilled_enemies"]=4116,["damage_+%_vs_demons"]=1936,["damage_+%_vs_enemies_affected_by_status_ailments"]=2626,["damage_+%_vs_enemies_on_low_life_per_frenzy_charge"]=1979,["damage_+%_vs_enemies_per_freeze_shock_ignite"]=600,["damage_+%_vs_frozen_enemies"]=596,["damage_+%_vs_frozen_shocked_ignited_enemies"]=601,["damage_+%_vs_hindered_enemies"]=3265,["damage_+%_vs_ignited_enemies"]=2122,["damage_+%_vs_rare_monsters"]=1976,["damage_+%_vs_taunted_enemies"]=4117,["damage_+%_when_currently_has_no_energy_shield"]=1903,["damage_+%_when_not_on_low_life"]=2369,["damage_+%_when_on_burning_ground"]=1390,["damage_+%_when_on_full_life"]=4119,["damage_+%_when_on_low_life"]=576,["damage_+%_while_dead"]=2264,["damage_+%_while_es_leeching"]=581,["damage_+%_while_es_not_full"]=3236,["damage_+%_while_fortified"]=2363,["damage_+%_while_ignited"]=1971,["damage_+%_while_leeching"]=2233,["damage_+%_while_life_leeching"]=578,["damage_+%_while_mana_leeching"]=580,["damage_+%_while_totem_active"]=2370,["damage_+%_while_unarmed"]=2731,["damage_+%_while_you_have_a_summoned_golem"]=4120,["damage_+%_with_movement_skills"]=740,["damage_+%_with_non_vaal_skills_during_soul_gain_prevention"]=4121,["damage_+%_with_one_handed_weapons"]=2511,["damage_+%_with_shield_skills"]=4122,["damage_+%_with_shield_skills_per_2%_attack_block"]=4123,["damage_+%_with_two_handed_weapons"]=2512,["damage_+1%_per_X_strength_when_in_main_hand"]=1947,["damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse"]=2619,["damage_over_time_+%"]=572,["damage_over_time_+%_per_frenzy_charge"]=1375,["damage_over_time_+%_per_power_charge"]=1376,["damage_over_time_+%_while_dual_wielding"]=1377,["damage_over_time_+%_while_holding_a_shield"]=1378,["damage_over_time_+%_while_wielding_two_handed_weapon"]=1379,["damage_over_time_+%_with_attack_skills"]=4090,["damage_over_time_+%_with_bow_skills"]=4091,["damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice"]=4092,["damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"]=4093,["damage_penetrates_%_elemental_resistance_vs_chilled_enemies"]=4094,["damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash"]=4095,["damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder"]=4096,["damage_reduction_rating_%_with_active_totem"]=2514,["damage_reduction_rating_from_body_armour_doubled"]=2513,["damage_reflected_to_enemies_%_gained_as_life"]=1881,["damage_removed_from_mana_before_life_%_while_affected_by_clarity"]=4124,["damage_removed_from_mana_before_life_%_while_focused"]=4125,["damage_removed_from_spectres_before_life_or_es_%"]=4126,["damage_taken_+%_final_per_totem"]=4136,["damage_taken_+%_for_4_seconds_after_spending_200_mana"]=4127,["damage_taken_+%_for_4_seconds_on_kill"]=2501,["damage_taken_+%_for_4_seconds_on_killing_taunted_enemy"]=2599,["damage_taken_+%_from_bleeding_enemies"]=2492,["damage_taken_+%_from_blinded_enemies"]=2453,["damage_taken_+%_from_ghosts"]=1487,["damage_taken_+%_from_hits"]=1479,["damage_taken_+%_from_skeletons"]=1486,["damage_taken_+%_from_taunted_enemies"]=3245,["damage_taken_+%_if_have_not_been_hit_recently"]=4137,["damage_taken_+%_if_not_hit_recently_final"]=3339,["damage_taken_+%_if_taunted_an_enemy_recently"]=3375,["damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby"]=4128,["damage_taken_+%_if_you_have_taken_a_savage_hit_recently"]=3325,["damage_taken_+%_per_frenzy_charge"]=2099,["damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element"]=2777,["damage_taken_+%_vs_demons"]=1935,["damage_taken_+%_while_affected_by_elusive"]=4129,["damage_taken_+%_while_es_full"]=1483,["damage_taken_+%_while_leeching"]=4138,["damage_taken_from_traps_and_mines_+%"]=2462,["damage_taken_goes_to_life_over_4_seconds_%"]=4130,["damage_taken_goes_to_mana_%"]=1650,["damage_taken_goes_to_mana_%_per_power_charge"]=2332,["damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity"]=4131,["damage_taken_per_250_dexterity_+%"]=4132,["damage_taken_per_250_intelligence_+%"]=4133,["damage_taken_per_250_strength_+%"]=4134,["damage_taken_per_ghost_dance_stack_+%"]=4135,["damage_vs_cursed_enemies_per_enemy_curse_+%"]=2184,["damage_vs_enemies_on_full_life_per_power_charge_+%"]=2167,["damage_vs_enemies_on_low_life_+%"]=1977,["damage_vs_enemies_on_low_life_+%_final"]=1978,["damage_vs_enemies_on_low_life_per_power_charge_+%"]=2168,["damage_vs_shocked_enemies_+%"]=598,["damage_while_dual_wielding_+%"]=629,["damage_while_no_damage_taken_+%"]=2385,["damage_while_no_frenzy_charges_+%"]=2927,["damage_with_cold_skills_+%"]=688,["damage_with_fire_skills_+%"]=679,["damage_with_lightning_skills_+%"]=694,["dark_ritual_area_of_effect_+%"]=4139,["dark_ritual_damage_+%"]=4140,["dark_ritual_linked_curse_effect_+%"]=4141,["deal_1000_chaos_damage_per_second_for_10_seconds_on_hit"]=4142,["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=4143,["deal_double_damage_to_enemies_on_full_life"]=4144,["deal_no_damage_yourself"]=1489,["deal_no_elemental_damage"]=4145,["deal_no_non_elemental_damage"]=4146,["deal_no_non_fire_damage"]=1962,["deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute"]=1861,["deaths_oath_debuff_on_kill_duration_ms"]=1861,["debuff_time_passed_+%"]=4148,["debuff_time_passed_-%_while_affected_by_haste"]=4147,["decoy_totem_life_+%"]=3156,["decoy_totem_radius_+%"]=2996,["defences_from_animated_guardians_items_apply_to_animated_weapon"]=4149,["degen_effect_+%"]=1484,["delirium_aura_effect_+%"]=4150,["delirium_mana_reservation_+%"]=4151,["delirium_reserves_no_mana"]=4152,["demigod_footprints_from_item"]=5900,["desecrate_cooldown_speed_+%"]=3043,["desecrate_creates_X_additional_corpses"]=3405,["desecrate_damage_+%"]=2882,["desecrate_duration_+%"]=3080,["desecrate_number_of_corpses_to_create"]=3279,["desecrate_on_block_%_chance_to_create"]=1762,["desecrated_ground_effect_on_self_+%"]=1395,["despair_curse_effect_+%"]=4153,["despair_duration_+%"]=4154,["determination_aura_effect_+%"]=2540,["determination_mana_reservation_+%"]=3196,["determination_reserves_no_mana"]=4155,["detonate_dead_%_chance_to_detonate_additional_corpse"]=3154,["detonate_dead_damage_+%"]=2851,["detonate_dead_radius_+%"]=2991,["devouring_totem_%_chance_to_consume_additional_corpse"]=3163,["devouring_totem_leech_per_second_+%"]=3157,["dexterity_+%"]=554,["dexterity_+%_if_strength_higher_than_intelligence"]=4156,["dexterity_skill_gem_level_+"]=4157,["disable_chest_slot"]=1771,["disable_skill_if_melee_attack"]=1688,["discharge_chance_not_to_consume_charges_%"]=2584,["discharge_damage_+%"]=2582,["discharge_radius_+%"]=2583,["discharge_triggered_damage_+%_final"]=4158,["discipline_aura_effect_+%"]=2541,["discipline_mana_reservation_+%"]=3197,["discipline_reserves_no_mana"]=4159,["dispel_status_ailments_on_flask_use"]=2466,["dispel_status_ailments_on_rampage_threshold"]=2124,["display_abberaths_hooves_skill_level"]=394,["display_attack_with_commandment_of_force_on_hit_%"]=2674,["display_attack_with_commandment_of_fury_on_hit_%"]=2686,["display_attack_with_commandment_of_ire_when_hit_%"]=3181,["display_attack_with_commandment_of_light_when_critically_hit_%"]=2678,["display_attack_with_commandment_of_spite_when_hit_%"]=2690,["display_attack_with_decree_of_force_on_hit_%"]=2673,["display_attack_with_decree_of_fury_on_hit_%"]=2685,["display_attack_with_decree_of_ire_when_hit_%"]=3180,["display_attack_with_decree_of_light_when_critically_hit_%"]=2677,["display_attack_with_decree_of_spite_when_hit_%"]=2689,["display_attack_with_edict_of_force_on_hit_%"]=2672,["display_attack_with_edict_of_fury_on_hit_%"]=2684,["display_attack_with_edict_of_ire_when_hit_%"]=3179,["display_attack_with_edict_of_light_when_critically_hit_%"]=2676,["display_attack_with_edict_of_spite_when_hit_%"]=2688,["display_attack_with_word_of_force_on_hit_%"]=2671,["display_attack_with_word_of_fury_on_hit_%"]=2683,["display_attack_with_word_of_ire_when_hit_%"]=3178,["display_attack_with_word_of_light_when_critically_hit_%"]=2675,["display_attack_with_word_of_spite_when_hit_%"]=2687,["display_bow_range_+"]=2234,["display_cast_commandment_of_blades_on_hit_%_"]=2650,["display_cast_commandment_of_flames_on_hit_%"]=2702,["display_cast_commandment_of_frost_on_kill_%"]=2706,["display_cast_commandment_of_inferno_on_kill_%"]=2658,["display_cast_commandment_of_reflection_when_hit_%"]=2670,["display_cast_commandment_of_tempest_on_hit_%"]=2662,["display_cast_commandment_of_the_grave_on_kill_%"]=2666,["display_cast_commandment_of_thunder_on_kill_%"]=2710,["display_cast_commandment_of_war_on_kill_%"]=2682,["display_cast_commandment_of_winter_when_hit_%"]=2654,["display_cast_decree_of_blades_on_hit_%__"]=2649,["display_cast_decree_of_flames_on_hit_%"]=2701,["display_cast_decree_of_frost_on_kill_%"]=2705,["display_cast_decree_of_inferno_on_kill_%"]=2657,["display_cast_decree_of_reflection_when_hit_%"]=2669,["display_cast_decree_of_tempest_on_hit_%"]=2661,["display_cast_decree_of_the_grave_on_kill_%"]=2665,["display_cast_decree_of_thunder_on_kill_%"]=2709,["display_cast_decree_of_war_on_kill_%"]=2681,["display_cast_decree_of_winter_when_hit_%"]=2653,["display_cast_edict_of_blades_on_hit_%_"]=2648,["display_cast_edict_of_flames_on_hit_%"]=2700,["display_cast_edict_of_frost_on_kill_%"]=2704,["display_cast_edict_of_inferno_on_kill_%"]=2656,["display_cast_edict_of_reflection_when_hit_%"]=2668,["display_cast_edict_of_tempest_on_hit_%"]=2660,["display_cast_edict_of_the_grave_on_kill_%"]=2664,["display_cast_edict_of_thunder_on_kill_%"]=2708,["display_cast_edict_of_war_on_kill_%"]=2680,["display_cast_edict_of_winter_when_hit_%"]=2652,["display_cast_fire_burst_on_kill"]=395,["display_cast_word_of_blades_on_hit_%"]=2647,["display_cast_word_of_flames_on_hit_%"]=2699,["display_cast_word_of_frost_on_kill_%"]=2703,["display_cast_word_of_inferno_on_kill_%"]=2655,["display_cast_word_of_reflection_when_hit_%"]=2667,["display_cast_word_of_tempest_on_hit_%"]=2659,["display_cast_word_of_the_grave_on_kill_%"]=2663,["display_cast_word_of_thunder_on_kill_%"]=2707,["display_cast_word_of_war_on_kill_%"]=2679,["display_cast_word_of_winter_when_hit_%"]=2651,["display_cowards_trial_waves_of_monsters"]=4160,["display_cowards_trial_waves_of_undead_monsters"]=4161,["display_dark_ritual_curse_max_skill_level_requirement"]=4162,["display_golden_radiance"]=1687,["display_item_generation_can_roll_minion_affixes"]=40,["display_mana_cost_reduction_%"]=1187,["display_map_augmentable_boss"]=4163,["display_map_boss_gives_experience_+%"]=2011,["display_map_contains_grandmasters"]=2182,["display_map_final_boss_drops_higher_level_gear"]=2010,["display_map_has_oxygen"]=2161,["display_map_inhabited_by_lunaris_fanatics"]=4164,["display_map_inhabited_by_solaris_fanatics"]=4165,["display_map_inhabited_by_wild_beasts"]=1544,["display_map_large_chest"]=1730,["display_map_larger_maze"]=1729,["display_map_mission_id"]=4166,["display_map_no_monsters"]=1632,["display_map_restless_dead"]=1728,["display_minion_maximum_life"]=1188,["display_socketed_minion_gems_supported_by_level_X_life_leech"]=269,["display_strongbox_drops_additional_shaper_or_elder_cards"]=4167,["display_trigger_arcane_wake_after_spending_200_mana_%_chance"]=396,["divine_tempest_beam_width_+%"]=4168,["divine_tempest_damage_+%"]=4169,["divine_tempest_number_of_additional_nearby_enemies_to_zap"]=4170,["do_not_chain"]=1050,["dodge_attacks_and_spell_chance_%_per_500_maximum_mana_up_to_20"]=4171,["dodge_attacks_and_spells_%_chance_if_have_been_hit_recently"]=4172,["dodge_attacks_chance_%_during_focus"]=4173,["dodge_attacks_chance_%_if_you_have_blocked_recently"]=4174,["dodge_attacks_chance_%_while_moving"]=4175,["dodge_chance_%_while_holding_shield"]=4176,["dodge_chance_+%_if_you_have_taken_spell_damage_recently"]=3322,["dodge_spells_chance_%_while_moving"]=4177,["dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence"]=2173,["dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity"]=2172,["dominance_defences_+%_on_nearby_allies_per_100_strength"]=2171,["dominating_blow_duration_+%"]=3059,["dominating_blow_minion_damage_+%"]=2865,["dominating_blow_skill_attack_damage_+%"]=2866,["dot_multiplier_+"]=602,["dot_multiplier_+_while_affected_by_malevolence"]=4178,["double_slash_critical_strike_chance_+%"]=3304,["double_slash_damage_+%"]=3297,["double_slash_maximum_added_physical_damage_vs_bleeding_enemies"]=4179,["double_slash_minimum_added_physical_damage_vs_bleeding_enemies"]=4179,["double_slash_radius_+%"]=3306,["double_strike_attack_speed_+%"]=3014,["double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies"]=4180,["double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%"]=2401,["double_strike_critical_strike_chance_+%"]=3097,["double_strike_damage_+%"]=2794,["dread_banner_aura_effect_+%"]=4181,["dual_strike_attack_speed_+%"]=3015,["dual_strike_critical_strike_chance_+%"]=3098,["dual_strike_damage_+%"]=2795,["dual_strike_main_hand_deals_double_damage_%"]=4182,["dual_strike_melee_splash_with_off_hand_weapon"]=4183,["dual_wield_or_shield_block_%"]=538,["earthquake_damage_+%"]=2897,["earthquake_duration_+%"]=3087,["earthquake_radius_+%"]=3006,["elemental_critical_strike_chance_+%"]=794,["elemental_critical_strike_multiplier_+"]=819,["elemental_damage_%_to_add_as_chaos"]=1181,["elemental_damage_%_to_add_as_chaos_per_shaper_item_equipped"]=3475,["elemental_damage_+%"]=1228,["elemental_damage_+%_during_flask_effect"]=3378,["elemental_damage_+%_final_per_righteous_charge"]=4184,["elemental_damage_+%_if_cursed_enemy_killed_recently"]=4185,["elemental_damage_+%_if_have_crit_recently"]=4186,["elemental_damage_+%_if_used_a_warcry_recently"]=4187,["elemental_damage_+%_per_10_devotion"]=4188,["elemental_damage_+%_per_10_dexterity"]=4189,["elemental_damage_+%_per_12_int"]=4190,["elemental_damage_+%_per_12_strength"]=4191,["elemental_damage_+%_per_divine_charge"]=3527,["elemental_damage_+%_per_frenzy_charge"]=1380,["elemental_damage_+%_per_level"]=2149,["elemental_damage_+%_per_power_charge"]=4192,["elemental_damage_+%_per_sextant_affecting_area"]=4193,["elemental_damage_+%_per_stackable_unique_jewel"]=3316,["elemental_damage_+%_while_in_area_affected_by_sextant"]=4194,["elemental_damage_can_shock"]=2040,["elemental_damage_taken_%_as_chaos"]=1648,["elemental_damage_taken_+%"]=2461,["elemental_damage_taken_+%_at_maximum_endurance_charges"]=2497,["elemental_damage_taken_+%_during_flask_effect"]=3242,["elemental_damage_taken_+%_final_per_raised_zombie"]=4195,["elemental_damage_taken_+%_if_not_hit_recently"]=4197,["elemental_damage_taken_+%_if_you_have_an_endurance_charge"]=4198,["elemental_damage_taken_+%_per_endurance_charge"]=4199,["elemental_damage_taken_+%_while_on_consecrated_ground"]=3215,["elemental_damage_taken_+%_while_stationary"]=4200,["elemental_damage_taken_from_hits_+%_per_endurance_charge"]=4196,["elemental_damage_with_attack_skills_+%"]=4201,["elemental_damage_with_attack_skills_+%_per_power_charge"]=4202,["elemental_damage_with_attack_skills_+%_while_using_flask"]=1924,["elemental_equilibrium_effect_+%"]=1439,["elemental_golem_granted_buff_effect_+%"]=3253,["elemental_golem_immunity_to_elemental_damage"]=3250,["elemental_hit_attack_speed_+%"]=3022,["elemental_hit_cannot_roll_cold_damage"]=4203,["elemental_hit_cannot_roll_fire_damage"]=4204,["elemental_hit_cannot_roll_lightning_damage"]=4205,["elemental_hit_chance_to_freeze_shock_ignite_%"]=3139,["elemental_hit_damage_+%"]=2839,["elemental_hit_deals_50%_less_cold_damage"]=4206,["elemental_hit_deals_50%_less_fire_damage"]=4207,["elemental_hit_deals_50%_less_lightning_damage"]=4208,["elemental_overload_rotation_active"]=5884,["elemental_penetration_%_during_flask_effect"]=3422,["elemental_penetration_%_if_you_have_a_power_charge"]=4209,["elemental_reflect_damage_taken_+%"]=1877,["elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements"]=4210,["elemental_resistance_%_per_10_devotion"]=4212,["elemental_resistance_%_per_minion_up_to_30%"]=4211,["elemental_resistance_%_when_on_low_life"]=908,["elemental_resistances_+%_for_you_and_allies_affected_by_your_auras"]=3228,["elemental_status_effect_aura_radius"]=1467,["elemental_weakness_curse_effect_+%"]=3171,["elemental_weakness_duration_+%"]=3077,["elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%"]=2783,["elementalist_area_of_effect_+%_for_5_seconds"]=4213,["elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill"]=2779,["elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element"]=2776,["elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds"]=2778,["elementalist_elemental_damage_+%_for_5_seconds"]=4214,["elementalist_elemental_status_effect_aura_radius"]=2784,["elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill"]=2781,["elementalist_gain_shaper_of_desolation_every_10_seconds"]=4215,["elementalist_ignite_damage_+%_final"]=4216,["elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill"]=2780,["elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds"]=3393,["elementalist_summon_elemental_golem_on_killing_enemy_with_element_%"]=2782,["elusive_effect_+%"]=4217,["elusive_effect_on_self_+%_per_power_charge"]=3530,["enchantment_boots_added_cold_damage_when_hit_maximum"]=2408,["enchantment_boots_added_cold_damage_when_hit_minimum"]=2408,["enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill"]=2407,["enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds"]=2483,["enchantment_boots_dodge_chance_when_critically_hit_%"]=2414,["enchantment_boots_life_leech_on_kill_permyriad"]=2410,["enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit"]=2334,["enchantment_boots_mana_costs_when_hit_+%"]=2404,["enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently"]=4218,["enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s"]=2485,["enchantment_boots_maximum_added_fire_damage_on_kill_4s"]=2411,["enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=2409,["enchantment_boots_minimum_added_chaos_damage_for_4_seconds_when_crit_4s"]=2485,["enchantment_boots_minimum_added_fire_damage_on_kill_4s"]=2411,["enchantment_boots_minimum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=2409,["enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds"]=2412,["enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds"]=2484,["enchantment_boots_spell_dodge_when_hit_by_spells_%"]=2406,["enchantment_boots_status_ailment_chance_+%_when_havent_crit_for_4_seconds"]=2413,["enchantment_boots_stun_avoid_%_on_kill"]=2405,["enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds"]=2714,["endurance_charge_duration_+%"]=1368,["endurance_charge_on_kill_%"]=1809,["endurance_charge_on_kill_percent_chance_while_holding_shield"]=4219,["endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"]=4220,["endurance_charge_on_off_hand_kill_%"]=2613,["endurance_charges_granted_per_one_hundred_nearby_enemies_during_endurance_warcry"]=1169,["endurance_only_conduit"]=1498,["enduring_cry_buff_effect_+%"]=3268,["enduring_cry_cooldown_speed_+%"]=3048,["enemies_chaos_resistance_%_while_cursed"]=3219,["enemies_chill_as_unfrozen"]=1150,["enemies_damage_taken_+%_while_cursed"]=2920,["enemies_explode_for_%_life_as_physical_damage"]=4221,["enemies_explode_on_kill"]=4222,["enemies_extra_damage_rolls_with_lightning_damage"]=4223,["enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance"]=4224,["enemies_near_corpses_created_recently_are_shocked_and_chilled"]=4225,["enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage"]=4226,["enemies_taunted_by_you_cannot_evade_attacks"]=4227,["enemies_that_hit_you_with_attack_recently_attack_speed_+%"]=4228,["enemies_you_bleed_grant_flask_charges_+%"]=1685,["enemies_you_curse_have_malediction"]=2921,["enemies_you_shock_cast_speed_+%"]=3438,["enemies_you_shock_movement_speed_+%"]=3439,["enemy_additional_critical_strike_chance_against_self"]=2298,["enemy_aggro_radius_+%"]=2310,["enemy_critical_strike_chance_+%_against_self_20_times_value"]=2299,["enemy_evasion_+%_if_you_have_hit_them_recently"]=4229,["enemy_extra_damage_rolls_when_on_full_life"]=4230,["enemy_extra_damage_rolls_when_on_low_life"]=1744,["enemy_extra_damage_rolls_while_affected_by_vulnerability"]=2284,["enemy_hits_roll_low_damage"]=1741,["enemy_knockback_direction_is_reversed"]=2187,["enemy_on_low_life_damage_taken_+%_per_frenzy_charge"]=1813,["enemy_phys_reduction_%_penalty_vs_hit"]=2151,["enemy_shock_on_kill"]=1151,["energy_shield_%_gained_on_block"]=1662,["energy_shield_%_of_armour_rating_gained_on_block"]=1663,["energy_shield_%_to_lose_on_block"]=1906,["energy_shield_+%_per_10_strength"]=4239,["energy_shield_+%_per_power_charge"]=4240,["energy_shield_delay_-%"]=859,["energy_shield_delay_-%_while_affected_by_discipline"]=4231,["energy_shield_delay_during_flask_effect_-%"]=2734,["energy_shield_gain_per_target"]=1012,["energy_shield_gain_per_target_hit_while_affected_by_discipline"]=4232,["energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web"]=4233,["energy_shield_gained_on_enemy_death_per_level"]=2146,["energy_shield_leech_from_any_damage_permyriad"]=986,["energy_shield_leech_from_lightning_damage_permyriad_while_affected_by_wrath"]=4234,["energy_shield_leech_from_spell_damage_permyriad_per_curse_on_enemy"]=988,["energy_shield_leech_if_hit_is_at_least_25_%_fire_damage_permyriad"]=4235,["energy_shield_leech_permyriad_vs_frozen_enemies"]=4236,["energy_shield_leech_speed_+%"]=1402,["energy_shield_lost_per_minute_%"]=4237,["energy_shield_per_level"]=4238,["energy_shield_protects_mana"]=2283,["energy_shield_recharge_not_delayed_by_damage"]=860,["energy_shield_recharge_rate_+%"]=862,["energy_shield_recharge_rate_during_flask_effect_+%"]=2736,["energy_shield_recharge_rate_per_minute_%"]=861,["energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=3357,["energy_shield_recharge_start_when_stunned"]=4241,["energy_shield_recharges_on_block_%"]=2590,["energy_shield_recharges_on_skill_use_chance_%"]=4242,["energy_shield_recovery_rate_+%"]=2143,["energy_shield_recovery_rate_while_affected_by_discipline_+%"]=4243,["energy_shield_regeneration_%_per_minute_while_shocked"]=2194,["energy_shield_regeneration_rate_+%"]=4250,["energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently"]=4246,["energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline"]=4247,["energy_shield_regeneration_rate_per_minute_%_while_on_low_life"]=1061,["energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby"]=4244,["energy_shield_regeneration_rate_per_minute_per_poison_stack"]=4245,["energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground"]=4248,["energy_shield_regeneration_rate_per_second"]=4249,["enfeeble_curse_effect_+%"]=3172,["enfeeble_duration_+%"]=3076,["ensnaring_arrow_area_of_effect_+%"]=4251,["ensnaring_arrow_debuff_effect_+%"]=4252,["envy_reserves_no_mana"]=4253,["es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground"]=3380,["essence_display_drop_burning_ground_while_moving_fire_damage_per_second"]=3453,["essence_display_elemental_damage_taken_while_not_moving_+%"]=3454,["essence_drain_damage_+%"]=2891,["ethereal_knives_damage_+%"]=2812,["ethereal_knives_number_of_additional_projectiles"]=4254,["ethereal_knives_projectile_base_number_of_targets_to_pierce"]=4255,["ethereal_knives_projectile_speed_+%"]=3056,["ethereal_knives_projectiles_nova"]=4256,["evasion_+%_if_hit_recently"]=3340,["evasion_+%_per_10_intelligence"]=4257,["evasion_and_physical_damage_reduction_rating_+%"]=840,["evasion_rating_%_as_life_regeneration_per_minute_during_focus"]=4259,["evasion_rating_+%"]=847,["evasion_rating_+%_if_you_have_hit_an_enemy_recently"]=4262,["evasion_rating_+%_per_frenzy_charge"]=854,["evasion_rating_+%_when_on_full_life"]=4263,["evasion_rating_+%_when_on_low_life"]=1723,["evasion_rating_+%_while_leeching"]=4264,["evasion_rating_+%_while_moving"]=4265,["evasion_rating_+%_while_onslaught_is_active"]=849,["evasion_rating_+_if_you_have_hit_an_enemy_recently"]=4260,["evasion_rating_+_per_1_helmet_energy_shield"]=845,["evasion_rating_+_per_5_maximum_energy_shield_on_shield"]=3517,["evasion_rating_+_when_on_full_life"]=844,["evasion_rating_+_when_on_low_life"]=843,["evasion_rating_+_while_you_have_tailwind"]=4261,["evasion_rating_increased_by_uncapped_cold_resistance"]=4258,["evasion_rating_while_es_full_+%_final"]=3235,["expanding_fire_cone_additional_maximum_number_of_stages"]=4266,["expanding_fire_cone_area_of_effect_+%"]=4267,["experience_gain_+%"]=890,["experience_loss_on_death_-%"]=891,["explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=2482,["explode_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=2481,["explode_on_kill_%_chaos_damage_to_deal"]=2480,["explode_on_kill_%_fire_damage_to_deal"]=1874,["explosive_arrow_attack_speed_+%"]=3288,["explosive_arrow_damage_+%"]=2843,["explosive_arrow_duration_+%"]=4268,["explosive_arrow_radius_+%"]=2987,["extra_critical_rolls"]=1833,["extra_critical_rolls_during_focus"]=4269,["extra_damage_taken_from_crit_+%_while_affected_by_determination"]=4270,["extra_damage_taken_from_crit_while_no_power_charges_+%"]=4271,["extra_gore"]=5901,["faster_bleed_%"]=4272,["faster_burn_%"]=1752,["faster_burn_from_attacks_%"]=1754,["faster_poison_%"]=4273,["fire_and_chaos_damage_resistance_%"]=4274,["fire_and_cold_damage_resistance_%"]=1967,["fire_and_lightning_damage_resistance_%"]=1968,["fire_attack_damage_+%"]=566,["fire_attack_damage_+%_while_holding_a_shield"]=569,["fire_axe_damage_+%"]=643,["fire_beam_cast_speed_+%"]=4275,["fire_beam_damage_+%"]=4276,["fire_beam_degen_spread_to_enemies_in_radius_on_kill"]=4277,["fire_beam_enemy_fire_resistance_%_at_max_stacks"]=4278,["fire_beam_enemy_fire_resistance_%_per_stack"]=4279,["fire_beam_length_+%"]=4280,["fire_bow_damage_+%"]=662,["fire_claw_damage_+%"]=651,["fire_critical_strike_chance_+%"]=791,["fire_critical_strike_multiplier_+"]=816,["fire_dagger_damage_+%"]=655,["fire_damage_%_to_add_as_chaos"]=1180,["fire_damage_%_to_add_as_chaos_per_endurance_charge"]=4281,["fire_damage_+%"]=674,["fire_damage_+%_if_you_have_been_hit_recently"]=4282,["fire_damage_+%_if_you_have_used_a_cold_skill_recently"]=4283,["fire_damage_+%_per_20_strength"]=4284,["fire_damage_+%_per_endurance_charge"]=4285,["fire_damage_+%_to_blinded_enemies"]=2388,["fire_damage_+%_vs_bleeding_enemies"]=4286,["fire_damage_+%_while_affected_by_anger"]=4287,["fire_damage_+%_while_affected_by_herald_of_ash"]=4288,["fire_damage_can_chill"]=2041,["fire_damage_can_freeze"]=2042,["fire_damage_can_shock"]=2043,["fire_damage_cannot_ignite"]=2051,["fire_damage_over_time_+%"]=574,["fire_damage_resistance_%_when_on_low_life"]=913,["fire_damage_resistance_%_while_affected_by_herald_of_ash"]=4289,["fire_damage_resistance_+%"]=914,["fire_damage_resistance_is_%"]=910,["fire_damage_taken_%_as_cold"]=2343,["fire_damage_taken_%_as_lightning"]=2344,["fire_damage_taken_%_causes_additional_physical_damage"]=1649,["fire_damage_taken_+"]=1476,["fire_damage_taken_+%"]=1481,["fire_damage_taken_+%_while_moving"]=4290,["fire_damage_taken_per_minute_per_endurance_charge_if_you_have_been_hit_recently"]=5823,["fire_damage_taken_when_enemy_ignited"]=4291,["fire_damage_taken_when_hit_by_attack"]=1457,["fire_damage_to_return_to_melee_attacker"]=1448,["fire_damage_to_return_when_hit"]=1452,["fire_damage_while_dual_wielding_+%"]=631,["fire_damage_with_attack_skills_+%"]=4292,["fire_damage_with_spell_skills_+%"]=4293,["fire_dot_multiplier_+"]=608,["fire_mace_damage_+%"]=659,["fire_nova_mine_cast_speed_+%"]=3033,["fire_nova_mine_damage_+%"]=2826,["fire_nova_mine_num_of_additional_repeats"]=3129,["fire_penetration_%_if_you_have_blocked_recently"]=4294,["fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire"]=4295,["fire_skill_gem_level_+"]=4296,["fire_skills_chance_to_poison_on_hit_%"]=4297,["fire_spell_physical_damage_%_to_convert_to_fire"]=4298,["fire_spell_skill_gem_level_+"]=897,["fire_staff_damage_+%"]=647,["fire_storm_damage_+%"]=2827,["fire_sword_damage_+%"]=668,["fire_trap_burning_damage_+%"]=3120,["fire_trap_burning_ground_duration_+%"]=4299,["fire_trap_cooldown_speed_+%"]=3035,["fire_trap_damage_+%"]=2796,["fire_trap_number_of_additional_traps_to_throw"]=4300,["fire_wand_damage_+%"]=671,["fireball_base_radius_up_to_+_at_longer_ranges"]=2422,["fireball_cast_speed_+%"]=3032,["fireball_damage_+%"]=2797,["fireball_ignite_chance_%"]=3121,["fireball_radius_up_to_+%_at_longer_ranges"]=2421,["firestorm_duration_+%"]=3090,["firestorm_explosion_area_of_effect_+%"]=3130,["fish_quantity_+%"]=2019,["fish_rarity_+%"]=2020,["fishing_bite_sensitivity_+%"]=2739,["fishing_hook_type"]=2017,["fishing_line_strength_+%"]=2014,["fishing_lure_type"]=2016,["fishing_pool_consumption_+%"]=2015,["fishing_range_+%"]=2018,["flame_dash_cooldown_speed_+%"]=3042,["flame_dash_damage_+%"]=2876,["flame_golem_damage_+%"]=2858,["flame_golem_elemental_resistances_%"]=3146,["flame_surge_critical_strike_chance_+%"]=3102,["flame_surge_damage_+%"]=2828,["flame_surge_damage_+%_vs_burning_enemies"]=3131,["flame_totem_consecrated_ground_enemy_damage_taken_+%"]=4301,["flame_totem_damage_+%"]=2868,["flame_totem_num_of_additional_projectiles"]=3114,["flame_totem_projectile_speed_+%"]=3057,["flameblast_critical_strike_chance_+%"]=3101,["flameblast_damage_+%"]=2844,["flameblast_radius_+%"]=2988,["flamethrower_tower_trap_cast_speed_+%"]=4302,["flamethrower_tower_trap_cooldown_speed_+%"]=4303,["flamethrower_tower_trap_damage_+%"]=4304,["flamethrower_tower_trap_duration_+%"]=4305,["flamethrower_tower_trap_number_of_additional_flamethrowers"]=4306,["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=4307,["flammability_curse_effect_+%"]=3173,["flammability_duration_+%"]=3075,["flammability_mana_reservation_+%"]=3207,["flask_charges_+%_from_enemies_with_status_ailments"]=3402,["flask_charges_gained_+%_during_flask_effect"]=2350,["flask_charges_recovered_per_3_seconds"]=2642,["flask_charges_used_+%"]=1428,["flask_duration_+%"]=1431,["flask_duration_on_minions_+%"]=1432,["flask_effect_+%"]=1909,["flask_life_recovery_+%_while_affected_by_vitality"]=4308,["flask_life_recovery_rate_+%"]=1433,["flask_life_to_recover_+%"]=1306,["flask_mana_charges_used_+%"]=1429,["flask_mana_recovery_rate_+%"]=1434,["flask_mana_to_recover_+%"]=1307,["flask_minion_heal_%"]=2068,["flask_recovery_is_instant"]=4309,["flask_recovery_speed_+%"]=1308,["flasks_%_chance_to_not_consume_charges"]=3383,["flasks_apply_to_your_zombies_and_spectres"]=2912,["flasks_dispel_burning"]=1922,["flesh_offering_attack_speed_+%"]=3280,["flesh_offering_duration_+%"]=3063,["flicker_strike_cooldown_speed_+%"]=3036,["flicker_strike_damage_+%"]=2817,["flicker_strike_damage_+%_per_frenzy_charge"]=3126,["flicker_strike_more_attack_speed_+%_final"]=721,["focus_cooldown_modifier_ms"]=4310,["focus_cooldown_speed_+%"]=4311,["fortify_duration_+%"]=1503,["fortify_duration_+%_per_10_strength"]=4312,["fortify_during_life_flask_effect"]=1926,["fortify_effect_+%"]=1506,["fortify_effect_+%_while_focused"]=4314,["fortify_effect_on_self_+%"]=2732,["fortify_effect_on_self_+%_while_stationary"]=4313,["fortify_on_hit"]=4315,["freeze_as_though_dealt_damage_+%"]=2059,["freeze_duration_+%"]=1106,["freeze_mine_cold_resistance_+_while_frozen"]=1949,["freeze_mine_damage_+%"]=2877,["freeze_mine_radius_+%"]=2998,["freeze_on_you_proliferates_to_nearby_enemies_within_x_radius"]=2789,["freeze_prevention_ms_when_frozen"]=2061,["freezing_pulse_cast_speed_+%"]=3031,["freezing_pulse_damage_+%"]=2798,["freezing_pulse_damage_+%_if_enemy_shattered_recently"]=4316,["freezing_pulse_number_of_additional_projectiles"]=4317,["freezing_pulse_projectile_speed_+%"]=3053,["frenzy_%_chance_to_gain_additional_frenzy_charge"]=3138,["frenzy_charge_duration_+%_per_frenzy_charge"]=1299,["frenzy_charge_on_kill_percent_chance_while_holding_shield"]=4318,["frenzy_damage_+%"]=2837,["frenzy_damage_+%_per_frenzy_charge"]=3137,["frenzy_only_conduit"]=1499,["frost_blades_damage_+%"]=2577,["frost_blades_melee_damage_penetrates_%_cold_resistance"]=4319,["frost_blades_number_of_additional_projectiles_in_chain"]=2579,["frost_blades_projectile_speed_+%"]=2578,["frost_bolt_cast_speed_+%"]=3308,["frost_bolt_damage_+%"]=3295,["frost_bolt_freeze_chance_%"]=3309,["frost_bolt_nova_cooldown_speed_+%"]=4320,["frost_bolt_nova_damage_+%"]=3296,["frost_bolt_nova_duration_+%"]=3310,["frost_bolt_nova_radius_+%"]=3303,["frost_bomb_buff_duration_+%"]=4321,["frost_bomb_cooldown_speed_+%"]=3049,["frost_bomb_damage_+%"]=2900,["frost_bomb_radius_+%"]=3007,["frost_fury_additional_max_number_of_stages"]=4322,["frost_fury_area_of_effect_+%_per_stage"]=4323,["frost_fury_damage_+%"]=4324,["frost_wall_cooldown_speed_+%"]=3040,["frost_wall_damage_+%"]=2871,["frost_wall_duration_+%"]=3066,["frostbite_curse_effect_+%"]=3174,["frostbite_duration_+%"]=3074,["frostbite_mana_reservation_+%"]=3208,["frostbolt_number_of_additional_projectiles"]=4325,["frostbolt_projectile_acceleration"]=4326,["frozen_monsters_take_increased_damage"]=1656,["fungal_ground_while_stationary_radius"]=4327,["gain_%_es_when_spirit_charge_expires_or_consumed"]=3524,["gain_%_life_when_spirit_charge_expires_or_consumed"]=3523,["gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec"]=4373,["gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance"]=4328,["gain_X_energy_shield_on_killing_shocked_enemy"]=1760,["gain_X_frenzy_charges_after_spending_200_mana"]=4329,["gain_X_life_on_stun"]=4330,["gain_X_power_charges_on_using_a_warcry"]=4331,["gain_X_random_rare_monster_mods_on_kill"]=2229,["gain_X_vaal_souls_on_rampage_threshold"]=2126,["gain_a_power_charge_when_you_or_your_totems_kill_%_chance"]=3292,["gain_accuracy_rating_equal_to_strength"]=4332,["gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline"]=4333,["gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently"]=4334,["gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry"]=4335,["gain_arcane_surge_on_crit_%_chance"]=4336,["gain_arcane_surge_on_hit_%_chance"]=4339,["gain_arcane_surge_on_hit_at_devotion_threshold"]=4337,["gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%"]=4338,["gain_arcane_surge_on_kill_chance_%"]=4340,["gain_arcane_surge_on_spell_hit_by_you_or_your_totems"]=4341,["gain_armour_equal_to_mana_reserved"]=4342,["gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit"]=3213,["gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy"]=4343,["gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit"]=2611,["gain_blitz_charge_%_chance_on_crit"]=4344,["gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius"]=2967,["gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance"]=4345,["gain_challenger_charge_%_chance_on_kill_in_sand_stance"]=4346,["gain_crimson_dance_if_have_dealt_critical_strike_recently"]=5877,["gain_crimson_dance_while_you_have_cat_stealth"]=5878,["gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana"]=4347,["gain_damage_+%_for_4_seconds_if_taken_savage_hit"]=2610,["gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy"]=4348,["gain_divine_charge_on_hit_%"]=3526,["gain_divinity_ms_when_reaching_maximum_divine_charges"]=3528,["gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy"]=3218,["gain_elemental_penetration_for_4_seconds_on_mine_detonation"]=3259,["gain_elusive_on_crit_%_chance"]=3434,["gain_elusive_on_kill_chance_%"]=3435,["gain_endurance_charge_%_chance_on_using_fire_skill"]=1073,["gain_endurance_charge_%_chance_when_you_lose_fortify"]=4350,["gain_endurance_charge_%_when_hit_while_channelling"]=4351,["gain_endurance_charge_on_main_hand_kill_%"]=2500,["gain_endurance_charge_on_melee_stun"]=1940,["gain_endurance_charge_on_melee_stun_%"]=1940,["gain_endurance_charge_on_power_charge_expiry"]=1812,["gain_endurance_charge_per_second_if_have_been_hit_recently"]=4349,["gain_flask_chance_on_crit_%"]=2563,["gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges"]=4352,["gain_flask_charge_when_crit_%"]=1309,["gain_flask_charge_when_crit_amount"]=1309,["gain_frenzy_and_power_charge_on_kill_%"]=1811,["gain_frenzy_charge_%_when_hit_while_channelling"]=4357,["gain_frenzy_charge_if_attack_ignites"]=2007,["gain_frenzy_charge_on_critical_strike_%"]=4353,["gain_frenzy_charge_on_hit_while_bleeding"]=4354,["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=4355,["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=4356,["gain_frenzy_charge_on_main_hand_kill_%"]=2499,["gain_frenzy_charge_on_reaching_maximum_power_charges"]=2762,["gain_her_blessing_for_3_seconds_on_ignite_%"]=2447,["gain_her_embrace_for_x_ms_on_enemy_ignited"]=4358,["gain_iron_reflexes_while_at_maximum_frenzy_charges"]=5879,["gain_iron_reflexes_while_stationary"]=5885,["gain_life_and_mana_leech_on_kill_permyriad"]=2392,["gain_life_leech_from_any_damage_permyriad_as_life_for_4_seconds_if_taken_savage_hit"]=2609,["gain_life_leech_on_kill_permyriad"]=3412,["gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit"]=3329,["gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance"]=3392,["gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth"]=4359,["gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance"]=4360,["gain_maximum_power_charges_on_power_charge_gained_%_chance"]=4361,["gain_mind_over_matter_while_at_maximum_power_charges"]=5880,["gain_movement_speed_+%_for_20_seconds_on_kill"]=4362,["gain_no_maximum_life_from_strength"]=1265,["gain_no_maximum_mana_from_intelligence"]=1266,["gain_onslaught_during_soul_gain_prevention"]=4363,["gain_onslaught_for_3_seconds_%_chance_when_hit"]=4364,["gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster"]=3365,["gain_onslaught_ms_on_using_a_warcry"]=4365,["gain_onslaught_ms_when_reaching_maximum_endurance_charges"]=1920,["gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%"]=4366,["gain_onslaught_on_hit_duration_ms"]=4367,["gain_onslaught_on_kill_ms_while_affected_by_haste"]=4368,["gain_onslaught_on_stun_duration_ms"]=1916,["gain_onslaught_when_ignited_ms"]=2210,["gain_onslaught_while_at_maximum_endurance_charges"]=4369,["gain_onslaught_while_frenzy_charges_full"]=3238,["gain_onslaught_while_not_on_low_mana"]=4370,["gain_onslaught_while_on_low_life"]=4371,["gain_onslaught_while_you_have_fortify"]=4372,["gain_phasing_for_4_seconds_on_begin_es_recharge"]=1696,["gain_phasing_if_enemy_killed_recently"]=4374,["gain_phasing_while_affected_by_haste"]=4375,["gain_phasing_while_at_maximum_frenzy_charges"]=1694,["gain_phasing_while_you_have_cats_stealth"]=4376,["gain_phasing_while_you_have_onslaught"]=1695,["gain_physical_damage_immunity_on_rampage_threshold_ms"]=2125,["gain_player_far_shot_while_do_not_have_iron_reflexes"]=5897,["gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%"]=4377,["gain_power_charge_on_non_critical_strike_%"]=2573,["gain_power_charge_on_vaal_skill_use_%"]=4378,["gain_power_charge_per_enemy_you_crit"]=1735,["gain_power_charge_when_throwing_trap_%"]=2108,["gain_power_or_frenzy_charge_for_each_second_channeling"]=4379,["gain_rage_on_hit"]=5517,["gain_rage_on_hitting_rare_unique_enemy_%"]=5514,["gain_rage_on_kill"]=5513,["gain_rage_when_you_use_a_warcry"]=5515,["gain_rampage_while_at_maximum_endurance_charges"]=2437,["gain_random_charge_on_block"]=4380,["gain_random_charge_per_second_while_stationary"]=4381,["gain_rare_monster_mods_on_kill_ms"]=1988,["gain_resolute_technique_while_do_not_have_elemental_overload"]=5886,["gain_righteous_charge_on_mana_spent_%"]=4382,["gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster"]=4383,["gain_single_conflux_for_3_seconds_every_8_seconds"]=4384,["gain_siphoning_charge_on_skill_use_%_chance"]=3477,["gain_soul_eater_during_flask_effect"]=2594,["gain_soul_eater_for_x_ms_on_vaal_skill_use"]=4385,["gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms"]=2281,["gain_spirit_charge_every_x_ms"]=3520,["gain_spirit_charge_on_kill_%_chance"]=3521,["gain_unholy_might_for_2_seconds_on_crit"]=2081,["gain_unholy_might_for_2_seconds_on_melee_crit"]=2080,["gain_unholy_might_for_4_seconds_on_crit"]=2082,["gain_unholy_might_on_rampage_threshold_ms"]=2148,["gain_vaal_pact_if_you_have_crit_recently"]=4386,["gain_vaal_pact_while_at_maximum_endurance_charges"]=5881,["gain_vaal_pact_while_focused"]=4387,["gain_vaal_soul_on_hit_cooldown_ms"]=4388,["gain_x_es_on_trap_triggered_by_an_enemy"]=3397,["gain_x_life_on_trap_triggered_by_an_enemy"]=3396,["gain_x_life_when_endurance_charge_expires_or_consumed"]=2183,["galvanic_arrow_area_damage_+%"]=5591,["galvanic_arrow_projectile_speed_+%"]=4389,["gem_experience_gain_+%"]=1127,["ghost_dance_max_stacks"]=4390,["ghost_dance_restore_%_evasion_as_energy_shield_when_hit"]=4391,["glacial_cascade_damage_+%"]=2845,["glacial_cascade_number_of_additional_bursts"]=4392,["glacial_cascade_physical_damage_%_to_convert_to_cold"]=3140,["glacial_cascade_radius_+%"]=2989,["glacial_hammer_damage_+%"]=2799,["glacial_hammer_freeze_chance_%"]=3122,["glacial_hammer_item_rarity_on_shattering_enemy_+%"]=2399,["glacial_hammer_melee_splash_with_cold_damage"]=4393,["glacial_hammer_physical_damage_%_to_add_as_cold_damage"]=3141,["glacial_hammer_physical_damage_%_to_convert_to_cold"]=4394,["global_always_hit"]=1291,["global_attack_speed_+%_per_green_socket_on_item"]=1891,["global_attack_speed_+%_per_level"]=4395,["global_bleed_on_hit"]=1682,["global_cannot_crit"]=1423,["global_chance_to_blind_on_hit_%"]=2127,["global_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=4396,["global_critical_strike_chance_+%_vs_chilled_enemies"]=4397,["global_critical_strike_chance_+%_while_holding_bow"]=1668,["global_critical_strike_chance_+%_while_holding_staff"]=1666,["global_critical_strike_chance_while_dual_wielding_+%"]=3420,["global_critical_strike_mulitplier_+_per_green_socket_on_item"]=1892,["global_critical_strike_multiplier_+_while_holding_bow"]=1669,["global_critical_strike_multiplier_+_while_holding_staff"]=1667,["global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges"]=1302,["global_critical_strike_multiplier_while_dual_wielding_+"]=3419,["global_defences_+%"]=2004,["global_defences_+%_per_white_socket_on_item"]=1901,["global_evasion_rating_+_while_moving"]=4398,["global_hit_causes_monster_flee_%"]=1289,["global_item_attribute_requirements_+%"]=1740,["global_knockback"]=828,["global_knockback_on_crit"]=1189,["global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad"]=1887,["global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item"]=1897,["global_maximum_added_chaos_damage"]=697,["global_maximum_added_cold_damage"]=682,["global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies"]=4399,["global_maximum_added_fire_damage"]=675,["global_maximum_added_fire_damage_vs_burning_enemies"]=5705,["global_maximum_added_fire_damage_vs_ignited_enemies"]=4400,["global_maximum_added_lightning_damage"]=691,["global_maximum_added_lightning_damage_vs_ignited_enemies"]=4401,["global_maximum_added_lightning_damage_vs_shocked_enemies"]=4402,["global_maximum_added_physical_damage"]=619,["global_maximum_added_physical_damage_vs_bleeding_enemies"]=4403,["global_melee_range_+_per_white_socket_on_item"]=1902,["global_minimum_added_chaos_damage"]=697,["global_minimum_added_cold_damage"]=682,["global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies"]=4399,["global_minimum_added_fire_damage"]=675,["global_minimum_added_fire_damage_vs_burning_enemies"]=5705,["global_minimum_added_fire_damage_vs_ignited_enemies"]=4400,["global_minimum_added_lightning_damage"]=691,["global_minimum_added_lightning_damage_vs_ignited_enemies"]=4401,["global_minimum_added_lightning_damage_vs_shocked_enemies"]=4402,["global_minimum_added_physical_damage"]=619,["global_minimum_added_physical_damage_vs_bleeding_enemies"]=4403,["global_physical_damage_reduction_rating_while_moving"]=4404,["global_poison_on_hit"]=2339,["global_reduce_enemy_block_%"]=1145,["global_weapon_physical_damage_+%_per_red_socket_on_item"]=1888,["glows_in_area_with_unique_fish"]=3286,["goat_footprints_from_item"]=5902,["golem_attack_and_cast_speed_+%"]=4405,["golem_buff_effect_+%"]=4406,["golem_buff_effect_+%_per_summoned_golem"]=4407,["golem_cooldown_recovery_+%"]=2507,["golem_damage_+%_if_summoned_in_past_8_seconds"]=2863,["golem_damage_+%_per_active_golem"]=3354,["golem_damage_+%_per_active_golem_type"]=3353,["golem_immunity_to_elemental_damage"]=3251,["golem_life_regeneration_per_minute_%"]=4408,["golem_maximum_life_+%"]=4409,["golem_movement_speed_+%"]=4410,["golem_physical_damage_reduction_rating"]=4411,["golem_scale_+%"]=2856,["golem_skill_cooldown_recovery_+%"]=2506,["golems_larger_aggro_radius"]=5838,["grace_aura_effect_+%"]=2538,["grace_mana_reservation_+%"]=3203,["grace_reserves_no_mana"]=4412,["grant_X_frenzy_charges_to_nearby_allies_on_death"]=2065,["grant_animated_minion_melee_splash_damage_+%_final_for_splash"]=4413,["grant_tailwind_to_nearby_allies_if_used_skill_recently"]=4414,["gratuitous_violence_bleeding_damage_+%_final"]=4415,["ground_slam_angle_+%"]=2427,["ground_slam_chance_to_gain_endurance_charge_%_on_stun"]=4416,["ground_slam_damage_+%"]=2800,["ground_slam_radius_+%"]=2969,["ground_smoke_on_rampage_threshold_ms"]=2136,["ground_smoke_when_hit_%"]=1764,["ground_tar_on_block_base_area_of_effect_radius"]=4417,["ground_tar_on_take_crit_base_area_of_effect_radius"]=1702,["ground_tar_when_hit_%_chance"]=4418,["guard_skill_cooldown_recovery_+%"]=4419,["guardian_auras_grant_life_regeneration_per_minute_%"]=2944,["guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds"]=2949,["guardian_nearby_allies_share_charges"]=3275,["guardian_nearby_enemies_cannot_gain_charges"]=2945,["guardian_remove_curses_and_status_ailments_every_10_seconds"]=2948,["guardian_reserved_life_granted_to_you_and_allies_as_armour_%"]=2946,["guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield"]=2947,["guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%"]=2490,["guardian_with_5_nearby_allies_you_and_allies_have_onslaught"]=4420,["guardian_with_nearby_ally_damage_+%_final_for_you_and_allies"]=4421,["half_physical_bypasses_es_half_chaos_damages_es_when_X_corrupted_items_equipped"]=2280,["has_fortify"]=2764,["has_onslaught"]=2755,["haste_mana_reservation_+%"]=3204,["haste_reserves_no_mana"]=4422,["hatred_aura_effect_+%"]=2539,["hatred_mana_reservation_+%"]=3194,["hatred_reserves_no_mana"]=4423,["heavy_strike_attack_speed_+%"]=3016,["heavy_strike_chance_to_deal_double_damage_%"]=2403,["heavy_strike_damage_+%"]=2801,["herald_effect_on_self_+%"]=4424,["herald_mana_reservation_override_45%"]=4425,["herald_of_agony_buff_drop_off_speed_+%"]=4426,["herald_of_agony_buff_effect_+%"]=4427,["herald_of_agony_mana_reservation_+%"]=4428,["herald_of_ash_buff_effect_+%"]=4429,["herald_of_ash_burning_damage_+%_final"]=4430,["herald_of_ash_damage_+%"]=2878,["herald_of_ash_mana_reservation_+%"]=3190,["herald_of_ash_spell_fire_damage_+%_final"]=4431,["herald_of_ice_buff_effect_+%"]=4432,["herald_of_ice_damage_+%"]=2879,["herald_of_ice_mana_reservation_+%"]=3191,["herald_of_light_and_dominating_blow_minions_use_holy_slam"]=4433,["herald_of_light_buff_effect_+%"]=4434,["herald_of_light_minion_area_of_effect_+%"]=4435,["herald_of_purity_mana_reservation_+%"]=4436,["herald_of_thunder_buff_effect_+%"]=4437,["herald_of_thunder_damage_+%"]=2880,["herald_of_thunder_mana_reservation_+%"]=3192,["herald_scorpion_number_of_additional_projectiles"]=4438,["herald_skills_mana_reservation_+%"]=4439,["hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%"]=4440,["hierophant_boots_supported_by_life_leech"]=317,["hierophant_gloves_supported_by_increased_area_of_effect"]=316,["hierophant_helmet_supported_by_elemental_penetration"]=315,["hierophant_mana_cost_+%_final"]=4441,["hierophant_mana_reservation_+%_final"]=4442,["hierophant_passive_damage_+%_final_per_totem"]=2909,["hinder_effect_on_self_+%"]=4443,["hit_and_ailment_damage_+%_vs_bleeding_enemies"]=4444,["hit_and_ailment_damage_+%_vs_blinded_enemies"]=4445,["hit_and_ailment_damage_+%_vs_chilled_enemies"]=4446,["hit_and_ailment_damage_+%_vs_enemies_affected_by_at_least_3_spiders_webs"]=4447,["hits_can_only_kill_frozen_enemies"]=2190,["hits_cannot_be_evaded_vs_blinded_enemies"]=4448,["hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped"]=4449,["hits_ignore_enemy_fire_resistance_while_you_are_ignited"]=4450,["holy_path_teleport_range_+%"]=4451,["holy_relic_area_of_effect_+%"]=4452,["holy_relic_buff_effect_+%"]=4453,["holy_relic_cooldown_recovery_+%"]=4454,["holy_relic_damage_+%"]=4455,["ice_crash_damage_+%"]=2846,["ice_crash_physical_damage_%_to_add_as_cold_damage"]=3142,["ice_crash_radius_+%"]=2992,["ice_dash_cooldown_speed_+%"]=4456,["ice_dash_duration_+%"]=4457,["ice_dash_travel_distance_+%"]=4458,["ice_golem_damage_+%"]=2859,["ice_golem_elemental_resistances_%"]=3147,["ice_nova_chill_minimum_slow_%"]=4459,["ice_nova_damage_+%"]=2829,["ice_nova_freeze_chance_%"]=3123,["ice_nova_radius_+%"]=2979,["ice_shot_additional_pierce_per_10_old"]=4460,["ice_shot_area_angle_+%"]=4461,["ice_shot_damage_+%"]=2813,["ice_shot_duration_+%"]=3095,["ice_shot_pierce_+"]=4462,["ice_shot_radius_+%"]=2975,["ice_siphon_trap_chill_effect_+%"]=4463,["ice_siphon_trap_damage_+%"]=4464,["ice_siphon_trap_damage_taken_+%_per_beam"]=4465,["ice_siphon_trap_duration_+%"]=4466,["ice_spear_%_chance_to_gain_power_charge_on_critical_strike"]=3132,["ice_spear_damage_+%"]=2830,["ice_spear_distance_before_form_change_+%"]=4467,["ice_spear_number_of_additional_projectiles"]=4468,["ice_spear_second_form_critical_strike_chance_+%"]=3281,["ice_spear_second_form_critical_strike_multiplier_+"]=3282,["ice_spear_second_form_projectile_speed_+%_final"]=3283,["ice_trap_cold_resistance_penetration_%"]=4469,["ice_trap_cooldown_speed_+%"]=3051,["ice_trap_damage_+%"]=2895,["ice_trap_radius_+%"]=3005,["ignite_X_nearby_enemies_for_4_s_on_killing_ignited_enemy"]=1987,["ignite_damage_+%_vs_chilled_enemies"]=4470,["ignite_dot_multiplier_+"]=610,["ignite_duration_+%"]=1107,["ignite_duration_-%"]=4471,["ignite_prevention_ms_when_ignited"]=2062,["ignite_slower_burn_%"]=1753,["ignited_enemies_explode_on_kill"]=1781,["ignites_reflected_to_self"]=2208,["ignore_armour_movement_penalties"]=1425,["ignore_hexproof"]=1790,["ignores_enemy_cold_resistance"]=4472,["ignores_enemy_fire_resistance"]=4473,["ignores_enemy_lightning_resistance"]=4474,["immortal_call_%_chance_to_not_consume_endurance_charges"]=3185,["immortal_call_buff_effect_duration_+%_per_removable_endurance_charge"]=4475,["immortal_call_duration_+%"]=3061,["immune_to_ally_buff_auras"]=2188,["immune_to_bleeding"]=3367,["immune_to_bleeding_while_leeching"]=3370,["immune_to_burning_shocks_and_chilled_ground"]=4476,["immune_to_elemental_ailments_while_on_consecrated_ground"]=4477,["immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"]=4478,["immune_to_elemental_ailments_while_you_have_arcane_surge"]=4479,["immune_to_elemental_status_ailments_during_flask_effect"]=3377,["immune_to_freeze_and_chill_while_ignited"]=4480,["immune_to_freeze_while_affected_by_purity_of_ice"]=4481,["immune_to_ignite_and_shock"]=4482,["immune_to_ignite_while_affected_by_purity_of_fire"]=4483,["immune_to_poison"]=2774,["immune_to_shock_while_affected_by_purity_of_lightning"]=4484,["immune_to_status_ailments_while_focused"]=4485,["immune_to_status_ailments_while_phased"]=2632,["impale_debuff_effect_+%"]=4486,["impale_phys_reduction_%_penalty"]=2152,["impaled_debuff_number_of_reflected_hits"]=4487,["impurity_cold_damage_taken_+%_final"]=4488,["impurity_fire_damage_taken_+%_final"]=4489,["impurity_lightning_damage_taken_+%_final"]=4490,["incinerate_damage_+%"]=2831,["incinerate_damage_+%_per_stage"]=3165,["incinerate_projectile_speed_+%"]=3058,["increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem"]=797,["infernal_blow_damage_+%"]=2802,["infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack"]=4491,["infernal_blow_physical_damage_%_to_add_as_fire_damage"]=3119,["infernal_blow_radius_+%"]=2970,["inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"]=4492,["inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"]=4493,["inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"]=4494,["inquisitor_aura_elemental_damage_+%_final"]=2749,["inspiration_charge_duration_+%"]=4495,["intelligence_+%"]=555,["intelligence_+%_per_equipped_unique"]=1780,["intelligence_skill_gem_level_+"]=4496,["intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%"]=4497,["iron_reflexes_rotation_active"]=5888,["is_blighted_map"]=4498,["is_hindered"]=3264,["is_petrified"]=2763,["item_drop_slots"]=3,["item_drops_on_death"]=1746,["item_found_quality_+%"]=888,["item_found_quantity_+%"]=879,["item_found_quantity_+%_if_wearing_a_magic_item"]=3364,["item_found_quantity_+%_per_chest_opened_recently"]=4499,["item_found_quantity_+%_per_white_socket_on_item"]=1898,["item_found_quantity_+%_when_on_low_life"]=881,["item_found_rarity_+%"]=883,["item_found_rarity_+%_if_wearing_a_normal_item"]=3363,["item_found_rarity_+%_per_white_socket_on_item"]=1900,["item_found_rarity_+%_when_on_low_life"]=886,["item_found_rarity_+%_while_phasing"]=1698,["item_found_rarity_+1%_per_X_rampage_stacks"]=4500,["item_found_relevancy_+%"]=889,["item_generation_can_have_multiple_crafted_mods"]=45,["item_generation_cannot_change_prefixes"]=41,["item_generation_cannot_change_suffixes"]=42,["item_generation_cannot_roll_attack_affixes"]=44,["item_generation_cannot_roll_caster_affixes"]=43,["item_generation_local_maximum_mod_required_level_override"]=46,["item_rarity_+%_while_using_flask"]=1923,["jorrhasts_blacksteel_animate_weapon_duration_+%_final"]=1964,["kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms"]=4501,["keystone_acrobatics"]=5844,["keystone_ailment_crit"]=5845,["keystone_ancestral_bond"]=5846,["keystone_avatar_of_fire"]=5847,["keystone_blood_magic"]=5848,["keystone_chaos_inoculation"]=5849,["keystone_conduit"]=5850,["keystone_crimson_dance"]=5851,["keystone_eldritch_battery"]=5852,["keystone_elemental_equilibrium"]=5853,["keystone_elemental_overload"]=5854,["keystone_ghost_reaver"]=5855,["keystone_iron_reflexes"]=5856,["keystone_mana_shield"]=5857,["keystone_minion_instability"]=5858,["keystone_mortal_conviction"]=5859,["keystone_pain_attunement"]=5860,["keystone_phase_acrobatics"]=5861,["keystone_point_blank"]=5862,["keystone_projectile_evasion"]=5863,["keystone_quiet_might"]=5864,["keystone_runebinder"]=5866,["keystone_shared_suffering"]=5867,["keystone_strong_bowman"]=5868,["keystone_unwavering_stance"]=5869,["keystone_vaal_pact"]=5870,["keystone_vampirism"]=5871,["keystone_wicked_ward"]=5872,["kill_enemy_on_hit_if_under_10%_life"]=1286,["kill_enemy_on_hit_if_under_20%_life"]=3366,["killed_monster_dropped_item_quantity_+%_when_frozen"]=1862,["killed_monster_dropped_item_rarity_+%_on_crit"]=1818,["killed_monster_dropped_item_rarity_+%_when_frozen"]=1865,["killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked"]=1863,["killed_monster_dropped_item_rarity_+%_when_shattered"]=2733,["killed_monster_dropped_item_rarity_+%_when_shocked"]=1864,["kills_count_twice_for_rampage_%"]=4502,["kinetic_blast_%_chance_for_additional_blast"]=3274,["kinetic_blast_damage_+%"]=2847,["kinetic_blast_radius_+%"]=2993,["knockback_distance_+%"]=1252,["knockback_on_counterattack_%"]=2785,["knockback_on_crit_with_bow"]=1190,["knockback_on_crit_with_staff"]=1191,["knockback_on_crit_with_wand"]=1192,["knockback_with_bow"]=831,["knockback_with_staff"]=832,["knockback_with_wand"]=833,["labyrinth_darkshrine_boss_room_traps_are_disabled"]=4503,["labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x"]=4504,["labyrinth_darkshrine_izaro_dropped_unique_items_+"]=4505,["labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys"]=4506,["labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%"]=4507,["labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth"]=4508,["lancing_steel_damage_+%"]=4509,["lancing_steel_impale_chance_%"]=4510,["lancing_steel_primary_proj_pierce_num"]=4511,["leap_slam_attack_speed_+%"]=3019,["leap_slam_damage_+%"]=2818,["leap_slam_radius_+%"]=2977,["leech_X_life_per_spell_cast"]=2001,["leech_energy_shield_instead_of_life"]=4512,level=1,["life_+%_with_no_corrupted_equipped_items"]=3355,["life_and_energy_shield_recovery_rate_+%"]=4513,["life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently"]=4514,["life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%"]=4515,["life_and_energy_shield_recovery_rate_+%_per_power_charge"]=4516,["life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence"]=4517,["life_and_mana_gain_per_hit"]=1006,["life_and_mana_leech_from_attack_damage_permyriad_if_killed_recently"]=4518,["life_and_mana_leech_from_physical_damage_permyriad"]=938,["life_es_and_mana_recovery_+%_for_4_seconds_on_killing_enemies_affected_by_your_degen"]=2692,["life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently"]=4519,["life_gain_on_ignited_enemy_hit"]=1008,["life_gain_per_target"]=1002,["life_gain_per_target_hit_while_affected_by_vitality"]=4520,["life_gain_per_target_if_have_used_a_vaal_skill_recently"]=4521,["life_gained_on_bleeding_enemy_hit"]=2726,["life_gained_on_block"]=1022,["life_gained_on_enemy_death_per_frenzy_charge"]=2101,["life_gained_on_enemy_death_per_level"]=2144,["life_gained_on_hit_per_enemy_status_ailment"]=2242,["life_gained_on_killing_ignited_enemies"]=1018,["life_gained_on_spell_hit_per_enemy_status_ailment"]=2243,["life_gained_on_taunting_enemy"]=1046,["life_leech_applies_to_enemies_%"]=2352,["life_leech_applies_to_energy_shield_on_full_life"]=4522,["life_leech_does_not_stop_at_full_life"]=2376,["life_leech_from_any_damage_permyriad"]=943,["life_leech_from_any_damage_permyriad_per_siphoning_charge"]=3481,["life_leech_from_any_damage_permyriad_while_affected_by_vitality"]=4523,["life_leech_from_any_damage_permyriad_while_focused"]=4524,["life_leech_from_attack_damage_permyriad_per_frenzy_charge"]=4525,["life_leech_from_attack_damage_permyriad_vs_bleeding_enemies"]=966,["life_leech_from_attack_damage_permyriad_vs_maimed_enemies"]=4526,["life_leech_from_attack_damage_permyriad_vs_poisoned_enemies"]=3332,["life_leech_from_attack_damage_permyriad_vs_taunted_enemies"]=4527,["life_leech_from_fire_damage_permyriad_while_affected_by_anger"]=4528,["life_leech_from_fire_damage_while_ignited_permyriad"]=4529,["life_leech_from_physical_attack_damage_permyriad"]=932,["life_leech_from_physical_damage_with_bow_permyriad"]=937,["life_leech_from_physical_damage_with_claw_permyriad"]=936,["life_leech_from_skills_used_by_totems_permyriad"]=1770,["life_leech_from_spell_damage_permyriad_if_shield_has_30%_block_chance"]=3514,["life_leech_from_spell_damage_permyriad_while_you_have_arcane_surge"]=4530,["life_leech_on_damage_taken_%_permyriad"]=4531,["life_leech_on_overkill_damage_%"]=2374,["life_leech_permyriad_from_elemental_damage_against_enemies_with_elemental_status_ailments"]=2488,["life_leech_permyriad_on_crit"]=965,["life_leech_permyriad_vs_cursed_enemies"]=3415,["life_leech_permyriad_vs_poisoned_enemies"]=4532,["life_leech_speed_+%"]=1400,["life_leech_speed_+%_per_equipped_corrupted_item"]=2268,["life_leech_speed_is_doubled"]=4533,["life_leech_uses_chaos_damage_when_X_corrupted_items_equipped"]=2279,["life_loss_%_per_minute_per_rage_while_not_losing_rage"]=4534,["life_per_level"]=4535,["life_recovery_+%_from_flasks_while_on_low_life"]=4536,["life_recovery_rate_+%"]=2141,["life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=4537,["life_recovery_rate_+%_while_affected_by_vitality"]=4538,["life_regen_per_minute_per_endurance_charge"]=2179,["life_regenerate_rate_per_second_%_while_totem_active"]=3212,["life_regeneration_per_minute_%_while_affected_by_guard_skill"]=4540,["life_regeneration_per_minute_%_while_fortified"]=2364,["life_regeneration_per_minute_%_while_frozen"]=2905,["life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield"]=3510,["life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield"]=3511,["life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield"]=3509,["life_regeneration_per_minute_per_active_buff"]=4539,["life_regeneration_per_minute_while_affected_by_vitality"]=4541,["life_regeneration_per_minute_while_ignited"]=4542,["life_regeneration_per_minute_while_moving"]=4543,["life_regeneration_per_minute_while_you_have_avians_flight"]=4544,["life_regeneration_per_minute_with_no_corrupted_equipped_items"]=3356,["life_regeneration_rate_+%"]=2140,["life_regeneration_rate_+%_while_es_full"]=2244,["life_regeneration_rate_per_minute_%"]=1182,["life_regeneration_rate_per_minute_%_if_have_been_hit_recently"]=4545,["life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=4546,["life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently"]=3376,["life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield"]=4547,["life_regeneration_rate_per_minute_%_per_endurance_charge"]=871,["life_regeneration_rate_per_minute_%_per_frenzy_charge"]=1807,["life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%"]=4548,["life_regeneration_rate_per_minute_%_per_power_charge"]=4549,["life_regeneration_rate_per_minute_%_per_raised_zombie"]=4550,["life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%"]=4551,["life_regeneration_rate_per_minute_%_when_on_chilled_ground"]=1391,["life_regeneration_rate_per_minute_%_when_on_low_life"]=1183,["life_regeneration_rate_per_minute_%_while_moving"]=4552,["life_regeneration_rate_per_minute_%_while_using_flask"]=4553,["life_regeneration_rate_per_minute_%_with_400_or_more_strength"]=4554,["life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item"]=2269,["life_regeneration_rate_per_minute_per_level"]=2130,["life_reserved_by_stat_%"]=1636,["light_radius_+%"]=1692,["light_radius_+%_while_phased"]=1700,["light_radius_additive_modifiers_apply_to_area_%_value"]=1690,["light_radius_additive_modifiers_apply_to_damage"]=1691,["light_radius_increases_apply_to_accuracy"]=4555,["light_radius_increases_apply_to_area_of_effect"]=4556,["light_radius_scales_with_energy_shield"]=1908,["lightning_and_chaos_damage_resistance_%"]=4557,["lightning_arrow_damage_+%"]=2819,["lightning_arrow_maximum_number_of_extra_targets"]=3284,["lightning_arrow_radius_+%"]=2978,["lightning_critical_strike_chance_+%"]=792,["lightning_critical_strike_multiplier_+"]=817,["lightning_damage_%_taken_from_mana_before_life"]=3318,["lightning_damage_%_to_add_as_chaos"]=1177,["lightning_damage_%_to_add_as_chaos_per_power_charge"]=4560,["lightning_damage_%_to_add_as_cold"]=1176,["lightning_damage_%_to_add_as_fire"]=1175,["lightning_damage_+%"]=690,["lightning_damage_+%_per_10_intelligence"]=3289,["lightning_damage_+%_per_frenzy_charge"]=2100,["lightning_damage_+%_per_lightning_resistance_above_75"]=4559,["lightning_damage_+%_while_affected_by_herald_of_thunder"]=4561,["lightning_damage_+%_while_affected_by_wrath"]=4562,["lightning_damage_can_chill"]=2044,["lightning_damage_can_freeze"]=2050,["lightning_damage_can_ignite"]=4558,["lightning_damage_cannot_shock"]=2056,["lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=4563,["lightning_damage_resistance_+%"]=924,["lightning_damage_resistance_is_%"]=921,["lightning_damage_taken_%_as_cold"]=2349,["lightning_damage_taken_%_as_fire"]=2347,["lightning_damage_taken_+"]=4564,["lightning_damage_taken_+%"]=2560,["lightning_damage_taken_per_minute_per_power_charge_if_have_crit_recently"]=5824,["lightning_damage_taken_when_hit_by_attack"]=1459,["lightning_damage_to_return_to_melee_attacker"]=1449,["lightning_damage_to_return_when_hit"]=1454,["lightning_damage_with_attack_skills_+%"]=4565,["lightning_damage_with_spell_skills_+%"]=4566,["lightning_dot_multiplier_+"]=613,["lightning_explosion_mine_aura_effect_+%"]=4567,["lightning_explosion_mine_damage_+%"]=4568,["lightning_explosion_mine_throwing_speed_+%"]=4569,["lightning_golem_damage_+%"]=2860,["lightning_golem_elemental_resistances_%"]=3148,["lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning"]=4570,["lightning_skill_gem_level_+"]=4571,["lightning_skills_chance_to_poison_on_hit_%"]=4572,["lightning_spell_physical_damage_%_to_convert_to_lightning"]=4573,["lightning_spell_skill_gem_level_+"]=899,["lightning_strike_additional_pierce"]=3115,["lightning_strike_damage_+%"]=2803,["lightning_strike_num_of_additional_projectiles"]=3106,["lightning_tendrils_critical_strike_chance_+%"]=3270,["lightning_tendrils_damage_+%"]=2804,["lightning_tendrils_radius_+%"]=2971,["lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit"]=4574,["lightning_tower_trap_additional_number_of_beams"]=4575,["lightning_tower_trap_cast_speed_+%"]=4576,["lightning_tower_trap_cooldown_speed_+%"]=4577,["lightning_tower_trap_damage_+%"]=4578,["lightning_tower_trap_duration_+%"]=4579,["lightning_trap_additional_pierce"]=3116,["lightning_trap_cooldown_speed_+%"]=2588,["lightning_trap_damage_+%"]=2586,["lightning_trap_lightning_resistance_penetration_%"]=4580,["lightning_trap_number_of_additional_projectiles"]=2587,["lightning_trap_shock_effect_+%"]=4581,["lightning_warp_cast_speed_+%"]=3034,["lightning_warp_damage_+%"]=2820,["lightning_warp_duration_+%"]=3094,["local_accuracy_rating"]=1271,["local_accuracy_rating_+%"]=1272,["local_additional_block_chance_%"]=1488,["local_all_sockets_are_white"]=1157,["local_all_sockets_linked"]=52,["local_always_hit"]=1290,["local_apply_extra_herald_mod_when_synthesised"]=5825,["local_armour_and_energy_shield_+%"]=850,["local_armour_and_evasion_+%"]=851,["local_armour_and_evasion_and_energy_shield_+%"]=853,["local_attack_and_cast_speed_+%_if_item_corrupted"]=4582,["local_attack_cast_movement_speed_+%_during_flask_effect"]=4583,["local_attack_cast_movement_speed_+%_per_second_during_flask_effect"]=4584,["local_attack_damage_+%_if_item_corrupted"]=4585,["local_attack_maximum_added_physical_damage_per_3_levels"]=622,["local_attack_minimum_added_physical_damage_per_3_levels"]=622,["local_attack_speed_+%"]=722,["local_attacks_impale_on_hit_%_chance"]=4586,["local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed"]=4587,["local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed"]=4588,["local_attacks_with_this_weapon_elemental_damage_+%"]=2098,["local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion"]=2116,["local_attribute_requirements_+%"]=509,["local_base_evasion_rating"]=846,["local_base_physical_damage_reduction_rating"]=837,["local_bleed_on_critical_strike_chance_%"]=4589,["local_bleed_on_hit"]=1673,["local_can_only_deal_damage_with_this_weapon"]=1882,["local_can_only_socket_corrupted_gems"]=4590,["local_can_socket_gems_ignoring_colour"]=54,["local_cannot_be_used_with_chaos_innoculation"]=510,["local_chance_bleed_on_hit_%_vs_ignited_enemies"]=3690,["local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon"]=4591,["local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon"]=4592,["local_chance_for_poison_damage_+300%_final_inflicted_with_weapon"]=4593,["local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire"]=5894,["local_chance_to_bleed_on_crit_50%"]=4594,["local_chance_to_bleed_on_hit_%"]=1676,["local_chance_to_bleed_on_hit_25%"]=1674,["local_chance_to_bleed_on_hit_50%"]=1675,["local_chance_to_blind_on_hit_%"]=1501,["local_chance_to_intimidate_on_hit_%"]=4595,["local_chance_to_poison_on_hit_%_during_flask_effect"]=4596,["local_chaos_damage_taken_per_minute_during_flask_effect"]=501,["local_chaos_penetration_%"]=4597,["local_charges_added_+%"]=461,["local_charges_used_+%"]=462,["local_chill_on_hit_ms_if_in_off_hand"]=4598,["local_cold_penetration_%"]=2925,["local_connectivity_of_sockets_+%"]=1161,["local_consecrate_ground_on_flask_use_radius"]=2754,["local_critical_strike_chance_+%"]=774,["local_critical_strike_chance_+%_if_item_corrupted"]=4599,["local_critical_strike_multiplier_+"]=799,["local_crits_have_culling_strike"]=4600,["local_culling_strike_if_crit_recently"]=4601,["local_culling_strike_vs_bleeding_enemies"]=4602,["local_damage_+%_if_item_corrupted"]=4603,["local_damage_taken_+%_if_item_corrupted"]=4604,["local_dexterity_requirement_+"]=511,["local_dexterity_requirement_+%"]=512,["local_disable_gem_experience_gain"]=1158,["local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill"]=397,["local_display_aura_allies_have_culling_strike"]=1721,["local_display_aura_allies_have_increased_item_rarity_+%"]=885,["local_display_aura_base_chaos_damage_to_deal_per_minute"]=1860,["local_display_aura_curse_effect_on_self_+%"]=1869,["local_display_aura_damage_+%"]=1868,["local_display_aura_damage_+%_allies_only"]=2072,["local_display_aura_life_regeneration_rate_per_minute_%"]=2169,["local_display_aura_mana_regeneration_rate_+%"]=2174,["local_display_cast_animate_weapon_on_kill_%_chance"]=398,["local_display_cast_cold_aegis_on_gain_skill"]=399,["local_display_cast_elemental_aegis_on_gain_skill"]=400,["local_display_cast_fire_aegis_on_gain_skill"]=401,["local_display_cast_level_1_summon_lesser_shrine_on_kill_%"]=357,["local_display_cast_level_X_consecrate_on_crit"]=358,["local_display_cast_level_x_manifest_rageblade"]=2515,["local_display_cast_level_x_shock_ground_when_hit"]=359,["local_display_cast_lightning_aegis_on_gain_skill"]=402,["local_display_cast_lightning_on_critical_strike"]=403,["local_display_curse_enemies_with_socketed_curse_on_hit_%_chance"]=4605,["local_display_every_10_seconds_physical_damage_%_to_add_as_fire_for_3_seconds"]=4606,["local_display_fire_and_cold_resist_debuff"]=4607,["local_display_fire_burst_on_hit_%"]=404,["local_display_gain_power_charge_on_spending_mana"]=4608,["local_display_grant_level_x_petrification_statue"]=360,["local_display_grant_void_arrow_every_x_ms"]=4609,["local_display_grants_level_X_envy"]=348,["local_display_grants_level_X_reckoning"]=349,["local_display_grants_level_X_vengeance"]=324,["local_display_grants_level_x_blood_offering_skill"]=362,["local_display_grants_level_x_curse_pillar_skill"]=363,["local_display_grants_level_x_despair"]=325,["local_display_grants_level_x_summon_stone_golem"]=323,["local_display_grants_skill_abyssal_cry_level"]=364,["local_display_grants_skill_accuracy_crits_aura_level"]=365,["local_display_grants_skill_anger_level"]=343,["local_display_grants_skill_bear_trap_level"]=322,["local_display_grants_skill_bird_aspect_level"]=366,["local_display_grants_skill_blight_level"]=350,["local_display_grants_skill_bone_armour"]=367,["local_display_grants_skill_cat_aspect_level"]=368,["local_display_grants_skill_clarity_level"]=336,["local_display_grants_skill_conductivity_level"]=331,["local_display_grants_skill_crab_aspect_level"]=369,["local_display_grants_skill_critical_weakness_level"]=340,["local_display_grants_skill_death_aura_level"]=355,["local_display_grants_skill_decoy_totem_level"]=370,["local_display_grants_skill_determination_level"]=344,["local_display_grants_skill_discipline_level"]=347,["local_display_grants_skill_doryanis_touch_level"]=353,["local_display_grants_skill_elemental_weakness_level"]=352,["local_display_grants_skill_enduring_cry_level"]=371,["local_display_grants_skill_flammability_level"]=329,["local_display_grants_skill_frostbite_level"]=332,["local_display_grants_skill_frostblink_level"]=319,["local_display_grants_skill_gluttony_of_elements_level"]=339,["local_display_grants_skill_grace_level"]=345,["local_display_grants_skill_haste_level"]=334,["local_display_grants_skill_hatred_level"]=342,["local_display_grants_skill_herald_of_ash_level"]=372,["local_display_grants_skill_herald_of_ice_level"]=373,["local_display_grants_skill_herald_of_thunder_level"]=374,["local_display_grants_skill_icestorm_level"]=356,["local_display_grants_skill_intimidating_cry_level"]=375,["local_display_grants_skill_lightning_warp_level"]=376,["local_display_grants_skill_malevolence_level"]=377,["local_display_grants_skill_pride_level"]=378,["local_display_grants_skill_projectile_weakness_level"]=351,["local_display_grants_skill_purity_level"]=338,["local_display_grants_skill_purity_of_cold_level"]=326,["local_display_grants_skill_purity_of_fire_level"]=320,["local_display_grants_skill_purity_of_lightning_level"]=328,["local_display_grants_skill_rallying_cry_level"]=379,["local_display_grants_skill_scorching_ray_level"]=346,["local_display_grants_skill_smite_level"]=380,["local_display_grants_skill_spider_aspect_level"]=381,["local_display_grants_skill_temporal_chains_level"]=333,["local_display_grants_skill_vaal_impurity_of_fire_level"]=382,["local_display_grants_skill_vaal_impurity_of_ice_level"]=383,["local_display_grants_skill_vaal_impurity_of_lightning_level"]=384,["local_display_grants_skill_vitality_level"]=337,["local_display_grants_skill_vulnerability_level"]=354,["local_display_grants_skill_wrath_level"]=341,["local_display_grants_skill_zealotry_level"]=385,["local_display_grants_summon_beast_companion"]=327,["local_display_has_additional_implicit_mod"]=335,["local_display_hits_against_nearby_enemies_critical_strike_chance_+50%"]=2568,["local_display_illusory_warp_level"]=321,["local_display_manifest_rageblade_destroy_on_end_rampage"]=2517,["local_display_manifest_rageblade_disables_weapons"]=2516,["local_display_minions_grant_onslaught"]=2518,["local_display_molten_burst_on_melee_hit_%"]=405,["local_display_movement_speed_+%_for_you_and_nearby_allies"]=4610,["local_display_nearby_allies_action_speed_cannot_be_reduced_below_base"]=4611,["local_display_nearby_allies_critical_strike_multiplier_+"]=4612,["local_display_nearby_allies_extra_damage_rolls"]=4613,["local_display_nearby_allies_have_fortify"]=4614,["local_display_nearby_enemies_all_resistances_%"]=2170,["local_display_nearby_enemies_are_blinded"]=2567,["local_display_nearby_enemies_are_intimidated"]=4615,["local_display_nearby_enemies_cannot_crit"]=4616,["local_display_nearby_enemies_critical_strike_chance_+%_against_self"]=2569,["local_display_nearby_enemies_flask_charges_granted_+%"]=2570,["local_display_nearby_enemies_movement_speed_+%"]=2571,["local_display_nearby_enemies_stun_and_block_recovery_+%"]=2572,["local_display_nearby_enemies_take_X_chaos_damage_per_minute"]=3358,["local_display_nearby_enemies_take_X_lightning_damage_per_minute"]=2331,["local_display_nearby_enemy_chaos_damage_resistance_%"]=4617,["local_display_nearby_enemy_cold_damage_resistance_%"]=4618,["local_display_nearby_enemy_fire_damage_resistance_%"]=4619,["local_display_nearby_enemy_lightning_damage_resistance_%"]=4620,["local_display_nearby_enemy_physical_damage_taken_+%"]=4621,["local_display_raise_spider_on_kill_%_chance"]=406,["local_display_socketed_attack_damage_+%_final"]=288,["local_display_socketed_attacks_additional_critical_strike_chance"]=289,["local_display_socketed_attacks_critical_strike_multiplier_+"]=290,["local_display_socketed_attacks_mana_cost_+"]=291,["local_display_socketed_aura_gems_reserve_no_mana"]=274,["local_display_socketed_curse_gems_have_mana_reservation_+%"]=313,["local_display_socketed_curse_gems_supported_by_level_x_blasphemy"]=265,["local_display_socketed_gems_additional_critical_strike_chance_%"]=285,["local_display_socketed_gems_attack_and_cast_speed_+%_final"]=292,["local_display_socketed_gems_chain_X_additional_times"]=284,["local_display_socketed_gems_damage_over_time_+%_final"]=305,["local_display_socketed_gems_elemental_damage_+%_final"]=293,["local_display_socketed_gems_get_added_chaos_damage_level"]=219,["local_display_socketed_gems_get_added_fire_damage_level"]=222,["local_display_socketed_gems_get_added_lightning_damage_level"]=227,["local_display_socketed_gems_get_additional_accuracy_level"]=236,["local_display_socketed_gems_get_blind_level"]=230,["local_display_socketed_gems_get_blood_magic_level"]=220,["local_display_socketed_gems_get_cast_on_crit_level"]=232,["local_display_socketed_gems_get_cast_on_death_level"]=234,["local_display_socketed_gems_get_cast_when_stunned_level"]=233,["local_display_socketed_gems_get_cold_to_fire_level"]=223,["local_display_socketed_gems_get_concentrated_area_level"]=214,["local_display_socketed_gems_get_curse_reflection"]=282,["local_display_socketed_gems_get_echo_level"]=243,["local_display_socketed_gems_get_elemental_proliferation_level"]=226,["local_display_socketed_gems_get_faster_attacks_level"]=229,["local_display_socketed_gems_get_faster_cast_level"]=249,["local_display_socketed_gems_get_faster_projectiles_level"]=238,["local_display_socketed_gems_get_fire_penetration_level"]=225,["local_display_socketed_gems_get_flee_level"]=248,["local_display_socketed_gems_get_fork_level"]=241,["local_display_socketed_gems_get_generosity_level"]=245,["local_display_socketed_gems_get_increased_area_level"]=98,["local_display_socketed_gems_get_increased_critical_damage_level"]=240,["local_display_socketed_gems_get_increased_duration_level"]=221,["local_display_socketed_gems_get_iron_will_level"]=250,["local_display_socketed_gems_get_item_quantity_+%"]=281,["local_display_socketed_gems_get_life_leech_level"]=239,["local_display_socketed_gems_get_mana_multplier_%"]=275,["local_display_socketed_gems_get_melee_physical_damage_level"]=228,["local_display_socketed_gems_get_melee_splash_level"]=231,["local_display_socketed_gems_get_multistrike_level"]=237,["local_display_socketed_gems_get_pierce_level"]=258,["local_display_socketed_gems_get_reduced_mana_cost_level"]=244,["local_display_socketed_gems_get_remote_mine_level"]=247,["local_display_socketed_gems_get_spell_totem_level"]=224,["local_display_socketed_gems_get_stun_level"]=235,["local_display_socketed_gems_get_trap_level"]=215,["local_display_socketed_gems_get_weapon_elemental_damage_level"]=242,["local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage"]=279,["local_display_socketed_gems_have_blood_magic"]=272,["local_display_socketed_gems_have_chance_to_flee_%"]=280,["local_display_socketed_gems_have_elemental_equilibrium"]=306,["local_display_socketed_gems_have_elemental_equilibrium_effect_pluspercent"]=308,["local_display_socketed_gems_have_iron_will"]=283,["local_display_socketed_gems_have_mana_reservation_+%"]=273,["local_display_socketed_gems_have_number_of_additional_projectiles"]=309,["local_display_socketed_gems_mana_cost_-%"]=294,["local_display_socketed_gems_maximum_added_fire_damage"]=295,["local_display_socketed_gems_minimum_added_fire_damage"]=295,["local_display_socketed_gems_physical_damage_%_to_add_as_lightning"]=296,["local_display_socketed_gems_projectiles_nova"]=310,["local_display_socketed_gems_skill_effect_duration_+%"]=311,["local_display_socketed_gems_supported_by_X_lesser_poison"]=268,["local_display_socketed_gems_supported_by_X_vile_toxins"]=267,["local_display_socketed_gems_supported_by_level_x_arcane_surge"]=99,["local_display_socketed_gems_supported_by_level_x_aura_duration"]=100,["local_display_socketed_gems_supported_by_level_x_barrage"]=101,["local_display_socketed_gems_supported_by_level_x_bloodlust"]=102,["local_display_socketed_gems_supported_by_level_x_bonechill"]=103,["local_display_socketed_gems_supported_by_level_x_brutality"]=104,["local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken"]=105,["local_display_socketed_gems_supported_by_level_x_cast_on_kill"]=106,["local_display_socketed_gems_supported_by_level_x_cast_while_channelling"]=107,["local_display_socketed_gems_supported_by_level_x_chain"]=108,["local_display_socketed_gems_supported_by_level_x_chance_to_bleed"]=109,["local_display_socketed_gems_supported_by_level_x_chance_to_ignite"]=110,["local_display_socketed_gems_supported_by_level_x_chaos_attacks"]=178,["local_display_socketed_gems_supported_by_level_x_charged_mines"]=111,["local_display_socketed_gems_supported_by_level_x_close_combat"]=112,["local_display_socketed_gems_supported_by_level_x_cluster_trap"]=216,["local_display_socketed_gems_supported_by_level_x_culling_strike"]=113,["local_display_socketed_gems_supported_by_level_x_curse_on_hit"]=114,["local_display_socketed_gems_supported_by_level_x_deadly_ailments"]=115,["local_display_socketed_gems_supported_by_level_x_deathmark"]=4622,["local_display_socketed_gems_supported_by_level_x_decay"]=116,["local_display_socketed_gems_supported_by_level_x_efficacy"]=117,["local_display_socketed_gems_supported_by_level_x_elemental_focus"]=118,["local_display_socketed_gems_supported_by_level_x_elemental_penetration"]=119,["local_display_socketed_gems_supported_by_level_x_empower"]=120,["local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun"]=271,["local_display_socketed_gems_supported_by_level_x_energy_leech"]=121,["local_display_socketed_gems_supported_by_level_x_enhance"]=122,["local_display_socketed_gems_supported_by_level_x_enlighten"]=123,["local_display_socketed_gems_supported_by_level_x_feeding_frenzy"]=124,["local_display_socketed_gems_supported_by_level_x_fire_penetration"]=125,["local_display_socketed_gems_supported_by_level_x_fortify"]=246,["local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger"]=126,["local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles"]=127,["local_display_socketed_gems_supported_by_level_x_greater_spell_echo"]=128,["local_display_socketed_gems_supported_by_level_x_greater_volley"]=129,["local_display_socketed_gems_supported_by_level_x_ignite_proliferation"]=130,["local_display_socketed_gems_supported_by_level_x_immolate"]=131,["local_display_socketed_gems_supported_by_level_x_impale"]=132,["local_display_socketed_gems_supported_by_level_x_increased_burning_damage"]=133,["local_display_socketed_gems_supported_by_level_x_increased_critical_strikes"]=134,["local_display_socketed_gems_supported_by_level_x_increased_duration"]=135,["local_display_socketed_gems_supported_by_level_x_infernal_legion"]=136,["local_display_socketed_gems_supported_by_level_x_iron_grip"]=137,["local_display_socketed_gems_supported_by_level_x_item_quantity"]=138,["local_display_socketed_gems_supported_by_level_x_item_rarity"]=139,["local_display_socketed_gems_supported_by_level_x_life_gain_on_hit"]=140,["local_display_socketed_gems_supported_by_level_x_lightning_penetration"]=141,["local_display_socketed_gems_supported_by_level_x_maim"]=142,["local_display_socketed_gems_supported_by_level_x_meat_shield"]=143,["local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life"]=144,["local_display_socketed_gems_supported_by_level_x_minefield"]=145,["local_display_socketed_gems_supported_by_level_x_mirage_archer"]=146,["local_display_socketed_gems_supported_by_level_x_multi_totem"]=147,["local_display_socketed_gems_supported_by_level_x_multi_trap"]=217,["local_display_socketed_gems_supported_by_level_x_multicast"]=148,["local_display_socketed_gems_supported_by_level_x_nightblade"]=4623,["local_display_socketed_gems_supported_by_level_x_onslaught"]=149,["local_display_socketed_gems_supported_by_level_x_parallel_projectiles"]=150,["local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage"]=151,["local_display_socketed_gems_supported_by_level_x_physical_to_lightning"]=152,["local_display_socketed_gems_supported_by_level_x_point_blank"]=153,["local_display_socketed_gems_supported_by_level_x_poison"]=154,["local_display_socketed_gems_supported_by_level_x_power_charge_on_crit"]=155,["local_display_socketed_gems_supported_by_level_x_pulverise"]=156,["local_display_socketed_gems_supported_by_level_x_rage"]=157,["local_display_socketed_gems_supported_by_level_x_rain"]=158,["local_display_socketed_gems_supported_by_level_x_ranged_attack_totem"]=159,["local_display_socketed_gems_supported_by_level_x_rapid_decay"]=160,["local_display_socketed_gems_supported_by_level_x_reduced_block_chance"]=161,["local_display_socketed_gems_supported_by_level_x_reduced_duration"]=162,["local_display_socketed_gems_supported_by_level_x_remote_mine_2"]=163,["local_display_socketed_gems_supported_by_level_x_ruthless"]=164,["local_display_socketed_gems_supported_by_level_x_shockwave"]=165,["local_display_socketed_gems_supported_by_level_x_slower_projectiles"]=166,["local_display_socketed_gems_supported_by_level_x_spell_cascade"]=167,["local_display_socketed_gems_supported_by_level_x_spell_focus"]=168,["local_display_socketed_gems_supported_by_level_x_spirit_strike"]=169,["local_display_socketed_gems_supported_by_level_x_storm_barrier"]=170,["local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance"]=171,["local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill"]=172,["local_display_socketed_gems_supported_by_level_x_swift_assembly"]=173,["local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage"]=218,["local_display_socketed_gems_supported_by_level_x_trap_cooldown"]=174,["local_display_socketed_gems_supported_by_level_x_unbound_ailments"]=175,["local_display_socketed_gems_supported_by_level_x_unleash"]=176,["local_display_socketed_gems_supported_by_level_x_void_manipulation"]=177,["local_display_socketed_gems_supported_by_pierce_level"]=257,["local_display_socketed_gems_supported_by_x_added_cold_damage"]=263,["local_display_socketed_gems_supported_by_x_cold_penetration"]=261,["local_display_socketed_gems_supported_by_x_controlled_destruction"]=270,["local_display_socketed_gems_supported_by_x_hypothermia"]=259,["local_display_socketed_gems_supported_by_x_ice_bite"]=260,["local_display_socketed_gems_supported_by_x_increased_critical_damage_level"]=255,["local_display_socketed_gems_supported_by_x_increased_minion_damage_level"]=254,["local_display_socketed_gems_supported_by_x_increased_minion_life_level"]=252,["local_display_socketed_gems_supported_by_x_increased_minion_speed_level"]=256,["local_display_socketed_gems_supported_by_x_innervate_level"]=266,["local_display_socketed_gems_supported_by_x_knockback_level"]=251,["local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level"]=253,["local_display_socketed_gems_supported_by_x_mana_leech"]=262,["local_display_socketed_gems_supported_by_x_reduced_mana_cost"]=264,["local_display_socketed_golem_attack_and_cast_speed_+%"]=87,["local_display_socketed_golem_buff_effect_+%"]=88,["local_display_socketed_golem_chance_to_taunt_%"]=89,["local_display_socketed_golem_life_regeneration_rate_per_minute_%"]=90,["local_display_socketed_golem_skill_grants_onslaught_when_summoned"]=91,["local_display_socketed_golem_skills_minions_life_%_to_add_as_energy_shield"]=92,["local_display_socketed_melee_gems_have_area_radius_+%"]=276,["local_display_socketed_movement_skills_have_no_mana_cost"]=297,["local_display_socketed_non_curse_aura_gems_effect_+%"]=307,["local_display_socketed_red_gems_have_%_of_physical_damage_to_add_as_fire"]=277,["local_display_socketed_skills_attack_speed_+%"]=298,["local_display_socketed_skills_cast_speed_+%"]=299,["local_display_socketed_skills_fork"]=300,["local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation"]=278,["local_display_socketed_spell_damage_+%_final"]=301,["local_display_socketed_spells_additional_critical_strike_chance"]=302,["local_display_socketed_spells_critical_strike_multiplier_+"]=303,["local_display_socketed_spells_mana_cost_+%"]=304,["local_display_socketed_spells_repeat_count"]=286,["local_display_socketed_trap_skills_create_smoke_cloud"]=312,["local_display_summon_harbinger_x_on_equip"]=330,["local_display_summon_raging_spirit_on_kill_%"]=407,["local_display_summon_wolf_on_kill_%"]=408,["local_display_supported_by_level_x_awakened_added_chaos_damage"]=179,["local_display_supported_by_level_x_awakened_added_cold_damage"]=180,["local_display_supported_by_level_x_awakened_added_fire_damage"]=181,["local_display_supported_by_level_x_awakened_added_lightning_damage"]=182,["local_display_supported_by_level_x_awakened_ancestral_call"]=183,["local_display_supported_by_level_x_awakened_arrow_nova"]=184,["local_display_supported_by_level_x_awakened_blasphemy"]=185,["local_display_supported_by_level_x_awakened_brutality"]=186,["local_display_supported_by_level_x_awakened_burning_damage"]=187,["local_display_supported_by_level_x_awakened_cast_on_crit"]=188,["local_display_supported_by_level_x_awakened_cast_while_channelling"]=189,["local_display_supported_by_level_x_awakened_chain"]=190,["local_display_supported_by_level_x_awakened_cold_penetration"]=191,["local_display_supported_by_level_x_awakened_controlled_destruction"]=192,["local_display_supported_by_level_x_awakened_curse_on_hit"]=193,["local_display_supported_by_level_x_awakened_deadly_ailments"]=194,["local_display_supported_by_level_x_awakened_elemental_focus"]=195,["local_display_supported_by_level_x_awakened_fire_penetration"]=196,["local_display_supported_by_level_x_awakened_fork"]=197,["local_display_supported_by_level_x_awakened_generosity"]=198,["local_display_supported_by_level_x_awakened_greater_multiple_projectiles"]=199,["local_display_supported_by_level_x_awakened_increased_area_of_effect"]=200,["local_display_supported_by_level_x_awakened_lightning_penetration"]=201,["local_display_supported_by_level_x_awakened_melee_physical_damage"]=202,["local_display_supported_by_level_x_awakened_melee_splash"]=203,["local_display_supported_by_level_x_awakened_minion_damage"]=204,["local_display_supported_by_level_x_awakened_multistrike"]=205,["local_display_supported_by_level_x_awakened_spell_cascade"]=206,["local_display_supported_by_level_x_awakened_spell_echo"]=207,["local_display_supported_by_level_x_awakened_swift_affliction"]=208,["local_display_supported_by_level_x_awakened_unbound_ailments"]=209,["local_display_supported_by_level_x_awakened_unleash"]=210,["local_display_supported_by_level_x_awakened_vicious_projectiles"]=211,["local_display_supported_by_level_x_awakened_void_manipulation"]=212,["local_display_supported_by_level_x_awakened_weapon_elemental_damage"]=213,["local_display_trigger_commandment_of_inferno_on_crit_%"]=409,["local_display_trigger_death_walk_on_equip_level"]=411,["local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance"]=412,["local_display_trigger_level_1_blood_rage_on_kill_chance_%"]=413,["local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance"]=414,["local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance"]=415,["local_display_trigger_level_20_shade_form_on_skill_use_%"]=416,["local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%"]=417,["local_display_trigger_level_X_blinding_aura_skill_on_equip"]=361,["local_display_trigger_level_X_darktongue_kiss_on_curse"]=386,["local_display_trigger_level_X_feast_of_flesh_every_5_seconds"]=418,["local_display_trigger_level_X_offering_every_5_seconds"]=419,["local_display_trigger_level_X_void_gaze_on_skill_use"]=387,["local_display_trigger_level_x_create_fungal_ground_on_kill"]=410,["local_display_trigger_level_x_curse_nova_on_hit_while_cursed"]=420,["local_display_trigger_level_x_icicle_nova_on_kill_vs_frozen_enemy"]=421,["local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth"]=422,["local_display_trigger_level_x_rain_of_arrows_on_bow_attack"]=423,["local_display_trigger_level_x_reflection_skill_on_equip"]=424,["local_display_trigger_level_x_smoke_cloud_on_trap_triggered"]=425,["local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge"]=426,["local_display_trigger_level_x_storm_cascade_on_attack"]=388,["local_display_trigger_level_x_summon_phantasm_on_corpse_consume"]=427,["local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow"]=428,["local_display_trigger_socketed_curses_on_casting_curse_%_chance"]=429,["local_display_trigger_temporal_anomaly_when_hit_%_chance"]=430,["local_display_trigger_tentacle_smash_on_kill_%_chance"]=431,["local_display_trigger_void_sphere_on_kill_%_chance"]=432,["local_display_use_level_X_abyssal_cry_on_hit"]=433,["local_display_you_get_elemental_ailments_instead_of_allies"]=4624,["local_double_damage_to_chilled_enemies"]=2922,["local_double_damage_with_attacks"]=4625,["local_elemental_penetration_%"]=2923,["local_energy_shield"]=856,["local_energy_shield_+%"]=857,["local_evasion_and_energy_shield_+%"]=852,["local_evasion_rating_+%"]=848,["local_evasion_rating_and_energy_shield"]=4626,["local_extra_max_charges"]=460,["local_extra_socket"]=1154,["local_fire_penetration_%"]=2924,["local_flask_additional_physical_damage_reduction_%"]=2775,["local_flask_adds_knockback_during_flask_effect"]=2216,["local_flask_adds_knockback_while_healing"]=482,["local_flask_amount_to_recover_+%"]=445,["local_flask_amount_to_recover_+%_when_on_low_life"]=448,["local_flask_area_of_consecrated_ground_+%"]=4627,["local_flask_area_of_effect_+%_during_flask_effect"]=4628,["local_flask_armour_+%_while_healing"]=468,["local_flask_attack_speed_+%_while_healing"]=471,["local_flask_avoid_stun_chance_%_during_flask_effect"]=4629,["local_flask_bleeding_immunity_while_healing"]=504,["local_flask_cannot_be_stunned_during_flask_effect"]=3410,["local_flask_cast_speed_+%_while_healing"]=472,["local_flask_chance_to_freeze_shock_ignite_%_while_healing"]=489,["local_flask_chill_and_freeze_immunity_while_healing"]=502,["local_flask_chilled_ground_on_flask_use_radius"]=2786,["local_flask_consumes_x_endurance_charges_on_use"]=1852,["local_flask_consumes_x_frenzy_charges_on_use"]=1851,["local_flask_consumes_x_power_charges_on_use"]=1853,["local_flask_critical_strike_chance_+%_during_flask_effect"]=4631,["local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect"]=4630,["local_flask_curse_immunity_while_healing"]=505,["local_flask_deals_%_maximum_life_as_chaos_damage_on_use"]=1855,["local_flask_deciseconds_to_recover"]=447,["local_flask_dispels_burning"]=457,["local_flask_dispels_freeze_and_chill"]=456,["local_flask_duration_+%"]=2787,["local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground"]=4632,["local_flask_effect_+%"]=2772,["local_flask_effect_not_removed_at_full_mana"]=4633,["local_flask_enemies_ignited_during_flask_effect_damage_taken_+%"]=493,["local_flask_energy_shield_+%_while_healing"]=470,["local_flask_energy_shield_leech_from_spell_damage_permyriad_while_healing"]=477,["local_flask_evasion_+%_while_healing"]=469,["local_flask_gain_X_charges_on_consuming_ignited_corpse"]=463,["local_flask_gain_X_charges_when_hit"]=466,["local_flask_gain_endurance_charges_on_use"]=1858,["local_flask_gain_frenzy_charges_on_use"]=1857,["local_flask_gain_power_charges_on_use"]=1856,["local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge"]=1854,["local_flask_gain_x_vaal_souls_on_use"]=4634,["local_flask_ghost_reaver"]=2928,["local_flask_ignite_immunity_while_healing"]=500,["local_flask_immune_to_damage"]=2957,["local_flask_is_petrified"]=2770,["local_flask_item_found_rarity_+%_during_flask_effect"]=4635,["local_flask_life_gain_on_skill_use_%_mana_cost"]=488,["local_flask_life_leech_from_attack_damage_permyriad_while_healing"]=478,["local_flask_life_leech_on_damage_taken_%_permyriad_during_flask_effect"]=4636,["local_flask_life_leech_permyriad_while_healing"]=479,["local_flask_life_recovery_from_flasks_also_recovers_energy_shield"]=4637,["local_flask_life_regeneration_per_minute_%_during_flask_effect"]=4638,["local_flask_life_to_recover"]=441,["local_flask_life_to_recover_+%"]=442,["local_flask_lose_all_charges_on_entering_new_area"]=3411,["local_flask_mana_leech_permyriad_while_healing"]=481,["local_flask_mana_recovery_occurs_instantly_at_end_of_flask_effect"]=451,["local_flask_mana_to_recover"]=443,["local_flask_mana_to_recover_+%"]=444,["local_flask_minion_heal_%"]=497,["local_flask_movement_speed_+%_while_healing"]=473,["local_flask_no_mana_recovery_during_effect"]=4639,["local_flask_number_of_additional_projectiles_during_flask_effect"]=490,["local_flask_poison_immunity_during_flask_effect"]=2773,["local_flask_prevents_death_while_healing"]=499,["local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect"]=496,["local_flask_recover_%_maximum_life_on_kill_during_flask_effect"]=494,["local_flask_recover_%_maximum_mana_on_kill_during_flask_effect"]=495,["local_flask_recover_instantly_when_on_low_life"]=449,["local_flask_recovers_instantly"]=452,["local_flask_recovery_amount_%_to_recover_instantly"]=450,["local_flask_recovery_speed_+%"]=446,["local_flask_removes_%_maximum_energy_shield_on_use"]=1850,["local_flask_removes_%_of_life_recovery_from_life_on_use"]=454,["local_flask_removes_%_of_life_recovery_from_mana_on_use"]=455,["local_flask_removes_%_of_mana_recovery_from_life_on_use"]=453,["local_flask_resistances_+%_while_healing"]=475,["local_flask_shock_immunity_while_healing"]=503,["local_flask_skill_mana_cost_+%_during_flask_effect"]=491,["local_flask_stun_recovery_+%_while_healing"]=474,["local_flask_unholy_might_during_flask_effect"]=498,["local_flask_use_causes_area_knockback"]=1193,["local_flask_use_causes_monster_flee_chance_%"]=1859,["local_flask_vaal_souls_gained_per_minute_during_effect"]=4640,["local_flask_zealots_oath"]=2929,["local_gain_vaal_pact_if_all_socketed_gems_red"]=5882,["local_gem_experience_gain_+%"]=1159,["local_gem_level_+"]=57,["local_grant_perfect_agony_during_flask_effect"]=5887,["local_grants_aura_maximum_added_chaos_damage_per_white_socket"]=2178,["local_grants_aura_maximum_added_cold_damage_per_green_socket"]=2176,["local_grants_aura_maximum_added_fire_damage_per_red_socket"]=2175,["local_grants_aura_maximum_added_lightning_damage_per_blue_socket"]=2177,["local_grants_aura_minimum_added_chaos_damage_per_white_socket"]=2178,["local_grants_aura_minimum_added_cold_damage_per_green_socket"]=2176,["local_grants_aura_minimum_added_fire_damage_per_red_socket"]=2175,["local_grants_aura_minimum_added_lightning_damage_per_blue_socket"]=2177,["local_has_X_abyss_sockets"]=49,["local_has_X_sockets"]=50,["local_has_no_sockets"]=48,["local_hit_causes_monster_flee_%"]=1288,["local_hit_damage_+%_vs_frozen_enemies"]=3507,["local_hit_damage_+%_vs_ignited_enemies"]=3506,["local_hit_damage_+%_vs_shocked_enemies"]=3508,["local_hits_always_inflict_elemental_ailments"]=3505,["local_hits_with_this_weapon_always_hit_if_have_blocked_recently"]=4641,["local_immune_to_curses_if_item_corrupted"]=4642,["local_implicit_stat_magnitude_+%"]=47,["local_intelligence_requirement_+"]=513,["local_intelligence_requirement_+%"]=514,["local_is_max_quality"]=1153,["local_item_allow_modification_while_corrupted"]=36,["local_item_can_have_x_additional_enchantments"]=38,["local_item_drops_on_death_if_equipped_by_animate_armour"]=1747,["local_item_implicit_modifier_limit"]=39,["local_item_quality_+"]=4643,["local_item_sell_price_doubled"]=4644,["local_item_stats_are_doubled_in_breach"]=4645,["local_jewel_allocated_non_notable_passives_in_radius_grant_nothing"]=4646,["local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius"]=4647,["local_jewel_nearby_passives_dex_to_int"]=2221,["local_jewel_nearby_passives_dex_to_str"]=2220,["local_jewel_nearby_passives_int_to_dex"]=2223,["local_jewel_nearby_passives_int_to_str"]=2222,["local_jewel_nearby_passives_str_to_dex"]=2218,["local_jewel_nearby_passives_str_to_int"]=2219,["local_jewel_variable_ring_radius_value"]=37,["local_knockback"]=834,["local_left_ring_slot_elemental_reflect_damage_taken_+%"]=1879,["local_left_ring_slot_energy_shield"]=1831,["local_left_ring_slot_mana_regeneration_rate_+%"]=1829,["local_left_ring_slot_mana_regeneration_rate_per_minute"]=1828,["local_left_ring_slot_maximum_mana"]=1830,["local_left_ring_slot_no_energy_shield_recharge_or_regeneration"]=1827,["local_left_ring_slot_projectiles_from_spells_cannot_chain"]=4648,["local_left_ring_slot_projectiles_from_spells_fork"]=4649,["local_level_requirement_-"]=515,["local_life_and_mana_gain_per_target"]=1007,["local_life_and_mana_leech_from_physical_damage_permyriad"]=939,["local_life_gain_per_target"]=1003,["local_life_gain_per_target_vs_blinded_enemies"]=4650,["local_life_gain_per_target_while_leeching"]=4651,["local_life_leech_from_any_damage_permyriad"]=4652,["local_life_leech_from_physical_damage_permyriad"]=934,["local_life_leech_is_instant"]=1725,["local_lightning_penetration_%"]=2926,["local_maim_on_hit"]=3290,["local_maim_on_hit_%"]=4653,["local_mana_gain_per_target"]=1010,["local_mana_leech_from_any_damage_permyriad"]=4654,["local_mana_leech_from_physical_damage_permyriad"]=970,["local_max_charges_+%"]=459,["local_maximum_added_chaos_damage"]=699,["local_maximum_added_cold_damage"]=684,["local_maximum_added_fire_damage"]=677,["local_maximum_added_fire_damage_vs_bleeding_enemies"]=3673,["local_maximum_added_lightning_damage"]=693,["local_maximum_added_physical_damage"]=628,["local_maximum_added_physical_damage_vs_ignited_enemies"]=3677,["local_maximum_energy_shield_+%_if_item_corrupted"]=4655,["local_maximum_life_+%_if_item_corrupted"]=4656,["local_minimum_added_chaos_damage"]=699,["local_minimum_added_cold_damage"]=684,["local_minimum_added_fire_damage"]=677,["local_minimum_added_fire_damage_vs_bleeding_enemies"]=3673,["local_minimum_added_lightning_damage"]=693,["local_minimum_added_physical_damage"]=628,["local_minimum_added_physical_damage_vs_ignited_enemies"]=3677,["local_minion_accuracy_rating_with_minion_abyss_jewel_socketed"]=4657,["local_movement_speed_+%_if_item_corrupted"]=4658,["local_no_attribute_requirements"]=516,["local_no_block_chance"]=2435,["local_no_critical_strike_multiplier_during_flask_effect"]=4659,["local_number_of_bloodworms_to_spawn_on_flask_use"]=458,["local_one_socket_each_colour_only"]=53,["local_physical_damage_%_to_convert_to_a_random_element"]=3504,["local_physical_damage_+%"]=592,["local_physical_damage_reduction_rating_+%"]=839,["local_poison_duration_+%_during_flask_effect"]=4660,["local_poison_on_critical_strike_chance_%"]=4661,["local_poison_on_hit"]=1664,["local_poison_on_hit_%"]=4662,["local_quantity_of_sockets_+%"]=1160,["local_recharge_on_crit"]=464,["local_recharge_on_crit_%"]=465,["local_recharge_on_demon_killed"]=1934,["local_recharge_on_take_crit"]=467,["local_resist_all_elements_%_if_item_corrupted"]=4663,["local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%"]=1824,["local_right_ring_slot_energy_shield"]=1826,["local_right_ring_slot_maximum_mana"]=1825,["local_right_ring_slot_no_mana_regeneration"]=1823,["local_right_ring_slot_number_of_additional_chains_for_spell_projectiles"]=4664,["local_right_ring_slot_physical_reflect_damage_taken_+%"]=1880,["local_right_ring_slot_projectiles_from_spells_cannot_fork"]=4665,["local_ring_attack_speed_+%_final"]=4666,["local_ring_disable_other_ring"]=892,["local_ring_duplicate_other_ring"]=2024,["local_ring_nova_spells_area_of_effect_+%_final"]=4667,["local_six_linked_random_sockets"]=51,["local_smoke_ground_on_flask_use_radius"]=2753,["local_socketed_abyss_jewel_effect_+%"]=314,["local_socketed_area_of_effect_gem_level_+"]=72,["local_socketed_area_of_effect_gem_quality_+"]=4668,["local_socketed_aura_gem_level_+"]=77,["local_socketed_aura_gem_quality_+"]=4669,["local_socketed_bow_gem_level_+"]=74,["local_socketed_bow_gem_quality_+"]=4670,["local_socketed_chaos_gem_level_+"]=69,["local_socketed_chaos_gem_quality_+"]=4671,["local_socketed_cold_gem_level_+"]=67,["local_socketed_cold_gem_quality_+"]=4672,["local_socketed_curse_gem_level_+"]=80,["local_socketed_dexterity_gem_level_+"]=59,["local_socketed_dexterity_gem_quality_+"]=4673,["local_socketed_duration_gem_level_+"]=71,["local_socketed_elemental_gem_level_+"]=96,["local_socketed_fire_gem_level_+"]=66,["local_socketed_fire_gem_quality_+"]=4674,["local_socketed_gem_level_+"]=61,["local_socketed_gem_quality_+"]=94,["local_socketed_gems_in_blue_sockets_experience_gained_+%"]=65,["local_socketed_gems_in_green_sockets_get_quality_%"]=64,["local_socketed_gems_in_red_sockets_get_level_+"]=63,["local_socketed_golem_gem_level_+"]=93,["local_socketed_herald_gem_level_+"]=78,["local_socketed_intelligence_gem_level_+"]=60,["local_socketed_intelligence_gem_quality_+"]=4675,["local_socketed_lightning_gem_level_+"]=68,["local_socketed_lightning_gem_quality_+"]=4676,["local_socketed_melee_gem_level_+"]=75,["local_socketed_melee_gem_quality_+"]=4677,["local_socketed_minion_gem_level_+"]=76,["local_socketed_minion_gem_quality_+"]=4678,["local_socketed_movement_gem_level_+"]=79,["local_socketed_projectile_gem_level_+"]=73,["local_socketed_projectile_gem_quality_+"]=4679,["local_socketed_skill_gem_level_+"]=85,["local_socketed_skill_gem_level_+1_per_x_player_levels"]=62,["local_socketed_spell_gem_level_+"]=70,["local_socketed_strength_gem_level_+"]=58,["local_socketed_strength_gem_quality_+"]=4680,["local_socketed_support_gem_level_+"]=84,["local_socketed_support_gem_quality_+"]=95,["local_socketed_trap_and_mine_gem_level_+"]=82,["local_socketed_trap_gem_level_+"]=81,["local_socketed_vaal_gem_level_+"]=83,["local_socketed_warcry_gem_level_+"]=86,["local_spell_damage_+%_if_item_corrupted"]=4681,["local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed"]=4682,["local_strength_and_intelligence_requirement_+"]=517,["local_strength_requirement_+"]=518,["local_strength_requirement_+%"]=519,["local_stun_threshold_reduction_+%"]=1689,["local_support_gem_max_skill_level_requirement_to_support"]=1993,["local_unique_attacks_cast_socketed_lightning_spells_%"]=434,["local_unique_cast_socketed_cold_skills_on_melee_critical_strike"]=435,["local_unique_chaos_damage_does_not_bypass_energy_shield_during_flask_effect"]=486,["local_unique_counts_as_dual_wielding"]=1866,["local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing"]=1787,["local_unique_flask_avoid_chill_%_while_healing"]=485,["local_unique_flask_avoid_freeze_%_while_healing"]=487,["local_unique_flask_block_%_while_healing"]=2110,["local_unique_flask_cannot_recover_life_while_healing"]=1983,["local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing"]=2106,["local_unique_flask_charges_gained_+%_during_flask_effect"]=3347,["local_unique_flask_damage_+%_vs_demons_while_healing"]=1933,["local_unique_flask_damage_over_time_+%_during_flask_effect"]=4683,["local_unique_flask_damage_taken_+%_vs_demons_while_healing"]=1932,["local_unique_flask_elemental_damage_%_to_add_as_chaos_while_healing"]=2089,["local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type"]=4684,["local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type"]=4685,["local_unique_flask_instantly_recovers_%_maximum_life"]=2105,["local_unique_flask_item_quantity_+%_while_healing"]=1785,["local_unique_flask_item_rarity_+%_while_healing"]=1784,["local_unique_flask_kiaras_determination"]=492,["local_unique_flask_leech_is_instant_during_flask_effect"]=2479,["local_unique_flask_leech_lightning_damage_%_as_life_during_flask_effect"]=2477,["local_unique_flask_leech_lightning_damage_%_as_mana_during_flask_effect"]=2478,["local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"]=2085,["local_unique_flask_light_radius_+%_while_healing"]=1786,["local_unique_flask_lightning_resistance_penetration_%_during_flask_effect"]=2474,["local_unique_flask_maximum_added_lightning_damage_to_attacks_during_flask_effect"]=2475,["local_unique_flask_maximum_added_lightning_damage_to_spells_during_flask_effect"]=2476,["local_unique_flask_minimum_added_lightning_damage_to_attacks_during_flask_effect"]=2475,["local_unique_flask_minimum_added_lightning_damage_to_spells_during_flask_effect"]=2476,["local_unique_flask_nearby_enemies_cursed_with_level_x_despair_during_flask_effect"]=4686,["local_unique_flask_no_mana_cost_while_healing"]=1985,["local_unique_flask_physical_damage_%_converted_to_lightning_during_flask_effect"]=2473,["local_unique_flask_physical_damage_%_to_add_as_chaos_while_healing"]=2086,["local_unique_flask_physical_damage_%_to_add_as_cold_while_healing"]=484,["local_unique_flask_physical_damage_taken_%_as_cold_while_healing"]=483,["local_unique_flask_recover_%_maximum_life_when_effect_reaches_duration"]=1984,["local_unique_flask_resist_all_elements_%_during_flask_effect"]=1788,["local_unique_flask_shock_nearby_enemies_during_flask_effect"]=2471,["local_unique_flask_shocked_during_flask_effect"]=2472,["local_unique_flask_spell_block_%_while_healing"]=2111,["local_unique_flask_vaal_skill_damage_+%_during_flask_effect"]=4687,["local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect"]=4688,["local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect"]=4689,["local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect"]=4690,["local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect"]=4691,["local_unique_hungry_loop_has_consumed_gem"]=55,["local_unique_hungry_loop_number_of_gems_to_consume"]=55,["local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius"]=2236,["local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius"]=2237,["local_unique_jewel_X_strength_per_1_strength_allocated_in_radius"]=2238,["local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius"]=2325,["local_unique_jewel_additional_all_attributes_with_passive_tree_connected_to_scion_start"]=5776,["local_unique_jewel_additional_critical_strike_chance_permyriad_with_passive_tree_connected_to_shadow_start"]=5776,["local_unique_jewel_additional_life_per_X_int_in_radius"]=2301,["local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius"]=2318,["local_unique_jewel_alternate_tree_internal_revision"]=5826,["local_unique_jewel_alternate_tree_keystone"]=35,["local_unique_jewel_alternate_tree_seed"]=35,["local_unique_jewel_alternate_tree_version"]=35,["local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius"]=2323,["local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius"]=2423,["local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius"]=2432,["local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius"]=4692,["local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius"]=4693,["local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius"]=4694,["local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius"]=4695,["local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius"]=4696,["local_unique_jewel_burning_arrow_additional_ignite_stacks_with_50_dex_in_radius"]=2521,["local_unique_jewel_burning_arrow_spread_burning_ground_when_igniting_enemy_on_hit_%_with_50_dexterity_in_radius"]=2520,["local_unique_jewel_burning_arrow_spread_tar_ground_when_not_igniting_enemy_on_hit_%_with_50_dexterity_in_radius"]=2522,["local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius"]=4697,["local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius"]=4698,["local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius"]=4699,["local_unique_jewel_chaos_damage_+%_per_10_int_in_radius"]=2239,["local_unique_jewel_chaos_damage_+%_per_X_int_in_radius"]=2302,["local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius"]=2303,["local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius"]=2291,["local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius"]=2524,["local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius"]=2523,["local_unique_jewel_cold_and_lightning_resistance_to_melee_damage"]=4700,["local_unique_jewel_cold_damage_+1%_per_x_int_in_radius"]=2315,["local_unique_jewel_cold_damage_increases_applies_to_physical_damage"]=2294,["local_unique_jewel_cold_resistance_also_grants_dodge_chance_scaled_%"]=4701,["local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance"]=4702,["local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius"]=2428,["local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius"]=4703,["local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius"]=2326,["local_unique_jewel_damage_increases_applies_to_fire_damage"]=2292,["local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius"]=2305,["local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius"]=2396,["local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius"]=4704,["local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius"]=4705,["local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int"]=4706,["local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex"]=4707,["local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex"]=4708,["local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius"]=4709,["local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius"]=4710,["local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius"]=4711,["local_unique_jewel_elemental_penetration_%_with_passive_tree_connected_to_templar_start"]=5776,["local_unique_jewel_energy_shield_increases_applies_to_armour_doubled"]=2295,["local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius"]=2319,["local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius"]=2525,["local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius"]=2526,["local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius"]=2290,["local_unique_jewel_fire_and_cold_resistance_to_spell_damage"]=4712,["local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage"]=4713,["local_unique_jewel_fire_damage_+1%_per_x_int_in_radius"]=2314,["local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%"]=4714,["local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance"]=4715,["local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius"]=4716,["local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius"]=2420,["local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius"]=2419,["local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius"]=2313,["local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius"]=2533,["local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius"]=2532,["local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius"]=4717,["local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius"]=4718,["local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius"]=4719,["local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius"]=4720,["local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius"]=4735,["local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius"]=2322,["local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius"]=4721,["local_unique_jewel_glacial_cascade_physical_damage_%_to_convert_to_cold_with_40_int_in_radius"]=4722,["local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius"]=2394,["local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius"]=2527,["local_unique_jewel_glacial_hammer_physical_damage_%_to_convert_to_cold_with_50_str_in_radius"]=2528,["local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius"]=2426,["local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius"]=2425,["local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius"]=2398,["local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius"]=4723,["local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius"]=4724,["local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius"]=4725,["local_unique_jewel_intelligence_per_unallocated_node_in_radius"]=2259,["local_unique_jewel_life_increases_applies_to_energy_shield"]=2296,["local_unique_jewel_life_increases_applies_to_mana_doubled"]=2304,["local_unique_jewel_life_leech_from_attack_damage_permyriad_with_passive_tree_connected_to_duelist_start"]=5776,["local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_%"]=4726,["local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance"]=4727,["local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius"]=4728,["local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius"]=4729,["local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius"]=4730,["local_unique_jewel_mana_regeneration_rate_per_minute_%_with_passive_tree_connected_to_witch_start"]=5776,["local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius"]=2327,["local_unique_jewel_melee_applies_to_bow"]=2235,["local_unique_jewel_melee_skills_area_of_effect_+%_with_passive_tree_connected_to_marauder_start"]=5776,["local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius"]=4731,["local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius"]=4732,["local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius"]=2320,["local_unique_jewel_movement_speed_+%_with_passive_tree_connected_to_ranger_start"]=5776,["local_unique_jewel_nearby_disconnected_passives_can_be_allocated"]=508,["local_unique_jewel_non_keystone_passive_in_radius_effect_+%"]=4733,["local_unique_jewel_notable_passive_in_radius_does_nothing"]=4734,["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%"]=5840,["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%"]=5841,["local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex"]=2300,["local_unique_jewel_passives_in_radius_applied_to_minions_instead"]=2240,["local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage"]=5842,["local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage"]=5842,["local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius"]=2317,["local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius"]=2312,["local_unique_jewel_physical_damage_+1%_per_int_in_radius"]=2316,["local_unique_jewel_physical_damage_increases_applies_to_cold_damage"]=2293,["local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius"]=2321,["local_unique_jewel_rallying_cry_damage_taken_goes_to_mana_%_with_50_int_in_radius"]=2430,["local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius"]=2529,["local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius"]=2530,["local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius"]=4736,["local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius"]=2531,["local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius"]=4737,["local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius"]=4738,["local_unique_jewel_spectral_shield_throw_fire_shards_on_chain_with_total_40_str_+_dex_in_radius"]=4739,["local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius"]=4740,["local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius"]=2395,["local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius"]=4741,["local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius"]=4742,["local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius"]=2324,["local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius"]=4743,["local_unique_jewel_totem_life_+X%_per_10_str_in_radius"]=2226,["local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius"]=2306,["local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius"]=2417,["local_unique_jewel_viper_strike_attack_damage_per_poison_on_enemy_+%_with_50_dexterity_in_radius"]=2397,["local_unique_jewel_viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy_with_50_dex_in_radius"]=4744,["local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill"]=2228,["local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons"]=2415,["local_unique_jewel_with_70_dex_physical_damage_to_add_as_chaos_%"]=2260,["local_unique_jewel_with_70_str_life_recovery_speed_+%"]=2261,["local_unique_jewel_with_x_int_in_radius_+1_curse"]=2245,["local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius"]=4745,["local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius"]=4746,["local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect"]=2087,["local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect"]=3345,["local_unique_regen_es_from_removed_life_duration_ms"]=2311,["local_unique_remove_life_and_regen_es_from_removed_life"]=2311,["local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect"]=4747,["local_varunastra_weapon_counts_as_all_1h_melee_weapon_types"]=2943,["local_weapon_always_crit"]=2958,["local_weapon_enemy_phys_reduction_%_penalty"]=593,["local_weapon_no_physical_damage"]=592,["local_weapon_range_+"]=1911,["local_weapon_uses_both_hands"]=440,["lose_a_frenzy_charge_on_travel_skill_use_%_chance"]=3531,["lose_a_power_charge_when_you_gain_elusive_%_chance"]=3532,["lose_all_charges_on_starting_movement"]=4748,["lose_all_endurance_charges_when_reaching_maximum"]=1919,["lose_all_power_charges_on_reaching_maximum_power_charges"]=2760,["lose_endurance_charges_on_rampage_end"]=2438,["lose_power_charge_each_second_if_not_detonated_mines_recently"]=4749,["lose_soul_eater_souls_on_flask_use"]=2595,["lose_spirit_charges_on_savage_hit_taken"]=3522,["mace_accuracy_rating"]=1260,["mace_accuracy_rating_+%"]=751,["mace_attack_speed_+%"]=733,["mace_critical_strike_chance_+%"]=779,["mace_critical_strike_multiplier_+"]=803,["mace_damage_+%"]=657,["mace_elemental_damage_+%"]=1366,["magic_items_drop_identified"]=3313,["magic_monster_dropped_item_rarity_+%"]=4750,["magma_orb_damage_+%"]=2805,["magma_orb_num_of_additional_projectiles_in_chain"]=3112,["magma_orb_number_of_additional_projectiles"]=4751,["magma_orb_radius_+%"]=2972,["magma_orb_skill_area_of_effect_+%_per_bounce"]=4752,["maim_bleeding_enemies_on_hit_%"]=2493,["maim_effect_+%"]=4753,["maim_on_crit_%_with_attacks"]=4754,["maim_on_hit_%"]=4755,["maim_on_hit_%_vs_poisoned_enemies"]=2463,["main_hand_base_weapon_attack_duration_ms"]=16,["main_hand_maximum_attack_distance"]=20,["main_hand_minimum_attack_distance"]=18,["main_hand_quality"]=12,["main_hand_weapon_type"]=4,["mamba_strike_area_of_effect_+%"]=4756,["mamba_strike_damage_+%"]=4757,["mamba_strike_duration_+%"]=4758,["mana_%_gained_on_block"]=4771,["mana_%_to_add_as_energy_shield"]=1420,["mana_%_to_add_as_energy_shield_at_devotion_threshold"]=4772,["mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy"]=2562,["mana_cost_+%_for_trap_and_mine_skills"]=4759,["mana_cost_+%_for_trap_skills"]=4760,["mana_cost_+%_on_consecrated_ground"]=2717,["mana_cost_+%_on_totemified_aura_skills"]=2277,["mana_cost_+%_per_10_devotion"]=4761,["mana_cost_+%_per_200_mana_spent_recently"]=3485,["mana_cost_+%_when_on_low_life"]=1131,["mana_cost_+%_while_not_low_mana"]=2254,["mana_cost_+%_while_on_full_energy_shield"]=1130,["mana_cost_-%_per_endurance_charge"]=2436,["mana_degeneration_per_minute"]=4762,["mana_degeneration_per_minute_%"]=4763,["mana_flasks_gain_X_charges_every_3_seconds"]=4764,["mana_gain_per_target"]=1009,["mana_gained_on_block"]=1023,["mana_gained_on_enemy_death_per_level"]=2145,["mana_gained_on_hitting_taunted_enemy"]=1047,["mana_gained_on_spell_hit"]=4765,["mana_gained_on_spell_hit_vs_cursed_enemies"]=4766,["mana_gained_when_hit"]=1876,["mana_leech_from_any_damage_permyriad"]=971,["mana_leech_from_attack_damage_permyriad_per_power_charge"]=4767,["mana_leech_from_attack_damage_permyriad_vs_poisoned_enemies"]=3333,["mana_leech_from_lightning_damage_permyriad_while_affected_by_wrath"]=4768,["mana_leech_from_physical_attack_damage_permyriad"]=968,["mana_leech_from_physical_damage_permyriad_per_power_charge"]=985,["mana_leech_from_physical_damage_with_bow_permyriad"]=942,["mana_leech_from_physical_damage_with_claw_permyriad"]=941,["mana_leech_permyriad_vs_frozen_enemies"]=4769,["mana_leech_speed_+%"]=1401,["mana_leech_speed_+%_per_equipped_corrupted_item"]=2270,["mana_per_level"]=4770,["mana_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=4773,["mana_recovery_rate_+%"]=2142,["mana_recovery_rate_+%_while_affected_by_a_mana_flask"]=4774,["mana_recovery_rate_+%_while_affected_by_clarity"]=4775,["mana_regeneration_+%_for_4_seconds_on_movement_skill_use"]=3237,["mana_regeneration_rate_+%"]=876,["mana_regeneration_rate_+%_during_flask_effect"]=2351,["mana_regeneration_rate_+%_if_hit_cursed_enemy_recently"]=4788,["mana_regeneration_rate_+%_per_1%_spell_block_chance"]=4776,["mana_regeneration_rate_+%_per_power_charge"]=1227,["mana_regeneration_rate_+%_per_raised_spectre"]=4789,["mana_regeneration_rate_+%_while_moving"]=4790,["mana_regeneration_rate_+%_while_phasing"]=1699,["mana_regeneration_rate_+%_while_stationary"]=3458,["mana_regeneration_rate_per_minute_%"]=874,["mana_regeneration_rate_per_minute_%_if_enemy_hit_recently"]=4781,["mana_regeneration_rate_per_minute_%_per_active_totem"]=4782,["mana_regeneration_rate_per_minute_%_per_power_charge"]=877,["mana_regeneration_rate_per_minute_if_enemy_hit_recently"]=4777,["mana_regeneration_rate_per_minute_if_used_movement_skill_recently"]=4778,["mana_regeneration_rate_per_minute_per_10_devotion"]=4779,["mana_regeneration_rate_per_minute_per_power_charge"]=4780,["mana_regeneration_rate_per_minute_while_dual_wielding"]=4783,["mana_regeneration_rate_per_minute_while_holding_shield"]=4784,["mana_regeneration_rate_per_minute_while_on_consecrated_ground"]=4785,["mana_regeneration_rate_per_minute_while_wielding_staff"]=4786,["mana_regeneration_rate_per_minute_while_you_have_avians_flight"]=4787,["mana_reservation_+%_per_250_total_attributes"]=4792,["mana_reservation_+%_with_skills_that_throw_mines"]=4791,["manifest_dancing_dervish_number_of_additional_copies"]=4793,["map_additional_number_of_packs_to_choose"]=1516,["map_additional_player_maximum_resistances_%"]=1573,["map_additional_rare_in_rare_pack_%_chance"]=4794,["map_additional_rare_in_synthesised_rare_pack_%_chance"]=4795,["map_additional_red_beasts"]=4796,["map_additional_tier"]=1546,["map_adds_X_extra_synthesis_mods"]=4797,["map_adds_X_extra_synthesis_special_mods"]=4798,["map_allow_shrines"]=1802,["map_always_has_weather"]=1801,["map_ambush_chests"]=1793,["map_area_contains_arcanists_strongbox"]=4800,["map_area_contains_avatar_of_ambush"]=4801,["map_area_contains_avatar_of_anarchy"]=4802,["map_area_contains_avatar_of_beyond"]=4803,["map_area_contains_avatar_of_bloodlines"]=4804,["map_area_contains_avatar_of_breach"]=4805,["map_area_contains_avatar_of_domination"]=4806,["map_area_contains_avatar_of_essence"]=4807,["map_area_contains_avatar_of_invasion"]=4808,["map_area_contains_avatar_of_nemesis"]=4809,["map_area_contains_avatar_of_onslaught"]=4810,["map_area_contains_avatar_of_perandus"]=4811,["map_area_contains_avatar_of_prophecy"]=4812,["map_area_contains_avatar_of_rampage"]=4813,["map_area_contains_avatar_of_talisman"]=4814,["map_area_contains_avatar_of_tempest"]=4815,["map_area_contains_avatar_of_torment"]=4816,["map_area_contains_avatar_of_warbands"]=4817,["map_area_contains_cartographers_strongbox"]=4818,["map_area_contains_currency_chest"]=4819,["map_area_contains_gemcutters_strongbox"]=4820,["map_area_contains_grandmaster_ally"]=4821,["map_area_contains_jewellery_chest"]=4822,["map_area_contains_map_chest"]=4823,["map_area_contains_perandus_coin_chest"]=4824,["map_area_contains_tormented_embezzler"]=4825,["map_area_contains_tormented_seditionist"]=4826,["map_area_contains_tormented_vaal_cultist"]=4827,["map_area_contains_unique_item_chest"]=4828,["map_area_contains_unique_strongbox"]=4829,["map_area_contains_x_additional_clusters_of_beacon_barrels"]=4830,["map_area_contains_x_additional_clusters_of_bloodworm_barrels"]=4831,["map_area_contains_x_additional_clusters_of_explosive_barrels"]=4832,["map_area_contains_x_additional_clusters_of_explosive_eggs"]=4833,["map_area_contains_x_additional_clusters_of_parasite_barrels"]=4834,["map_area_contains_x_additional_clusters_of_volatile_barrels"]=4835,["map_area_contains_x_additional_clusters_of_wealthy_barrels"]=4836,["map_area_contains_x_rare_monsters_with_inner_treasure"]=4890,["map_atlas_influence_type"]=4799,["map_base_ground_desecration_damage_to_deal_per_minute"]=1524,["map_base_ground_fire_damage_to_deal_per_10_seconds"]=1518,["map_base_ground_fire_damage_to_deal_per_minute"]=1517,["map_beyond_chance_%"]=1805,["map_beyond_portal_spawn_additional_demon_%_chance"]=4837,["map_beyond_rules"]=1804,["map_blight_chest_%_chance_for_additional_drop"]=4838,["map_blight_tower_cost_+%"]=4839,["map_bloodline_packs_drop_x_additional_currency_items"]=4840,["map_bloodline_packs_drop_x_additional_rare_items"]=4841,["map_boss_accompanied_by_bodyguards"]=4842,["map_boss_accompanied_by_harbinger"]=4843,["map_boss_area_of_effect_+%"]=1627,["map_boss_attack_and_cast_speed_+%"]=1625,["map_boss_damage_+%"]=1624,["map_boss_dropped_item_quantity_+%"]=4844,["map_boss_dropped_unique_items_+"]=4845,["map_boss_drops_additional_currency_shards"]=4846,["map_boss_drops_corrupted_items"]=4847,["map_boss_drops_x_additional_vaal_items"]=4848,["map_boss_maximum_life_+%"]=1626,["map_breach_has_boss"]=4849,["map_breach_has_large_chest"]=4850,["map_breach_monster_quantity_+%"]=4851,["map_breach_rules"]=1794,["map_chest_item_quantity_+%"]=1628,["map_chest_item_rarity_+%"]=1629,["map_contains_additional_breaches"]=4852,["map_contains_additional_chrysalis_talisman"]=4853,["map_contains_additional_clutching_talisman"]=4854,["map_contains_additional_fangjaw_talisman"]=4855,["map_contains_additional_mandible_talisman"]=4856,["map_contains_additional_packs_of_chaos_monsters"]=4857,["map_contains_additional_packs_of_cold_monsters"]=4858,["map_contains_additional_packs_of_fire_monsters"]=4859,["map_contains_additional_packs_of_lightning_monsters"]=4860,["map_contains_additional_packs_of_physical_monsters"]=4861,["map_contains_additional_packs_of_vaal_monsters"]=4862,["map_contains_additional_three_rat_talisman"]=4863,["map_contains_additional_tormented_betrayers"]=4864,["map_contains_additional_tormented_graverobbers"]=4865,["map_contains_additional_tormented_heretics"]=4866,["map_contains_additional_unique_talisman"]=4867,["map_contains_additional_writhing_talisman"]=4868,["map_contains_chayula_breach"]=4869,["map_contains_corrupted_strongbox"]=4870,["map_contains_creeping_agony"]=4871,["map_contains_keepers_of_the_trove_bloodline_pack"]=4872,["map_contains_master"]=4873,["map_contains_nevalis_monkey"]=4874,["map_contains_perandus_boss"]=4875,["map_contains_talisman_boss_with_higher_tier"]=4876,["map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+%"]=4877,["map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final"]=4877,["map_contains_uul_netol_breach"]=4878,["map_contains_wealthy_pack"]=4879,["map_contains_x_additional_animated_weapon_packs"]=4880,["map_contains_x_additional_healing_packs"]=4881,["map_contains_x_additional_magic_packs"]=4882,["map_contains_x_additional_normal_packs"]=4883,["map_contains_x_additional_packs_on_their_own_team"]=4884,["map_contains_x_additional_packs_that_convert_on_death"]=4885,["map_contains_x_additional_packs_with_mirrored_rare_monsters"]=4886,["map_contains_x_additional_poison_packs"]=4887,["map_contains_x_additional_rare_packs"]=4888,["map_contains_x_fewer_portals"]=4889,["map_cowards_trial_extra_ghosts"]=4891,["map_cowards_trial_extra_oriath_citizens"]=4892,["map_cowards_trial_extra_phantasms"]=4893,["map_cowards_trial_extra_raging_spirits"]=4894,["map_cowards_trial_extra_rhoas"]=4895,["map_cowards_trial_extra_skeleton_cannons"]=4896,["map_cowards_trial_extra_zombies"]=4897,["map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on"]=4899,["map_damage_+%_per_poison_stack"]=4898,["map_damage_taken_+%_from_beyond_monsters"]=4900,["map_damage_taken_while_stationary_+%"]=4901,["map_damage_while_stationary_+%"]=4902,["map_delve_rules"]=4903,["map_display_area_contains_unbridged_gaps_to_cross"]=1515,["map_display_strongbox_monsters_are_enraged"]=4905,["map_display_unique_boss_drops_X_maps"]=1545,["map_divination_card_drop_chance_+%"]=4906,["map_duplicate_x_rare_monsters"]=4908,["map_duplicate_x_synthesised_rare_monsters"]=4909,["map_elder_boss_variation"]=4910,["map_elder_rare_chance_+%"]=4911,["map_equipment_drops_identified"]=4912,["map_essence_monolith_contains_additional_essence_of_corruption"]=4913,["map_essence_monolith_contains_essence_of_corruption_%"]=4914,["map_essence_monsters_are_corrupted"]=4915,["map_essence_monsters_have_additional_essences"]=4916,["map_essence_monsters_higher_tier"]=4917,["map_experience_gain_+%"]=506,["map_extra_monoliths"]=4918,["map_first_invasion_boss_killed_drops_x_additional_currency"]=4919,["map_first_strongbox_contains_x_additional_rare_monsters"]=4920,["map_first_unique_beyond_boss_slain_drops_x_beyond_uniques"]=4921,["map_fishy_effect_0"]=4904,["map_fishy_effect_1"]=4904,["map_fishy_effect_2"]=4904,["map_fishy_effect_3"]=4904,["map_fixed_seed"]=1530,["map_flask_charges_recovered_per_3_seconds_%"]=4922,["map_force_stone_circle"]=1556,["map_gain_onslaught_for_x_ms_on_killing_rare_monster"]=4923,["map_ground_haste_action_speed_+%"]=4924,["map_ground_ice"]=1519,["map_ground_ice_base_magnitude"]=1520,["map_ground_lightning"]=1521,["map_ground_lightning_base_magnitude"]=1522,["map_ground_tar_movement_speed_+%"]=1523,["map_harbingers_drops_additional_currency_shards"]=4925,["map_has_X_seconds_between_waves"]=1631,["map_has_X_waves_of_monsters"]=1630,["map_has_monoliths"]=4926,["map_has_x%_quality"]=4927,["map_imprisoned_monsters_action_speed_+%"]=4928,["map_imprisoned_monsters_damage_+%"]=4929,["map_imprisoned_monsters_damage_taken_+%"]=4930,["map_invasion_bosses_are_twinned"]=4931,["map_invasion_bosses_drop_x_additional_vaal_orbs"]=4932,["map_invasion_bosses_dropped_items_are_fully_linked"]=4933,["map_invasion_bosses_dropped_items_have_x_additional_sockets"]=4934,["map_invasion_monster_packs"]=1796,["map_invasion_monsters_guarded_by_x_magic_packs"]=4935,["map_is_branchy"]=1514,["map_item_drop_quality_also_applies_to_map_item_drop_rarity"]=4936,["map_item_drop_quantity_+%"]=31,["map_item_drop_rarity_+%"]=32,["map_item_found_rarity_+%_per_15_rampage_stacks"]=4937,["map_item_level_override"]=507,["map_item_quantity_from_monsters_that_drop_silver_coin_+%"]=4938,["map_items_drop_corrupted"]=2213,["map_items_drop_corrupted_%"]=2214,["map_leaguestone_area_contains_x_additional_leaguestones"]=4939,["map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final"]=4940,["map_leaguestone_contains_warband_leader"]=4941,["map_leaguestone_explicit_warband_type_override"]=4942,["map_leaguestone_imprisoned_monsters_item_quantity_+%_final"]=4943,["map_leaguestone_imprisoned_monsters_item_rarity_+%_final"]=4944,["map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final"]=4945,["map_leaguestone_monolith_contains_essence_type"]=4946,["map_leaguestone_override_base_num_breaches"]=4947,["map_leaguestone_override_base_num_invasion_bosses"]=4948,["map_leaguestone_override_base_num_monoliths"]=4949,["map_leaguestone_override_base_num_perandus_chests"]=4950,["map_leaguestone_override_base_num_prophecy_coins"]=4951,["map_leaguestone_override_base_num_rogue_exiles"]=4952,["map_leaguestone_override_base_num_shrines"]=4953,["map_leaguestone_override_base_num_strongboxes"]=4954,["map_leaguestone_override_base_num_talismans"]=4955,["map_leaguestone_override_base_num_tormented_spirits"]=4956,["map_leaguestone_override_base_num_warband_packs"]=4957,["map_leaguestone_perandus_chests_have_item_quantity_+%_final"]=4958,["map_leaguestone_perandus_chests_have_item_rarity_+%_final"]=4959,["map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final"]=4960,["map_leaguestone_shrine_monster_rarity_override"]=4961,["map_leaguestone_shrine_override_type"]=4962,["map_leaguestone_strongboxes_rarity_override"]=4963,["map_leaguestone_warbands_packs_have_item_quantity_+%_final"]=4965,["map_leaguestone_warbands_packs_have_item_rarity_+%_final"]=4966,["map_leaguestone_x_monsters_spawn_abaxoth"]=4967,["map_leaguestone_x_monsters_spawn_random_beyond_boss"]=4968,["map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks"]=4969,["map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks"]=4970,["map_legion_league_extra_spawns"]=4971,["map_legion_league_force_general"]=4972,["map_legion_league_force_war_chest"]=4973,["map_level_+"]=4974,["map_magic_items_drop_as_normal"]=4975,["map_magic_monster_life_regeneration_rate_per_minute_%"]=3441,["map_magic_monsters_are_maimed"]=4976,["map_magic_monsters_damage_taken_+%"]=4977,["map_magic_pack_mod_rules"]=1799,["map_magic_pack_size_+%"]=4978,["map_map_item_drop_chance_+%"]=4979,["map_mini_monolith_monsters_are_magic"]=4980,["map_minimap_revealed"]=1531,["map_monster_and_player_onslaught_effect_+%"]=4981,["map_monster_attack_cast_and_movement_speed_+%"]=4982,["map_monster_beyond_portal_chance_+%"]=4983,["map_monster_curse_effect_on_self_+%"]=4984,["map_monster_damage_taken_+%_while_possessed"]=4985,["map_monster_drop_higher_level_gear"]=2751,["map_monster_melee_attacks_apply_random_curses"]=1614,["map_monster_no_drops"]=1622,["map_monster_skills_chain_X_additional_times"]=1616,["map_monster_slain_experience_+%"]=4986,["map_monsters_%_chance_to_inflict_status_ailments"]=5002,["map_monsters_%_physical_damage_to_add_as_cold"]=1607,["map_monsters_%_physical_damage_to_add_as_fire"]=1606,["map_monsters_%_physical_damage_to_add_as_lightning"]=1608,["map_monsters_%_physical_damage_to_convert_to_chaos"]=1609,["map_monsters_%_physical_damage_to_convert_to_cold"]=1604,["map_monsters_%_physical_damage_to_convert_to_fire"]=1603,["map_monsters_%_physical_damage_to_convert_to_lightning"]=1605,["map_monsters_accuracy_rating_+%"]=4987,["map_monsters_add_endurance_charge_on_hit_%"]=4988,["map_monsters_add_frenzy_charge_on_hit_%"]=4989,["map_monsters_add_power_charge_on_hit_%"]=4990,["map_monsters_additional_chaos_resistance"]=4991,["map_monsters_additional_cold_resistance"]=1598,["map_monsters_additional_elemental_resistance"]=4992,["map_monsters_additional_fire_resistance"]=1597,["map_monsters_additional_lightning_resistance"]=1599,["map_monsters_additional_number_of_projecitles"]=1596,["map_monsters_additional_physical_damage_reduction"]=1600,["map_monsters_always_ignite"]=4993,["map_monsters_are_converted_on_kill"]=4994,["map_monsters_are_hexproof"]=1620,["map_monsters_are_immune_to_curses"]=1619,["map_monsters_area_of_effect_+%"]=1579,["map_monsters_attack_speed_+%"]=1592,["map_monsters_avoid_ailments_%"]=1583,["map_monsters_avoid_elemental_ailments_%"]=1584,["map_monsters_avoid_freeze_and_chill_%"]=1580,["map_monsters_avoid_ignite_%"]=1581,["map_monsters_avoid_poison_blind_bleed_%"]=4995,["map_monsters_avoid_shock_%"]=1582,["map_monsters_base_self_critical_strike_multiplier_-%"]=2769,["map_monsters_cannot_be_stunned"]=1601,["map_monsters_cannot_be_taunted"]=4996,["map_monsters_cast_speed_+%"]=1593,["map_monsters_convert_all_physical_damage_to_fire"]=1617,["map_monsters_critical_strike_chance_+%"]=1585,["map_monsters_critical_strike_multiplier_+"]=1586,["map_monsters_curse_effect_+%"]=1621,["map_monsters_curse_effect_on_self_+%_final"]=4997,["map_monsters_damage_+%"]=1589,["map_monsters_drop_ground_fire_on_death_base_radius"]=1618,["map_monsters_energy_shield_leech_resistance_%"]=4998,["map_monsters_gain_x_endurance_charges_every_20_seconds"]=1611,["map_monsters_gain_x_frenzy_charges_every_20_seconds"]=1610,["map_monsters_gain_x_power_charges_every_20_seconds"]=1612,["map_monsters_have_onslaught"]=1590,["map_monsters_immune_to_a_random_status_ailment_or_stun"]=1613,["map_monsters_life_+%"]=1578,["map_monsters_life_leech_resistance_%"]=1587,["map_monsters_mana_leech_resistance_%"]=1588,["map_monsters_movement_speed_+%"]=1591,["map_monsters_movement_speed_cannot_be_reduced_below_base"]=4999,["map_monsters_near_shrines_are_chilled"]=5000,["map_monsters_penetrate_elemental_resistances_%"]=5001,["map_monsters_poison_on_hit"]=1602,["map_monsters_reflect_%_elemental_damage"]=1595,["map_monsters_reflect_%_physical_damage"]=1594,["map_monsters_reflect_curses"]=1615,["map_monsters_remove_charges_on_hit_%"]=5003,["map_monsters_spawned_with_talisman_drop_additional_rare_items"]=5004,["map_monsters_steal_charges"]=5005,["map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins"]=5006,["map_monsters_with_silver_coins_drop_x_additional_currency_items"]=5007,["map_monsters_with_silver_coins_drop_x_additional_rare_items"]=5008,["map_monstrous_treasure_no_monsters"]=5009,["map_movement_velocity_+%_per_poison_stack"]=5010,["map_nemesis_dropped_items_+"]=5011,["map_next_area_contains_x_additional_bearers_of_the_guardian_packs"]=5012,["map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs"]=5013,["map_no_magic_items_drop"]=5014,["map_no_rare_items_drop"]=5015,["map_no_refills_in_town"]=1532,["map_no_stashes"]=5016,["map_no_uniques_drop_randomly"]=5017,["map_no_vendors"]=5018,["map_non_unique_equipment_drops_as_sell_price"]=2212,["map_non_unique_items_drop_normal"]=5019,["map_non_unique_monster_life_regeneration_rate_per_minute_%"]=5020,["map_non_unique_monsters_spawn_X_monsters_on_death"]=1561,["map_normal_items_drop_as_magic"]=5021,["map_normal_monster_life_regeneration_rate_per_minute_%"]=3440,["map_nuke_everything"]=5022,["map_num_extra_abysses"]=5023,["map_num_extra_gloom_shrines"]=5024,["map_num_extra_harbingers"]=5025,["map_num_extra_invasion_bosses"]=1797,["map_num_extra_resonating_shrines"]=5026,["map_num_extra_shrines"]=1550,["map_num_extra_strongboxes"]=1558,["map_number_of_additional_mods"]=5027,["map_number_of_additional_prefixes"]=5028,["map_number_of_additional_silver_coin_drops"]=5029,["map_number_of_additional_suffixes"]=5030,["map_number_of_magic_packs_+%"]=1559,["map_number_of_rare_packs_+%"]=1560,["map_on_complete_drop_x_additional_maps"]=5031,["map_owner_sulphite_gained_+%"]=5032,["map_packs_are_abomination_monsters"]=5033,["map_packs_are_animals"]=1538,["map_packs_are_bandits"]=1536,["map_packs_are_blackguards"]=5034,["map_packs_are_demons"]=1539,["map_packs_are_ghosts"]=5035,["map_packs_are_goatmen"]=1537,["map_packs_are_humanoids"]=1540,["map_packs_are_kitava"]=5036,["map_packs_are_lunaris"]=5037,["map_packs_are_sea_witches_and_spawn"]=1541,["map_packs_are_skeletons"]=1535,["map_packs_are_solaris"]=5038,["map_packs_are_spiders"]=5039,["map_packs_are_str_mission_totems"]=1534,["map_packs_are_totems"]=1533,["map_packs_are_undead_and_necromancers"]=1542,["map_packs_are_vaal"]=5040,["map_packs_fire_projectiles"]=1543,["map_packs_have_pop_up_traps"]=3436,["map_perandus_guards_are_rare"]=5041,["map_perandus_monsters_drop_perandus_coin_stack_%"]=5042,["map_player_attack_cast_and_movement_speed_+%_during_onslaught"]=5043,["map_player_base_chaos_damage_taken_per_minute"]=1562,["map_player_chance_to_gain_vaal_soul_on_kill_%"]=5044,["map_player_charges_gained_+%"]=5045,["map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack"]=2360,["map_player_curse_effect_on_self_+%"]=5046,["map_player_damage_+%_vs_breach_monsters"]=5047,["map_player_damage_taken_+%_vs_breach_monsters"]=5048,["map_player_damage_taken_+%_while_rampaging"]=5049,["map_player_disable_soul_gain_prevention"]=5050,["map_player_dodge_chance_%_during_shrine_effect"]=4907,["map_player_flask_recovery_is_instant"]=5051,["map_player_has_blood_magic_keystone"]=1563,["map_player_has_chaos_inoculation_keystone"]=1565,["map_player_has_elemental_equilibrium_keystone"]=1564,["map_player_has_level_X_conductivity"]=5052,["map_player_has_level_X_elemental_weakness"]=1570,["map_player_has_level_X_enfeeble"]=1568,["map_player_has_level_X_flammability"]=5053,["map_player_has_level_X_frostbite"]=5054,["map_player_has_level_X_projectile_weakness"]=5055,["map_player_has_level_X_punishment"]=1571,["map_player_has_level_X_silence"]=5056,["map_player_has_level_X_temporal_chains"]=1569,["map_player_has_level_X_vulnerability"]=1566,["map_player_has_level_X_warlords_mark"]=1567,["map_player_has_random_level_X_curse_every_10_seconds"]=5057,["map_player_life_and_es_recovery_speed_+%_final"]=5058,["map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks"]=5059,["map_player_movement_velocity_+%"]=5060,["map_player_no_regeneration"]=1572,["map_player_onslaught_on_kill_%"]=5061,["map_player_projectile_damage_+%_final"]=1575,["map_player_shrine_effect_duration_+%"]=5062,["map_player_status_recovery_speed_+%"]=1574,["map_players_action_speed_+%_while_chilled"]=2743,["map_players_additional_number_of_projectiles"]=1596,["map_players_additional_spell_dodge_%"]=5063,["map_players_and_monsters_chaos_damage_taken_+%"]=5064,["map_players_and_monsters_cold_damage_taken_+%"]=5065,["map_players_and_monsters_critical_strike_chance_+%"]=5066,["map_players_and_monsters_curses_are_reflected"]=5067,["map_players_and_monsters_damage_+%_per_curse"]=5068,["map_players_and_monsters_damage_taken_+%_while_stationary"]=5069,["map_players_and_monsters_fire_damage_taken_+%"]=5070,["map_players_and_monsters_have_onslaught_if_hit_recently"]=5071,["map_players_and_monsters_have_resolute_technique"]=5072,["map_players_and_monsters_lightning_damage_taken_+%"]=5073,["map_players_and_monsters_movement_speed_+%"]=5074,["map_players_and_monsters_physical_damage_taken_+%"]=5075,["map_players_are_poisoned_while_moving_chaos_damage_per_second"]=5076,["map_players_armour_+%_final"]=5077,["map_players_block_chance_+%"]=5078,["map_players_cannot_gain_endurance_charges"]=5079,["map_players_cannot_gain_frenzy_charges"]=5080,["map_players_cannot_gain_power_charges"]=5081,["map_players_cannot_take_reflected_damage"]=5082,["map_players_convert_all_physical_damage_to_fire"]=1576,["map_players_extra_dodge_rolls"]=5083,["map_players_gain_1_random_rare_monster_mod_on_kill_ms"]=5084,["map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=5085,["map_players_gain_onslaught_after_opening_a_strongbox_ms"]=5086,["map_players_gain_onslaught_during_flask_effect"]=5087,["map_players_gain_rampage_stacks"]=1803,["map_players_gain_rare_monster_mods_on_kill_%_chance"]=5088,["map_players_gain_rare_monster_mods_on_kill_ms"]=2591,["map_players_gain_soul_eater_on_rare_kill_ms"]=2593,["map_players_have_point_blank"]=5089,["map_players_movement_skills_cooldown_speed_+%"]=5090,["map_players_movement_speed_+%"]=5091,["map_players_no_regeneration_including_es"]=5092,["map_players_resist_all_%"]=5093,["map_players_skill_area_of_effect_+%_final"]=5094,["map_portals_do_not_expire"]=5095,["map_possessed_monsters_drop_gilded_scarab_chance_%"]=5096,["map_possessed_monsters_drop_map_chance_%"]=5097,["map_possessed_monsters_drop_polished_scarab_chance_%"]=5098,["map_possessed_monsters_drop_rusted_scarab_chance_%"]=5099,["map_possessed_monsters_drop_unique_chance_%"]=5100,["map_projectile_speed_+%"]=1577,["map_rampage_time_+%"]=5101,["map_random_unique_monster_is_possessed"]=5102,["map_rare_breach_monster_additional_breach_ring_drop_chance_%"]=5103,["map_rare_breach_monsters_drop_additional_shards"]=5104,["map_rare_monster_life_regeneration_rate_per_minute_%"]=3442,["map_rare_monsters_are_hindered"]=5105,["map_rare_monsters_drop_rare_prismatic_ring_on_death_%"]=5106,["map_rare_monsters_drop_x_additional_rare_items"]=5107,["map_rare_monsters_have_inner_treasure"]=5108,["map_rare_monsters_have_nemesis_mod"]=1798,["map_rogue_exile_attack_cast_and_movement_speed_+%"]=5109,["map_rogue_exile_drop_skill_gem_with_quality"]=5110,["map_rogue_exiles_are_doubled"]=5111,["map_rogue_exiles_damage_+%"]=5112,["map_rogue_exiles_drop_additional_currency_items_with_quality"]=5113,["map_rogue_exiles_drop_x_additional_jewels"]=5114,["map_rogue_exiles_dropped_items_are_corrupted"]=5115,["map_rogue_exiles_dropped_items_are_duplicated"]=5116,["map_rogue_exiles_dropped_items_are_fully_linked"]=5117,["map_rogue_exiles_maximum_life_+%"]=5118,["map_shaper_rare_chance_+%"]=5119,["map_shrines_are_darkshrines"]=1551,["map_shrines_drop_x_currency_items_on_activation"]=5120,["map_shrines_grant_a_random_additional_effect"]=5121,["map_size_+%"]=1513,["map_spawn_abysses"]=5122,["map_spawn_bestiary_encounters"]=5123,["map_spawn_betrayals"]=1795,["map_spawn_beyond_boss_when_beyond_boss_slain_%"]=5124,["map_spawn_cadiro_%_chance"]=5125,["map_spawn_exile_per_area_%"]=1792,["map_spawn_extra_exiles"]=1547,["map_spawn_extra_perandus_chests"]=5126,["map_spawn_extra_talismans"]=1555,["map_spawn_extra_torment_spirits"]=1557,["map_spawn_extra_warbands"]=1549,["map_spawn_harbingers"]=1552,["map_spawn_incursion_encounters"]=5127,["map_spawn_perandus_chests"]=1554,["map_spawn_talismans"]=1553,["map_spawn_tormented_spirits"]=1800,["map_spawn_two_bosses"]=1623,["map_storm_area_of_effect_+%"]=5128,["map_strongbox_items_dropped_are_mirrored"]=5129,["map_strongbox_monsters_attack_speed_+%"]=5130,["map_strongbox_monsters_item_quantity_+%"]=5131,["map_strongboxes_are_corrupted"]=5132,["map_strongboxes_drop_x_additional_rare_items"]=5133,["map_strongboxes_minimum_rarity"]=5134,["map_strongboxes_vaal_orb_drop_chance_%"]=4964,["map_synthesis_league"]=5135,["map_synthesis_spawn_additional_abyss_bone_chest_clusters"]=5136,["map_synthesis_spawn_additional_bloodworm_barrel_clusters"]=5137,["map_synthesis_spawn_additional_fungal_chest_clusters"]=5138,["map_synthesis_spawn_additional_magic_ambush_chest"]=5139,["map_synthesis_spawn_additional_normal_ambush_chest"]=5140,["map_synthesis_spawn_additional_parasite_barrel_clusters"]=5141,["map_synthesis_spawn_additional_rare_ambush_chest"]=5142,["map_synthesis_spawn_additional_volatile_barrel_clusters"]=5143,["map_synthesis_spawn_additional_wealthy_barrel_clusters"]=5144,["map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%"]=5145,["map_synthesised_magic_monster_additional_currency_item_drop_chance_%"]=5146,["map_synthesised_magic_monster_additional_currency_shard_drop_chance_%"]=5147,["map_synthesised_magic_monster_additional_divination_card_drop_chance_%"]=5148,["map_synthesised_magic_monster_additional_elder_item_drop_chance_%"]=5149,["map_synthesised_magic_monster_additional_fossil_drop_chance_%"]=5150,["map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%"]=5151,["map_synthesised_magic_monster_additional_shaper_item_drop_chance_%"]=5152,["map_synthesised_magic_monster_drop_additional_currency"]=5153,["map_synthesised_magic_monster_drop_additional_currency_shard"]=5154,["map_synthesised_magic_monster_drop_additional_quality_currency"]=5155,["map_synthesised_magic_monster_dropped_item_quantity_+%"]=5156,["map_synthesised_magic_monster_dropped_item_rarity_+%"]=5157,["map_synthesised_magic_monster_fractured_item_drop_chance_+%"]=5158,["map_synthesised_magic_monster_items_drop_corrupted_%"]=5159,["map_synthesised_magic_monster_map_drop_chance_+%"]=5160,["map_synthesised_magic_monster_slain_experience_+%"]=5161,["map_synthesised_magic_monster_unique_item_drop_chance_+%"]=5162,["map_synthesised_monster_additional_breach_splinter_drop_chance_%"]=5163,["map_synthesised_monster_additional_currency_item_drop_chance_%"]=5164,["map_synthesised_monster_additional_currency_shard_drop_chance_%"]=5165,["map_synthesised_monster_additional_divination_card_drop_chance_%"]=5166,["map_synthesised_monster_additional_elder_item_drop_chance_%"]=5167,["map_synthesised_monster_additional_fossil_drop_chance_%"]=5168,["map_synthesised_monster_additional_quality_currency_item_drop_chance_%"]=5169,["map_synthesised_monster_additional_shaper_item_drop_chance_%"]=5170,["map_synthesised_monster_dropped_item_quantity_+%"]=5171,["map_synthesised_monster_dropped_item_rarity_+%"]=5172,["map_synthesised_monster_fractured_item_drop_chance_+%"]=5173,["map_synthesised_monster_items_drop_corrupted_%"]=5174,["map_synthesised_monster_map_drop_chance_+%"]=5175,["map_synthesised_monster_pack_size_+%"]=5176,["map_synthesised_monster_slain_experience_+%"]=5177,["map_synthesised_monster_unique_item_drop_chance_+%"]=5178,["map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%"]=5179,["map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%"]=5180,["map_synthesised_rare_monster_additional_currency_item_drop_chance_%"]=5181,["map_synthesised_rare_monster_additional_currency_shard_drop_chance_%"]=5182,["map_synthesised_rare_monster_additional_divination_card_drop_chance_%"]=5183,["map_synthesised_rare_monster_additional_elder_item_drop_chance_%"]=5184,["map_synthesised_rare_monster_additional_essence_drop_chance_%"]=5185,["map_synthesised_rare_monster_additional_fossil_drop_chance_%"]=5186,["map_synthesised_rare_monster_additional_jewel_drop_chance_%"]=5187,["map_synthesised_rare_monster_additional_map_drop_chance_%"]=5188,["map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%"]=5189,["map_synthesised_rare_monster_additional_shaper_item_drop_chance_%"]=5190,["map_synthesised_rare_monster_additional_talisman_drop_chance_%"]=5191,["map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%"]=5192,["map_synthesised_rare_monster_additional_veiled_item_drop_chance_%"]=5193,["map_synthesised_rare_monster_drop_additional_breach_splinter"]=5194,["map_synthesised_rare_monster_drop_additional_currency"]=5195,["map_synthesised_rare_monster_drop_additional_currency_shard"]=5196,["map_synthesised_rare_monster_drop_additional_quality_currency"]=5197,["map_synthesised_rare_monster_dropped_item_quantity_+%"]=5198,["map_synthesised_rare_monster_dropped_item_rarity_+%"]=5199,["map_synthesised_rare_monster_fractured_item_drop_chance_+%"]=5200,["map_synthesised_rare_monster_gives_mods_to_killer_chance_%"]=5201,["map_synthesised_rare_monster_items_drop_corrupted_%"]=5202,["map_synthesised_rare_monster_map_drop_chance_+%"]=5203,["map_synthesised_rare_monster_resurrect_as_ally_chance_%"]=5204,["map_synthesised_rare_monster_slain_experience_+%"]=5205,["map_synthesised_rare_monster_unique_item_drop_chance_+%"]=5206,["map_talismans_dropped_as_rare"]=5207,["map_talismans_higher_tier"]=5208,["map_tempest_area_of_effect_+%_visible"]=5209,["map_tempest_base_ground_desecration_damage_to_deal_per_minute"]=1529,["map_tempest_base_ground_fire_damage_to_deal_per_minute"]=1525,["map_tempest_display_prefix"]=33,["map_tempest_display_suffix"]=34,["map_tempest_frequency_+%"]=5210,["map_tempest_ground_ice"]=1526,["map_tempest_ground_lightning"]=1527,["map_tempest_ground_tar_movement_speed_+%"]=1528,["map_tormented_spirits_drop_x_additional_rare_items"]=5211,["map_tormented_spirits_duration_+%"]=5212,["map_tormented_spirits_movement_speed_+%"]=5213,["map_unique_boss_drops_divination_cards"]=5214,["map_unique_item_drop_chance_+%"]=5215,["map_unique_monsters_drop_corrupted_items"]=5216,["map_upgrade_pack_to_magic_%_chance"]=5217,["map_upgrade_pack_to_rare_%_chance"]=5218,["map_upgrade_synthesised_pack_to_magic_%_chance"]=5219,["map_upgrade_synthesised_pack_to_rare_%_chance"]=5220,["map_vaal_monster_items_drop_corrupted_%"]=5221,["map_vaal_mortal_strongbox_chance_per_fragment_%"]=5222,["map_vaal_sacrifice_strongbox_chance_per_fragment_%"]=5223,["map_warbands_packs_have_additional_elites"]=5224,["map_warbands_packs_have_additional_grunts"]=5225,["map_warbands_packs_have_additional_supports"]=5226,["map_warlord_influence"]=1548,["map_watchstone_additional_packs_of_elder_monsters"]=5227,["map_watchstone_additional_packs_of_shaper_monsters"]=5228,["map_watchstone_monsters_damage_+%_final"]=5229,["map_watchstone_monsters_life_+%_final"]=5230,["map_weapons_drop_animated"]=2215,["max_chance_to_block_attacks_if_not_blocked_recently"]=5231,["max_charged_attack_stacks"]=3373,["max_endurance_charges"]=1064,["max_frenzy_charges"]=1066,["max_power_charges"]=1068,["maximum_added_chaos_damage_if_have_crit_recently"]=5283,["maximum_added_chaos_damage_per_spiders_web_on_enemy"]=5284,["maximum_added_chaos_damage_vs_enemies_with_5+_poisons"]=5285,["maximum_added_cold_damage_if_have_crit_recently"]=5286,["maximum_added_cold_damage_per_frenzy_charge"]=3427,["maximum_added_cold_damage_to_attacks_per_10_dexterity"]=5287,["maximum_added_cold_damage_vs_chilled_enemies"]=5288,["maximum_added_cold_damage_while_affected_by_hatred"]=5289,["maximum_added_cold_damage_while_you_have_avians_might"]=5290,["maximum_added_fire_attack_damage_per_active_buff"]=625,["maximum_added_fire_damage_if_blocked_recently"]=3429,["maximum_added_fire_damage_if_have_crit_recently"]=5291,["maximum_added_fire_damage_per_active_buff"]=627,["maximum_added_fire_damage_per_endurance_charge"]=5292,["maximum_added_fire_damage_to_attacks_per_10_strength"]=5293,["maximum_added_fire_damage_to_hits_vs_blinded_enemies"]=5294,["maximum_added_fire_damage_vs_ignited_enemies"]=624,["maximum_added_fire_spell_damage_per_active_buff"]=626,["maximum_added_lightning_damage_if_have_crit_recently"]=5295,["maximum_added_lightning_damage_per_10_int"]=5232,["maximum_added_lightning_damage_per_power_charge"]=5296,["maximum_added_lightning_damage_per_shocked_enemy_killed_recently"]=5297,["maximum_added_lightning_damage_to_attacks_per_10_intelligence"]=5298,["maximum_added_lightning_damage_to_spells_per_power_charge"]=5299,["maximum_added_lightning_damage_while_you_have_avians_might"]=5300,["maximum_added_physical_damage_if_have_crit_recently"]=5301,["maximum_added_physical_damage_per_endurance_charge"]=5302,["maximum_added_physical_damage_vs_bleeding_enemies"]=1686,["maximum_added_physical_damage_vs_frozen_enemies"]=623,["maximum_added_physical_damage_vs_poisoned_enemies"]=5303,["maximum_added_spell_cold_damage_while_no_life_is_reserved"]=5304,["maximum_added_spell_fire_damage_while_no_life_is_reserved"]=5305,["maximum_added_spell_lightning_damage_while_no_life_is_reserved"]=5306,["maximum_blitz_charges"]=5233,["maximum_block_%"]=1236,["maximum_challenger_charges"]=5234,["maximum_chaos_damage_to_return_to_melee_attacker"]=1445,["maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice"]=5235,["maximum_cold_damage_to_return_to_melee_attacker"]=1443,["maximum_critical_strike_chance"]=1913,["maximum_divine_charges"]=3525,["maximum_dodge_chance_%"]=5236,["maximum_endurance_charges_is_equal_to_maximum_frenzy_charges"]=5237,["maximum_energy_shield_%_lost_on_kill"]=1021,["maximum_energy_shield_+%"]=858,["maximum_energy_shield_+_per_100_life_reserved"]=863,["maximum_energy_shield_+_per_5_armour_on_shield"]=3515,["maximum_energy_shield_+_per_5_strength"]=2941,["maximum_energy_shield_+_per_6_body_armour_evasion_rating"]=864,["maximum_energy_shield_from_body_armour_+%"]=5238,["maximum_energy_shield_leech_amount_per_leech_%_max_energy_shield"]=994,["maximum_energy_shield_leech_amount_per_leech_+%"]=991,["maximum_energy_shield_leech_rate_%_per_minute"]=993,["maximum_energy_shield_leech_rate_+%"]=999,["maximum_energy_shield_leech_rate_+%_while_affected_by_zealotry"]=1000,["maximum_es_+%_per_equipped_corrupted_item"]=2266,["maximum_es_leech_rate_+1%_per_6_stat_value_while_affected_by_zealotry"]=1001,["maximum_es_taken_as_physical_damage_on_minion_death_%"]=2192,["maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash"]=5239,["maximum_fire_damage_to_return_to_melee_attacker"]=1442,["maximum_frenzy_charges_is_equal_to_maximum_power_charges"]=5240,["maximum_life_%_lost_on_kill"]=1019,["maximum_life_%_to_add_as_maximum_armour"]=5247,["maximum_life_%_to_add_as_maximum_energy_shield"]=5248,["maximum_life_%_to_convert_to_maximum_energy_shield"]=5249,["maximum_life_+%"]=867,["maximum_life_+%_for_corpses_you_create"]=5250,["maximum_life_+%_per_abyssal_jewel_affecting_you"]=5251,["maximum_life_+%_per_equipped_corrupted_item"]=2265,["maximum_life_leech_amount_per_leech_%_max_life"]=5241,["maximum_life_leech_amount_per_leech_+%"]=989,["maximum_life_leech_rate_%_per_minute"]=992,["maximum_life_leech_rate_%_per_minute_is_doubled"]=5242,["maximum_life_leech_rate_+%"]=996,["maximum_life_leech_rate_+%_if_have_taken_a_savage_hit_recently"]=5243,["maximum_life_leech_rate_+1%_per_12_stat_value"]=997,["maximum_life_mana_and_energy_shield_+%"]=866,["maximum_life_per_10_dexterity"]=5244,["maximum_life_per_10_intelligence"]=5245,["maximum_life_per_10_levels"]=1929,["maximum_life_per_2%_increased_item_found_rarity"]=5246,["maximum_life_per_equipped_elder_item"]=3470,["maximum_life_taken_as_physical_damage_on_minion_death_%"]=2191,["maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=5252,["maximum_lightning_damage_to_return_on_block"]=1775,["maximum_lightning_damage_to_return_to_melee_attacker"]=1444,["maximum_mana_%_gained_on_kill"]=1020,["maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity"]=5254,["maximum_mana_+%"]=873,["maximum_mana_+%_per_2%_spell_block_chance"]=2741,["maximum_mana_+%_per_abyssal_jewel_affecting_you"]=5255,["maximum_mana_leech_amount_per_leech_%_max_mana"]=5253,["maximum_mana_leech_amount_per_leech_+%"]=990,["maximum_mana_leech_rate_%_per_minute"]=995,["maximum_mana_leech_rate_+%"]=998,["maximum_physical_damage_reduction_%"]=835,["maximum_physical_damage_to_reflect_to_self_on_attack"]=1440,["maximum_physical_damage_to_return_on_block"]=1774,["maximum_physical_damage_to_return_to_melee_attacker"]=1441,["maximum_power_and_frenzy_charges_+"]=1069,["maximum_rage"]=5511,["maximum_siphoning_charges_per_elder_or_shaper_item_equipped"]=3476,["maximum_spell_block_chance_per_50_strength"]=1238,["maximum_spell_dodge_chance_%"]=5256,["maximum_spirit_charges_per_abyss_jewel_equipped"]=3518,["maximum_void_arrows"]=3495,["melee_ancestor_totem_damage_+%"]=2790,["melee_ancestor_totem_elemental_resistance_%"]=3273,["melee_ancestor_totem_grant_owner_attack_speed_+%"]=2964,["melee_ancestor_totem_placement_speed_+%"]=3134,["melee_attack_number_of_spirit_strikes"]=5257,["melee_attack_speed_+%"]=723,["melee_attacks_usable_without_mana_cost"]=1844,["melee_cold_damage_+%"]=1231,["melee_cold_damage_+%_while_holding_shield"]=1234,["melee_critical_strike_chance_+%"]=789,["melee_critical_strike_multiplier_+_while_wielding_shield"]=813,["melee_damage_+%"]=594,["melee_damage_+%_during_flask_effect"]=5258,["melee_damage_+%_per_endurance_charge"]=3327,["melee_damage_+%_vs_burning_enemies"]=599,["melee_damage_+%_vs_frozen_enemies"]=595,["melee_damage_+%_vs_shocked_enemies"]=597,["melee_damage_+%_when_on_full_life"]=1814,["melee_damage_+%_while_fortified"]=3404,["melee_damage_taken_%_to_deal_to_attacker"]=1875,["melee_damage_taken_+%"]=1914,["melee_damage_vs_bleeding_enemies_+%"]=1684,["melee_fire_damage_+%"]=1230,["melee_fire_damage_+%_while_holding_shield"]=1233,["melee_movement_skill_chance_to_fortify_on_hit_%"]=5259,["melee_physical_damage_+%"]=1229,["melee_physical_damage_+%_per_10_dexterity"]=5260,["melee_physical_damage_+%_per_10_strength_while_fortified"]=5261,["melee_physical_damage_+%_vs_ignited_enemies"]=3445,["melee_physical_damage_+%_while_fortify_is_active"]=1507,["melee_physical_damage_+%_while_holding_shield"]=1232,["melee_physical_damage_taken_%_to_deal_to_attacker"]=1652,["melee_range_+"]=1722,["melee_range_+_while_dual_wielding"]=5263,["melee_range_+_while_unarmed"]=2246,["melee_range_+_while_wielding_shield"]=5262,["melee_range_+_with_axe"]=5264,["melee_range_+_with_claw"]=5265,["melee_range_+_with_dagger"]=5266,["melee_range_+_with_mace"]=5267,["melee_range_+_with_one_handed"]=5268,["melee_range_+_with_staff"]=5269,["melee_range_+_with_sword"]=5270,["melee_range_+_with_two_handed"]=5271,["melee_skills_area_of_effect_+%"]=5272,["melee_splash"]=541,["melee_strike_skill_strike_previous_location"]=5273,["melee_weapon_critical_strike_multiplier_+"]=811,["melee_weapon_range_+_if_you_have_killed_recently"]=5274,["melee_weapon_range_+_while_at_maximum_frenzy_charges"]=5275,["melee_weapon_range_+_while_fortified"]=5276,["mine_area_damage_+%_if_detonated_mine_recently"]=5277,["mine_area_of_effect_+%"]=5278,["mine_area_of_effect_+%_if_detonated_mine_recently"]=5279,["mine_arming_speed_+%"]=3382,["mine_aura_effect_+%"]=5280,["mine_critical_strike_chance_+%"]=785,["mine_critical_strike_multiplier_+"]=815,["mine_damage_+%"]=560,["mine_damage_leeched_as_life_to_you_permyriad"]=3389,["mine_damage_penetrates_%_elemental_resistance"]=1954,["mine_detonation_is_instant"]=1952,["mine_detonation_radius_+%"]=1165,["mine_detonation_speed_+%"]=5281,["mine_duration_+%"]=1163,["mine_extra_uses"]=2202,["mine_laying_speed_+%"]=1167,["mine_laying_speed_+%_for_4_seconds_on_detonation"]=2640,["mines_hinder_nearby_enemies_for_x_ms_on_arming"]=5282,["mines_invulnerable_for_duration_ms"]=1957,["minimum_added_chaos_damage_if_have_crit_recently"]=5283,["minimum_added_chaos_damage_per_spiders_web_on_enemy"]=5284,["minimum_added_chaos_damage_vs_enemies_with_5+_poisons"]=5285,["minimum_added_cold_damage_if_have_crit_recently"]=5286,["minimum_added_cold_damage_per_frenzy_charge"]=3427,["minimum_added_cold_damage_to_attacks_per_10_dexterity"]=5287,["minimum_added_cold_damage_vs_chilled_enemies"]=5288,["minimum_added_cold_damage_while_affected_by_hatred"]=5289,["minimum_added_cold_damage_while_you_have_avians_might"]=5290,["minimum_added_fire_attack_damage_per_active_buff"]=625,["minimum_added_fire_damage_if_blocked_recently"]=3429,["minimum_added_fire_damage_if_have_crit_recently"]=5291,["minimum_added_fire_damage_per_active_buff"]=627,["minimum_added_fire_damage_per_endurance_charge"]=5292,["minimum_added_fire_damage_to_attacks_per_10_strength"]=5293,["minimum_added_fire_damage_to_hits_vs_blinded_enemies"]=5294,["minimum_added_fire_damage_vs_ignited_enemies"]=624,["minimum_added_fire_spell_damage_per_active_buff"]=626,["minimum_added_lightning_damage_if_have_crit_recently"]=5295,["minimum_added_lightning_damage_per_power_charge"]=5296,["minimum_added_lightning_damage_per_shocked_enemy_killed_recently"]=5297,["minimum_added_lightning_damage_to_attacks_per_10_intelligence"]=5298,["minimum_added_lightning_damage_to_spells_per_power_charge"]=5299,["minimum_added_lightning_damage_while_you_have_avians_might"]=5300,["minimum_added_physical_damage_if_have_crit_recently"]=5301,["minimum_added_physical_damage_per_endurance_charge"]=5302,["minimum_added_physical_damage_vs_bleeding_enemies"]=1686,["minimum_added_physical_damage_vs_frozen_enemies"]=623,["minimum_added_physical_damage_vs_poisoned_enemies"]=5303,["minimum_added_spell_cold_damage_while_no_life_is_reserved"]=5304,["minimum_added_spell_fire_damage_while_no_life_is_reserved"]=5305,["minimum_added_spell_lightning_damage_while_no_life_is_reserved"]=5306,["minimum_chaos_damage_to_return_to_melee_attacker"]=1445,["minimum_cold_damage_to_return_to_melee_attacker"]=1443,["minimum_endurance_charges_at_devotion_threshold"]=5307,["minimum_endurance_charges_while_on_low_life_+"]=5308,["minimum_fire_damage_to_return_to_melee_attacker"]=1442,["minimum_frenzy_charges_at_devotion_threshold"]=5309,["minimum_lightning_damage_to_return_on_block"]=1775,["minimum_lightning_damage_to_return_to_melee_attacker"]=1444,["minimum_physical_damage_to_reflect_to_self_on_attack"]=1440,["minimum_physical_damage_to_return_on_block"]=1774,["minimum_physical_damage_to_return_to_melee_attacker"]=1441,["minimum_power_charges_at_devotion_threshold"]=5310,["minimum_power_charges_while_on_low_life_+"]=5311,["minion_accuracy_rating"]=5312,["minion_accuracy_rating_+%"]=5314,["minion_accuracy_rating_per_10_devotion"]=5313,["minion_additional_physical_damage_reduction_%"]=1511,["minion_additional_spell_block_%"]=2070,["minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently"]=5315,["minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"]=5316,["minion_attack_and_cast_speed_+%_per_10_devotion"]=5317,["minion_attack_and_cast_speed_+%_per_active_skeleton"]=2442,["minion_attack_maximum_added_physical_damage"]=2932,["minion_attack_minimum_added_physical_damage"]=2932,["minion_attack_speed_+%"]=2073,["minion_attack_speed_+%_per_50_dex"]=5318,["minion_attacks_chance_to_blind_on_hit_%"]=5319,["minion_attacks_chance_to_taunt_on_hit_%"]=2598,["minion_base_physical_damage_%_to_convert_to_chaos"]=1201,["minion_base_physical_damage_%_to_convert_to_chaos_per_white_socket_on_item"]=1899,["minion_base_physical_damage_%_to_convert_to_cold"]=1197,["minion_base_physical_damage_%_to_convert_to_cold_per_green_socket_on_item"]=1893,["minion_base_physical_damage_%_to_convert_to_fire"]=1195,["minion_base_physical_damage_%_to_convert_to_fire_per_red_socket_on_item"]=1889,["minion_base_physical_damage_%_to_convert_to_lightning"]=1199,["minion_base_physical_damage_%_to_convert_to_lightning_per_blue_socket_on_item"]=1895,["minion_block_%"]=2069,["minion_cast_speed_+%"]=2074,["minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=2606,["minion_chance_to_deal_double_damage_%"]=5320,["minion_chance_to_dodge_%"]=2227,["minion_chance_to_dodge_spells_%"]=5321,["minion_chance_to_freeze_shock_ignite_%"]=5322,["minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=2554,["minion_chance_to_gain_unholy_might_on_kill_for_4_seconds_%"]=2552,["minion_chaos_resistance_%"]=2079,["minion_cold_damage_resistance_%"]=3342,["minion_damage_+%"]=1221,["minion_damage_+%_if_enemy_hit_recently"]=5323,["minion_damage_+%_if_have_used_a_minion_skill_recently"]=1222,["minion_damage_+%_per_10_dex"]=1224,["minion_damage_+%_per_active_spectre"]=2444,["minion_damage_+%_vs_abyssal_monsters"]=5324,["minion_damage_increases_and_reductions_also_affects_you"]=3451,["minion_damage_taken_+%"]=5325,["minion_duration_+%_per_active_zombie"]=2443,["minion_elemental_damage_%_to_add_as_chaos"]=5326,["minion_elemental_resistance_%"]=2078,["minion_elemental_resistance_30%"]=5327,["minion_flask_charges_used_+%"]=1430,["minion_global_maximum_added_chaos_damage"]=2933,["minion_global_maximum_added_cold_damage"]=2934,["minion_global_maximum_added_fire_damage"]=2935,["minion_global_maximum_added_lightning_damage"]=2936,["minion_global_maximum_added_physical_damage"]=2937,["minion_global_minimum_added_chaos_damage"]=2933,["minion_global_minimum_added_cold_damage"]=2934,["minion_global_minimum_added_fire_damage"]=2935,["minion_global_minimum_added_lightning_damage"]=2936,["minion_global_minimum_added_physical_damage"]=2937,["minion_grants_rampage_kill_to_parent_on_hitting_unique_enemy_%"]=5328,["minion_larger_aggro_radius"]=5839,["minion_life_leech_from_any_damage_permyriad"]=2076,["minion_life_leech_permyriad_vs_poisoned_enemies"]=5329,["minion_life_regeneration_per_minute_per_active_raging_spirit"]=2445,["minion_life_regeneration_rate_per_minute_%"]=2077,["minion_life_regeneration_rate_per_second"]=5330,["minion_maximum_all_elemental_resistances_%"]=5331,["minion_maximum_energy_shield_+%"]=1030,["minion_maximum_life_%_to_add_as_maximum_energy_shield"]=5332,["minion_maximum_life_+%"]=1028,["minion_maximum_mana_+%"]=1029,["minion_movement_speed_+%"]=1031,["minion_movement_speed_+%_per_50_dex"]=5333,["minion_no_extra_bleed_damage_while_moving"]=2358,["minion_physical_damage_%_to_add_as_cold"]=3343,["minion_physical_damage_reduction_rating"]=2071,["minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage"]=5335,["minion_raging_spirit_maximum_life_+%"]=5334,["minion_recover_%_of_maximum_life_on_block"]=2231,["minion_recover_X_life_on_block"]=1025,["minion_skill_area_of_effect_+%"]=2193,["minion_skill_gem_level_+"]=901,["minion_skill_mana_cost_+%"]=5336,["minion_spells_chance_to_hinder_on_hit_%"]=5337,["minion_unholy_might_on_kill_duration_ms"]=2083,["minions_%_chance_to_blind_on_hit"]=3312,["minions_cannot_be_blinded"]=3311,["minions_cannot_taunt_enemies"]=5338,["minions_chance_to_intimidate_on_hit_%"]=5339,["minions_chance_to_poison_on_hit_%"]=2341,["minions_gain_your_strength"]=5340,["minions_get_shield_stats_instead_of_you"]=1436,["minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%"]=2504,["minions_have_aura_effect_+%"]=1388,["minions_hits_can_only_kill_ignited_enemies"]=5341,["minions_recover_%_maximum_life_on_killing_poisoned_enemy"]=5342,["minions_recover_%_maximum_life_when_you_focus"]=5343,["minions_use_parents_flasks_on_summon"]=1426,["mirror_arrow_and_mirror_arrow_clone_attack_speed_+%"]=3027,["mirror_arrow_and_mirror_arrow_clone_damage_+%"]=2884,["mirror_arrow_cooldown_speed_+%"]=3045,["mod_granted_passive_hash"]=5344,["mod_granted_passive_hash_2"]=5345,["modifiers_to_claw_attack_speed_also_affect_unarmed_attack_speed"]=2729,["modifiers_to_claw_critical_strike_chance_also_affect_unarmed_critical_strike_chance"]=2730,["modifiers_to_claw_damage_also_affect_unarmed_damage"]=2728,["modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity"]=2752,["modifiers_to_minion_cast_speed_also_affect_you"]=2915,["modifiers_to_minion_damage_also_affect_you"]=2913,["modifiers_to_minion_life_regeneration_also_affect_you"]=2916,["modifiers_to_minion_movement_speed_also_affect_you"]=2917,["modifiers_to_minion_resistances_also_affect_you"]=2918,["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=5346,["molten_shell_buff_effect_+%"]=3184,["molten_shell_damage_+%"]=2872,["molten_shell_duration_+%"]=5347,["molten_strike_damage_+%"]=2806,["molten_strike_num_of_additional_projectiles"]=3107,["molten_strike_radius_+%"]=2974,["monster_base_block_%"]=520,["monster_dropped_item_quantity_+%"]=11,["monster_dropped_item_rarity_+%"]=10,["monster_life_+%_final_from_map"]=869,["monster_life_+%_final_from_rarity"]=868,["monster_slain_experience_+%"]=9,["mortar_barrage_mine_damage_+%"]=5348,["mortar_barrage_mine_num_projectiles"]=5349,["mortar_barrage_mine_throwing_speed_+%"]=5351,["mortar_barrage_mine_throwing_speed_halved_+%"]=5350,["movement_attack_skills_attack_speed_+%"]=5352,["movement_skills_cooldown_speed_+%"]=5353,["movement_skills_cooldown_speed_+%_while_affected_by_haste"]=5354,["movement_skills_cost_no_mana"]=2637,["movement_skills_deal_no_physical_damage"]=5355,["movement_skills_mana_cost_+%"]=3335,["movement_speed_+%_during_flask_effect"]=2353,["movement_speed_+%_for_4_seconds_on_block"]=2495,["movement_speed_+%_if_enemy_hit_recently"]=5358,["movement_speed_+%_if_enemy_killed_recently"]=3416,["movement_speed_+%_if_have_not_taken_damage_recently"]=5359,["movement_speed_+%_if_have_used_a_vaal_skill_recently"]=5360,["movement_speed_+%_if_pierced_recently"]=3360,["movement_speed_+%_if_placed_trap_or_mine_recently"]=5356,["movement_speed_+%_if_used_a_warcry_recently"]=3331,["movement_speed_+%_on_throwing_trap"]=1943,["movement_speed_+%_per_chest_opened_recently"]=5361,["movement_speed_+%_per_endurance_charge"]=5362,["movement_speed_+%_per_nearby_enemy"]=5363,["movement_speed_+%_per_power_charge"]=5364,["movement_speed_+%_while_affected_by_grace"]=5365,["movement_speed_+%_while_bleeding"]=5366,["movement_speed_+%_while_fortified"]=2496,["movement_speed_+%_while_not_affected_by_status_ailments"]=2486,["movement_speed_+%_while_on_burning_chilled_shocked_ground"]=5367,["movement_speed_+%_while_on_burning_ground"]=5368,["movement_speed_+%_while_you_have_cats_stealth"]=5369,["movement_speed_+%_while_you_have_energy_shield"]=5370,["movement_speed_bonus_when_throwing_trap_ms"]=1943,["movement_speed_cannot_be_reduced_below_base"]=2362,["movement_speed_is_%_of_base"]=5357,["movement_velocity_+%_on_full_energy_shield"]=2138,["movement_velocity_+%_per_frenzy_charge"]=1062,["movement_velocity_+%_per_shock"]=1975,["movement_velocity_+%_per_totem"]=5371,["movement_velocity_+%_when_on_full_life"]=1060,["movement_velocity_+%_when_on_low_life"]=1059,["movement_velocity_+%_when_on_shocked_ground"]=1389,["movement_velocity_+%_while_at_maximum_power_charges"]=5372,["movement_velocity_+%_while_cursed"]=1806,["movement_velocity_+%_while_ignited"]=1974,["movement_velocity_+%_while_phasing"]=1791,["movement_velocity_+1%_per_X_evasion_rating"]=1834,["movement_velocity_while_not_hit_+%"]=2391,["nearby_enemies_all_exposure_%_while_phasing"]=5373,["nearby_enemies_chilled_on_block"]=3426,["nearby_traps_within_x_units_also_trigger_on_triggering_trap"]=2646,["necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse"]=5374,["necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse"]=5375,["necromancer_defensive_notable_minion_maximum_life_+%_final"]=5376,["necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse"]=5377,["necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse"]=5378,["never_block"]=2434,["never_freeze"]=1749,["never_freeze_or_chill"]=1750,["never_ignite"]=1748,["never_shock"]=1751,["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=2309,["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=2308,["newpunishment_applied_buff_duration_ms"]=1043,["newpunishment_attack_speed_+%"]=739,["newpunishment_melee_damage_+%_final"]=1226,["newpunishment_melee_physical_damage_+%_final"]=1225,["no_critical_strike_multiplier"]=1837,["no_energy_shield"]=1411,["no_energy_shield_recharge_or_regeneration"]=1832,["no_energy_shield_recovery"]=2286,["no_extra_bleed_damage_while_moving"]=2359,["no_extra_bleed_damage_while_target_is_moving"]=5379,["no_life_regeneration"]=1508,["no_mana"]=1424,["no_mana_regeneration"]=1509,["no_maximum_power_charges"]=2186,["no_physical_damage_reduction_rating"]=1410,["non_chaos_damage_%_to_add_as_chaos_damage_per_siphoning_charge"]=3479,["non_chaos_damage_to_add_as_chaos_damage_%"]=5380,["non_chilled_enemies_you_bleed_are_chilled"]=5381,["non_chilled_enemies_you_poison_are_chilled"]=5382,["non_critical_damage_multiplier_+%"]=1883,["non_critical_strikes_deal_no_damage"]=5383,["non_critical_strikes_penetrate_elemental_resistances_%"]=2720,["non_curse_aura_effect_+%"]=2724,["non_curse_aura_effect_+%_per_10_devotion"]=5384,["non_damaging_ailment_effect_+%"]=5385,["non_damaging_ailment_effect_+%_per_10_devotion"]=5386,["non_damaging_ailment_effect_+%_per_equipped_elder_item"]=3473,["non_damaging_ailments_as_though_damage_+%_final"]=5387,["non_instant_mana_recovery_from_flasks_also_recovers_life"]=3484,["non_piercing_projectiles_critical_strike_chance_+%"]=5388,["non_unique_flask_effect_+%"]=1910,["normal_monster_dropped_item_quantity_+%"]=5389,["nova_spells_cast_at_target_location"]=5390,["num_of_additional_chains_at_max_frenzy_charges"]=1078,["number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more"]=5391,["number_of_additional_clones"]=2256,["number_of_additional_curses_allowed"]=1413,["number_of_additional_curses_allowed_on_self"]=1414,["number_of_additional_curses_allowed_while_at_maximum_power_charges"]=5392,["number_of_additional_ignites_allowed"]=5393,["number_of_additional_mines_to_place"]=2712,["number_of_additional_mines_to_place_with_at_least_500_dex"]=5394,["number_of_additional_mines_to_place_with_at_least_500_int"]=5395,["number_of_additional_projectiles"]=1054,["number_of_additional_projectiles_if_you_have_been_hit_recently"]=5396,["number_of_additional_projectiles_if_you_have_used_movement_skill_recently"]=5397,["number_of_additional_remote_mines_allowed"]=1495,["number_of_additional_siege_ballistae_per_200_dexterity"]=2565,["number_of_additional_totems_allowed"]=1493,["number_of_additional_totems_allowed_on_kill_for_8_seconds"]=2768,["number_of_additional_traps_allowed"]=1494,["number_of_additional_traps_to_throw"]=5398,["number_of_animated_weapons_allowed"]=5399,["number_of_chains"]=1051,["number_of_crab_charges_lost_when_hit"]=3491,["number_of_endurance_charges_to_gain_every_4_seconds_while_stationary"]=5400,["number_of_golems_allowed_with_3_primordial_jewels"]=5401,["number_of_melee_skeletons_to_summon_as_mage_skeletons"]=2416,["number_of_projectiles_+%_final_from_skill"]=5402,["number_of_skeletons_allowed_per_2_old"]=5403,["number_of_zombies_allowed_+%"]=1776,["number_of_zombies_allowed_+1_per_X_strength"]=5404,["object_inherent_attack_skills_damage_+%_final_per_frenzy_charge"]=2257,["occultist_energy_shield_always_recovers_for_4_seconds_after_starting_recovery"]=2908,["occultist_gain_%_of_non_chaos_damage_as_chaos_damage_per_curse_on_target_on_kill_for_4_seconds"]=2919,["occultist_immune_to_stun_while_has_energy_shield"]=2907,["occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds"]=2906,["off_hand_base_weapon_attack_duration_ms"]=17,["off_hand_maximum_attack_distance"]=21,["off_hand_minimum_attack_distance"]=19,["off_hand_quality"]=13,["off_hand_weapon_type"]=5,["offering_duration_+%"]=5405,["offering_spells_effect_+%"]=3222,["offerings_also_buff_you"]=542,["old_dagger_implicit_critical_strike_chance_+30%"]=771,["old_dagger_implicit_critical_strike_chance_+40%"]=772,["old_dagger_implicit_critical_strike_chance_+50%"]=773,["old_do_not_use_base_life_leech_from_cold_damage_permyriad"]=951,["old_do_not_use_base_life_leech_from_elemental_damage_permyriad"]=956,["old_do_not_use_base_life_leech_from_fire_damage_permyriad"]=949,["old_do_not_use_base_life_leech_from_lightning_damage_permyriad"]=953,["old_do_not_use_base_life_leech_from_physical_damage_permyriad"]=947,["old_do_not_use_base_mana_leech_from_lightning_damage_permyriad"]=978,["old_do_not_use_global_mana_leech_from_physical_attack_damage_%_per_blue_socket_on_item"]=1896,["old_do_not_use_life_leech_%_vs_frozen_enemies"]=960,["old_do_not_use_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"]=962,["old_do_not_use_life_leech_from_physical_damage_%"]=931,["old_do_not_use_life_leech_from_physical_damage_with_claw_%"]=935,["old_do_not_use_life_leech_from_spell_damage_%"]=944,["old_do_not_use_life_leech_permyriad_on_crit"]=964,["old_do_not_use_life_leech_permyriad_vs_shocked_enemies"]=958,["old_do_not_use_local_flask_life_leech_%_while_healing"]=476,["old_do_not_use_local_flask_mana_leech_%_while_healing"]=480,["old_do_not_use_local_life_leech_from_physical_damage_%"]=933,["old_do_not_use_local_mana_leech_from_physical_damage_%"]=969,["old_do_not_use_local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"]=2084,["old_do_not_use_mana_leech_%_vs_shocked_enemies"]=982,["old_do_not_use_mana_leech_from_physical_damage_%"]=967,["old_do_not_use_mana_leech_from_physical_damage_%_per_power_charge"]=984,["old_do_not_use_mana_leech_from_physical_damage_with_claw_%"]=940,["old_do_not_use_mana_leech_from_spell_damage_%"]=972,["old_do_not_use_minion_life_leech_from_any_damage_permyriad"]=2075,["old_do_not_use_spell_block_%_from_assumed_block_value"]=530,["old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value"]=531,["on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds"]=5406,["on_casting_banner_recover_%_of_planted_banner_stages"]=5407,["on_planting_banner_you_and_nearby_allies_recover_permyriad_maximum_life_per_stage"]=5408,["on_weapon_global_damage_+%"]=557,["one_handed_attack_speed_+%"]=2494,["one_handed_melee_accuracy_rating_+%"]=745,["one_handed_melee_attack_speed_+%"]=728,["one_handed_melee_cold_damage_+%"]=636,["one_handed_melee_critical_strike_chance_+%"]=788,["one_handed_melee_critical_strike_multiplier_+"]=810,["one_handed_melee_fire_damage_+%"]=635,["one_handed_melee_physical_damage_+%"]=634,["onslaught_buff_duration_on_culling_strike_ms"]=2197,["onslaught_buff_duration_on_kill_ms"]=1819,["onslaught_buff_duration_on_killing_taunted_enemy_ms"]=1820,["onslaught_duration_+%"]=5409,["onslaught_effect_+%"]=2458,["onslaught_on_crit_duration_ms"]=1838,["onslaught_on_vaal_skill_use_duration_ms"]=2090,["onslaught_time_granted_on_kill_ms"]=2164,["onslaught_time_granted_on_killing_shocked_enemy_ms"]=2165,["orb_of_storms_cast_speed_+%"]=5410,["orb_of_storms_damage_+%"]=2901,["override_maximum_damage_resistance_%"]=5411,["override_off_hand_base_critical_strike_chance"]=766,["override_off_hand_base_critical_strike_chance_to_5%"]=767,["override_weapon_base_critical_strike_chance"]=5412,["pain_attunement_keystone_spell_damage_+%_final"]=1438,["passive_applies_to_minions"]=2241,["pathfinder_poison_damage_+100%_final_chance_during_flask_effect"]=5413,["penetrate_elemental_resistance_per_frenzy_charge_%"]=2166,["perandus_double_number_of_coins_found"]=5414,["permanently_intimidate_enemies_you_hit_on_full_life"]=3408,["permanently_intimidate_enemy_on_block"]=5418,["phase_acrobatics_additional_chance_to_dodge_spells_%"]=1464,["phase_on_vaal_skill_use_duration_ms"]=2091,["phase_run_%_chance_to_not_consume_frenzy_charges"]=3186,["phase_run_skill_effect_duration_+%"]=3276,["phase_through_objects"]=1992,["phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy"]=3395,["phasing_for_4_seconds_on_kill_%"]=2629,["phasing_if_blocked_recently"]=5419,["phasing_on_rampage_threshold_ms"]=2137,["phasing_on_trap_triggered_by_an_enemy_ms"]=3395,["phys_cascade_trap_cooldown_speed_+%"]=5420,["phys_cascade_trap_damage_+%"]=5421,["phys_cascade_trap_duration_+%"]=5422,["phys_cascade_trap_number_of_additional_cascades"]=5423,["physical_attack_damage_+%"]=567,["physical_attack_damage_+%_while_holding_a_shield"]=571,["physical_attack_damage_taken_+"]=1473,["physical_axe_damage_+%"]=642,["physical_bow_damage_+%"]=661,["physical_claw_damage_+%"]=650,["physical_claw_damage_+%_when_on_low_life"]=1772,["physical_dagger_damage_+%"]=654,["physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems"]=3418,["physical_damage_%_added_as_fire_damage_on_kill"]=2371,["physical_damage_%_taken_from_mana_before_life"]=3319,["physical_damage_%_to_add_as_chaos"]=1174,["physical_damage_%_to_add_as_chaos_vs_bleeding_enemies"]=3394,["physical_damage_%_to_add_as_chaos_vs_poisoned_enemies"]=5427,["physical_damage_%_to_add_as_cold"]=1172,["physical_damage_%_to_add_as_fire"]=1171,["physical_damage_%_to_add_as_fire_damage_while_affected_by_anger"]=5428,["physical_damage_%_to_add_as_fire_if_have_crit_recently"]=5429,["physical_damage_%_to_add_as_fire_per_rage"]=5430,["physical_damage_%_to_add_as_lightning"]=1173,["physical_damage_%_to_add_as_lightning_damage_while_affected_by_wrath"]=5431,["physical_damage_%_to_add_as_random_element"]=2104,["physical_damage_%_to_convert_to_cold_at_devotion_threshold"]=5432,["physical_damage_%_to_convert_to_fire_at_devotion_threshold"]=5433,["physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire"]=5892,["physical_damage_%_to_convert_to_lightning_at_devotion_threshold"]=5434,["physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges"]=2636,["physical_damage_+%"]=591,["physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit"]=3384,["physical_damage_+%_per_explicit_map_mod_affecting_area"]=5424,["physical_damage_+%_vs_ignited_enemies"]=5435,["physical_damage_+%_vs_poisoned_enemies"]=2128,["physical_damage_+%_while_affected_by_herald_of_purity"]=5436,["physical_damage_+%_while_at_maximum_frenzy_charges_final"]=3387,["physical_damage_+%_while_frozen"]=2519,["physical_damage_+%_while_life_leeching"]=579,["physical_damage_+%_while_you_have_resolute_technique"]=5890,["physical_damage_+%_with_unholy_might"]=5437,["physical_damage_as_fire_damage_vs_ignited_enemies_%"]=1422,["physical_damage_can_chill"]=2046,["physical_damage_can_freeze"]=2047,["physical_damage_can_shock"]=2048,["physical_damage_cannot_poison"]=2057,["physical_damage_from_hits_%_taken_as_random_element"]=5425,["physical_damage_on_block_+%"]=2386,["physical_damage_over_time_+%"]=573,["physical_damage_over_time_per_10_dexterity_+%"]=2961,["physical_damage_over_time_taken_+%_while_moving"]=5426,["physical_damage_per_endurance_charge_+%"]=1381,["physical_damage_reduction_%_at_devotion_threshold"]=5438,["physical_damage_reduction_%_if_only_one_enemy_nearby"]=5446,["physical_damage_reduction_%_per_endurance_charge"]=1512,["physical_damage_reduction_%_per_hit_you_have_taken_recently"]=5440,["physical_damage_reduction_%_per_nearby_enemy"]=5448,["physical_damage_reduction_%_while_affected_by_herald_of_purity"]=5442,["physical_damage_reduction_and_minion_physical_damage_reduction_%"]=3221,["physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie"]=2620,["physical_damage_reduction_percent_per_frenzy_charge"]=5439,["physical_damage_reduction_percent_per_power_charge"]=5441,["physical_damage_reduction_rating_%_while_not_moving"]=3455,["physical_damage_reduction_rating_+%"]=838,["physical_damage_reduction_rating_+%_against_projectiles"]=1658,["physical_damage_reduction_rating_+%_per_endurance_charge"]=5447,["physical_damage_reduction_rating_+%_while_chilled_or_frozen"]=2742,["physical_damage_reduction_rating_+%_while_fortify_is_active"]=841,["physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked"]=1989,["physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand"]=1948,["physical_damage_reduction_rating_during_soul_gain_prevention"]=5443,["physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently"]=5444,["physical_damage_reduction_rating_per_5_evasion_on_shield"]=3516,["physical_damage_reduction_rating_per_endurance_charge"]=5445,["physical_damage_reduction_rating_per_level"]=1928,["physical_damage_reduction_rating_while_frozen"]=1972,["physical_damage_taken_%_as_chaos"]=1647,["physical_damage_taken_%_as_cold"]=1644,["physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements"]=5449,["physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice"]=5450,["physical_damage_taken_%_as_fire"]=1643,["physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements"]=5451,["physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire"]=5452,["physical_damage_taken_%_as_lightning"]=1645,["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements"]=5453,["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning"]=5454,["physical_damage_taken_+"]=1474,["physical_damage_taken_+%"]=1480,["physical_damage_taken_+%_while_at_maximum_endurance_charges"]=3388,["physical_damage_taken_+%_while_frozen"]=1973,["physical_damage_taken_+%_while_moving"]=3457,["physical_damage_taken_+_per_level"]=1475,["physical_damage_taken_+_vs_beasts"]=2097,["physical_damage_taken_on_minion_death"]=2196,["physical_damage_taken_per_minute_per_siphoning_charge_if_have_used_a_skill_recently"]=3482,["physical_damage_taken_when_hit_by_attack"]=1456,["physical_damage_to_return_to_melee_attacker"]=1446,["physical_damage_to_return_when_hit"]=1451,["physical_damage_while_dual_wielding_+%"]=630,["physical_damage_with_attack_skills_+%"]=5455,["physical_damage_with_spell_skills_+%"]=5456,["physical_dot_multiplier_+"]=605,["physical_mace_damage_+%"]=658,["physical_ranged_attack_damage_taken_+"]=1485,["physical_reflect_damage_taken_+%"]=1878,["physical_skill_gem_level_+"]=5457,["physical_spell_skill_gem_level_+"]=896,["physical_staff_damage_+%"]=645,["physical_sword_damage_+%"]=666,["physical_wand_damage_+%"]=670,["physical_weapon_damage_+%_per_10_str"]=1733,["piercing_attacks_cause_bleeding"]=2589,["piercing_projectiles_critical_strike_chance_+%"]=5458,["placing_traps_cooldown_recovery_+%"]=2625,["player_far_shot"]=5873,["player_gain_rampage_stacks"]=5843,["poachers_mark_curse_effect_+%"]=3166,["poachers_mark_duration_+%"]=3068,["poison_cursed_enemies_on_hit"]=3361,["poison_damage_+%_per_frenzy_charge"]=5459,["poison_damage_+%_per_power_charge"]=5460,["poison_damage_+%_vs_bleeding_enemies"]=5461,["poison_damage_+%_with_over_300_dexterity"]=5462,["poison_dot_multiplier_+"]=618,["poison_dot_multiplier_+_per_frenzy_charge"]=5463,["poison_duration_+%_per_poison_applied_recently"]=5464,["poison_duration_+%_per_power_charge"]=5465,["poison_duration_+%_with_over_150_intelligence"]=5466,["poison_from_critical_strikes_damage_+%_final"]=3400,["poison_on_critical_strike"]=5467,["poison_on_critical_strike_with_bow"]=764,["poison_on_critical_strike_with_dagger"]=761,["poison_on_hit_during_flask_effect_%"]=2470,["poison_on_melee_critical_strike_%"]=1944,["poison_on_melee_hit"]=3413,["poison_reflected_to_self"]=5468,["poison_time_passed_+%"]=5469,["power_charge_duration_+%"]=1384,["power_charge_on_block_%_chance"]=3425,["power_charge_on_kill_percent_chance_while_holding_shield"]=5470,["power_charge_on_spell_block_%_chance"]=5471,["power_frenzy_or_endurance_charge_on_kill_%"]=2771,["power_only_conduit"]=1500,["power_siphon_%_chance_to_gain_power_charge_on_kill"]=3133,["power_siphon_attack_speed_+%"]=3024,["power_siphon_damage_+%"]=2832,["power_siphon_number_of_additional_projectiles"]=5472,["precision_mana_reservation_+%"]=5474,["precision_mana_reservation_-50%_final"]=5473,["precision_reserves_no_mana"]=5475,["prevent_monster_heal"]=1147,["prevent_monster_heal_duration_+%"]=1148,["prevent_projectile_chaining_%_chance"]=5476,["pride_aura_effect_+%"]=5477,["pride_chance_to_deal_double_damage_%"]=5478,["pride_chance_to_impale_with_attacks_%"]=5479,["pride_intimidate_enemy_for_4_seconds_on_hit"]=5480,["pride_mana_reservation_+%"]=5481,["pride_physical_damage_+%"]=5482,["pride_reserves_no_mana"]=5483,["pride_your_impaled_debuff_lasts_+_additional_hits"]=5484,["primordial_jewel_count"]=5827,["projectile_attack_damage_+%"]=1244,["projectile_attack_damage_+%_during_flask_effect"]=5485,["projectile_attack_damage_+%_per_200_accuracy"]=3452,["projectile_attack_damage_+%_with_at_least_200_dex"]=3502,["projectile_attack_skill_critical_strike_chance_+%"]=3459,["projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion"]=3460,["projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion"]=3461,["projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion"]=3462,["projectile_base_number_of_targets_to_pierce"]=1052,["projectile_damage_%_for_each_remaining_chain"]=5486,["projectile_damage_+%"]=1243,["projectile_damage_+%_max_as_distance_travelled_increases"]=3239,["projectile_damage_+%_per_chain"]=5487,["projectile_damage_+%_per_pierced_enemy"]=5488,["projectile_damage_+%_per_power_charge"]=1817,["projectile_damage_modifiers_apply_to_skill_dot"]=1849,["projectile_damage_taken_+%"]=1915,["projectile_freeze_chance_%"]=1872,["projectile_ignite_chance_%"]=1871,["projectile_non_chaos_damage_to_add_as_chaos_damage_%_per_chain"]=5489,["projectile_shock_chance_%"]=1873,["projectile_speed_+%_per_frenzy_charge"]=1816,["projectile_weakness_curse_effect_+%"]=3167,["projectile_weakness_duration_+%"]=3069,["projectiles_always_pierce_you"]=5490,["projectiles_fork"]=2738,["projectiles_from_spells_cannot_pierce"]=5491,["projectiles_pierce_1_additional_target_per_10_stat_value"]=5492,["projectiles_pierce_1_additional_target_per_15_stat_value"]=5493,["projectiles_pierce_all_nearby_targets"]=5494,["projectiles_pierce_while_phasing"]=5495,["projectiles_pierce_x_additional_targets_while_you_have_phasing"]=5496,["projectiles_return"]=1994,["projectiles_return_if_no_hit_object"]=1994,["puncture_damage_+%"]=2821,["puncture_duration_+%"]=3060,["puncture_maim_on_hit_%_chance"]=3127,["punishment_curse_effect_+%"]=3175,["punishment_duration_+%"]=3073,["puppet_master_base_duration_ms"]=5497,["purge_additional_enemy_resistance_%"]=5498,["purge_damage_+%"]=5499,["purge_duration_+%"]=5500,["purity_of_elements_mana_reservation_+%"]=3198,["purity_of_elements_reserves_no_mana"]=5501,["purity_of_fire_mana_reservation_+%"]=3199,["purity_of_fire_reserves_no_mana"]=5502,["purity_of_ice_mana_reservation_+%"]=3195,["purity_of_ice_reserves_no_mana"]=5503,["purity_of_lightning_mana_reservation_+%"]=3200,["purity_of_lightning_reserves_no_mana"]=5504,["quantity_of_items_dropped_by_maimed_enemies_+%"]=3323,["quick_dodge_added_cooldown_count"]=5505,["quick_dodge_travel_distance_+%"]=5506,["quick_guard_additional_physical_damage_reduction_%"]=5507,["quiver_projectiles_pierce_1_additional_target"]=5508,["quiver_projectiles_pierce_2_additional_targets"]=5509,["quiver_projectiles_pierce_3_additional_targets"]=5510,["rage_effects_doubled"]=5512,["raging_spirit_damage_+%"]=2815,["raging_spirits_always_ignite"]=5518,["raging_spirits_refresh_duration_when_they_kill_ignited_enemy"]=5519,["raider_nearby_enemies_accuracy_rating_+%_final_while_phasing"]=5520,["raider_passive_evade_melee_attacks_while_onslaughted_+%_final"]=2464,["raider_passive_evade_projectile_attacks_while_onslaughted_+%_final"]=2465,["rain_of_arrows_additional_sequence_chance_%"]=5521,["rain_of_arrows_attack_speed_+%"]=3018,["rain_of_arrows_damage_+%"]=2814,["rain_of_arrows_radius_+%"]=2976,["rain_of_arrows_rain_of_arrows_additional_sequence_chance_%"]=5522,["raise_spectre_gem_level_+"]=903,["raise_spectre_mana_cost_+%"]=5523,["raise_zombie_does_not_use_corpses"]=5524,["raise_zombie_gem_level_+"]=902,["raised_zombies_are_usable_as_corpses_when_alive"]=5525,["rallying_cry_buff_effect_+%"]=3272,["rallying_cry_damage_taken_goes_to_mana_%"]=2431,["rallying_cry_duration_+%"]=3081,["random_curse_on_hit_%"]=1703,["random_curse_on_hit_%_against_uncursed_enemies"]=5526,["randomly_cursed_when_totems_die_curse_level"]=1739,["ranged_weapon_physical_damage_+%"]=1248,["rare_or_unique_monster_dropped_item_rarity_+%"]=5527,["rarity_of_items_dropped_by_maimed_enemies_+%"]=3324,["reave_attack_speed_per_reave_stack_+%"]=3124,["reave_damage_+%"]=2808,["reave_radius_+%"]=2973,["recall_sigil_target_search_range_+%"]=5528,["receive_bleeding_chance_%_when_hit_by_attack"]=5529,["recharge_flasks_on_crit"]=2134,["recharge_flasks_on_crit_while_affected_by_precision"]=5530,["reckoning_cooldown_speed_+%"]=3041,["reckoning_damage_+%"]=2873,["recover_%_life_when_gaining_adrenaline"]=5534,["recover_%_maximum_life_on_enemy_ignited"]=3444,["recover_%_maximum_life_on_kill"]=1014,["recover_%_maximum_life_on_mana_flask_use"]=3483,["recover_%_maximum_life_on_rampage_threshold"]=2123,["recover_%_maximum_life_when_corpse_destroyed_or_consumed"]=2225,["recover_%_maximum_mana_on_kill"]=1016,["recover_%_maximum_mana_on_killing_cursed_enemy"]=1017,["recover_%_maximum_mana_when_enemy_shocked"]=3320,["recover_%_of_maximum_life_on_block"]=2230,["recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity"]=5531,["recover_10%_of_maximum_mana_on_skill_use_%"]=2639,["recover_X_life_on_block"]=1024,["recover_X_life_on_enemy_ignited"]=5532,["recover_X_mana_on_killing_frozen_enemy"]=5533,["recover_energy_shield_%_on_kill"]=1015,["recover_permyriad_maximum_life_per_poison_on_enemy_on_kill"]=5535,["reduce_enemy_chaos_resistance_with_weapons_%"]=2748,["reduce_enemy_cold_resistance_%_while_affected_by_hatred"]=5536,["reduce_enemy_cold_resistance_with_weapons_%"]=2745,["reduce_enemy_dodge_%"]=1146,["reduce_enemy_elemental_resistance_%"]=2153,["reduce_enemy_elemental_resistance_with_weapons_%"]=2756,["reduce_enemy_fire_resistance_%_vs_blinded_enemies"]=5537,["reduce_enemy_fire_resistance_%_while_affected_by_anger"]=5538,["reduce_enemy_fire_resistance_with_weapons_%"]=2746,["reduce_enemy_lightning_resistance_%_while_affected_by_wrath"]=5539,["reduce_enemy_lightning_resistance_with_weapons_%"]=2747,["reflect_chill_and_freeze_%_chance"]=5540,["reflect_curses"]=1670,["reflect_damage_taken_+%"]=3424,["reflect_shocks"]=5541,["reflect_shocks_to_enemies_in_radius"]=5542,["reflected_physical_damage_taken_+%_while_affected_by_determination"]=5543,["regenerate_%_armour_as_life_over_1_second_on_block"]=2003,["regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse"]=5544,["regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse"]=5545,["regenerate_X_life_over_1_second_on_cast"]=2002,["regenerate_energy_shield_instead_of_life"]=5865,["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=3158,["rejuvenation_totem_aura_effect_+%"]=3159,["remove_ailments_and_burning_on_gaining_adrenaline"]=5546,["remove_bleed_on_flask_use"]=2559,["remove_bleeding_on_warcry"]=5548,["remove_chill_and_freeze_on_flask_use"]=5549,["remove_curse_on_mana_flask_use"]=5550,["remove_ignite_and_burning_on_flask_use"]=5551,["remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder"]=5552,["remove_random_elemental_ailment_on_mana_flask_use"]=5553,["remove_shock_on_flask_use"]=5554,["resist_all_%_for_enemies_you_inflict_spiders_web_upon"]=5555,["resist_all_elements_%_per_10_levels"]=1930,["resist_all_elements_%_per_endurance_charge"]=906,["resist_all_elements_%_with_200_or_more_strength"]=3501,["resist_all_elements_+%_while_holding_shield"]=907,["resolute_technique"]=5874,["restore_energy_shield_and_mana_when_you_focus_%"]=5556,["restore_life_and_mana_on_warcry_%"]=2366,["returning_projectiles_always_pierce"]=5557,["righteous_fire_damage_+%"]=2838,["righteous_fire_radius_+%"]=2984,["righteous_fire_spell_damage_+%"]=3271,["riposte_cooldown_speed_+%"]=3046,["riposte_damage_+%"]=2885,running=2,["sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%"]=5558,["sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%"]=5559,["sacrifice_%_life_on_spell_skill"]=5560,["sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast"]=5561,["sanctify_area_of_effect_+%_when_targeting_consecrated_ground"]=5562,["sanctify_consecrated_ground_enemy_damage_taken_+%"]=5563,["sanctify_damage_+%"]=5564,["scion_helmet_skill_maximum_totems_+"]=318,["scourge_arrow_damage_+%"]=5565,["searing_bond_damage_+%"]=2833,["searing_bond_totem_placement_speed_+%"]=3135,["searing_totem_elemental_resistance_+%"]=3277,["secondary_maximum_base_chaos_damage"]=711,["secondary_maximum_base_cold_damage"]=709,["secondary_maximum_base_fire_damage"]=708,["secondary_maximum_base_lightning_damage"]=710,["secondary_maximum_base_physical_damage"]=707,["secondary_minimum_base_chaos_damage"]=711,["secondary_minimum_base_cold_damage"]=709,["secondary_minimum_base_fire_damage"]=708,["secondary_minimum_base_lightning_damage"]=710,["secondary_minimum_base_physical_damage"]=707,["self_chill_duration_-%"]=1116,["self_critical_strike_multiplier_-%_per_endurance_charge"]=822,["self_curse_duration_+%"]=1416,["self_curse_duration_+%_per_10_devotion"]=5566,["self_cursed_with_level_x_vulnerability"]=2289,["self_elemental_status_duration_-%"]=1115,["self_elemental_status_duration_-%_per_10_devotion"]=5567,["self_freeze_duration_-%"]=1118,["self_ignite_duration_-%"]=1119,["self_offering_effect_+%"]=543,["self_physical_damage_on_movement_skill_use"]=5568,["self_physical_damage_on_skill_use_%_mana_cost"]=1465,["self_shock_duration_-%"]=1117,["self_take_no_extra_damage_from_critical_strikes"]=3437,["self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently"]=5569,["self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy"]=5570,["self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=5571,["self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive"]=5572,["sentinel_of_purity_damage_+%"]=5573,["serpent_strike_maximum_snakes"]=5574,["share_endurance_charges_with_party_within_distance"]=1397,["share_frenzy_charges_with_party_within_distance"]=1398,["share_power_charges_with_party_within_distance"]=1399,["shatter_on_kill_vs_bleeding_enemies"]=5575,["shatter_on_kill_vs_poisoned_enemies"]=5576,["shattering_steel_damage_+%"]=5577,["shattering_steel_fortify_on_hit_close_range"]=5578,["shattering_steel_number_of_additional_projectiles"]=5579,["shield_armour_+%"]=1241,["shield_attack_speed_+%"]=737,["shield_block_%"]=521,["shield_charge_attack_speed_+%"]=3020,["shield_charge_damage_+%"]=2822,["shield_charge_damage_per_target_hit_+%"]=3247,["shield_defences_+%_per_10_devotion"]=5580,["shield_evasion_rating_+%"]=1239,["shield_maximum_energy_shield_+%"]=1220,["shield_physical_damage_reduction_rating_+%"]=1240,["shield_spell_block_%"]=522,["shock_X_nearby_enemies_for_2_s_on_killing_shocked_enemy"]=1986,["shock_attackers_for_4_seconds_on_block_%_chance"]=5581,["shock_duration_+%"]=1105,["shock_effect_+%"]=5582,["shock_minimum_damage_taken_increase_%"]=5583,["shock_nearby_enemies_for_x_ms_when_you_focus"]=5584,["shock_nova_damage_+%"]=2848,["shock_nova_radius_+%"]=2997,["shock_nova_ring_damage_+%"]=3151,["shock_prevention_ms_when_shocked"]=2063,["shocked_effect_on_self_+%"]=5585,["shocked_enemies_explode_for_%_life_as_lightning_damage"]=5586,["shocked_for_4_seconds_on_reaching_maximum_power_charges"]=2761,["shocked_ground_base_magnitude_override"]=5587,["shocked_ground_effect_on_self_+%"]=1394,["shocked_ground_when_hit_%"]=1765,["shocks_enemies_that_hit_actor_while_actor_is_casting"]=1152,["shocks_reflected_to_self"]=1945,["shockwave_slam_attack_speed_+%"]=3026,["shockwave_slam_damage_+%"]=2904,["shockwave_slam_explosion_damage_+%_final"]=2723,["shockwave_slam_radius_+%"]=3010,["shockwave_totem_cast_speed_+%"]=3162,["shockwave_totem_damage_+%"]=2849,["shockwave_totem_radius_+%"]=3011,["should_use_alternate_fortify"]=1504,["shrapnel_ballista_num_additional_arrows"]=5588,["shrapnel_ballista_num_pierce"]=5589,["shrapnel_ballista_projectile_speed_+%"]=5590,["shrapnel_shot_damage_+%"]=2889,["shrapnel_shot_physical_damage_%_to_add_as_lightning_damage"]=3187,["shrapnel_shot_radius_+%"]=2999,["shrapnel_trap_area_of_effect_+%"]=5592,["shrapnel_trap_damage_+%"]=5593,["shrapnel_trap_number_of_additional_secondary_explosions"]=5594,["shrine_buff_effect_on_self_+%"]=1981,["shrine_effect_duration_+%"]=1982,["siege_ballista_attack_speed_+%"]=3025,["siege_ballista_damage_+%"]=2902,["siege_ballista_totem_placement_speed_+%"]=3164,["sigil_attached_target_damage_+%"]=5595,["sigil_attached_target_damage_taken_+%"]=5596,["sigil_critical_strike_chance_+%"]=5597,["sigil_critical_strike_multiplier_+"]=5598,["sigil_damage_+%"]=5599,["sigil_damage_+%_per_10_devotion"]=5600,["sigil_duration_+%"]=5601,["sigil_recall_cooldown_speed_+%"]=5602,["sigil_repeat_frequency_+%"]=5603,["sigil_target_search_range_+%"]=5604,["silver_footprints_from_item"]=5903,["siphon_duration_+%"]=3084,["siphon_life_leech_from_damage_permyriad"]=3153,["skeletal_chains_area_of_effect_+%"]=5605,["skeletal_chains_cast_speed_+%"]=5606,["skeletal_chains_damage_+%"]=2898,["skeleton_attack_speed_+%"]=5607,["skeleton_cast_speed_+%"]=5608,["skeleton_duration_+%"]=1041,["skeleton_movement_speed_+%"]=5609,["skeletons_damage_+%"]=2823,["skill_area_of_effect_+%_if_enemy_killed_recently"]=3372,["skill_area_of_effect_+%_per_active_mine"]=2631,["skill_area_of_effect_+%_per_power_charge"]=1372,["skill_area_of_effect_+%_while_no_frenzy_charges"]=1303,["skill_area_of_effect_when_unarmed_+%"]=2224,["skill_can_own_mirage_archers"]=5610,["skill_cold_damage_%_to_convert_to_chaos"]=1218,["skill_cold_damage_%_to_convert_to_fire"]=1217,["skill_cooldown_-%"]=1138,["skill_effect_duration_+%"]=1136,["skill_effect_duration_+%_if_killed_maimed_enemy_recently"]=3374,["skill_effect_duration_+%_per_10_strength"]=1264,["skill_effect_duration_+%_while_affected_by_malevolence"]=5611,["skill_effect_duration_per_100_int"]=2258,["skill_fire_damage_%_to_convert_to_chaos"]=1219,["skill_internal_monster_responsiveness_+%"]=1168,["skill_lightning_damage_%_to_convert_to_chaos"]=1216,["skill_lightning_damage_%_to_convert_to_cold"]=1215,["skill_lightning_damage_%_to_convert_to_fire"]=1214,["skill_mana_cost_+"]=1132,["skill_mana_cost_+_for_each_equipped_corrupted_item"]=3474,["skill_mana_cost_+_while_affected_by_clarity"]=5612,["skill_mana_cost_+_with_channelling_skills"]=5613,["skill_mana_cost_+_with_non_channelling_skills"]=5615,["skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity"]=5614,["skill_max_unleash_seals"]=5828,["skill_physical_damage_%_to_convert_to_chaos"]=1213,["skill_physical_damage_%_to_convert_to_cold"]=1211,["skill_physical_damage_%_to_convert_to_fire"]=1210,["skill_physical_damage_%_to_convert_to_lightning"]=1212,["skill_range_+%"]=1170,["skill_repeat_count"]=1134,["skill_visual_scale_+%"]=15,["skills_cost_no_mana_while_focused"]=5616,["slam_ancestor_totem_damage_+%"]=3299,["slam_ancestor_totem_grant_owner_melee_damage_+%"]=2966,["slam_ancestor_totem_radius_+%"]=3302,["slash_ancestor_totem_damage_+%"]=3300,["slash_ancestor_totem_elemental_resistance_%"]=1959,["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=2965,["slash_ancestor_totem_radius_+%"]=3301,["slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%"]=5617,["slayer_ascendancy_melee_splash_damage_+%_final_for_splash"]=544,["slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100"]=5618,["slayer_damage_+%_final_against_unique_enemies"]=5619,["slayer_damage_+%_final_from_distance"]=5620,["slither_elusive_effect_+%"]=5621,["slither_wither_stacks"]=5622,["smite_aura_effect_+%"]=5623,["smite_chance_for_lighting_to_strike_extra_target_%"]=5624,["smite_damage_+%"]=5625,["smoke_mine_base_movement_velocity_+%"]=3267,["smoke_mine_duration_+%"]=3065,["snapping_adder_%_chance_to_retain_projectile_on_release"]=5627,["snapping_adder_damage_+%"]=5626,["snapping_adder_withered_on_hit_for_2_seconds_%_chance"]=5628,["soul_eater_on_rare_kill_ms"]=2592,["soulrend_applies_hinder_movement_speed_+%"]=5629,["soulrend_damage_+%"]=5630,["soulrend_number_of_additional_projectiles"]=5631,["spark_damage_+%"]=2809,["spark_num_of_additional_projectiles"]=3108,["spark_number_of_additional_projectiles"]=5632,["spark_projectile_speed_+%"]=3054,["spark_projectiles_nova"]=5633,["spark_skill_effect_duration_+%"]=5634,["spectral_shield_throw_additional_chains"]=5635,["spectral_shield_throw_damage_+%"]=5636,["spectral_shield_throw_fire_shards_on_chain"]=5637,["spectral_shield_throw_num_of_additional_projectiles"]=5638,["spectral_shield_throw_projectile_speed_+%"]=5639,["spectral_shield_throw_secondary_projectiles_pierce"]=5640,["spectral_shield_throw_shard_projectiles_+%_final"]=5641,["spectral_throw_damage_+%"]=2810,["spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%"]=2400,["spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%"]=5642,["spectral_throw_projectile_deceleration_+%"]=3125,["spectral_throw_projectile_speed_+%"]=3055,["spectre_attack_and_cast_speed_+%"]=3030,["spectre_damage_+%"]=2621,["spectre_elemental_resistances_%"]=3143,["spectre_maximum_life_+"]=5643,["spectres_critical_strike_chance_+%"]=5644,["spectres_gain_arcane_surge_when_you_do"]=5645,["spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance"]=5646,["spectres_have_base_duration_ms"]=5647,["spell_additional_critical_strike_chance_permyriad"]=5648,["spell_and_attack_maximum_added_chaos_damage_during_flask_effect"]=5649,["spell_and_attack_maximum_added_cold_damage"]=687,["spell_and_attack_maximum_added_fire_damage"]=686,["spell_and_attack_maximum_added_lightning_damage"]=718,["spell_and_attack_minimum_added_chaos_damage_during_flask_effect"]=5649,["spell_and_attack_minimum_added_cold_damage"]=687,["spell_and_attack_minimum_added_fire_damage"]=686,["spell_and_attack_minimum_added_lightning_damage"]=718,["spell_area_of_effect_+%"]=5650,["spell_base_fire_damage_%_maximum_life"]=703,["spell_block_%_if_blocked_a_spell_recently"]=5651,["spell_block_%_if_blocked_an_attack_recently"]=5652,["spell_block_%_while_on_low_life"]=524,["spell_block_equals_attack_block"]=532,["spell_block_while_dual_wielding_%"]=523,["spell_block_with_bow_%"]=525,["spell_block_with_staff_%"]=526,["spell_bow_damage_+%"]=588,["spell_chance_to_deal_double_damage_%"]=5653,["spell_chance_to_shock_frozen_enemies_%"]=2095,["spell_cold_damage_+%"]=586,["spell_critical_strike_chance_+%"]=769,["spell_critical_strike_chance_+%_per_100_max_life"]=5654,["spell_critical_strike_chance_+%_per_raised_spectre"]=5655,["spell_critical_strike_chance_+%_while_dual_wielding"]=4056,["spell_critical_strike_chance_+%_while_holding_shield"]=4057,["spell_critical_strike_chance_+%_while_wielding_staff"]=4058,["spell_critical_strike_multiplier_+"]=800,["spell_critical_strike_multiplier_+_while_dual_wielding"]=4074,["spell_critical_strike_multiplier_+_while_holding_shield"]=4075,["spell_critical_strike_multiplier_+_while_wielding_staff"]=4076,["spell_damage_+%"]=584,["spell_damage_+%_during_flask_effect"]=5658,["spell_damage_+%_for_4_seconds_on_cast"]=2695,["spell_damage_+%_if_have_crit_in_past_8_seconds"]=5659,["spell_damage_+%_if_have_crit_recently"]=5656,["spell_damage_+%_if_other_ring_is_elder_item"]=3467,["spell_damage_+%_if_you_have_blocked_recently"]=5660,["spell_damage_+%_per_100_max_life"]=5661,["spell_damage_+%_per_100_maximum_mana_up_to_60%"]=5662,["spell_damage_+%_per_10_int"]=1905,["spell_damage_+%_per_10_strength"]=5663,["spell_damage_+%_per_16_dex"]=5664,["spell_damage_+%_per_16_int"]=5665,["spell_damage_+%_per_16_strength"]=5666,["spell_damage_+%_per_200_mana_spent_recently"]=3486,["spell_damage_+%_per_5%_block_chance"]=1904,["spell_damage_+%_per_500_maximum_mana"]=5657,["spell_damage_+%_per_level"]=2133,["spell_damage_+%_per_power_charge"]=1382,["spell_damage_+%_while_dual_wielding"]=590,["spell_damage_+%_while_es_full"]=2248,["spell_damage_+%_while_holding_shield"]=589,["spell_damage_+%_while_no_mana_reserved"]=2252,["spell_damage_+%_while_not_low_mana"]=2253,["spell_damage_+%_while_shocked"]=5667,["spell_damage_+%_while_you_have_arcane_surge"]=5668,["spell_damage_modifiers_apply_to_attack_damage"]=1845,["spell_damage_modifiers_apply_to_skill_dot"]=1848,["spell_damage_taken_+%_from_blinded_enemies"]=2389,["spell_damage_taken_+%_when_on_low_mana"]=1665,["spell_dodge_chance_+%_if_you_have_taken_attack_damage_recently"]=3321,["spell_dodge_while_you_have_energy_shield_+%"]=5669,["spell_elemental_damage_+%"]=1314,["spell_fire_damage_+%"]=585,["spell_maximum_added_chaos_damage"]=716,["spell_maximum_added_chaos_damage_while_dual_wielding"]=1349,["spell_maximum_added_chaos_damage_while_holding_a_shield"]=1350,["spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon"]=1351,["spell_maximum_added_cold_damage"]=714,["spell_maximum_added_cold_damage_per_power_charge"]=1077,["spell_maximum_added_cold_damage_while_dual_wielding"]=1352,["spell_maximum_added_cold_damage_while_holding_a_shield"]=1353,["spell_maximum_added_cold_damage_while_wielding_two_handed_weapon"]=1354,["spell_maximum_added_fire_damage"]=713,["spell_maximum_added_fire_damage_while_dual_wielding"]=1355,["spell_maximum_added_fire_damage_while_holding_a_shield"]=1356,["spell_maximum_added_fire_damage_while_wielding_two_handed_weapon"]=1357,["spell_maximum_added_lightning_damage"]=715,["spell_maximum_added_lightning_damage_while_dual_wielding"]=1358,["spell_maximum_added_lightning_damage_while_holding_a_shield"]=1359,["spell_maximum_added_lightning_damage_while_unarmed"]=1635,["spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon"]=1360,["spell_maximum_added_physical_damage"]=712,["spell_maximum_added_physical_damage_while_dual_wielding"]=1361,["spell_maximum_added_physical_damage_while_holding_a_shield"]=1362,["spell_maximum_added_physical_damage_while_wielding_two_handed_weapon"]=1363,["spell_maximum_base_chaos_damage"]=706,["spell_maximum_base_cold_damage"]=704,["spell_maximum_base_cold_damage_+_per_10_intelligence"]=717,["spell_maximum_base_fire_damage"]=703,["spell_maximum_base_lightning_damage"]=705,["spell_maximum_base_physical_damage"]=702,["spell_minimum_added_chaos_damage"]=716,["spell_minimum_added_chaos_damage_while_dual_wielding"]=1349,["spell_minimum_added_chaos_damage_while_holding_a_shield"]=1350,["spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon"]=1351,["spell_minimum_added_cold_damage"]=714,["spell_minimum_added_cold_damage_per_power_charge"]=1077,["spell_minimum_added_cold_damage_while_dual_wielding"]=1352,["spell_minimum_added_cold_damage_while_holding_a_shield"]=1353,["spell_minimum_added_cold_damage_while_wielding_two_handed_weapon"]=1354,["spell_minimum_added_fire_damage"]=713,["spell_minimum_added_fire_damage_while_dual_wielding"]=1355,["spell_minimum_added_fire_damage_while_holding_a_shield"]=1356,["spell_minimum_added_fire_damage_while_wielding_two_handed_weapon"]=1357,["spell_minimum_added_lightning_damage"]=715,["spell_minimum_added_lightning_damage_while_dual_wielding"]=1358,["spell_minimum_added_lightning_damage_while_holding_a_shield"]=1359,["spell_minimum_added_lightning_damage_while_unarmed"]=1635,["spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon"]=1360,["spell_minimum_added_physical_damage"]=712,["spell_minimum_added_physical_damage_while_dual_wielding"]=1361,["spell_minimum_added_physical_damage_while_holding_a_shield"]=1362,["spell_minimum_added_physical_damage_while_wielding_two_handed_weapon"]=1363,["spell_minimum_base_chaos_damage"]=706,["spell_minimum_base_cold_damage"]=704,["spell_minimum_base_cold_damage_+_per_10_intelligence"]=717,["spell_minimum_base_fire_damage"]=703,["spell_minimum_base_lightning_damage"]=705,["spell_minimum_base_physical_damage"]=702,["spell_physical_damage_%_to_convert_to_fire"]=5670,["spell_repeat_count"]=1135,["spell_skill_gem_level_+"]=895,["spell_skills_deal_no_damage"]=5671,["spell_staff_damage_+%"]=587,["spells_chance_to_hinder_on_hit_%"]=5672,["spells_have_culling_strike"]=1720,["spells_number_of_additional_projectiles"]=3450,["spend_energy_shield_for_costs_before_mana"]=2282,["spider_aspect_debuff_duration_+%"]=5673,["spider_aspect_skill_area_of_effect_+%"]=5674,["spider_aspect_web_interval_ms_override"]=5675,["spirit_offering_duration_+%"]=3064,["spirit_offering_physical_damage_%_to_add_as_chaos"]=3338,["split_arrow_critical_strike_chance_+%"]=3099,["split_arrow_damage_+%"]=2811,["split_arrow_num_of_additional_projectiles"]=3109,["split_arrow_number_of_additional_arrows"]=2328,["split_arrow_projectiles_fire_in_parallel_x_dist"]=5676,["stacking_damage_+%_on_kill_for_4_seconds"]=2766,["stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds"]=2487,["staff_accuracy_rating"]=1259,["staff_accuracy_rating_+%"]=748,["staff_attack_speed_+%"]=730,["staff_block_%"]=527,["staff_critical_strike_chance_+%"]=780,["staff_critical_strike_multiplier_+"]=809,["staff_damage_+%"]=646,["staff_elemental_damage_+%"]=1365,["staff_stun_duration_+%"]=1114,["start_at_zero_energy_shield"]=2285,["static_strike_additional_number_of_beam_targets"]=5677,["static_strike_damage_+%"]=2834,["static_strike_duration_+%"]=3091,["static_strike_radius_+%"]=2980,["status_ailments_removed_at_low_life"]=2498,["status_ailments_you_inflict_duration_+%_while_focused"]=5678,["steelskin_damage_limit_+%"]=5679,["stone_golem_damage_+%"]=2857,["stone_golem_elemental_resistances_%"]=3145,["storm_brand_additional_chain_chance_%"]=5680,["storm_brand_attached_target_lightning_penetration_%"]=5681,["storm_brand_damage_+%"]=5682,["storm_burst_15_%_chance_to_create_additional_orb"]=5683,["storm_burst_additional_object_chance_%"]=5684,["storm_burst_area_of_effect_+%"]=5685,["storm_burst_avoid_interruption_while_casting_%"]=5686,["storm_burst_damage_+%"]=2899,["storm_burst_number_of_additional_projectiles"]=5687,["storm_call_damage_+%"]=2835,["storm_call_duration_+%"]=3092,["storm_call_radius_+%"]=2981,["storm_cloud_charge_count"]=2607,["storm_cloud_charged_damage_+%_final"]=2608,["storm_cloud_critical_strike_chance_+%"]=3104,["storm_cloud_radius_+%"]=3008,["strength_+%"]=553,["strength_damage_bonus_grants_melee_physical_damage_+3%_per_10_strength_instead"]=5688,["strength_skill_gem_level_+"]=5689,["strong_casting"]=5875,["stun_duration_+%"]=1253,["stun_duration_+%_per_15_strength"]=5690,["stun_duration_+%_per_endurance_charge"]=5691,["stun_duration_+%_vs_enemies_that_are_on_full_life"]=2509,["stun_duration_+%_vs_enemies_that_are_on_low_life"]=2510,["stun_duration_on_self_+%"]=3326,["stun_recovery_+%_per_frenzy_charge"]=1142,["stun_threshold_+%"]=2441,["stun_threshold_based_on_%_mana_instead_of_life"]=2440,["stun_threshold_based_on_energy_shield_instead_of_life"]=3430,["stun_threshold_reduction_+%_while_using_flask"]=2096,["stun_threshold_reduction_+%_with_500_or_more_strength"]=5692,["stuns_have_culling_strike"]=1287,["summon_2_totems"]=5693,["summon_skeleton_gem_level_+"]=904,["summon_skeletons_additional_warrior_skeleton_%_chance"]=5695,["summon_skeletons_additional_warrior_skeleton_one_twentieth_chance"]=5694,["summon_skeletons_cooldown_modifier_ms"]=5696,["summon_skeletons_num_additional_warrior_skeletons"]=3161,["summon_skitterbots_area_of_effect_+%"]=5697,["summon_skitterbots_mana_reservation_+%"]=5698,["summon_totem_cast_speed_+%"]=1766,["summoned_phantasms_grant_buff"]=5699,["summoned_phantasms_have_no_duration"]=5700,["summoned_raging_spirit_chance_to_spawn_additional_minion_%"]=2581,["summoned_raging_spirit_duration_+%"]=2580,["summoned_skeletons_cover_in_ash_on_hit_%"]=5701,["summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute"]=5702,["summoned_skeletons_have_avatar_of_fire"]=5876,["summoned_skeletons_hits_cant_be_evaded"]=5703,["support_anticipation_charge_gain_interval_ms"]=5828,["support_anticipation_rapid_fire_count"]=5828,["support_gem_elemental_damage_+%_final"]=2750,["support_maimed_enemies_physical_damage_taken_+%"]=5704,["support_minion_maximum_life_+%_final"]=1027,["support_mirage_archer_base_duration"]=5706,["support_slashing_damage_+%_final_from_distance"]=5707,["support_slower_projectiles_damage_+%_final"]=2013,["supported_active_skill_gem_expereince_gained_+%"]=2058,["supported_active_skill_gem_level_+"]=1927,["supported_active_skill_gem_quality_%"]=1991,["supported_aura_skill_gem_level_+"]=5708,["supported_cold_skill_gem_level_+"]=5709,["supported_curse_skill_gem_level_+"]=5710,["supported_elemental_skill_gem_level_+"]=5711,["supported_fire_skill_gem_level_+"]=5712,["supported_lightning_skill_gem_level_+"]=5713,["sweep_add_endurance_charge_on_hit_%"]=2982,["sweep_damage_+%"]=2836,["sweep_knockback_chance_%"]=3136,["sweep_radius_+%"]=2983,["sword_accuracy_rating"]=1254,["sword_accuracy_rating_+%"]=753,["sword_attack_speed_+%"]=735,["sword_critical_strike_chance_+%"]=778,["sword_critical_strike_multiplier_+"]=806,["sword_damage_+%"]=667,["sword_physical_damage_%_to_add_as_fire"]=2209,["synthesis_map_adjacent_nodes_global_mod_values_doubled"]=5714,["synthesis_map_global_mod_values_doubled_on_this_node"]=5715,["synthesis_map_global_mod_values_tripled_on_this_node"]=5716,["synthesis_map_memories_do_not_collapse_on_this_node"]=5717,["synthesis_map_monster_slain_experience_+%_on_this_node"]=5718,["synthesis_map_nearby_memories_have_bonus"]=5719,["synthesis_map_node_additional_uses_+"]=5720,["synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories"]=5721,["synthesis_map_node_grants_additional_global_mod"]=5722,["synthesis_map_node_grants_no_global_mod"]=5723,["synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters"]=5724,["synthesis_map_node_item_quantity_increases_doubled"]=5725,["synthesis_map_node_item_rarity_increases_doubled"]=5726,["synthesis_map_node_level_+"]=5727,["synthesis_map_node_monsters_drop_no_items"]=5728,["synthesis_map_node_pack_size_increases_doubled"]=5729,["tailwind_effect_on_self_+%"]=5730,["tailwind_effect_on_self_+%_for_each_skill_used_recently"]=5731,["tailwind_if_have_crit_recently"]=5732,["take_half_area_damage_from_hit_%_chance"]=5733,["talisman_implicit_projectiles_pierce_1_additional_target_per_10"]=5734,["taunt_duration_+%"]=1045,["taunted_enemies_chance_to_be_stunned_+%"]=2381,["taunted_enemies_damage_+%_final_vs_non_taunt_target"]=3409,["taunted_enemies_damage_taken_+%"]=2382,["tectonic_slam_%_chance_to_do_charged_slam"]=5739,["tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value"]=5735,["tectonic_slam_area_of_effect_+%"]=5736,["tectonic_slam_chance_to_use_endurance_charge_%"]=5737,["tectonic_slam_damage_+%"]=5738,["tempest_shield_damage_+%"]=2881,["tempest_shield_num_of_additional_projectiles_in_chain"]=3188,["temporal_chains_curse_effect_+%"]=3168,["temporal_chains_duration_+%"]=3070,["temporal_chains_effeciveness_+%"]=929,["temporal_chains_mana_reservation_+%"]=3209,["thaumaturgy_rotation_active"]=5740,["thrown_shield_secondary_projectile_damage_+%_final"]=5741,["tornado_shot_critical_strike_chance_+%"]=3103,["tornado_shot_damage_+%"]=2841,["tornado_shot_num_of_secondary_projectiles"]=3111,["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=2951,["totem_additional_physical_damage_reduction_%"]=1960,["totem_attack_damage_leeched_as_mana_to_you_permyriad"]=5743,["totem_aura_enemy_damage_+%_final"]=2953,["totem_aura_enemy_fire_and_physical_damage_taken_+%"]=2954,["totem_critical_strike_chance_+%"]=796,["totem_critical_strike_multiplier_+"]=824,["totem_damage_+%"]=558,["totem_damage_+%_final_per_active_totem"]=2910,["totem_damage_+%_per_10_devotion"]=5744,["totem_damage_leeched_as_life_to_you_permyriad"]=3390,["totem_duration_+%"]=1040,["totem_elemental_resistance_%"]=1958,["totem_energy_shield_+%"]=1038,["totem_fire_immunity"]=894,["totem_life_+%"]=1036,["totem_mana_+%"]=1037,["totem_maximum_energy_shield"]=5745,["totem_number_of_additional_projectiles"]=2249,["totem_range_+%"]=1039,["totem_skill_area_of_effect_+%"]=1769,["totem_skill_attack_speed_+%"]=1768,["totem_skill_cast_speed_+%"]=1767,["totemified_skills_taunt_on_hit_%"]=2596,["totems_action_speed_cannot_be_modified_below_base"]=5742,["totems_attack_speed_+%_per_active_totem"]=3348,["totems_cannot_be_stunned"]=2232,["totems_explode_for_%_of_max_life_as_fire_damage_on_low_life"]=2489,["totems_gain_%_of_players_armour"]=2390,["totems_nearby_enemies_damage_taken_+%"]=5746,["totems_resist_all_elements_+%_per_active_totem"]=3328,["totems_spells_cast_speed_+%_per_active_totem"]=3334,["toxic_rain_damage_+%"]=5747,["toxic_rain_num_of_additional_projectiles"]=5748,["toxic_rain_physical_damage_%_to_add_as_chaos"]=5749,["transfer_curses_to_X_nearby_enemies_on_kill"]=2102,trap=14,["trap_%_chance_to_trigger_twice"]=2960,["trap_and_mine_damage_+%_if_armed_for_4_seconds"]=5750,["trap_and_mine_damage_penetrates_%_elemental_resistance"]=1955,["trap_and_mine_maximum_added_physical_damage"]=2959,["trap_and_mine_minimum_added_physical_damage"]=2959,["trap_and_mine_throwing_speed_+%"]=5751,["trap_critical_strike_chance_+%"]=784,["trap_critical_strike_multiplier_+"]=814,["trap_damage_+%"]=559,["trap_damage_buildup_damage_+%_final_after_4_seconds"]=2956,["trap_damage_buildup_damage_+%_final_when_first_set"]=2955,["trap_damage_penetrates_%_elemental_resistance"]=1953,["trap_duration_+%"]=1162,["trap_skill_area_of_effect_+%"]=2643,["trap_throw_skills_have_blood_magic"]=2379,["trap_throwing_speed_+%"]=1166,["trap_throwing_speed_+%_per_frenzy_charge"]=5752,["trap_trigger_radius_+%"]=1164,["traps_and_mines_%_chance_to_poison"]=3248,["traps_do_not_explode_on_timeout"]=1950,["traps_explode_on_timeout"]=1951,["traps_invulnerable_for_duration_ms"]=1956,["travel_skill_cooldown_speed_+%"]=3519,["travel_skills_cooldown_speed_+%_per_frenzy_charge"]=3529,["trickster_damage_over_time_+%_final"]=5753,["trickster_passive_chance_to_evade_attacks_while_not_on_full_energy_shield_+%_final"]=2693,["trigger_on_kill_vs_frozen_enemy_%"]=436,["trigger_socketed_spell_on_attack_%"]=437,["trigger_socketed_spell_on_skill_use_%"]=438,["trigger_socketed_spells_when_you_focus_%"]=439,["trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance"]=56,["triggered_spell_spell_damage_+%"]=5754,["two_handed_melee_accuracy_rating_+%"]=746,["two_handed_melee_attack_speed_+%"]=727,["two_handed_melee_cold_damage_+%"]=639,["two_handed_melee_critical_strike_chance_+%"]=786,["two_handed_melee_critical_strike_multiplier_+"]=787,["two_handed_melee_fire_damage_+%"]=638,["two_handed_melee_physical_damage_+%"]=637,["two_handed_melee_stun_duration_+%"]=1112,["unaffected_by_bleeding_while_affected_by_malevolence"]=5755,["unaffected_by_bleeding_while_leeching"]=5756,["unaffected_by_burning_ground"]=5757,["unaffected_by_burning_ground_while_affected_by_purity_of_fire"]=5758,["unaffected_by_chilled_ground"]=5759,["unaffected_by_chilled_ground_while_affected_by_purity_of_ice"]=5760,["unaffected_by_conductivity_while_affected_by_purity_of_lightning"]=5761,["unaffected_by_curses"]=1671,["unaffected_by_desecrated_ground"]=5762,["unaffected_by_elemental_weakness_while_affected_by_purity_of_elements"]=5763,["unaffected_by_enfeeble_while_affected_by_grace"]=5764,["unaffected_by_flammability_while_affected_by_purity_of_fire"]=5765,["unaffected_by_frostbite_while_affected_by_purity_of_ice"]=5766,["unaffected_by_ignite"]=5767,["unaffected_by_poison_while_affected_by_malevolence"]=5768,["unaffected_by_shock"]=5769,["unaffected_by_shocked_ground"]=5770,["unaffected_by_shocked_ground_while_affected_by_purity_of_lightning"]=5771,["unaffected_by_temporal_chains"]=5772,["unaffected_by_temporal_chains_while_affected_by_haste"]=5773,["unaffected_by_vulnerability_while_affected_by_determination"]=5774,["unarmed_damage_+%_vs_bleeding_enemies"]=2725,["unarmed_melee_attack_speed_+%"]=738,["unarmed_melee_physical_damage_+%"]=640,["unearth_additional_corpse_level"]=5775,["unique_add_power_charge_on_melee_knockback_%"]=2107,["unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes"]=5893,["unique_chaos_damage_to_reflect_to_self_on_attack_%_chance"]=2139,["unique_chill_duration_+%_when_in_off_hand"]=1939,["unique_chin_sol_close_range_bow_damage_+%_final"]=1639,["unique_chin_sol_close_range_knockback"]=1640,["unique_cold_damage_can_also_ignite"]=2049,["unique_cold_damage_ignites"]=2028,["unique_cold_damage_resistance_%_when_green_gem_socketed"]=918,["unique_critical_strike_chance_+%_final"]=1996,["unique_dewaths_hide_physical_attack_damage_dealt_-"]=1661,["unique_facebreaker_unarmed_physical_damage_+%_final"]=1633,["unique_fire_damage_resistance_%_when_red_gem_socketed"]=912,["unique_fire_damage_shocks"]=2027,["unique_gain_onslaught_when_hit_duration_ms"]=1998,["unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge"]=2012,["unique_gain_power_charge_on_non_crit"]=2066,["unique_ignite_chance_%_when_in_main_hand"]=1938,["unique_lightning_damage_freezes"]=2029,["unique_lightning_damage_resistance_%_when_blue_gem_socketed"]=923,["unique_lions_roar_melee_physical_damage_+%_final"]=2088,["unique_local_maximum_added_chaos_damage_when_in_off_hand"]=700,["unique_local_maximum_added_cold_damage_when_in_off_hand"]=685,["unique_local_maximum_added_fire_damage_when_in_main_hand"]=678,["unique_local_minimum_added_chaos_damage_when_in_off_hand"]=700,["unique_local_minimum_added_cold_damage_when_in_off_hand"]=685,["unique_local_minimum_added_fire_damage_when_in_main_hand"]=678,["unique_loris_lantern_golden_light"]=1742,["unique_lose_a_power_charge_when_hit"]=5777,["unique_lose_all_endurance_charges_when_hit"]=1997,["unique_lose_all_power_charges_on_crit"]=2067,["unique_map_boss_class_of_rare_items_to_drop"]=1884,["unique_map_boss_number_of_rare_items_to_drop"]=1884,["unique_maximum_chaos_damage_to_reflect_to_self_on_attack"]=2139,["unique_mine_damage_+%_final"]=561,["unique_minimum_chaos_damage_to_reflect_to_self_on_attack"]=2139,["unique_monster_dropped_item_rarity_+%"]=5778,["unique_nearby_allies_recover_permyriad_max_life_on_death"]=2162,["unique_primordial_tether_golem_damage_+%_final"]=2864,["unique_primordial_tether_golem_life_+%_final"]=3252,["unique_quill_rain_damage_+%_final"]=1651,["unique_ryuslathas_clutches_maximum_physical_attack_damage_+%_final"]=563,["unique_ryuslathas_clutches_minimum_physical_attack_damage_+%_final"]=564,["unique_spread_poison_to_nearby_allies_as_200_life_regeneration_per_second_on_kill"]=2022,["unique_spread_poison_to_nearby_allies_as_regeneration_on_kill"]=2023,["unique_spread_poison_to_nearby_enemies_during_flask_effect"]=5779,["unique_spread_poison_to_nearby_enemies_on_kill"]=2021,["unique_volkuurs_clutch_poison_duration_+%_final"]=2338,["unique_voltaxic_rift_shock_as_though_damage_+%_final"]=5780,["unique_voltaxic_rift_shock_maximum_magnitude_override"]=5781,["unqiue_atzitis_acuity_instant_leech_60%_effectiveness_on_crit"]=1727,["use_life_in_place_of_mana"]=1155,["utility_flask_cold_damage_taken_+%_final"]=5782,["utility_flask_fire_damage_taken_+%_final"]=5783,["utility_flask_lightning_damage_taken_+%_final"]=5784,["vaal_skill_critical_strike_chance_+%"]=2274,["vaal_skill_critical_strike_multiplier_+"]=2275,["vaal_skill_damage_+%"]=2263,["vaal_skill_effect_duration_+%"]=2273,["vaal_skill_soul_cost_+%"]=5785,["vengeance_cooldown_speed_+%"]=3047,["vengeance_damage_+%"]=2886,["vigilant_strike_applies_to_nearby_allies_for_X_seconds"]=2418,["vigilant_strike_damage_+%"]=2874,["vigilant_strike_fortify_duration_+%"]=3067,["viper_strike_attack_damage_per_poison_on_enemy_+%"]=2402,["viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy"]=5786,["viper_strike_critical_strike_chance_+%"]=3100,["viper_strike_damage_+%"]=2816,["viper_strike_dual_wield_attack_speed_+%_final"]=5787,["viper_strike_dual_wield_damage_+%_final"]=5788,["viper_strike_poison_duration_+%"]=3089,["virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies"]=2564,["virtual_block_%_damage_taken"]=5789,["virtual_energy_shield_delay_-%"]=2735,["virtual_energy_shield_recharge_rate_+%"]=2737,["virtual_light_radius_+%"]=1693,["virtual_mana_gain_per_target"]=1011,["virtual_minion_damage_+%"]=1223,["virtual_number_of_ranged_animated_weapons_allowed"]=2439,["virulent_arrow_additional_spores_at_max_stages"]=5791,["virulent_arrow_chance_to_poison_%_per_stage"]=5792,["vitality_mana_reservation_+%"]=3201,["vitality_reserves_no_mana"]=5793,["volatile_dead_base_number_of_corpses_to_consume"]=5794,["volatile_dead_cast_speed_+%"]=5795,["volatile_dead_consume_additional_corpse"]=5796,["volatile_dead_damage_+%"]=5797,["vortex_area_of_effect_+%_when_cast_on_frostbolt"]=5798,["vulnerability_curse_effect_+%"]=3176,["vulnerability_duration_+%"]=3072,["vulnerability_mana_reservation_+%"]=3210,["wall_maximum_length"]=1293,["wand_accuracy_rating"]=1261,["wand_accuracy_rating_+%"]=754,["wand_attack_speed_+%"]=736,["wand_critical_strike_chance_+%"]=781,["wand_critical_strike_multiplier_+"]=807,["wand_damage_+%"]=2115,["wand_damage_+%_per_power_charge"]=1383,["wand_elemental_damage_+%"]=1364,["wand_physical_damage_%_to_add_as_cold"]=1284,["wand_physical_damage_%_to_add_as_fire"]=1283,["wand_physical_damage_%_to_add_as_lightning"]=1285,["war_banner_aura_effect_+%"]=5799,["warcries_are_instant"]=2627,["warcries_cost_no_mana"]=3291,["warcries_knock_back_enemies"]=5800,["warcry_buff_effect_+%"]=5801,["warcry_cooldown_speed_+%"]=2505,["warcry_duration_+%"]=2367,["warcry_skills_cooldown_is_2_seconds"]=5802,["warcry_speed_+%"]=2446,["warlords_mark_curse_effect_+%"]=3177,["warlords_mark_duration_+%"]=3071,["weapon_chaos_damage_+%"]=1313,["weapon_cold_damage_+%"]=1311,["weapon_elemental_damage_+%"]=673,["weapon_elemental_damage_+%_per_power_charge"]=1842,["weapon_elemental_damage_+%_while_using_flask"]=1925,["weapon_fire_damage_+%"]=1310,["weapon_lightning_damage_+%"]=1312,["weapon_physical_damage_%_to_add_as_each_element"]=3417,["weapon_physical_damage_%_to_add_as_random_element"]=2103,["weapon_physical_damage_+%"]=1912,["while_stationary_gain_additional_physical_damage_reduction_%"]=5803,["while_stationary_gain_life_regeneration_rate_per_minute_%"]=5804,["while_using_mace_stun_threshold_reduction_+%"]=826,["while_using_sword_reduce_enemy_block_%"]=1143,["whirling_blades_attack_speed_+%"]=3029,["whirling_blades_damage_+%"]=2875,["wild_strike_damage_+%"]=2850,["wild_strike_num_of_additional_projectiles_in_chain"]=3160,["wild_strike_radius_+%"]=2990,["with_bow_additional_block_%"]=1655,["wither_duration_+%"]=3085,["wither_radius_+%"]=3002,["withered_on_hit_for_2_seconds_%_chance"]=5805,["wrath_aura_effect_+%"]=2537,["wrath_mana_reservation_+%"]=3202,["wrath_reserves_no_mana"]=5806,["x_to_maximum_life_per_2_intelligence"]=1270,["you_and_allies_additional_block_%_if_have_attacked_recently"]=5807,["you_and_allies_additional_spell_block_%_if_cast_spell_recently"]=5808,["you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_stage"]=3229,["you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed"]=3230,["you_and_nearby_allies_armour_+_if_have_impaled_recently"]=5809,["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently"]=5810,["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently"]=5811,["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently"]=5812,["you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem"]=5813,["you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%"]=2503,["you_cannot_be_hindered"]=5814,["you_cannot_have_non_animated_minions"]=5815,["you_cannot_have_non_golem_minions"]=2855,["you_count_as_low_life_while_affected_by_vulnerability"]=2287,["you_count_as_low_life_while_not_on_full_life"]=5816,["you_have_no_armour_or_energy_shield"]=5817,["you_have_zealots_oath_if_you_havent_been_hit_recently"]=5889,["your_ailments_deal_damage_faster_%_while_affected_by_malevolence"]=5819,["your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"]=5820,["your_consecrated_ground_grants_damage_+%"]=3385,["your_spells_are_disabled"]=5821,["zealotry_aura_effect_+%"]=5829,["zealotry_mana_reservation_+%"]=5830,["zealotry_reserves_no_mana"]=5831,["zero_elemental_resistance"]=2005,["zombie_attack_speed_+%"]=3017,["zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=5832,["zombie_chaos_elemental_damage_resistance_%"]=1778,["zombie_damage_+%"]=2807,["zombie_damage_leeched_as_life_to_you_permyriad_if_over_1000_strength"]=5833,["zombie_elemental_resistances_%"]=3144,["zombie_explode_on_kill_%_fire_damage_to_deal"]=1841,["zombie_maximum_life_+"]=1777,["zombie_physical_damage_+%"]=1840,["zombie_physical_damage_+%_final"]=5834,["zombie_scale_+%"]=1839,["zombie_slam_area_of_effect_+%"]=5835,["zombie_slam_cooldown_speed_+%"]=5836,["zombie_slam_damage_+%"]=5837} \ No newline at end of file +return {[1]={stats={[1]="level"}},[2]={stats={[1]="running"}},[3]={stats={[1]="item_drop_slots"}},[4]={stats={[1]="main_hand_weapon_type"}},[5]={stats={[1]="off_hand_weapon_type"}},[6]={stats={[1]="current_endurance_charges"}},[7]={stats={[1]="current_frenzy_charges"}},[8]={stats={[1]="current_power_charges"}},[9]={stats={[1]="monster_slain_experience_+%"}},[10]={stats={[1]="monster_dropped_item_rarity_+%"}},[11]={stats={[1]="monster_dropped_item_quantity_+%"}},[12]={stats={[1]="main_hand_quality"}},[13]={stats={[1]="off_hand_quality"}},[14]={stats={[1]="trap"}},[15]={stats={[1]="skill_visual_scale_+%"}},[16]={stats={[1]="main_hand_base_weapon_attack_duration_ms"}},[17]={stats={[1]="off_hand_base_weapon_attack_duration_ms"}},[18]={stats={[1]="main_hand_minimum_attack_distance"}},[19]={stats={[1]="off_hand_minimum_attack_distance"}},[20]={stats={[1]="main_hand_maximum_attack_distance"}},[21]={stats={[1]="off_hand_maximum_attack_distance"}},[22]={stats={[1]="chest_item_quantity_+%"}},[23]={stats={[1]="chest_item_quality_+%"}},[24]={stats={[1]="chest_level_+"}},[25]={stats={[1]="chest_only_normal_rarity"}},[26]={stats={[1]="chest_only_magic_rarity"}},[27]={stats={[1]="chest_only_rare_rarity"}},[28]={stats={[1]="chest_only_unique_rarity"}},[29]={stats={[1]="chest_only_currency_items"}},[30]={stats={[1]="chest_only_gems"}},[31]={stats={[1]="map_item_drop_quantity_+%"}},[32]={stats={[1]="map_item_drop_rarity_+%"}},[33]={stats={[1]="map_tempest_display_prefix"}},[34]={stats={[1]="map_tempest_display_suffix"}},[35]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShortestPathToClassStart"},limit={[1]={[1]="#",[2]="#"}},text="This Jewel's Socket has %1%%% increased effect per Allocated Passive Skill between\nit and your Class' starting location"}}},stats={[1]="local_jewel_+%_effect_per_passive_between_jewel_and_class_start"}},[36]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=1,[2]=1},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]=1}},text="Bathed in the blood of %2% sacrificed in the name of Xibaqua\nPassives in radius are Conquered by the Vaal"},[2]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=1,[2]=1},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]=2}},text="Bathed in the blood of %2% sacrificed in the name of Zerphi\nPassives in radius are Conquered by the Vaal"},[3]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=1,[2]=1},[2]={[1]="#",[2]="#"},[3]={[1]=3,[2]=3}},text="Bathed in the blood of %2% sacrificed in the name of Doryani\nPassives in radius are Conquered by the Vaal"},[4]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=2,[2]=2},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]=1}},text="Commanded leadership over %2% warriors under Kaom\nPassives in radius are Conquered by the Karui"},[5]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=2,[2]=2},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]=2}},text="Commanded leadership over %2% warriors under Rakiata\nPassives in radius are Conquered by the Karui"},[6]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=2,[2]=2},[2]={[1]="#",[2]="#"},[3]={[1]=3,[2]=3}},text="Commanded leadership over %2% warriors under Kiloava\nPassives in radius are Conquered by the Karui"},[7]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=3,[2]=3},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]=1}},text="Denoted service of %2% dekhara in the akhara of Deshret\nPassives in radius are Conquered by the Maraketh"},[8]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=3,[2]=3},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]=2}},text="Denoted service of %2% dekhara in the akhara of Asenath\nPassives in radius are Conquered by the Maraketh"},[9]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=3,[2]=3},[2]={[1]="#",[2]="#"},[3]={[1]=3,[2]=3}},text="Denoted service of %2% dekhara in the akhara of Nasima\nPassives in radius are Conquered by the Maraketh"},[10]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=4,[2]=4},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]=1}},text="Carved to glorify %2% new faithful converted by High Templar Venarius\nPassives in radius are Conquered by the Templars"},[11]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=4,[2]=4},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]=2}},text="Carved to glorify %2% new faithful converted by High Templar Dominus\nPassives in radius are Conquered by the Templars"},[12]={[1]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=4,[2]=4},[2]={[1]="#",[2]="#"},[3]={[1]=3,[2]=3}},text="Carved to glorify %2% new faithful converted by High Templar Avarius\nPassives in radius are Conquered by the Templars"},[13]={[1]={k="times_twenty",v=2},[2]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=5,[2]=5},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]=1}},text="Commissioned %2% coins to commemorate Cadiro\nPassives in radius are Conquered by the Eternal Empire"},[14]={[1]={k="times_twenty",v=2},[2]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=5,[2]=5},[2]={[1]="#",[2]="#"},[3]={[1]=2,[2]=2}},text="Commissioned %2% coins to commemorate Victario\nPassives in radius are Conquered by the Eternal Empire"},[15]={[1]={k="times_twenty",v=2},[2]={k="reminderstring",v="ReminderTextConqueredPassives"},limit={[1]={[1]=5,[2]=5},[2]={[1]="#",[2]="#"},[3]={[1]=3,[2]=3}},text="Commissioned %2% coins to commemorate Chitus\nPassives in radius are Conquered by the Eternal Empire"}}},stats={[1]="local_unique_jewel_alternate_tree_version",[2]="local_unique_jewel_alternate_tree_seed",[3]="local_unique_jewel_alternate_tree_keystone"}},[37]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can be modified while Corrupted"}}},stats={[1]="local_item_allow_modification_while_corrupted"}},[38]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextJewelRadiusRing"},limit={[1]={[1]=1,[2]=1}},text="Only affects Passives in Small Ring"},[2]={[1]={k="reminderstring",v="ReminderTextJewelRadiusRing"},limit={[1]={[1]=2,[2]=2}},text="Only affects Passives in Medium Ring"},[3]={[1]={k="reminderstring",v="ReminderTextJewelRadiusRing"},limit={[1]={[1]=3,[2]=3}},text="Only affects Passives in Large Ring"},[4]={[1]={k="reminderstring",v="ReminderTextJewelRadiusRing"},limit={[1]={[1]=4,[2]=4}},text="Only affects Passives in Very Large Ring"}}},stats={[1]="local_jewel_variable_ring_radius_value"}},[39]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have a second Enchantment Modifier"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Can have %1% extra Enchantment Modifiers"}}},stats={[1]="local_item_can_have_x_additional_enchantments"}},[40]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCorruptionUniqueTooManyImplicits"},limit={[1]={[1]=1,[2]=1}},text="Can have a up to 1 Implicit Modifier while Item has this Modifier"},[2]={[1]={k="reminderstring",v="ReminderTextCorruptionUniqueTooManyImplicits"},limit={[1]={[1]=2,[2]="#"}},text="Can have up to %1% Implicit Modifiers while Item has this Modifier"}}},stats={[1]="local_item_implicit_modifier_limit"}},[41]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can roll Minion Modifiers"}}},stats={[1]="display_item_generation_can_roll_minion_affixes"}},[42]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Prefixes Cannot Be Changed"}}},stats={[1]="item_generation_cannot_change_prefixes"}},[43]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Suffixes Cannot Be Changed"}}},stats={[1]="item_generation_cannot_change_suffixes"}},[44]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot roll Caster Modifiers"}}},stats={[1]="item_generation_cannot_roll_caster_affixes"}},[45]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot roll Attack Modifiers"}}},stats={[1]="item_generation_cannot_roll_attack_affixes"}},[46]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to 3 Crafted Modifiers"}}},stats={[1]="item_generation_can_have_multiple_crafted_mods"}},[47]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot roll Modifiers with Required Level above %1%"}}},stats={[1]="item_generation_local_maximum_mod_required_level_override"}},[48]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImplicitMod"},limit={[1]={[1]=100,[2]=100}},text="Implicit Modifier magnitudes are doubled"},[2]={[1]={k="reminderstring",v="ReminderTextImplicitMod"},limit={[1]={[1]=200,[2]=200}},text="Implicit Modifier magnitudes are tripled"},[3]={[1]={k="reminderstring",v="ReminderTextImplicitMod"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Implicit Modifier magnitudes"},[4]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextImplicitMod"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Implicit Modifier magnitudes"}}},stats={[1]="local_implicit_stat_magnitude_+%"}},[49]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Snipe Skill"}}},stats={[1]="local_display_grant_level_x_snipe_skill"}},[50]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Has no Sockets"}}},stats={[1]="local_has_no_sockets"}},[51]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAbyssalSockets"},limit={[1]={[1]=1,[2]=1}},text="Has 1 Abyssal Socket"},[2]={[1]={k="reminderstring",v="ReminderTextAbyssalSockets"},limit={[1]={[1]=2,[2]="#"}},text="Has %1% Abyssal Sockets"}}},stats={[1]="local_has_X_abyss_sockets"}},[52]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Has 1 Socket"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Has %1% Sockets"}}},stats={[1]="local_has_X_sockets"}},[53]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Sockets cannot be modified"}}},stats={[1]="local_six_linked_random_sockets"}},[54]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="All Sockets Linked"}}},stats={[1]="local_all_sockets_linked"}},[55]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Has one socket of each colour"}}},stats={[1]="local_one_socket_each_colour_only"}},[56]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gems can be Socketed in this Item ignoring Socket Colour"}}},stats={[1]="local_can_socket_gems_ignoring_colour"}},[57]={lang={English={[1]={limit={[1]={[1]=1,[2]=1},[2]={[1]=0,[2]=0}},text="Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level\nCan Consume %1% Uncorrupted Support Gem\nHas not Consumed any Gems"},[2]={limit={[1]={[1]=1,[2]=1},[2]={[1]="#",[2]="#"}},text="Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level\nCan Consume %1% additional Uncorrupted Support Gem"},[3]={limit={[1]={[1]=2,[2]="#"},[2]={[1]=0,[2]=0}},text="Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level\nCan Consume %1% Uncorrupted Support Gems\nHas not Consumed any Gems"},[4]={limit={[1]={[1]=2,[2]="#"},[2]={[1]="#",[2]="#"}},text="Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level\nCan Consume %1% additional Uncorrupted Support Gems"},[5]={limit={[1]={[1]=-1,[2]=-1},[2]={[1]=1,[2]=1}},text="Has Consumed 1 Gem"}}},stats={[1]="local_unique_hungry_loop_number_of_gems_to_consume",[2]="local_unique_hungry_loop_has_consumed_gem"}},[58]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to Trigger a Socketed Warcry Skill when you lose Endurance Charges"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger a Socketed Warcry Skill when you lose Endurance Charges"}}},stats={[1]="trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance"}},[59]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d to Level of Socketed Gems"}}},stats={[1]="local_gem_level_+"}},[60]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Strength Gems"}}},stats={[1]="local_socketed_strength_gem_level_+"}},[61]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Dexterity Gems"}}},stats={[1]="local_socketed_dexterity_gem_level_+"}},[62]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Intelligence Gems"}}},stats={[1]="local_socketed_intelligence_gem_level_+"}},[63]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Gems"}}},stats={[1]="local_socketed_gem_level_+"}},[64]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="+1 to Level of Socketed Active Skill Gems per %1% Player Levels"}}},stats={[1]="local_socketed_skill_gem_level_+1_per_x_player_levels"}},[65]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gems Socketed in Red Sockets have %1$+d to Level"}}},stats={[1]="local_socketed_gems_in_red_sockets_get_level_+"}},[66]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gems Socketed in Green Sockets have %1$+d%% to Quality"}}},stats={[1]="local_socketed_gems_in_green_sockets_get_quality_%"}},[67]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gems Socketed in Blue Sockets gain %1%%% increased Experience"}}},stats={[1]="local_socketed_gems_in_blue_sockets_experience_gained_+%"}},[68]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Fire Gems"}}},stats={[1]="local_socketed_fire_gem_level_+"}},[69]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Cold Gems"}}},stats={[1]="local_socketed_cold_gem_level_+"}},[70]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Lightning Gems"}}},stats={[1]="local_socketed_lightning_gem_level_+"}},[71]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Chaos Gems"}}},stats={[1]="local_socketed_chaos_gem_level_+"}},[72]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Spell Gems"}}},stats={[1]="local_socketed_spell_gem_level_+"}},[73]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Duration Gems"}}},stats={[1]="local_socketed_duration_gem_level_+"}},[74]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed AoE Gems"}}},stats={[1]="local_socketed_area_of_effect_gem_level_+"}},[75]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Projectile Gems"}}},stats={[1]="local_socketed_projectile_gem_level_+"}},[76]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Bow Gems"}}},stats={[1]="local_socketed_bow_gem_level_+"}},[77]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Melee Gems"}}},stats={[1]="local_socketed_melee_gem_level_+"}},[78]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Minion Gems"}}},stats={[1]="local_socketed_minion_gem_level_+"}},[79]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Aura Gems"}}},stats={[1]="local_socketed_aura_gem_level_+"}},[80]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Herald Gems"}}},stats={[1]="local_socketed_herald_gem_level_+"}},[81]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Movement Gems"}}},stats={[1]="local_socketed_movement_gem_level_+"}},[82]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Curse Gems"}}},stats={[1]="local_socketed_curse_gem_level_+"}},[83]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Trap Gems"}}},stats={[1]="local_socketed_trap_gem_level_+"}},[84]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Trap or Mine Gems"}}},stats={[1]="local_socketed_trap_and_mine_gem_level_+"}},[85]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Vaal Gems"}}},stats={[1]="local_socketed_vaal_gem_level_+"}},[86]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Support Gems"}}},stats={[1]="local_socketed_support_gem_level_+"}},[87]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Active Skill Gems"}}},stats={[1]="local_socketed_skill_gem_level_+"}},[88]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Warcry Gems"}}},stats={[1]="local_socketed_warcry_gem_level_+"}},[89]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Golem Skills have %1%%% increased Attack and Cast Speed"}}},stats={[1]="local_display_socketed_golem_attack_and_cast_speed_+%"}},[90]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Buffs granted by Socketed Golem Skills"}}},stats={[1]="local_display_socketed_golem_buff_effect_+%"}},[91]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Golem Skills have %1%%% chance to Taunt on Hit"}}},stats={[1]="local_display_socketed_golem_chance_to_taunt_%"}},[92]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Socketed Golem Skills have Minions Regenerate %1%%% of Life per second"}}},stats={[1]="local_display_socketed_golem_life_regeneration_rate_per_minute_%"}},[93]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Gain Onslaught for %1% seconds when you Cast Socketed Golem Skill"}}},stats={[1]="local_display_socketed_golem_skill_grants_onslaught_when_summoned"}},[94]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Golem Skills gain %1%%% of Maximum Life as Extra Maximum Energy Shield"}}},stats={[1]="local_display_socketed_golem_skills_minions_life_%_to_add_as_energy_shield"}},[95]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Golem Gems"}}},stats={[1]="local_socketed_golem_gem_level_+"}},[96]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Gems"}}},stats={[1]="local_socketed_gem_quality_+"}},[97]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Support Gems"}}},stats={[1]="local_socketed_support_gem_quality_+"}},[98]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Socketed Elemental Gems"}}},stats={[1]="local_socketed_elemental_gem_level_+"}},[99]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Socketed Abyss Jewels"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Socketed Abyss Jewels"}}},stats={[1]="local_socketed_abyss_jewel_effect_+%"}},[100]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Increased Area of Effect"}}},stats={[1]="local_display_socketed_gems_get_increased_area_level"}},[101]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Arcane Surge"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_arcane_surge"}},[102]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Archmage"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_archmage"}},[103]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Blessing"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_aura_duration"}},[104]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Barrage"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_barrage"}},[105]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Bloodlust"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_bloodlust"}},[106]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Bonechill"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_bonechill"}},[107]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Brutality"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_brutality"}},[108]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Cast when Damage Taken"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken"}},[109]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Cast On Melee Kill"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_cast_on_kill"}},[110]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Cast While Channelling"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_cast_while_channelling"}},[111]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Chain"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_chain"}},[112]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Chance To Bleed"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_chance_to_bleed"}},[113]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Combustion"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_chance_to_ignite"}},[114]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Charged Mines"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_charged_mines"}},[115]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Close Combat"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_close_combat"}},[116]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Culling Strike"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_culling_strike"}},[117]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Curse On Hit"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_curse_on_hit"}},[118]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Deadly Ailments"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_deadly_ailments"}},[119]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Decay"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_decay"}},[120]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Efficacy"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_efficacy"}},[121]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Elemental Focus"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_elemental_focus"}},[122]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Elemental Penetration"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_elemental_penetration"}},[123]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Empower"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_empower"}},[124]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Energy Leech"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_energy_leech"}},[125]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Enhance"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_enhance"}},[126]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Enlighten"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_enlighten"}},[127]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Feeding Frenzy"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_feeding_frenzy"}},[128]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Fire Penetration"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_fire_penetration"}},[129]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Charged Traps"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger"}},[130]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Greater Multiple Projectiles"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles"}},[131]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Greater Spell Echo"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_greater_spell_echo"}},[132]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Greater Volley"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_greater_volley"}},[133]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Ignite Proliferation"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_ignite_proliferation"}},[134]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Immolate"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_immolate"}},[135]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Impale"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_impale"}},[136]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Burning Damage"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_increased_burning_damage"}},[137]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Increased Critical Strikes"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_increased_critical_strikes"}},[138]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Increased Duration"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_increased_duration"}},[139]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Infernal Legion"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_infernal_legion"}},[140]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Iron Grip"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_iron_grip"}},[141]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Item Quantity"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_item_quantity"}},[142]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Item Rarity"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_item_rarity"}},[143]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Life Gain On Hit"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_life_gain_on_hit"}},[144]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Lightning Penetration"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_lightning_penetration"}},[145]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Maim"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_maim"}},[146]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Meat Shield"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_meat_shield"}},[147]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Damage On Full Life"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life"}},[148]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Minefield"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_minefield"}},[149]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Mirage Archer"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_mirage_archer"}},[150]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Multiple Totems"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_multi_totem"}},[151]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Spell Echo"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_multicast"}},[152]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Onslaught"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_onslaught"}},[153]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Volley"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_parallel_projectiles"}},[154]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Vicious Projectiles"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage"}},[155]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Physical To Lightning"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_physical_to_lightning"}},[156]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Point Blank"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_point_blank"}},[157]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Poison"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_poison"}},[158]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Power Charge On Critical Strike"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_power_charge_on_crit"}},[159]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Pulverise"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_pulverise"}},[160]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Rage"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_rage"}},[161]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Arrow Nova"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_rain"}},[162]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Ballista Totem"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_ranged_attack_totem"}},[163]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Swift Affliction"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_rapid_decay"}},[164]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Block Chance Reduction"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_reduced_block_chance"}},[165]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Less Duration"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_reduced_duration"}},[166]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% High-Impact Mine"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_remote_mine_2"}},[167]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Ruthless"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_ruthless"}},[168]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Second Wind"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_second_wind"}},[169]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Shockwave"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_shockwave"}},[170]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Slower Projectiles"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_slower_projectiles"}},[171]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Non-Channelling Bow Skills are Triggered by Snipe"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_snipe"}},[172]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Spell Cascade"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_spell_cascade"}},[173]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Intensify"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_spell_focus"}},[174]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Ancestral Call"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_spirit_strike"}},[175]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Infused Channelling"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_storm_barrier"}},[176]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Elemental Army Support"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance"}},[177]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Summon Phantasm"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill"}},[178]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Swift Assembly"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_swift_assembly"}},[179]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Advanced Traps"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_trap_cooldown"}},[180]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Unbound Ailments"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_unbound_ailments"}},[181]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Unleash"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_unleash"}},[182]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Void Manipulation"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_void_manipulation"}},[183]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Withering Touch"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_chaos_attacks"}},[184]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Added Chaos Damage"}}},stats={[1]="local_display_supported_by_level_x_awakened_added_chaos_damage"}},[185]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Added Cold Damage"}}},stats={[1]="local_display_supported_by_level_x_awakened_added_cold_damage"}},[186]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Added Fire Damage"}}},stats={[1]="local_display_supported_by_level_x_awakened_added_fire_damage"}},[187]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Added Lightning Damage"}}},stats={[1]="local_display_supported_by_level_x_awakened_added_lightning_damage"}},[188]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Ancestral Call"}}},stats={[1]="local_display_supported_by_level_x_awakened_ancestral_call"}},[189]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Arrow Nova"}}},stats={[1]="local_display_supported_by_level_x_awakened_arrow_nova"}},[190]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Blasphemy"}}},stats={[1]="local_display_supported_by_level_x_awakened_blasphemy"}},[191]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Brutality"}}},stats={[1]="local_display_supported_by_level_x_awakened_brutality"}},[192]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Burning Damage"}}},stats={[1]="local_display_supported_by_level_x_awakened_burning_damage"}},[193]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Cast On Critical Strike"}}},stats={[1]="local_display_supported_by_level_x_awakened_cast_on_crit"}},[194]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Cast While Channelling"}}},stats={[1]="local_display_supported_by_level_x_awakened_cast_while_channelling"}},[195]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Chain"}}},stats={[1]="local_display_supported_by_level_x_awakened_chain"}},[196]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Cold Penetration"}}},stats={[1]="local_display_supported_by_level_x_awakened_cold_penetration"}},[197]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Controlled Destruction"}}},stats={[1]="local_display_supported_by_level_x_awakened_controlled_destruction"}},[198]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Curse On Hit"}}},stats={[1]="local_display_supported_by_level_x_awakened_curse_on_hit"}},[199]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Deadly Ailments"}}},stats={[1]="local_display_supported_by_level_x_awakened_deadly_ailments"}},[200]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Elemental Focus"}}},stats={[1]="local_display_supported_by_level_x_awakened_elemental_focus"}},[201]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Fire Penetration"}}},stats={[1]="local_display_supported_by_level_x_awakened_fire_penetration"}},[202]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Fork"}}},stats={[1]="local_display_supported_by_level_x_awakened_fork"}},[203]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Generosity"}}},stats={[1]="local_display_supported_by_level_x_awakened_generosity"}},[204]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Greater Multiple Projectiles"}}},stats={[1]="local_display_supported_by_level_x_awakened_greater_multiple_projectiles"}},[205]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Increased Area Of Effect"}}},stats={[1]="local_display_supported_by_level_x_awakened_increased_area_of_effect"}},[206]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Lightning Penetration"}}},stats={[1]="local_display_supported_by_level_x_awakened_lightning_penetration"}},[207]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Melee Physical Damage"}}},stats={[1]="local_display_supported_by_level_x_awakened_melee_physical_damage"}},[208]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Melee Splash"}}},stats={[1]="local_display_supported_by_level_x_awakened_melee_splash"}},[209]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Minion Damage"}}},stats={[1]="local_display_supported_by_level_x_awakened_minion_damage"}},[210]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Multistrike"}}},stats={[1]="local_display_supported_by_level_x_awakened_multistrike"}},[211]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Spell Cascade"}}},stats={[1]="local_display_supported_by_level_x_awakened_spell_cascade"}},[212]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Spell Echo"}}},stats={[1]="local_display_supported_by_level_x_awakened_spell_echo"}},[213]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Swift Affliction"}}},stats={[1]="local_display_supported_by_level_x_awakened_swift_affliction"}},[214]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Unbound Ailments"}}},stats={[1]="local_display_supported_by_level_x_awakened_unbound_ailments"}},[215]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Unleash"}}},stats={[1]="local_display_supported_by_level_x_awakened_unleash"}},[216]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Vicious Projectiles"}}},stats={[1]="local_display_supported_by_level_x_awakened_vicious_projectiles"}},[217]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Void Manipulation"}}},stats={[1]="local_display_supported_by_level_x_awakened_void_manipulation"}},[218]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Awakened Elemental Damage With Attacks"}}},stats={[1]="local_display_supported_by_level_x_awakened_weapon_elemental_damage"}},[219]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Concentrated Effect"}}},stats={[1]="local_display_socketed_gems_get_concentrated_area_level"}},[220]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Trap"}}},stats={[1]="local_display_socketed_gems_get_trap_level"}},[221]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Cluster Trap"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_cluster_trap"}},[222]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Multiple Traps"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_multi_trap"}},[223]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Trap And Mine Damage"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage"}},[224]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Added Chaos Damage"}}},stats={[1]="local_display_socketed_gems_get_added_chaos_damage_level"}},[225]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Blood Magic"}}},stats={[1]="local_display_socketed_gems_get_blood_magic_level"}},[226]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Increased Duration"}}},stats={[1]="local_display_socketed_gems_get_increased_duration_level"}},[227]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Added Fire Damage"}}},stats={[1]="local_display_socketed_gems_get_added_fire_damage_level"}},[228]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Cold to Fire"}}},stats={[1]="local_display_socketed_gems_get_cold_to_fire_level"}},[229]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Spell Totem"}}},stats={[1]="local_display_socketed_gems_get_spell_totem_level"}},[230]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Fire Penetration"}}},stats={[1]="local_display_socketed_gems_get_fire_penetration_level"}},[231]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Elemental Proliferation"}}},stats={[1]="local_display_socketed_gems_get_elemental_proliferation_level"}},[232]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Added Lightning Damage"}}},stats={[1]="local_display_socketed_gems_get_added_lightning_damage_level"}},[233]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Melee Physical Damage"}}},stats={[1]="local_display_socketed_gems_get_melee_physical_damage_level"}},[234]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Faster Attacks"}}},stats={[1]="local_display_socketed_gems_get_faster_attacks_level"}},[235]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Blind"}}},stats={[1]="local_display_socketed_gems_get_blind_level"}},[236]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Melee Splash"}}},stats={[1]="local_display_socketed_gems_get_melee_splash_level"}},[237]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Cast On Critical Strike"}}},stats={[1]="local_display_socketed_gems_get_cast_on_crit_level"}},[238]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Cast when Stunned"}}},stats={[1]="local_display_socketed_gems_get_cast_when_stunned_level"}},[239]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Cast on Death"}}},stats={[1]="local_display_socketed_gems_get_cast_on_death_level"}},[240]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Stun"}}},stats={[1]="local_display_socketed_gems_get_stun_level"}},[241]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Additional Accuracy"}}},stats={[1]="local_display_socketed_gems_get_additional_accuracy_level"}},[242]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Multistrike"}}},stats={[1]="local_display_socketed_gems_get_multistrike_level"}},[243]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Faster Projectiles"}}},stats={[1]="local_display_socketed_gems_get_faster_projectiles_level"}},[244]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Life Leech"}}},stats={[1]="local_display_socketed_gems_get_life_leech_level"}},[245]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Increased Critical Damage"}}},stats={[1]="local_display_socketed_gems_get_increased_critical_damage_level"}},[246]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Fork"}}},stats={[1]="local_display_socketed_gems_get_fork_level"}},[247]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Elemental Damage with Attacks"}}},stats={[1]="local_display_socketed_gems_get_weapon_elemental_damage_level"}},[248]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Spell Echo"}}},stats={[1]="local_display_socketed_gems_get_echo_level"}},[249]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Inspiration"}}},stats={[1]="local_display_socketed_gems_get_reduced_mana_cost_level"}},[250]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Generosity"}}},stats={[1]="local_display_socketed_gems_get_generosity_level"}},[251]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Fortify"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_fortify"}},[252]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Blastchain Mine"}}},stats={[1]="local_display_socketed_gems_get_remote_mine_level"}},[253]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Chance to Flee"}}},stats={[1]="local_display_socketed_gems_get_flee_level"}},[254]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Faster Casting"}}},stats={[1]="local_display_socketed_gems_get_faster_cast_level"}},[255]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Iron Will"}}},stats={[1]="local_display_socketed_gems_get_iron_will_level"}},[256]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Knockback"}}},stats={[1]="local_display_socketed_gems_supported_by_x_knockback_level"}},[257]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Minion Life"}}},stats={[1]="local_display_socketed_gems_supported_by_x_increased_minion_life_level"}},[258]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Lesser Multiple Projectiles"}}},stats={[1]="local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level"}},[259]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Minion Damage"}}},stats={[1]="local_display_socketed_gems_supported_by_x_increased_minion_damage_level"}},[260]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Increased Critical Damage"}}},stats={[1]="local_display_socketed_gems_supported_by_x_increased_critical_damage_level"}},[261]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Minion Speed"}}},stats={[1]="local_display_socketed_gems_supported_by_x_increased_minion_speed_level"}},[262]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are supported by Level %1% Pierce"}}},stats={[1]="local_display_socketed_gems_supported_by_pierce_level"}},[263]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Pierce"}}},stats={[1]="local_display_socketed_gems_get_pierce_level"}},[264]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Hypothermia"}}},stats={[1]="local_display_socketed_gems_supported_by_x_hypothermia"}},[265]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Ice Bite"}}},stats={[1]="local_display_socketed_gems_supported_by_x_ice_bite"}},[266]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Cold Penetration"}}},stats={[1]="local_display_socketed_gems_supported_by_x_cold_penetration"}},[267]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Mana Leech"}}},stats={[1]="local_display_socketed_gems_supported_by_x_mana_leech"}},[268]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Added Cold Damage"}}},stats={[1]="local_display_socketed_gems_supported_by_x_added_cold_damage"}},[269]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Inspiration"}}},stats={[1]="local_display_socketed_gems_supported_by_x_reduced_mana_cost"}},[270]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems are Supported by Level %1% Blasphemy"}}},stats={[1]="local_display_socketed_curse_gems_supported_by_level_x_blasphemy"}},[271]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Innervate"}}},stats={[1]="local_display_socketed_gems_supported_by_x_innervate_level"}},[272]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Vile Toxins"}}},stats={[1]="local_display_socketed_gems_supported_by_X_vile_toxins"}},[273]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Lesser Poison"}}},stats={[1]="local_display_socketed_gems_supported_by_X_lesser_poison"}},[274]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Minion Gems are Supported by Level %1% Life Leech"}}},stats={[1]="display_socketed_minion_gems_supported_by_level_X_life_leech"}},[275]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Controlled Destruction"}}},stats={[1]="local_display_socketed_gems_supported_by_x_controlled_destruction"}},[276]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Endurance Charge on Melee Stun"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun"}},[277]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems have Blood Magic"}}},stats={[1]="local_display_socketed_gems_have_blood_magic"}},[278]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems have %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Gems have %1%%% reduced Mana Reservation"}}},stats={[1]="local_display_socketed_gems_have_mana_reservation_+%"}},[279]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems Reserve No Mana"}}},stats={[1]="local_display_socketed_aura_gems_reserve_no_mana"}},[280]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Skill Gems get a %1%%% Mana Multiplier"}}},stats={[1]="local_display_socketed_gems_get_mana_multplier_%"}},[281]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Melee Gems have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Melee Gems have %1%%% reduced Area of Effect"}}},stats={[1]="local_display_socketed_melee_gems_have_area_radius_+%"}},[282]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Red Gems get %1%%% Physical Damage as Extra Fire Damage"}}},stats={[1]="local_display_socketed_red_gems_have_%_of_physical_damage_to_add_as_fire"}},[283]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Skills Summon your maximum number of Totems in formation"}}},stats={[1]="local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation"}},[284]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Socketed Gems have %1%%% chance to Ignite"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Socketed Gems always Ignite"}}},stats={[1]="local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage"}},[285]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems have %1%%% chance to cause Enemies to Flee on Hit"}}},stats={[1]="local_display_socketed_gems_have_chance_to_flee_%"}},[286]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies slain by Socketed Gems drop %1%%% increased item quantity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies slain by Socketed Gems drop %1%%% reduced item quantity"}}},stats={[1]="local_display_socketed_gems_get_item_quantity_+%"}},[287]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curses in this item are reflected back to you"}}},stats={[1]="local_display_socketed_gems_get_curse_reflection"}},[288]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems have Iron Will"}}},stats={[1]="local_display_socketed_gems_have_iron_will"}},[289]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems Chain %1% additional times"}}},stats={[1]="local_display_socketed_gems_chain_X_additional_times"}},[290]={lang={English={[1]={limit={[1]={[1]=3,[2]=3}},text="Socketed Gems have +3.5%% Critical Strike Chance"},[2]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems have %1$+d%% Critical Strike Chance"}}},stats={[1]="local_display_socketed_gems_additional_critical_strike_chance_%"}},[291]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spells in this item Repeat an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spells in this item Repeat an additional %1% times"}}},stats={[1]="local_display_socketed_spells_repeat_count"}},[292]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger a Socketed Spell when you Attack with a Bow"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger a Socketed Spell when you Attack with a Bow"}}},stats={[1]="chance_to_trigger_socketed_spell_on_bow_attack_%"}},[293]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Triggered Bow Skills deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Triggered Bow Skills deal %1%%% less Damage"}}},stats={[1]="local_display_assailum_socketed_gems_damage_+%_final"}},[294]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Skills deal %1%%% more Attack Damage"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Socketed Skills deal %1%%% less Attack Damage"}}},stats={[1]="local_display_socketed_attack_damage_+%_final"}},[295]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Socketed Attacks have %1$+d%% to Critical Strike Chance"}}},stats={[1]="local_display_socketed_attacks_additional_critical_strike_chance"}},[296]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Attacks have %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="local_display_socketed_attacks_critical_strike_multiplier_+"}},[297]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Attacks have %1$+d to Total Mana Cost"}}},stats={[1]="local_display_socketed_attacks_mana_cost_+"}},[298]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems have %1%%% more Attack and Cast Speed"}}},stats={[1]="local_display_socketed_gems_attack_and_cast_speed_+%_final"}},[299]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems deal %1%%% more Elemental Damage"}}},stats={[1]="local_display_socketed_gems_elemental_damage_+%_final"}},[300]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems have %1%%% reduced Mana Cost"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Gems have %1%%% increased Mana Cost"}}},stats={[1]="local_display_socketed_gems_mana_cost_-%"}},[301]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Socketed Gems deal %1% to %2% additional Fire Damage"}}},stats={[1]="local_display_socketed_gems_minimum_added_fire_damage",[2]="local_display_socketed_gems_maximum_added_fire_damage"}},[302]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems gain %1%%% of Physical Damage as extra Lightning Damage"}}},stats={[1]="local_display_socketed_gems_physical_damage_%_to_add_as_lightning"}},[303]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Deathmark"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_deathmark"}},[304]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems are Supported by Level %1% Nightblade"}}},stats={[1]="local_display_socketed_gems_supported_by_level_x_nightblade"}},[305]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Movement Skills have no Mana Cost"}}},stats={[1]="local_display_socketed_movement_skills_have_no_mana_cost"}},[306]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Skills have %1%%% increased Attack Speed"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Socketed Skills have %1%%% reduced Attack Speed"}}},stats={[1]="local_display_socketed_skills_attack_speed_+%"}},[307]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Skills have %1%%% increased Cast Speed"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Socketed Skills have %1%%% reduced Cast Speed"}}},stats={[1]="local_display_socketed_skills_cast_speed_+%"}},[308]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles from Socketed Gems Fork"}}},stats={[1]="local_display_socketed_skills_fork"}},[309]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Skills deal %1%%% more Spell Damage"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Socketed Skills deal %1%%% less Spell Damage"}}},stats={[1]="local_display_socketed_spell_damage_+%_final"}},[310]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Socketed Spells have %1$+d%% to Critical Strike Chance"}}},stats={[1]="local_display_socketed_spells_additional_critical_strike_chance"}},[311]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Spells have %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="local_display_socketed_spells_critical_strike_multiplier_+"}},[312]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Spells have %1%%% increased Mana Cost"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Spells have %1%%% reduced Mana Cost"}}},stats={[1]="local_display_socketed_spells_mana_cost_+%"}},[313]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems deal %1%%% more Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Gems deal %1%%% less Damage over Time"}}},stats={[1]="local_display_socketed_gems_damage_over_time_+%_final"}},[314]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneElementalEquilibrium"},limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems have Elemental Equilibrium"}}},stats={[1]="local_display_socketed_gems_have_elemental_equilibrium"}},[315]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Non-Curse Aura Gems have %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Non-Curse Aura Gems have %1%%% reduced Aura Effect"}}},stats={[1]="local_display_socketed_non_curse_aura_gems_effect_+%"}},[316]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneElementalEquilibrium"},limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems have %1%%% increased Elemental Equilibrium effect"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextKeystoneElementalEquilibrium"},limit={[1]={[1]="#",[2]=-1}},text="Socketed Gems have %1%%% reduced Elemental Equilibrium effect"}}},stats={[1]="local_display_socketed_gems_have_elemental_equilibrium_effect_pluspercent"}},[317]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Socketed Gems fire an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems fire %1% additional Projectiles"}}},stats={[1]="local_display_socketed_gems_have_number_of_additional_projectiles"}},[318]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems fire Projectiles in a circle"}}},stats={[1]="local_display_socketed_gems_projectiles_nova"}},[319]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Gems have %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Gems have %1%%% reduced Skill Effect Duration"}}},stats={[1]="local_display_socketed_gems_skill_effect_duration_+%"}},[320]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSmokeCloud"},limit={[1]={[1]=1,[2]="#"}},text="Traps from Socketed Skills create a Smoke Cloud when triggered"}}},stats={[1]="local_display_socketed_trap_skills_create_smoke_cloud"}},[321]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Socketed Curse Gems have %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Socketed Curse Gems have %1%%% reduced Mana Reservation"}}},stats={[1]="local_display_socketed_curse_gems_have_mana_reservation_+%"}},[322]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Socketed Jewels"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Socketed Jewels"}}},stats={[1]="local_socketed_abyss_jewel_effect_+%"}},[323]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skills from your Helmet Penetrate 20%% Elemental Resistances"}}},stats={[1]="hierophant_helmet_supported_by_elemental_penetration"}},[324]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skills from your Gloves have 40%% increased Area of Effect"}}},stats={[1]="hierophant_gloves_supported_by_increased_area_of_effect"}},[325]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skills from your Boots Leech 2%% of Damage as Life"}}},stats={[1]="hierophant_boots_supported_by_life_leech"}},[326]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Skills in your Helm have %1$+d to maximum number of Summoned Totems"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Skills in your Helm have %1$+d to maximum number of Summoned Totems"}}},stats={[1]="scion_helmet_skill_maximum_totems_+"}},[327]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Frostblink Skill"}}},stats={[1]="local_display_grants_skill_frostblink_level"}},[328]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Purity of Fire Skill"}}},stats={[1]="local_display_grants_skill_purity_of_fire_level"}},[329]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Illusory Warp Skill"}}},stats={[1]="local_display_illusory_warp_level"}},[330]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Bear Trap Skill"}}},stats={[1]="local_display_grants_skill_bear_trap_level"}},[331]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Summon Stone Golem Skill"}}},stats={[1]="local_display_grants_level_x_summon_stone_golem"}},[332]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Vengeance Skill"}}},stats={[1]="local_display_grants_level_X_vengeance"}},[333]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Despair Skill"}}},stats={[1]="local_display_grants_level_x_despair"}},[334]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Purity of Ice Skill"}}},stats={[1]="local_display_grants_skill_purity_of_cold_level"}},[335]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Grants Level 20 Summon Bestial Rhoa Skill"},[2]={limit={[1]={[1]=2,[2]=2}},text="Grants Level 20 Summon Bestial Ursa Skill"},[3]={limit={[1]={[1]=3,[2]=3}},text="Grants Level 20 Summon Bestial Snake Skill"}}},stats={[1]="local_display_grants_summon_beast_companion"}},[336]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Purity of Lightning Skill"}}},stats={[1]="local_display_grants_skill_purity_of_lightning_level"}},[337]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Flammability Skill"}}},stats={[1]="local_display_grants_skill_flammability_level"}},[338]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Grants Summon Harbinger of the Arcane Skill"},[2]={limit={[1]={[1]=2,[2]=2}},text="Grants Summon Harbinger of Time Skill"},[3]={limit={[1]={[1]=3,[2]=3}},text="Grants Summon Harbinger of Focus Skill"},[4]={limit={[1]={[1]=4,[2]=4}},text="Grants Summon Harbinger of Directions Skill"},[5]={limit={[1]={[1]=5,[2]=5}},text="Grants Summon Harbinger of Storms Skill"},[6]={limit={[1]={[1]=6,[2]=6}},text="Grants Summon Harbinger of Brutality Skill"}}},stats={[1]="local_display_summon_harbinger_x_on_equip"}},[339]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Conductivity Skill"}}},stats={[1]="local_display_grants_skill_conductivity_level"}},[340]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Frostbite Skill"}}},stats={[1]="local_display_grants_skill_frostbite_level"}},[341]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Temporal Chains Skill"}}},stats={[1]="local_display_grants_skill_temporal_chains_level"}},[342]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Haste Skill"}}},stats={[1]="local_display_grants_skill_haste_level"}},[343]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Has an additional Implicit Mod"}}},stats={[1]="local_display_has_additional_implicit_mod"}},[344]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Clarity Skill"}}},stats={[1]="local_display_grants_skill_clarity_level"}},[345]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Vitality Skill"}}},stats={[1]="local_display_grants_skill_vitality_level"}},[346]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Purity of Elements Skill"}}},stats={[1]="local_display_grants_skill_purity_level"}},[347]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Gluttony of Elements Skill"}}},stats={[1]="local_display_grants_skill_gluttony_of_elements_level"}},[348]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Assassin's Mark Skill"}}},stats={[1]="local_display_grants_skill_critical_weakness_level"}},[349]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Wrath Skill"}}},stats={[1]="local_display_grants_skill_wrath_level"}},[350]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Hatred Skill"}}},stats={[1]="local_display_grants_skill_hatred_level"}},[351]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Anger Skill"}}},stats={[1]="local_display_grants_skill_anger_level"}},[352]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Determination Skill"}}},stats={[1]="local_display_grants_skill_determination_level"}},[353]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Grace Skill"}}},stats={[1]="local_display_grants_skill_grace_level"}},[354]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Scorching Ray Skill"}}},stats={[1]="local_display_grants_skill_scorching_ray_level"}},[355]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Discipline Skill"}}},stats={[1]="local_display_grants_skill_discipline_level"}},[356]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Envy Skill"}}},stats={[1]="local_display_grants_level_X_envy"}},[357]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Reckoning Skill"}}},stats={[1]="local_display_grants_level_X_reckoning"}},[358]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Blight Skill"}}},stats={[1]="local_display_grants_skill_blight_level"}},[359]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Projectile Weakness Skill"}}},stats={[1]="local_display_grants_skill_projectile_weakness_level"}},[360]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Elemental Weakness Skill"}}},stats={[1]="local_display_grants_skill_elemental_weakness_level"}},[361]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Doryani's Touch Skill"}}},stats={[1]="local_display_grants_skill_doryanis_touch_level"}},[362]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Vulnerability Skill"}}},stats={[1]="local_display_grants_skill_vulnerability_level"}},[363]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Death Aura Skill"}}},stats={[1]="local_display_grants_skill_death_aura_level"}},[364]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Icestorm Skill"}}},stats={[1]="local_display_grants_skill_icestorm_level"}},[365]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCreateLesserShrineCooldown"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextCreateLesserShrineCooldown"},limit={[1]={[1]="#",[2]="#"}},text="Trigger Level 1 Create Lesser Shrine when you Kill an Enemy"}}},stats={[1]="local_display_cast_level_1_summon_lesser_shrine_on_kill_%"}},[366]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Consecrate when you deal a Critical Strike"}}},stats={[1]="local_display_cast_level_X_consecrate_on_crit"}},[367]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Shock Ground when Hit"}}},stats={[1]="local_display_cast_level_x_shock_ground_when_hit"}},[368]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Petrification Statue Skill"}}},stats={[1]="local_display_grant_level_x_petrification_statue"}},[369]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Blinding Aura when Equipped"}}},stats={[1]="local_display_trigger_level_X_blinding_aura_skill_on_equip"}},[370]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants Level %1% Blood Offering Skill"}}},stats={[1]="local_display_grants_level_x_blood_offering_skill"}},[371]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Summon Doedre's Effigy Skill\nSocketed Curses are Triggered by Doedre's Effigy when Summoned\nSocketed Curses ignore Curse Limit"}}},stats={[1]="local_display_grants_level_x_curse_pillar_skill"}},[372]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Abyssal Cry Skill"}}},stats={[1]="local_display_grants_skill_abyssal_cry_level"}},[373]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Precision Skill"}}},stats={[1]="local_display_grants_skill_accuracy_crits_aura_level"}},[374]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Aspect of the Avian Skill"}}},stats={[1]="local_display_grants_skill_bird_aspect_level"}},[375]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Bone Armour Skill"}}},stats={[1]="local_display_grants_skill_bone_armour"}},[376]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Aspect of the Cat Skill"}}},stats={[1]="local_display_grants_skill_cat_aspect_level"}},[377]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Aspect of the Crab Skill"}}},stats={[1]="local_display_grants_skill_crab_aspect_level"}},[378]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Decoy Totem Skill"}}},stats={[1]="local_display_grants_skill_decoy_totem_level"}},[379]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants Level %1% Embrace Madness Skill"}}},stats={[1]="local_display_grants_skill_embrace_madness_level"}},[380]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Enduring Cry Skill"}}},stats={[1]="local_display_grants_skill_enduring_cry_level"}},[381]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Herald of Ash Skill"}}},stats={[1]="local_display_grants_skill_herald_of_ash_level"}},[382]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Herald of Ice Skill"}}},stats={[1]="local_display_grants_skill_herald_of_ice_level"}},[383]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Herald of Thunder Skill"}}},stats={[1]="local_display_grants_skill_herald_of_thunder_level"}},[384]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Intimidating Cry Skill"}}},stats={[1]="local_display_grants_skill_intimidating_cry_level"}},[385]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Lightning Warp Skill"}}},stats={[1]="local_display_grants_skill_lightning_warp_level"}},[386]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Malevolence Skill"}}},stats={[1]="local_display_grants_skill_malevolence_level"}},[387]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Pride Skill"}}},stats={[1]="local_display_grants_skill_pride_level"}},[388]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Rallying Cry Skill"}}},stats={[1]="local_display_grants_skill_rallying_cry_level"}},[389]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Smite Skill"}}},stats={[1]="local_display_grants_skill_smite_level"}},[390]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Aspect of the Spider Skill"}}},stats={[1]="local_display_grants_skill_spider_aspect_level"}},[391]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Vaal Impurity of Fire Skill"}}},stats={[1]="local_display_grants_skill_vaal_impurity_of_fire_level"}},[392]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Vaal Impurity of Ice Skill"}}},stats={[1]="local_display_grants_skill_vaal_impurity_of_ice_level"}},[393]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Vaal Impurity of Lightning Skill"}}},stats={[1]="local_display_grants_skill_vaal_impurity_of_lightning_level"}},[394]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Zealotry Skill"}}},stats={[1]="local_display_grants_skill_zealotry_level"}},[395]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Darktongue's Kiss when you Cast a Curse Skill"}}},stats={[1]="local_display_trigger_level_X_darktongue_kiss_on_curse"}},[396]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Void Gaze when you use a Skill"}}},stats={[1]="local_display_trigger_level_X_void_gaze_on_skill_use"}},[397]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Storm Cascade when you Attack"}}},stats={[1]="local_display_trigger_level_x_storm_cascade_on_attack"}},[398]={lang={English={[1]={limit={[1]={[1]=3,[2]=3}},text="Triggers Level 20 Spectral Spirits when Equipped"}}},stats={[1]="base_number_of_essence_spirits_allowed"}},[399]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Socketed Spells on Killing a Shocked Enemy"}}},stats={[1]="cast_linked_spells_on_shocked_enemy_kill_%"}},[400]={lang={English={[1]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Socketed Minion Spells on Kill with this Weapon"},[2]={limit={[1]={[1]=0,[2]=99}},text="%1%%% chance to Trigger Socketed Minion Spells on Kill with this Weapon"}}},stats={[1]="cast_socketed_minion_skills_on_bow_kill_%"}},[401]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=100,[2]="#"}},text="Trigger Socketed Spells when\nyou Spend at least %1% Mana to Use a Skill"},[2]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%2%%% chance to Trigger Socketed Spells when\nyou Spend at least %1% Mana to Use a Skill"}}},stats={[1]="cast_socketed_spells_on_X_mana_spent",[2]="cast_socketed_spells_on_mana_spent_%_chance"}},[402]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger a Socketed Bow Skill when you Attack with a Bow"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger a Socketed Bow Skill when you Attack with a Bow"}}},stats={[1]="chance_to_trigger_socketed_bow_skill_on_bow_attack_%"}},[403]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Abberath's Fury when Equipped"}}},stats={[1]="display_abberaths_hooves_skill_level"}},[404]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Fire Burst on Kill"}}},stats={[1]="display_cast_fire_burst_on_kill"}},[405]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Level 20 Arcane Wake after Spending a total of 200 Mana"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Level 20 Arcane Wake after Spending a total of 200 Mana"}}},stats={[1]="display_trigger_arcane_wake_after_spending_200_mana_%_chance"}},[406]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Bone Nova when you Kill a Bleeding Enemy"}}},stats={[1]="local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill"}},[407]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Level 20 Animate Weapon on Kill"}}},stats={[1]="local_display_cast_animate_weapon_on_kill_%_chance"}},[408]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Cold Aegis when Equipped"}}},stats={[1]="local_display_cast_cold_aegis_on_gain_skill"}},[409]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Elemental Aegis when Equipped"}}},stats={[1]="local_display_cast_elemental_aegis_on_gain_skill"}},[410]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Fire Aegis when Equipped"}}},stats={[1]="local_display_cast_fire_aegis_on_gain_skill"}},[411]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Lightning Aegis when Equipped"}}},stats={[1]="local_display_cast_lightning_aegis_on_gain_skill"}},[412]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Lightning Bolt when you deal a Critical Strike"}}},stats={[1]="local_display_cast_lightning_on_critical_strike"}},[413]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Cast Level 20 Fire Burst on Hit"}}},stats={[1]="local_display_fire_burst_on_hit_%"}},[414]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Trigger Level 16 Molten Burst on Melee Hit"}}},stats={[1]="local_display_molten_burst_on_melee_hit_%"}},[415]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Level 1 Raise Spiders on Kill"}}},stats={[1]="local_display_raise_spider_on_kill_%_chance"}},[416]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to Trigger Level 8 Summon Raging Spirit on Kill"},[2]={limit={[1]={[1]=100,[2]=100}},text="Trigger Level 8 Summon Raging Spirit on Kill"}}},stats={[1]="local_display_summon_raging_spirit_on_kill_%"}},[417]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% Chance to Trigger Level 18 Summon Spectral Wolf on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Level 18 Summon Spectral Wolf on Kill"}}},stats={[1]="local_display_summon_wolf_on_kill_%"}},[418]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Inferno on Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Inferno on Critical Strike"}}},stats={[1]="local_display_trigger_commandment_of_inferno_on_crit_%"}},[419]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Contaminate when you Kill an Enemy"}}},stats={[1]="local_display_trigger_level_x_create_fungal_ground_on_kill"}},[420]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Death Walk when Equipped"}}},stats={[1]="local_display_trigger_death_walk_on_equip_level"}},[421]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="10%% Chance to Trigger Level 18 Summon Spectral Wolf on Kill"}}},stats={[1]="local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance"}},[422]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Level 1 Blood Rage when you Kill an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Level 1 Blood Rage when you Kill an Enemy"}}},stats={[1]="local_display_trigger_level_1_blood_rage_on_kill_chance_%"}},[423]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy"}}},stats={[1]="local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance"}},[424]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"}}},stats={[1]="local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance"}},[425]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill"}}},stats={[1]="local_display_trigger_level_20_shade_form_on_skill_use_%"}},[426]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Level 20 Tornado when you gain Avian's Might or Avian's Flight"}}},stats={[1]="local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%"}},[427]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Trigger Level %1% Feast of Flesh every 5 seconds"}}},stats={[1]="local_display_trigger_level_X_feast_of_flesh_every_5_seconds"}},[428]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Trigger Level %1% Bone Offering, Flesh Offering or Spirit Offering every 5 seconds\nOffering Skills Triggered this way also affect you"}}},stats={[1]="local_display_trigger_level_X_offering_every_5_seconds"}},[429]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Trigger Level %1% Elemental Warding when you Hit an Enemy while Cursed"}}},stats={[1]="local_display_trigger_level_x_curse_nova_on_hit_while_cursed"}},[430]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Icicle Burst when you Kill a Frozen Enemy"}}},stats={[1]="local_display_trigger_level_x_icicle_nova_on_kill_vs_frozen_enemy"}},[431]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Trigger Level %1% Intimidating Cry when you lose Cat's Stealth"}}},stats={[1]="local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth"}},[432]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Rain of Arrows when you Attack with a Bow"}}},stats={[1]="local_display_trigger_level_x_rain_of_arrows_on_bow_attack"}},[433]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triggers Level %1% Reflection when Equipped"}}},stats={[1]="local_display_trigger_level_x_reflection_skill_on_equip"}},[434]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Trigger Level %1% Fog of War when your Trap is triggered"}}},stats={[1]="local_display_trigger_level_x_smoke_cloud_on_trap_triggered"}},[435]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Spirit Burst when you Use a Skill while you have a Spirit Charge"}}},stats={[1]="local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge"}},[436]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Summon Phantasm Skill when you Consume a corpse"}}},stats={[1]="local_display_trigger_level_x_summon_phantasm_on_corpse_consume"}},[437]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Consumes a Void Charge to Trigger Level %1% Void Shot when you fire Arrows"}}},stats={[1]="local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow"}},[438]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to Trigger Socketed Curse Skill when you cast a Curse Skill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Socketed Curse Skill when you cast a Curse Skill"}}},stats={[1]="local_display_trigger_socketed_curses_on_casting_curse_%_chance"}},[439]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Level 20 Glimpse of Eternity when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Level 20 Glimpse of Eternity when Hit"}}},stats={[1]="local_display_trigger_temporal_anomaly_when_hit_%_chance"}},[440]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Level 20 Tentacle Whip on Kill"}}},stats={[1]="local_display_trigger_tentacle_smash_on_kill_%_chance"}},[441]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"}}},stats={[1]="local_display_trigger_void_sphere_on_kill_%_chance"}},[442]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger Level %1% Abyssal Cry on Hit"}}},stats={[1]="local_display_use_level_X_abyssal_cry_on_hit"}},[443]={lang={English={[1]={limit={[1]={[1]=100,[2]="#"}},text="Trigger a Socketed Lightning Spell on Hit\nSocketed Lightning Spells deal 100%% increased Spell Damage if Triggered"},[2]={limit={[1]={[1]=0,[2]=99}},text="%1%%% chance to Trigger a Socketed Lightning Spell on Hit\nSocketed Lightning Spells deal 100%% increased Spell Damage if Triggered"}}},stats={[1]="local_unique_attacks_cast_socketed_lightning_spells_%"}},[444]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Trigger a Socketed Cold Spell on Melee Critical Strike"}}},stats={[1]="local_unique_cast_socketed_cold_skills_on_melee_critical_strike"}},[445]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger this skill when you Kill a Frozen Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger this skill when you Kill a Frozen Enemy"}}},stats={[1]="trigger_on_kill_vs_frozen_enemy_%"}},[446]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger a Socketed Spell when you Attack with this Weapon"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger a Socketed Spell when you Attack with this Weapon"}}},stats={[1]="trigger_socketed_spell_on_attack_%"}},[447]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger a Socketed Spell when you Use a Skill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger a Socketed Spell when you Use a Skill"}}},stats={[1]="trigger_socketed_spell_on_skill_use_%"}},[448]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Socketed Spells when you Focus"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Socketed Spells when you Focus"}}},stats={[1]="trigger_socketed_spells_when_you_focus_%"}},[449]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Uses both hand slots"}}},stats={[1]="local_weapon_uses_both_hands"}},[450]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Life Recovered"}}},stats={[1]="local_flask_life_to_recover"}},[451]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovered"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Recovered"}}},stats={[1]="local_flask_life_to_recover_+%"}},[452]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Mana Recovered"}}},stats={[1]="local_flask_mana_to_recover"}},[453]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Recovered"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Recovered"}}},stats={[1]="local_flask_mana_to_recover_+%"}},[454]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Amount Recovered"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Amount Recovered"}}},stats={[1]="local_flask_amount_to_recover_+%"}},[455]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Recovery rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Recovery rate"}}},stats={[1]="local_flask_recovery_speed_+%"}},[456]={lang={English={[1]={[1]={k="deciseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds of Recovery"}}},stats={[1]="local_flask_deciseconds_to_recover"}},[457]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Recovery when on Low Life"}}},stats={[1]="local_flask_amount_to_recover_+%_when_on_low_life"}},[458]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="Instant Recovery when on Low Life"}}},stats={[1]="local_flask_recover_instantly_when_on_low_life"}},[459]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% of Recovery applied Instantly"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Instant Recovery"}}},stats={[1]="local_flask_recovery_amount_%_to_recover_instantly"}},[460]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Mana Recovery occurs instantly at the end of the Flask effect"}}},stats={[1]="local_flask_mana_recovery_occurs_instantly_at_end_of_flask_effect"}},[461]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Instant Recovery"}}},stats={[1]="local_flask_recovers_instantly"}},[462]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes %1%%% of Mana Recovered from Life when used"}}},stats={[1]="local_flask_removes_%_of_mana_recovery_from_life_on_use"}},[463]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes %1%%% of Life Recovered from Life when used"}}},stats={[1]="local_flask_removes_%_of_life_recovery_from_life_on_use"}},[464]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes %1%%% of Life Recovered from Mana when used"}}},stats={[1]="local_flask_removes_%_of_life_recovery_from_mana_on_use"}},[465]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes Frozen and Chilled on use"}}},stats={[1]="local_flask_dispels_freeze_and_chill"}},[466]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes Burning on use"}}},stats={[1]="local_flask_dispels_burning"}},[467]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="An Enemy Writhing Worms escape the Flask when used\nWrithing Worms are destroyed when Hit"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% Enemy Writhing Worms escape the Flask when used\nWrithing Worms are destroyed when Hit"}}},stats={[1]="local_number_of_bloodworms_to_spawn_on_flask_use"}},[468]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Charges"}}},stats={[1]="local_max_charges_+%"}},[469]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Charges"}}},stats={[1]="local_extra_max_charges"}},[470]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Charge Recovery"}}},stats={[1]="local_charges_added_+%"}},[471]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Charges used"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Charges used"}}},stats={[1]="local_charges_used_+%"}},[472]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Recharges %1% Charge when you Consume an Ignited corpse"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Recharges %1% Charges when you Consume an Ignited corpse"}}},stats={[1]="local_flask_gain_X_charges_on_consuming_ignited_corpse"}},[473]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Recharges %1% Charge when you deal a Critical Strike"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Recharges %1% Charges when you deal a Critical Strike"}}},stats={[1]="local_recharge_on_crit"}},[474]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Flask Charge when you deal a Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Flask Charge when you deal a Critical Strike"}}},stats={[1]="local_recharge_on_crit_%"}},[475]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Gain %1% Charge when you are Hit by an Enemy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Gain %1% Charges when you are Hit by an Enemy"}}},stats={[1]="local_flask_gain_X_charges_when_hit"}},[476]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Recharges %1% Charge when you take a Critical Strike"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Recharges %1% Charges when you take a Critical Strike"}}},stats={[1]="local_recharge_on_take_crit"}},[477]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour during Flask effect"}}},stats={[1]="local_flask_armour_+%_while_healing"}},[478]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating during Flask effect"}}},stats={[1]="local_flask_evasion_+%_while_healing"}},[479]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield during Flask effect"}}},stats={[1]="local_flask_energy_shield_+%_while_healing"}},[480]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed during Flask effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed during Flask effect"}}},stats={[1]="local_flask_attack_speed_+%_while_healing"}},[481]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed during Flask effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed during Flask effect"}}},stats={[1]="local_flask_cast_speed_+%_while_healing"}},[482]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed during Flask effect"}}},stats={[1]="local_flask_movement_speed_+%_while_healing"}},[483]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Block and Stun Recovery during Flask effect"}}},stats={[1]="local_flask_stun_recovery_+%_while_healing"}},[484]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Elemental Resistances during Flask effect"}}},stats={[1]="local_flask_resistances_+%_while_healing"}},[485]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life during Flask effect"}}},stats={[1]="old_do_not_use_local_flask_life_leech_%_while_healing"}},[486]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Energy Shield during Flask effect"}}},stats={[1]="local_flask_energy_shield_leech_from_spell_damage_permyriad_while_healing"}},[487]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life during Flask effect"}}},stats={[1]="local_flask_life_leech_from_attack_damage_permyriad_while_healing"}},[488]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life during Flask effect"}}},stats={[1]="local_flask_life_leech_permyriad_while_healing"}},[489]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana during Flask effect"}}},stats={[1]="old_do_not_use_local_flask_mana_leech_%_while_healing"}},[490]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana during Flask effect"}}},stats={[1]="local_flask_mana_leech_permyriad_while_healing"}},[491]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Adds Knockback to Melee Attacks during Flask effect"}}},stats={[1]="local_flask_adds_knockback_while_healing"}},[492]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Cold Damage during Flask effect"}}},stats={[1]="local_unique_flask_physical_damage_taken_%_as_cold_while_healing"}},[493]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Cold Damage during effect"}}},stats={[1]="local_unique_flask_physical_damage_%_to_add_as_cold_while_healing"}},[494]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Chilled during Flask effect"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Chilled during Flask effect"}}},stats={[1]="local_unique_flask_avoid_chill_%_while_healing"}},[495]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chaos Damage does not bypass Energy Shield during effect"}}},stats={[1]="local_unique_chaos_damage_does_not_bypass_energy_shield_during_flask_effect"}},[496]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Frozen during Flask effect"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Frozen during Flask effect"}}},stats={[1]="local_unique_flask_avoid_freeze_%_while_healing"}},[497]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLastBreath"},limit={[1]={[1]="#",[2]="#"}},text="Grants Last Breath when you Use a Skill during Flask Effect, for %1%%% of Mana Cost"}}},stats={[1]="local_flask_life_gain_on_skill_use_%_mana_cost"}},[498]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Freeze, Shock and Ignite during Flask effect"}}},stats={[1]="local_flask_chance_to_freeze_shock_ignite_%_while_healing"}},[499]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Skills fire an additional Projectile during Flask Effect"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Skills fire %1% additional Projectiles during Flask Effect"}}},stats={[1]="local_flask_number_of_additional_projectiles_during_flask_effect"}},[500]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills during Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills during Flask Effect"}}},stats={[1]="local_flask_skill_mana_cost_+%_during_flask_effect"}},[501]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Freeze, Chill, Curses and Stuns during Flask Effect"}}},stats={[1]="local_unique_flask_kiaras_determination"}},[502]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Ignited by you during Flask Effect take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Ignited by you during Flask Effect take %1%%% reduced Damage"}}},stats={[1]="local_flask_enemies_ignited_during_flask_effect_damage_taken_+%"}},[503]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life when you Kill an Enemy during Flask Effect"}}},stats={[1]="local_flask_recover_%_maximum_life_on_kill_during_flask_effect"}},[504]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Mana when you Kill an Enemy during Flask Effect"}}},stats={[1]="local_flask_recover_%_maximum_mana_on_kill_during_flask_effect"}},[505]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Energy Shield when you Kill an Enemy during Flask Effect"}}},stats={[1]="local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect"}},[506]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants %1%%% of Life Recovery to Minions"}}},stats={[1]="local_flask_minion_heal_%"}},[507]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]="#",[2]="#"}},text="Gain Unholy Might during Flask Effect"}}},stats={[1]="local_flask_unholy_might_during_flask_effect"}},[508]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Prevents Death during Flask effect"}}},stats={[1]="local_flask_prevents_death_while_healing"}},[509]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Immunity to Ignite during Flask effect\nRemoves Burning on use"}}},stats={[1]="local_flask_ignite_immunity_while_healing"}},[510]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Take %1% Chaos Damage per Second during Flask effect"}}},stats={[1]="local_chaos_damage_taken_per_minute_during_flask_effect"}},[511]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Immunity to Freeze and Chill during Flask effect\nRemoves Freeze and Chill on use"}}},stats={[1]="local_flask_chill_and_freeze_immunity_while_healing"}},[512]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Immunity to Shock during Flask effect\nRemoves Shock on use"}}},stats={[1]="local_flask_shock_immunity_while_healing"}},[513]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Immunity to Bleeding during Flask effect\nRemoves Bleeding on use"}}},stats={[1]="local_flask_bleeding_immunity_while_healing"}},[514]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Immune to Curses during Flask effect\nRemoves Curses on use"}}},stats={[1]="local_flask_curse_immunity_while_healing"}},[515]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Experience gain"}}},stats={[1]="map_experience_gain_+%"}},[516]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monster Level: %1%"}}},stats={[1]="map_item_level_override"}},[517]={lang={English={[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"}},[518]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attribute Requirements"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attribute Requirements"}}},stats={[1]="local_attribute_requirements_+%"}},[519]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be used with Chaos Inoculation"}}},stats={[1]="local_cannot_be_used_with_chaos_innoculation"}},[520]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Dexterity Requirement"}}},stats={[1]="local_dexterity_requirement_+"}},[521]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dexterity Requirement"},[2]={[1]={k="negate",v=1},limit={[1]={[1]=-99,[2]=-1}},text="%1%%% reduced Dexterity Requirement"},[3]={limit={[1]={[1]="#",[2]=-100}},text="No Dexterity Requirement"}}},stats={[1]="local_dexterity_requirement_+%"}},[522]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Intelligence Requirement"}}},stats={[1]="local_intelligence_requirement_+"}},[523]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Intelligence Requirement"},[2]={[1]={k="negate",v=1},limit={[1]={[1]=-99,[2]=-1}},text="%1%%% reduced Intelligence Requirement"},[3]={limit={[1]={[1]="#",[2]=-100}},text="No Intelligence Requirement"}}},stats={[1]="local_intelligence_requirement_+%"}},[524]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d reduced Level Requirement"}}},stats={[1]="local_level_requirement_-"}},[525]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]="#"}},text="Has no Attribute Requirements"}}},stats={[1]="local_no_attribute_requirements"}},[526]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Strength and Intelligence Requirement"}}},stats={[1]="local_strength_and_intelligence_requirement_+"}},[527]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Strength Requirement"}}},stats={[1]="local_strength_requirement_+"}},[528]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Strength Requirement"},[2]={[1]={k="negate",v=1},limit={[1]={[1]=-99,[2]=-1}},text="%1%%% reduced Strength Requirement"},[3]={limit={[1]={[1]="#",[2]=-100}},text="No Strength Requirement"}}},stats={[1]="local_strength_requirement_+%"}},[529]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% Chance to Block Attack Damage"}}},stats={[1]="monster_base_block_%"}},[530]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while holding a Shield"}}},stats={[1]="shield_block_%"}},[531]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while holding a Shield"}}},stats={[1]="shield_spell_block_%"}},[532]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while Dual Wielding"}}},stats={[1]="spell_block_while_dual_wielding_%"}},[533]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while on Low Life"}}},stats={[1]="spell_block_%_while_on_low_life"}},[534]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while wielding a Bow"}}},stats={[1]="spell_block_with_bow_%"}},[535]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while wielding a Staff"}}},stats={[1]="spell_block_with_staff_%"}},[536]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while wielding a Staff"}}},stats={[1]="staff_block_%"}},[537]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage per 50 Strength"}}},stats={[1]="block_chance_%_per_50_strength"}},[538]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while wielding a Staff"}}},stats={[1]="additional_staff_block_%"}},[539]={lang={English={[1]={[1]={k="30%_of_value",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance to Block Spell Damage"}}},stats={[1]="old_do_not_use_spell_block_%_from_assumed_block_value"}},[540]={lang={English={[1]={[1]={k="30%_of_value",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% Chance to Block Spell Damage while on Low Life"}}},stats={[1]="old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value"}},[541]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chance to Block Spell Damage is equal to Chance to Block Attack Damage\nMaximum Chance to Block Spell Damage is equal to Maximum Chance to Block Attack Damage"}}},stats={[1]="spell_block_equals_attack_block"}},[542]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage"}}},stats={[1]="additional_spell_block_%"}},[543]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]=1,[2]="#"}},text="Chance to Block Spell Damage is Lucky"},[2]={[1]={k="reminderstring",v="ReminderTextUnlucky"},limit={[1]={[1]="#",[2]=-1}},text="Chance to Block Spell Damage is Unlucky"}}},stats={[1]="base_spell_block_luck"}},[544]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% Chance to Block Spell Damage"}}},stats={[1]="base_spell_block_%"}},[545]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while Dual Wielding"}}},stats={[1]="block_while_dual_wielding_%"}},[546]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while Dual Wielding Claws"}}},stats={[1]="block_while_dual_wielding_claws_%"}},[547]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while Dual Wielding or holding a Shield"}}},stats={[1]="dual_wield_or_shield_block_%"}},[548]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chance to Block Attack and Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chance to Block Attack and Spell Damage"}}},stats={[1]="block_chance_+%"}},[549]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Block Recovery"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Block Recovery"}}},stats={[1]="block_recovery_+%"}},[550]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Melee Strike Skills deal Splash Damage to surrounding targets"}}},stats={[1]="melee_splash"}},[551]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Offering Skills also affect you"}}},stats={[1]="offerings_also_buff_you"}},[552]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Offerings have %1%%% increased Effect on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Offerings have %1%%% reduced Effect on you"}}},stats={[1]="self_offering_effect_+%"}},[553]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage to surrounding targets"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage to surrounding targets"}}},stats={[1]="slayer_ascendancy_melee_splash_damage_+%_final_for_splash"}},[554]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to all Attributes"}}},stats={[1]="additional_all_attributes"}},[555]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Strength"}}},stats={[1]="additional_strength"}},[556]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Dexterity"}}},stats={[1]="additional_dexterity"}},[557]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Intelligence"}}},stats={[1]="additional_intelligence"}},[558]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Strength and Dexterity"}}},stats={[1]="additional_strength_and_dexterity"}},[559]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Strength and Intelligence"}}},stats={[1]="additional_strength_and_intelligence"}},[560]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Dexterity and Intelligence"}}},stats={[1]="additional_dexterity_and_intelligence"}},[561]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attributes"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attributes"}}},stats={[1]="all_attributes_+%"}},[562]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Strength"}}},stats={[1]="strength_+%"}},[563]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dexterity"}}},stats={[1]="dexterity_+%"}},[564]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Intelligence"}}},stats={[1]="intelligence_+%"}},[565]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage"}}},stats={[1]="damage_+%"}},[566]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Damage"}}},stats={[1]="on_weapon_global_damage_+%"}},[567]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Damage"}}},stats={[1]="totem_damage_+%"}},[568]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Damage"}}},stats={[1]="trap_damage_+%"}},[569]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap and Mine Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap and Mine Damage"}}},stats={[1]="trap_or_mine_damage_+%"}},[570]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Damage"}}},stats={[1]="mine_damage_+%"}},[571]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Mine Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Mine Damage"}}},stats={[1]="unique_mine_damage_+%_final"}},[572]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage"}}},stats={[1]="attack_damage_+%"}},[573]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Maximum Physical Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Maximum Physical Attack Damage"}}},stats={[1]="unique_ryuslathas_clutches_maximum_physical_attack_damage_+%_final"}},[574]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Minimum Physical Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Minimum Physical Attack Damage"}}},stats={[1]="unique_ryuslathas_clutches_minimum_physical_attack_damage_+%_final"}},[575]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Cold Damage"}}},stats={[1]="cold_attack_damage_+%"}},[576]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Fire Damage"}}},stats={[1]="fire_attack_damage_+%"}},[577]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Physical Damage"}}},stats={[1]="physical_attack_damage_+%"}},[578]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Attack Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Attack Damage while holding a Shield"}}},stats={[1]="cold_attack_damage_+%_while_holding_a_shield"}},[579]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Attack Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Attack Damage while holding a Shield"}}},stats={[1]="fire_attack_damage_+%_while_holding_a_shield"}},[580]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage while holding a Shield"}}},stats={[1]="attack_damage_+%_while_holding_a_shield"}},[581]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attack Skills deal %1%%% increased Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Attack Skills deal %1%%% reduced Damage while holding a Shield"}}},stats={[1]="attack_skills_damage_+%_while_holding_shield"}},[582]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Attack Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Attack Damage while holding a Shield"}}},stats={[1]="physical_attack_damage_+%_while_holding_a_shield"}},[583]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Attack Skills deal %1%%% increased Damage with Ailments while holding a Shield"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Attack Skills deal %1%%% reduced Damage with Ailments while holding a Shield"}}},stats={[1]="attack_ailment_damage_+%_while_holding_shield"}},[584]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage over Time"}}},stats={[1]="damage_over_time_+%"}},[585]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage over Time"}}},stats={[1]="physical_damage_over_time_+%"}},[586]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage over Time"}}},stats={[1]="fire_damage_over_time_+%"}},[587]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage over Time"}}},stats={[1]="cold_damage_over_time_+%"}},[588]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage when on Low Life"}}},stats={[1]="damage_+%_when_on_low_life"}},[589]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Curse on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Curse on you"}}},stats={[1]="damage_+%_per_active_curse_on_self"}},[590]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Leeching Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Leeching Life"}}},stats={[1]="damage_+%_while_life_leeching"}},[591]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage while Leeching Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage while Leeching Life"}}},stats={[1]="physical_damage_+%_while_life_leeching"}},[592]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Leeching Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Leeching Mana"}}},stats={[1]="damage_+%_while_mana_leeching"}},[593]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Leeching Energy Shield"}}},stats={[1]="damage_+%_while_es_leeching"}},[594]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed when on Low Life"}}},stats={[1]="attack_speed_+%_when_on_low_life"}},[595]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed when on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed when on Full Life"}}},stats={[1]="attack_speed_+%_when_on_full_life"}},[596]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage"}}},stats={[1]="spell_damage_+%"}},[597]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Fire Damage"}}},stats={[1]="spell_fire_damage_+%"}},[598]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Cold Damage"}}},stats={[1]="spell_cold_damage_+%"}},[599]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while wielding a Staff"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while wielding a Staff"}}},stats={[1]="spell_staff_damage_+%"}},[600]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while wielding a Bow"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while wielding a Bow"}}},stats={[1]="spell_bow_damage_+%"}},[601]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while holding a Shield"}}},stats={[1]="spell_damage_+%_while_holding_shield"}},[602]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while Dual Wielding"}}},stats={[1]="spell_damage_+%_while_dual_wielding"}},[603]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Physical Damage"}}},stats={[1]="physical_damage_+%"}},[604]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="No Physical Damage"},[2]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]=-1}},text="No Physical Damage"},[3]={limit={[1]={[1]="#",[2]=-100},[2]={[1]="#",[2]="#"}},text="No Physical Damage"},[4]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=0,[2]=0}},text="%1%%% increased Physical Damage"},[5]={[1]={k="negate",v=1},limit={[1]={[1]=-99,[2]=-1},[2]={[1]=0,[2]=0}},text="%1%%% reduced Physical Damage"}}},stats={[1]="local_physical_damage_+%",[2]="local_weapon_no_physical_damage"}},[605]={lang={English={[1]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextPhysReductionNotNegative"},limit={[1]={[1]="#",[2]="#"}},text="Enemies have %1$+d%% to Total Physical Damage Reduction against this Weapon's Hits"}}},stats={[1]="local_weapon_enemy_phys_reduction_%_penalty"}},[606]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage"}}},stats={[1]="melee_damage_+%"}},[607]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage against Frozen Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage against Frozen Enemies"}}},stats={[1]="melee_damage_+%_vs_frozen_enemies"}},[608]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Frozen Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Frozen Enemies"}}},stats={[1]="damage_+%_vs_frozen_enemies"}},[609]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage against Shocked Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage against Shocked Enemies"}}},stats={[1]="melee_damage_+%_vs_shocked_enemies"}},[610]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Shocked Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Shocked Enemies"}}},stats={[1]="damage_vs_shocked_enemies_+%"}},[611]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage against Ignited Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage against Ignited Enemies"}}},stats={[1]="melee_damage_+%_vs_burning_enemies"}},[612]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments per Freeze, Shock or Ignite on Enemy"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments per Freeze, Shock or Ignite on Enemy"}}},stats={[1]="damage_+%_vs_enemies_per_freeze_shock_ignite"}},[613]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Frozen, Shocked or Ignited Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Frozen, Shocked or Ignited Enemies"}}},stats={[1]="damage_+%_vs_frozen_shocked_ignited_enemies"}},[614]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier"}}},stats={[1]="dot_multiplier_+"}},[615]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Ailments"}}},stats={[1]="ailment_dot_multiplier_+"}},[616]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Ailments from Critical Strikes"}}},stats={[1]="critical_ailment_dot_multiplier_+"}},[617]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Physical Damage over Time Multiplier"}}},stats={[1]="physical_dot_multiplier_+"}},[618]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Bleeding"}}},stats={[1]="bleeding_dot_multiplier_+"}},[619]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Bleeding from Critical Strikes"}}},stats={[1]="critical_bleeding_dot_multiplier_+"}},[620]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Fire Damage over Time Multiplier"}}},stats={[1]="fire_dot_multiplier_+"}},[621]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Ignite from Critical Strikes"}}},stats={[1]="critical_ignite_dot_multiplier_+"}},[622]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Ignite"}}},stats={[1]="ignite_dot_multiplier_+"}},[623]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold Damage over Time Multiplier while affected by Malevolence"}}},stats={[1]="cold_damage_over_time_multiplier_+_while_affected_by_malevolence"}},[624]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold Damage over Time Multiplier"}}},stats={[1]="cold_dot_multiplier_+"}},[625]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Lightning Damage over Time Multiplier"}}},stats={[1]="lightning_dot_multiplier_+"}},[626]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Damage over Time Multiplier while affected by Malevolence"}}},stats={[1]="chaos_damage_over_time_multiplier_+_while_affected_by_malevolence"}},[627]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Damage over Time Multiplier"}}},stats={[1]="chaos_dot_multiplier_+"}},[628]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Non-Ailment Chaos Damage over Time Multiplier"}}},stats={[1]="chaos_non_ailment_damage_over_time_multiplier_+"}},[629]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Poison from Critical Strikes"}}},stats={[1]="critical_poison_dot_multiplier_+"}},[630]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Poison"}}},stats={[1]="poison_dot_multiplier_+"}},[631]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage"}}},stats={[1]="global_minimum_added_physical_damage",[2]="global_maximum_added_physical_damage"}},[632]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks"}}},stats={[1]="attack_minimum_added_physical_damage",[2]="attack_maximum_added_physical_damage"}},[633]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks with Weapons"}}},stats={[1]="attack_minimum_added_physical_damage_with_weapons",[2]="attack_maximum_added_physical_damage_with_weapons"}},[634]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks with this Weapon per 3 Player Levels"}}},stats={[1]="local_attack_minimum_added_physical_damage_per_3_levels",[2]="local_attack_maximum_added_physical_damage_per_3_levels"}},[635]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks against Frozen Enemies"}}},stats={[1]="minimum_added_physical_damage_vs_frozen_enemies",[2]="maximum_added_physical_damage_vs_frozen_enemies"}},[636]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Attacks against Ignited Enemies"}}},stats={[1]="minimum_added_fire_damage_vs_ignited_enemies",[2]="maximum_added_fire_damage_vs_ignited_enemies"}},[637]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Attack Damage per Buff on you"}}},stats={[1]="minimum_added_fire_attack_damage_per_active_buff",[2]="maximum_added_fire_attack_damage_per_active_buff"}},[638]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Spell Damage per Buff on you"}}},stats={[1]="minimum_added_fire_spell_damage_per_active_buff",[2]="maximum_added_fire_spell_damage_per_active_buff"}},[639]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage per Buff on you"}}},stats={[1]="minimum_added_fire_damage_per_active_buff",[2]="maximum_added_fire_damage_per_active_buff"}},[640]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage"}}},stats={[1]="local_minimum_added_physical_damage",[2]="local_maximum_added_physical_damage"}},[641]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attack Skills deal %1%%% increased Damage while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Attack Skills deal %1%%% reduced Damage while Dual Wielding"}}},stats={[1]="attack_skills_damage_+%_while_dual_wielding"}},[642]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage while Dual Wielding"}}},stats={[1]="damage_while_dual_wielding_+%"}},[643]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Attack Damage while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Attack Damage while Dual Wielding"}}},stats={[1]="physical_damage_while_dual_wielding_+%"}},[644]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Attack Damage while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Attack Damage while Dual Wielding"}}},stats={[1]="fire_damage_while_dual_wielding_+%"}},[645]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Cold Damage while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Cold Damage while Dual Wielding"}}},stats={[1]="cold_damage_while_dual_wielding_+%"}},[646]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage with Main Hand"}}},stats={[1]="base_main_hand_damage_+%"}},[647]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Attacks with Melee Weapons deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Attacks with Melee Weapons deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="melee_weapon_hit_and_ailment_damage_+%"}},[648]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with One Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with One Handed Melee Weapons"}}},stats={[1]="one_handed_melee_physical_damage_+%"}},[649]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Attacks with One Handed Melee Weapons deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Attacks with One Handed Melee Weapons deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="one_handed_melee_weapon_hit_and_ailment_damage_+%"}},[650]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Attacks with One Handed Weapons deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Attacks with One Handed Weapons deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="one_handed_weapon_hit_and_ailment_damage_+%"}},[651]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Attacks with Melee Weapons deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Attacks with Melee Weapons deal %1%%% reduced Damage with Ailments"}}},stats={[1]="melee_weapon_ailment_damage_+%"}},[652]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Attacks with One Handed Melee Weapons deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Attacks with One Handed Melee Weapons deal %1%%% reduced Damage with Ailments"}}},stats={[1]="one_handed_melee_weapon_ailment_damage_+%"}},[653]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Attacks with One Handed Weapons deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Attacks with One Handed Weapons deal %1%%% reduced Damage with Ailments"}}},stats={[1]="one_handed_weapon_ailment_damage_+%"}},[654]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with One Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with One Handed Melee Weapons"}}},stats={[1]="one_handed_melee_fire_damage_+%"}},[655]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with One Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with One Handed Melee Weapons"}}},stats={[1]="one_handed_melee_cold_damage_+%"}},[656]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Two Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Two Handed Melee Weapons"}}},stats={[1]="two_handed_melee_physical_damage_+%"}},[657]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Attacks with Two Handed Melee Weapons deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Attacks with Two Handed Melee Weapons deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="two_handed_melee_weapon_hit_and_ailment_damage_+%"}},[658]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Attacks with Two Handed Weapons deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Attacks with Two Handed Weapons deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="two_handed_weapon_hit_and_ailment_damage_+%"}},[659]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Attacks with Two Handed Melee Weapons deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Attacks with Two Handed Melee Weapons deal %1%%% reduced Damage with Ailments"}}},stats={[1]="two_handed_melee_weapon_ailment_damage_+%"}},[660]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Attacks with Two Handed Weapons deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Attacks with Two Handed Weapons deal %1%%% reduced Damage with Ailments"}}},stats={[1]="two_handed_weapon_ailment_damage_+%"}},[661]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Two Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Two Handed Melee Weapons"}}},stats={[1]="two_handed_melee_fire_damage_+%"}},[662]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Two Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Two Handed Melee Weapons"}}},stats={[1]="two_handed_melee_cold_damage_+%"}},[663]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage with Unarmed Attacks"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage with Unarmed Attacks"}}},stats={[1]="unarmed_melee_physical_damage_+%"}},[664]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Axes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Axes"}}},stats={[1]="axe_damage_+%"}},[665]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Axe Attacks deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Axe Attacks deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="axe_hit_and_ailment_damage_+%"}},[666]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Axes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Axes"}}},stats={[1]="physical_axe_damage_+%"}},[667]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Axe Attacks deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Axe Attacks deal %1%%% reduced Damage with Ailments"}}},stats={[1]="axe_ailment_damage_+%"}},[668]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Axes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Axes"}}},stats={[1]="fire_axe_damage_+%"}},[669]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Axes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Axes"}}},stats={[1]="cold_axe_damage_+%"}},[670]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Staves"}}},stats={[1]="physical_staff_damage_+%"}},[671]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Staves"}}},stats={[1]="staff_damage_+%"}},[672]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Staff Attacks deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Staff Attacks deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="staff_hit_and_ailment_damage_+%"}},[673]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Staff Attacks deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Staff Attacks deal %1%%% reduced Damage with Ailments"}}},stats={[1]="staff_ailment_damage_+%"}},[674]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Staves"}}},stats={[1]="fire_staff_damage_+%"}},[675]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Staves"}}},stats={[1]="cold_staff_damage_+%"}},[676]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Claws"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Claws"}}},stats={[1]="claw_damage_+%"}},[677]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Claw Attacks deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Claw Attacks deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="claw_hit_and_ailment_damage_+%"}},[678]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Claws"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Claws"}}},stats={[1]="physical_claw_damage_+%"}},[679]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Claw Attacks deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Claw Attacks deal %1%%% reduced Damage with Ailments"}}},stats={[1]="claw_ailment_damage_+%"}},[680]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Claws"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Claws"}}},stats={[1]="fire_claw_damage_+%"}},[681]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Claws"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Claws"}}},stats={[1]="cold_claw_damage_+%"}},[682]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Daggers"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Daggers"}}},stats={[1]="dagger_damage_+%"}},[683]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Dagger Attacks deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Dagger Attacks deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="dagger_hit_and_ailment_damage_+%"}},[684]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Daggers"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Daggers"}}},stats={[1]="physical_dagger_damage_+%"}},[685]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Dagger Attacks deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Dagger Attacks deal %1%%% reduced Damage with Ailments"}}},stats={[1]="dagger_ailment_damage_+%"}},[686]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Daggers"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Daggers"}}},stats={[1]="fire_dagger_damage_+%"}},[687]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Daggers"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Daggers"}}},stats={[1]="cold_dagger_damage_+%"}},[688]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Maces or Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Maces or Sceptres"}}},stats={[1]="mace_damage_+%"}},[689]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Mace or Sceptre Attacks deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Mace or Sceptre Attacks deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="mace_hit_and_ailment_damage_+%"}},[690]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Maces or Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Maces or Sceptres"}}},stats={[1]="physical_mace_damage_+%"}},[691]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Mace or Sceptre Attacks deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Mace or Sceptre Attacks deal %1%%% reduced Damage with Ailments"}}},stats={[1]="mace_ailment_damage_+%"}},[692]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Maces or Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Maces or Sceptres"}}},stats={[1]="fire_mace_damage_+%"}},[693]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Maces or Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Maces or Sceptres"}}},stats={[1]="cold_mace_damage_+%"}},[694]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Bows"}}},stats={[1]="bow_damage_+%"}},[695]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Bow Attacks deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Bow Attacks deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="bow_hit_and_ailment_damage_+%"}},[696]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Bows"}}},stats={[1]="physical_bow_damage_+%"}},[697]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Bow Attacks deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Bow Attacks deal %1%%% reduced Damage with Ailments"}}},stats={[1]="bow_ailment_damage_+%"}},[698]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Bows"}}},stats={[1]="fire_bow_damage_+%"}},[699]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Bows"}}},stats={[1]="cold_bow_damage_+%"}},[700]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Bows"}}},stats={[1]="bow_elemental_damage_+%"}},[701]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Swords"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Swords"}}},stats={[1]="physical_sword_damage_+%"}},[702]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Swords"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Swords"}}},stats={[1]="sword_damage_+%"}},[703]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Sword Attacks deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Sword Attacks deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="sword_hit_and_ailment_damage_+%"}},[704]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Sword Attacks deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Sword Attacks deal %1%%% reduced Damage with Ailments"}}},stats={[1]="sword_ailment_damage_+%"}},[705]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Swords"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Swords"}}},stats={[1]="fire_sword_damage_+%"}},[706]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Swords"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Swords"}}},stats={[1]="cold_sword_damage_+%"}},[707]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while wielding a Wand"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while wielding a Wand"}}},stats={[1]="damage_+%_while_wielding_wand"}},[708]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Wands"}}},stats={[1]="physical_wand_damage_+%"}},[709]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Wand Attacks deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Wand Attacks deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="wand_hit_and_ailment_damage_+%"}},[710]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Wand Attacks deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Wand Attacks deal %1%%% reduced Damage with Ailments"}}},stats={[1]="wand_ailment_damage_+%"}},[711]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Wands"}}},stats={[1]="fire_wand_damage_+%"}},[712]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Wands"}}},stats={[1]="cold_wand_damage_+%"}},[713]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Axe or Sword Attacks deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Axe or Sword Attacks deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="axe_or_sword_hit_and_ailment_damage_+%"}},[714]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Axe or Sword Attacks deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Axe or Sword Attacks deal %1%%% reduced Damage with Ailments"}}},stats={[1]="axe_or_sword_ailment_damage_+%"}},[715]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Claw or Dagger Attacks deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Claw or Dagger Attacks deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="claw_or_dagger_hit_and_ailment_damage_+%"}},[716]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Claw or Dagger Attacks deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Claw or Dagger Attacks deal %1%%% reduced Damage with Ailments"}}},stats={[1]="claw_or_dagger_ailment_damage_+%"}},[717]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Mace, Sceptre or Staff Attacks deal %1%%% increased Damage with Hits and Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Mace, Sceptre or Staff Attacks deal %1%%% reduced Damage with Hits and Ailments"}}},stats={[1]="mace_or_staff_hit_and_ailment_damage_+%"}},[718]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Mace, Sceptre or Staff Attacks deal %1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Mace, Sceptre or Staff Attacks deal %1%%% reduced Damage with Ailments"}}},stats={[1]="mace_or_staff_ailment_damage_+%"}},[719]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Weapons"}}},stats={[1]="weapon_elemental_damage_+%"}},[720]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage"}}},stats={[1]="fire_damage_+%"}},[721]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage"}}},stats={[1]="global_minimum_added_fire_damage",[2]="global_maximum_added_fire_damage"}},[722]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Attacks"}}},stats={[1]="attack_minimum_added_fire_damage",[2]="attack_maximum_added_fire_damage"}},[723]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage"}}},stats={[1]="local_minimum_added_fire_damage",[2]="local_maximum_added_fire_damage"}},[724]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage in Main Hand"}}},stats={[1]="unique_local_minimum_added_fire_damage_when_in_main_hand",[2]="unique_local_maximum_added_fire_damage_when_in_main_hand"}},[725]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Fire Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Fire Skills"}}},stats={[1]="damage_with_fire_skills_+%"}},[726]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed with Fire Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed with Fire Skills"}}},stats={[1]="cast_speed_for_fire_skills_+%"}},[727]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage"}}},stats={[1]="cold_damage_+%"}},[728]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage"}}},stats={[1]="global_minimum_added_cold_damage",[2]="global_maximum_added_cold_damage"}},[729]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Attacks"}}},stats={[1]="attack_minimum_added_cold_damage",[2]="attack_maximum_added_cold_damage"}},[730]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage"}}},stats={[1]="local_minimum_added_cold_damage",[2]="local_maximum_added_cold_damage"}},[731]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage in Off Hand"}}},stats={[1]="unique_local_minimum_added_cold_damage_when_in_off_hand",[2]="unique_local_maximum_added_cold_damage_when_in_off_hand"}},[732]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Spells and Attacks"}}},stats={[1]="spell_and_attack_minimum_added_fire_damage",[2]="spell_and_attack_maximum_added_fire_damage"}},[733]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells and Attacks"}}},stats={[1]="spell_and_attack_minimum_added_cold_damage",[2]="spell_and_attack_maximum_added_cold_damage"}},[734]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Cold Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Cold Skills"}}},stats={[1]="damage_with_cold_skills_+%"}},[735]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed with Cold Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed with Cold Skills"}}},stats={[1]="cast_speed_for_cold_skills_+%"}},[736]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage"}}},stats={[1]="lightning_damage_+%"}},[737]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage"}}},stats={[1]="global_minimum_added_lightning_damage",[2]="global_maximum_added_lightning_damage"}},[738]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage",[2]="attack_maximum_added_lightning_damage"}},[739]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage"}}},stats={[1]="local_minimum_added_lightning_damage",[2]="local_maximum_added_lightning_damage"}},[740]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Lightning Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Lightning Skills"}}},stats={[1]="damage_with_lightning_skills_+%"}},[741]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed with Lightning Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed with Lightning Skills"}}},stats={[1]="cast_speed_for_lightning_skills_+%"}},[742]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage"}}},stats={[1]="chaos_damage_+%"}},[743]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage"}}},stats={[1]="global_minimum_added_chaos_damage",[2]="global_maximum_added_chaos_damage"}},[744]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage to Attacks"}}},stats={[1]="attack_minimum_added_chaos_damage",[2]="attack_maximum_added_chaos_damage"}},[745]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage"}}},stats={[1]="local_minimum_added_chaos_damage",[2]="local_maximum_added_chaos_damage"}},[746]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage in Off Hand"}}},stats={[1]="unique_local_minimum_added_chaos_damage_when_in_off_hand",[2]="unique_local_maximum_added_chaos_damage_when_in_off_hand"}},[747]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed with Chaos Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed with Chaos Skills"}}},stats={[1]="cast_speed_for_chaos_skills_+%"}},[748]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Physical Damage"}}},stats={[1]="spell_minimum_base_physical_damage",[2]="spell_maximum_base_physical_damage"}},[749]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0}},text="Deals %1% to %2% Fire Damage"},[2]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=1,[2]="#"}},text="This Spell deals %1% to %2%, plus %3%%% of your maximum Life, as base Fire Damage"}}},stats={[1]="spell_minimum_base_fire_damage",[2]="spell_maximum_base_fire_damage",[3]="spell_base_fire_damage_%_maximum_life"}},[750]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Cold Damage"}}},stats={[1]="spell_minimum_base_cold_damage",[2]="spell_maximum_base_cold_damage"}},[751]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Lightning Damage"}}},stats={[1]="spell_minimum_base_lightning_damage",[2]="spell_maximum_base_lightning_damage"}},[752]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Chaos Damage"}}},stats={[1]="spell_minimum_base_chaos_damage",[2]="spell_maximum_base_chaos_damage"}},[753]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Physical Damage"}}},stats={[1]="secondary_minimum_base_physical_damage",[2]="secondary_maximum_base_physical_damage"}},[754]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Fire Damage"}}},stats={[1]="secondary_minimum_base_fire_damage",[2]="secondary_maximum_base_fire_damage"}},[755]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Cold Damage"}}},stats={[1]="secondary_minimum_base_cold_damage",[2]="secondary_maximum_base_cold_damage"}},[756]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Lightning Damage"}}},stats={[1]="secondary_minimum_base_lightning_damage",[2]="secondary_maximum_base_lightning_damage"}},[757]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Chaos Damage"}}},stats={[1]="secondary_minimum_base_chaos_damage",[2]="secondary_maximum_base_chaos_damage"}},[758]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Spells"}}},stats={[1]="spell_minimum_added_physical_damage",[2]="spell_maximum_added_physical_damage"}},[759]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Spells"}}},stats={[1]="spell_minimum_added_fire_damage",[2]="spell_maximum_added_fire_damage"}},[760]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells"}}},stats={[1]="spell_minimum_added_cold_damage",[2]="spell_maximum_added_cold_damage"}},[761]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells"}}},stats={[1]="spell_minimum_added_lightning_damage",[2]="spell_maximum_added_lightning_damage"}},[762]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage to Spells"}}},stats={[1]="spell_minimum_added_chaos_damage",[2]="spell_maximum_added_chaos_damage"}},[763]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deals %1% to %2% Cold Damage per 10 Intelligence"}}},stats={[1]="spell_minimum_base_cold_damage_+_per_10_intelligence",[2]="spell_maximum_base_cold_damage_+_per_10_intelligence"}},[764]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells and Attacks"}}},stats={[1]="spell_and_attack_minimum_added_lightning_damage",[2]="spell_and_attack_maximum_added_lightning_damage"}},[765]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed"}}},stats={[1]="attack_speed_+%"}},[766]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed"}}},stats={[1]="active_skill_attack_speed_+%_final"}},[767]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed"}}},stats={[1]="flicker_strike_more_attack_speed_+%_final"}},[768]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed"}}},stats={[1]="local_attack_speed_+%"}},[769]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Attack Speed"}}},stats={[1]="melee_attack_speed_+%"}},[770]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while Dual Wielding"}}},stats={[1]="attack_speed_while_dual_wielding_+%"}},[771]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Off Hand"}}},stats={[1]="base_off_hand_attack_speed_+%"}},[772]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while holding a Shield"}}},stats={[1]="attack_speed_+%_while_holding_shield"}},[773]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Two Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Two Handed Melee Weapons"}}},stats={[1]="two_handed_melee_attack_speed_+%"}},[774]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with One Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with One Handed Melee Weapons"}}},stats={[1]="one_handed_melee_attack_speed_+%"}},[775]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Axes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Axes"}}},stats={[1]="axe_attack_speed_+%"}},[776]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Staves"}}},stats={[1]="staff_attack_speed_+%"}},[777]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Claws"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Claws"}}},stats={[1]="claw_attack_speed_+%"}},[778]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Daggers"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Daggers"}}},stats={[1]="dagger_attack_speed_+%"}},[779]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Maces or Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Maces or Sceptres"}}},stats={[1]="mace_attack_speed_+%"}},[780]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Bows"}}},stats={[1]="bow_attack_speed_+%"}},[781]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Swords"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Swords"}}},stats={[1]="sword_attack_speed_+%"}},[782]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Wands"}}},stats={[1]="wand_attack_speed_+%"}},[783]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while holding a Shield"}}},stats={[1]="shield_attack_speed_+%"}},[784]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmed"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Unarmed Attacks"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUnarmed"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Unarmed Attacks"}}},stats={[1]="unarmed_melee_attack_speed_+%"}},[785]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed Enemies grant %1%%% increased Attack Speed on Melee hit"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed Enemies grant %1%%% reduced Attack Speed on Melee hit"}}},stats={[1]="newpunishment_attack_speed_+%"}},[786]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Movement Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Movement Skills"}}},stats={[1]="damage_+%_with_movement_skills"}},[787]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with Movement Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with Movement Skills"}}},stats={[1]="attack_speed_+%_with_movement_skills"}},[788]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating"}}},stats={[1]="accuracy_rating"}},[789]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Accuracy Rating"}}},stats={[1]="accuracy_rating_+%"}},[790]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating while Dual Wielding"}}},stats={[1]="accuracy_rating_while_dual_wielding_+%"}},[791]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with One Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with One Handed Melee Weapons"}}},stats={[1]="one_handed_melee_accuracy_rating_+%"}},[792]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Two Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Two Handed Melee Weapons"}}},stats={[1]="two_handed_melee_accuracy_rating_+%"}},[793]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Axes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Axes"}}},stats={[1]="axe_accuracy_rating_+%"}},[794]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Staves"}}},stats={[1]="staff_accuracy_rating_+%"}},[795]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Claws"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Claws"}}},stats={[1]="claw_accuracy_rating_+%"}},[796]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Daggers"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Daggers"}}},stats={[1]="dagger_accuracy_rating_+%"}},[797]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Maces or Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Maces or Sceptres"}}},stats={[1]="mace_accuracy_rating_+%"}},[798]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Bows"}}},stats={[1]="bow_accuracy_rating_+%"}},[799]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Swords"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Swords"}}},stats={[1]="sword_accuracy_rating_+%"}},[800]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating with Wands"}}},stats={[1]="wand_accuracy_rating_+%"}},[801]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed"}}},stats={[1]="base_cast_speed_+%"}},[802]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed while Dual Wielding"}}},stats={[1]="cast_speed_while_dual_wielding_+%"}},[803]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed while holding a Shield"}}},stats={[1]="cast_speed_+%_while_holding_shield"}},[804]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed while wielding a Staff"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed while wielding a Staff"}}},stats={[1]="cast_speed_+%_while_holding_staff"}},[805]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed while wielding a Bow"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed while wielding a Bow"}}},stats={[1]="cast_speed_+%_while_holding_bow"}},[806]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed per Power Charge"}}},stats={[1]="cast_speed_+%_per_power_charge"}},[807]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="Critical Strikes with Daggers Poison the Enemy"}}},stats={[1]="poison_on_critical_strike_with_dagger"}},[808]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Critical Strikes with Bows have a %1%%% chance to Poison the Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Critical Strikes with Bows Poison the Enemy"}}},stats={[1]="chance_to_poison_on_critical_strike_with_bow_%"}},[809]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]=99}},text="Critical Strikes with Daggers have a %1%%% chance to Poison the Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=100,[2]="#"}},text="Critical Strikes with Daggers Poison the Enemy"}}},stats={[1]="chance_to_poison_on_critical_strike_with_dagger_%"}},[810]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]="#"}},text="Critical Strikes with Bows Poison the Enemy"}}},stats={[1]="poison_on_critical_strike_with_bow"}},[811]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% Critical Strike Chance"}}},stats={[1]="base_spell_critical_strike_chance"}},[812]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Base Off Hand Critical Strike Chance is %1%%%"}}},stats={[1]="override_off_hand_base_critical_strike_chance"}},[813]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Base Off Hand Critical Strike Chance is 5%%"}}},stats={[1]="override_off_hand_base_critical_strike_chance_to_5%"}},[814]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance"}}},stats={[1]="additional_base_critical_strike_chance"}},[815]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Spells"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Spells"}}},stats={[1]="spell_critical_strike_chance_+%"}},[816]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Critical Strike Chance"}}},stats={[1]="critical_strike_chance_+%"}},[817]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="30%% increased Global Critical Strike Chance"}}},stats={[1]="old_dagger_implicit_critical_strike_chance_+30%"}},[818]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="40%% increased Global Critical Strike Chance"}}},stats={[1]="old_dagger_implicit_critical_strike_chance_+40%"}},[819]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="50%% increased Global Critical Strike Chance"}}},stats={[1]="old_dagger_implicit_critical_strike_chance_+50%"}},[820]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance"}}},stats={[1]="local_critical_strike_chance_+%"}},[821]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Bows"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Bows"}}},stats={[1]="bow_critical_strike_chance_+%"}},[822]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Claws"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Claws"}}},stats={[1]="claw_critical_strike_chance_+%"}},[823]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Daggers"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Daggers"}}},stats={[1]="dagger_critical_strike_chance_+%"}},[824]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Swords"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Swords"}}},stats={[1]="sword_critical_strike_chance_+%"}},[825]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Maces or Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Maces or Sceptres"}}},stats={[1]="mace_critical_strike_chance_+%"}},[826]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Staves"}}},stats={[1]="staff_critical_strike_chance_+%"}},[827]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Wands"}}},stats={[1]="wand_critical_strike_chance_+%"}},[828]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Axes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Axes"}}},stats={[1]="axe_critical_strike_chance_+%"}},[829]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance while holding a Shield"}}},stats={[1]="critical_strike_chance_while_wielding_shield_+%"}},[830]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Traps"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Traps"}}},stats={[1]="trap_critical_strike_chance_+%"}},[831]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Mines"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Mines"}}},stats={[1]="mine_critical_strike_chance_+%"}},[832]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Two Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Two Handed Melee Weapons"}}},stats={[1]="two_handed_melee_critical_strike_chance_+%"}},[833]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Two Handed Melee Weapons"}}},stats={[1]="two_handed_melee_critical_strike_multiplier_+"}},[834]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with One Handed Melee Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with One Handed Melee Weapons"}}},stats={[1]="one_handed_melee_critical_strike_chance_+%"}},[835]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Critical Strike Chance"}}},stats={[1]="melee_critical_strike_chance_+%"}},[836]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Critical Strike Chance while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Critical Strike Chance while Dual Wielding"}}},stats={[1]="critical_strike_chance_while_dual_wielding_+%"}},[837]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Fire Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Fire Skills"}}},stats={[1]="fire_critical_strike_chance_+%"}},[838]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Lightning Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Lightning Skills"}}},stats={[1]="lightning_critical_strike_chance_+%"}},[839]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Cold Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Cold Skills"}}},stats={[1]="cold_critical_strike_chance_+%"}},[840]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Elemental Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Elemental Skills"}}},stats={[1]="elemental_critical_strike_chance_+%"}},[841]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Chaos Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Chaos Skills"}}},stats={[1]="chaos_critical_strike_chance_+%"}},[842]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Totem Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Totem Skills"}}},stats={[1]="totem_critical_strike_chance_+%"}},[843]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=4000,[2]=4000}},text="100%% increased Global Critical Strike Chance if you've Summoned a Totem Recently"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="100%% increased Global Critical Strike Chance if you've Summoned a Totem in the past %1% seconds"}}},stats={[1]="increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem"}},[844]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Global Critical Strike Multiplier"}}},stats={[1]="base_critical_strike_multiplier_+"}},[845]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier"}}},stats={[1]="local_critical_strike_multiplier_+"}},[846]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for Spells"}}},stats={[1]="spell_critical_strike_multiplier_+"}},[847]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for Spells"}}},stats={[1]="base_spell_critical_strike_multiplier_+"}},[848]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Daggers"}}},stats={[1]="critical_strike_multiplier_with_dagger_+"}},[849]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Maces or Sceptres"}}},stats={[1]="mace_critical_strike_multiplier_+"}},[850]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Axes"}}},stats={[1]="axe_critical_strike_multiplier_+"}},[851]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Bows"}}},stats={[1]="bow_critical_strike_multiplier_+"}},[852]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Swords"}}},stats={[1]="sword_critical_strike_multiplier_+"}},[853]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Wands"}}},stats={[1]="wand_critical_strike_multiplier_+"}},[854]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Claws"}}},stats={[1]="claw_critical_strike_multiplier_+"}},[855]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Staves"}}},stats={[1]="staff_critical_strike_multiplier_+"}},[856]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with One Handed Melee Weapons"}}},stats={[1]="one_handed_melee_critical_strike_multiplier_+"}},[857]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Melee Critical Strike Multiplier"}}},stats={[1]="melee_weapon_critical_strike_multiplier_+"}},[858]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Attack Critical Strike Multiplier while Dual Wielding"}}},stats={[1]="critical_strike_multiplier_while_dual_wielding_+"}},[859]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Melee Critical Strike Multiplier while holding a Shield"}}},stats={[1]="melee_critical_strike_multiplier_+_while_wielding_shield"}},[860]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Traps"}}},stats={[1]="trap_critical_strike_multiplier_+"}},[861]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Mines"}}},stats={[1]="mine_critical_strike_multiplier_+"}},[862]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Fire Skills"}}},stats={[1]="fire_critical_strike_multiplier_+"}},[863]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Lightning Skills"}}},stats={[1]="lightning_critical_strike_multiplier_+"}},[864]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Cold Skills"}}},stats={[1]="cold_critical_strike_multiplier_+"}},[865]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Elemental Skills"}}},stats={[1]="elemental_critical_strike_multiplier_+"}},[866]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Chaos Skills"}}},stats={[1]="chaos_critical_strike_multiplier_+"}},[867]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% reduced Extra Damage from Critical Strikes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You take %1%%% increased Extra Damage from Critical Strikes"}}},stats={[1]="base_self_critical_strike_multiplier_-%"}},[868]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% reduced Extra Damage from Critical Strikes per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You take %1%%% increased Extra Damage from Critical Strikes per Endurance Charge"}}},stats={[1]="self_critical_strike_multiplier_-%_per_endurance_charge"}},[869]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Critical Strikes do not deal extra Damage"}}},stats={[1]="critical_strike_multiplier_is_100"}},[870]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Totem Skills"}}},stats={[1]="totem_critical_strike_multiplier_+"}},[871]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Stun Threshold"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Enemy Stun Threshold"}}},stats={[1]="base_stun_threshold_reduction_+%"}},[872]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Stun Threshold with Maces or Sceptres"}}},stats={[1]="while_using_mace_stun_threshold_reduction_+%"}},[873]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Stun Threshold with Bows"}}},stats={[1]="bow_stun_threshold_reduction_+%"}},[874]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Enemies Back on Hit"}}},stats={[1]="global_knockback"}},[875]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot be Knocked Back"}}},stats={[1]="cannot_be_knocked_back"}},[876]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Knocked Back"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Knocked Back"}}},stats={[1]="avoid_knockback_%"}},[877]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Enemies Back when Hit by a Bow"}}},stats={[1]="knockback_with_bow"}},[878]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Enemies Back when Hit by a Staff"}}},stats={[1]="knockback_with_staff"}},[879]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Enemies Back when Hit by a Wand"}}},stats={[1]="knockback_with_wand"}},[880]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Enemies Back on Hit"}}},stats={[1]="local_knockback"}},[881]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Armour"}}},stats={[1]="maximum_physical_damage_reduction_%"}},[882]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour"}}},stats={[1]="base_physical_damage_reduction_rating"}},[883]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour"}}},stats={[1]="local_base_physical_damage_reduction_rating"}},[884]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour"}}},stats={[1]="physical_damage_reduction_rating_+%"}},[885]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour"}}},stats={[1]="local_physical_damage_reduction_rating_+%"}},[886]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating and Armour"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion Rating and Armour"}}},stats={[1]="evasion_and_physical_damage_reduction_rating_+%"}},[887]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour while you have Fortify"}}},stats={[1]="physical_damage_reduction_rating_+%_while_fortify_is_active"}},[888]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating"}}},stats={[1]="base_evasion_rating"}},[889]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating while on Low Life"}}},stats={[1]="evasion_rating_+_when_on_low_life"}},[890]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating while on Full Life"}}},stats={[1]="evasion_rating_+_when_on_full_life"}},[891]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating per 1 Maximum Energy Shield on Helmet"}}},stats={[1]="evasion_rating_+_per_1_helmet_energy_shield"}},[892]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating"}}},stats={[1]="local_base_evasion_rating"}},[893]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion Rating"}}},stats={[1]="evasion_rating_+%"}},[894]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion Rating"}}},stats={[1]="local_evasion_rating_+%"}},[895]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating during Onslaught"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion Rating during Onslaught"}}},stats={[1]="evasion_rating_+%_while_onslaught_is_active"}},[896]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour and Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour and Energy Shield"}}},stats={[1]="local_armour_and_energy_shield_+%"}},[897]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour and Evasion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour and Evasion"}}},stats={[1]="local_armour_and_evasion_+%"}},[898]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion and Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion and Energy Shield"}}},stats={[1]="local_evasion_and_energy_shield_+%"}},[899]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour, Evasion and Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour, Evasion and Energy Shield"}}},stats={[1]="local_armour_and_evasion_and_energy_shield_+%"}},[900]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion Rating per Frenzy Charge"}}},stats={[1]="evasion_rating_+%_per_frenzy_charge"}},[901]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Energy Shield"}}},stats={[1]="base_maximum_energy_shield"}},[902]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Energy Shield"}}},stats={[1]="local_energy_shield"}},[903]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield"}}},stats={[1]="local_energy_shield_+%"}},[904]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased maximum Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced maximum Energy Shield"}}},stats={[1]="maximum_energy_shield_+%"}},[905]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% faster start of Energy Shield Recharge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% slower start of Energy Shield Recharge"}}},stats={[1]="energy_shield_delay_-%"}},[906]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Energy Shield Recharge not delayed by Damage"}}},stats={[1]="energy_shield_recharge_not_delayed_by_damage"}},[907]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Energy Shield Recharged per second"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% of Energy Shield Lost per minute"}}},stats={[1]="energy_shield_recharge_rate_per_minute_%"}},[908]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Recharge Rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Recharge Rate"}}},stats={[1]="energy_shield_recharge_rate_+%"}},[909]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Energy Shield per 100 Reserved Life"}}},stats={[1]="maximum_energy_shield_+_per_100_life_reserved"}},[910]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Energy Shield per 6 Evasion Rating on Body Armour"}}},stats={[1]="maximum_energy_shield_+_per_6_body_armour_evasion_rating"}},[911]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Life"}}},stats={[1]="base_maximum_life"}},[912]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased maximum Life, Mana and Global Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced maximum Life, Mana and Global Energy Shield"}}},stats={[1]="maximum_life_mana_and_energy_shield_+%"}},[913]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced maximum Life"}}},stats={[1]="maximum_life_+%"}},[914]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less maximum Life"}}},stats={[1]="monster_life_+%_final_from_rarity"}},[915]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less maximum Life"}}},stats={[1]="monster_life_+%_final_from_map"}},[916]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second"}}},stats={[1]="base_life_regeneration_rate_per_minute"}},[917]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second per Endurance Charge"}}},stats={[1]="life_regeneration_rate_per_minute_%_per_endurance_charge"}},[918]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Mana"}}},stats={[1]="base_maximum_mana"}},[919]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased maximum Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced maximum Mana"}}},stats={[1]="maximum_mana_+%"}},[920]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Mana per second"}}},stats={[1]="mana_regeneration_rate_per_minute_%"}},[921]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Mana per second"}}},stats={[1]="base_mana_regeneration_rate_per_minute"}},[922]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate"}}},stats={[1]="mana_regeneration_rate_+%"}},[923]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Mana per second per Power Charge"}}},stats={[1]="mana_regeneration_rate_per_minute_%_per_power_charge"}},[924]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot be Damaged"}}},stats={[1]="cannot_be_damaged"}},[925]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items found"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items found"}}},stats={[1]="item_found_quantity_+%"}},[926]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items found"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items found"}}},stats={[1]="base_item_found_quantity_+%"}},[927]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items found when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items found when on Low Life"}}},stats={[1]="item_found_quantity_+%_when_on_low_life"}},[928]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Found from Chests"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Found from Chests"}}},stats={[1]="chest_item_quantity_+%"}},[929]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items found"}}},stats={[1]="item_found_rarity_+%"}},[930]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items found"}}},stats={[1]="base_item_found_rarity_+%"}},[931]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Allies have %1%%% increased Item Rarity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nearby Allies have %1%%% reduced Item Rarity"}}},stats={[1]="local_display_aura_allies_have_increased_item_rarity_+%"}},[932]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items found when on Low Life"}}},stats={[1]="item_found_rarity_+%_when_on_low_life"}},[933]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Found from Chests"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Found from Chests"}}},stats={[1]="chest_item_rarity_+%"}},[934]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quality of Items Found"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quality of Items Found"}}},stats={[1]="item_found_quality_+%"}},[935]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Relevancy of Items Found"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Relevancy of Items Found"}}},stats={[1]="item_found_relevancy_+%"}},[936]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Experience gain"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Experience gain"}}},stats={[1]="experience_gain_+%"}},[937]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Experience loss on Death"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Experience loss on Death"}}},stats={[1]="experience_loss_on_death_-%"}},[938]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can't use other Rings"}}},stats={[1]="local_ring_disable_other_ring"}},[939]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Fire Damage"}}},stats={[1]="base_fire_immunity"}},[940]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems are Immune to Fire Damage"}}},stats={[1]="totem_fire_immunity"}},[941]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Spell Skill Gems"}}},stats={[1]="spell_skill_gem_level_+"}},[942]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Physical Spell Skill Gems"}}},stats={[1]="physical_spell_skill_gem_level_+"}},[943]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Fire Spell Skill Gems"}}},stats={[1]="fire_spell_skill_gem_level_+"}},[944]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Cold Spell Skill Gems"}}},stats={[1]="cold_spell_skill_gem_level_+"}},[945]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Lightning Spell Skill Gems"}}},stats={[1]="lightning_spell_skill_gem_level_+"}},[946]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Chaos Spell Skill Gems"}}},stats={[1]="chaos_spell_skill_gem_level_+"}},[947]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Minion Skill Gems"}}},stats={[1]="minion_skill_gem_level_+"}},[948]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Raise Zombie Gems"}}},stats={[1]="raise_zombie_gem_level_+"}},[949]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Raise Spectre Gems"}}},stats={[1]="raise_spectre_gem_level_+"}},[950]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Summon Skeleton Gems"}}},stats={[1]="summon_skeleton_gem_level_+"}},[951]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances"}}},stats={[1]="base_resist_all_elements_%"}},[952]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances per Endurance Charge"}}},stats={[1]="resist_all_elements_%_per_endurance_charge"}},[953]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Elemental Resistances while holding a Shield"}}},stats={[1]="resist_all_elements_+%_while_holding_shield"}},[954]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances while on Low Life"}}},stats={[1]="elemental_resistance_%_when_on_low_life"}},[955]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Fire Resistance"}}},stats={[1]="base_maximum_fire_damage_resistance_%"}},[956]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fire Resistance is %1%%%"}}},stats={[1]="fire_damage_resistance_is_%"}},[957]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Fire Resistance"}}},stats={[1]="base_fire_damage_resistance_%"}},[958]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Fire Resistance when Socketed with a Red Gem"}}},stats={[1]="unique_fire_damage_resistance_%_when_red_gem_socketed"}},[959]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Fire Resistance while on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1$+d%% to Fire Resistance while on Low Life"}}},stats={[1]="fire_damage_resistance_%_when_on_low_life"}},[960]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Resistance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Resistance"}}},stats={[1]="fire_damage_resistance_+%"}},[961]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Cold Resistance"}}},stats={[1]="base_maximum_cold_damage_resistance_%"}},[962]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cold Resistance is %1%%%"}}},stats={[1]="cold_damage_resistance_is_%"}},[963]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold Resistance"}}},stats={[1]="base_cold_damage_resistance_%"}},[964]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold Resistance when Socketed with a Green Gem"}}},stats={[1]="unique_cold_damage_resistance_%_when_green_gem_socketed"}},[965]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Resistance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Resistance"}}},stats={[1]="cold_damage_resistance_+%"}},[966]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Lightning Resistance"}}},stats={[1]="base_maximum_lightning_damage_resistance_%"}},[967]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lightning Resistance is %1%%%"}}},stats={[1]="lightning_damage_resistance_is_%"}},[968]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Lightning Resistance"}}},stats={[1]="base_lightning_damage_resistance_%"}},[969]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Lightning Resistance when Socketed with a Blue Gem"}}},stats={[1]="unique_lightning_damage_resistance_%_when_blue_gem_socketed"}},[970]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Resistance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Resistance"}}},stats={[1]="lightning_damage_resistance_+%"}},[971]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Chaos Resistance"}}},stats={[1]="base_maximum_chaos_damage_resistance_%"}},[972]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Resistance"}}},stats={[1]="base_chaos_damage_resistance_%"}},[973]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all maximum Resistances"}}},stats={[1]="additional_maximum_all_resistances_%"}},[974]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all maximum Elemental Resistances"}}},stats={[1]="additional_maximum_all_elemental_resistances_%"}},[975]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Temporal Chains has %1%%% increased Effect on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Temporal Chains has %1%%% reduced Effect on you"}}},stats={[1]="temporal_chains_effeciveness_+%"}},[976]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Chill on you"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Chill on you"}}},stats={[1]="chill_effectiveness_on_self_+%"}},[977]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life"}}},stats={[1]="old_do_not_use_life_leech_from_physical_damage_%"}},[978]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life"}}},stats={[1]="life_leech_from_physical_attack_damage_permyriad"}},[979]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life"}}},stats={[1]="old_do_not_use_local_life_leech_from_physical_damage_%"}},[980]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life"}}},stats={[1]="local_life_leech_from_physical_damage_permyriad"}},[981]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Dealt with Claws Leeched as Life"}}},stats={[1]="old_do_not_use_life_leech_from_physical_damage_with_claw_%"}},[982]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Dealt with Claws Leeched as Life"}}},stats={[1]="life_leech_from_physical_damage_with_claw_permyriad"}},[983]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Dealt with Bows Leeched as Life"}}},stats={[1]="life_leech_from_physical_damage_with_bow_permyriad"}},[984]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},[3]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life and Mana"}}},stats={[1]="life_and_mana_leech_from_physical_damage_permyriad"}},[985]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},[3]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life and Mana"}}},stats={[1]="local_life_and_mana_leech_from_physical_damage_permyriad"}},[986]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Dealt with Claws Leeched as Mana"}}},stats={[1]="old_do_not_use_mana_leech_from_physical_damage_with_claw_%"}},[987]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Dealt with Claws Leeched as Mana"}}},stats={[1]="mana_leech_from_physical_damage_with_claw_permyriad"}},[988]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Dealt with Bows Leeched as Mana"}}},stats={[1]="mana_leech_from_physical_damage_with_bow_permyriad"}},[989]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life"}}},stats={[1]="life_leech_from_any_damage_permyriad"}},[990]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Life"}}},stats={[1]="old_do_not_use_life_leech_from_spell_damage_%"}},[991]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_spell_damage_permyriad"}},[992]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_attack_damage_permyriad"}},[993]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Leeched as Life"}}},stats={[1]="old_do_not_use_base_life_leech_from_physical_damage_permyriad"}},[994]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_physical_damage_permyriad"}},[995]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage Leeched as Life"}}},stats={[1]="old_do_not_use_base_life_leech_from_fire_damage_permyriad"}},[996]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_fire_damage_permyriad"}},[997]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Leeched as Life"}}},stats={[1]="old_do_not_use_base_life_leech_from_cold_damage_permyriad"}},[998]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_cold_damage_permyriad"}},[999]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Leeched as Life"}}},stats={[1]="old_do_not_use_base_life_leech_from_lightning_damage_permyriad"}},[1000]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_lightning_damage_permyriad"}},[1001]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Chaos Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_chaos_damage_permyriad"}},[1002]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Elemental Damage Leeched as Life"}}},stats={[1]="old_do_not_use_base_life_leech_from_elemental_damage_permyriad"}},[1003]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Elemental Damage Leeched as Life"}}},stats={[1]="base_life_leech_from_elemental_damage_permyriad"}},[1004]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life against Shocked Enemies"}}},stats={[1]="old_do_not_use_life_leech_permyriad_vs_shocked_enemies"}},[1005]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life against Shocked Enemies"}}},stats={[1]="base_life_leech_permyriad_vs_shocked_enemies"}},[1006]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage against Frozen Enemies Leeched as Life"}}},stats={[1]="old_do_not_use_life_leech_%_vs_frozen_enemies"}},[1007]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage against Frozen Enemies Leeched as Life"}}},stats={[1]="base_life_leech_permyriad_vs_frozen_enemies"}},[1008]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life against Chilled Enemies"}}},stats={[1]="old_do_not_use_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"}},[1009]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life against Chilled Enemies"}}},stats={[1]="base_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"}},[1010]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life on Critical Strike"}}},stats={[1]="old_do_not_use_life_leech_permyriad_on_crit"}},[1011]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life on Critical Strike"}}},stats={[1]="life_leech_permyriad_on_crit"}},[1012]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life against Bleeding Enemies"}}},stats={[1]="life_leech_from_attack_damage_permyriad_vs_bleeding_enemies"}},[1013]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana"}}},stats={[1]="old_do_not_use_mana_leech_from_physical_damage_%"}},[1014]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana"}}},stats={[1]="mana_leech_from_physical_attack_damage_permyriad"}},[1015]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana"}}},stats={[1]="old_do_not_use_local_mana_leech_from_physical_damage_%"}},[1016]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana"}}},stats={[1]="local_mana_leech_from_physical_damage_permyriad"}},[1017]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Mana"}}},stats={[1]="mana_leech_from_any_damage_permyriad"}},[1018]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Mana"}}},stats={[1]="old_do_not_use_mana_leech_from_spell_damage_%"}},[1019]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_spell_damage_permyriad"}},[1020]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_attack_damage_permyriad"}},[1021]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_physical_damage_permyriad"}},[1022]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_fire_damage_permyriad"}},[1023]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_cold_damage_permyriad"}},[1024]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Leeched as Mana"}}},stats={[1]="old_do_not_use_base_mana_leech_from_lightning_damage_permyriad"}},[1025]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_lightning_damage_permyriad"}},[1026]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Chaos Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_chaos_damage_permyriad"}},[1027]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Elemental Damage Leeched as Mana"}}},stats={[1]="base_mana_leech_from_elemental_damage_permyriad"}},[1028]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage against Shocked Enemies Leeched as Mana"}}},stats={[1]="old_do_not_use_mana_leech_%_vs_shocked_enemies"}},[1029]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage against Shocked Enemies Leeched as Mana"}}},stats={[1]="base_mana_leech_permyriad_vs_shocked_enemies"}},[1030]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana per Power Charge"}}},stats={[1]="old_do_not_use_mana_leech_from_physical_damage_%_per_power_charge"}},[1031]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana per Power Charge"}}},stats={[1]="mana_leech_from_physical_damage_permyriad_per_power_charge"}},[1032]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Energy Shield"}}},stats={[1]="energy_shield_leech_from_any_damage_permyriad"}},[1033]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Energy Shield"}}},stats={[1]="base_energy_shield_leech_from_spell_damage_permyriad"}},[1034]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Spell Damage Leeched as Energy Shield for each Curse on Enemy"}}},stats={[1]="energy_shield_leech_from_spell_damage_permyriad_per_curse_on_enemy"}},[1035]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Recovery per Life Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Recovery per Life Leech"}}},stats={[1]="maximum_life_leech_amount_per_leech_+%"}},[1036]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Recovery per Mana Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Recovery per Mana Leech"}}},stats={[1]="maximum_mana_leech_amount_per_leech_+%"}},[1037]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Recovery per Energy Shield Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Recovery per Energy Shield Leech"}}},stats={[1]="maximum_energy_shield_leech_amount_per_leech_+%"}},[1038]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% of Maximum Life to Maximum total Recovery per second from Life Leech"}}},stats={[1]="maximum_life_leech_rate_%_per_minute"}},[1039]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% of Maximum Energy Shield to maximum total Recovery per second from Energy Shield Leech"}}},stats={[1]="maximum_energy_shield_leech_rate_%_per_minute"}},[1040]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% of Maximum Energy Shield to maximum Recovery per Energy Shield Leech"}}},stats={[1]="maximum_energy_shield_leech_amount_per_leech_%_max_energy_shield"}},[1041]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% of Maximum Mana to maximum total Recovery per second from Mana Leech"}}},stats={[1]="maximum_mana_leech_rate_%_per_minute"}},[1042]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum total Recovery per second from Life Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum total Recovery per second from Life Leech"}}},stats={[1]="maximum_life_leech_rate_+%"}},[1043]={lang={English={[1]={[1]={k="divide_by_twelve",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum total Recovery per second from Life Leech"},[2]={[1]={k="divide_by_twelve",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum total Recovery per second from Life Leech"}}},stats={[1]="maximum_life_leech_rate_+1%_per_12_stat_value"}},[1044]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum total Recovery per second from Mana Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum total Recovery per second from Mana Leech"}}},stats={[1]="maximum_mana_leech_rate_+%"}},[1045]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum total Recovery per second from Energy Shield Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum total Recovery per second from Energy Shield Leech"}}},stats={[1]="maximum_energy_shield_leech_rate_+%"}},[1046]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum total Recovery per second from Energy Shield Leech while affected by Zealotry"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum total Recovery per second from Energy Shield Leech while affected by Zealotry"}}},stats={[1]="maximum_energy_shield_leech_rate_+%_while_affected_by_zealotry"}},[1047]={lang={English={[1]={[1]={k="divide_by_six",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum total Recovery per second from Energy Shield Leech while affected by Zealotry"}}},stats={[1]="maximum_es_leech_rate_+1%_per_6_stat_value_while_affected_by_zealotry"}},[1048]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained for each Enemy hit by your Attacks"}}},stats={[1]="life_gain_per_target"}},[1049]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained for each Enemy hit by Attacks"}}},stats={[1]="local_life_gain_per_target"}},[1050]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained for each Enemy hit by your Spells"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lose %1% Life for each Enemy hit by your Spells"}}},stats={[1]="base_life_gained_on_spell_hit"}},[1051]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained for each Enemy hit by your Attacks"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lose %1% Life for each Enemy hit by your Attacks"}}},stats={[1]="base_life_gain_per_target"}},[1052]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life and Mana gained for each Enemy hit by your Attacks"}}},stats={[1]="life_and_mana_gain_per_hit"}},[1053]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life and Mana gained for each Enemy hit"}}},stats={[1]="local_life_and_mana_gain_per_target"}},[1054]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life gained for each Ignited Enemy hit by your Attacks"}}},stats={[1]="life_gain_on_ignited_enemy_hit"}},[1055]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained for each Enemy hit by your Attacks"}}},stats={[1]="mana_gain_per_target"}},[1056]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained for each Enemy hit by Attacks"}}},stats={[1]="local_mana_gain_per_target"}},[1057]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained for each Enemy hit by your Attacks"}}},stats={[1]="virtual_mana_gain_per_target"}},[1058]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Energy Shield gained for each Enemy hit by your Attacks"}}},stats={[1]="energy_shield_gain_per_target"}},[1059]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained on Kill"}}},stats={[1]="base_life_gained_on_enemy_death"}},[1060]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Recover %1%%% of Life on Kill"}}},stats={[1]="recover_%_maximum_life_on_kill"}},[1061]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Energy Shield on Kill"}}},stats={[1]="recover_energy_shield_%_on_kill"}},[1062]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Recover %1%%% of Mana on Kill"}}},stats={[1]="recover_%_maximum_mana_on_kill"}},[1063]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Recover %1%%% of Mana when you Kill a Cursed Enemy"}}},stats={[1]="recover_%_maximum_mana_on_killing_cursed_enemy"}},[1064]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained on Killing Ignited Enemies"}}},stats={[1]="life_gained_on_killing_ignited_enemies"}},[1065]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose %1%%% of Life on Kill"}}},stats={[1]="maximum_life_%_lost_on_kill"}},[1066]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Mana on Kill"}}},stats={[1]="maximum_mana_%_gained_on_kill"}},[1067]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose %1%%% of Energy Shield on Kill"}}},stats={[1]="maximum_energy_shield_%_lost_on_kill"}},[1068]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life gained when you Block"}}},stats={[1]="life_gained_on_block"}},[1069]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Mana gained when you Block"}}},stats={[1]="mana_gained_on_block"}},[1070]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1% Life when you Block"}}},stats={[1]="recover_X_life_on_block"}},[1071]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions recover %1% Life when they Block"}}},stats={[1]="minion_recover_X_life_on_block"}},[1072]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained on Kill"}}},stats={[1]="base_mana_gained_on_enemy_death"}},[1073]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less maximum Life"}}},stats={[1]="support_minion_maximum_life_+%_final"}},[1074]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced maximum Life"}}},stats={[1]="minion_maximum_life_+%"}},[1075]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased maximum Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced maximum Mana"}}},stats={[1]="minion_maximum_mana_+%"}},[1076]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased maximum Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced maximum Energy Shield"}}},stats={[1]="minion_maximum_energy_shield_+%"}},[1077]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Movement Speed"}}},stats={[1]="minion_movement_speed_+%"}},[1078]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spectres have %1%%% increased maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spectres have %1%%% reduced maximum Life"}}},stats={[1]="base_spectre_maximum_life_+%"}},[1079]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Raised Zombies have %1%%% increased maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Raised Zombies have %1%%% reduced maximum Life"}}},stats={[1]="base_zombie_maximum_life_+%"}},[1080]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Fire Elementals have %1%%% increased maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Fire Elementals have %1%%% reduced maximum Life"}}},stats={[1]="base_fire_elemental_maximum_life_+%"}},[1081]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ravens have %1%%% increased maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ravens have %1%%% reduced maximum Life"}}},stats={[1]="base_raven_maximum_life_+%"}},[1082]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Life"}}},stats={[1]="totem_life_+%"}},[1083]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Mana"}}},stats={[1]="totem_mana_+%"}},[1084]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Energy Shield"}}},stats={[1]="totem_energy_shield_+%"}},[1085]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Range"}}},stats={[1]="totem_range_+%"}},[1086]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Duration"}}},stats={[1]="totem_duration_+%"}},[1087]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skeleton Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skeleton Duration"}}},stats={[1]="skeleton_duration_+%"}},[1088]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Buffs and Debuffs you create from skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Buffs and Debuffs you create from skills"}}},stats={[1]="buff_duration_+%"}},[1089]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Buff is applied for %1% seconds"}}},stats={[1]="newpunishment_applied_buff_duration_ms"}},[1090]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Curse Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Curse Duration"}}},stats={[1]="base_curse_duration_+%"}},[1091]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Taunt Duration"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Taunt Duration"}}},stats={[1]="taunt_duration_+%"}},[1092]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1$+d Life when you Taunt an Enemy"}}},stats={[1]="life_gained_on_taunting_enemy"}},[1093]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1$+d Mana when you hit a Taunted Enemy"}}},stats={[1]="mana_gained_on_hitting_taunted_enemy"}},[1094]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Buffs affect your Party members"}}},stats={[1]="buff_affects_party"}},[1095]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect of Buffs affecting Party members"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect of Buffs affecting Party members"}}},stats={[1]="buff_party_effect_radius_+%"}},[1096]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles do not Chain"}}},stats={[1]="do_not_chain"}},[1097]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skills Chain %1$+d times"}}},stats={[1]="number_of_chains"}},[1098]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Projectiles Pierce an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Projectiles Pierce %1% additional Targets"}}},stats={[1]="projectile_base_number_of_targets_to_pierce"}},[1099]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Arrows Pierce an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Arrows Pierce %1% additional Targets"}}},stats={[1]="arrow_base_number_of_targets_to_pierce"}},[1100]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Skills fire an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Skills fire %1% additional Projectiles"}}},stats={[1]="number_of_additional_projectiles"}},[1101]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Bow Attacks fire an additional Arrow"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Bow Attacks fire %1% additional Arrows"}}},stats={[1]="base_number_of_additional_arrows"}},[1102]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Speed"}}},stats={[1]="base_projectile_speed_+%"}},[1103]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Arrow Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Arrow Speed"}}},stats={[1]="base_arrow_speed_+%"}},[1104]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed"}}},stats={[1]="base_movement_velocity_+%"}},[1105]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed when on Low Life"}}},stats={[1]="movement_velocity_+%_when_on_low_life"}},[1106]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed when on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed when on Full Life"}}},stats={[1]="movement_velocity_+%_when_on_full_life"}},[1107]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield per second while on Low Life"}}},stats={[1]="energy_shield_regeneration_rate_per_minute_%_while_on_low_life"}},[1108]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed per Frenzy Charge"}}},stats={[1]="movement_velocity_+%_per_frenzy_charge"}},[1109]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Endurance Charges"}}},stats={[1]="base_minimum_endurance_charges"}},[1110]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Endurance Charges"}}},stats={[1]="max_endurance_charges"}},[1111]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Frenzy Charges"}}},stats={[1]="base_minimum_frenzy_charges"}},[1112]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Frenzy Charges"}}},stats={[1]="max_frenzy_charges"}},[1113]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Power Charges"}}},stats={[1]="base_minimum_power_charges"}},[1114]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Power Charges"}}},stats={[1]="max_power_charges"}},[1115]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Frenzy Charges and Maximum Power Charges"}}},stats={[1]="maximum_power_and_frenzy_charges_+"}},[1116]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain an Endurance Charge on Critical Strike"}}},stats={[1]="add_endurance_charge_on_critical_strike"}},[1117]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge on Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge on Critical Strike"}}},stats={[1]="chance_to_gain_endurance_charge_on_crit_%"}},[1118]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge on Melee Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge on Melee Critical Strike"}}},stats={[1]="chance_to_gain_endurance_charge_on_melee_crit_%"}},[1119]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain an Endurance Charge when you use a Fire skill"}}},stats={[1]="gain_endurance_charge_%_chance_on_using_fire_skill"}},[1120]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge on Bow Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge on Bow Critical Strike"}}},stats={[1]="chance_to_gain_endurance_charge_on_bow_crit_%"}},[1121]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Frenzy Charge on Killing a Frozen Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Frenzy Charge on Killing a Frozen Enemy"}}},stats={[1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"}},[1122]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge on Killing a Frozen Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge on Killing a Frozen Enemy"}}},stats={[1]="chance_to_gain_power_charge_on_killing_frozen_enemy_%"}},[1123]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Adds %1% minimum Cold Damage to Spells per Power Charge"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Adds %2% maximum Cold Damage to Spells per Power Charge"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells per Power Charge"}}},stats={[1]="spell_minimum_added_cold_damage_per_power_charge",[2]="spell_maximum_added_cold_damage_per_power_charge"}},[1124]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Skills Chain an additional time while at maximum Frenzy Charges"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Skills Chain %1% additional times while at maximum Frenzy Charges"}}},stats={[1]="num_of_additional_chains_at_max_frenzy_charges"}},[1125]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain a Frenzy Charge on Critical Strike"}}},stats={[1]="add_frenzy_charge_on_critical_strike"}},[1126]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain a Power Charge on Critical Strike"}}},stats={[1]="add_power_charge_on_critical_strike"}},[1127]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge on Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge on Critical Strike"}}},stats={[1]="add_power_charge_on_critical_strike_%"}},[1128]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain a Power Charge on Melee Critical Strike"}}},stats={[1]="add_power_charge_on_melee_critical_strike"}},[1129]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain an Endurance Charge on Hit"}}},stats={[1]="add_endurance_charge_on_skill_hit_%"}},[1130]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Frenzy Charge on Hit"}}},stats={[1]="add_frenzy_charge_on_skill_hit_%"}},[1131]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Power Charge on Hit"}}},stats={[1]="add_power_charge_on_skill_hit_%"}},[1132]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain an Endurance Charge when you take a Critical Strike"}}},stats={[1]="add_endurance_charge_on_enemy_critical_strike"}},[1133]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Gain an Endurance Charge when you suffer an Elemental Ailment"}}},stats={[1]="add_endurance_charge_on_status_ailment"}},[1134]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Chilled"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Chilled"}}},stats={[1]="avoid_chill_%"}},[1135]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Frozen"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Frozen"}}},stats={[1]="avoid_freeze_%"}},[1136]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Ignited"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Ignited"}}},stats={[1]="avoid_ignite_%"}},[1137]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Shocked"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Shocked"}}},stats={[1]="avoid_shock_%"}},[1138]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Elemental Ailments"},[2]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=100,[2]="#"}},text="Cannot receive Elemental Ailments"}}},stats={[1]="avoid_all_elemental_status_%"}},[1139]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Chilled"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Chilled"}}},stats={[1]="base_avoid_chill_%"}},[1140]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Frozen"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Frozen"}}},stats={[1]="base_avoid_freeze_%"}},[1141]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Ignited"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Ignited"}}},stats={[1]="base_avoid_ignite_%"}},[1142]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Ignited while on Low Life"},[2]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=100,[2]="#"}},text="Cannot be Ignited while on Low Life"}}},stats={[1]="avoid_ignite_%_when_on_low_life"}},[1143]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Shocked"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Shocked"}}},stats={[1]="base_avoid_shock_%"}},[1144]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Poisoned"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Poisoned"}}},stats={[1]="base_avoid_poison_%"}},[1145]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Stunned"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Stunned"}}},stats={[1]="avoid_stun_%"}},[1146]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Stunned"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Stunned"}}},stats={[1]="base_avoid_stun_%"}},[1147]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]="#"}},text="Always Ignites Enemies on Hit"}}},stats={[1]="always_ignite"}},[1148]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]="#"}},text="Always Shocks Enemies on Hit"}}},stats={[1]="always_shock"}},[1149]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Always Stuns Enemies on Hit"}}},stats={[1]="always_stun"}},[1150]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chill Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chill Duration on Enemies"}}},stats={[1]="chill_duration_+%"}},[1151]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shock Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shock Duration on Enemies"}}},stats={[1]="shock_duration_+%"}},[1152]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freeze Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freeze Duration on Enemies"}}},stats={[1]="freeze_duration_+%"}},[1153]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ignite Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ignite Duration on Enemies"}}},stats={[1]="ignite_duration_+%"}},[1154]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Ailments on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Ailments on Enemies"}}},stats={[1]="base_all_ailment_duration_+%"}},[1155]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Elemental Ailments on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Elemental Ailments on Enemies"}}},stats={[1]="base_elemental_status_ailment_duration_+%"}},[1156]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Cannot inflict Elemental Ailments"}}},stats={[1]="cannot_inflict_status_ailments"}},[1157]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration on Enemies"}}},stats={[1]="base_stun_duration_+%"}},[1158]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration with Two Handed Melee Weapons on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration with Two Handed Melee Weapons on Enemies"}}},stats={[1]="two_handed_melee_stun_duration_+%"}},[1159]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration with Bows on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration with Bows on Enemies"}}},stats={[1]="bow_stun_duration_+%"}},[1160]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration with Staves on Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration with Staves on Enemies"}}},stats={[1]="staff_stun_duration_+%"}},[1161]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Elemental Ailment Duration on you"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Elemental Ailment Duration on you"}}},stats={[1]="self_elemental_status_duration_-%"}},[1162]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Chill Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Chill Duration on you"}}},stats={[1]="self_chill_duration_-%"}},[1163]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Shock Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Shock Duration on you"}}},stats={[1]="self_shock_duration_-%"}},[1164]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Freeze Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Freeze Duration on you"}}},stats={[1]="self_freeze_duration_-%"}},[1165]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Ignite Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Ignite Duration on you"}}},stats={[1]="self_ignite_duration_-%"}},[1166]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Chill Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Chill Duration on you"}}},stats={[1]="base_self_chill_duration_-%"}},[1167]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Shock Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Shock Duration on you"}}},stats={[1]="base_self_shock_duration_-%"}},[1168]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Freeze Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Freeze Duration on you"}}},stats={[1]="base_self_freeze_duration_-%"}},[1169]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Ignite Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Ignite Duration on you"}}},stats={[1]="base_self_ignite_duration_-%"}},[1170]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance of Fire Spreading between Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% chance of Fire Spreading between Enemies"}}},stats={[1]="chance_per_second_of_fire_spreading_between_enemies_%"}},[1171]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Burning Damage"}}},stats={[1]="burn_damage_+%"}},[1172]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d to Level of Active Skills"}}},stats={[1]="active_skill_level_+"}},[1173]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Experience Gain of Gems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Experience Gain of Gems"}}},stats={[1]="gem_experience_gain_+%"}},[1174]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect"}}},stats={[1]="base_skill_area_of_effect_+%"}},[1175]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Mana Cost of Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Mana Cost of Skills"}}},stats={[1]="base_mana_cost_-%"}},[1176]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills while on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills while on Full Energy Shield"}}},stats={[1]="mana_cost_+%_while_on_full_energy_shield"}},[1177]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills when on Low Life"}}},stats={[1]="mana_cost_+%_when_on_low_life"}},[1178]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Total Mana Cost of Skills"}}},stats={[1]="skill_mana_cost_+"}},[1179]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Attacks do not cost Mana"}}},stats={[1]="attacks_do_not_cost_mana"}},[1180]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Skills Repeat an additional Time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Skills Repeat an additional %1% Times"}}},stats={[1]="skill_repeat_count"}},[1181]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spells Repeat an additional Time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spells Repeat an additional %1% Times"}}},stats={[1]="spell_repeat_count"}},[1182]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skill Effect Duration"}}},stats={[1]="skill_effect_duration_+%"}},[1183]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chaos Skills have %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Chaos Skills have %1%%% reduced Skill Effect Duration"}}},stats={[1]="chaos_skill_effect_duration_+%"}},[1184]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Skill Cooldown"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Skill Cooldown"}}},stats={[1]="skill_cooldown_-%"}},[1185]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Avoid interruption from Stuns while Casting"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% chance to Avoid interruption from Stuns while Casting"}}},stats={[1]="avoid_interruption_while_casting_%"}},[1186]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="%1% additional target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% additional targets"}}},stats={[1]="attack_repeat_count"}},[1187]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun and Block Recovery"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun and Block Recovery"}}},stats={[1]="base_stun_recovery_+%"}},[1188]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun and Block Recovery per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun and Block Recovery per Frenzy Charge"}}},stats={[1]="stun_recovery_+%_per_frenzy_charge"}},[1189]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Chance to Block Sword Attacks"}}},stats={[1]="while_using_sword_reduce_enemy_block_%"}},[1190]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Chance to Block Bow Attacks"}}},stats={[1]="bow_enemy_block_-%"}},[1191]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Block Chance"}}},stats={[1]="global_reduce_enemy_block_%"}},[1192]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies have %1%%% reduced chance to Dodge your Hits"}}},stats={[1]="reduce_enemy_dodge_%"}},[1193]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damaged Monsters do not Heal"}}},stats={[1]="prevent_monster_heal"}},[1194]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration that Monsters do not Heal"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration that Monsters do not Heal"}}},stats={[1]="prevent_monster_heal_duration_+%"}},[1195]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance of Defusing Trapped Chests"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% chance of Defusing Trapped Chests"}}},stats={[1]="chest_trap_defuse_%"}},[1196]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHit"},limit={[1]={[1]=1,[2]="#"}},text="Enemies Become Chilled as they Unfreeze"}}},stats={[1]="enemies_chill_as_unfrozen"}},[1197]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHit"},limit={[1]={[1]="#",[2]="#"}},text="Enemies you kill are Shocked"}}},stats={[1]="enemy_shock_on_kill"}},[1198]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHit"},limit={[1]={[1]=1,[2]="#"}},text="While Casting, Enemies that Hit you are Shocked"}}},stats={[1]="shocks_enemies_that_hit_actor_while_actor_is_casting"}},[1199]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Has maximum Quality"}}},stats={[1]="local_is_max_quality"}},[1200]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra Socket"}}},stats={[1]="local_extra_socket"}},[1201]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Blood Magic"}}},stats={[1]="use_life_in_place_of_mana"}},[1202]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Evade Enemy Attacks"}}},stats={[1]="base_cannot_evade"}},[1203]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="All Sockets are White"}}},stats={[1]="local_all_sockets_are_white"}},[1204]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Socketed Gems Do Not Gain Experience"}}},stats={[1]="local_disable_gem_experience_gain"}},[1205]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Gem gains %1%%% increased Experience"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="This Gem gains %1%%% reduced Experience"}}},stats={[1]="local_gem_experience_gain_+%"}},[1206]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Sockets"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Sockets"}}},stats={[1]="local_quantity_of_sockets_+%"}},[1207]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Socket Connectivity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Socket Connectivity"}}},stats={[1]="local_connectivity_of_sockets_+%"}},[1208]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Duration"}}},stats={[1]="trap_duration_+%"}},[1209]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Duration"}}},stats={[1]="mine_duration_+%"}},[1210]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Trigger Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Trigger Area of Effect"}}},stats={[1]="trap_trigger_radius_+%"}},[1211]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Detonation Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Detonation Area of Effect"}}},stats={[1]="mine_detonation_radius_+%"}},[1212]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Throwing Speed"}}},stats={[1]="trap_throwing_speed_+%"}},[1213]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Throwing Speed"}}},stats={[1]="mine_laying_speed_+%"}},[1214]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Monster Responsiveness"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Monster Responsiveness"}}},stats={[1]="skill_internal_monster_responsiveness_+%"}},[1215]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Endurance Charges granted per one hundred nearby Enemies"}}},stats={[1]="endurance_charges_granted_per_one_hundred_nearby_enemies_during_endurance_warcry"}},[1216]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skill Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skill Range"}}},stats={[1]="skill_range_+%"}},[1217]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Fire Damage"}}},stats={[1]="physical_damage_%_to_add_as_fire"}},[1218]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Cold Damage"}}},stats={[1]="physical_damage_%_to_add_as_cold"}},[1219]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Lightning Damage"}}},stats={[1]="physical_damage_%_to_add_as_lightning"}},[1220]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Chaos Damage"}}},stats={[1]="physical_damage_%_to_add_as_chaos"}},[1221]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Lightning Damage as Extra Fire Damage"}}},stats={[1]="lightning_damage_%_to_add_as_fire"}},[1222]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Lightning Damage as Extra Cold Damage"}}},stats={[1]="lightning_damage_%_to_add_as_cold"}},[1223]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Lightning Damage as Extra Chaos Damage"}}},stats={[1]="lightning_damage_%_to_add_as_chaos"}},[1224]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Cold Damage as Extra Fire Damage"}}},stats={[1]="cold_damage_%_to_add_as_fire"}},[1225]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Cold Damage as Extra Chaos Damage"}}},stats={[1]="cold_damage_%_to_add_as_chaos"}},[1226]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Fire Damage as Extra Chaos Damage"}}},stats={[1]="fire_damage_%_to_add_as_chaos"}},[1227]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Elemental Damage as Extra Chaos Damage"}}},stats={[1]="elemental_damage_%_to_add_as_chaos"}},[1228]={lang={English={[1]={[1]={k="per_minute_to_per_second_2dp_if_required",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second"}}},stats={[1]="life_regeneration_rate_per_minute_%"}},[1229]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second while on Low Life"}}},stats={[1]="life_regeneration_rate_per_minute_%_when_on_low_life"}},[1230]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Maximum Life taken per second as Chaos Damage"}}},stats={[1]="base_chaos_damage_%_of_maximum_life_taken_per_minute"}},[1231]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1% Chaos Damage taken per second"}}},stats={[1]="base_chaos_damage_taken_per_minute"}},[1232]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage taken over time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage taken over time"}}},stats={[1]="chaos_damage_taken_over_time_+%"}},[1233]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Mana Cost"}}},stats={[1]="display_mana_cost_reduction_%"}},[1234]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1% maximum Life"}}},stats={[1]="display_minion_maximum_life"}},[1235]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Back Enemies if you get a Critical Strike"}}},stats={[1]="global_knockback_on_crit"}},[1236]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Back Enemies if you get a Critical Strike with a Bow"}}},stats={[1]="knockback_on_crit_with_bow"}},[1237]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Back Enemies if you get a Critical Strike with a Staff"}}},stats={[1]="knockback_on_crit_with_staff"}},[1238]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Back Enemies if you get a Critical Strike with a Wand"}}},stats={[1]="knockback_on_crit_with_wand"}},[1239]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Knocks Back Enemies in an Area when you use a Flask"}}},stats={[1]="local_flask_use_causes_area_knockback"}},[1240]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Fire Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_fire"}},[1241]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Fire Damage"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_fire"}},[1242]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Cold Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_cold"}},[1243]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Cold Damage"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_cold"}},[1244]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Lightning Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_lightning"}},[1245]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Lightning Damage"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_lightning"}},[1246]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Chaos Damage"}}},stats={[1]="base_physical_damage_%_to_convert_to_chaos"}},[1247]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Chaos Damage"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_chaos"}},[1248]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Converted to Fire Damage"}}},stats={[1]="base_lightning_damage_%_to_convert_to_fire"}},[1249]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Converted to Cold Damage"}}},stats={[1]="base_lightning_damage_%_to_convert_to_cold"}},[1250]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Converted to Chaos Damage"}}},stats={[1]="base_lightning_damage_%_to_convert_to_chaos"}},[1251]={lang={English={[1]={[1]={k="60%_of_value",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Converted to Chaos Damage"}}},stats={[1]="base_lightning_damage_%_to_convert_to_chaos_60%_value"}},[1252]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Converted to Fire Damage"}}},stats={[1]="base_cold_damage_%_to_convert_to_fire"}},[1253]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Converted to Chaos Damage"}}},stats={[1]="base_cold_damage_%_to_convert_to_chaos"}},[1254]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage Converted to Chaos Damage"}}},stats={[1]="base_fire_damage_%_to_convert_to_chaos"}},[1255]={lang={English={[1]={[1]={k="60%_of_value",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage Converted to Chaos Damage"}}},stats={[1]="base_fire_damage_%_to_convert_to_chaos_60%_value"}},[1256]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Fire Damage"}}},stats={[1]="skill_physical_damage_%_to_convert_to_fire"}},[1257]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Cold Damage"}}},stats={[1]="skill_physical_damage_%_to_convert_to_cold"}},[1258]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Lightning Damage"}}},stats={[1]="skill_physical_damage_%_to_convert_to_lightning"}},[1259]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Chaos Damage"}}},stats={[1]="skill_physical_damage_%_to_convert_to_chaos"}},[1260]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Converted to Fire Damage"}}},stats={[1]="skill_lightning_damage_%_to_convert_to_fire"}},[1261]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Converted to Cold Damage"}}},stats={[1]="skill_lightning_damage_%_to_convert_to_cold"}},[1262]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Converted to Chaos Damage"}}},stats={[1]="skill_lightning_damage_%_to_convert_to_chaos"}},[1263]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Converted to Fire Damage"}}},stats={[1]="skill_cold_damage_%_to_convert_to_fire"}},[1264]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Converted to Chaos Damage"}}},stats={[1]="skill_cold_damage_%_to_convert_to_chaos"}},[1265]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage Converted to Chaos Damage"}}},stats={[1]="skill_fire_damage_%_to_convert_to_chaos"}},[1266]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield from Equipped Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield from Equipped Shield"}}},stats={[1]="shield_maximum_energy_shield_+%"}},[1267]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage"}}},stats={[1]="minion_damage_+%"}},[1268]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage if you've used a Minion Skill Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage if you've used a Minion Skill Recently"}}},stats={[1]="minion_damage_+%_if_have_used_a_minion_skill_recently"}},[1269]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage"}}},stats={[1]="virtual_minion_damage_+%"}},[1270]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage per 10 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage per 10 Dexterity"}}},stats={[1]="minion_damage_+%_per_10_dex"}},[1271]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cursed Enemies grant %1%%% more Melee Physical Damage on Melee hit"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cursed Enemies grant %1%%% less Melee Physical Damage on Melee hit"}}},stats={[1]="newpunishment_melee_physical_damage_+%_final"}},[1272]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grants attacked Enemy %1%%% more Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grants attacked Enemy %1%%% less Melee Physical Damage"}}},stats={[1]="newpunishment_melee_damage_+%_final"}},[1273]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate per Power Charge"}}},stats={[1]="mana_regeneration_rate_+%_per_power_charge"}},[1274]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage"}}},stats={[1]="elemental_damage_+%"}},[1275]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage"}}},stats={[1]="melee_physical_damage_+%"}},[1276]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Fire Damage"}}},stats={[1]="melee_fire_damage_+%"}},[1277]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Cold Damage"}}},stats={[1]="melee_cold_damage_+%"}},[1278]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage while holding a Shield"}}},stats={[1]="melee_physical_damage_+%_while_holding_shield"}},[1279]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Fire Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Fire Damage while holding a Shield"}}},stats={[1]="melee_fire_damage_+%_while_holding_shield"}},[1280]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Cold Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Cold Damage while holding a Shield"}}},stats={[1]="melee_cold_damage_+%_while_holding_shield"}},[1281]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bow Physical Damage while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bow Physical Damage while holding a Shield"}}},stats={[1]="bow_physical_damage_+%_while_holding_shield"}},[1282]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Chance to Block Attack Damage"}}},stats={[1]="maximum_block_%"}},[1283]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Chance to Block Spell Damage"}}},stats={[1]="base_maximum_spell_block_%"}},[1284]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Chance to Block Spell Damage per 50 Strength"}}},stats={[1]="maximum_spell_block_chance_per_50_strength"}},[1285]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion from Equipped Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion from Equipped Shield"}}},stats={[1]="shield_evasion_rating_+%"}},[1286]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour from Equipped Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour from Equipped Shield"}}},stats={[1]="shield_physical_damage_reduction_rating_+%"}},[1287]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Defences from Equipped Shield"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Defences from Equipped Shield"}}},stats={[1]="shield_armour_+%"}},[1288]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Knock Enemies Back on hit"}}},stats={[1]="base_global_chance_to_knockback_%"}},[1289]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Damage"}}},stats={[1]="projectile_damage_+%"}},[1290]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Attack Damage"}}},stats={[1]="projectile_attack_damage_+%"}},[1291]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Ranged Weapons"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Ranged Weapons"}}},stats={[1]="ranged_weapon_physical_damage_+%"}},[1292]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed when on Low Life"}}},stats={[1]="cast_speed_+%_when_on_low_life"}},[1293]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed when on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed when on Full Life"}}},stats={[1]="cast_speed_+%_when_on_full_life"}},[1294]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed per Frenzy Charge"}}},stats={[1]="cast_speed_+%_per_frenzy_charge"}},[1295]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Knockback Distance"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Knockback Distance"}}},stats={[1]="knockback_distance_+%"}},[1296]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration on Enemies"}}},stats={[1]="stun_duration_+%"}},[1297]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Swords"}}},stats={[1]="sword_accuracy_rating"}},[1298]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Bows"}}},stats={[1]="bow_accuracy_rating"}},[1299]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Daggers"}}},stats={[1]="dagger_accuracy_rating"}},[1300]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Axes"}}},stats={[1]="axe_accuracy_rating"}},[1301]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Claws"}}},stats={[1]="claw_accuracy_rating"}},[1302]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Staves"}}},stats={[1]="staff_accuracy_rating"}},[1303]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Maces or Sceptres"}}},stats={[1]="mace_accuracy_rating"}},[1304]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating with Wands"}}},stats={[1]="wand_accuracy_rating"}},[1305]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain Enemies"}}},stats={[1]="base_killed_monster_dropped_item_rarity_+%"}},[1306]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Slain Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Dropped by Slain Enemies"}}},stats={[1]="base_killed_monster_dropped_item_quantity_+%"}},[1307]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration per 10 Strength"}}},stats={[1]="skill_effect_duration_+%_per_10_strength"}},[1308]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strength provides no bonus to Maximum Life"}}},stats={[1]="gain_no_maximum_life_from_strength"}},[1309]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Intelligence provides no bonus to Maximum Mana"}}},stats={[1]="gain_no_maximum_mana_from_intelligence"}},[1310]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Accuracy Rating per 2 Intelligence"}}},stats={[1]="X_accuracy_per_2_intelligence"}},[1311]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life per 4 Dexterity"}}},stats={[1]="X_life_per_4_dexterity"}},[1312]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Mana per 4 Strength"}}},stats={[1]="X_mana_per_4_strength"}},[1313]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Life per 2 Intelligence"}}},stats={[1]="x_to_maximum_life_per_2_intelligence"}},[1314]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating"}}},stats={[1]="local_accuracy_rating"}},[1315]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating"}}},stats={[1]="local_accuracy_rating_+%"}},[1316]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Always Ignite"}}},stats={[1]="base_chance_to_ignite_%"}},[1317]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextScorch"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Scorch Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextScorch"},limit={[1]={[1]=100,[2]="#"}},text="Always Scorch Enemies"}}},stats={[1]="chance_to_scorch_%"}},[1318]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Burning Damage"}}},stats={[1]="chieftain_burning_damage_+%_final"}},[1319]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="Always Freezes Enemies on Hit"},[2]={[1]={k="canonical_line",v="canonical"},[2]={k="_stat",v=1},[3]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0}},text="%1%%% chance to Freeze"}}},stats={[1]="base_chance_to_freeze_%",[2]="always_freeze"}},[1320]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBrittle"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Brittle"},[2]={[1]={k="reminderstring",v="ReminderTextBrittle"},limit={[1]={[1]=100,[2]="#"}},text="Always inflict Brittle"}}},stats={[1]="chance_to_inflict_frostburn_%"}},[1321]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Critical Strikes do not inherently Freeze"}}},stats={[1]="critical_strikes_do_not_always_freeze"}},[1322]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="%1$d%% chance to Freeze Enemies which are Chilled"}}},stats={[1]="additional_chance_to_freeze_chilled_enemies_%"}},[1323]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Shock"},[2]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=100,[2]="#"}},text="Always Shock"}}},stats={[1]="base_chance_to_shock_%"}},[1324]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSapped"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Sap Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextSapped"},limit={[1]={[1]=100,[2]="#"}},text="Always Sap Enemies"}}},stats={[1]="chance_to_inflict_sapped_%"}},[1325]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area Damage"}}},stats={[1]="area_damage_+%"}},[1326]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Wand Physical Damage as Extra Fire Damage"}}},stats={[1]="wand_physical_damage_%_to_add_as_fire"}},[1327]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Wand Physical Damage as Extra Cold Damage"}}},stats={[1]="wand_physical_damage_%_to_add_as_cold"}},[1328]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Wand Physical Damage as Extra Lightning Damage"}}},stats={[1]="wand_physical_damage_%_to_add_as_lightning"}},[1329]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]=1,[2]="#"}},text="Culling Strike"}}},stats={[1]="kill_enemy_on_hit_if_under_10%_life"}},[1330]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]="#",[2]="#"}},text="Hits that Stun Enemies have Culling Strike"}}},stats={[1]="stuns_have_culling_strike"}},[1331]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%d%% chance to Cause Monsters to Flee"}}},stats={[1]="local_hit_causes_monster_flee_%"}},[1332]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%d%% chance to Cause Monsters to Flee"}}},stats={[1]="global_hit_causes_monster_flee_%"}},[1333]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hits can't be Evaded"}}},stats={[1]="local_always_hit"}},[1334]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your hits can't be Evaded"}}},stats={[1]="global_always_hit"}},[1335]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="All hits are Critical Strikes"}}},stats={[1]="always_crit"}},[1336]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Increases wall length by %1%"}}},stats={[1]="wall_maximum_length"}},[1337]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed"}}},stats={[1]="attack_and_cast_speed_+%"}},[1338]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed per Frenzy Charge"}}},stats={[1]="attack_speed_+%_per_frenzy_charge"}},[1339]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed per Frenzy Charge"}}},stats={[1]="attack_and_cast_speed_+%_per_frenzy_charge"}},[1340]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed per Frenzy Charge"}}},stats={[1]="base_attack_speed_+%_per_frenzy_charge"}},[1341]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating per Frenzy Charge"}}},stats={[1]="accuracy_rating_+%_per_frenzy_charge"}},[1342]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frenzy Charge Duration per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frenzy Charge Duration per Frenzy Charge"}}},stats={[1]="frenzy_charge_duration_+%_per_frenzy_charge"}},[1343]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="While at maximum Frenzy Charges, Attacks Poison Enemies"}}},stats={[1]="attacks_poison_while_at_max_frenzy_charges"}},[1344]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Attacks have %1%%% chance to Poison while at maximum Frenzy Charges"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Attacks always Poison while at maximum Frenzy Charges"}}},stats={[1]="attacks_chance_to_poison_%_on_max_frenzy_charges"}},[1345]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Global Critical Strike Multiplier while you have no Frenzy Charges"}}},stats={[1]="global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges"}},[1346]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while you have no Frenzy Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while you have no Frenzy Charges"}}},stats={[1]="skill_area_of_effect_+%_while_no_frenzy_charges"}},[1347]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Character Size"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Character Size"}}},stats={[1]="base_actor_scale_+%"}},[1348]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain a Power Charge when a Minion Dies"}}},stats={[1]="add_power_charge_on_minion_death"}},[1349]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovery from Flasks"}}},stats={[1]="flask_life_to_recover_+%"}},[1350]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Recovery from Flasks"}}},stats={[1]="flask_mana_to_recover_+%"}},[1351]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Recovery rate"}}},stats={[1]="flask_recovery_speed_+%"}},[1352]={lang={English={[1]={limit={[1]={[1]=100,[2]=100},[2]={[1]=1,[2]=1}},text="Flasks gain a Charge when you take a Critical Strike"},[2]={limit={[1]={[1]=100,[2]=100},[2]={[1]="#",[2]="#"}},text="Flasks gain %2% Charges when you take a Critical Strike"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]=1}},text="%1%%% chance for Flasks to gain a Charge when you take a Critical Strike"},[4]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1%%% chance for Flasks to gain %2% Charges when you take a Critical Strike"}}},stats={[1]="gain_flask_charge_when_crit_%",[2]="gain_flask_charge_when_crit_amount"}},[1353]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Weapons"}}},stats={[1]="weapon_fire_damage_+%"}},[1354]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Weapons"}}},stats={[1]="weapon_cold_damage_+%"}},[1355]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage with Weapons"}}},stats={[1]="weapon_lightning_damage_+%"}},[1356]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage with Weapons"}}},stats={[1]="weapon_chaos_damage_+%"}},[1357]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Elemental Damage"}}},stats={[1]="spell_elemental_damage_+%"}},[1358]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Wand Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_wand",[2]="attack_maximum_added_lightning_damage_with_wand"}},[1359]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Wand Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_wand",[2]="attack_maximum_added_fire_damage_with_wand"}},[1360]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Wand Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_wand",[2]="attack_maximum_added_cold_damage_with_wand"}},[1361]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Bow Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_bow",[2]="attack_maximum_added_physical_damage_with_bow"}},[1362]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Axe Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_axes",[2]="attack_maximum_added_cold_damage_with_axes"}},[1363]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Bow Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_bows",[2]="attack_maximum_added_cold_damage_with_bows"}},[1364]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Claw Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_claws",[2]="attack_maximum_added_cold_damage_with_claws"}},[1365]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Dagger Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_daggers",[2]="attack_maximum_added_cold_damage_with_daggers"}},[1366]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Mace or Sceptre Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_maces",[2]="attack_maximum_added_cold_damage_with_maces"}},[1367]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Staff Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_staves",[2]="attack_maximum_added_cold_damage_with_staves"}},[1368]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Sword Attacks"}}},stats={[1]="attack_minimum_added_cold_damage_with_swords",[2]="attack_maximum_added_cold_damage_with_swords"}},[1369]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Axe Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_axes",[2]="attack_maximum_added_fire_damage_with_axes"}},[1370]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Bow Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_bow",[2]="attack_maximum_added_fire_damage_with_bow"}},[1371]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Claw Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_claws",[2]="attack_maximum_added_fire_damage_with_claws"}},[1372]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Dagger Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_daggers",[2]="attack_maximum_added_fire_damage_with_daggers"}},[1373]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Mace or Sceptre Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_maces",[2]="attack_maximum_added_fire_damage_with_maces"}},[1374]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Staff Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_staves",[2]="attack_maximum_added_fire_damage_with_staves"}},[1375]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Sword Attacks"}}},stats={[1]="attack_minimum_added_fire_damage_with_swords",[2]="attack_maximum_added_fire_damage_with_swords"}},[1376]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Axe Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_axes",[2]="attack_maximum_added_lightning_damage_with_axes"}},[1377]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Bow Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_bows",[2]="attack_maximum_added_lightning_damage_with_bows"}},[1378]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Claw Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_claws",[2]="attack_maximum_added_lightning_damage_with_claws"}},[1379]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Dagger Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_daggers",[2]="attack_maximum_added_lightning_damage_with_daggers"}},[1380]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Mace or Sceptre Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_maces",[2]="attack_maximum_added_lightning_damage_with_maces"}},[1381]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Staff Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_staves",[2]="attack_maximum_added_lightning_damage_with_staves"}},[1382]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Sword Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_with_swords",[2]="attack_maximum_added_lightning_damage_with_swords"}},[1383]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks while holding a Shield"}}},stats={[1]="attack_minimum_added_physical_damage_while_holding_a_shield",[2]="attack_maximum_added_physical_damage_while_holding_a_shield"}},[1384]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Unarmed Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_while_unarmed",[2]="attack_maximum_added_physical_damage_while_unarmed"}},[1385]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Axe Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_axes",[2]="attack_maximum_added_physical_damage_with_axes"}},[1386]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Claw Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_claws",[2]="attack_maximum_added_physical_damage_with_claws"}},[1387]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Dagger Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_daggers",[2]="attack_maximum_added_physical_damage_with_daggers"}},[1388]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Mace or Sceptre Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_maces",[2]="attack_maximum_added_physical_damage_with_maces"}},[1389]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Staff Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_staves",[2]="attack_maximum_added_physical_damage_with_staves"}},[1390]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Sword Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_swords",[2]="attack_maximum_added_physical_damage_with_swords"}},[1391]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Wand Attacks"}}},stats={[1]="attack_minimum_added_physical_damage_with_wands",[2]="attack_maximum_added_physical_damage_with_wands"}},[1392]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage to Spells while Dual Wielding"}}},stats={[1]="spell_minimum_added_chaos_damage_while_dual_wielding",[2]="spell_maximum_added_chaos_damage_while_dual_wielding"}},[1393]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage to Spells while holding a Shield"}}},stats={[1]="spell_minimum_added_chaos_damage_while_holding_a_shield",[2]="spell_maximum_added_chaos_damage_while_holding_a_shield"}},[1394]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage to Spells while wielding a Two Handed Weapon"}}},stats={[1]="spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon",[2]="spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon"}},[1395]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells while Dual Wielding"}}},stats={[1]="spell_minimum_added_cold_damage_while_dual_wielding",[2]="spell_maximum_added_cold_damage_while_dual_wielding"}},[1396]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells while holding a Shield"}}},stats={[1]="spell_minimum_added_cold_damage_while_holding_a_shield",[2]="spell_maximum_added_cold_damage_while_holding_a_shield"}},[1397]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells while wielding a Two Handed Weapon"}}},stats={[1]="spell_minimum_added_cold_damage_while_wielding_two_handed_weapon",[2]="spell_maximum_added_cold_damage_while_wielding_two_handed_weapon"}},[1398]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Spells while Dual Wielding"}}},stats={[1]="spell_minimum_added_fire_damage_while_dual_wielding",[2]="spell_maximum_added_fire_damage_while_dual_wielding"}},[1399]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Spells while holding a Shield"}}},stats={[1]="spell_minimum_added_fire_damage_while_holding_a_shield",[2]="spell_maximum_added_fire_damage_while_holding_a_shield"}},[1400]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Spells while wielding a Two Handed Weapon"}}},stats={[1]="spell_minimum_added_fire_damage_while_wielding_two_handed_weapon",[2]="spell_maximum_added_fire_damage_while_wielding_two_handed_weapon"}},[1401]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells while Dual Wielding"}}},stats={[1]="spell_minimum_added_lightning_damage_while_dual_wielding",[2]="spell_maximum_added_lightning_damage_while_dual_wielding"}},[1402]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells while holding a Shield"}}},stats={[1]="spell_minimum_added_lightning_damage_while_holding_a_shield",[2]="spell_maximum_added_lightning_damage_while_holding_a_shield"}},[1403]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells while wielding a Two Handed Weapon"}}},stats={[1]="spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon",[2]="spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon"}},[1404]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Spells while Dual Wielding"}}},stats={[1]="spell_minimum_added_physical_damage_while_dual_wielding",[2]="spell_maximum_added_physical_damage_while_dual_wielding"}},[1405]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Spells while holding a Shield"}}},stats={[1]="spell_minimum_added_physical_damage_while_holding_a_shield",[2]="spell_maximum_added_physical_damage_while_holding_a_shield"}},[1406]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Spells while wielding a Two Handed Weapon"}}},stats={[1]="spell_minimum_added_physical_damage_while_wielding_two_handed_weapon",[2]="spell_maximum_added_physical_damage_while_wielding_two_handed_weapon"}},[1407]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Wands"}}},stats={[1]="wand_elemental_damage_+%"}},[1408]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Staves"}}},stats={[1]="staff_elemental_damage_+%"}},[1409]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Maces or Sceptres"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Maces or Sceptres"}}},stats={[1]="mace_elemental_damage_+%"}},[1410]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge when you Block"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge when you Block"}}},stats={[1]="chance_to_gain_endurance_charge_on_block_%"}},[1411]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Endurance Charge Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Endurance Charge Duration"}}},stats={[1]="endurance_charge_duration_+%"}},[1412]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain a Frenzy Charge when an Enemy Blocks your Damage"}}},stats={[1]="add_frenzy_charge_on_enemy_block"}},[1413]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frenzy Charge Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frenzy Charge Duration"}}},stats={[1]="base_frenzy_charge_duration_+%"}},[1414]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when you Block"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Power Charge when you Block"}}},stats={[1]="chance_to_gain_power_charge_when_block_%"}},[1415]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per Power Charge"}}},stats={[1]="skill_area_of_effect_+%_per_power_charge"}},[1416]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Power Charge when your Trap is triggered by an Enemy"}}},stats={[1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"}},[1417]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when your Mine is Detonated targeting an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Power Charge when your Mine is Detonated targeting an Enemy"}}},stats={[1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"}},[1418]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time per Frenzy Charge"}}},stats={[1]="damage_over_time_+%_per_frenzy_charge"}},[1419]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time per Power Charge"}}},stats={[1]="damage_over_time_+%_per_power_charge"}},[1420]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time while Dual Wielding"}}},stats={[1]="damage_over_time_+%_while_dual_wielding"}},[1421]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time while holding a Shield"}}},stats={[1]="damage_over_time_+%_while_holding_a_shield"}},[1422]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time while wielding a Two Handed Weapon"}}},stats={[1]="damage_over_time_+%_while_wielding_two_handed_weapon"}},[1423]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per Frenzy Charge"}}},stats={[1]="elemental_damage_+%_per_frenzy_charge"}},[1424]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage per Endurance Charge"}}},stats={[1]="physical_damage_per_endurance_charge_+%"}},[1425]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per Power Charge"}}},stats={[1]="spell_damage_+%_per_power_charge"}},[1426]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Wand Damage per Power Charge"}}},stats={[1]="wand_damage_+%_per_power_charge"}},[1427]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Power Charge Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Power Charge Duration"}}},stats={[1]="power_charge_duration_+%"}},[1428]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain a Power Charge when you Kill a Shocked Enemy"}}},stats={[1]="add_power_charge_when_kill_shocked_enemy"}},[1429]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Buffs on you"}}},stats={[1]="buff_effect_on_self_+%"}},[1430]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Auras on you"}}},stats={[1]="aura_effect_on_self_+%"}},[1431]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Auras on your Minions"}}},stats={[1]="minions_have_aura_effect_+%"}},[1432]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Movement Speed on Shocked Ground"}}},stats={[1]="movement_velocity_+%_when_on_shocked_ground"}},[1433]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage on Burning Ground"}}},stats={[1]="damage_+%_when_on_burning_ground"}},[1434]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second on Chilled Ground"}}},stats={[1]="life_regeneration_rate_per_minute_%_when_on_chilled_ground"}},[1435]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Chilled Ground on you"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Chilled Ground on you"}}},stats={[1]="chilled_ground_effect_on_self_+%"}},[1436]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% increased Effect of Burning Ground on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Burning Ground on you"}}},stats={[1]="burning_ground_effect_on_self_+%"}},[1437]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% increased Effect of Shocked Ground on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Shocked Ground on you"}}},stats={[1]="shocked_ground_effect_on_self_+%"}},[1438]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% increased Effect of Desecrated Ground on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Desecrated Ground on you"}}},stats={[1]="desecrated_ground_effect_on_self_+%"}},[1439]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Power Charge when an Enemy Interrupts you while you're Casting a Spell"}}},stats={[1]="add_power_charge_when_interrupted_while_casting"}},[1440]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Party members gain Endurance Charges whenever you do"}}},stats={[1]="share_endurance_charges_with_party_within_distance"}},[1441]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Party members gain Frenzy Charges whenever you do"}}},stats={[1]="share_frenzy_charges_with_party_within_distance"}},[1442]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Party members gain Power Charges whenever you do"}}},stats={[1]="share_power_charges_with_party_within_distance"}},[1443]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased total Recovery per second from Life Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced total Recovery per second from Life Leech"}}},stats={[1]="life_leech_speed_+%"}},[1444]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased total Recovery per second from Mana Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced total Recovery per second from Mana Leech"}}},stats={[1]="mana_leech_speed_+%"}},[1445]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased total Recovery per second from Energy Shield Leech"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced total Recovery per second from Energy Shield Leech"}}},stats={[1]="energy_shield_leech_speed_+%"}},[1446]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Raised Zombies"}}},stats={[1]="base_number_of_zombies_allowed"}},[1447]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Spectres"}}},stats={[1]="base_number_of_spectres_allowed"}},[1448]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Skeletons"}}},stats={[1]="base_number_of_skeletons_allowed"}},[1449]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Raging Spirits"}}},stats={[1]="base_number_of_raging_spirits_allowed"}},[1450]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curses you Cast never expire"}}},stats={[1]="curses_never_expire"}},[1451]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Attack Hits"}}},stats={[1]="base_chance_to_dodge_%"}},[1452]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Spell Hits"}}},stats={[1]="base_chance_to_dodge_spells_%"}},[1453]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes all Armour"}}},stats={[1]="no_physical_damage_reduction_rating"}},[1454]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes all Energy Shield"}}},stats={[1]="no_energy_shield"}},[1455]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Provides Immunity to Chaos Damage"}}},stats={[1]="chaos_immunity"}},[1456]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You can apply an additional Curse"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You can apply %1% additional Curses"}}},stats={[1]="number_of_additional_curses_allowed"}},[1457]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="An additional Curse can be applied to you"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% additional Curses can be applied to you"}}},stats={[1]="number_of_additional_curses_allowed_on_self"}},[1458]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Curses on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Curses on you"}}},stats={[1]="curse_effect_on_self_+%"}},[1459]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Curses on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Curses on you"}}},stats={[1]="self_curse_duration_+%"}},[1460]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned"}}},stats={[1]="cannot_be_stunned"}},[1461]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned"}}},stats={[1]="base_cannot_be_stunned"}},[1462]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned when on Low Life"}}},stats={[1]="cannot_be_stunned_when_on_low_life"}},[1463]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Maximum Mana as Extra Maximum Energy Shield"}}},stats={[1]="mana_%_to_add_as_energy_shield"}},[1464]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="All Physical Damage Converted to Fire Damage"}}},stats={[1]="convert_all_physical_damage_to_fire"}},[1465]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Fire Damage against Ignited Enemies"}}},stats={[1]="physical_damage_as_fire_damage_vs_ignited_enemies_%"}},[1466]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Never deal Critical Strikes"}}},stats={[1]="global_cannot_crit"}},[1467]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes all Mana"}}},stats={[1]="no_mana"}},[1468]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignore all Movement Penalties from Armour"}}},stats={[1]="ignore_armour_movement_penalties"}},[1469]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Minions use your Flasks when summoned"}}},stats={[1]="minions_use_parents_flasks_on_summon"}},[1470]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Charges gained"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flask Charges gained"}}},stats={[1]="charges_gained_+%"}},[1471]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Charges used"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flask Charges used"}}},stats={[1]="flask_charges_used_+%"}},[1472]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Charges used from Mana Flasks"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flask Charges used from Mana Flasks"}}},stats={[1]="flask_mana_charges_used_+%"}},[1473]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Flask Charges used"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Flask Charges used"}}},stats={[1]="minion_flask_charges_used_+%"}},[1474]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flask Effect Duration"}}},stats={[1]="flask_duration_+%"}},[1475]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Flask Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Flask Effect Duration"}}},stats={[1]="flask_duration_on_minions_+%"}},[1476]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Life Recovery rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flask Life Recovery rate"}}},stats={[1]="flask_life_recovery_rate_+%"}},[1477]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Mana Recovery rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flask Mana Recovery rate"}}},stats={[1]="flask_mana_recovery_rate_+%"}},[1478]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot Resist Cold Damage"}}},stats={[1]="cannot_resist_cold_damage"}},[1479]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="All bonuses from an Equipped Shield apply to your Minions instead of you"}}},stats={[1]="minions_get_shield_stats_instead_of_you"}},[1480]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more maximum Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less maximum Energy Shield"}}},stats={[1]="chaos_inoculation_keystone_energy_shield_+%_final"}},[1481]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Spell Damage"}}},stats={[1]="pain_attunement_keystone_spell_damage_+%_final"}},[1482]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Elemental Equilibrium"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased effect of Elemental Equilibrium"}}},stats={[1]="elemental_equilibrium_effect_+%"}},[1483]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=0,[2]=0}},text="Enemies you Attack Reflect %1% Physical Damage to you"},[2]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=1,[2]="#"}},text="Enemies you Attack Reflect %1% to %2% Physical Damage to you"}}},stats={[1]="minimum_physical_damage_to_reflect_to_self_on_attack",[2]="maximum_physical_damage_to_reflect_to_self_on_attack"}},[1484]={lang={English={[1]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=0,[2]="#"}},text="Reflects %1% to %2% Physical Damage to Melee Attackers"}}},stats={[1]="minimum_physical_damage_to_return_to_melee_attacker",[2]="maximum_physical_damage_to_return_to_melee_attacker"}},[1485]={lang={English={[1]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=0,[2]="#"}},text="Reflects %1% to %2% Fire Damage to Melee Attackers"}}},stats={[1]="minimum_fire_damage_to_return_to_melee_attacker",[2]="maximum_fire_damage_to_return_to_melee_attacker"}},[1486]={lang={English={[1]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=0,[2]="#"}},text="Reflects %1% to %2% Cold Damage to Melee Attackers"}}},stats={[1]="minimum_cold_damage_to_return_to_melee_attacker",[2]="maximum_cold_damage_to_return_to_melee_attacker"}},[1487]={lang={English={[1]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=0,[2]="#"}},text="Reflects %1% to %2% Lightning Damage to Melee Attackers"}}},stats={[1]="minimum_lightning_damage_to_return_to_melee_attacker",[2]="maximum_lightning_damage_to_return_to_melee_attacker"}},[1488]={lang={English={[1]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=0,[2]="#"}},text="Reflects %1% to %2% Chaos Damage to Melee Attackers"}}},stats={[1]="minimum_chaos_damage_to_return_to_melee_attacker",[2]="maximum_chaos_damage_to_return_to_melee_attacker"}},[1489]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Physical Damage to Melee Attackers"}}},stats={[1]="physical_damage_to_return_to_melee_attacker"}},[1490]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Cold Damage to Melee Attackers"}}},stats={[1]="cold_damage_to_return_to_melee_attacker"}},[1491]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Fire Damage to Melee Attackers"}}},stats={[1]="fire_damage_to_return_to_melee_attacker"}},[1492]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Lightning Damage to Melee Attackers"}}},stats={[1]="lightning_damage_to_return_to_melee_attacker"}},[1493]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Chaos Damage to Melee Attackers"}}},stats={[1]="chaos_damage_to_return_to_melee_attacker"}},[1494]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Physical Damage when Hit"}}},stats={[1]="physical_damage_to_return_when_hit"}},[1495]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Fire Damage when Hit"}}},stats={[1]="fire_damage_to_return_when_hit"}},[1496]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Cold Damage when Hit"}}},stats={[1]="cold_damage_to_return_when_hit"}},[1497]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Lightning Damage when Hit"}}},stats={[1]="lightning_damage_to_return_when_hit"}},[1498]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Reflects %1% Chaos Damage when Hit"}}},stats={[1]="chaos_damage_to_return_when_hit"}},[1499]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Physical Damage taken from Attack Hits"}}},stats={[1]="physical_damage_taken_when_hit_by_attack"}},[1500]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Fire Damage taken from Attack Hits"}}},stats={[1]="fire_damage_taken_when_hit_by_attack"}},[1501]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Cold Damage taken from Attack Hits"}}},stats={[1]="cold_damage_taken_when_hit_by_attack"}},[1502]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Lightning Damage taken from Attack Hits"}}},stats={[1]="lightning_damage_taken_when_hit_by_attack"}},[1503]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Chaos Damage taken from Attack Hits"}}},stats={[1]="chaos_damage_taken_when_hit_by_attack"}},[1504]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles deal %1%%% less Damage"}}},stats={[1]="active_skill_projectile_damage_+%_final"}},[1505]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Over Time caused by Projectiles deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Damage Over Time caused by Projectiles deals %1%%% less Damage"}}},stats={[1]="active_skill_damage_over_time_from_projectile_hits_+%_final"}},[1506]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional chance to Dodge Attack Hits"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1$+d%% chance to Dodge Attack Hits"}}},stats={[1]="acrobatics_additional_chance_to_dodge_%"}},[1507]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional chance to Dodge Spell Hits"}}},stats={[1]="phase_acrobatics_additional_chance_to_dodge_spells_%"}},[1508]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Skills deal you %1%%% of Mana Spent on Skill Mana Costs as Physical Damage"}}},stats={[1]="self_physical_damage_on_skill_use_%_mana_cost"}},[1509]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Curse Skills have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Curse Skills have %1%%% reduced Cast Speed"}}},stats={[1]="curse_cast_speed_+%"}},[1510]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Elemental Ailments you cause also affect other nearby Enemies"}}},stats={[1]="elemental_status_effect_aura_radius"}},[1511]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignites you inflict spread to other Enemies within a Radius of %1%"}}},stats={[1]="base_ignite_proliferation_radius"}},[1512]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Shocks you inflict spread to other Enemies within a Radius of %1%"}}},stats={[1]="base_shock_proliferation_radius"}},[1513]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect of Aura Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect of Aura Skills"}}},stats={[1]="base_aura_area_of_effect_+%"}},[1514]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect of Curse Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect of Curse Skills"}}},stats={[1]="curse_area_of_effect_+%"}},[1515]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Reserved"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Reserved"}}},stats={[1]="base_mana_reservation_+%"}},[1516]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Physical Damage taken from Attack Hits"}}},stats={[1]="physical_attack_damage_taken_+"}},[1517]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Physical Damage taken from Hits"}}},stats={[1]="physical_damage_taken_+"}},[1518]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Physical Damage taken from Hits per Level"}}},stats={[1]="physical_damage_taken_+_per_level"}},[1519]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Fire Damage taken from Hits"}}},stats={[1]="fire_damage_taken_+"}},[1520]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken"}}},stats={[1]="base_damage_taken_+%"}},[1521]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area Damage taken from Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area Damage taken from Hits"}}},stats={[1]="area_damage_taken_from_hits_+%"}},[1522]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Hits"}}},stats={[1]="damage_taken_+%_from_hits"}},[1523]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage taken"}}},stats={[1]="physical_damage_taken_+%"}},[1524]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage taken"}}},stats={[1]="fire_damage_taken_+%"}},[1525]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage taken"}}},stats={[1]="chaos_damage_taken_+%"}},[1526]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken while on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken while on Full Energy Shield"}}},stats={[1]="damage_taken_+%_while_es_full"}},[1527]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Damage Over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Damage Over Time"}}},stats={[1]="degen_effect_+%"}},[1528]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Physical Damage taken from Projectile Attacks"}}},stats={[1]="physical_ranged_attack_damage_taken_+"}},[1529]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Skeletons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Skeletons"}}},stats={[1]="damage_taken_+%_from_skeletons"}},[1530]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Ghosts"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Ghosts"}}},stats={[1]="damage_taken_+%_from_ghosts"}},[1531]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block"}}},stats={[1]="local_additional_block_chance_%"}},[1532]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can't deal Damage with your Skills yourself"}}},stats={[1]="deal_no_damage_yourself"}},[1533]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Summoned Totems"}}},stats={[1]="base_number_of_totems_allowed"}},[1534]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% Trap placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Traps placed at a time"}}},stats={[1]="base_number_of_traps_allowed"}},[1535]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% Remote Mine placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% Remote Mines placed at a time"}}},stats={[1]="base_number_of_remote_mines_allowed"}},[1536]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Summoned Totems"}}},stats={[1]="number_of_additional_totems_allowed"}},[1537]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% additional Trap placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% additional Traps placed at a time"}}},stats={[1]="number_of_additional_traps_allowed"}},[1538]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Can have up to %1% additional Remote Mine placed at a time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Can have up to %1% additional Remote Mines placed at a time"}}},stats={[1]="number_of_additional_remote_mines_allowed"}},[1539]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Block Attacks"}}},stats={[1]="cannot_block_attacks"}},[1540]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction when on Low Life"}}},stats={[1]="additional_physical_damage_reduction_%_when_on_low_life"}},[1541]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Share Endurance Charges with nearby party members"}}},stats={[1]="endurance_only_conduit"}},[1542]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Share Frenzy Charges with nearby party members"}}},stats={[1]="frenzy_only_conduit"}},[1543]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Share Power Charges with nearby party members"}}},stats={[1]="power_only_conduit"}},[1544]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Blind Enemies on hit"}}},stats={[1]="local_chance_to_blind_on_hit_%"}},[1545]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=100,[2]="#"}},text="Grants Fortify on Melee hit"},[2]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Fortify on Melee hit"}}},stats={[1]="chance_to_fortify_on_melee_hit_+%"}},[1546]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fortify duration"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fortify duration"}}},stats={[1]="fortify_duration_+%"}},[1547]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fortify Buffs you create instead grant 30%% more Evasion Rating"}}},stats={[1]="should_use_alternate_fortify"}},[1548]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while you have Fortify"}}},stats={[1]="attack_and_cast_speed_+%_while_you_have_fortify"}},[1549]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fortify Effect"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fortify Effect"}}},stats={[1]="fortify_effect_+%"}},[1550]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage while you have Fortify"}}},stats={[1]="melee_physical_damage_+%_while_fortify_is_active"}},[1551]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You have no Life Regeneration"}}},stats={[1]="no_life_regeneration"}},[1552]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You have no Mana Regeneration"}}},stats={[1]="no_mana_regeneration"}},[1553]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction"}}},stats={[1]="base_additional_physical_damage_reduction_%"}},[1554]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% additional Physical Damage Reduction"}}},stats={[1]="minion_additional_physical_damage_reduction_%"}},[1555]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction per Endurance Charge"}}},stats={[1]="physical_damage_reduction_%_per_endurance_charge"}},[1556]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is %1%%% larger"}}},stats={[1]="map_size_+%"}},[1557]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is a Maze"}}},stats={[1]="map_is_branchy"}},[1558]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains unbridged gaps to cross"}}},stats={[1]="map_display_area_contains_unbridged_gaps_to_cross"}},[1559]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has increased monster variety"}}},stats={[1]="map_additional_number_of_packs_to_choose"}},[1560]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of burning ground"}}},stats={[1]="map_base_ground_fire_damage_to_deal_per_minute"}},[1561]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of burning ground"}}},stats={[1]="map_base_ground_fire_damage_to_deal_per_10_seconds"}},[1562]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]="#"}},text="Area has patches of chilled ground"}}},stats={[1]="map_ground_ice"}},[1563]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]="#"}},text="Area has patches of chilled ground"}}},stats={[1]="map_ground_ice_base_magnitude"}},[1564]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of shocking ground"}}},stats={[1]="map_ground_lightning"}},[1565]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of shocking ground"}}},stats={[1]="map_ground_lightning_base_magnitude"}},[1566]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of tar"}}},stats={[1]="map_ground_tar_movement_speed_+%"}},[1567]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of desecrated ground"}}},stats={[1]="map_base_ground_desecration_damage_to_deal_per_minute"}},[1568]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of burning ground"}}},stats={[1]="map_tempest_base_ground_fire_damage_to_deal_per_minute"}},[1569]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]="#"}},text="Area has patches of chilled ground"}}},stats={[1]="map_tempest_ground_ice"}},[1570]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of shocking ground"}}},stats={[1]="map_tempest_ground_lightning"}},[1571]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of tar"}}},stats={[1]="map_tempest_ground_tar_movement_speed_+%"}},[1572]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has patches of desecrated ground"}}},stats={[1]="map_tempest_base_ground_desecration_damage_to_deal_per_minute"}},[1573]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Areas Have the Same Layout for all Players"}}},stats={[1]="map_fixed_seed"}},[1574]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minimap is Revealed"}}},stats={[1]="map_minimap_revealed"}},[1575]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Life, Mana, Energy Shield and Flasks are not refilled in Towns"}}},stats={[1]="map_no_refills_in_town"}},[1576]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains many Totems"}}},stats={[1]="map_packs_are_totems"}},[1577]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has Damaging Totems"}}},stats={[1]="map_packs_are_str_mission_totems"}},[1578]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Skeletons"}}},stats={[1]="map_packs_are_skeletons"}},[1579]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Bandits"}}},stats={[1]="map_packs_are_bandits"}},[1580]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Goatmen"}}},stats={[1]="map_packs_are_goatmen"}},[1581]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Animals"}}},stats={[1]="map_packs_are_animals"}},[1582]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Demons"}}},stats={[1]="map_packs_are_demons"}},[1583]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Humanoids"}}},stats={[1]="map_packs_are_humanoids"}},[1584]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Sea Witches and their Spawn"}}},stats={[1]="map_packs_are_sea_witches_and_spawn"}},[1585]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Undead"}}},stats={[1]="map_packs_are_undead_and_necromancers"}},[1586]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by ranged monsters"}}},stats={[1]="map_packs_fire_projectiles"}},[1587]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by wild Animals"}}},stats={[1]="display_map_inhabited_by_wild_beasts"}},[1588]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Unique Boss drops an additional Map"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Unique Boss drops %1% additional Maps"}}},stats={[1]="map_display_unique_boss_drops_X_maps"}},[1589]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Map areas are +%1% Tier"}}},stats={[1]="map_additional_tier"}},[1590]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area is inhabited by %1% additional Rogue Exile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area is inhabited by %1% additional Rogue Exiles"}}},stats={[1]="map_spawn_extra_exiles"}},[1591]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Map areas have Warlord's Influence"}}},stats={[1]="map_warlord_influence"}},[1592]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area is inhabited by %1% additional Warband"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area is inhabited by %1% additional Warbands"}}},stats={[1]="map_spawn_extra_warbands"}},[1593]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an extra Shrine"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% extra Shrines"}}},stats={[1]="map_num_extra_shrines"}},[1594]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Shrines are corrupted by Darkness"}}},stats={[1]="map_shrines_are_darkshrines"}},[1595]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area can contain Mysterious Harbingers"}}},stats={[1]="map_spawn_harbingers"}},[1596]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Ancient Talismans possess monsters throughout Wraeclast"}}},stats={[1]="map_spawn_talismans"}},[1597]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Caches of Perandus wealth can be found throughout Wraeclast"}}},stats={[1]="map_spawn_perandus_chests"}},[1598]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains %1% additional Monster possessed by an Ancient Talisman"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Monsters possessed by Ancient Talismans"}}},stats={[1]="map_spawn_extra_talismans"}},[1599]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Stone Circle"}}},stats={[1]="map_force_stone_circle"}},[1600]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area is haunted by %1% additional Tormented Spirit"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area is haunted by %1% additional Tormented Spirits"}}},stats={[1]="map_spawn_extra_torment_spirits"}},[1601]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an extra Strongbox"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% extra Strongboxes"}}},stats={[1]="map_num_extra_strongboxes"}},[1602]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Magic Monsters"}}},stats={[1]="map_number_of_magic_packs_+%"}},[1603]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Rare Monsters"}}},stats={[1]="map_number_of_rare_packs_+%"}},[1604]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters Fracture"}}},stats={[1]="map_non_unique_monsters_spawn_X_monsters_on_death"}},[1605]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Players take %1% Chaos Damage per second"}}},stats={[1]="map_player_base_chaos_damage_taken_per_minute"}},[1606]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have Blood Magic"}}},stats={[1]="map_player_has_blood_magic_keystone"}},[1607]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have Elemental Equilibrium"}}},stats={[1]="map_player_has_elemental_equilibrium_keystone"}},[1608]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have Chaos Inoculation"}}},stats={[1]="map_player_has_chaos_inoculation_keystone"}},[1609]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Vulnerability"}}},stats={[1]="map_player_has_level_X_vulnerability"}},[1610]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Warlord's Mark"}}},stats={[1]="map_player_has_level_X_warlords_mark"}},[1611]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Enfeeble"}}},stats={[1]="map_player_has_level_X_enfeeble"}},[1612]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Temporal Chains"}}},stats={[1]="map_player_has_level_X_temporal_chains"}},[1613]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Elemental Weakness"}}},stats={[1]="map_player_has_level_X_elemental_weakness"}},[1614]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Punishment"}}},stats={[1]="map_player_has_level_X_punishment"}},[1615]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have no Life or Mana Regeneration"}}},stats={[1]="map_player_no_regeneration"}},[1616]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% maximum Player Resistances"}}},stats={[1]="map_additional_player_maximum_resistances_%"}},[1617]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% more Recovery of Life, Mana and Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% less Recovery of Life, Mana and Energy Shield"}}},stats={[1]="map_player_status_recovery_speed_+%"}},[1618]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players deal %1%%% less Projectile Damage"}}},stats={[1]="map_player_projectile_damage_+%_final"}},[1619]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players convert all Physical Damage to Fire"}}},stats={[1]="map_players_convert_all_physical_damage_to_fire"}},[1620]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles move at %1%%% increased Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles move at %1%%% reduced Speed"}}},stats={[1]="map_projectile_speed_+%"}},[1621]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Monster Life"}}},stats={[1]="map_monsters_life_+%"}},[1622]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters have %1%%% reduced Area of Effect"}}},stats={[1]="map_monsters_area_of_effect_+%"}},[1623]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Monsters have %1%%% chance to Avoid being Chilled or Frozen"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Monsters cannot be Chilled or Frozen"}}},stats={[1]="map_monsters_avoid_freeze_and_chill_%"}},[1624]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Monsters have %1%%% chance to Avoid being Ignited"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Monsters cannot be Ignited"}}},stats={[1]="map_monsters_avoid_ignite_%"}},[1625]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Monsters have %1%%% chance to Avoid being Shocked"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Monsters cannot be Shocked"}}},stats={[1]="map_monsters_avoid_shock_%"}},[1626]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]=99}},text="Monsters have %1%%% chance to Avoid Ailments"},[2]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=100,[2]="#"}},text="Monsters cannot be affected by Ailments"}}},stats={[1]="map_monsters_avoid_ailments_%"}},[1627]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]=99}},text="Monsters have %1%%% chance to Avoid Elemental Ailments"},[2]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=100,[2]="#"}},text="Monsters cannot be affected by Elemental Ailments"}}},stats={[1]="map_monsters_avoid_elemental_ailments_%"}},[1628]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters have %1%%% reduced Critical Strike Chance"}}},stats={[1]="map_monsters_critical_strike_chance_+%"}},[1629]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Monster Critical Strike Multiplier"}}},stats={[1]="map_monsters_critical_strike_multiplier_+"}},[1630]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1$+d%% Monster Life Leech Resistance"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot Leech Life from Monsters"}}},stats={[1]="map_monsters_life_leech_resistance_%"}},[1631]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1$+d%% Monster Mana Leech Resistance"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot Leech Mana from Monsters"}}},stats={[1]="map_monsters_mana_leech_resistance_%"}},[1632]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Monster Damage"}}},stats={[1]="map_monsters_damage_+%"}},[1633]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Monsters have Onslaught"}}},stats={[1]="map_monsters_have_onslaught"}},[1634]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Monster Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Monster Movement Speed"}}},stats={[1]="map_monsters_movement_speed_+%"}},[1635]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Monster Attack Speed"}}},stats={[1]="map_monsters_attack_speed_+%"}},[1636]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Monster Cast Speed"}}},stats={[1]="map_monsters_cast_speed_+%"}},[1637]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters reflect %1%%% of Physical Damage"}}},stats={[1]="map_monsters_reflect_%_physical_damage"}},[1638]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters reflect %1%%% of Elemental Damage"}}},stats={[1]="map_monsters_reflect_%_elemental_damage"}},[1639]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Monsters fire %1% additional Projectiles"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Players fire %2% additional Projectiles"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Players and Monsters fire %1% additional Projectiles"}}},stats={[1]="map_monsters_additional_number_of_projecitles",[2]="map_players_additional_number_of_projectiles"}},[1640]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1%%% Monster Fire Resistance"}}},stats={[1]="map_monsters_additional_fire_resistance"}},[1641]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1%%% Monster Cold Resistance"}}},stats={[1]="map_monsters_additional_cold_resistance"}},[1642]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1%%% Monster Lightning Resistance"}}},stats={[1]="map_monsters_additional_lightning_resistance"}},[1643]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1%%% Monster Physical Damage Reduction"}}},stats={[1]="map_monsters_additional_physical_damage_reduction"}},[1644]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters cannot be Stunned"}}},stats={[1]="map_monsters_cannot_be_stunned"}},[1645]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Monsters Poison on Hit"}}},stats={[1]="map_monsters_poison_on_hit"}},[1646]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Monster Damage is Converted to Fire"}}},stats={[1]="map_monsters_%_physical_damage_to_convert_to_fire"}},[1647]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Monster Damage is Converted to Cold"}}},stats={[1]="map_monsters_%_physical_damage_to_convert_to_cold"}},[1648]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Monster Damage is Converted to Lightning"}}},stats={[1]="map_monsters_%_physical_damage_to_convert_to_lightning"}},[1649]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters deal %1%%% extra Physical Damage as Fire"}}},stats={[1]="map_monsters_%_physical_damage_to_add_as_fire"}},[1650]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters deal %1%%% extra Physical Damage as Cold"}}},stats={[1]="map_monsters_%_physical_damage_to_add_as_cold"}},[1651]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters deal %1%%% extra Physical Damage as Lightning"}}},stats={[1]="map_monsters_%_physical_damage_to_add_as_lightning"}},[1652]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters deal extra Chaos Damage"}}},stats={[1]="map_monsters_%_physical_damage_to_convert_to_chaos"}},[1653]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters gain %1% Frenzy Charge every 20 seconds"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Monsters gain %1% Frenzy Charges every 20 seconds"}}},stats={[1]="map_monsters_gain_x_frenzy_charges_every_20_seconds"}},[1654]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters gain %1% Endurance Charge every 20 seconds"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Monsters gain %1% Endurance Charges every 20 seconds"}}},stats={[1]="map_monsters_gain_x_endurance_charges_every_20_seconds"}},[1655]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters gain %1% Power Charge every 20 seconds"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Monsters gain %1% Power Charges every 20 seconds"}}},stats={[1]="map_monsters_gain_x_power_charges_every_20_seconds"}},[1656]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Monsters are Immune to randomly chosen Elemental Ailments or Stun"}}},stats={[1]="map_monsters_immune_to_a_random_status_ailment_or_stun"}},[1657]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters' Melee Attacks apply random Curses on Hit"}}},stats={[1]="map_monster_melee_attacks_apply_random_curses"}},[1658]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to inflict a random Curse on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Monsters inflict a random Curse on Hit"}}},stats={[1]="map_monster_melee_attacks_apply_random_curses_%_chance"}},[1659]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters reflect Curses"}}},stats={[1]="map_monsters_reflect_curses"}},[1660]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters' skills Chain %1% additional times"}}},stats={[1]="map_monster_skills_chain_X_additional_times"}},[1661]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters convert all Physical Damage to Fire"}}},stats={[1]="map_monsters_convert_all_physical_damage_to_fire"}},[1662]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters drop Burning Ground on death"}}},stats={[1]="map_monsters_drop_ground_fire_on_death_base_radius"}},[1663]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters are Immune to Curses"}}},stats={[1]="map_monsters_are_immune_to_curses"}},[1664]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters are Hexproof"}}},stats={[1]="map_monsters_are_hexproof"}},[1665]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Curses have %1%%% increased effect on Monsters"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Curses have %1%%% reduced effect on Monsters"}}},stats={[1]="map_monsters_curse_effect_+%"}},[1666]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters drop no items"}}},stats={[1]="map_monster_no_drops"}},[1667]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains two Unique Bosses"}}},stats={[1]="map_spawn_two_bosses"}},[1668]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss deals %1%%% increased Damage"}}},stats={[1]="map_boss_damage_+%"}},[1669]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss has %1%%% increased Attack and Cast Speed"}}},stats={[1]="map_boss_attack_and_cast_speed_+%"}},[1670]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss has %1%%% increased Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Unique Boss has %1%%% reduced Life"}}},stats={[1]="map_boss_maximum_life_+%"}},[1671]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Unique Boss has %1%%% reduced Area of Effect"}}},stats={[1]="map_boss_area_of_effect_+%"}},[1672]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chests have %1%%% increased Item Quantity"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Chests have %1%%% reduced Item Quantity"}}},stats={[1]="map_chest_item_quantity_+%"}},[1673]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chests have %1%%% increased Item Rarity"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Chests have %1%%% reduced Item Rarity"}}},stats={[1]="map_chest_item_rarity_+%"}},[1674]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has %1% waves of monsters"}}},stats={[1]="map_has_X_waves_of_monsters"}},[1675]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has %1% seconds between monster waves"}}},stats={[1]="map_has_X_seconds_between_waves"}},[1676]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains no monsters"}}},stats={[1]="display_map_no_monsters"}},[1677]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Physical Damage with Unarmed Attacks"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Physical Damage with Unarmed Attacks"}}},stats={[1]="unique_facebreaker_unarmed_physical_damage_+%_final"}},[1678]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Unarmed Attacks"}}},stats={[1]="attack_minimum_added_lightning_damage_while_unarmed",[2]="attack_maximum_added_lightning_damage_while_unarmed"}},[1679]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmed"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells while Unarmed"}}},stats={[1]="spell_minimum_added_lightning_damage_while_unarmed",[2]="spell_maximum_added_lightning_damage_while_unarmed"}},[1680]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Reserves %1%%% of Life"}}},stats={[1]="life_reserved_by_stat_%"}},[1681]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Cannot Leech Life From you"}}},stats={[1]="cannot_have_life_leeched_from"}},[1682]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Cannot Leech Mana From you"}}},stats={[1]="cannot_have_mana_leeched_from"}},[1683]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% More Damage with Arrow Hits at Close Range"}}},stats={[1]="unique_chin_sol_close_range_bow_damage_+%_final"}},[1684]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]="#",[2]="#"}},text="Bow Knockback at Close Range"}}},stats={[1]="unique_chin_sol_close_range_knockback"}},[1685]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage from Hits taken as Physical Damage"}}},stats={[1]="base_fire_hit_damage_taken_%_as_physical"}},[1686]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% of Fire Damage from Hits taken as Physical Damage"}}},stats={[1]="base_fire_hit_damage_taken_%_as_physical_value_negated"}},[1687]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Fire Damage"}}},stats={[1]="physical_damage_taken_%_as_fire"}},[1688]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Cold Damage"}}},stats={[1]="physical_damage_taken_%_as_cold"}},[1689]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Lightning Damage"}}},stats={[1]="physical_damage_taken_%_as_lightning"}},[1690]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You take Chaos Damage instead of Physical Damage from Bleeding"}}},stats={[1]="bleeding_damage_on_self_converted_to_chaos"}},[1691]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Chaos Damage"}}},stats={[1]="physical_damage_taken_%_as_chaos"}},[1692]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Elemental Damage from Hits taken as Chaos Damage"}}},stats={[1]="elemental_damage_taken_%_as_chaos"}},[1693]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Fire Damage taken causes extra Physical Damage"}}},stats={[1]="fire_damage_taken_%_causes_additional_physical_damage"}},[1694]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage taken gained as Mana over 4 seconds when Hit"}}},stats={[1]="damage_taken_goes_to_mana_%"}},[1695]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage"}}},stats={[1]="unique_quill_rain_damage_+%_final"}},[1696]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Melee Physical Damage taken reflected to Attacker"}}},stats={[1]="melee_physical_damage_taken_%_to_deal_to_attacker"}},[1697]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage"}}},stats={[1]="additional_block_%"}},[1698]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage for 2 seconds every 5 seconds"}}},stats={[1]="additional_block_chance_%_for_1_second_every_5_seconds"}},[1699]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while wielding a Bow"}}},stats={[1]="with_bow_additional_block_%"}},[1700]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Frozen by you take 20%% increased Damage"}}},stats={[1]="frozen_monsters_take_increased_damage"}},[1701]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Enemies take %1%%% increased Damage for each type of Ailment you have inflicted on them"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="Enemies take %1%%% reduced Damage for each type of Ailment you have inflicted on them"}}},stats={[1]="ailment_types_apply_damage_taken_+%"}},[1702]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour against Projectiles"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour against Projectiles"}}},stats={[1]="physical_damage_reduction_rating_+%_against_projectiles"}},[1703]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Projectile Attack Damage"}}},stats={[1]="additional_block_chance_against_projectiles_%"}},[1704]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Leech"}}},stats={[1]="base_cannot_leech"}},[1705]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]=1,[2]="#"}},text="Your Attacks deal %1$+d Physical Damage"}}},stats={[1]="unique_dewaths_hide_physical_attack_damage_dealt_-"}},[1706]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Energy Shield when you Block"}}},stats={[1]="energy_shield_%_gained_on_block"}},[1707]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Replenishes Energy Shield by %1%%% of Armour when you Block"}}},stats={[1]="energy_shield_%_of_armour_rating_gained_on_block"}},[1708]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Poisonous Hit"}}},stats={[1]="local_poison_on_hit"}},[1709]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowMana"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage taken when on Low Mana"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowMana"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage taken when on Low Mana"}}},stats={[1]="spell_damage_taken_+%_when_on_low_mana"}},[1710]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Critical Strike Chance while wielding a Staff"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Critical Strike Chance while wielding a Staff"}}},stats={[1]="global_critical_strike_chance_+%_while_holding_staff"}},[1711]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Global Critical Strike Multiplier while wielding a Staff"}}},stats={[1]="global_critical_strike_multiplier_+_while_holding_staff"}},[1712]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Critical Strike Chance while wielding a Bow"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Critical Strike Chance while wielding a Bow"}}},stats={[1]="global_critical_strike_chance_+%_while_holding_bow"}},[1713]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Global Critical Strike Multiplier while wielding a Bow"}}},stats={[1]="global_critical_strike_multiplier_+_while_holding_bow"}},[1714]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Reflection"}}},stats={[1]="reflect_curses"}},[1715]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Curses"}}},stats={[1]="unaffected_by_curses"}},[1716]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attacks deal no Physical Damage"}}},stats={[1]="attacks_deal_no_physical_damage"}},[1717]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Causes Bleeding on Hit"}}},stats={[1]="local_bleed_on_hit"}},[1718]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="25%% chance to cause Bleeding on Hit"}}},stats={[1]="local_chance_to_bleed_on_hit_25%"}},[1719]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="50%% chance to cause Bleeding on Hit"}}},stats={[1]="local_chance_to_bleed_on_hit_50%"}},[1720]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to cause Bleeding on Hit"}}},stats={[1]="local_chance_to_bleed_on_hit_%"}},[1721]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Causes Bleeding when you Stun"}}},stats={[1]="attacks_bleed_on_stun"}},[1722]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to inflict Bleeding on Critical Strike with Attacks"}}},stats={[1]="bleed_on_crit_%_with_attacks"}},[1723]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99}},text="Melee Critical Strikes have %1%%% chance to cause Bleeding"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"}},text="Melee Critical Strikes cause Bleeding"}}},stats={[1]="bleed_on_melee_crit_chance_%"}},[1724]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99}},text="Melee Attacks have %1%%% chance to cause Bleeding"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"}},text="Melee Attacks cause Bleeding"}}},stats={[1]="bleed_on_melee_attack_chance_%"}},[1725]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99}},text="Bow Attacks have %1%%% chance to cause Bleeding"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"}},text="Bow Attacks cause Bleeding"}}},stats={[1]="bleed_on_bow_attack_chance_%"}},[1726]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Attacks have %1%%% chance to cause Bleeding"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0}},text="Attacks cause Bleeding"},[3]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0}},text="Attacks cause Bleeding"},[4]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Attacks cannot cause Bleeding"}}},stats={[1]="bleed_on_hit_with_attacks_%",[2]="global_bleed_on_hit",[3]="cannot_cause_bleeding"}},[1727]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage against Bleeding Enemies"}}},stats={[1]="attack_damage_vs_bleeding_enemies_+%"}},[1728]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage against Bleeding Enemies"}}},stats={[1]="melee_damage_vs_bleeding_enemies_+%"}},[1729]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies you inflict Bleeding on grant %1%%% increased Flask Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies you inflict Bleeding on grant %1%%% reduced Flask Charges"}}},stats={[1]="enemies_you_bleed_grant_flask_charges_+%"}},[1730]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage against Bleeding Enemies"}}},stats={[1]="minimum_added_physical_damage_vs_bleeding_enemies",[2]="maximum_added_physical_damage_vs_bleeding_enemies"}},[1731]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Golden Radiance"}}},stats={[1]="display_golden_radiance"}},[1732]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Supported Attack Skills cannot be used with Melee Weapons"}}},stats={[1]="disable_skill_if_melee_attack"}},[1733]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Stun Threshold with this Weapon"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Enemy Stun Threshold with this Weapon"}}},stats={[1]="local_stun_threshold_reduction_+%"}},[1734]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Light Radius also apply to Area of Effect at %1%%% of their value"}}},stats={[1]="light_radius_additive_modifiers_apply_to_area_%_value"}},[1735]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Light Radius also apply to Damage"}}},stats={[1]="light_radius_additive_modifiers_apply_to_damage"}},[1736]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Light Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Light Radius"}}},stats={[1]="light_radius_+%"}},[1737]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Light Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Light Radius"}}},stats={[1]="virtual_light_radius_+%"}},[1738]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]="#",[2]="#"}},text="You have Phasing while at maximum Frenzy Charges"}}},stats={[1]="gain_phasing_while_at_maximum_frenzy_charges"}},[1739]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]="#",[2]="#"}},text="You have Phasing during Onslaught"}}},stats={[1]="gain_phasing_while_you_have_onslaught"}},[1740]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You have Phasing if Energy Shield Recharge has started Recently"}}},stats={[1]="gain_phasing_for_4_seconds_on_begin_es_recharge"}},[1741]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits while Phasing"}}},stats={[1]="chance_to_dodge_attacks_%_while_phasing"}},[1742]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Rarity of Items found while Phasing"}}},stats={[1]="item_found_rarity_+%_while_phasing"}},[1743]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate while Phasing"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate while Phasing"}}},stats={[1]="mana_regeneration_rate_+%_while_phasing"}},[1744]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Light Radius while Phasing"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Light Radius while Phasing"}}},stats={[1]="light_radius_+%_while_phased"}},[1745]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chaos Damage does not bypass Energy Shield"}}},stats={[1]="chaos_damage_does_not_bypass_energy_shield"}},[1746]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextGroundTar"},limit={[1]={[1]="#",[2]="#"}},text="Spreads Tar when you take a Critical Strike"}}},stats={[1]="ground_tar_on_take_crit_base_area_of_effect_radius"}},[1747]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Curse Enemies with a random Curse on Hit"}}},stats={[1]="random_curse_on_hit_%"}},[1748]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Curse Enemies with Enfeeble on Hit"}}},stats={[1]="curse_on_hit_%_enfeeble"}},[1749]={lang={English={[1]={limit={[1]={[1]=100,[2]=100}},text="Curse Enemies with Temporal Chains on Hit"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Curse Enemies with Temporal Chains on Hit"}}},stats={[1]="curse_on_hit_%_temporal_chains"}},[1750]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Temporal Chains on Hit"}}},stats={[1]="curse_on_hit_level_temporal_chains"}},[1751]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Vulnerability on Hit"}}},stats={[1]="curse_on_hit_level_vulnerability"}},[1752]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Curse Enemies with Level 10 Vulnerability on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Curse Enemies with Level 10 Vulnerability on Hit"}}},stats={[1]="curse_on_hit_level_10_vulnerability_%"}},[1753]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Elemental Weakness on Hit"}}},stats={[1]="curse_on_hit_level_elemental_weakness"}},[1754]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Assassin's Mark on Hit"}}},stats={[1]="curse_on_hit_level_assassins_mark"}},[1755]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Frostbite on Hit"}}},stats={[1]="curse_on_hit_level_cold_weakness"}},[1756]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Curse Enemies with Level %1% Conductivity on Hit"}}},stats={[1]="curse_on_hit_level_conductivity"}},[1757]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Despair on Hit"}}},stats={[1]="curse_on_hit_level_despair"}},[1758]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Enfeeble on Hit"}}},stats={[1]="curse_on_hit_level_enfeeble"}},[1759]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Curse Enemies with Level %1% Flammability on Hit"}}},stats={[1]="curse_on_hit_level_flammability"}},[1760]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Curse Enemies with Level %1% Frostbite on Hit"}}},stats={[1]="curse_on_hit_level_frostbite"}},[1761]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Poacher's Mark on Hit"}}},stats={[1]="curse_on_hit_level_poachers_mark"}},[1762]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Projectile Weakness on Hit"}}},stats={[1]="curse_on_hit_level_projectile_weakness"}},[1763]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Warlord's Mark on Hit"}}},stats={[1]="curse_on_hit_level_warlords_mark"}},[1764]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]="#",[2]="#"}},text="Your Spells have Culling Strike"}}},stats={[1]="spells_have_culling_strike"}},[1765]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]="#",[2]="#"}},text="Nearby Allies have Culling Strike"}}},stats={[1]="local_display_aura_allies_have_culling_strike"}},[1766]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Strike Range"}}},stats={[1]="melee_range_+"}},[1767]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Evasion Rating when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Evasion Rating when on Low Life"}}},stats={[1]="evasion_rating_+%_when_on_low_life"}},[1768]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Life Leech is instant"}}},stats={[1]="base_life_leech_is_instant"}},[1769]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Life Leech from Hits with this Weapon is instant"}}},stats={[1]="local_life_leech_is_instant"}},[1770]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Life and Mana Leech from Critical Strikes are instant"}}},stats={[1]="base_leech_is_instant_on_critical"}},[1771]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Life and Mana Leech from Critical Strikes are instant"}}},stats={[1]="unqiue_atzitis_acuity_instant_leech_60%_effectiveness_on_crit"}},[1772]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Restless Dead"}}},stats={[1]="display_map_restless_dead"}},[1773]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is a large Maze"}}},stats={[1]="display_map_larger_maze"}},[1774]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Large Chest"}}},stats={[1]="display_map_large_chest"}},[1775]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per 20 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per 20 Intelligence"}}},stats={[1]="area_of_effect_+%_per_20_int"}},[1776]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed per 10 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed per 10 Dexterity"}}},stats={[1]="attack_speed_+%_per_10_dex"}},[1777]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Weapon Damage per 10 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Weapon Damage per 10 Strength"}}},stats={[1]="physical_weapon_damage_+%_per_10_str"}},[1778]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits per Frenzy Charge"}}},stats={[1]="chance_to_dodge_%_per_frenzy_charge"}},[1779]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Power Charge for each Enemy you hit with a Critical Strike"}}},stats={[1]="gain_power_charge_per_enemy_you_crit"}},[1780]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Burning Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Burning Damage taken"}}},stats={[1]="burning_damage_taken_+%"}},[1781]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot increase the Rarity of Items found"}}},stats={[1]="cannot_increase_rarity_of_dropped_items"}},[1782]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot increase the Quantity of Items found"}}},stats={[1]="cannot_increase_quantity_of_dropped_items"}},[1783]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Inflicts a random Level %1% Curse on you when your Totems die"}}},stats={[1]="randomly_cursed_when_totems_die_curse_level"}},[1784]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]=1,[2]="#"}},text="Items and Gems have %1%%% increased Attribute Requirements"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]=-1}},text="Items and Gems have %1%%% reduced Attribute Requirements"}}},stats={[1]="global_item_attribute_requirements_+%"}},[1785]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemy hits on you roll low Damage"}}},stats={[1]="enemy_hits_roll_low_damage"}},[1786]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Emits a golden glow"}}},stats={[1]="unique_loris_lantern_golden_light"}},[1787]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Resistance when on Low Life"}}},stats={[1]="chaos_damage_resistance_%_when_on_low_life"}},[1788]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},[2]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]=1,[2]="#"}},text="Damage from Enemies Hitting you is Lucky while you are on Low Life"},[2]={[1]={k="reminderstring",v="ReminderTextLowLife"},[2]={k="reminderstring",v="ReminderTextUnlucky"},limit={[1]={[1]="#",[2]=-1}},text="Damage from Enemies Hitting you is Unlucky while you are on Low Life"}}},stats={[1]="enemy_extra_damage_rolls_when_on_low_life"}},[1789]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Deal %1% to %2% Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge"}}},stats={[1]="base_minimum_lightning_damage_on_charge_expiry",[2]="base_maximum_lightning_damage_on_charge_expiry"}},[1790]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Item drops on death"}}},stats={[1]="item_drops_on_death"}},[1791]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Item drops on Death if Equipped by an Animated Guardian"}}},stats={[1]="local_item_drops_on_death_if_equipped_by_animate_armour"}},[1792]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot inflict Ignite"}}},stats={[1]="never_ignite"}},[1793]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot inflict Freeze"}}},stats={[1]="never_freeze"}},[1794]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot inflict Freeze or Chill"}}},stats={[1]="never_freeze_or_chill"}},[1795]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot inflict Shock"}}},stats={[1]="never_shock"}},[1796]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDealsDamageFaster"},limit={[1]={[1]="#",[2]="#"}},text="Ignites you inflict deal Damage %1%%% faster"}}},stats={[1]="faster_burn_%"}},[1797]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignited Enemies Burn %1%%% slower"}}},stats={[1]="ignite_slower_burn_%"}},[1798]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDealsDamageFaster"},limit={[1]={[1]="#",[2]="#"}},text="Ignites you inflict with Attacks deal Damage %1%%% faster"}}},stats={[1]="faster_burn_from_attacks_%"}},[1799]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Leech Life"}}},stats={[1]="base_cannot_leech_life"}},[1800]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Leech Mana"}}},stats={[1]="base_cannot_leech_mana"}},[1801]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Leech or Regenerate Mana"}}},stats={[1]="cannot_leech_or_regenerate_mana"}},[1802]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="Cannot Leech when on Low Life"}}},stats={[1]="cannot_leech_when_on_low_life"}},[1803]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Energy Shield gained on Kill"}}},stats={[1]="base_energy_shield_gained_on_enemy_death"}},[1804]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Energy Shield gained on Killing a Shocked Enemy"}}},stats={[1]="gain_X_energy_shield_on_killing_shocked_enemy"}},[1805]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to create Consecrated Ground when you Block"}}},stats={[1]="consecrate_on_block_%_chance_to_create"}},[1806]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDesecratedGround"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to create Desecrated Ground when you Block"}}},stats={[1]="desecrate_on_block_%_chance_to_create"}},[1807]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Blind"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Blinded"}}},stats={[1]="avoid_blind_%"}},[1808]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSmokeCloud"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to create a Smoke Cloud when Hit"},[2]={[1]={k="reminderstring",v="ReminderTextSmokeCloud"},limit={[1]={[1]=100,[2]=100}},text="Create a Smoke Cloud when Hit"}}},stats={[1]="ground_smoke_when_hit_%"}},[1809]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to create Shocked Ground when Hit"},[2]={limit={[1]={[1]=100,[2]=100}},text="Create Shocked Ground when Hit"}}},stats={[1]="shocked_ground_when_hit_%"}},[1810]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Totem Placement speed"}}},stats={[1]="summon_totem_cast_speed_+%"}},[1811]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spells Cast by Totems have %1%%% increased Cast Speed"}}},stats={[1]="totem_skill_cast_speed_+%"}},[1812]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attacks used by Totems have %1%%% increased Attack Speed"}}},stats={[1]="totem_skill_attack_speed_+%"}},[1813]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Area of Effect for Skills used by Totems"}}},stats={[1]="totem_skill_area_of_effect_+%"}},[1814]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage Leeched as Life for Skills used by Totems"}}},stats={[1]="life_leech_from_skills_used_by_totems_permyriad"}},[1815]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can't use Chest armour"}}},stats={[1]="disable_chest_slot"}},[1816]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Claw Physical Damage when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Claw Physical Damage when on Low Life"}}},stats={[1]="physical_claw_damage_+%_when_on_low_life"}},[1817]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating when on Low Life"}}},stats={[1]="accuracy_rating_+%_when_on_low_life"}},[1818]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=0,[2]=0}},text="Reflects %1% Physical Damage to Attackers on Block"},[2]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=1,[2]="#"}},text="Reflects %1% to %2% Physical Damage to Attackers on Block"}}},stats={[1]="minimum_physical_damage_to_return_on_block",[2]="maximum_physical_damage_to_return_on_block"}},[1819]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=0,[2]=0}},text="Reflects %1% Lightning Damage to Attackers on Block"},[2]={limit={[1]={[1]=0,[2]="#"},[2]={[1]=1,[2]="#"}},text="Reflects %1% to %2% Lightning Damage to Attackers on Block"}}},stats={[1]="minimum_lightning_damage_to_return_on_block",[2]="maximum_lightning_damage_to_return_on_block"}},[1820]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased maximum number of Raised Zombies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced maximum number of Raised Zombies"}}},stats={[1]="number_of_zombies_allowed_+%"}},[1821]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raised Zombies have %1$+d to maximum Life"}}},stats={[1]="zombie_maximum_life_+"}},[1822]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raised Zombies have %1$+d%% to all Resistances"}}},stats={[1]="zombie_chaos_elemental_damage_resistance_%"}},[1823]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chill Effect and Freeze Duration on you are based on %1%%% of Energy Shield"}}},stats={[1]="chill_and_freeze_duration_based_on_%_energy_shield"}},[1824]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Intelligence for each Unique Item Equipped"}}},stats={[1]="intelligence_+%_per_equipped_unique"}},[1825]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignited Enemies you hit are destroyed on Kill"}}},stats={[1]="ignited_enemies_explode_on_kill"}},[1826]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can inflict up to 300 Ignites on an Enemy"}}},stats={[1]="can_inflict_multiple_ignites"}},[1827]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional chance for Slain monsters to drop Scrolls of Wisdom"}}},stats={[1]="additional_scroll_of_wisdom_drop_chance_%"}},[1828]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found during Flask effect"}}},stats={[1]="local_unique_flask_item_rarity_+%_while_healing"}},[1829]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items found during Flask effect"}}},stats={[1]="local_unique_flask_item_quantity_+%_while_healing"}},[1830]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Light Radius during Flask effect"}}},stats={[1]="local_unique_flask_light_radius_+%_while_healing"}},[1831]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all maximum Elemental Resistances during Flask effect"}}},stats={[1]="local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing"}},[1832]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Elemental Resistances during Flask Effect"}}},stats={[1]="local_unique_flask_resist_all_elements_%_during_flask_effect"}},[1833]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of your Curses"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of your Curses"}}},stats={[1]="curse_effect_+%"}},[1834]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Curses can apply to Hexproof Enemies"}}},stats={[1]="ignore_hexproof"}},[1835]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while Phasing"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while Phasing"}}},stats={[1]="movement_velocity_+%_while_phasing"}},[1836]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rogue Exiles roam Wraeclast"}}},stats={[1]="map_spawn_exile_per_area_%"}},[1837]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strongboxes are guarded by ambushing monsters"}}},stats={[1]="map_ambush_chests"}},[1838]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area can contain Breaches"}}},stats={[1]="map_breach_rules"}},[1839]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains Immortal Syndicate activity"}}},stats={[1]="map_spawn_betrayals"}},[1840]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters and bosses invade from elsewhere in Wraeclast"}}},stats={[1]="map_invasion_monster_packs"}},[1841]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area is inhabited by an additional Invasion Boss"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area is inhabited by %1% additional Invasion Bosses"}}},stats={[1]="map_num_extra_invasion_bosses"}},[1842]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rare Monsters each have a Nemesis Mod"}}},stats={[1]="map_rare_monsters_have_nemesis_mod"}},[1843]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Magic Monster Packs each have a Bloodline Mod"}}},stats={[1]="map_magic_pack_mod_rules"}},[1844]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Tormented Spirits haunt Wraeclast"}}},stats={[1]="map_spawn_tormented_spirits"}},[1845]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Powerful Tempests can affect both Monsters and you"}}},stats={[1]="map_always_has_weather"}},[1846]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Powerful Shrines can affect both Monsters and you"}}},stats={[1]="map_allow_shrines"}},[1847]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRampage"},limit={[1]={[1]="#",[2]="#"}},text="Slaying Enemies in a kill streak grants Rampage bonuses"}}},stats={[1]="map_players_gain_rampage_stacks"}},[1848]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Slaying Enemies close together can attract monsters from Beyond this realm"}}},stats={[1]="map_beyond_rules"}},[1849]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Slaying Enemies close together has a %1%%% chance to attract monsters from Beyond"},[2]={limit={[1]={[1]=100,[2]=100}},text="Slaying Enemies close together attracts monsters from Beyond"}}},stats={[1]="map_beyond_chance_%"}},[1850]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while Cursed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while Cursed"}}},stats={[1]="movement_velocity_+%_while_cursed"}},[1851]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second per Frenzy Charge"}}},stats={[1]="life_regeneration_rate_per_minute_%_per_frenzy_charge"}},[1852]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Frenzy Charge on Kill"}}},stats={[1]="add_frenzy_charge_on_kill_%_chance"}},[1853]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge on Kill"}}},stats={[1]="endurance_charge_on_kill_%"}},[1854]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Power Charge on Kill"}}},stats={[1]="add_power_charge_on_kill_%_chance"}},[1855]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Frenzy Charge and a Power Charge on Kill"}}},stats={[1]="gain_frenzy_and_power_charge_on_kill_%"}},[1856]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain an Endurance Charge when you lose a Power Charge"}}},stats={[1]="gain_endurance_charge_on_power_charge_expiry"}},[1857]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies on Low Life take %1%%% increased Damage per Frenzy Charge"}}},stats={[1]="enemy_on_low_life_damage_taken_+%_per_frenzy_charge"}},[1858]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage when on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage when on Full Life"}}},stats={[1]="melee_damage_+%_when_on_full_life"}},[1859]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=100,[2]="#"}},text="Creates Consecrated Ground on Critical Strike"},[2]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=0,[2]=99}},text="%1%%% chance on Critical Strike to create Consecrated Ground"}}},stats={[1]="consecrate_on_crit_%_chance_to_create"}},[1860]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Speed per Frenzy Charge"}}},stats={[1]="projectile_speed_+%_per_frenzy_charge"}},[1861]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Damage per Power Charge"}}},stats={[1]="projectile_damage_+%_per_power_charge"}},[1862]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Enemies killed with a Critical Strike"}}},stats={[1]="killed_monster_dropped_item_rarity_+%_on_crit"}},[1863]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds on Kill"}}},stats={[1]="onslaught_buff_duration_on_kill_ms"}},[1864]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds on Killing Taunted Enemies"}}},stats={[1]="onslaught_buff_duration_on_killing_taunted_enemy_ms"}},[1865]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Energy Shield per second"}}},stats={[1]="base_energy_shield_regeneration_rate_per_minute"}},[1866]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield per second"}}},stats={[1]="base_energy_shield_regeneration_rate_per_minute_%"}},[1867]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Right ring slot: You cannot Regenerate Mana"}}},stats={[1]="local_right_ring_slot_no_mana_regeneration"}},[1868]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Right ring slot: Regenerate %1%%% of Energy Shield per second"}}},stats={[1]="local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%"}},[1869]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Right ring slot: %1$+d to maximum Mana"}}},stats={[1]="local_right_ring_slot_maximum_mana"}},[1870]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Right ring slot: %1$+d to Energy Shield"}}},stats={[1]="local_right_ring_slot_energy_shield"}},[1871]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Left ring slot: You cannot Recharge or Regenerate Energy Shield"}}},stats={[1]="local_left_ring_slot_no_energy_shield_recharge_or_regeneration"}},[1872]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Left ring slot: Regenerate %1% Mana per Second"}}},stats={[1]="local_left_ring_slot_mana_regeneration_rate_per_minute"}},[1873]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Left ring slot: %1%%% increased Mana Regeneration Rate"}}},stats={[1]="local_left_ring_slot_mana_regeneration_rate_+%"}},[1874]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Left ring slot: %1$+d to maximum Mana"}}},stats={[1]="local_left_ring_slot_maximum_mana"}},[1875]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Left ring slot: %1$+d to maximum Energy Shield"}}},stats={[1]="local_left_ring_slot_energy_shield"}},[1876]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot Recharge or Regenerate Energy Shield"}}},stats={[1]="no_energy_shield_recharge_or_regeneration"}},[1877]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]=1,[2]="#"}},text="Your Critical Strike Chance is Lucky"},[2]={[1]={k="reminderstring",v="ReminderTextUnlucky"},limit={[1]={[1]="#",[2]=-1}},text="Your Critical Strike Chance is Unlucky"}}},stats={[1]="extra_critical_rolls"}},[1878]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1%% increased Movement Speed per %1% Evasion Rating, up to 75%%"}}},stats={[1]="movement_velocity_+1%_per_X_evasion_rating"}},[1879]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be killed by reflected Elemental Damage"}}},stats={[1]="cannot_be_killed_by_elemental_reflect"}},[1880]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Critical Strikes cannot Freeze, Shock, or Ignite Enemies"}}},stats={[1]="cannot_freeze_shock_ignite_on_critical"}},[1881]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Critical Strikes do not deal extra Damage"}}},stats={[1]="no_critical_strike_multiplier"}},[1882]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds on Critical Strike"}}},stats={[1]="onslaught_on_crit_duration_ms"}},[1883]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Raised Zombie Size"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Raised Zombie Size"}}},stats={[1]="zombie_scale_+%"}},[1884]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Raised Zombies deal %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Raised Zombies deal %1%%% reduced Physical Damage"}}},stats={[1]="zombie_physical_damage_+%"}},[1885]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Killed by Zombies' Hits Explode, dealing %1%%% of their Life as Fire Damage"}}},stats={[1]="zombie_explode_on_kill_%_fire_damage_to_deal"}},[1886]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Weapons per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Weapons per Power Charge"}}},stats={[1]="weapon_elemental_damage_+%_per_power_charge"}},[1887]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot Cast Curses"}}},stats={[1]="cannot_cast_curses"}},[1888]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Insufficient Mana doesn't prevent your Melee Attacks"}}},stats={[1]="melee_attacks_usable_without_mana_cost"}},[1889]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Spell Damage also apply to Attack Damage"}}},stats={[1]="spell_damage_modifiers_apply_to_attack_damage"}},[1890]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Spell Damage also apply to Attacks"}}},stats={[1]="additive_spell_damage_modifiers_apply_to_attack_damage"}},[1891]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Spell Damage also apply to Attacks at 150%% of their value"}}},stats={[1]="additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value"}},[1892]={lang={English={[1]={limit={[1]={[1]=100,[2]=100}},text="Increases and Reductions to Spell Damage also apply to Attacks while wielding a Wand"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Spell Damage also apply to Attacks at %1%%% of their value while wielding a Wand"}}},stats={[1]="additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand"}},[1893]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Damage of Vaal Skills also apply to Non-Vaal Skills"}}},stats={[1]="additive_vaal_skill_damage_modifiers_apply_to_all_skills"}},[1894]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Spell Damage apply to this Skill's Damage Over Time effect"}}},stats={[1]="spell_damage_modifiers_apply_to_skill_dot"}},[1895]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to Projectile Damage apply to this Skill's Damage Over Time effect"}}},stats={[1]="projectile_damage_modifiers_apply_to_skill_dot"}},[1896]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes %1%%% of your maximum Energy Shield on use"}}},stats={[1]="local_flask_removes_%_maximum_energy_shield_on_use"}},[1897]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Consumes 1 Frenzy Charge on use"},[2]={limit={[1]={[1]=2,[2]=99}},text="Consumes %1% Frenzy Charges on use"},[3]={limit={[1]={[1]=100,[2]="#"}},text="Consumes Frenzy Charges on use"}}},stats={[1]="local_flask_consumes_x_frenzy_charges_on_use"}},[1898]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Consumes 1 Endurance Charge on use"},[2]={limit={[1]={[1]=2,[2]=99}},text="Consumes %1% Endurance Charges on use"},[3]={limit={[1]={[1]=100,[2]="#"}},text="Consumes Endurance Charges on use"}}},stats={[1]="local_flask_consumes_x_endurance_charges_on_use"}},[1899]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Consumes 1 Power Charge on use"},[2]={limit={[1]={[1]=2,[2]=99}},text="Consumes %1% Power Charges on use"},[3]={limit={[1]={[1]=100,[2]="#"}},text="Consumes Power Charges on use"}}},stats={[1]="local_flask_consumes_x_power_charges_on_use"}},[1900]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]=1}},text="Gain Onslaught for %1% second per Frenzy Charge on use"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=2,[2]="#"}},text="Gain Onslaught for %1% seconds per Frenzy Charge on use"}}},stats={[1]="local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge"}},[1901]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You take %1%%% of your maximum Life as Chaos Damage on use"}}},stats={[1]="local_flask_deals_%_maximum_life_as_chaos_damage_on_use"}},[1902]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You gain a Power Charge on use"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You gain %1% Power Charges on use"}}},stats={[1]="local_flask_gain_power_charges_on_use"}},[1903]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You gain a Frenzy Charge on use"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You gain %1% Frenzy Charges on use"}}},stats={[1]="local_flask_gain_frenzy_charges_on_use"}},[1904]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You gain an Endurance Charge on use"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You gain %1% Endurance Charges on use"}}},stats={[1]="local_flask_gain_endurance_charges_on_use"}},[1905]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to cause Enemies to Flee on use"}}},stats={[1]="local_flask_use_causes_monster_flee_chance_%"}},[1906]={lang={English={[1]={[1]={k="per_minute_to_per_second_0dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Deals %1% Chaos Damage per second to nearby Enemies"}}},stats={[1]="local_display_aura_base_chaos_damage_to_deal_per_minute"}},[1907]={lang={English={[1]={[1]={k="milliseconds_to_seconds_0dp",v=1},[2]={k="per_minute_to_per_second_0dp",v=2},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="You take %2% Chaos Damage per second for %1% seconds on Kill"}}},stats={[1]="deaths_oath_debuff_on_kill_duration_ms",[2]="deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute"}},[1908]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Slain Frozen Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Dropped by Slain Frozen Enemies"}}},stats={[1]="killed_monster_dropped_item_quantity_+%_when_frozen"}},[1909]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain Frozen or Shocked Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain Frozen or Shocked Enemies"}}},stats={[1]="killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked"}},[1910]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain Shocked Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain Shocked Enemies"}}},stats={[1]="killed_monster_dropped_item_rarity_+%_when_shocked"}},[1911]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Frozen Enemies"}}},stats={[1]="killed_monster_dropped_item_rarity_+%_when_frozen"}},[1912]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Counts as Dual Wielding"}}},stats={[1]="local_unique_counts_as_dual_wielding"}},[1913]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage is taken from Mana before Life"}}},stats={[1]="base_damage_removed_from_mana_before_life_%"}},[1914]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You and nearby allies gain %1%%% increased Damage"}}},stats={[1]="local_display_aura_damage_+%"}},[1915]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies have %1%%% increased Effect of Curses on them"}}},stats={[1]="local_display_aura_curse_effect_on_self_+%"}},[1916]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="Attacks have %1%%% chance to Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Attacks always Ignite"}}},stats={[1]="attack_ignite_chance_%"}},[1917]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="Projectiles have %1%%% chance to Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Projectiles always Ignite"}}},stats={[1]="projectile_ignite_chance_%"}},[1918]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99}},text="Projectiles have %1%%% chance to Freeze"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=100,[2]="#"}},text="Projectiles always Freeze"}}},stats={[1]="projectile_freeze_chance_%"}},[1919]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Projectiles have %1%%% chance to Shock"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Projectiles always Shock"}}},stats={[1]="projectile_shock_chance_%"}},[1920]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Killed with Attack or Spell Hits Explode, dealing %1%%% of their Life as Fire Damage"}}},stats={[1]="explode_on_kill_%_fire_damage_to_deal"}},[1921]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage taken reflected to Melee Attackers"}}},stats={[1]="melee_damage_taken_%_to_deal_to_attacker"}},[1922]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained when you are Hit"}}},stats={[1]="mana_gained_when_hit"}},[1923]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Elemental Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Elemental Damage taken"}}},stats={[1]="elemental_reflect_damage_taken_+%"}},[1924]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Physical Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Physical Damage taken"}}},stats={[1]="physical_reflect_damage_taken_+%"}},[1925]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Left ring slot: You and your Minions take %1%%% increased Reflected Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Left ring slot: You and your Minions take %1%%% reduced Reflected Elemental Damage"}}},stats={[1]="local_left_ring_slot_elemental_reflect_damage_taken_+%"}},[1926]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Right ring slot: You and your Minions take %1%%% increased Reflected Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Right ring slot: You and your Minions take %1%%% reduced Reflected Physical Damage"}}},stats={[1]="local_right_ring_slot_physical_reflect_damage_taken_+%"}},[1927]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage you Reflect to Enemies when Hit is gained as Life"}}},stats={[1]="damage_reflected_to_enemies_%_gained_as_life"}},[1928]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can only deal Damage with this Weapon or Ignite"}}},stats={[1]="local_can_only_deal_damage_with_this_weapon"}},[1929]={lang={English={[1]={[1]={k="multiplicative_damage_modifier",v=1},limit={[1]={[1]="#",[2]="#"}},text="Non-critical strikes deal %1%%% Damage"}}},stats={[1]="non_critical_damage_multiplier_+%"}},[1930]={lang={English={[1]={[1]={k="mod_value_to_item_class",v=2},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Unique Boss drops %1% additional Rare %2%"}}},stats={[1]="unique_map_boss_number_of_rare_items_to_drop",[2]="unique_map_boss_class_of_rare_items_to_drop"}},[1931]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attack Skills gain %1%%% of Physical Damage as Extra Fire Damage per Socketed Red Gem"}}},stats={[1]="attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem"}},[1932]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1% to Maximum Life per Red Socket"}}},stats={[1]="base_maximum_life_per_red_socket_on_item"}},[1933]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Life per Red Socket"}}},stats={[1]="global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad"}},[1934]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Global Physical Damage with Weapons per Red Socket"}}},stats={[1]="global_weapon_physical_damage_+%_per_red_socket_on_item"}},[1935]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Fire Damage per Red Socket"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_fire_per_red_socket_on_item"}},[1936]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1% to Maximum Mana per Green Socket"}}},stats={[1]="base_maximum_mana_per_green_socket_on_item"}},[1937]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Global Attack Speed per Green Socket"}}},stats={[1]="global_attack_speed_+%_per_green_socket_on_item"}},[1938]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="+%1%%% to Global Critical Strike Multiplier per Green Socket"}}},stats={[1]="global_critical_strike_mulitplier_+_per_green_socket_on_item"}},[1939]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Cold Damage per Green Socket"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_cold_per_green_socket_on_item"}},[1940]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1% to Maximum Energy Shield per Blue Socket"}}},stats={[1]="base_maximum_energy_shield_per_blue_socket_on_item"}},[1941]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Lightning Damage per Blue Socket"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_lightning_per_blue_socket_on_item"}},[1942]={lang={English={[1]={[1]={k="old_leech_percent",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana per Blue Socket"}}},stats={[1]="old_do_not_use_global_mana_leech_from_physical_attack_damage_%_per_blue_socket_on_item"}},[1943]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Attack Damage Leeched as Mana per Blue Socket"}}},stats={[1]="global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item"}},[1944]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Item Quantity per White Socket"}}},stats={[1]="item_found_quantity_+%_per_white_socket_on_item"}},[1945]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions convert %1%%% of Physical Damage to Chaos Damage per White Socket"}}},stats={[1]="minion_base_physical_damage_%_to_convert_to_chaos_per_white_socket_on_item"}},[1946]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Item Rarity per White Socket"}}},stats={[1]="item_found_rarity_+%_per_white_socket_on_item"}},[1947]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Defences per White Socket"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Defences per White Socket"}}},stats={[1]="global_defences_+%_per_white_socket_on_item"}},[1948]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Strike Range per White Socket"}}},stats={[1]="global_melee_range_+_per_white_socket_on_item"}},[1949]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage when you have no Energy Shield"}}},stats={[1]="damage_+%_when_currently_has_no_energy_shield"}},[1950]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Spell Damage per 5%% Chance to Block Attack Damage"}}},stats={[1]="spell_damage_+%_per_5%_block_chance"}},[1951]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Spell Damage per 10 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% reduced Spell Damage per 10 Intelligence"}}},stats={[1]="spell_damage_+%_per_10_int"}},[1952]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose %1%%% of your Energy Shield when you Block"}}},stats={[1]="energy_shield_%_to_lose_on_block"}},[1953]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Leech %1%%% of your Armour as Life when you Block"}}},stats={[1]="armour_%_to_leech_as_life_on_block"}},[1954]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Light Radius is based on Energy Shield instead of Life"}}},stats={[1]="light_radius_scales_with_energy_shield"}},[1955]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flasks applied to you have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flasks applied to you have %1%%% reduced Effect"}}},stats={[1]="flask_effect_+%"}},[1956]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Non-Unique Flasks applied to you have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Non-Unique Flasks applied to you have %1%%% reduced Effect"}}},stats={[1]="non_unique_flask_effect_+%"}},[1957]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Weapon Range"}}},stats={[1]="local_weapon_range_+"}},[1958]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Weapons"}}},stats={[1]="weapon_physical_damage_+%"}},[1959]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% maximum Critical Strike Chance"}}},stats={[1]="maximum_critical_strike_chance"}},[1960]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Melee Attacks"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Melee Attacks"}}},stats={[1]="melee_damage_taken_+%"}},[1961]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Projectiles"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Projectiles"}}},stats={[1]="projectile_damage_taken_+%"}},[1962]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds when you Stun an Enemy"}}},stats={[1]="gain_onslaught_on_stun_duration_ms"}},[1963]={lang={English={[1]={limit={[1]={[1]=100,[2]=100}},text="Curse Enemies with Flammability on Hit"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Curse Enemies with Flammability on Hit"}}},stats={[1]="curse_on_hit_%_flammability"}},[1964]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge when you are Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge when you are Hit"}}},stats={[1]="chance_to_gain_endurance_charge_when_hit_%"}},[1965]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You lose all Endurance Charges on reaching maximum Endurance Charges"}}},stats={[1]="lose_all_endurance_charges_when_reaching_maximum"}},[1966]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds at maximum Endurance Charges"}}},stats={[1]="gain_onslaught_ms_when_reaching_maximum_endurance_charges"}},[1967]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot gain Endurance Charges during Onslaught"}}},stats={[1]="cannot_gain_endurance_charges_while_have_onslaught"}},[1968]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes Burning when you use a Flask"}}},stats={[1]="flasks_dispel_burning"}},[1969]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items found during any Flask Effect"}}},stats={[1]="item_rarity_+%_while_using_flask"}},[1970]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Attack Skills during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Attack Skills during any Flask Effect"}}},stats={[1]="elemental_damage_with_attack_skills_+%_while_using_flask"}},[1971]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Weapons during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Weapons during any Flask Effect"}}},stats={[1]="weapon_elemental_damage_+%_while_using_flask"}},[1972]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You have Fortify during Effect of any Life Flask"}}},stats={[1]="fortify_during_life_flask_effect"}},[1973]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Supported Active Skill Gems"}}},stats={[1]="supported_active_skill_gem_level_+"}},[1974]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour per Level"}}},stats={[1]="physical_damage_reduction_rating_per_level"}},[1975]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Life per 10 Levels"}}},stats={[1]="maximum_life_per_10_levels"}},[1976]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances per 10 Levels"}}},stats={[1]="resist_all_elements_%_per_10_levels"}},[1977]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to inflict a Curse on you when Hit per 10 Levels"}}},stats={[1]="chance_to_gain_random_curse_when_hit_%_per_10_levels"}},[1978]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Demons during Flask effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Demons during Flask effect"}}},stats={[1]="local_unique_flask_damage_taken_+%_vs_demons_while_healing"}},[1979]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage against Demons during Flask effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage against Demons during Flask effect"}}},stats={[1]="local_unique_flask_damage_+%_vs_demons_while_healing"}},[1980]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Recharges %1% Charge when you Kill a Demon"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Recharges %1% Charges when you Kill a Demon"}}},stats={[1]="local_recharge_on_demon_killed"}},[1981]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Demons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Demons"}}},stats={[1]="damage_taken_+%_vs_demons"}},[1982]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Demons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Demons"}}},stats={[1]="damage_+%_vs_demons"}},[1983]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Chilled by you take %1%%% increased Burning Damage"}}},stats={[1]="chilled_monsters_take_+%_burning_damage"}},[1984]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Ignite when in Main Hand"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Always Ignite when in Main Hand"}}},stats={[1]="unique_ignite_chance_%_when_in_main_hand"}},[1985]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chill Duration on Enemies when in Off Hand"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chill Duration on Enemies when in Off Hand"}}},stats={[1]="unique_chill_duration_+%_when_in_off_hand"}},[1986]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=99}},text="%2%%% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]=100,[2]="#"}},text="Gain an Endurance Charge when you Stun an Enemy with a Melee Hit"},[3]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Gain an Endurance Charge when you Stun an Enemy with a Melee Hit"}}},stats={[1]="gain_endurance_charge_on_melee_stun",[2]="gain_endurance_charge_on_melee_stun_%"}},[1987]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when you Stun with Melee Damage"}}},stats={[1]="chance_to_gain_power_charge_on_melee_stun_%"}},[1988]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when you Stun"}}},stats={[1]="chance_to_gain_power_charge_on_stun_%"}},[1989]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="30%% increased Movement Speed for %1% seconds on Throwing a Trap"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]="#"}},text="%2%%% increased Movement Speed for %1% seconds on Throwing a Trap"}}},stats={[1]="movement_speed_bonus_when_throwing_trap_ms",[2]="movement_speed_+%_on_throwing_trap"}},[1990]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Melee Critical Strikes have %1%%% chance to Poison the Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Melee Critical Strikes Poison the Enemy"}}},stats={[1]="poison_on_melee_critical_strike_%"}},[1991]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHit"},limit={[1]={[1]="#",[2]="#"}},text="Shocks you cause are reflected back to you"}}},stats={[1]="shocks_reflected_to_self"}},[1992]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Shocked"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Shocked"}}},stats={[1]="damage_+%_per_shock"}},[1993]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1%% increased Damage per %1% Strength when in Main Hand"}}},stats={[1]="damage_+1%_per_X_strength_when_in_main_hand"}},[1994]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1%% increased Armour per %1% Strength when in Off Hand"}}},stats={[1]="physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand"}},[1995]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Freeze Mine causes Enemies to lose an additional %1%%% Cold Resistance while Frozen"}}},stats={[1]="freeze_mine_cold_resistance_+_while_frozen"}},[1996]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Traps do not Trigger at the end of their Duration"}}},stats={[1]="traps_do_not_explode_on_timeout"}},[1997]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Traps Trigger at the end of their Duration"}}},stats={[1]="traps_explode_on_timeout"}},[1998]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Detonating Mines is Instant"}}},stats={[1]="mine_detonation_is_instant"}},[1999]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Trap Damage Penetrates %1%%% Elemental Resistances"}}},stats={[1]="trap_damage_penetrates_%_elemental_resistance"}},[2000]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mine Damage Penetrates %1%%% Elemental Resistances"}}},stats={[1]="mine_damage_penetrates_%_elemental_resistance"}},[2001]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Trap and Mine Damage Penetrates %1%%% Elemental Resistances"}}},stats={[1]="trap_and_mine_damage_penetrates_%_elemental_resistance"}},[2002]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Traps cannot be Damaged for %1% seconds after being Thrown"}}},stats={[1]="traps_invulnerable_for_duration_ms"}},[2003]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Mines cannot be Damaged for %1% seconds after being thrown"}}},stats={[1]="mines_invulnerable_for_duration_ms"}},[2004]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems gain %1$+d%% to all Elemental Resistances"}}},stats={[1]="totem_elemental_resistance_%"}},[2005]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ancestral Protector Totems gain %1$+d%% to all Elemental Resistances"}}},stats={[1]="slash_ancestor_totem_elemental_resistance_%"}},[2006]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems have %1%%% additional Physical Damage Reduction"}}},stats={[1]="totem_additional_physical_damage_reduction_%"}},[2007]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deal no Physical Damage"}}},stats={[1]="base_deal_no_physical_damage"}},[2008]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deal no Non-Fire Damage"}}},stats={[1]="deal_no_non_fire_damage"}},[2009]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Can use Items requiring up to Level %1%"}}},stats={[1]="animate_item_maximum_level_requirement"}},[2010]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Animate Weapon Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Animate Weapon Duration"}}},stats={[1]="jorrhasts_blacksteel_animate_weapon_duration_+%_final"}},[2011]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Animate Weapon Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Animate Weapon Duration"}}},stats={[1]="animate_weapon_duration_+%"}},[2012]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Weapons you Animate create an additional copy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Weapons you Animate create %1% additional copies"}}},stats={[1]="animate_weapon_number_of_additional_copies"}},[2013]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Fire and Cold Resistances"}}},stats={[1]="fire_and_cold_damage_resistance_%"}},[2014]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Fire and Lightning Resistances"}}},stats={[1]="fire_and_lightning_damage_resistance_%"}},[2015]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold and Lightning Resistances"}}},stats={[1]="cold_and_lightning_damage_resistance_%"}},[2016]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Freeze, Shock and Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Always Freeze, Shock and Ignite"}}},stats={[1]="chance_to_freeze_shock_ignite_%"}},[2017]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Ignited"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Ignited"}}},stats={[1]="damage_+%_while_ignited"}},[2018]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour while Frozen"}}},stats={[1]="physical_damage_reduction_rating_while_frozen"}},[2019]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage taken while Frozen"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage taken while Frozen"}}},stats={[1]="physical_damage_taken_+%_while_frozen"}},[2020]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while Ignited"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while Ignited"}}},stats={[1]="movement_velocity_+%_while_ignited"}},[2021]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while Shocked"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while Shocked"}}},stats={[1]="movement_velocity_+%_per_shock"}},[2022]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Rare monsters"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Rare monsters"}}},stats={[1]="damage_+%_vs_rare_monsters"}},[2023]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Enemies that are on Low Life"}}},stats={[1]="damage_vs_enemies_on_low_life_+%"}},[2024]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments against Enemies that are on Low Life"}}},stats={[1]="damage_vs_enemies_on_low_life_+%_final"}},[2025]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Frenzy Charge with Hits against Enemies on Low Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Frenzy Charge with Hits against Enemies on Low Life"}}},stats={[1]="damage_+%_vs_enemies_on_low_life_per_frenzy_charge"}},[2026]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Blinded Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Blinded Enemies"}}},stats={[1]="damage_+%_vs_blinded_enemies"}},[2027]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Shrine Buffs on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Shrine Buffs on you"}}},stats={[1]="shrine_buff_effect_on_self_+%"}},[2028]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Shrine Effects on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Shrine Effects on you"}}},stats={[1]="shrine_effect_duration_+%"}},[2029]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot gain Life during effect"}}},stats={[1]="local_unique_flask_cannot_recover_life_while_healing"}},[2030]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Recover %1%%% of Life at the end of the Flask Effect"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Recover Full Life at the end of the Flask Effect"}}},stats={[1]="local_unique_flask_recover_%_maximum_life_when_effect_reaches_duration"}},[2031]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Skills have no Mana Cost during Flask effect"}}},stats={[1]="local_unique_flask_no_mana_cost_while_healing"}},[2032]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHit"},limit={[1]={[1]=1,[2]=1}},text="When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy"}}},stats={[1]="shock_X_nearby_enemies_for_2_s_on_killing_shocked_enemy"}},[2033]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgniteNonHitNoDuration"},limit={[1]={[1]=1,[2]=1}},text="When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy"}}},stats={[1]="ignite_X_nearby_enemies_for_4_s_on_killing_ignited_enemy"}},[2034]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="When you Kill a Rare monster, you gain its Modifiers for %1% seconds"}}},stats={[1]="gain_rare_monster_mods_on_kill_ms"}},[2035]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour while not Ignited, Frozen or Shocked"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour while not Ignited, Frozen or Shocked"}}},stats={[1]="physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked"}},[2036]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Auras from your Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced effect of Auras from your Skills"}}},stats={[1]="aura_effect_+%"}},[2037]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Supported Active Skill Gems"}}},stats={[1]="supported_active_skill_gem_quality_%"}},[2038]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]="#",[2]="#"}},text="Phasing"}}},stats={[1]="phase_through_objects"}},[2039]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="This Gem can only Support Skill Gems requiring Level %1% or lower"}}},stats={[1]="local_support_gem_max_skill_level_requirement_to_support"}},[2040]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Projectiles Return to you after Hitting targets"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Projectiles Return to you at end of flight"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Projectiles Return to you"}}},stats={[1]="projectiles_return",[2]="projectiles_return_if_no_hit_object"}},[2041]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0}},text="Attack Projectiles Return to you from final Target"},[2]={limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"}},text="Attack Projectiles Return to you at end of flight"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Attack Projectiles Return to you"}}},stats={[1]="attack_projectiles_return",[2]="attack_projectiles_return_if_no_hit_object"}},[2042]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Critical Strike Chance"},[2]={[1]={k="canonical_line",v="negate"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Critical Strike Chance"}}},stats={[1]="unique_critical_strike_chance_+%_final"}},[2043]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You lose all Endurance Charges when Hit"}}},stats={[1]="unique_lose_all_endurance_charges_when_hit"}},[2044]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds when Hit"}}},stats={[1]="unique_gain_onslaught_when_hit_duration_ms"}},[2045]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You gain an Endurance Charge on Kill"}}},stats={[1]="add_endurance_charge_on_kill"}},[2046]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Counterattack when Hit"}}},stats={[1]="chance_to_counter_strike_when_hit_%"}},[2047]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Leech %1% Life for each Spell you Cast"}}},stats={[1]="leech_X_life_per_spell_cast"}},[2048]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Life over 1 second when you Cast a Spell"}}},stats={[1]="regenerate_X_life_over_1_second_on_cast"}},[2049]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of your Armour as Life over 1 second when you Block"}}},stats={[1]="regenerate_%_armour_as_life_over_1_second_on_block"}},[2050]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Defences"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Defences"}}},stats={[1]="global_defences_+%"}},[2051]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Resistances are Zero"}}},stats={[1]="zero_elemental_resistance"}},[2052]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]="#",[2]="#"}},text="Culling Strike against Burning Enemies"}}},stats={[1]="culling_strike_on_burning_enemies"}},[2053]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Frenzy Charge if an Attack Ignites an Enemy"}}},stats={[1]="gain_frenzy_charge_if_attack_ignites"}},[2054]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per 10 Levels"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per 10 Levels"}}},stats={[1]="damage_+%_per_10_levels"}},[2055]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Chaos Damage taken"}}},stats={[1]="chaos_damage_taken_+"}},[2056]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Final Boss drops higher Level Items"}}},stats={[1]="display_map_final_boss_drops_higher_level_gear"}},[2057]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss gives %1%%% increased Experience"}}},stats={[1]="display_map_boss_gives_experience_+%"}},[2058]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1000,[2]=1000}},text="You gain Onslaught for %1% second per Endurance Charge when Hit"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds per Endurance Charge when Hit"}}},stats={[1]="unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge"}},[2059]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Projectile Skills deal %1%%% more Projectile Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Projectile Skills deal %1%%% less Projectile Damage"}}},stats={[1]="support_slower_projectiles_damage_+%_final"}},[2060]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fishing Line Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fishing Line Strength"}}},stats={[1]="fishing_line_strength_+%"}},[2061]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fishing Pool Consumption"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fishing Pool Consumption"}}},stats={[1]="fishing_pool_consumption_+%"}},[2062]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Rhoa Feather Lure"},[2]={limit={[1]={[1]=2,[2]=2}},text="Siren Worm Bait"},[3]={limit={[1]={[1]=3,[2]=3}},text="Totemic Wood Lure"},[4]={limit={[1]={[1]=4,[2]=4}},text="Thaumaturgical Lure"}}},stats={[1]="fishing_lure_type"}},[2063]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Karui Stone Hook"},[2]={limit={[1]={[1]=2,[2]=2}},text="Ezomyte Shell Hook"},[3]={limit={[1]={[1]=3,[2]=3}},text="Vaal Soul Hook"},[4]={limit={[1]={[1]=4,[2]=4}},text="Eternal Iron Hook"}}},stats={[1]="fishing_hook_type"}},[2064]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fishing Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fishing Range"}}},stats={[1]="fishing_range_+%"}},[2065]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Fish Caught"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Fish Caught"}}},stats={[1]="fish_quantity_+%"}},[2066]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Fish Caught"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Fish Caught"}}},stats={[1]="fish_rarity_+%"}},[2067]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="On Killing a Poisoned Enemy, nearby Enemies are Poisoned"}}},stats={[1]="unique_spread_poison_to_nearby_enemies_on_kill"}},[2068]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="and nearby Allies Regenerate 200 Life per second"}}},stats={[1]="unique_spread_poison_to_nearby_allies_as_200_life_regeneration_per_second_on_kill"}},[2069]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="On Killing a Poisoned Enemy, nearby Allies Regenerate Life"}}},stats={[1]="unique_spread_poison_to_nearby_allies_as_regeneration_on_kill"}},[2070]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Duplicates your other ring"}}},stats={[1]="local_ring_duplicate_other_ring"}},[2071]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can catch Exotic Fish"}}},stats={[1]="can_catch_exotic_fish"}},[2072]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can catch Corrupted Fish"}}},stats={[1]="can_catch_corrupted_fish"}},[2073]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Your Fire Damage can Shock but not Ignite"}}},stats={[1]="unique_fire_damage_shocks"}},[2074]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="Your Cold Damage can Ignite but not Freeze or Chill"}}},stats={[1]="unique_cold_damage_ignites"}},[2075]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="Your Lightning Damage can Freeze but not Shock"}}},stats={[1]="unique_lightning_damage_freezes"}},[2076]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="All your Damage can Freeze"}}},stats={[1]="all_damage_can_freeze"}},[2077]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="All Damage from Hits can cause Elemental Ailments you are suffering"}}},stats={[1]="base_all_damage_can_cause_elemental_ailments_you_are_suffering_from"}},[2078]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Your Cold Damage can Poison"}}},stats={[1]="base_cold_damage_can_poison"}},[2079]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Your Fire Damage can Poison"}}},stats={[1]="base_fire_damage_can_poison"}},[2080]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Your Lightning Damage can Poison"}}},stats={[1]="base_lightning_damage_can_poison"}},[2081]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]="#",[2]="#"}},text="Your Chaos Damage can Chill"}}},stats={[1]="chaos_damage_can_chill"}},[2082]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="Your Chaos Damage can Freeze"}}},stats={[1]="chaos_damage_can_freeze"}},[2083]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Your Chaos Damage can Shock"}}},stats={[1]="chaos_damage_can_shock"}},[2084]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="Your Cold Damage can Ignite"}}},stats={[1]="cold_damage_can_ignite"}},[2085]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Your Cold Damage can Shock"}}},stats={[1]="cold_damage_can_shock"}},[2086]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Your Elemental Damage can Shock"}}},stats={[1]="elemental_damage_can_shock"}},[2087]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]="#",[2]="#"}},text="Your Fire Damage can Chill"}}},stats={[1]="fire_damage_can_chill"}},[2088]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="Your Fire Damage can Freeze"}}},stats={[1]="fire_damage_can_freeze"}},[2089]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Your Fire Damage can Shock"}}},stats={[1]="fire_damage_can_shock"}},[2090]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]="#",[2]="#"}},text="Your Lightning Damage can Chill"}}},stats={[1]="lightning_damage_can_chill"}},[2091]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Lightning Damage can Ignite"}}},stats={[1]="lightning_damage_can_ignite"}},[2092]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]="#",[2]="#"}},text="Your Physical Damage can Chill"}}},stats={[1]="physical_damage_can_chill"}},[2093]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="Your Physical Damage can Freeze"}}},stats={[1]="physical_damage_can_freeze"}},[2094]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Your Physical Damage can Shock"}}},stats={[1]="physical_damage_can_shock"}},[2095]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="Your Cold Damage can Ignite"}}},stats={[1]="unique_cold_damage_can_also_ignite"}},[2096]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="Your Lightning Damage can Freeze"}}},stats={[1]="lightning_damage_can_freeze"}},[2097]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Fire Damage cannot Ignite"}}},stats={[1]="fire_damage_cannot_ignite"}},[2098]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Cold Damage cannot Freeze"}}},stats={[1]="cold_damage_cannot_freeze"}},[2099]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Cold Damage cannot Chill"}}},stats={[1]="cold_damage_cannot_chill"}},[2100]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chaos Damage can Ignite, Chill and Shock"}}},stats={[1]="chaos_damage_can_ignite_chill_and_shock"}},[2101]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Chaos Damage cannot Poison"}}},stats={[1]="chaos_damage_cannot_poison"}},[2102]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Lightning Damage cannot Shock"}}},stats={[1]="lightning_damage_cannot_shock"}},[2103]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Physical Damage cannot Poison"}}},stats={[1]="physical_damage_cannot_poison"}},[2104]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Supported Active Skill Gems gain %1%%% increased Experience"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Supported Active Skill Gems gain %1%%% reduced Experience"}}},stats={[1]="supported_active_skill_gem_expereince_gained_+%"}},[2105]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies are Frozen as if you had dealt %1%%% more Damage"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Enemies are Frozen as if you had dealt %1%%% less Damage"}}},stats={[1]="freeze_as_though_dealt_damage_+%"}},[2106]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="You cannot be Chilled for %1% second after being Chilled"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="You cannot be Chilled for %1% seconds after being Chilled"}}},stats={[1]="chill_prevention_ms_when_chilled"}},[2107]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="You cannot be Frozen for %1% second after being Frozen"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="You cannot be Frozen for %1% seconds after being Frozen"}}},stats={[1]="freeze_prevention_ms_when_frozen"}},[2108]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="You cannot be Ignited for %1% second after being Ignited"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="You cannot be Ignited for %1% seconds after being Ignited"}}},stats={[1]="ignite_prevention_ms_when_ignited"}},[2109]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="You cannot be Shocked for %1% second after being Shocked"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="You cannot be Shocked for %1% seconds after being Shocked"}}},stats={[1]="shock_prevention_ms_when_shocked"}},[2110]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be Shocked while Frozen"}}},stats={[1]="cannot_be_shocked_while_frozen"}},[2111]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You grant %1% Frenzy Charges to allies on Death"}}},stats={[1]="grant_X_frenzy_charges_to_nearby_allies_on_death"}},[2112]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Power Charge on Non-Critical Strike"}}},stats={[1]="unique_gain_power_charge_on_non_crit"}},[2113]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose all Power Charges on Critical Strike"}}},stats={[1]="unique_lose_all_power_charges_on_crit"}},[2114]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Flask Life Recovery granted to Minions"}}},stats={[1]="flask_minion_heal_%"}},[2115]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% Chance to Block Attack Damage"}}},stats={[1]="minion_block_%"}},[2116]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% Chance to Block Spell Damage"}}},stats={[1]="minion_additional_spell_block_%"}},[2117]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1$+d to Armour"}}},stats={[1]="minion_physical_damage_reduction_rating"}},[2118]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby allies gain %1%%% increased Damage"}}},stats={[1]="local_display_aura_damage_+%_allies_only"}},[2119]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Attack Speed"}}},stats={[1]="minion_attack_speed_+%"}},[2120]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Cast Speed"}}},stats={[1]="minion_cast_speed_+%"}},[2121]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Minions Leech %1%%% of Damage as Life"}}},stats={[1]="old_do_not_use_minion_life_leech_from_any_damage_permyriad"}},[2122]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Minions Leech %1%%% of Damage as Life"}}},stats={[1]="minion_life_leech_from_any_damage_permyriad"}},[2123]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions Regenerate %1%%% of Life per second"}}},stats={[1]="minion_life_regeneration_rate_per_minute_%"}},[2124]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% to all Elemental Resistances"}}},stats={[1]="minion_elemental_resistance_%"}},[2125]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% to Chaos Resistance"}}},stats={[1]="minion_chaos_resistance_%"}},[2126]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]="#"}},text="Gain Unholy Might for 2 seconds on Melee Critical Strike"}}},stats={[1]="gain_unholy_might_for_2_seconds_on_melee_crit"}},[2127]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]="#"}},text="Gain Unholy Might for 2 seconds on Critical Strike"}}},stats={[1]="gain_unholy_might_for_2_seconds_on_crit"}},[2128]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]="#"}},text="Gain Unholy Might for 4 seconds on Critical Strike"}}},stats={[1]="gain_unholy_might_for_4_seconds_on_crit"}},[2129]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]="#"}},text="Minions gain Unholy Might for %1% seconds on Kill"}}},stats={[1]="minion_unholy_might_on_kill_duration_ms"}},[2130]={lang={English={[1]={[1]={k="old_leech_permyriad",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Chaos Damage Leeched as Life during Flask effect"}}},stats={[1]="old_do_not_use_local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"}},[2131]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Chaos Damage Leeched as Life during Flask effect"}}},stats={[1]="local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"}},[2132]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Chaos Damage during effect"}}},stats={[1]="local_unique_flask_physical_damage_%_to_add_as_chaos_while_healing"}},[2133]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Melee Physical Damage during effect"}}},stats={[1]="local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect"}},[2134]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Melee Physical Damage during effect"}}},stats={[1]="unique_lions_roar_melee_physical_damage_+%_final"}},[2135]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Elemental Damage as Extra Chaos Damage during effect"}}},stats={[1]="local_unique_flask_elemental_damage_%_to_add_as_chaos_while_healing"}},[2136]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds on using a Vaal Skill"}}},stats={[1]="onslaught_on_vaal_skill_use_duration_ms"}},[2137]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]=1,[2]="#"}},text="You gain Phasing for %1% seconds on using a Vaal Skill"}}},stats={[1]="phase_on_vaal_skill_use_duration_ms"}},[2138]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Ignite during any Flask Effect"}}},stats={[1]="chance_to_ignite_%_while_using_flask"}},[2139]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Freeze during any Flask Effect"}}},stats={[1]="chance_to_freeze_%_while_using_flask"}},[2140]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Shock during any Flask Effect"}}},stats={[1]="chance_to_shock_%_while_using_flask"}},[2141]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]="#"}},text="Your spells have %1%%% chance to Shock against Frozen Enemies"}}},stats={[1]="spell_chance_to_shock_frozen_enemies_%"}},[2142]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% reduced Enemy Stun Threshold during any Flask Effect"}}},stats={[1]="stun_threshold_reduction_+%_while_using_flask"}},[2143]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Physical Damage taken from Hits by Animals"}}},stats={[1]="physical_damage_taken_+_vs_beasts"}},[2144]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks with this Weapon have %1%%% increased Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Attacks with this Weapon have %1%%% reduced Elemental Damage"}}},stats={[1]="local_attacks_with_this_weapon_elemental_damage_+%"}},[2145]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken per Frenzy Charge"}}},stats={[1]="damage_taken_+%_per_frenzy_charge"}},[2146]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage per Frenzy Charge"}}},stats={[1]="lightning_damage_+%_per_frenzy_charge"}},[2147]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained on Kill per Frenzy Charge"}}},stats={[1]="life_gained_on_enemy_death_per_frenzy_charge"}},[2148]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Curses on Slain Enemies are transferred to a nearby Enemy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Curses on Slain Enemies are transferred to %1% nearby Enemies"}}},stats={[1]="transfer_curses_to_X_nearby_enemies_on_kill"}},[2149]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Weapon Physical Damage as Extra Damage of a random Element"}}},stats={[1]="weapon_physical_damage_%_to_add_as_random_element"}},[2150]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Damage of a random Element"}}},stats={[1]="physical_damage_%_to_add_as_random_element"}},[2151]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Recover %1%%% of Life on use"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Recover Full Life on use"}}},stats={[1]="local_unique_flask_instantly_recovers_%_maximum_life"}},[2152]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Maximum Life taken as Chaos Damage per second"}}},stats={[1]="local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing"}},[2153]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge if you Knock an Enemy Back with Melee Damage"}}},stats={[1]="unique_add_power_charge_on_melee_knockback_%"}},[2154]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge when you Throw a Trap"},[2]={limit={[1]={[1]=100,[2]="#"}},text="You gain a Power Charge when you Throw a Trap"}}},stats={[1]="gain_power_charge_when_throwing_trap_%"}},[2155]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Critical Strike Chance per 8 Strength"}}},stats={[1]="critical_strike_chance_+%_per_8_strength"}},[2156]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage during Flask effect"}}},stats={[1]="local_unique_flask_block_%_while_healing"}},[2157]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage during Flask effect"}}},stats={[1]="local_unique_flask_spell_block_%_while_healing"}},[2158]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while Ignited"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while Ignited"}}},stats={[1]="attack_speed_+%_while_ignited"}},[2159]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed while Ignited"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed while Ignited"}}},stats={[1]="cast_speed_+%_while_ignited"}},[2160]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Ignite while Ignited"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Always Ignite while Ignited"}}},stats={[1]="chance_to_ignite_%_while_ignited"}},[2161]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Wands"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Wands"}}},stats={[1]="wand_damage_+%"}},[2162]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks with this Weapon have %1%%% increased Physical Damage per 250 Evasion Rating"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Attacks with this Weapon have %1%%% reduced Physical Damage per 250 Evasion Rating"}}},stats={[1]="local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion"}},[2163]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage per 450 Evasion Rating"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage per 450 Evasion Rating"}}},stats={[1]="attack_damage_+%_per_450_evasion"}},[2164]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to be Ignited"}}},stats={[1]="chance_to_be_ignited_%"}},[2165]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHit"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to be Shocked"}}},stats={[1]="chance_to_be_shocked_%"}},[2166]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Steal Power, Frenzy, and Endurance Charges on Hit with Claws"}}},stats={[1]="claw_steal_power_frenzy_endurance_charges_on_hit_%"}},[2167]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Bows"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Steal Power, Frenzy, and Endurance Charges on Hit with Bows"}}},stats={[1]="bow_steal_power_frenzy_endurance_charges_on_hit_%"}},[2168]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage against Ignited Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage against Ignited Enemies"}}},stats={[1]="damage_+%_vs_ignited_enemies"}},[2169]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life on Rampage"}}},stats={[1]="recover_%_maximum_life_on_rampage_threshold"}},[2170]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Removes Elemental Ailments on Rampage"}}},stats={[1]="dispel_status_ailments_on_rampage_threshold"}},[2171]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Gain Immunity to Physical Damage for %1% second on Rampage"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain Immunity to Physical Damage for %1% seconds on Rampage"}}},stats={[1]="gain_physical_damage_immunity_on_rampage_threshold_ms"}},[2172]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRampage"},limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Souls for Vaal Skills on Rampage"}}},stats={[1]="gain_X_vaal_souls_on_rampage_threshold"}},[2173]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% Global chance to Blind Enemies on hit"}}},stats={[1]="global_chance_to_blind_on_hit_%"}},[2174]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage against Poisoned Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage against Poisoned Enemies"}}},stats={[1]="physical_damage_+%_vs_poisoned_enemies"}},[2175]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance to Cause Monster to Flee on Block"}}},stats={[1]="block_causes_monster_flee_%"}},[2176]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second per Level"}}},stats={[1]="life_regeneration_rate_per_minute_per_level"}},[2177]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Critical Strike Chance per Level"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Critical Strike Chance per Level"}}},stats={[1]="critical_strike_chance_+%_per_level"}},[2178]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage per Level"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage per Level"}}},stats={[1]="attack_damage_+%_per_level"}},[2179]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per Level"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage per Level"}}},stats={[1]="spell_damage_+%_per_level"}},[2180]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Gain a Flask Charge when you deal a Critical Strike"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Gain %1% Flask Charges when you deal a Critical Strike"}}},stats={[1]="recharge_flasks_on_crit"}},[2181]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies you inflict Bleeding on have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies you inflict Bleeding on have %1%%% reduced Movement Speed"}}},stats={[1]="bleeding_monsters_movement_velocity_+%"}},[2182]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSmokeCloud"},limit={[1]={[1]="#",[2]="#"}},text="Creates a Smoke Cloud on Rampage"}}},stats={[1]="ground_smoke_on_rampage_threshold_ms"}},[2183]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Enemies do not block your movement for %1% second on Rampage"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Enemies do not block your movement for %1% seconds on Rampage"}}},stats={[1]="phasing_on_rampage_threshold_ms"}},[2184]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while on Full Energy Shield"}}},stats={[1]="movement_velocity_+%_on_full_energy_shield"}},[2185]={lang={English={[1]={limit={[1]={[1]=1,[2]=99},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Enemies you Attack have %1%%% chance to Reflect %2% to %3% Chaos Damage to you"},[2]={limit={[1]={[1]=100,[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"}},text="Enemies you Attack Reflect %2% to %3% Chaos Damage to you"}}},stats={[1]="unique_chaos_damage_to_reflect_to_self_on_attack_%_chance",[2]="unique_minimum_chaos_damage_to_reflect_to_self_on_attack",[3]="unique_maximum_chaos_damage_to_reflect_to_self_on_attack"}},[2186]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Regeneration rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Regeneration rate"}}},stats={[1]="life_regeneration_rate_+%"}},[2187]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovery rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Recovery rate"}}},stats={[1]="life_recovery_rate_+%"}},[2188]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Recovery rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Recovery rate"}}},stats={[1]="mana_recovery_rate_+%"}},[2189]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Recovery rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Recovery rate"}}},stats={[1]="energy_shield_recovery_rate_+%"}},[2190]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Life gained on Kill per Level"}}},stats={[1]="life_gained_on_enemy_death_per_level"}},[2191]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained on Kill per Level"}}},stats={[1]="mana_gained_on_enemy_death_per_level"}},[2192]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Energy Shield gained on Kill per Level"}}},stats={[1]="energy_shield_gained_on_enemy_death_per_level"}},[2193]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Blinded"}}},stats={[1]="cannot_be_blinded"}},[2194]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1000,[2]=1000}},text="Gain Unholy Might for %1% second on Rampage"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]="#",[2]="#"}},text="Gain Unholy Might for %1% seconds on Rampage"}}},stats={[1]="gain_unholy_might_on_rampage_threshold_ms"}},[2195]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per Level"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per Level"}}},stats={[1]="elemental_damage_+%_per_level"}},[2196]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage per Level"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage per Level"}}},stats={[1]="chaos_damage_+%_per_level"}},[2197]={lang={English={[1]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextPhysReductionNotNegative"},limit={[1]={[1]="#",[2]="#"}},text="Enemies have %1$+d%% to Total Physical Damage Reduction against your Hits"}}},stats={[1]="enemy_phys_reduction_%_penalty_vs_hit"}},[2198]={lang={English={[1]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextPhysReductionNotNegative"},limit={[1]={[1]="#",[2]="#"}},text="Enemies you Impale have %1$+d%% to Total Physical Damage Reduction against Impale Hits"}}},stats={[1]="impale_phys_reduction_%_penalty"}},[2199]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Elemental Resistances"}}},stats={[1]="reduce_enemy_elemental_resistance_%"}},[2200]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Fire Resistance"}}},stats={[1]="base_reduce_enemy_fire_resistance_%"}},[2201]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Cold Resistance"}}},stats={[1]="base_reduce_enemy_cold_resistance_%"}},[2202]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Lightning Resistance"}}},stats={[1]="base_reduce_enemy_lightning_resistance_%"}},[2203]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level 5 Vulnerability on Block"}}},stats={[1]="curse_on_block_level_5_vulnerability"}},[2204]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Applies Level 15 Punishment on Blocking a Melee Attack, ignoring Curse Limit"}}},stats={[1]="curse_on_melee_block_level_15_punishment"}},[2205]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Applies Level 15 Temporal Chains on Blocking a Projectile Attack, ignoring Curse Limit"}}},stats={[1]="curse_on_projectile_block_level_15_temporal_chains"}},[2206]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Applies Level 15 Elemental Weakness on Blocking a Spell, ignoring Curse Limit"}}},stats={[1]="curse_on_spell_block_level_15_elemental_weakness"}},[2207]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area becomes fatal after some time"}}},stats={[1]="display_map_has_oxygen"}},[2208]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Nearby allies Recover %1%%% of your Maximum Life when you Die"}}},stats={[1]="unique_nearby_allies_recover_permyriad_max_life_on_death"}},[2209]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Steal Power, Frenzy, and Endurance Charges on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Steal Power, Frenzy, and Endurance Charges on Hit"}}},stats={[1]="base_steal_power_frenzy_endurance_charges_on_hit_%"}},[2210]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"},[2]={[1]=0,[2]=0}},text="%1%%% chance to gain Onslaught for 4 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]=100},[2]={[1]=0,[2]=0}},text="Gain Onslaught for 4 seconds on Kill"},[3]={[1]={k="milliseconds_to_seconds",v=2},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]="#"}},text="%1%%% chance to gain Onslaught for %2% seconds on Kill"},[4]={[1]={k="milliseconds_to_seconds",v=2},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]=100},[2]={[1]=1,[2]="#"}},text="Gain Onslaught for %2% seconds on Kill"}}},stats={[1]="chance_to_gain_onslaught_on_kill_%",[2]="onslaught_time_granted_on_kill_ms"}},[2211]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="Gain Onslaught for %1% seconds on Killing a Shocked Enemy"}}},stats={[1]="onslaught_time_granted_on_killing_shocked_enemy_ms"}},[2212]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Penetrate %1%%% Elemental Resistances per Frenzy Charge"}}},stats={[1]="penetrate_elemental_resistance_per_frenzy_charge_%"}},[2213]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Power Charge with Hits against Enemies on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Power Charge with Hits against Enemies on Full Life"}}},stats={[1]="damage_vs_enemies_on_full_life_per_power_charge_+%"}},[2214]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Power Charge with Hits against Enemies on Low Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Power Charge with Hits against Enemies on Low Life"}}},stats={[1]="damage_vs_enemies_on_low_life_per_power_charge_+%"}},[2215]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Nearby Allies gain %1%%% of Life Regenerated per second"}}},stats={[1]="local_display_aura_life_regeneration_rate_per_minute_%"}},[2216]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies have %1%%% to all Resistances"}}},stats={[1]="local_display_nearby_enemies_all_resistances_%"}},[2217]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]=1,[2]="#"}},text="Nearby Allies have %1%%% increased Defences per 100 Strength you have"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]="#",[2]=-1}},text="Nearby Allies have %1%%% reduced Defences per 100 Strength you have"}}},stats={[1]="dominance_defences_+%_on_nearby_allies_per_100_strength"}},[2218]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Allies have %1$+d%% to Critical Strike Multiplier per 100 Dexterity you have"}}},stats={[1]="dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity"}},[2219]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Allies have %1%%% increased Cast Speed per 100 Intelligence you have"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nearby Allies have %1%%% reduced Cast Speed per 100 Intelligence you have"}}},stats={[1]="dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence"}},[2220]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Allies gain %1%%% increased Mana Regeneration Rate"}}},stats={[1]="local_display_aura_mana_regeneration_rate_+%"}},[2221]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="You and Nearby Allies have %1% to %2% added Fire Damage per Red Socket"}}},stats={[1]="local_grants_aura_minimum_added_fire_damage_per_red_socket",[2]="local_grants_aura_maximum_added_fire_damage_per_red_socket"}},[2222]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="You and Nearby Allies have %1% to %2% added Cold Damage per Green Socket"}}},stats={[1]="local_grants_aura_minimum_added_cold_damage_per_green_socket",[2]="local_grants_aura_maximum_added_cold_damage_per_green_socket"}},[2223]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="You and Nearby Allies have %1% to %2% added Lightning Damage per Blue Socket"}}},stats={[1]="local_grants_aura_minimum_added_lightning_damage_per_blue_socket",[2]="local_grants_aura_maximum_added_lightning_damage_per_blue_socket"}},[2224]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="You and Nearby Allies have %1% to %2% added Chaos Damage per White Socket"}}},stats={[1]="local_grants_aura_minimum_added_chaos_damage_per_white_socket",[2]="local_grants_aura_maximum_added_chaos_damage_per_white_socket"}},[2225]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second per Endurance Charge"}}},stats={[1]="life_regen_per_minute_per_endurance_charge"}},[2226]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot Knock Enemies Back"}}},stats={[1]="cannot_knockback"}},[2227]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]=1,[2]="#"}},text="All Attack Damage Chills when you Stun"}}},stats={[1]="attack_damage_that_stuns_also_chills"}},[2228]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains the Immortalised Grandmasters\nPvP damage scaling in effect"}}},stats={[1]="display_map_contains_grandmasters"}},[2229]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1% Life when you lose an Endurance Charge"}}},stats={[1]="gain_x_life_when_endurance_charge_expires_or_consumed"}},[2230]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments per Curse on Enemy"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments per Curse on Enemy"}}},stats={[1]="damage_vs_cursed_enemies_per_enemy_curse_+%"}},[2231]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot gain Power Charges"}}},stats={[1]="cannot_gain_power_charges"}},[2232]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum Power Charges is 0"}}},stats={[1]="no_maximum_power_charges"}},[2233]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]="#",[2]="#"}},text="Knockback direction is reversed"}}},stats={[1]="enemy_knockback_direction_is_reversed"}},[2234]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Allies' Aura Buffs do not affect you"}}},stats={[1]="immune_to_ally_buff_auras"}},[2235]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can have two different Banners at the same time"}}},stats={[1]="allow_2_active_banners"}},[2236]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Aura Buffs do not affect allies"}}},stats={[1]="buff_auras_dont_affect_allies"}},[2237]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Hits can only Kill Frozen Enemies"}}},stats={[1]="hits_can_only_kill_frozen_enemies"}},[2238]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Maximum Life taken as Physical Damage on Minion Death"}}},stats={[1]="maximum_life_taken_as_physical_damage_on_minion_death_%"}},[2239]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Maximum Energy Shield taken as Physical Damage on Minion Death"}}},stats={[1]="maximum_es_taken_as_physical_damage_on_minion_death_%"}},[2240]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Area of Effect"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Area of Effect"}}},stats={[1]="minion_skill_area_of_effect_+%"}},[2241]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield per second while Shocked"}}},stats={[1]="energy_shield_regeneration_%_per_minute_while_shocked"}},[2242]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Endurance, Frenzy and Power Charge Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Endurance, Frenzy and Power Charge Duration"}}},stats={[1]="charge_duration_+%"}},[2243]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1% Physical Damage taken on Minion Death"}}},stats={[1]="physical_damage_taken_on_minion_death"}},[2244]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds on Culling Strike"}}},stats={[1]="onslaught_buff_duration_on_culling_strike_ms"}},[2245]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed during Onslaught"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed during Onslaught"}}},stats={[1]="attack_and_cast_speed_+%_during_onslaught"}},[2246]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Chilled during Onslaught"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Chilled during Onslaught"}}},stats={[1]="base_avoid_chill_%_while_have_onslaught"}},[2247]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Your Chaos Damage Poisons Enemies"}}},stats={[1]="chaos_damage_poisons"}},[2248]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Your Chaos Damage has %1%%% chance to Poison Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Your Chaos Damage Poisons Enemies"}}},stats={[1]="chaos_damage_chance_to_poison_%"}},[2249]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Mines can be Detonated an additional time"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Mines can be Detonated %1% additional times"}}},stats={[1]="mine_extra_uses"}},[2250]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Taking Fire Damage instead heals you"}}},stats={[1]="base_fire_damage_heals"}},[2251]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Taking Cold Damage instead heals you"}}},stats={[1]="base_cold_damage_heals"}},[2252]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Taking Lightning Damage instead heals you"}}},stats={[1]="base_lightning_damage_heals"}},[2253]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Taking Elemental Damage instead heals you"}}},stats={[1]="base_elemental_damage_heals"}},[2254]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Chilled, Frozen or Ignited during Onslaught"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Chilled, Frozen or Ignited during Onslaught"}}},stats={[1]="avoid_freeze_chill_ignite_%_while_have_onslaught"}},[2255]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="Ignites you cause are reflected back to you"}}},stats={[1]="ignites_reflected_to_self"}},[2256]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Sword Physical Damage as Extra Fire Damage"}}},stats={[1]="sword_physical_damage_%_to_add_as_fire"}},[2257]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1000,[2]=1000}},text="You gain Onslaught for %1% second on being Ignited"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds on being Ignited"}}},stats={[1]="gain_onslaught_when_ignited_ms"}},[2258]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Blind nearby Enemies on being Ignited"},[2]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=100,[2]="#"}},text="Blind nearby Enemies on being Ignited"}}},stats={[1]="blind_nearby_enemies_when_ignited_%"}},[2259]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Transmogrification"}}},stats={[1]="map_non_unique_equipment_drops_as_sell_price"}},[2260]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Atziri's Influence"}}},stats={[1]="map_items_drop_corrupted"}},[2261]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Found Items have a %1%%% chance to drop Corrupted in Area"}}},stats={[1]="map_items_drop_corrupted_%"}},[2262]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Living Weapons"}}},stats={[1]="map_weapons_drop_animated"}},[2263]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Adds Knockback during Flask effect"}}},stats={[1]="local_flask_adds_knockback_during_flask_effect"}},[2264]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]=99},[2]={[1]=0,[2]=0}},text="%1%%% chance to gain Unholy Might on block for 3 seconds"},[2]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0}},text="Gain Unholy Might on block for 3 seconds"},[3]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},[2]={k="milliseconds_to_seconds",v=2},limit={[1]={[1]=1,[2]=99},[2]={[1]=1,[2]="#"}},text="%1%%% chance to gain Unholy Might on block for %2% seconds"},[4]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},[2]={k="milliseconds_to_seconds",v=2},[3]={k="canonical_line",v="canonical"},[4]={k="_stat",v=1},limit={[1]={[1]=100,[2]="#"},[2]={[1]=1,[2]="#"}},text="Gain Unholy Might on block for %2% seconds"}}},stats={[1]="chance_to_gain_unholy_might_on_block_%",[2]="chance_to_gain_unholy_might_on_block_ms"}},[2265]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strength from Passives in Radius is Transformed to Dexterity"}}},stats={[1]="local_jewel_nearby_passives_str_to_dex"}},[2266]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strength from Passives in Radius is Transformed to Intelligence"}}},stats={[1]="local_jewel_nearby_passives_str_to_int"}},[2267]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Dexterity from Passives in Radius is Transformed to Strength"}}},stats={[1]="local_jewel_nearby_passives_dex_to_str"}},[2268]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Dexterity from Passives in Radius is Transformed to Intelligence"}}},stats={[1]="local_jewel_nearby_passives_dex_to_int"}},[2269]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Intelligence from Passives in Radius is Transformed to Strength"}}},stats={[1]="local_jewel_nearby_passives_int_to_str"}},[2270]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Intelligence from Passives in Radius is Transformed to Dexterity"}}},stats={[1]="local_jewel_nearby_passives_int_to_dex"}},[2271]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmed"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while Unarmed"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUnarmed"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while Unarmed"}}},stats={[1]="skill_area_of_effect_when_unarmed_+%"}},[2272]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life when you Consume a corpse"}}},stats={[1]="recover_%_maximum_life_when_corpse_destroyed_or_consumed"}},[2273]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Life per 10 Strength Allocated in Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Life per 10 Strength Allocated in Radius"}}},stats={[1]="local_unique_jewel_totem_life_+X%_per_10_str_in_radius"}},[2274]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to Dodge Attack Hits"}}},stats={[1]="minion_chance_to_dodge_%"}},[2275]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain %1% of its Modifiers for 20 seconds"}}},stats={[1]="local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill"}},[2276]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When you Kill a Rare monster, you gain %1% of its Modifiers for 20 seconds"}}},stats={[1]="gain_X_random_rare_monster_mods_on_kill"}},[2277]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life when you Block"}}},stats={[1]="recover_%_of_maximum_life_on_block"}},[2278]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions Recover %1%%% of their Life when they Block"}}},stats={[1]="minion_recover_%_of_maximum_life_on_block"}},[2279]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems cannot be Stunned"}}},stats={[1]="totems_cannot_be_stunned"}},[2280]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Leeching"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Leeching"}}},stats={[1]="damage_+%_while_leeching"}},[2281]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Bow range"}}},stats={[1]="display_bow_range_+"}},[2282]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers"}}},stats={[1]="local_unique_jewel_melee_applies_to_bow"}},[2283]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Dexterity per 1 Dexterity on Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius"}},[2284]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Intelligence per 1 Intelligence on Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius"}},[2285]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Strength per 1 Strength on Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_X_strength_per_1_strength_allocated_in_radius"}},[2286]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage per 10 Intelligence from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_chaos_damage_+%_per_10_int_in_radius"}},[2287]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Passives in Radius apply to Minions instead of you"}}},stats={[1]="local_unique_jewel_passives_in_radius_applied_to_minions_instead"}},[2288]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Passive applies to your Minions instead of you"}}},stats={[1]="passive_applies_to_minions"}},[2289]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life gained for each Elemental Ailment on Enemies hit by your Attacks"}}},stats={[1]="life_gained_on_hit_per_enemy_status_ailment"}},[2290]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life gained for each Elemental Ailment on Enemies hit by your Spells"}}},stats={[1]="life_gained_on_spell_hit_per_enemy_status_ailment"}},[2291]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Regeneration rate when on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Regeneration rate when on Full Energy Shield"}}},stats={[1]="life_regeneration_rate_+%_while_es_full"}},[2292]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least %1% Intelligence Allocated in Radius, You can apply an additional Curse"}}},stats={[1]="local_unique_jewel_with_x_int_in_radius_+1_curse"}},[2293]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},[2]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Strike Range while Unarmed"}}},stats={[1]="melee_range_+_while_unarmed"}},[2294]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage for each Magic Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage for each Magic Item Equipped"}}},stats={[1]="damage_+%_per_equipped_magic_item"}},[2295]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while on Full Energy Shield"}}},stats={[1]="spell_damage_+%_while_es_full"}},[2296]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Totems fire %1% additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Totems fire %1% additional Projectiles"}}},stats={[1]="totem_number_of_additional_projectiles"}},[2297]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Spell Hits while on Full Energy Shield"}}},stats={[1]="chance_to_dodge_spells_%_while_es_full"}},[2298]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Gain Unholy Might for 4 seconds on Melee Kill"}}},stats={[1]="chance_to_gain_unholy_might_on_melee_kill_%"}},[2299]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while no Mana is Reserved"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while no Mana is Reserved"}}},stats={[1]="spell_damage_+%_while_no_mana_reserved"}},[2300]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowMana"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while not on Low Mana"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowMana"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while not on Low Mana"}}},stats={[1]="spell_damage_+%_while_not_low_mana"}},[2301]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowMana"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost while not on Low Mana"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowMana"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost while not on Low Mana"}}},stats={[1]="mana_cost_+%_while_not_low_mana"}},[2302]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attributes per allocated Keystone"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attributes per allocated Keystone"}}},stats={[1]="all_attributes_+%_per_assigned_keystone"}},[2303]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Mirror Arrow and Clone Arrow spawn one additional Clone"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Mirror Arrow and Clone Arrow spawn %1$+d additional Clones"}}},stats={[1]="number_of_additional_clones"}},[2304]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Attack Skills per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Attack Skills per Freeze Charge"}}},stats={[1]="object_inherent_attack_skills_damage_+%_final_per_frenzy_charge"}},[2305]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1% seconds additional Base Duration per 100 Intelligence"}}},stats={[1]="skill_effect_duration_per_100_int"}},[2306]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Intelligence for each Unallocated Passive in Radius"}}},stats={[1]="local_unique_jewel_intelligence_per_unallocated_node_in_radius"}},[2307]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="If at least 70 Dexterity is Allocated in Radius, gain %1%%% of Physical Damage as Extra Chaos Damage"}}},stats={[1]="local_unique_jewel_with_70_dex_physical_damage_to_add_as_chaos_%"}},[2308]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="If at least 70 Strength is Allocated in Radius, %1%%% increased Life Recovery rate"}}},stats={[1]="local_unique_jewel_with_70_str_life_recovery_speed_+%"}},[2309]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be Cursed with Silence"}}},stats={[1]="cannot_be_cursed_with_silence"}},[2310]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vaal Skills deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vaal Skills deal %1%%% reduced Damage"}}},stats={[1]="vaal_skill_damage_+%"}},[2311]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Dead"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Dead"}}},stats={[1]="damage_+%_while_dead"}},[2312]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Life for each Corrupted Item Equipped"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Life for each Corrupted Item Equipped"}}},stats={[1]="maximum_life_+%_per_equipped_corrupted_item"}},[2313]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Energy Shield for each Corrupted Item Equipped"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Energy Shield for each Corrupted Item Equipped"}}},stats={[1]="maximum_es_+%_per_equipped_corrupted_item"}},[2314]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage for each Corrupted Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage for each Corrupted Item Equipped"}}},stats={[1]="chaos_damage_+%_per_equipped_corrupted_item"}},[2315]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased total Recovery per second from Life Leech for each Corrupted Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced total Recovery per second from Life Leech for each Corrupted Item Equipped"}}},stats={[1]="life_leech_speed_+%_per_equipped_corrupted_item"}},[2316]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second for each Uncorrupted Item Equipped"}}},stats={[1]="life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item"}},[2317]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced total Recovery per second from Mana Leech for each Corrupted Item Equipped"}}},stats={[1]="mana_leech_speed_+%_per_equipped_corrupted_item"}},[2318]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Resistances for each Corrupted Item Equipped"}}},stats={[1]="all_resistances_%_per_equipped_corrupted_item"}},[2319]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain an additional Vaal Soul on Kill"}}},stats={[1]="chance_to_gain_vaal_soul_on_kill_%"}},[2320]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vaal Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vaal Skill Effect Duration"}}},stats={[1]="vaal_skill_effect_duration_+%"}},[2321]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vaal Skill Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vaal Skill Critical Strike Chance"}}},stats={[1]="vaal_skill_critical_strike_chance_+%"}},[2322]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Vaal Skill Critical Strike Multiplier"}}},stats={[1]="vaal_skill_critical_strike_multiplier_+"}},[2323]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain an additional Vaal Soul per Enemy Shattered"}}},stats={[1]="chance_to_gain_vaal_soul_on_enemy_shatter_%"}},[2324]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Totem Skills that cast an Aura"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Totem Skills that cast an Aura"}}},stats={[1]="mana_cost_+%_on_totemified_aura_skills"}},[2325]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Experience Gain for Corrupted Gems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Experience Gain for Corrupted Gems"}}},stats={[1]="corrupted_gem_experience_gain_+%"}},[2326]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]="#"}},text="With %1% Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead"}}},stats={[1]="life_leech_uses_chaos_damage_when_X_corrupted_items_equipped"}},[2327]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]="#"}},text="With %1% Corrupted Items Equipped: 50%% of Chaos Damage does not bypass Energy Shield, and 50%% of Physical Damage bypasses Energy Shield"}}},stats={[1]="half_physical_bypasses_es_half_chaos_damages_es_when_X_corrupted_items_equipped"}},[2328]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextSoulEater"},[3]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]="#"}},text="With 5 Corrupted Items Equipped: Gain Soul Eater for %1% seconds on Vaal Skill use"}}},stats={[1]="gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms"}},[2329]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spend Energy Shield before Mana for Skill Costs"}}},stats={[1]="spend_energy_shield_for_costs_before_mana"}},[2330]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Energy Shield protects Mana instead of Life"}}},stats={[1]="energy_shield_protects_mana"}},[2331]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]=1,[2]="#"}},text="Damage from Enemies Hitting you is Lucky while you are Cursed with Vulnerability"},[2]={[1]={k="reminderstring",v="ReminderTextUnlucky"},limit={[1]={[1]="#",[2]=-1}},text="Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability"}}},stats={[1]="enemy_extra_damage_rolls_while_affected_by_vulnerability"}},[2332]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Energy Shield starts at zero"}}},stats={[1]="start_at_zero_energy_shield"}},[2333]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot gain Energy Shield"}}},stats={[1]="no_energy_shield_recovery"}},[2334]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You count as on Low Life while you are Cursed with Vulnerability"}}},stats={[1]="you_count_as_low_life_while_affected_by_vulnerability"}},[2335]={lang={English={[1]={limit={[1]={[1]=100,[2]=100}},text="Cursed with Level 10 Punishment on Kill"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to be cursed with Level 10 Punishment on Kill"}}},stats={[1]="chance_to_curse_self_with_punishment_on_kill_%"}},[2336]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You are Cursed with Level %1% Vulnerability"}}},stats={[1]="self_cursed_with_level_x_vulnerability"}},[2337]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="1%% increased Evasion Rating per %1% Dexterity Allocated in Radius"}}},stats={[1]="local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius"}},[2338]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="1%% increased Claw Physical Damage per %1% Dexterity Allocated in Radius"}}},stats={[1]="local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius"}},[2339]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamageTypes"},limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage"}}},stats={[1]="local_unique_jewel_damage_increases_applies_to_fire_damage"}},[2340]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage"}}},stats={[1]="local_unique_jewel_physical_damage_increases_applies_to_cold_damage"}},[2341]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage"}}},stats={[1]="local_unique_jewel_cold_damage_increases_applies_to_physical_damage"}},[2342]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200%% of their value"}}},stats={[1]="local_unique_jewel_energy_shield_increases_applies_to_armour_doubled"}},[2343]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield"}}},stats={[1]="local_unique_jewel_life_increases_applies_to_energy_shield"}},[2344]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hits have %1%%% increased Critical Strike Chance against you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hits have %1%%% reduced Critical Strike Chance against you"}}},stats={[1]="base_enemy_critical_strike_chance_+%_against_self"}},[2345]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Hits have %1$+d%% additional Critical Strike Chance against you"}}},stats={[1]="enemy_additional_critical_strike_chance_against_self"}},[2346]={lang={English={[1]={[1]={k="times_twenty",v=1},limit={[1]={[1]=1,[2]="#"}},text="Hits have %1%%% increased Critical Strike Chance against you"},[2]={[1]={k="times_twenty",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hits have %1%%% reduced Critical Strike Chance against you"}}},stats={[1]="enemy_critical_strike_chance_+%_against_self_20_times_value"}},[2347]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Adds 1 maximum Lightning Damage to Attacks per %1% Dexterity Allocated in Radius"}}},stats={[1]="local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex"}},[2348]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Adds 1 to Maximum Life per %1% Intelligence Allocated in Radius"}}},stats={[1]="local_unique_jewel_additional_life_per_X_int_in_radius"}},[2349]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1%% increased Chaos Damage per %1% Intelligence Allocated in Radius"}}},stats={[1]="local_unique_jewel_chaos_damage_+%_per_X_int_in_radius"}},[2350]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1%% reduced Chill and Freeze Duration per %1% Dexterity Allocated in Radius"}}},stats={[1]="local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius"}},[2351]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200%% of their value"}}},stats={[1]="local_unique_jewel_life_increases_applies_to_mana_doubled"}},[2352]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus"}}},stats={[1]="local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius"}},[2353]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="1%% increased Melee Physical Damage with Unarmed Attacks per %1% Dexterity Allocated in Radius"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]=-1}},text="1%% reduced Melee Physical Damage with Unarmed Attacks per %1% Dexterity Allocated in Radius"}}},stats={[1]="local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius"}},[2354]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Chill Enemy for %1$d second when Hit, reducing their Action Speed by 30%%"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1001,[2]="#"}},text="Chill Enemy for %1$d seconds when Hit, reducing their Action Speed by 30%%"}}},stats={[1]="chill_enemy_when_hit_duration_ms"}},[2355]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Physical Damage taken from Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Physical Damage taken from Hits"}}},stats={[1]="new_arctic_armour_physical_damage_taken_when_hit_+%_final"}},[2356]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Fire Damage taken from Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Fire Damage taken from Hits"}}},stats={[1]="new_arctic_armour_fire_damage_taken_when_hit_+%_final"}},[2357]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextVisibility"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Visibility to Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextVisibility"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Visibility to Enemies"}}},stats={[1]="enemy_aggro_radius_+%"}},[2358]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=2},limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]="#"}},text="Removes all but one Life on use\nRemoved life is Regenerated as Energy Shield over %2$d seconds"}}},stats={[1]="local_unique_remove_life_and_regen_es_from_removed_life",[2]="local_unique_regen_es_from_removed_life_duration_ms"}},[2359]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Physical Attack Damage is increased by 1%% per %1$d Strength from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius"}},[2360]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fortify Duration is increased by 1%% per %1$d Intelligence from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius"}},[2361]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fire Damage is increased by 1%% per %1$d Intelligence from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_fire_damage_+1%_per_x_int_in_radius"}},[2362]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cold Damage is increased by 1%% per %1$d Intelligence from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_cold_damage_+1%_per_x_int_in_radius"}},[2363]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Physical Damage is increased by 1%% per %1$d Intelligence from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_physical_damage_+1%_per_int_in_radius"}},[2364]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Physical Attack Damage is increased by 1%% per %1$d Dexterity from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius"}},[2365]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius"}},[2366]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield per Second for\nevery 10 Intelligence on Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius"}},[2367]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed per 10 Dexterity on Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius"}},[2368]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectile Damage is increased by 1%% per %1$d Dexterity from Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius"}},[2369]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Glacial Cascade gains an additional stage with %1$d Intelligence from Passives in Radius"}}},stats={[1]="local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius"}},[2370]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Animate Weapon will Animate Bows and Wands with %1$d Dexterity from Passives in Radius"}}},stats={[1]="local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius"}},[2371]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Split Arrow fires an additional arrow with %1$d Dexterity from Passives in Radius"}}},stats={[1]="local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius"}},[2372]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius"}}},stats={[1]="local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius"}},[2373]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius"}}},stats={[1]="local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius"}},[2374]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius"}}},stats={[1]="local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius"}},[2375]={lang={English={[1]={limit={[1]={[1]="#",[2]=1}},text="Split Arrow fires an additional arrow"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Split Arrow fires %1$d additional arrows"}}},stats={[1]="split_arrow_number_of_additional_arrows"}},[2376]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Animate Weapon can Animate Bows"}}},stats={[1]="animate_weapon_can_animate_bows"}},[2377]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Animate Weapon can Animate Wands"}}},stats={[1]="animate_weapon_can_animate_wands"}},[2378]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies take %1$d Lightning Damage per second"}}},stats={[1]="local_display_nearby_enemies_take_X_lightning_damage_per_minute"}},[2379]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage is taken from Mana before Life per Power Charge"}}},stats={[1]="damage_taken_goes_to_mana_%_per_power_charge"}},[2380]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Power Charge"}}},stats={[1]="critical_strike_chance_+%_per_power_charge"}},[2381]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second if you were Hit Recently"}}},stats={[1]="enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit"}},[2382]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ball Lightning Damage"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ball Lightning Damage"}}},stats={[1]="ball_lightning_damage_+%"}},[2383]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Bleeding"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Bleeding"}}},stats={[1]="bleeding_damage_+%"}},[2384]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poison Duration"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poison Duration"}}},stats={[1]="base_poison_duration_+%"}},[2385]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Poison Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Poison Duration"}}},stats={[1]="unique_volkuurs_clutch_poison_duration_+%_final"}},[2386]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Poison on Hit"}}},stats={[1]="global_poison_on_hit"}},[2387]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Always Poison on Hit"}}},stats={[1]="base_chance_to_poison_on_hit_%"}},[2388]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Poison Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Minions Poison Enemies on Hit"}}},stats={[1]="minions_chance_to_poison_on_hit_%"}},[2389]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Poison on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Always Poison on Hit with Attacks"}}},stats={[1]="chance_to_poison_on_hit_with_attacks_%"}},[2390]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage from Hits taken as Cold Damage"}}},stats={[1]="fire_damage_taken_%_as_cold"}},[2391]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage from Hits taken as Lightning Damage"}}},stats={[1]="fire_damage_taken_%_as_lightning"}},[2392]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage from Hits taken as Fire Damage"}}},stats={[1]="cold_damage_taken_%_as_fire"}},[2393]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage from Hits taken as Lightning Damage"}}},stats={[1]="cold_damage_taken_%_as_lightning"}},[2394]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage from Hits taken as Fire Damage"}}},stats={[1]="lightning_damage_taken_%_as_fire"}},[2395]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Poison"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Poison"}}},stats={[1]="base_poison_damage_+%"}},[2396]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage from Hits taken as Cold Damage"}}},stats={[1]="lightning_damage_taken_%_as_cold"}},[2397]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flask Charges gained during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flask Charges gained during any Flask Effect"}}},stats={[1]="flask_charges_gained_+%_during_flask_effect"}},[2398]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate during any Flask Effect"}}},stats={[1]="mana_regeneration_rate_+%_during_flask_effect"}},[2399]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Life Leech applies to Enemies as Chaos Damage"}}},stats={[1]="life_leech_applies_to_enemies_%"}},[2400]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed during any Flask Effect"}}},stats={[1]="movement_speed_+%_during_flask_effect"}},[2401]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier against Bleeding Enemies"}}},stats={[1]="critical_strike_multiplier_+_vs_bleeding_enemies"}},[2402]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier against Burning Enemies"}}},stats={[1]="critical_strike_multiplier_+_vs_burning_enemies"}},[2403]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier per 1%% Chance to Block Attack Damage"}}},stats={[1]="critical_strike_multiplier_+_per_1%_block_chance"}},[2404]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Bleeding Enemies"}}},stats={[1]="critical_strike_chance_+%_vs_bleeding_enemies"}},[2405]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Moving while Bleeding doesn't cause Minions to take extra Damage"}}},stats={[1]="minion_no_extra_bleed_damage_while_moving"}},[2406]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Moving while Bleeding doesn't cause you to take extra Damage"}}},stats={[1]="no_extra_bleed_damage_while_moving"}},[2407]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have Corrupting Blood"}}},stats={[1]="map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack"}},[2408]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Action Speed cannot be modified to below base value"}}},stats={[1]="action_speed_cannot_be_reduced_below_base"}},[2409]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Movement Speed cannot be modified to below base value"}}},stats={[1]="movement_speed_cannot_be_reduced_below_base"}},[2410]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while you have Fortify"}}},stats={[1]="damage_+%_while_fortified"}},[2411]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second while you have Fortify"}}},stats={[1]="life_regeneration_per_minute_%_while_fortified"}},[2412]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Endurance Charge"}}},stats={[1]="damage_+%_per_endurance_charge"}},[2413]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Recover %1%%% of Life and Mana when you use a Warcry"}}},stats={[1]="restore_life_and_mana_on_warcry_%"}},[2414]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Warcry Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Warcry Duration"}}},stats={[1]="warcry_duration_+%"}},[2415]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you've been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you've been Hit Recently"}}},stats={[1]="attack_speed_+%_when_hit"}},[2416]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage when not on Low Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage when not on Low Life"}}},stats={[1]="damage_+%_when_not_on_low_life"}},[2417]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while you have a Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while you have a Totem"}}},stats={[1]="damage_+%_while_totem_active"}},[2418]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Fire Damage if you've Killed Recently"}}},stats={[1]="physical_damage_%_added_as_fire_damage_on_kill"}},[2419]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if you've summoned a Totem Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed if you've summoned a Totem Recently"}}},stats={[1]="attack_and_cast_speed_+%_on_placing_totem"}},[2420]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Rare and Unique Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Rare and Unique Enemies"}}},stats={[1]="damage_+%_to_rare_and_unique_enemies"}},[2421]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},[2]={k="reminderstring",v="ReminderTextOverkill"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Overkill Damage is Leeched as Life"}}},stats={[1]="life_leech_on_overkill_damage_%"}},[2422]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while Leeching"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while Leeching"}}},stats={[1]="attack_speed_+%_while_leeching"}},[2423]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Life Leech effects are not removed at Full Life"}}},stats={[1]="life_leech_does_not_stop_at_full_life"}},[2424]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot be Stunned while Leeching"}}},stats={[1]="cannot_be_stunned_while_leeching"}},[2425]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBloodMagicCosts"},limit={[1]={[1]=1,[2]="#"}},text="Attacks have Blood Magic"}}},stats={[1]="attacks_use_life_in_place_of_mana"}},[2426]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBloodMagicCosts"},limit={[1]={[1]="#",[2]="#"}},text="Skills which throw Traps have Blood Magic"}}},stats={[1]="trap_throw_skills_have_blood_magic"}},[2427]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour and Evasion Rating when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour and Evasion Rating when on Low Life"}}},stats={[1]="armour_and_evasion_on_low_life_+%"}},[2428]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies you Taunt have a %1%%% increased chance to be Stunned"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies you Taunt have a %1%%% reduced chance to be Stunned"}}},stats={[1]="taunted_enemies_chance_to_be_stunned_+%"}},[2429]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Taunted by you take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Taunted by you take %1%%% reduced Damage"}}},stats={[1]="taunted_enemies_damage_taken_+%"}},[2430]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while you have Fortify"}}},stats={[1]="attack_speed_while_fortified_+%"}},[2431]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage if you were Damaged by a Hit Recently"}}},stats={[1]="block_chance_on_damage_taken_%"}},[2432]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you've taken no Damage from Hits Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you've taken no Damage from Hits Recently"}}},stats={[1]="damage_while_no_damage_taken_+%"}},[2433]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage for each time you've Blocked in the past 10 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage for each time you've Blocked in the past 10 seconds"}}},stats={[1]="physical_damage_on_block_+%"}},[2434]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if you've been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed if you've been Hit Recently"}}},stats={[1]="attack_and_cast_speed_when_hit_+%"}},[2435]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Hits and Ailments against Blinded Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Hits and Ailments against Blinded Enemies"}}},stats={[1]="fire_damage_+%_to_blinded_enemies"}},[2436]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage taken from Blinded Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage taken from Blinded Enemies"}}},stats={[1]="spell_damage_taken_+%_from_blinded_enemies"}},[2437]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Totems have %1%%% of your Armour"}}},stats={[1]="totems_gain_%_of_players_armour"}},[2438]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you haven't been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you haven't been Hit Recently"}}},stats={[1]="movement_velocity_while_not_hit_+%"}},[2439]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life and Mana if you've Killed Recently"}}},stats={[1]="gain_life_and_mana_leech_on_kill_permyriad"}},[2440]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance on Hit to Taunt an Enemy"}}},stats={[1]="chance_to_taunt_on_hit_%"}},[2441]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Strength in Radius, %1%%% increased\nRarity of Items dropped by Enemies Shattered by Glacial Hammer"}}},stats={[1]="local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius"}},[2442]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains %1%%% increased Damage each time it Hits"}}},stats={[1]="local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius"}},[2443]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Double Strike has a %1%%% chance Trigger On Kill Effects twice"}}},stats={[1]="local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius"}},[2444]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Viper Strike deals %1%%% increased Damage with Hits and Poison for each Poison on the Enemy"}}},stats={[1]="local_unique_jewel_viper_strike_attack_damage_per_poison_on_enemy_+%_with_50_dexterity_in_radius"}},[2445]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Strength in Radius, Heavy Strike has a \n%1%%% chance to deal Double Damage"}}},stats={[1]="local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius"}},[2446]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer"}}},stats={[1]="glacial_hammer_item_rarity_on_shattering_enemy_+%"}},[2447]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spectral Throw deals %1%%% increased Damage per Enemy Hit"}}},stats={[1]="spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%"}},[2448]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Double Strike has a %1%%% chance Trigger On Kill Effects twice"}}},stats={[1]="double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%"}},[2449]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Viper Strike deals %1%%% increased Damage with Hits and Poison for each Poison on the Enemy"}}},stats={[1]="viper_strike_attack_damage_per_poison_on_enemy_+%"}},[2450]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Heavy Strike has a %1%%% chance to deal Double Damage"}}},stats={[1]="heavy_strike_chance_to_deal_double_damage_%"}},[2451]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills if you've been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills if you've been Hit Recently"}}},stats={[1]="enchantment_boots_mana_costs_when_hit_+%"}},[2452]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Avoid being Stunned if you've Killed Recently"}}},stats={[1]="enchantment_boots_stun_avoid_%_on_kill"}},[2453]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Spell Hits if you've\ntaken Spell Damage Recently"}}},stats={[1]="enchantment_boots_spell_dodge_when_hit_by_spells_%"}},[2454]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if you've Killed Recently"}}},stats={[1]="enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill"}},[2455]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage if you've been Hit Recently"}}},stats={[1]="enchantment_boots_added_cold_damage_when_hit_minimum",[2]="enchantment_boots_added_cold_damage_when_hit_maximum"}},[2456]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage if you haven't Killed Recently"}}},stats={[1]="enchantment_boots_minimum_added_lightning_damage_when_you_havent_killed_for_4_seconds",[2]="enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds"}},[2457]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},[3]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life if you've Killed Recently"}}},stats={[1]="enchantment_boots_life_leech_on_kill_permyriad"}},[2458]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]="#"}},text="Adds %1% to %2% Fire Damage if you've Killed Recently"}}},stats={[1]="enchantment_boots_minimum_added_fire_damage_on_kill_4s",[2]="enchantment_boots_maximum_added_fire_damage_on_kill_4s"}},[2459]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you haven't been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you haven't been Hit Recently"}}},stats={[1]="enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds"}},[2460]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Freeze, Shock and Ignite if you haven't Crit Recently"}}},stats={[1]="enchantment_boots_status_ailment_chance_+%_when_havent_crit_for_4_seconds"}},[2461]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance to Dodge Attack Hits if you've taken a Critical Strike Recently"}}},stats={[1]="enchantment_boots_dodge_chance_when_critically_hit_%"}},[2462]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to %1% Skeleton Mages"}}},stats={[1]="local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons"}},[2463]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summon Skeletons can Summon up to %1% Skeleton Mages"}}},stats={[1]="number_of_melee_skeletons_to_summon_as_mage_skeletons"}},[2464]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Strength in Radius, Vigilant Strike\nFortifies you and Nearby Allies for %1% seconds"}}},stats={[1]="local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius"}},[2465]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vigilant Strike Fortifies you and Nearby Allies for %1% seconds"}}},stats={[1]="vigilant_strike_applies_to_nearby_allies_for_X_seconds"}},[2466]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to %1%%% reduced Area of Effect"}}},stats={[1]="local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius"}},[2467]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to %1$+d Radius"}}},stats={[1]="local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius"}},[2468]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Fireball Projectiles gain Area as they travel farther, up to %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Fireball Projectiles gain Area as they travel farther, up to %1%%% reduced Area of Effect"}}},stats={[1]="fireball_radius_up_to_+%_at_longer_ranges"}},[2469]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Fireball Projectiles gain Radius as they travel farther, up to %1$+d Radius"}}},stats={[1]="fireball_base_radius_up_to_+_at_longer_ranges"}},[2470]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Animate Weapon can Animate up to %1% Ranged Weapons"}}},stats={[1]="local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius"}},[2471]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Animate Weapon can Animate up to %1% ranged weapons"}}},stats={[1]="animate_weapon_can_animate_up_to_x_additional_ranged_weapons"}},[2472]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="With at least 40 Strength in Radius, Ground Slam has a %1%%% chance\nto grant an Endurance Charge when you Stun an Enemy"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Strength in Radius, Ground Slam grants an Endurance Charge on Stun"}}},stats={[1]="local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius"}},[2473]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Strength in Radius, Ground Slam\nhas a %1%%% increased angle"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Strength in Radius, Ground Slam\nhas a %1%%% reduced angle"}}},stats={[1]="local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius"}},[2474]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ground Slam has a %1%%% increased angle"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ground Slam has a %1%%% reduced angle"}}},stats={[1]="ground_slam_angle_+%"}},[2475]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, Cold Snap\nhas a %1%%% chance to grant a Power Charge on Killing Blow"}}},stats={[1]="local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius"}},[2476]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cold Snap has a %1%%% chance to grant a Power Charge on Killing Blow"}}},stats={[1]="cold_snap_gain_power_charge_on_kill_%"}},[2477]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, %1%%% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies"}}},stats={[1]="local_unique_jewel_rallying_cry_damage_taken_goes_to_mana_%_with_50_int_in_radius"}},[2478]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage taken gained as Mana over 4 seconds when Hit during Rallying Cry for you and Allies"}}},stats={[1]="rallying_cry_damage_taken_goes_to_mana_%"}},[2479]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Dexterity in Radius, Barrage fires an additional projectile simultaneously on the first and final attacks"},[2]={limit={[1]={[1]=2,[2]="#"}},text="With at least 40 Dexterity in Radius, Barrage fires an additional %1% projectiles simultaneously on the first and final attacks"}}},stats={[1]="local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius"}},[2480]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Barrage fires an additional projectile simultaneously on the first and final attacks"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Barrage fires an additional %1% projectiles simultaneously on the first and final attacks"}}},stats={[1]="barrage_final_volley_fires_x_additional_projectiles_simultaneously"}},[2481]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Block"}}},stats={[1]="never_block"}},[2482]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="No Chance to Block"}}},stats={[1]="local_no_block_chance"}},[2483]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Mana Cost per Endurance Charge"}}},stats={[1]="mana_cost_-%_per_endurance_charge"}},[2484]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRampage"},limit={[1]={[1]=1,[2]="#"}},text="Gain Rampage while at Maximum Endurance Charges"}}},stats={[1]="gain_rampage_while_at_maximum_endurance_charges"}},[2485]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lose all Endurance Charges when Rampage ends"}}},stats={[1]="lose_endurance_charges_on_rampage_end"}},[2486]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Animate Weapon can Animate up to %1% Ranged Weapons"}}},stats={[1]="virtual_number_of_ranged_animated_weapons_allowed"}},[2487]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="Stun Threshold is based on %1%%% of your Mana instead of Life"}}},stats={[1]="stun_threshold_based_on_%_mana_instead_of_life"}},[2488]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Threshold"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Threshold"}}},stats={[1]="stun_threshold_+%"}},[2489]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Attack and Cast Speed per Skeleton you own"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Attack and Cast Speed per Skeleton you own"}}},stats={[1]="minion_attack_and_cast_speed_+%_per_active_skeleton"}},[2490]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Duration per Raised Zombie"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Duration per Raised Zombie"}}},stats={[1]="minion_duration_+%_per_active_zombie"}},[2491]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Damage per Raised Spectre"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Damage per Raised Spectre"}}},stats={[1]="minion_damage_+%_per_active_spectre"}},[2492]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Minions Regenerate %1% Life per second per Raging Spirit you own"}}},stats={[1]="minion_life_regeneration_per_minute_per_active_raging_spirit"}},[2493]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Warcry Speed"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Warcry Speed"}}},stats={[1]="warcry_speed_+%"}},[2494]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Her Blessing for 3 seconds when you Ignite an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain Her Blessing for 3 seconds when you Ignite an Enemy"}}},stats={[1]="gain_her_blessing_for_3_seconds_on_ignite_%"}},[2495]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Blind nearby Enemies when gaining Her Blessing"},[2]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=100,[2]="#"}},text="Always Blind nearby Enemies when gaining Her Blessing"}}},stats={[1]="blind_nearby_enemies_when_gaining_her_blessing_%"}},[2496]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Frozen, Chilled or Ignited with Her Blessing"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Frozen, Chilled or Ignited with Her Blessing"}}},stats={[1]="avoid_freeze_chill_ignite_%_with_her_blessing"}},[2497]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Movement Speed with Her Blessing"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Movement Speed with Her Blessing"}}},stats={[1]="attack_and_movement_speed_+%_with_her_blessing"}},[2498]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier per Power Charge"}}},stats={[1]="critical_strike_multiplier_+_per_power_charge"}},[2499]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Poison on Hit against Bleeding Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Always Poison on Hit against Bleeding Enemies"}}},stats={[1]="apply_poison_on_hit_vs_bleeding_enemies_%"}},[2500]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Blinded Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Blinded Enemies"}}},stats={[1]="damage_taken_+%_from_blinded_enemies"}},[2501]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage per Frenzy Charge"}}},stats={[1]="attack_damage_+%_per_frenzy_charge"}},[2502]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Frenzy Charge"}}},stats={[1]="damage_+%_per_frenzy_charge"}},[2503]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Arcane Surge on you"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Arcane Surge on you"}}},stats={[1]="arcane_surge_effect_+%"}},[2504]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Arcane Surge on you per\n200 Mana spent Recently, up to 50%%"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextArcaneSurge"},[3]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Arcane Surge on you per\n200 Mana spent Recently"}}},stats={[1]="arcane_surge_effect_+%_per_200_mana_spent_recently_up_to_50%"}},[2505]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Onslaught Effect"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Onslaught Effect"}}},stats={[1]="onslaught_effect_+%"}},[2506]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage during Onslaught"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage during Onslaught"}}},stats={[1]="attack_damage_+%_while_onslaught_active"}},[2507]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Poisoned Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Poisoned Enemies"}}},stats={[1]="critical_strike_chance_+%_vs_poisoned_enemies"}},[2508]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken"}}},stats={[1]="elemental_damage_taken_+%"}},[2509]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Trap or Mine Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Trap or Mine Hits"}}},stats={[1]="damage_taken_from_traps_and_mines_+%"}},[2510]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for Attacks to Maim on Hit against Poisoned Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=99,[2]=100}},text="Attacks always Maim on Hit against Poisoned Enemies"}}},stats={[1]="maim_on_hit_%_vs_poisoned_enemies"}},[2511]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more chance to Evade Melee Attacks during Onslaught"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less chance to Evade Melee Attacks during Onslaught"}}},stats={[1]="raider_passive_evade_melee_attacks_while_onslaughted_+%_final"}},[2512]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more chance to Evade Projectile Attacks during Onslaught"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less chance to Evade Projectile Attacks during Onslaught"}}},stats={[1]="raider_passive_evade_projectile_attacks_while_onslaughted_+%_final"}},[2513]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Removes Elemental Ailments when you use a Flask"}}},stats={[1]="dispel_status_ailments_on_flask_use"}},[2514]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Elemental Ailments during any Flask Effect"},[2]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=100,[2]="#"}},text="Cannot be affected by Elemental Ailments during any Flask Effect"}}},stats={[1]="avoid_status_ailments_%_during_flask_effect"}},[2515]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed during any Flask Effect"}}},stats={[1]="attack_speed_+%_during_flask_effect"}},[2516]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Resistance during any Flask Effect"}}},stats={[1]="chaos_resistance_+_while_using_flask"}},[2517]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Poison on Hit during any Flask Effect"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Always Poison on Hit during any Flask Effect"}}},stats={[1]="poison_on_hit_during_flask_effect_%"}},[2518]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Shocks nearby Enemies during Flask effect, causing 10%% increased Damage taken"}}},stats={[1]="local_unique_flask_shock_nearby_enemies_during_flask_effect"}},[2519]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You are Shocked during Flask effect, causing 50%% increased Damage taken"}}},stats={[1]="local_unique_flask_shocked_during_flask_effect"}},[2520]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Lightning during Flask effect"}}},stats={[1]="local_unique_flask_physical_damage_%_converted_to_lightning_during_flask_effect"}},[2521]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Lightning Resistance during Flask effect"}}},stats={[1]="local_unique_flask_lightning_resistance_penetration_%_during_flask_effect"}},[2522]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Attacks during Flask effect"}}},stats={[1]="local_unique_flask_minimum_added_lightning_damage_to_attacks_during_flask_effect",[2]="local_unique_flask_maximum_added_lightning_damage_to_attacks_during_flask_effect"}},[2523]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells during Flask effect"}}},stats={[1]="local_unique_flask_minimum_added_lightning_damage_to_spells_during_flask_effect",[2]="local_unique_flask_maximum_added_lightning_damage_to_spells_during_flask_effect"}},[2524]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Leeched as Life during Flask effect"}}},stats={[1]="local_unique_flask_leech_lightning_damage_%_as_life_during_flask_effect"}},[2525]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Leeched as Mana during Flask effect"}}},stats={[1]="local_unique_flask_leech_lightning_damage_%_as_mana_during_flask_effect"}},[2526]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="Life and Mana Leech are instant during effect"}}},stats={[1]="local_unique_flask_leech_is_instant_during_flask_effect"}},[2527]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Killed with Attack or Spell Hits Explode, dealing %1%%% of their Life as Chaos Damage"}}},stats={[1]="explode_on_kill_%_chaos_damage_to_deal"}},[2528]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies you Kill have a %1%%% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"}}},stats={[1]="explode_enemies_for_25%_life_as_chaos_on_kill_chance_%"}},[2529]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cursed Enemies you or your Minions Kill have a %1%%% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage"}}},stats={[1]="explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"}},[2530]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% of Enemy Elemental Resistances if you haven't Killed Recently"}}},stats={[1]="enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds"}},[2531]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage as Extra Damage of each Element you've been Hit by Spell Damage of Recently"}}},stats={[1]="enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds"}},[2532]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage if you've taken a Critical Strike Recently"}}},stats={[1]="enchantment_boots_minimum_added_chaos_damage_for_4_seconds_when_crit_4s",[2]="enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s"}},[2533]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Movement Speed while not affected by Elemental Ailments"}}},stats={[1]="movement_speed_+%_while_not_affected_by_status_ailments"}},[2534]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Spell Damage if you or your Totems have Killed in the past 2 seconds"}}},stats={[1]="stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds"}},[2535]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},[3]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Elemental Damage Leeched as Life against Enemies affected by Elemental Ailments"}}},stats={[1]="life_leech_permyriad_from_elemental_damage_against_enemies_with_elemental_status_ailments"}},[2536]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="Totems Explode for %1%%% of their Life as Fire Damage when on Low Life"}}},stats={[1]="totems_explode_for_%_of_max_life_as_fire_damage_on_low_life"}},[2537]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="If you've Warcried Recently, you and nearby allies have %1%%% increased Attack, Cast and Movement Speed"}}},stats={[1]="guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%"}},[2538]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for you and your allies to Avoid being Stunned while you are wielding a Staff"},[2]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=100,[2]="#"}},text="You and your allies cannot be Stunned while you are wielding a Staff"}}},stats={[1]="chance_to_avoid_stun_%_aura_while_wielding_a_staff"}},[2539]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Bleeding Enemies"}}},stats={[1]="damage_taken_+%_from_bleeding_enemies"}},[2540]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for Attacks to Maim on Hit against Bleeding Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=100,[2]="#"}},text="Attacks Maim on Hit against Bleeding Enemies"}}},stats={[1]="maim_bleeding_enemies_on_hit_%"}},[2541]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed with One Handed Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed with One Handed Weapons"}}},stats={[1]="one_handed_attack_speed_+%"}},[2542]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed for each time you've Blocked in the past 10 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed for each time you've Blocked in the past 10 seconds"}}},stats={[1]="movement_speed_+%_for_4_seconds_on_block"}},[2543]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while you have Fortify"}}},stats={[1]="movement_speed_+%_while_fortified"}},[2544]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken while at Maximum Endurance Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken while at Maximum Endurance Charges"}}},stats={[1]="elemental_damage_taken_+%_at_maximum_endurance_charges"}},[2545]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Elemental Ailments are removed when you reach Low Life"}}},stats={[1]="status_ailments_removed_at_low_life"}},[2546]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Frenzy Charge on Kill with Main Hand"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Frenzy Charge on Kill with Main Hand"}}},stats={[1]="gain_frenzy_charge_on_main_hand_kill_%"}},[2547]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge on Kill with Main Hand"},[2]={limit={[1]={[1]=100,[2]="#"}},text="You gain an Endurance Charge on Kill with Main Hand"}}},stats={[1]="gain_endurance_charge_on_main_hand_kill_%"}},[2548]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken if you've Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken if you've Killed Recently"}}},stats={[1]="damage_taken_+%_for_4_seconds_on_kill"}},[2549]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Stun if you've Killed Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=100,[2]="#"}},text="Cannot be Stunned if you've Killed Recently"}}},stats={[1]="avoid_stun_%_for_4_seconds_on_kill"}},[2550]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="When you or your Totems Kill a Burning Enemy, %1%%% chance for you\nand your Totems to each gain an Endurance Charge"},[2]={limit={[1]={[1]=100,[2]="#"}},text="When you or your Totems Kill a Burning Enemy, you and your Totems each gain an Endurance Charge"}}},stats={[1]="you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%"}},[2551]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for you and your Totems to gain an Endurance Charge when your Totems Kill a Burning Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="You and your Totems gain an Endurance Charge when your Totems Kill a Burning Enemy"}}},stats={[1]="minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%"}},[2552]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Warcry Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Warcry Cooldown Recovery Speed"}}},stats={[1]="warcry_cooldown_speed_+%"}},[2553]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golem Skills have %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golem Skills have %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="golem_skill_cooldown_recovery_+%"}},[2554]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems have %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems have %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="golem_cooldown_recovery_+%"}},[2555]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Damaging Hits always Stun Enemies that are on Full Life"}}},stats={[1]="always_stun_enemies_that_are_on_full_life"}},[2556]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration against Enemies that are on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration against Enemies that are on Full Life"}}},stats={[1]="stun_duration_+%_vs_enemies_that_are_on_full_life"}},[2557]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration against Enemies that are on Low Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration against Enemies that are on Low Life"}}},stats={[1]="stun_duration_+%_vs_enemies_that_are_on_low_life"}},[2558]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with One Handed Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with One Handed Weapons"}}},stats={[1]="damage_+%_with_one_handed_weapons"}},[2559]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Two Handed Weapons"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Two Handed Weapons"}}},stats={[1]="damage_+%_with_two_handed_weapons"}},[2560]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Armour received from Body Armour is doubled"}}},stats={[1]="damage_reduction_rating_from_body_armour_doubled"}},[2561]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction with an Summoned Totem"}}},stats={[1]="damage_reduction_rating_%_with_active_totem"}},[2562]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Triggers Level %1% Manifest Dancing Dervish on Rampage"}}},stats={[1]="local_display_cast_level_x_manifest_rageblade"}},[2563]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Manifested Dancing Dervish disables both weapon slots"}}},stats={[1]="local_display_manifest_rageblade_disables_weapons"}},[2564]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Manifested Dancing Dervish dies when Rampage ends"}}},stats={[1]="local_display_manifest_rageblade_destroy_on_end_rampage"}},[2565]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="Minions grant Onslaught"}}},stats={[1]="local_display_minions_grant_onslaught"}},[2566]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Physical Damage while Frozen"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Physical Damage while Frozen"}}},stats={[1]="physical_damage_+%_while_frozen"}},[2567]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="With at least 40 Dexterity in Radius, Burning Arrow has a %1%%% chance to spread Burning Ground if it Ignites an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="With at least 40 Dexterity in Radius, Burning Arrow spreads Burning Ground if it Ignites an Enemy"}}},stats={[1]="local_unique_jewel_burning_arrow_spread_burning_ground_when_igniting_enemy_on_hit_%_with_50_dexterity_in_radius"}},[2568]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Dexterity in Radius, Burning Arrow can inflict\nan additional Ignite on an Enemy and cannot apply its Burning Debuff"},[2]={limit={[1]={[1]=2,[2]="#"}},text="With at least 40 Dexterity in Radius, Burning Arrow can inflict %1% additional Ignites on an Enemy"}}},stats={[1]="local_unique_jewel_burning_arrow_additional_ignite_stacks_with_50_dex_in_radius"}},[2569]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="With at least 40 Dexterity in Radius, Burning Arrow has a %1%%% chance to spread Tar if it does not Ignite an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="With at least 40 Dexterity in Radius, Burning Arrow spreads Tar if it does not Ignite an Enemy"}}},stats={[1]="local_unique_jewel_burning_arrow_spread_tar_ground_when_not_igniting_enemy_on_hit_%_with_50_dexterity_in_radius"}},[2570]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Strength in Radius, Cleave grants Fortify on Hit"}}},stats={[1]="local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius"}},[2571]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Strength in Radius, Cleave has +1 to Radius per Nearby\nEnemy, up to +10"}}},stats={[1]="local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius"}},[2572]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Dexterity in Radius, Ethereal Knives fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Ethereal Knives fires %1% additional Projectiles"}}},stats={[1]="local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius"}},[2573]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle"}}},stats={[1]="local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius"}},[2574]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Strength in Radius, Glacial Hammer deals\nCold-only Splash Damage to surrounding targets"}}},stats={[1]="local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius"}},[2575]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Strength in Radius, %1%%% of Glacial\nHammer Physical Damage Converted to Cold Damage"}}},stats={[1]="local_unique_jewel_glacial_hammer_physical_damage_%_to_convert_to_cold_with_50_str_in_radius"}},[2576]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Galvanic Arrow has %1%%% increased Area of Effect"}}},stats={[1]="local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius"}},[2577]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Intelligence in Radius, Spark Projectiles chain an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="With at least 40 Intelligence in Radius, Spark Projectiles chain %1% additional times"}}},stats={[1]="local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius"}},[2578]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Intelligence in Radius, 1 additional Spark Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="With at least 40 Intelligence in Radius, %1% additional Spark Projectiles"}}},stats={[1]="local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius"}},[2579]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Intelligence in Radius, Freezing Pulse fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Freezing Pulse fires %1% additional Projectiles"}}},stats={[1]="local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius"}},[2580]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, %1%%% increased Freezing Pulse Damage if\nyou've Shattered an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Intelligence in Radius, %1%%% reduced Freezing Pulse Damage if\nyou've Shattered an Enemy Recently"}}},stats={[1]="local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius"}},[2581]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Burning Arrow has a %1%%% chance to spread Burning Ground if it Ignites an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Burning Arrow spreads Burning Ground if it Ignites an Enemy"}}},stats={[1]="burning_arrow_spread_burning_ground_when_igniting_enemy_on_hit_%"}},[2582]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Burning Arrow has a %1%%% chance to spread Tar if it does not Ignite an Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Burning Arrow spreads Tar if it does not Ignite an Enemy"}}},stats={[1]="burning_arrow_spread_tar_ground_when_not_igniting_enemy_on_hit_%"}},[2583]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Anger has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Anger has %1%%% reduced Aura Effect"}}},stats={[1]="anger_aura_effect_+%"}},[2584]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purity of Elements has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purity of Elements has %1%%% reduced Aura Effect"}}},stats={[1]="purity_of_elements_aura_effect_+%"}},[2585]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purity of Fire has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purity of Fire has %1%%% reduced Aura Effect"}}},stats={[1]="purity_of_fire_aura_effect_+%"}},[2586]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purity of Ice has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purity of Ice has %1%%% reduced Aura Effect"}}},stats={[1]="purity_of_ice_aura_effect_+%"}},[2587]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purity of Lightning has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purity of Lightning has %1%%% reduced Aura Effect"}}},stats={[1]="purity_of_lightning_aura_effect_+%"}},[2588]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Wrath has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Wrath has %1%%% reduced Aura Effect"}}},stats={[1]="wrath_aura_effect_+%"}},[2589]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grace has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grace has %1%%% reduced Aura Effect"}}},stats={[1]="grace_aura_effect_+%"}},[2590]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hatred has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hatred has %1%%% reduced Aura Effect"}}},stats={[1]="hatred_aura_effect_+%"}},[2591]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Determination has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Determination has %1%%% reduced Aura Effect"}}},stats={[1]="determination_aura_effect_+%"}},[2592]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Discipline has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Discipline has %1%%% reduced Aura Effect"}}},stats={[1]="discipline_aura_effect_+%"}},[2593]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot be Poisoned"}}},stats={[1]="cannot_be_poisoned"}},[2594]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% chance to be Poisoned"}}},stats={[1]="chance_to_be_poisoned_%"}},[2595]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Physical Damage from Hits"},[2]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]=100,[2]="#"}},text="Avoid Physical Damage from Hits"}}},stats={[1]="avoid_physical_damage_%"}},[2596]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to Avoid Elemental Damage from Hits per Frenzy Charge"},[2]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]=100,[2]=100}},text="Avoid Elemental Damage from Hits while you have Frenzy Charges"}}},stats={[1]="avoid_elemental_damage_%_per_frenzy_charge"}},[2597]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Fire Damage from Hits"},[2]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]=100,[2]="#"}},text="Avoid Fire Damage from Hits"}}},stats={[1]="avoid_fire_damage_%"}},[2598]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Cold Damage from Hits"},[2]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]=100,[2]="#"}},text="Avoid Cold Damage from Hits"}}},stats={[1]="avoid_cold_damage_%"}},[2599]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Lightning Damage from Hits"},[2]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]=100,[2]="#"}},text="Avoid Lightning Damage from Hits"}}},stats={[1]="avoid_lightning_damage_%"}},[2600]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Chaos Damage from Hits"},[2]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]=100,[2]="#"}},text="Avoid Chaos Damage from Hits"}}},stats={[1]="avoid_chaos_damage_%"}},[2601]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Unholy Might for 3 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=100,[2]="#"}},text="Gain Unholy Might for 3 seconds on Kill"}}},stats={[1]="chance_to_gain_unholy_might_on_kill_for_3_seconds_%"}},[2602]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Unholy Might for 4 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=100,[2]="#"}},text="Gain Unholy Might for 4 seconds on Kill"}}},stats={[1]="chance_to_gain_unholy_might_on_kill_for_4_seconds_%"}},[2603]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to gain Unholy Might for 4 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=100,[2]="#"}},text="Minions gain Unholy Might for 4 seconds on Kill"}}},stats={[1]="minion_chance_to_gain_unholy_might_on_kill_for_4_seconds_%"}},[2604]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Onslaught for 4 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]="#"}},text="Gain Onslaught for 4 seconds on Kill"}}},stats={[1]="chance_to_gain_onslaught_on_kill_for_4_seconds_%"}},[2605]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to gain Onslaught for 4 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]="#"}},text="Minions gain Onslaught for 4 seconds on Kill"}}},stats={[1]="minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%"}},[2606]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to grant Onslaught to nearby Enemies on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]="#"}},text="Grant Onslaught to nearby Enemies on Kill"}}},stats={[1]="chance_to_grant_nearby_enemies_onslaught_on_kill_%"}},[2607]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to grant Unholy Might to nearby Enemies on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=100,[2]="#"}},text="Grant Unholy Might to nearby Enemies on Kill"}}},stats={[1]="chance_to_grant_nearby_enemies_unholy_might_on_kill_%"}},[2608]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to grant a Power Charge to nearby Allies on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Grant a Power Charge to nearby Allies on Kill"}}},stats={[1]="chance_to_grant_power_charge_to_nearby_allies_on_kill_%"}},[2609]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to grant a Frenzy Charge to nearby Allies on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Grant a Frenzy Charge to nearby Allies on Hit"}}},stats={[1]="chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%"}},[2610]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes Bleeding when you use a Flask"}}},stats={[1]="remove_bleed_on_flask_use"}},[2611]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage taken"}}},stats={[1]="lightning_damage_taken_+%"}},[2612]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage taken"}}},stats={[1]="cold_damage_taken_+%"}},[2613]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Mana and Energy Shield per second for 2 seconds when you Freeze, Shock or Ignite an Enemy"}}},stats={[1]="mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy"}},[2614]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Flask Charge when you deal a Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Flask Charge when you deal a Critical Strike"}}},stats={[1]="gain_flask_chance_on_crit_%"}},[2615]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Energy Shield granted to you and nearby Allies"}}},stats={[1]="virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies"}},[2616]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Siege Ballista has %1$+d to maximum number of Summoned Totems per 200 Dexterity"}}},stats={[1]="number_of_additional_siege_ballistae_per_200_dexterity"}},[2617]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks per 25 Dexterity"}}},stats={[1]="attack_minimum_added_physical_damage_per_25_dexterity",[2]="attack_maximum_added_physical_damage_per_25_dexterity"}},[2618]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies are Blinded"}}},stats={[1]="local_display_nearby_enemies_are_blinded"}},[2619]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hits against Nearby Enemies have 50%% increased Critical Strike Chance"}}},stats={[1]="local_display_hits_against_nearby_enemies_critical_strike_chance_+50%"}},[2620]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hits against Nearby Enemies have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hits against Nearby Enemies have %1% reduced Critical Strike Chance"}}},stats={[1]="local_display_nearby_enemies_critical_strike_chance_+%_against_self"}},[2621]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Enemies grant %1%%% increased Flask Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nearby Enemies grant %1%%% reduced Flask Charges"}}},stats={[1]="local_display_nearby_enemies_flask_charges_granted_+%"}},[2622]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=1,[2]="#"}},text="Nearby Enemies are Hindered, with %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]="#",[2]=-1}},text="Nearby Enemies are Hindered, with %1%%% reduced Movement Speed"}}},stats={[1]="local_display_nearby_enemies_movement_speed_+%"}},[2623]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Enemies have %1%%% increased Stun and Block Recovery"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nearby Enemies have %1%%% reduced Stun and Block Recovery"}}},stats={[1]="local_display_nearby_enemies_stun_and_block_recovery_+%"}},[2624]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge on Non-Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge on Non-Critical Strike"}}},stats={[1]="gain_power_charge_on_non_critical_strike_%"}},[2625]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Blinded Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Blinded Enemies"}}},stats={[1]="critical_strike_chance_+%_vs_blinded_enemies"}},[2626]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to create Chilled Ground when you Freeze an Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]=100,[2]="#"}},text="Create Chilled Ground when you Freeze an Enemy"}}},stats={[1]="chilled_ground_on_freeze_%_chance_for_3_seconds"}},[2627]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to create Consecrated Ground when you Kill an Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=100,[2]="#"}},text="Create Consecrated Ground when you Kill an Enemy"}}},stats={[1]="consecrate_ground_on_kill_%_for_3_seconds"}},[2628]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Blades Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Blades Damage"}}},stats={[1]="frost_blades_damage_+%"}},[2629]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Blades Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Blades Projectile Speed"}}},stats={[1]="frost_blades_projectile_speed_+%"}},[2630]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Frost Blades Projectiles chain an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Frost Blades Projectiles chain %1% additional times"}}},stats={[1]="frost_blades_number_of_additional_projectiles_in_chain"}},[2631]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summon Raging Spirit has %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summon Raging Spirit has %1%%% reduced Duration"}}},stats={[1]="summoned_raging_spirit_duration_+%"}},[2632]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Summon Raging Spirit has %1%%% chance to summon an extra Minion"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Summon Raging Spirit summons an additional Raging Spirit"}}},stats={[1]="summoned_raging_spirit_chance_to_spawn_additional_minion_%"}},[2633]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Discharge Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Discharge Damage"}}},stats={[1]="discharge_damage_+%"}},[2634]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Discharge Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Discharge Radius"}}},stats={[1]="discharge_radius_+%"}},[2635]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for Discharge to deal Damage without removing Charges"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Discharge deals Damage without removing Charges"}}},stats={[1]="discharge_chance_not_to_consume_charges_%"}},[2636]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Anger has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Anger has %1%%% reduced Mana Reservation"}}},stats={[1]="anger_mana_reservation_+%"}},[2637]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Trap Damage"}}},stats={[1]="lightning_trap_damage_+%"}},[2638]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="1 additional Lightning Trap Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% additional Lightning Trap Projectiles"}}},stats={[1]="lightning_trap_number_of_additional_projectiles"}},[2639]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Trap Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Trap Cooldown Recovery Speed"}}},stats={[1]="lightning_trap_cooldown_speed_+%"}},[2640]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Piercing Attacks cause Bleeding"}}},stats={[1]="piercing_attacks_cause_bleeding"}},[2641]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Energy Shield Recharge to start when you Block"}}},stats={[1]="energy_shield_recharges_on_block_%"}},[2642]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Players gain Modifiers from Slain Rare Monsters for %1% seconds"}}},stats={[1]="map_players_gain_rare_monster_mods_on_kill_ms"}},[2643]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextSoulEater"},limit={[1]={[1]="#",[2]="#"}},text="Gain Soul Eater for %1% seconds on Rare Monster Kill"}}},stats={[1]="soul_eater_on_rare_kill_ms"}},[2644]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextSoulEater"},limit={[1]={[1]="#",[2]="#"}},text="Players gain Soul Eater for %1% seconds on Rare Monster Kill"}}},stats={[1]="map_players_gain_soul_eater_on_rare_kill_ms"}},[2645]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSoulEater"},limit={[1]={[1]="#",[2]="#"}},text="Gain Soul Eater during any Flask Effect"}}},stats={[1]="gain_soul_eater_during_flask_effect"}},[2646]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose Souls gained from Soul Eater when you use a Flask"}}},stats={[1]="lose_soul_eater_souls_on_flask_use"}},[2647]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]="#",[2]="#"}},text="Skills used by Totems have a %1%%% chance to Taunt on Hit"}}},stats={[1]="totemified_skills_taunt_on_hit_%"}},[2648]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Taunt on Hit"}}},stats={[1]="chance_to_taunt_on_hit_%"}},[2649]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Taunt on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]=100,[2]="#"}},text="Minions Taunt on Hit with Attacks"}}},stats={[1]="minion_attacks_chance_to_taunt_on_hit_%"}},[2650]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken if you Killed a Taunted Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken if you Killed a Taunted Enemy Recently"}}},stats={[1]="damage_taken_+%_for_4_seconds_on_killing_taunted_enemy"}},[2651]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier against Enemies that are on Full Life"}}},stats={[1]="critical_strike_multiplier_vs_enemies_on_full_life_+"}},[2652]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Critical Strike Chance against Enemies that are on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Critical Strike Chance against Enemies that are on Full Life"}}},stats={[1]="ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final"}},[2653]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blind duration"},[2]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blind duration"}}},stats={[1]="blind_duration_+%"}},[2654]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Critical Strike Chance against Enemies that are on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Critical Strike Chance against Enemies on that are Low Life"}}},stats={[1]="assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final"}},[2655]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]="#",[2]="#"}},text="Critical Strikes have Culling Strike"}}},stats={[1]="crits_have_culling_strike"}},[2656]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="You spread Caustic Ground on Death, dealing %1%%% of your maximum Life as Chaos Damage per second"}}},stats={[1]="caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"}},[2657]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Your Minions spread Caustic Ground on Death, dealing %1%%% of their maximum Life as Chaos Damage per second"}}},stats={[1]="minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"}},[2658]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Storm Cloud Charges when you use %1% Lightning Skills in Range"}}},stats={[1]="storm_cloud_charge_count"}},[2659]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Charged Storm Cloud deals %1% more Damage"}}},stats={[1]="storm_cloud_charged_damage_+%_final"}},[2660]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},[3]={k="reminderstring",v="ReminderTextRecently"},[4]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage Leeched as Life if you've taken a Savage Hit Recently"}}},stats={[1]="gain_life_leech_from_any_damage_permyriad_as_life_for_4_seconds_if_taken_savage_hit"}},[2661]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage if you've taken a Savage Hit Recently"}}},stats={[1]="gain_damage_+%_for_4_seconds_if_taken_savage_hit"}},[2662]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Attack Speed if you've taken a Savage Hit Recently"}}},stats={[1]="gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit"}},[2663]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Burning Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Burning Enemies"}}},stats={[1]="damage_+%_vs_burning_enemies"}},[2664]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge on Kill with Off Hand"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge on Kill with Off Hand"}}},stats={[1]="endurance_charge_on_off_hand_kill_%"}},[2665]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You and nearby Allies gain %1%%% increased Melee Physical Damage per 10 Strength"}}},stats={[1]="aura_melee_physical_damage_+%_per_10_strength"}},[2666]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Curse Spells are Cast as Auras"}}},stats={[1]="curse_apply_as_aura"}},[2667]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Critical Strikes ignore Enemy Monster Elemental Resistances"}}},stats={[1]="critical_strikes_ignore_elemental_resistances"}},[2668]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage if you've dealt a Critical Strike Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% reduced Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="damage_+%_for_4_seconds_on_crit"}},[2669]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Critical Strike Chance if you've Killed Recently"}}},stats={[1]="critical_strike_chance_+%_for_4_seconds_on_kill"}},[2670]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You and your Minions have %1%%% increased Damage if you've Consumed a corpse Recently"}}},stats={[1]="damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse"}},[2671]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You and your Minions have %1%%% additional Physical Damage Reduction for each Raised Zombie"}}},stats={[1]="physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie"}},[2672]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spectres have %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spectres have %1%%% reduced Damage"}}},stats={[1]="spectre_damage_+%"}},[2673]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAurasOnlyAffectThingsTheyAffect"},limit={[1]={[1]="#",[2]="#"}},text="Auras from your Skills grant %1%%% increased Damage to you and Allies"}}},stats={[1]="auras_grant_damage_+%_to_you_and_your_allies"}},[2674]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAurasOnlyAffectThingsTheyAffect"},limit={[1]={[1]="#",[2]="#"}},text="Auras from your Skills grant %1$+d%% Physical Damage Reduction to you and Allies"}}},stats={[1]="auras_grant_additional_physical_damage_reduction_%_to_you_and_your_allies"}},[2675]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAurasOnlyAffectThingsTheyAffect"},limit={[1]={[1]="#",[2]="#"}},text="Auras from your Skills grant %1%%% increased Attack and Cast\nSpeed to you and Allies"}}},stats={[1]="auras_grant_attack_and_cast_speed_+%_to_you_and_your_allies"}},[2676]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cooldown Recovery Speed for throwing Traps"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cooldown Recovery Speed for throwing Traps"}}},stats={[1]="placing_traps_cooldown_recovery_+%"}},[2677]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage with Hits against Enemies affected by Elemental Ailments"}}},stats={[1]="damage_+%_vs_enemies_affected_by_status_ailments"}},[2678]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Using Warcries is Instant"}}},stats={[1]="warcries_are_instant"}},[2679]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]="#",[2]="#"}},text="Shield Defences are also granted to nearby Allies"}}},stats={[1]="aura_grant_shield_defences_to_nearby_allies"}},[2680]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to gain Phasing for 4 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]=100,[2]="#"}},text="Gain Phasing for 4 seconds on Kill"}}},stats={[1]="phasing_for_4_seconds_on_kill_%"}},[2681]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You gain %1%%% increased Damage for each Trap"}}},stats={[1]="damage_+%_per_active_trap"}},[2682]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You gain %1%%% increased Area of Effect for each Mine"}}},stats={[1]="skill_area_of_effect_+%_per_active_mine"}},[2683]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Immune to Elemental Ailments while Phasing"}}},stats={[1]="immune_to_status_ailments_while_phased"}},[2684]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Spell Hits while Phasing"}}},stats={[1]="chance_to_dodge_spells_%_while_phased"}},[2685]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Critical Strike Chance per Power Charge"}}},stats={[1]="additional_critical_strike_chance_per_power_charge_permyriad"}},[2686]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Critical Strike Chance while at maximum Power Charges"}}},stats={[1]="additional_critical_strike_chance_permyriad_while_at_maximum_power_charges"}},[2687]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Chaos Damage while at maximum Power Charges"}}},stats={[1]="physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges"}},[2688]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Movement Skills cost no Mana"}}},stats={[1]="movement_skills_cost_no_mana"}},[2689]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if you've used a Movement Skill Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed if you've used a Movement Skill Recently"}}},stats={[1]="attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use"}},[2690]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Recover 10%% of Mana when you use a Skill"}}},stats={[1]="recover_10%_of_maximum_mana_on_skill_use_%"}},[2691]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Mine Throwing Speed if you Detonated Mines Recently"}}},stats={[1]="mine_laying_speed_+%_for_4_seconds_on_detonation"}},[2692]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage if you Detonated Mines Recently"}}},stats={[1]="damage_+%_for_4_seconds_on_detonation"}},[2693]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Flasks gain a Charge every 3 seconds"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Flasks gain %1% Charges every 3 seconds"}}},stats={[1]="flask_charges_recovered_per_3_seconds"}},[2694]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skills used by Traps have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Skills used by Traps have %1%%% reduced Area of Effect"}}},stats={[1]="trap_skill_area_of_effect_+%"}},[2695]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Bleeding Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Bleeding Enemies"}}},stats={[1]="damage_+%_vs_bleeding_enemies"}},[2696]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Bleeding Enemies you Kill Explode, dealing %1%%% of\ntheir Maximum Life as Physical Damage"}}},stats={[1]="bleeding_enemies_explode_for_%_life_as_physical_damage"}},[2697]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When your Traps Trigger, your nearby Traps also Trigger"}}},stats={[1]="nearby_traps_within_x_units_also_trigger_on_triggering_trap"}},[2698]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Blades on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Blades on Hit"}}},stats={[1]="display_cast_word_of_blades_on_hit_%"}},[2699]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Blades on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Blades on Hit"}}},stats={[1]="display_cast_edict_of_blades_on_hit_%_"}},[2700]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Blades on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Blades on Hit"}}},stats={[1]="display_cast_decree_of_blades_on_hit_%__"}},[2701]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Blades on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Blades on Hit"}}},stats={[1]="display_cast_commandment_of_blades_on_hit_%_"}},[2702]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Winter when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Winter when Hit"}}},stats={[1]="display_cast_word_of_winter_when_hit_%"}},[2703]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Winter when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Winter when Hit"}}},stats={[1]="display_cast_edict_of_winter_when_hit_%"}},[2704]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Winter when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Winter when Hit"}}},stats={[1]="display_cast_decree_of_winter_when_hit_%"}},[2705]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Winter when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Winter when Hit"}}},stats={[1]="display_cast_commandment_of_winter_when_hit_%"}},[2706]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Inferno on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Inferno on Kill"}}},stats={[1]="display_cast_word_of_inferno_on_kill_%"}},[2707]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Inferno on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Inferno on Kill"}}},stats={[1]="display_cast_edict_of_inferno_on_kill_%"}},[2708]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Inferno on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Inferno on Kill"}}},stats={[1]="display_cast_decree_of_inferno_on_kill_%"}},[2709]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Inferno on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Inferno on Kill"}}},stats={[1]="display_cast_commandment_of_inferno_on_kill_%"}},[2710]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of the Tempest on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of the Tempest on Hit"}}},stats={[1]="display_cast_word_of_tempest_on_hit_%"}},[2711]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of the Tempest on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of the Tempest on Hit"}}},stats={[1]="display_cast_edict_of_tempest_on_hit_%"}},[2712]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of the Tempest on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of the Tempest on Hit"}}},stats={[1]="display_cast_decree_of_tempest_on_hit_%"}},[2713]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of the Tempest on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of the Tempest on Hit"}}},stats={[1]="display_cast_commandment_of_tempest_on_hit_%"}},[2714]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of the Grave when your Skills or Minions Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of the Grave when your Skills or Minions Kill"}}},stats={[1]="display_cast_word_of_the_grave_on_kill_%"}},[2715]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of the Grave when your Skills or Minions Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of the Grave when your Skills or Minions Kill"}}},stats={[1]="display_cast_edict_of_the_grave_on_kill_%"}},[2716]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of the Grave when your Skills or Minions Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of the Grave when your Skills or Minions Kill"}}},stats={[1]="display_cast_decree_of_the_grave_on_kill_%"}},[2717]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of the Grave when your Skills or Minions Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of the Grave when your Skills or Minions Kill"}}},stats={[1]="display_cast_commandment_of_the_grave_on_kill_%"}},[2718]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Reflection when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Reflection when Hit"}}},stats={[1]="display_cast_word_of_reflection_when_hit_%"}},[2719]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Reflection when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Reflection when Hit"}}},stats={[1]="display_cast_edict_of_reflection_when_hit_%"}},[2720]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Reflection when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Reflection when Hit"}}},stats={[1]="display_cast_decree_of_reflection_when_hit_%"}},[2721]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Reflection when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Reflection when Hit"}}},stats={[1]="display_cast_commandment_of_reflection_when_hit_%"}},[2722]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Force on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Force on Hit"}}},stats={[1]="display_attack_with_word_of_force_on_hit_%"}},[2723]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Force on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Force on Hit"}}},stats={[1]="display_attack_with_edict_of_force_on_hit_%"}},[2724]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Force on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Force on Hit"}}},stats={[1]="display_attack_with_decree_of_force_on_hit_%"}},[2725]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Force on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Force on Hit"}}},stats={[1]="display_attack_with_commandment_of_force_on_hit_%"}},[2726]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Light when you take a Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Light when you take a Critical Strike"}}},stats={[1]="display_attack_with_word_of_light_when_critically_hit_%"}},[2727]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Light when you take a Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Light when you take a Critical Strike"}}},stats={[1]="display_attack_with_edict_of_light_when_critically_hit_%"}},[2728]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Light when you take a Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Light when you take a Critical Strike"}}},stats={[1]="display_attack_with_decree_of_light_when_critically_hit_%"}},[2729]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Light when you take a Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Light when you take a Critical Strike"}}},stats={[1]="display_attack_with_commandment_of_light_when_critically_hit_%"}},[2730]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of War on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of War on Kill"}}},stats={[1]="display_cast_word_of_war_on_kill_%"}},[2731]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of War on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of War on Kill"}}},stats={[1]="display_cast_edict_of_war_on_kill_%"}},[2732]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of War on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of War on Kill"}}},stats={[1]="display_cast_decree_of_war_on_kill_%"}},[2733]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of War on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of War on Kill"}}},stats={[1]="display_cast_commandment_of_war_on_kill_%"}},[2734]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Fury on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Fury on Hit"}}},stats={[1]="display_attack_with_word_of_fury_on_hit_%"}},[2735]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Fury on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Fury on Hit"}}},stats={[1]="display_attack_with_edict_of_fury_on_hit_%"}},[2736]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Fury on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Fury on Hit"}}},stats={[1]="display_attack_with_decree_of_fury_on_hit_%"}},[2737]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Fury on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Fury on Hit"}}},stats={[1]="display_attack_with_commandment_of_fury_on_hit_%"}},[2738]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Spite when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Spite when Hit"}}},stats={[1]="display_attack_with_word_of_spite_when_hit_%"}},[2739]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Spite when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Spite when Hit"}}},stats={[1]="display_attack_with_edict_of_spite_when_hit_%"}},[2740]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Spite when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Spite when Hit"}}},stats={[1]="display_attack_with_decree_of_spite_when_hit_%"}},[2741]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Spite when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Spite when Hit"}}},stats={[1]="display_attack_with_commandment_of_spite_when_hit_%"}},[2742]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if Energy\nShield Recharge has started Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed if Energy\nShield Recharge has started Recently"}}},stats={[1]="attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge"}},[2743]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Recovery Rate of Life, Mana and Energy Shield if you've Killed an Enemy affected by your Damage Over Time Recently"}}},stats={[1]="life_es_and_mana_recovery_+%_for_4_seconds_on_killing_enemies_affected_by_your_degen"}},[2744]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more chance to Evade Attack Hits while not on full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less chance to Evade Attack Hits while not on full Energy Shield"}}},stats={[1]="trickster_passive_chance_to_evade_attacks_while_not_on_full_energy_shield_+%_final"}},[2745]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Enemies that are affected\nby no Elemental Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Enemies that are affected\nby no Elemental Ailments"}}},stats={[1]="critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments"}},[2746]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage if you've Cast a Spell Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage if you've Cast a Spell Recently"}}},stats={[1]="spell_damage_+%_for_4_seconds_on_cast"}},[2747]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage if you've Cast a Spell Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage if you've Cast a Spell Recently"}}},stats={[1]="attack_damage_+%_for_4_seconds_on_cast"}},[2748]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you've Attacked Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you've Attacked Recently"}}},stats={[1]="attack_speed_+%_for_4_seconds_on_attack"}},[2749]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed if you've Attacked Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed if you've Attacked Recently"}}},stats={[1]="cast_speed_+%_for_4_seconds_on_attack"}},[2750]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Flames on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Flames on Hit"}}},stats={[1]="display_cast_word_of_flames_on_hit_%"}},[2751]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Flames on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Flames on Hit"}}},stats={[1]="display_cast_edict_of_flames_on_hit_%"}},[2752]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Flames on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Flames on Hit"}}},stats={[1]="display_cast_decree_of_flames_on_hit_%"}},[2753]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Flames on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Flames on Hit"}}},stats={[1]="display_cast_commandment_of_flames_on_hit_%"}},[2754]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Frost on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Frost on Kill"}}},stats={[1]="display_cast_word_of_frost_on_kill_%"}},[2755]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Frost on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Frost on Kill"}}},stats={[1]="display_cast_edict_of_frost_on_kill_%"}},[2756]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Frost on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Frost on Kill"}}},stats={[1]="display_cast_decree_of_frost_on_kill_%"}},[2757]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Frost on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Frost on Kill"}}},stats={[1]="display_cast_commandment_of_frost_on_kill_%"}},[2758]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Thunder on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Thunder on Kill"}}},stats={[1]="display_cast_word_of_thunder_on_kill_%"}},[2759]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Thunder on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Thunder on Kill"}}},stats={[1]="display_cast_edict_of_thunder_on_kill_%"}},[2760]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Thunder on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Thunder on Kill"}}},stats={[1]="display_cast_decree_of_thunder_on_kill_%"}},[2761]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Thunder on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Thunder on Kill"}}},stats={[1]="display_cast_commandment_of_thunder_on_kill_%"}},[2762]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance when throwing Mines to throw up to 1 additional Mine"}}},stats={[1]="chance_to_place_an_additional_mine_%"}},[2763]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]=1,[2]=1}},text="Throw an additional Mine"},[2]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]=2,[2]="#"}},text="Throw %1% additional Mines"}}},stats={[1]="number_of_additional_mines_to_place"}},[2764]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for 100%% of Elemental Damage to be gained as Extra Chaos Damage"}}},stats={[1]="chance_for_elemental_damage_to_be_added_as_additional_chaos_damage_%"}},[2765]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance if you haven't Crit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance if you haven't Crit Recently"}}},stats={[1]="enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds"}},[2766]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while on Consecrated Ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while on Consecrated Ground"}}},stats={[1]="damage_+%_on_consecrated_ground"}},[2767]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to create Consecrated Ground when Hit, lasting 8 seconds"},[2]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=100,[2]="#"}},text="Create Consecrated Ground when Hit, lasting 8 seconds"}}},stats={[1]="consecrate_ground_for_3_seconds_when_hit_%"}},[2768]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills while on Consecrated Ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills while on Consecrated Ground"}}},stats={[1]="mana_cost_+%_on_consecrated_ground"}},[2769]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Elemental Ailments while on Consecrated Ground"},[2]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=100,[2]="#"}},text="Cannot be affected by Elemental Ailments while on Consecrated Ground"}}},stats={[1]="avoid_ailments_%_on_consecrated_ground"}},[2770]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier against Enemies that are affected\nby Elemental Ailments"}}},stats={[1]="critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment"}},[2771]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Non-Critical Strikes Penetrate %1%%% of Enemy Elemental Resistances"}}},stats={[1]="non_critical_strikes_penetrate_elemental_resistances_%"}},[2772]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% of Enemy Elemental Resistances"}}},stats={[1]="base_penetrate_elemental_resistances_%"}},[2773]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to double Stun Duration"}}},stats={[1]="chance_to_double_stun_duration_%"}},[2774]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shockwaves deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shockwaves deal %1%%% less Damage"}}},stats={[1]="shockwave_slam_explosion_damage_+%_final"}},[2775]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Non-Curse Auras from your Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced effect of Non-Curse Auras from your Skills"}}},stats={[1]="non_curse_aura_effect_+%"}},[2776]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Unarmed Attacks against Bleeding Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Unarmed Attacks against Bleeding Enemies"}}},stats={[1]="unarmed_damage_+%_vs_bleeding_enemies"}},[2777]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1$+d Life when you Hit a Bleeding Enemy"}}},stats={[1]="life_gained_on_bleeding_enemy_hit"}},[2778]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Unarmed Attack Critical Strike Chance"}}},stats={[1]="base_critical_strike_chance_while_unarmed_%"}},[2779]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Claw Damage also apply to Unarmed Attack Damage"}}},stats={[1]="modifiers_to_claw_damage_also_affect_unarmed_damage"}},[2780]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed"}}},stats={[1]="modifiers_to_claw_attack_speed_also_affect_unarmed_attack_speed"}},[2781]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Claw Critical Strike Chance also apply to Unarmed Attack Critical Strike Chance"}}},stats={[1]="modifiers_to_claw_critical_strike_chance_also_affect_unarmed_critical_strike_chance"}},[2782]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Unarmed Attacks"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUnarmedAttacks"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Unarmed Attacks"}}},stats={[1]="damage_+%_while_unarmed"}},[2783]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Fortify on you"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Fortify on you"}}},stats={[1]="fortify_effect_on_self_+%"}},[2784]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Shattered Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Shattered Enemies"}}},stats={[1]="killed_monster_dropped_item_rarity_+%_when_shattered"}},[2785]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% faster start of Energy Shield Recharge during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% slower start of Energy Shield Recharge during any Flask Effect"}}},stats={[1]="energy_shield_delay_during_flask_effect_-%"}},[2786]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% faster start of Energy Shield Recharge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% slower start of Energy Shield Recharge"}}},stats={[1]="virtual_energy_shield_delay_-%"}},[2787]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Recharge Rate during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Recharge Rate during any Flask Effect"}}},stats={[1]="energy_shield_recharge_rate_during_flask_effect_+%"}},[2788]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Recharge Rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Recharge Rate"}}},stats={[1]="virtual_energy_shield_recharge_rate_+%"}},[2789]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Fork"}}},stats={[1]="projectiles_fork"}},[2790]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFishBiteSensitivity"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Fish Bite Sensitivity"}}},stats={[1]="fishing_bite_sensitivity_+%"}},[2791]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage per 1%% Chance to Block Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage per 1%% Chance to Block Attack Damage"}}},stats={[1]="cold_damage_+%_per_1%_block_chance"}},[2792]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Mana per 2%% Chance to Block Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Mana per 2%% Chance to Block Spell Damage"}}},stats={[1]="maximum_mana_+%_per_2%_spell_block_chance"}},[2793]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour while Chilled or Frozen"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour while Chilled or Frozen"}}},stats={[1]="physical_damage_reduction_rating_+%_while_chilled_or_frozen"}},[2794]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% increased Action Speed while Chilled"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% reduced Action Speed while Chilled"}}},stats={[1]="map_players_action_speed_+%_while_chilled"}},[2795]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Action Speed while Chilled"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% redcued Action Speed while Chilled"}}},stats={[1]="action_speed_+%_while_chilled"}},[2796]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage with Weapons Penetrates %1%%% Cold Resistance"}}},stats={[1]="reduce_enemy_cold_resistance_with_weapons_%"}},[2797]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage with Weapons Penetrates %1%%% Fire Resistance"}}},stats={[1]="reduce_enemy_fire_resistance_with_weapons_%"}},[2798]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage with Weapons Penetrates %1%%% Lightning Resistance"}}},stats={[1]="reduce_enemy_lightning_resistance_with_weapons_%"}},[2799]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage with Weapons Penetrates %1%%% Chaos Resistance"}}},stats={[1]="reduce_enemy_chaos_resistance_with_weapons_%"}},[2800]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Elemental Damage"}}},stats={[1]="inquisitor_aura_elemental_damage_+%_final"}},[2801]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Elemental Damage"}}},stats={[1]="support_gem_elemental_damage_+%_final"}},[2802]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters drop items %1% Level higher"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Monsters drop items %1% Levels higher"}}},stats={[1]="map_monster_drop_higher_level_gear"}},[2803]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Map's Modifiers to Quantity of Items found also apply to Rarity"}}},stats={[1]="modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity"}},[2804]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSmokeCloud"},limit={[1]={[1]=1,[2]="#"}},text="Creates a Smoke Cloud on Use"}}},stats={[1]="local_smoke_ground_on_flask_use_radius"}},[2805]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=1,[2]="#"}},text="Creates Consecrated Ground on Use"}}},stats={[1]="local_consecrate_ground_on_flask_use_radius"}},[2806]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="Onslaught"}}},stats={[1]="has_onslaught"}},[2807]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage with Weapons Penetrates %1%%% Elemental Resistance"}}},stats={[1]="reduce_enemy_elemental_resistance_with_weapons_%"}},[2808]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Frenzy Charge when your Trap is triggered by an Enemy"}}},stats={[1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"}},[2809]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain an Endurance Charge when your Trap is triggered by an Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Gain a Endurance Charge when your Trap is triggered by an Enemy"}}},stats={[1]="%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy"}},[2810]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to add a Power Charge on Hit"}}},stats={[1]="add_power_charge_on_hit_%"}},[2811]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lose all Power Charges on reaching Maximum Power Charges"}}},stats={[1]="lose_all_power_charges_on_reaching_maximum_power_charges"}},[2812]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHit"},limit={[1]={[1]=1,[2]="#"}},text="Shocks you when you reach Maximum Power Charges"}}},stats={[1]="shocked_for_4_seconds_on_reaching_maximum_power_charges"}},[2813]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Frenzy Charge on reaching Maximum Power Charges"}}},stats={[1]="gain_frenzy_charge_on_reaching_maximum_power_charges"}},[2814]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Petrified"}}},stats={[1]="is_petrified"}},[2815]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="Fortify"}}},stats={[1]="has_fortify"}},[2816]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain an Endurance Charge when you gain a Power Charge"}}},stats={[1]="add_endurance_charge_on_gain_power_charge_%"}},[2817]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Enemy Killed by you or your Totems Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Enemy Killed by you or your Totems Recently"}}},stats={[1]="stacking_damage_+%_on_kill_for_4_seconds"}},[2818]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while you have a Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while you have a Totem"}}},stats={[1]="attack_and_cast_speed_+%_while_totem_active"}},[2819]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Summoned Totems if you or your Totems have Killed in the past 8 seconds"}}},stats={[1]="number_of_additional_totems_allowed_on_kill_for_8_seconds"}},[2820]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Monsters take %1%%% reduced Extra Damage from Critical Strikes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters take %1%%% increased Extra Damage from Critical Strikes"}}},stats={[1]="map_monsters_base_self_critical_strike_multiplier_-%"}},[2821]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Petrified during Flask Effect"}}},stats={[1]="local_flask_is_petrified"}},[2822]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Power, Frenzy or Endurance Charge on Kill"}}},stats={[1]="power_frenzy_or_endurance_charge_on_kill_%"}},[2823]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]=-1,[2]="#"}},text="%1%%% reduced effect"}}},stats={[1]="local_flask_effect_+%"}},[2824]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]="#"}},text="Immune to Poison during Flask Effect\nRemoves Poison on use"}}},stats={[1]="local_flask_poison_immunity_during_flask_effect"}},[2825]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Immune to Poison"}}},stats={[1]="immune_to_poison"}},[2826]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction during Flask Effect"}}},stats={[1]="local_flask_additional_physical_damage_reduction_%"}},[2827]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="For each Element you've been hit by Damage of Recently, %1%%% increased Damage of that Element"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="For each Element you've been hit by Damage of Recently, %1%%% reduced Damage of that Element"}}},stats={[1]="elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element"}},[2828]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="For each Element you've been hit by Damage of Recently, %1%%% increased Damage taken of that Element"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="For each Element you've been hit by Damage of Recently, %1%%% reduced Damage taken of that Element"}}},stats={[1]="damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element"}},[2829]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Every 10 seconds, gain %1%%% increased Elemental Damage for 4 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Every 10 seconds, gain %1%%% reduced Elemental Damage for 4 seconds"}}},stats={[1]="elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds"}},[2830]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Cold Resistance if you've\nused a Fire Skill in the past 10 seconds"}}},stats={[1]="elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill"}},[2831]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Lightning Resistance if you've\nused a Cold Skill in the past 10 seconds"}}},stats={[1]="elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill"}},[2832]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Fire Resistance if you've\nused a Lightning Skill in the past 10 seconds"}}},stats={[1]="elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill"}},[2833]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Summon a Lesser Elemental Golem when\nyou Kill an Enemy using Elemental Damage"}}},stats={[1]="elementalist_summon_elemental_golem_on_killing_enemy_with_element_%"}},[2834]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance to gain Elemental Conflux for 4 seconds when you Kill an Enemy"}}},stats={[1]="elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%"}},[2835]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Elemental Ailments caused by your Skills spread to other nearby Enemies\nRadius: %1%"}}},stats={[1]="elementalist_elemental_status_effect_aura_radius"}},[2836]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to knockback on Counterattack"}}},stats={[1]="knockback_on_counterattack_%"}},[2837]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]=1,[2]="#"}},text="Creates Chilled Ground on Use"}}},stats={[1]="local_flask_chilled_ground_on_flask_use_radius"}},[2838]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration"}}},stats={[1]="local_flask_duration_+%"}},[2839]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chill effects on you Proliferate to nearby Enemies"}}},stats={[1]="chill_on_you_proliferates_to_nearby_enemies_within_x_radius"}},[2840]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Freeze effects on you Proliferate to nearby Enemies"}}},stats={[1]="freeze_on_you_proliferates_to_nearby_enemies_within_x_radius"}},[2841]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ancestral Protector Totem deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ancestral Protector Totem deals %1%%% reduced Damage"}}},stats={[1]="melee_ancestor_totem_damage_+%"}},[2842]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Animated Weapons deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Animated Weapons deal %1%%% reduced Damage"}}},stats={[1]="animate_weapon_damage_+%"}},[2843]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Burning Arrow Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Burning Arrow Damage"}}},stats={[1]="burning_arrow_damage_+%"}},[2844]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cleave Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cleave Damage"}}},stats={[1]="cleave_damage_+%"}},[2845]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Double Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Double Strike Damage"}}},stats={[1]="double_strike_damage_+%"}},[2846]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dual Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dual Strike Damage"}}},stats={[1]="dual_strike_damage_+%"}},[2847]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Trap Damage"}}},stats={[1]="fire_trap_damage_+%"}},[2848]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fireball Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fireball Damage"}}},stats={[1]="fireball_damage_+%"}},[2849]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freezing Pulse Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freezing Pulse Damage"}}},stats={[1]="freezing_pulse_damage_+%"}},[2850]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Glacial Hammer Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Glacial Hammer Damage"}}},stats={[1]="glacial_hammer_damage_+%"}},[2851]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ground Slam Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ground Slam Damage"}}},stats={[1]="ground_slam_damage_+%"}},[2852]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Heavy Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Heavy Strike Damage"}}},stats={[1]="heavy_strike_damage_+%"}},[2853]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Infernal Blow Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Infernal Blow Damage"}}},stats={[1]="infernal_blow_damage_+%"}},[2854]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Strike Damage"}}},stats={[1]="lightning_strike_damage_+%"}},[2855]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Tendrils Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Tendrils Damage"}}},stats={[1]="lightning_tendrils_damage_+%"}},[2856]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Magma Orb Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Magma Orb Damage"}}},stats={[1]="magma_orb_damage_+%"}},[2857]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Molten Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Molten Strike Damage"}}},stats={[1]="molten_strike_damage_+%"}},[2858]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Raised Zombies deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Raised Zombies deal %1%%% reduced Damage"}}},stats={[1]="zombie_damage_+%"}},[2859]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reave Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reave Damage"}}},stats={[1]="reave_damage_+%"}},[2860]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spark Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spark Damage"}}},stats={[1]="spark_damage_+%"}},[2861]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spectral Throw Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spectral Throw Damage"}}},stats={[1]="spectral_throw_damage_+%"}},[2862]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Split Arrow Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Split Arrow Damage"}}},stats={[1]="split_arrow_damage_+%"}},[2863]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ethereal Knives Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ethereal Knives Damage"}}},stats={[1]="ethereal_knives_damage_+%"}},[2864]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Shot Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Shot Damage"}}},stats={[1]="ice_shot_damage_+%"}},[2865]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rain of Arrows Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rain of Arrows Damage"}}},stats={[1]="rain_of_arrows_damage_+%"}},[2866]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Raging Spirits deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Raging Spirits deal %1%%% reduced Damage"}}},stats={[1]="raging_spirit_damage_+%"}},[2867]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Viper Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Viper Strike Damage"}}},stats={[1]="viper_strike_damage_+%"}},[2868]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flicker Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flicker Strike Damage"}}},stats={[1]="flicker_strike_damage_+%"}},[2869]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Leap Slam Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Leap Slam Damage"}}},stats={[1]="leap_slam_damage_+%"}},[2870]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Arrow Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Arrow Damage"}}},stats={[1]="lightning_arrow_damage_+%"}},[2871]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Warp Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Warp Damage"}}},stats={[1]="lightning_warp_damage_+%"}},[2872]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Puncture Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Puncture Damage"}}},stats={[1]="puncture_damage_+%"}},[2873]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shield Charge Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shield Charge Damage"}}},stats={[1]="shield_charge_damage_+%"}},[2874]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skeletons deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Skeletons deal %1%%% reduced Damage"}}},stats={[1]="skeletons_damage_+%"}},[2875]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Arc Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Arc Damage"}}},stats={[1]="arc_damage_+%"}},[2876]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Barrage Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Barrage Damage"}}},stats={[1]="barrage_damage_+%"}},[2877]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Nova Mine Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Nova Mine Damage"}}},stats={[1]="fire_nova_mine_damage_+%"}},[2878]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Firestorm Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Firestorm Damage"}}},stats={[1]="fire_storm_damage_+%"}},[2879]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flame Surge Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flame Surge Damage"}}},stats={[1]="flame_surge_damage_+%"}},[2880]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Nova Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Nova Damage"}}},stats={[1]="ice_nova_damage_+%"}},[2881]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Spear Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Spear Damage"}}},stats={[1]="ice_spear_damage_+%"}},[2882]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Incinerate Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Incinerate Damage"}}},stats={[1]="incinerate_damage_+%"}},[2883]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Power Siphon Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Power Siphon Damage"}}},stats={[1]="power_siphon_damage_+%"}},[2884]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Searing Bond Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Searing Bond Damage"}}},stats={[1]="searing_bond_damage_+%"}},[2885]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Static Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Static Strike Damage"}}},stats={[1]="static_strike_damage_+%"}},[2886]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Storm Call Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Storm Call Damage"}}},stats={[1]="storm_call_damage_+%"}},[2887]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Sweep Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Sweep Damage"}}},stats={[1]="sweep_damage_+%"}},[2888]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frenzy Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frenzy Damage"}}},stats={[1]="frenzy_damage_+%"}},[2889]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Righteous Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Righteous Fire Damage"}}},stats={[1]="righteous_fire_damage_+%"}},[2890]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Elemental Hit deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Elemental Hit deals %1%%% reduced Damage"}}},stats={[1]="elemental_hit_damage_+%"}},[2891]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cyclone Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cyclone Damage"}}},stats={[1]="cyclone_damage_+%"}},[2892]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Tornado Shot Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Tornado Shot Damage"}}},stats={[1]="tornado_shot_damage_+%"}},[2893]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Arctic Breath Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Arctic Breath Damage"}}},stats={[1]="arctic_breath_damage_+%"}},[2894]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Explosive Arrow deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Explosive Arrow deals %1%%% reduced Damage"}}},stats={[1]="explosive_arrow_damage_+%"}},[2895]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flameblast Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flameblast Damage"}}},stats={[1]="flameblast_damage_+%"}},[2896]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Glacial Cascade Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Glacial Cascade Damage"}}},stats={[1]="glacial_cascade_damage_+%"}},[2897]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Crash Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Crash Damage"}}},stats={[1]="ice_crash_damage_+%"}},[2898]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Kinetic Blast Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Kinetic Blast Damage"}}},stats={[1]="kinetic_blast_damage_+%"}},[2899]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shock Nova Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shock Nova Damage"}}},stats={[1]="shock_nova_damage_+%"}},[2900]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shockwave Totem Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shockwave Totem Damage"}}},stats={[1]="shockwave_totem_damage_+%"}},[2901]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Wild Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Wild Strike Damage"}}},stats={[1]="wild_strike_damage_+%"}},[2902]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Detonate Dead Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Detonate Dead Damage"}}},stats={[1]="detonate_dead_damage_+%"}},[2903]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Caustic Arrow Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Caustic Arrow Damage"}}},stats={[1]="caustic_arrow_damage_+%"}},[2904]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextWithered"},[2]={k="milliseconds_to_seconds",v=2},limit={[1]={[1]=1,[2]=99},[2]={[1]=1000,[2]=1000}},text="Caustic Arrow has %1%%% chance to inflict Withered on Hit for %2% second base Duration"},[2]={[1]={k="reminderstring",v="ReminderTextWithered"},[2]={k="milliseconds_to_seconds",v=2},limit={[1]={[1]=100,[2]="#"},[2]={[1]=1000,[2]=1000}},text="Caustic Arrow inflicts Withered on Hit for %2% second base Duration"},[3]={[1]={k="reminderstring",v="ReminderTextWithered"},[2]={k="milliseconds_to_seconds",v=2},limit={[1]={[1]=1,[2]=99},[2]={[1]="#",[2]="#"}},text="Caustic Arrow has %1%%% chance to inflict Withered on Hit for %2% seconds base Duration"},[4]={[1]={k="reminderstring",v="ReminderTextWithered"},[2]={k="milliseconds_to_seconds",v=2},limit={[1]={[1]=100,[2]="#"},[2]={[1]="#",[2]="#"}},text="Caustic Arrow inflicts Withered on Hit for %2% seconds base Duration"}}},stats={[1]="caustic_arrow_withered_on_hit_%",[2]="caustic_arrow_withered_base_duration_ms"}},[2905]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Golems"}}},stats={[1]="base_number_of_golems_allowed"}},[2906]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot have non-Golem Minions"}}},stats={[1]="you_cannot_have_non_golem_minions"}},[2907]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Golem Size"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Golem Size"}}},stats={[1]="golem_scale_+%"}},[2908]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Stone Golems deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Stone Golems deal %1%%% reduced Damage"}}},stats={[1]="stone_golem_damage_+%"}},[2909]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flame Golems have %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flame Golems have %1%%% reduced Damage"}}},stats={[1]="flame_golem_damage_+%"}},[2910]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ice Golems deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ice Golems deal %1%%% reduced Damage"}}},stats={[1]="ice_golem_damage_+%"}},[2911]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lightning Golems deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lightning Golems deal %1%%% reduced Damage"}}},stats={[1]="lightning_golem_damage_+%"}},[2912]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chaos Golems deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Chaos Golems deal %1%%% reduced Damage"}}},stats={[1]="chaos_golem_damage_+%"}},[2913]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you Summoned a Golem in the past 8 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you Summoned a Golem in the past 8 seconds"}}},stats={[1]="damage_+%_if_golem_summoned_in_past_8_seconds"}},[2914]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems Summoned in the past 8 seconds deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems Summoned in the past 8 seconds deal %1%%% reduced Damage"}}},stats={[1]="golem_damage_+%_if_summoned_in_past_8_seconds"}},[2915]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems Deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems Deal %1%%% less Damage"}}},stats={[1]="unique_primordial_tether_golem_damage_+%_final"}},[2916]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Sentinels of Dominance deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Sentinels of Dominance deal %1%%% reduced Damage"}}},stats={[1]="dominating_blow_minion_damage_+%"}},[2917]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dominating Blow Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dominating Blow Damage"}}},stats={[1]="dominating_blow_skill_attack_damage_+%"}},[2918]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Snap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Snap Damage"}}},stats={[1]="cold_snap_damage_+%"}},[2919]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Holy Flame Totem deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Holy Flame Totem deals %1%%% reduced Damage"}}},stats={[1]="flame_totem_damage_+%"}},[2920]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Animated Guardians deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Animated Guardians deal %1%%% reduced Damage"}}},stats={[1]="animate_guardian_damage_+%"}},[2921]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bear Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bear Trap Damage"}}},stats={[1]="bear_trap_damage_+%"}},[2922]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Wall Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Wall Damage"}}},stats={[1]="frost_wall_damage_+%"}},[2923]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Molten Shell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Molten Shell Damage"}}},stats={[1]="molten_shell_damage_+%"}},[2924]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reckoning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reckoning Damage"}}},stats={[1]="reckoning_damage_+%"}},[2925]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vigilant Strike Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vigilant Strike Damage"}}},stats={[1]="vigilant_strike_damage_+%"}},[2926]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Whirling Blades Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Whirling Blades Damage"}}},stats={[1]="whirling_blades_damage_+%"}},[2927]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flame Dash Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flame Dash Damage"}}},stats={[1]="flame_dash_damage_+%"}},[2928]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freeze Mine Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freeze Mine Damage"}}},stats={[1]="freeze_mine_damage_+%"}},[2929]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Herald of Ash Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Herald of Ash Damage"}}},stats={[1]="herald_of_ash_damage_+%"}},[2930]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Herald of Ice Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Herald of Ice Damage"}}},stats={[1]="herald_of_ice_damage_+%"}},[2931]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Herald of Thunder Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Herald of Thunder Damage"}}},stats={[1]="herald_of_thunder_damage_+%"}},[2932]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Tempest Shield Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Tempest Shield Damage"}}},stats={[1]="tempest_shield_damage_+%"}},[2933]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Desecrate Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Desecrate Damage"}}},stats={[1]="desecrate_damage_+%"}},[2934]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blink Arrow and Blink Arrow Clones have %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blink Arrow and Blink Arrow Clones have %1%%% reduced Damage"}}},stats={[1]="blink_arrow_and_blink_arrow_clone_damage_+%"}},[2935]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mirror Arrow and Mirror Arrow Clones deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mirror Arrow and Mirror Arrow Clones deal %1%%% reduced Damage"}}},stats={[1]="mirror_arrow_and_mirror_arrow_clone_damage_+%"}},[2936]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Riposte Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Riposte Damage"}}},stats={[1]="riposte_damage_+%"}},[2937]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vengeance Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vengeance Damage"}}},stats={[1]="vengeance_damage_+%"}},[2938]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Converted Enemies have %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Converted Enemies have %1%%% reduced Damage"}}},stats={[1]="converted_enemies_damage_+%"}},[2939]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Abyssal Cry Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Abyssal Cry Damage"}}},stats={[1]="abyssal_cry_damage_+%"}},[2940]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Galvanic Arrow Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Galvanic Arrow Damage"}}},stats={[1]="shrapnel_shot_damage_+%"}},[2941]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blast Rain deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blast Rain deals %1%%% reduced Damage"}}},stats={[1]="blast_rain_damage_+%"}},[2942]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Essence Drain Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Essence Drain Damage"}}},stats={[1]="essence_drain_damage_+%"}},[2943]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Contagion Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Contagion Damage"}}},stats={[1]="contagion_damage_+%"}},[2944]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blade Vortex Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blade Vortex Spell Damage"}}},stats={[1]="blade_vortex_damage_+%"}},[2945]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bladefall Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bladefall Damage"}}},stats={[1]="bladefall_damage_+%"}},[2946]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Trap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Trap Damage"}}},stats={[1]="ice_trap_damage_+%"}},[2947]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Charged Dash Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Charged Dash Damage"}}},stats={[1]="charged_dash_damage_+%"}},[2948]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Earthquake Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Earthquake Damage"}}},stats={[1]="earthquake_damage_+%"}},[2949]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dark Pact Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dark Pact Damage"}}},stats={[1]="skeletal_chains_damage_+%"}},[2950]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Storm Burst Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Storm Burst Damage"}}},stats={[1]="storm_burst_damage_+%"}},[2951]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Bomb Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Bomb Damage"}}},stats={[1]="frost_bomb_damage_+%"}},[2952]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Orb of Storms Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Orb of Storms Damage"}}},stats={[1]="orb_of_storms_damage_+%"}},[2953]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Siege Ballista deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Siege Ballista deals %1%%% reduced Damage"}}},stats={[1]="siege_ballista_damage_+%"}},[2954]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blight Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blight Damage"}}},stats={[1]="blight_damage_+%"}},[2955]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Sunder Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Sunder Damage"}}},stats={[1]="shockwave_slam_damage_+%"}},[2956]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second while Frozen"}}},stats={[1]="life_regeneration_per_minute_%_while_frozen"}},[2957]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield per second for each\nEnemy you or your Minions have Killed Recently, up to 10%% per second"}}},stats={[1]="occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds"}},[2958]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot Be Stunned while you have Energy Shield"}}},stats={[1]="occultist_immune_to_stun_while_has_energy_shield"}},[2959]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Energy Shield Recharge is not interrupted by Damage if Recharge\nbegan Recently"}}},stats={[1]="occultist_energy_shield_always_recovers_for_4_seconds_after_starting_recovery"}},[2960]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage per Summoned Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage per Summoned Totem"}}},stats={[1]="hierophant_passive_damage_+%_final_per_totem"}},[2961]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Totem Damage per Summoned Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Totem Damage per Summoned Totem"}}},stats={[1]="totem_damage_+%_final_per_active_totem"}},[2962]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flasks do not apply to you"}}},stats={[1]="cannot_be_affected_by_flasks"}},[2963]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flasks apply to your Raised Zombies and Spectres"}}},stats={[1]="flasks_apply_to_your_zombies_and_spectres"}},[2964]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Minion Damage also affect you"}}},stats={[1]="modifiers_to_minion_damage_also_affect_you"}},[2965]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Minion Attack Speed also affect you"}}},stats={[1]="additive_modifiers_to_minion_attack_speed_also_affect_you"}},[2966]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Minion Cast Speed also affect you"}}},stats={[1]="modifiers_to_minion_cast_speed_also_affect_you"}},[2967]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Minion Life Regeneration also affect you"}}},stats={[1]="modifiers_to_minion_life_regeneration_also_affect_you"}},[2968]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Minion Movement Speed also affect you"}}},stats={[1]="modifiers_to_minion_movement_speed_also_affect_you"}},[2969]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Modifiers to Minion Resistances also affect you"}}},stats={[1]="modifiers_to_minion_resistances_also_affect_you"}},[2970]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="When you Kill an Enemy, for each Curse on that Enemy, gain %1%%%\nof Non-Chaos Damage as extra Chaos Damage for 4 seconds"}}},stats={[1]="occultist_gain_%_of_non_chaos_damage_as_chaos_damage_per_curse_on_target_on_kill_for_4_seconds"}},[2971]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies you Curse take %1%%% increased Damage"}}},stats={[1]="enemies_damage_taken_+%_while_cursed"}},[2972]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMalediction"},limit={[1]={[1]="#",[2]="#"}},text="Enemies you Curse have Malediction"}}},stats={[1]="enemies_you_curse_have_malediction"}},[2973]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attacks with this Weapon deal Double Damage to Chilled Enemies"}}},stats={[1]="local_double_damage_to_chilled_enemies"}},[2974]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks with this Weapon Penetrate %1%%% Elemental Resistances"}}},stats={[1]="local_elemental_penetration_%"}},[2975]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks with this Weapon Penetrate %1%%% Fire Resistance"}}},stats={[1]="local_fire_penetration_%"}},[2976]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks with this Weapon Penetrate %1%%% Cold Resistance"}}},stats={[1]="local_cold_penetration_%"}},[2977]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks with this Weapon Penetrate %1%%% Lightning Resistance"}}},stats={[1]="local_lightning_penetration_%"}},[2978]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while you have no Frenzy Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while you have no Frenzy Charges"}}},stats={[1]="damage_while_no_frenzy_charges_+%"}},[2979]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneGhostReaver"},limit={[1]={[1]="#",[2]="#"}},text="Ghost Reaver during Flask effect"}}},stats={[1]="local_flask_ghost_reaver"}},[2980]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneZealotsOath"},limit={[1]={[1]="#",[2]="#"}},text="Zealot's Oath during Flask effect"}}},stats={[1]="local_flask_zealots_oath"}},[2981]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Enemies on Full Life"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Enemies on Full Life"}}},stats={[1]="critical_strike_chance_against_enemies_on_full_life_+%"}},[2982]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Attack Damage Leeched as Life on Critical Strike"}}},stats={[1]="attack_critical_strike_damage_life_leech_permyriad"}},[2983]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% Added Attack Physical Damage"}}},stats={[1]="minion_attack_minimum_added_physical_damage",[2]="minion_attack_maximum_added_physical_damage"}},[2984]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Chaos Damage"}}},stats={[1]="minion_global_minimum_added_chaos_damage",[2]="minion_global_maximum_added_chaos_damage"}},[2985]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Cold Damage"}}},stats={[1]="minion_global_minimum_added_cold_damage",[2]="minion_global_maximum_added_cold_damage"}},[2986]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Fire Damage"}}},stats={[1]="minion_global_minimum_added_fire_damage",[2]="minion_global_maximum_added_fire_damage"}},[2987]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Lightning Damage"}}},stats={[1]="minion_global_minimum_added_lightning_damage",[2]="minion_global_maximum_added_lightning_damage"}},[2988]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Minions deal %1% to %2% additional Physical Damage"}}},stats={[1]="minion_global_minimum_added_physical_damage",[2]="minion_global_maximum_added_physical_damage"}},[2989]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Attack Damage as Extra Fire Damage"}}},stats={[1]="attack_physical_damage_%_to_add_as_fire"}},[2990]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Attack Damage as Extra Cold Damage"}}},stats={[1]="attack_physical_damage_%_to_add_as_cold"}},[2991]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Attack Damage as Extra Lightning Damage"}}},stats={[1]="attack_physical_damage_%_to_add_as_lightning"}},[2992]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d maximum Energy Shield per 5 Strength"}}},stats={[1]="maximum_energy_shield_+_per_5_strength"}},[2993]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="All Attacks are Critical Strikes"}}},stats={[1]="attack_always_crit"}},[2994]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Counts as all One Handed Melee Weapon Types"}}},stats={[1]="local_varunastra_weapon_counts_as_all_1h_melee_weapon_types"}},[2995]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextAurasOnlyAffectThingsTheyAffect"},limit={[1]={[1]=1,[2]="#"}},text="Auras from your Skills grant %1%%% of Life Regenerated per second to\nyou and Allies"}}},stats={[1]="guardian_auras_grant_life_regeneration_per_minute_%"}},[2996]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies cannot gain Power, Frenzy or Endurance Charges"}}},stats={[1]="guardian_nearby_enemies_cannot_gain_charges"}},[2997]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Armour equal to %1%%% of your Reserved Life to you and nearby Allies"}}},stats={[1]="guardian_reserved_life_granted_to_you_and_allies_as_armour_%"}},[2998]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants maximum Energy Shield equal to %1%%% of your Reserved Mana to\nyou and nearby Allies"}}},stats={[1]="guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield"}},[2999]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Every 5 seconds, remove Curses and Elemental Ailments from you"}}},stats={[1]="guardian_remove_curses_and_status_ailments_every_10_seconds"}},[3000]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Every 5 seconds, Regenerate %1%%% of Life over one second"}}},stats={[1]="guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds"}},[3001]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Deal %1%%% of your maximum Life as Fire Damage to nearby Enemies when Hit"}}},stats={[1]="base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"}},[3002]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Totems Reflect %1%%% of their maximum Life as Fire Damage to nearby Enemies when Hit"}}},stats={[1]="totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"}},[3003]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Attack Speed per Frenzy Charge"}}},stats={[1]="active_skill_attack_speed_+%_final_per_frenzy_charge"}},[3004]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies near your Totems deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies near your Totems deal %1%%% less Damage"}}},stats={[1]="totem_aura_enemy_damage_+%_final"}},[3005]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies near your Totems take %1%%% increased Physical and Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies near your Totems take %1%%% reduced Physical and Fire Damage"}}},stats={[1]="totem_aura_enemy_fire_and_physical_damage_taken_+%"}},[3006]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Your Traps deal %1%%% more Damage with Hits and Ailments if they Armed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Your Traps deal %1%%% less Damage with Hits and Ailments if they Armed Recently"}}},stats={[1]="trap_damage_buildup_damage_+%_final_when_first_set"}},[3007]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Traps deal %1%%% more Damage with Hits and Ailments if they were not Armed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Traps deal %1%%% less Damage with Hits and Ailments if they were not Armed Recently"}}},stats={[1]="trap_damage_buildup_damage_+%_final_after_4_seconds"}},[3008]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You are Immune to Damage during Flask Effect"}}},stats={[1]="local_flask_immune_to_damage"}},[3009]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="All Attacks with this Weapon are Critical Strikes"}}},stats={[1]="local_weapon_always_crit"}},[3010]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Traps and Mines deal %1% to %2% additional Physical Damage"}}},stats={[1]="trap_and_mine_minimum_added_physical_damage",[2]="trap_and_mine_maximum_added_physical_damage"}},[3011]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% Chance for Traps to Trigger an additional time"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Traps Trigger an additional time"}}},stats={[1]="trap_%_chance_to_trigger_twice"}},[3012]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage Over Time per 10 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage Over Time per 10 Dexterity"}}},stats={[1]="physical_damage_over_time_per_10_dexterity_+%"}},[3013]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bleeding Duration per 12 Intelligence"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bleeding Duration per 12 Intelligence"}}},stats={[1]="bleed_duration_per_12_intelligence_+%"}},[3014]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance to cause Bleeding Enemies to Flee on hit"}}},stats={[1]="%_chance_to_cause_bleeding_enemies_to_flee_on_hit"}},[3015]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ancestral Protector Totem grants %1%%% increased Attack Speed while Active"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Ancestral Protector Totem grants %1%%% reduced Attack Speed while Active"}}},stats={[1]="melee_ancestor_totem_grant_owner_attack_speed_+%"}},[3016]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ancestral Blademaster Totem grants %1%%% of Physical Damage as Extra Fire Damage while Active"}}},stats={[1]="slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"}},[3017]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ancestral Warchief Totem grants %1%%% increased Melee Damage while Active"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Ancestral Warchief Totem grants %1%%% reduced Melee Damage while Active"}}},stats={[1]="slam_ancestor_totem_grant_owner_melee_damage_+%"}},[3018]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="If you've Blocked in the past 10 seconds, you\nand nearby Allies cannot be Stunned"}}},stats={[1]="gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius"}},[3019]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cleave Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cleave Area of Effect"}}},stats={[1]="cleave_radius_+%"}},[3020]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ground Slam Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ground Slam Area of Effect"}}},stats={[1]="ground_slam_radius_+%"}},[3021]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Infernal Blow Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Infernal Blow Area of Effect"}}},stats={[1]="infernal_blow_radius_+%"}},[3022]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Tendrils Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Tendrils Area of Effect"}}},stats={[1]="lightning_tendrils_radius_+%"}},[3023]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Magma Orb Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Magma Orb Area of Effect"}}},stats={[1]="magma_orb_radius_+%"}},[3024]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reave Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reave Radius"}}},stats={[1]="reave_radius_+%"}},[3025]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Molten Strike Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Molten Strike Area of Effect"}}},stats={[1]="molten_strike_radius_+%"}},[3026]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Shot Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Shot Area of Effect"}}},stats={[1]="ice_shot_radius_+%"}},[3027]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rain of Arrows Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rain of Arrows Area of Effect"}}},stats={[1]="rain_of_arrows_radius_+%"}},[3028]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Leap Slam Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Leap Slam Area of Effect"}}},stats={[1]="leap_slam_radius_+%"}},[3029]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Arrow Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Arrow Area of Effect"}}},stats={[1]="lightning_arrow_radius_+%"}},[3030]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Nova Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Nova Area of Effect"}}},stats={[1]="ice_nova_radius_+%"}},[3031]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Static Strike Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Static Strike Area of Effect"}}},stats={[1]="static_strike_radius_+%"}},[3032]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Storm Call Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Storm Call Area of Effect"}}},stats={[1]="storm_call_radius_+%"}},[3033]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Sweep has a %1%%% chance to grant an Endurance Charge on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Sweep grants an Endurance Charge on Hit"}}},stats={[1]="sweep_add_endurance_charge_on_hit_%"}},[3034]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Sweep Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Sweep Area of Effect"}}},stats={[1]="sweep_radius_+%"}},[3035]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Righteous Fire Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Righteous Fire Area of Effect"}}},stats={[1]="righteous_fire_radius_+%"}},[3036]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Arctic Breath Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Arctic Breath Area of Effect"}}},stats={[1]="arctic_breath_radius_+%"}},[3037]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ball Lightning Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ball Lightning Area of Effect"}}},stats={[1]="ball_lightning_radius_+%"}},[3038]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Explosive Arrow has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Explosive Arrow has %1%%% reduced Area of Effect"}}},stats={[1]="explosive_arrow_radius_+%"}},[3039]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flameblast Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flameblast Area of Effect"}}},stats={[1]="flameblast_radius_+%"}},[3040]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Glacial Cascade Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Glacial Cascade Area of Effect"}}},stats={[1]="glacial_cascade_radius_+%"}},[3041]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Wild Strike Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Wild Strike Area of Effect"}}},stats={[1]="wild_strike_radius_+%"}},[3042]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Detonate Dead Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Detonate Dead Area of Effect"}}},stats={[1]="detonate_dead_radius_+%"}},[3043]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Crash Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Crash Area of Effect"}}},stats={[1]="ice_crash_radius_+%"}},[3044]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Kinetic Blast Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Kinetic Blast Area of Effect"}}},stats={[1]="kinetic_blast_radius_+%"}},[3045]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Caustic Arrow Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Caustic Arrow Area of Effect"}}},stats={[1]="caustic_arrow_radius_+%"}},[3046]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Snap Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Snap Area of Effect"}}},stats={[1]="cold_snap_radius_+%"}},[3047]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Decoy Totem Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Decoy Totem Area of Effect"}}},stats={[1]="decoy_totem_radius_+%"}},[3048]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shock Nova Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shock Nova Area of Effect"}}},stats={[1]="shock_nova_radius_+%"}},[3049]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freeze Mine Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freeze Mine Area of Effect"}}},stats={[1]="freeze_mine_radius_+%"}},[3050]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Galvanic Arrow Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Galvanic Arrow Area of Effect"}}},stats={[1]="shrapnel_shot_radius_+%"}},[3051]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blast Rain has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blast Rain has %1%%% reduced Area of Effect"}}},stats={[1]="blast_rain_radius_+%"}},[3052]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Contagion Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Contagion Area of Effect"}}},stats={[1]="contagion_radius_+%"}},[3053]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Wither has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Wither has %1%%% reduced Area of Effect"}}},stats={[1]="wither_radius_+%"}},[3054]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blade Vortex Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blade Vortex Area of Effect"}}},stats={[1]="blade_vortex_radius_+%"}},[3055]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bladefall Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bladefall Area of Effect"}}},stats={[1]="bladefall_radius_+%"}},[3056]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Trap Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Trap Area of Effect"}}},stats={[1]="ice_trap_radius_+%"}},[3057]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Earthquake Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Earthquake Area of Effect"}}},stats={[1]="earthquake_radius_+%"}},[3058]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Bomb Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Bomb Area of Effect"}}},stats={[1]="frost_bomb_radius_+%"}},[3059]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Orb of Storms Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Orb of Storms Area of Effect"}}},stats={[1]="storm_cloud_radius_+%"}},[3060]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blight Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blight Area of Effect"}}},stats={[1]="blight_radius_+%"}},[3061]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Sunder Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Sunder Area of Effect"}}},stats={[1]="shockwave_slam_radius_+%"}},[3062]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shockwave Totem Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shockwave Totem Area of Effect"}}},stats={[1]="shockwave_totem_radius_+%"}},[3063]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Charged Dash has %1$+d to Radius of each Wave's last damage Area"}}},stats={[1]="charged_dash_area_of_effect_radius_+_of_final_explosion"}},[3064]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cleave Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cleave Attack Speed"}}},stats={[1]="cleave_attack_speed_+%"}},[3065]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Double Strike Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Double Strike Attack Speed"}}},stats={[1]="double_strike_attack_speed_+%"}},[3066]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dual Strike Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dual Strike Attack Speed"}}},stats={[1]="dual_strike_attack_speed_+%"}},[3067]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Heavy Strike Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Heavy Strike Speed"}}},stats={[1]="heavy_strike_attack_speed_+%"}},[3068]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Raised Zombies have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Raised Zombies have %1%%% reduced Attack Speed"}}},stats={[1]="zombie_attack_speed_+%"}},[3069]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rain of Arrows Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rain of Arrows Attack Speed"}}},stats={[1]="rain_of_arrows_attack_speed_+%"}},[3070]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Leap Slam Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Leap Slam Attack Speed"}}},stats={[1]="leap_slam_attack_speed_+%"}},[3071]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shield Charge Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shield Charge Attack Speed"}}},stats={[1]="shield_charge_attack_speed_+%"}},[3072]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Barrage Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Barrage Attack Speed"}}},stats={[1]="barrage_attack_speed_+%"}},[3073]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Hit Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Hit Attack Speed"}}},stats={[1]="elemental_hit_attack_speed_+%"}},[3074]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cyclone Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cyclone Attack Speed"}}},stats={[1]="cyclone_attack_speed_+%"}},[3075]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Power Siphon Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Power Siphon Attack Speed"}}},stats={[1]="power_siphon_attack_speed_+%"}},[3076]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Siege Ballista has %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Siege Ballista has %1%%% reduced Attack Speed"}}},stats={[1]="siege_ballista_attack_speed_+%"}},[3077]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Sunder Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Sunder Attack Speed"}}},stats={[1]="shockwave_slam_attack_speed_+%"}},[3078]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mirror Arrow and Mirror Arrow Clones have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mirror Arrow and Mirror Arrow Clones have %1%%% reduced Attack Speed"}}},stats={[1]="mirror_arrow_and_mirror_arrow_clone_attack_speed_+%"}},[3079]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blink Arrow and Blink Arrow Clones have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blink Arrow and Blink Arrow Clones have %1%%% reduced Attack Speed"}}},stats={[1]="blink_arrow_and_blink_arrow_clone_attack_speed_+%"}},[3080]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Whirling Blades Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Whirling Blades Attack Speed"}}},stats={[1]="whirling_blades_attack_speed_+%"}},[3081]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spectres have %1%%% increased Attack and Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spectres have %1%%% reduced Attack and Cast Speed"}}},stats={[1]="spectre_attack_and_cast_speed_+%"}},[3082]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freezing Pulse Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freezing Pulse Cast Speed"}}},stats={[1]="freezing_pulse_cast_speed_+%"}},[3083]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fireball Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fireball Cast Speed"}}},stats={[1]="fireball_cast_speed_+%"}},[3084]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Nova Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Nova Cast Speed"}}},stats={[1]="fire_nova_mine_cast_speed_+%"}},[3085]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Warp Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Warp Cast Speed"}}},stats={[1]="lightning_warp_cast_speed_+%"}},[3086]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Trap Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Trap Cooldown Recovery Speed"}}},stats={[1]="fire_trap_cooldown_speed_+%"}},[3087]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flicker Strike Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flicker Strike Cooldown Recovery Speed"}}},stats={[1]="flicker_strike_cooldown_speed_+%"}},[3088]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Snap Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Snap Cooldown Recovery Speed"}}},stats={[1]="cold_snap_cooldown_speed_+%"}},[3089]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Convocation Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Convocation Cooldown Recovery Speed"}}},stats={[1]="convocation_cooldown_speed_+%"}},[3090]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bear Trap Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bear Trap Cooldown Recovery Speed"}}},stats={[1]="bear_trap_cooldown_speed_+%"}},[3091]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Wall Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Wall Cooldown Recovery Speed"}}},stats={[1]="frost_wall_cooldown_speed_+%"}},[3092]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reckoning Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reckoning Cooldown Recovery Speed"}}},stats={[1]="reckoning_cooldown_speed_+%"}},[3093]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flame Dash Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flame Dash Cooldown Recovery Speed"}}},stats={[1]="flame_dash_cooldown_speed_+%"}},[3094]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Desecrate Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Desecrate Cooldown Recovery Speed"}}},stats={[1]="desecrate_cooldown_speed_+%"}},[3095]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blink Arrow Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blink Arrow Cooldown Recovery Speed"}}},stats={[1]="blink_arrow_cooldown_speed_+%"}},[3096]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mirror Arrow Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mirror Arrow Cooldown Recovery Speed"}}},stats={[1]="mirror_arrow_cooldown_speed_+%"}},[3097]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Riposte Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Riposte Cooldown Recovery Speed"}}},stats={[1]="riposte_cooldown_speed_+%"}},[3098]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vengeance Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vengeance Cooldown Recovery Speed"}}},stats={[1]="vengeance_cooldown_speed_+%"}},[3099]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Enduring Cry Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Enduring Cry Cooldown Recovery Speed"}}},stats={[1]="enduring_cry_cooldown_speed_+%"}},[3100]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Bomb Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Bomb Cooldown Recovery Speed"}}},stats={[1]="frost_bomb_cooldown_speed_+%"}},[3101]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Conversion Trap Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Conversion Trap Cooldown Recovery Speed"}}},stats={[1]="conversion_trap_cooldown_speed_+%"}},[3102]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Trap Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Trap Cooldown Recovery Speed"}}},stats={[1]="ice_trap_cooldown_speed_+%"}},[3103]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ball Lightning Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ball Lightning Projectile Speed"}}},stats={[1]="ball_lightning_projectile_speed_+%"}},[3104]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freezing Pulse Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freezing Pulse Projectile Speed"}}},stats={[1]="freezing_pulse_projectile_speed_+%"}},[3105]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spark Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spark Projectile Speed"}}},stats={[1]="spark_projectile_speed_+%"}},[3106]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spectral Throw Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spectral Throw Projectile Speed"}}},stats={[1]="spectral_throw_projectile_speed_+%"}},[3107]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ethereal Knives Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ethereal Knives Projectile Speed"}}},stats={[1]="ethereal_knives_projectile_speed_+%"}},[3108]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Holy Flame Totem has %1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Holy Flame Totem has %1%%% reduced Projectile Speed"}}},stats={[1]="flame_totem_projectile_speed_+%"}},[3109]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Incinerate Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Incinerate Projectile Speed"}}},stats={[1]="incinerate_projectile_speed_+%"}},[3110]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Sentinel of Dominance Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Sentinel of Dominance Duration"}}},stats={[1]="dominating_blow_duration_+%"}},[3111]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Puncture Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Puncture Duration"}}},stats={[1]="puncture_duration_+%"}},[3112]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Immortal Call Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Immortal Call Duration"}}},stats={[1]="immortal_call_duration_+%"}},[3113]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bone Offering Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bone Offering Duration"}}},stats={[1]="bone_offering_duration_+%"}},[3114]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flesh Offering Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flesh Offering Duration"}}},stats={[1]="flesh_offering_duration_+%"}},[3115]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spirit Offering Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spirit Offering Duration"}}},stats={[1]="spirit_offering_duration_+%"}},[3116]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Smoke Mine Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Smoke Mine Duration"}}},stats={[1]="smoke_mine_duration_+%"}},[3117]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frost Wall Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frost Wall Duration"}}},stats={[1]="frost_wall_duration_+%"}},[3118]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vigilant Strike Fortify Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vigilant Strike Fortify Duration"}}},stats={[1]="vigilant_strike_fortify_duration_+%"}},[3119]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poacher's Mark Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poacher's Mark Duration"}}},stats={[1]="poachers_mark_duration_+%"}},[3120]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Weakness Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Weakness Duration"}}},stats={[1]="projectile_weakness_duration_+%"}},[3121]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Temporal Chains Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Temporal Chains Duration"}}},stats={[1]="temporal_chains_duration_+%"}},[3122]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Warlord's Mark Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Warlord's Mark Duration"}}},stats={[1]="warlords_mark_duration_+%"}},[3123]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vulnerability Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vulnerability Duration"}}},stats={[1]="vulnerability_duration_+%"}},[3124]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Punishment Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Punishment Duration"}}},stats={[1]="punishment_duration_+%"}},[3125]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frostbite Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frostbite Duration"}}},stats={[1]="frostbite_duration_+%"}},[3126]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flammability Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flammability Duration"}}},stats={[1]="flammability_duration_+%"}},[3127]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Enfeeble Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Enfeeble Duration"}}},stats={[1]="enfeeble_duration_+%"}},[3128]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Weakness Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Weakness Duration"}}},stats={[1]="elemental_weakness_duration_+%"}},[3129]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Conductivity Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Conductivity Duration"}}},stats={[1]="conductivity_duration_+%"}},[3130]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Assassin's Mark Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Assassin's Mark Duration"}}},stats={[1]="assassins_mark_duration_+%"}},[3131]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Desecrate Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Desecrate Duration"}}},stats={[1]="desecrate_duration_+%"}},[3132]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rallying Cry Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rallying Cry Duration"}}},stats={[1]="rallying_cry_duration_+%"}},[3133]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Abyssal Cry Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Abyssal Cry Duration"}}},stats={[1]="abyssal_cry_duration_+%"}},[3134]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Contagion Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Contagion Duration"}}},stats={[1]="contagion_duration_+%"}},[3135]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Essence Drain Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Essence Drain Duration"}}},stats={[1]="siphon_duration_+%"}},[3136]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Wither has %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Wither has %1%%% reduced Duration"}}},stats={[1]="wither_duration_+%"}},[3137]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blade Vortex Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blade Vortex Duration"}}},stats={[1]="blade_vortex_duration_+%"}},[3138]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Earthquake Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Earthquake Duration"}}},stats={[1]="earthquake_duration_+%"}},[3139]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blight Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blight Duration"}}},stats={[1]="blight_duration_+%"}},[3140]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Viper Strike Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Viper Strike Duration"}}},stats={[1]="viper_strike_poison_duration_+%"}},[3141]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Firestorm Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Firestorm Duration"}}},stats={[1]="firestorm_duration_+%"}},[3142]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Static Strike Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Static Strike Duration"}}},stats={[1]="static_strike_duration_+%"}},[3143]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Storm Call Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Storm Call Duration"}}},stats={[1]="storm_call_duration_+%"}},[3144]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Arctic Breath Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Arctic Breath Duration"}}},stats={[1]="arctic_breath_duration_+%"}},[3145]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Warp Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Warp Duration"}}},stats={[1]="lightning_warp_duration_+%"}},[3146]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Shot Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Shot Duration"}}},stats={[1]="ice_shot_duration_+%"}},[3147]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Caustic Arrow Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Caustic Arrow Duration"}}},stats={[1]="caustic_arrow_duration_+%"}},[3148]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Double Strike Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Double Strike Critical Strike Chance"}}},stats={[1]="double_strike_critical_strike_chance_+%"}},[3149]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dual Strike Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dual Strike Critical Strike Chance"}}},stats={[1]="dual_strike_critical_strike_chance_+%"}},[3150]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Split Arrow Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Split Arrow Critical Strike Chance"}}},stats={[1]="split_arrow_critical_strike_chance_+%"}},[3151]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Viper Strike Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Viper Strike Critical Strike Chance"}}},stats={[1]="viper_strike_critical_strike_chance_+%"}},[3152]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flameblast Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flameblast Critical Strike Chance"}}},stats={[1]="flameblast_critical_strike_chance_+%"}},[3153]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flame Surge Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flame Surge Critical Strike Chance"}}},stats={[1]="flame_surge_critical_strike_chance_+%"}},[3154]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Tornado Shot Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Tornado Shot Critical Strike Chance"}}},stats={[1]="tornado_shot_critical_strike_chance_+%"}},[3155]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Orb of Storms Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Orb of Storms Critical Strike Chance"}}},stats={[1]="storm_cloud_critical_strike_chance_+%"}},[3156]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bladefall Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bladefall Critical Strike Chance"}}},stats={[1]="bladefall_critical_strike_chance_+%"}},[3157]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Lightning Strike fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Lightning Strike fires %1% additional Projectiles"}}},stats={[1]="lightning_strike_num_of_additional_projectiles"}},[3158]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Molten Strike fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Molten Strike fires %1% additional Projectiles"}}},stats={[1]="molten_strike_num_of_additional_projectiles"}},[3159]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spark fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spark fires %1% additional Projectiles"}}},stats={[1]="spark_num_of_additional_projectiles"}},[3160]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Split Arrow fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Split Arrow fires %1% additional Projectiles"}}},stats={[1]="split_arrow_num_of_additional_projectiles"}},[3161]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Barrage fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Barrage fires %1% additional Projectiles"}}},stats={[1]="barrage_num_of_additional_projectiles"}},[3162]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Tornado Shot fires an additional secondary Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Tornado Shot fires %1% additional secondary Projectiles"}}},stats={[1]="tornado_shot_num_of_secondary_projectiles"}},[3163]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Magma Orb Chains an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Magma Orb Chains an additional %1% times"}}},stats={[1]="magma_orb_num_of_additional_projectiles_in_chain"}},[3164]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Arc Chains an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Arc Chains an additional %1% times"}}},stats={[1]="arc_num_of_additional_projectiles_in_chain"}},[3165]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Holy Flame Totem fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Holy Flame Totem fires %1% additional Projectiles"}}},stats={[1]="flame_totem_num_of_additional_projectiles"}},[3166]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Lightning Strike pierces an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Lightning Strike pierces %1% additional Targets"}}},stats={[1]="lightning_strike_additional_pierce"}},[3167]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Lightning Trap pierces an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Lightning Trap pierces %1% additional Targets"}}},stats={[1]="lightning_trap_additional_pierce"}},[3168]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Burning Arrow Always Ignites"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="Burning Arrow has %1$+d%% chance to Ignite"}}},stats={[1]="burning_arrow_ignite_chance_%"}},[3169]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Burning Arrow Physical Damage gained as Extra Fire Damage"}}},stats={[1]="burning_arrow_physical_damage_%_to_add_as_fire_damage"}},[3170]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Infernal Blow Physical Damage gained as Extra Fire Damage"}}},stats={[1]="infernal_blow_physical_damage_%_to_add_as_fire_damage"}},[3171]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Trap Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Trap Burning Damage"}}},stats={[1]="fire_trap_burning_damage_+%"}},[3172]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Fireball Always Ignites"},[2]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="Fireball has %1$+d%% chance to Ignite"}}},stats={[1]="fireball_ignite_chance_%"}},[3173]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=100,[2]="#"}},text="Glacial Hammer Always Freezes"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99}},text="Glacial Hammer has %1$+d%% chance to Freeze"}}},stats={[1]="glacial_hammer_freeze_chance_%"}},[3174]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=100,[2]="#"}},text="Ice Nova Always Freezes"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99}},text="Ice Nova has %1$+d%% chance to Freeze"}}},stats={[1]="ice_nova_freeze_chance_%"}},[3175]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed per Reave stack"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed per Reave stack"}}},stats={[1]="reave_attack_speed_per_reave_stack_+%"}},[3176]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spectral Throw Projectile Deceleration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spectral Throw Projectile Deceleration"}}},stats={[1]="spectral_throw_projectile_deceleration_+%"}},[3177]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flicker Strike Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flicker Strike Damage per Frenzy Charge"}}},stats={[1]="flicker_strike_damage_+%_per_frenzy_charge"}},[3178]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance for Puncture to Maim on hit"}}},stats={[1]="puncture_maim_on_hit_%_chance"}},[3179]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=100,[2]="#"}},text="Arc Always Shocks"},[2]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]=1,[2]=99}},text="Arc has %1$+d%% chance to Shock"}}},stats={[1]="arc_shock_chance_%"}},[3180]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Fire Nova Mine repeats an additional %1% times"}}},stats={[1]="fire_nova_mine_num_of_additional_repeats"}},[3181]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Firestorm explosion Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Firestorm explosion Area of Effect"}}},stats={[1]="firestorm_explosion_area_of_effect_+%"}},[3182]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flame Surge Damage against Burning Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flame Surge Damage against Burning Enemies"}}},stats={[1]="flame_surge_damage_+%_vs_burning_enemies"}},[3183]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance to gain a Power Charge on Critical Strike with Ice Spear"}}},stats={[1]="ice_spear_%_chance_to_gain_power_charge_on_critical_strike"}},[3184]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance to gain an additional Power Charge on Kill with Power Siphon"}}},stats={[1]="power_siphon_%_chance_to_gain_power_charge_on_kill"}},[3185]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ancestral Protector Totem Placement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ancestral Protector Totem Placement Speed"}}},stats={[1]="melee_ancestor_totem_placement_speed_+%"}},[3186]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Searing Bond Totem Placement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Searing Bond Totem Placement Speed"}}},stats={[1]="searing_bond_totem_placement_speed_+%"}},[3187]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% Sweep Knockback Chance"}}},stats={[1]="sweep_knockback_chance_%"}},[3188]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frenzy Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frenzy Damage per Frenzy Charge"}}},stats={[1]="frenzy_damage_+%_per_frenzy_charge"}},[3189]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% Chance on Frenzy to gain an additional Frenzy Charge"}}},stats={[1]="frenzy_%_chance_to_gain_additional_frenzy_charge"}},[3190]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Elemental Hit Always Freezes, Shocks and Ignites"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="Elemental Hit has %1$+d%% chance to Freeze, Shock and Ignite"}}},stats={[1]="elemental_hit_chance_to_freeze_shock_ignite_%"}},[3191]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Glacial Cascade Physical Damage Converted to Cold Damage"}}},stats={[1]="glacial_cascade_physical_damage_%_to_convert_to_cold"}},[3192]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Glacial Hammer Physical Damage gained as Extra Cold Damage"}}},stats={[1]="glacial_hammer_physical_damage_%_to_add_as_cold_damage"}},[3193]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Ice Crash Physical Damage gained as Extra Cold Damage"}}},stats={[1]="ice_crash_physical_damage_%_to_add_as_cold_damage"}},[3194]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Raised Spectre Elemental Resistances"}}},stats={[1]="spectre_elemental_resistances_%"}},[3195]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raised Zombies have %1$+d%% to Elemental Resistances"}}},stats={[1]="zombie_elemental_resistances_%"}},[3196]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Stone Golem Elemental Resistances"}}},stats={[1]="stone_golem_elemental_resistances_%"}},[3197]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to increased Flame Golem Elemental Resistances"}}},stats={[1]="flame_golem_elemental_resistances_%"}},[3198]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Ice Golem Elemental Resistances"}}},stats={[1]="ice_golem_elemental_resistances_%"}},[3199]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Lightning Golem Elemental Resistances"}}},stats={[1]="lightning_golem_elemental_resistances_%"}},[3200]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Golem Elemental Resistances"}}},stats={[1]="chaos_golem_elemental_resistances_%"}},[3201]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Animated Guardian Elemental Resistances"}}},stats={[1]="animate_guardian_elemental_resistances_%"}},[3202]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shock Nova ring deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shock Nova ring deals %1%%% reduced Damage"}}},stats={[1]="shock_nova_ring_damage_+%"}},[3203]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Blast Rain fires an additional Arrow"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Blast Rain fires %1$+d additional Arrows"}}},stats={[1]="blast_rain_number_of_blasts"}},[3204]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Blast Rain fires an additional Arrow"}}},stats={[1]="blast_rain_single_additional_projectile"}},[3205]={lang={English={[1]={[1]={k="divide_by_one_hundred_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Essence Drain Regenerates %1$+d%% of Debuff Damage as Life"}}},stats={[1]="siphon_life_leech_from_damage_permyriad"}},[3206]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Detonate Dead has a %1%%% chance to detonate an additional corpse"}}},stats={[1]="detonate_dead_%_chance_to_detonate_additional_corpse"}},[3207]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to create an additional Animate Weapon copy"}}},stats={[1]="animate_weapon_chance_to_create_additional_copy_%"}},[3208]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Decoy Totem Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Decoy Totem Life"}}},stats={[1]="decoy_totem_life_+%"}},[3209]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Devouring Totem Leech per second"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Devouring Totem Leech per second"}}},stats={[1]="devouring_totem_leech_per_second_+%"}},[3210]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Rejuvenation Totem Life Regeneration as extra Mana Regeneration"}}},stats={[1]="rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"}},[3211]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rejuvenation Totem Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rejuvenation Totem Aura Effect"}}},stats={[1]="rejuvenation_totem_aura_effect_+%"}},[3212]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Wild Strike's Beam Chains an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Wild Strike's Beam Chains an additional %1% times"}}},stats={[1]="wild_strike_num_of_additional_projectiles_in_chain"}},[3213]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Summon an additional Skeleton Warrior with Summon Skeleton"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Summon %1% additional Skeleton Warriors with Summon Skeleton"}}},stats={[1]="summon_skeletons_num_additional_warrior_skeletons"}},[3214]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shockwave Totem Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shockwave Totem Cast Speed"}}},stats={[1]="shockwave_totem_cast_speed_+%"}},[3215]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Devouring Totem has %1%%% Chance to Consume an additional corpse"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Devouring Totem has %1%%% Chance to Consume an additional corpse"}}},stats={[1]="devouring_totem_%_chance_to_consume_additional_corpse"}},[3216]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Siege Ballista has %1%%% increased Totem Placement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Siege Ballista has %1%%% reduced Totem Placement Speed"}}},stats={[1]="siege_ballista_totem_placement_speed_+%"}},[3217]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Incinerate Damage for each stage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Incinerate Damage for each stage"}}},stats={[1]="incinerate_damage_+%_per_stage"}},[3218]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poacher's Mark Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poacher's Mark Curse Effect"}}},stats={[1]="poachers_mark_curse_effect_+%"}},[3219]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Weakness Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Weakness Curse Effect"}}},stats={[1]="projectile_weakness_curse_effect_+%"}},[3220]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Temporal Chains Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Temporal Chains Curse Effect"}}},stats={[1]="temporal_chains_curse_effect_+%"}},[3221]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Assassin's Mark Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Assassin's Mark Curse Effect"}}},stats={[1]="assassins_mark_curse_effect_+%"}},[3222]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Conductivity Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Conductivity Curse Effect"}}},stats={[1]="conductivity_curse_effect_+%"}},[3223]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Weakness Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Weakness Curse Effect"}}},stats={[1]="elemental_weakness_curse_effect_+%"}},[3224]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Enfeeble Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Enfeeble Curse Effect"}}},stats={[1]="enfeeble_curse_effect_+%"}},[3225]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Flammability Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Flammability Curse Effect"}}},stats={[1]="flammability_curse_effect_+%"}},[3226]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frostbite Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frostbite Curse Effect"}}},stats={[1]="frostbite_curse_effect_+%"}},[3227]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Punishment Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Punishment Curse Effect"}}},stats={[1]="punishment_curse_effect_+%"}},[3228]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vulnerability Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vulnerability Curse Effect"}}},stats={[1]="vulnerability_curse_effect_+%"}},[3229]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Warlord's Mark Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Warlord's Mark Curse Effect"}}},stats={[1]="warlords_mark_curse_effect_+%"}},[3230]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Word of Ire when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Word of Ire when Hit"}}},stats={[1]="display_attack_with_word_of_ire_when_hit_%"}},[3231]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Edict of Ire when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Edict of Ire when Hit"}}},stats={[1]="display_attack_with_edict_of_ire_when_hit_%"}},[3232]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Decree of Ire when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Decree of Ire when Hit"}}},stats={[1]="display_attack_with_decree_of_ire_when_hit_%"}},[3233]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Trigger Commandment of Ire when Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Trigger Commandment of Ire when Hit"}}},stats={[1]="display_attack_with_commandment_of_ire_when_hit_%"}},[3234]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Arctic Armour Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Arctic Armour Buff Effect"}}},stats={[1]="arctic_armour_buff_effect_+%"}},[3235]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Convocation Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Convocation Buff Effect"}}},stats={[1]="convocation_buff_effect_+%"}},[3236]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Molten Shell Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Molten Shell Buff Effect"}}},stats={[1]="molten_shell_buff_effect_+%"}},[3237]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for Immortal Call to increase Duration without removing Endurance Charges"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Immortal Call increases Duration without removing Endurance Charges"}}},stats={[1]="immortal_call_%_chance_to_not_consume_endurance_charges"}},[3238]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for Phase Run to increase Duration without removing Frenzy Charges"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Phase Run increases Duration without removing Frenzy Charges"}}},stats={[1]="phase_run_%_chance_to_not_consume_frenzy_charges"}},[3239]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Galvanic Arrow Physical Damage gained as extra Lightning Damage"}}},stats={[1]="shrapnel_shot_physical_damage_%_to_add_as_lightning_damage"}},[3240]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Tempest Shield chains an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Tempest Shield chains an additional %1% times"}}},stats={[1]="tempest_shield_num_of_additional_projectiles_in_chain"}},[3241]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Arctic Armour has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Arctic Armour has %1%%% reduced Mana Reservation"}}},stats={[1]="arctic_armour_mana_reservation_+%"}},[3242]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Ash has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Ash has %1%%% reduced Mana Reservation"}}},stats={[1]="herald_of_ash_mana_reservation_+%"}},[3243]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Ice has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Ice has %1%%% reduced Mana Reservation"}}},stats={[1]="herald_of_ice_mana_reservation_+%"}},[3244]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Thunder has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Thunder has %1%%% reduced Mana Reservation"}}},stats={[1]="herald_of_thunder_mana_reservation_+%"}},[3245]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Clarity has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Clarity has %1%%% reduced Mana Reservation"}}},stats={[1]="clarity_mana_reservation_+%"}},[3246]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hatred has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hatred has %1%%% reduced Mana Reservation"}}},stats={[1]="hatred_mana_reservation_+%"}},[3247]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purity of Ice has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purity of Ice has %1%%% reduced Mana Reservation"}}},stats={[1]="purity_of_ice_mana_reservation_+%"}},[3248]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Determination has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Determination has %1%%% reduced Mana Reservation"}}},stats={[1]="determination_mana_reservation_+%"}},[3249]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Discipline has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Discipline has %1%%% reduced Mana Reservation"}}},stats={[1]="discipline_mana_reservation_+%"}},[3250]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purity of Elements has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purity of Elements has %1%%% reduced Mana Reservation"}}},stats={[1]="purity_of_elements_mana_reservation_+%"}},[3251]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purity of Fire has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purity of Fire has %1%%% reduced Mana Reservation"}}},stats={[1]="purity_of_fire_mana_reservation_+%"}},[3252]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purity of Lightning has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purity of Lightning has %1%%% reduced Mana Reservation"}}},stats={[1]="purity_of_lightning_mana_reservation_+%"}},[3253]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vitality has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vitality has %1%%% reduced Mana Reservation"}}},stats={[1]="vitality_mana_reservation_+%"}},[3254]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Wrath has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Wrath has %1%%% reduced Mana Reservation"}}},stats={[1]="wrath_mana_reservation_+%"}},[3255]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Grace has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Grace has %1%%% reduced Mana Reservation"}}},stats={[1]="grace_mana_reservation_+%"}},[3256]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Haste has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Haste has %1%%% reduced Mana Reservation"}}},stats={[1]="haste_mana_reservation_+%"}},[3257]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Despair has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Despair has %1%%% reduced Mana Reservation"}}},stats={[1]="chaos_weakness_mana_reservation_+%"}},[3258]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Conductivity has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Conductivity has %1%%% reduced Mana Reservation"}}},stats={[1]="conductivity_mana_reservation_+%"}},[3259]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flammability has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flammability has %1%%% reduced Mana Reservation"}}},stats={[1]="flammability_mana_reservation_+%"}},[3260]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Frostbite has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Frostbite has %1%%% reduced Mana Reservation"}}},stats={[1]="frostbite_mana_reservation_+%"}},[3261]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Temporal Chains has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Temporal Chains has %1%%% reduced Mana Reservation"}}},stats={[1]="temporal_chains_mana_reservation_+%"}},[3262]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vulnerability has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vulnerability has %1%%% reduced Mana Reservation"}}},stats={[1]="vulnerability_mana_reservation_+%"}},[3263]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be Stunned while at maximum Endurance Charges"}}},stats={[1]="cannot_be_stunned_while_at_max_endurance_charges"}},[3264]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second while you have a Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Degenerate %1%%% of Life per second while you have a Totem"}}},stats={[1]="life_regenerate_rate_per_second_%_while_totem_active"}},[3265]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if you've taken a Savage\nHit Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed if you've taken a Savage\nHit Recently"}}},stats={[1]="gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit"}},[3266]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage"}}},stats={[1]="berserker_damage_+%_final"}},[3267]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Take %1%%% increased Elemental Damage while on Consecrated Ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Take %1%%% reduced Elemental Damage while on Consecrated Ground"}}},stats={[1]="elemental_damage_taken_+%_while_on_consecrated_ground"}},[3268]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Enemies affected\nby Elemental Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Enemies affected\nby Elemental Ailments"}}},stats={[1]="critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments"}},[3269]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Power Charge when you Summon a Totem"}}},stats={[1]="%_chance_to_gain_power_charge_on_placing_a_totem"}},[3270]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain Elemental Conflux for %1% seconds when you Kill a Rare or Unique Enemy"}}},stats={[1]="gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy"}},[3271]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies you Curse have %1$+d%% to Chaos Resistance"}}},stats={[1]="enemies_chaos_resistance_%_while_cursed"}},[3272]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you've Killed a Cursed Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Damage if you've Killed a Cursed Enemy Recently"}}},stats={[1]="damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy"}},[3273]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and your Minions have %1%%% Physical Damage Reduction"}}},stats={[1]="physical_damage_reduction_and_minion_physical_damage_reduction_%"}},[3274]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Offerings"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced effect of Offerings"}}},stats={[1]="offering_spells_effect_+%"}},[3275]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You and nearby Allies have %1$+d%% Chance to Block Attack Damage"}}},stats={[1]="additional_block_chance_%_for_you_and_allies_affected_by_your_auras"}},[3276]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and nearby Allies have %1%%% increased Attack and Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You and nearby Allies have %1%%% reduced Attack and Cast Speed"}}},stats={[1]="attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras"}},[3277]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and nearby Allies have %1%%% increased Attack, Cast and Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You and nearby Allies have %1%%% reduced Attack, Cast and Movement Speed"}}},stats={[1]="attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras"}},[3278]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You and nearby Allies have %1$+d%% to Chaos Resistance"}}},stats={[1]="chaos_resistance_%_for_you_and_allies_affected_by_your_auras"}},[3279]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and nearby Allies deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You and nearby Allies deal %1%%% reduced Damage"}}},stats={[1]="damage_+%_for_you_and_allies_affected_by_your_auras"}},[3280]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and nearby Allies have %1$+d%% to Elemental Resistances"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You and nearby Allies have %1$+d%% to Elemental Resistances"}}},stats={[1]="elemental_resistances_+%_for_you_and_allies_affected_by_your_auras"}},[3281]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="You and Allies affected by your placed Banners Regenerate %1%%% of\n Life per second for each Stage"}}},stats={[1]="you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_stage"}},[3282]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="You and your Minions have %1%%% increased Attack and Cast Speed if\nyou've Consumed a corpse Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="You and your Minions have %1%%% reduced Attack and Cast Speed if\nyou've Consumed a corpse Recently"}}},stats={[1]="you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed"}},[3283]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Power Charge on Hit against Enemies that are on Full Life"}}},stats={[1]="%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life"}},[3284]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]="#",[2]="#"}},text="Your Critical Strikes with Attacks Maim Enemies"}}},stats={[1]="cause_maim_on_critical_strike_attack"}},[3285]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSmokeCloud"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to create a Smoke Cloud when you lay a Mine or throw a Trap"}}},stats={[1]="%_chance_to_create_smoke_cloud_on_mine_or_trap_creation"}},[3286]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage for each Trap and Mine you have"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage for each Trap and Mine you have"}}},stats={[1]="damage_+%_for_each_trap_and_mine_active"}},[3287]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Evasion Rating while on full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Evasion Rating while on full Energy Shield"}}},stats={[1]="evasion_rating_while_es_full_+%_final"}},[3288]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while not on full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while not on full Energy Shield"}}},stats={[1]="damage_+%_while_es_not_full"}},[3289]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration if you've used a Movement Skill Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration if you've used a Movement Skill Recently"}}},stats={[1]="mana_regeneration_+%_for_4_seconds_on_movement_skill_use"}},[3290]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="You have Onslaught while on full Frenzy Charges"}}},stats={[1]="gain_onslaught_while_frenzy_charges_full"}},[3291]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles gain Damage as they travel farther, dealing up\nto %1%%% increased Damage with Hits to targets"}}},stats={[1]="projectile_damage_+%_max_as_distance_travelled_increases"}},[3292]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage during any Flask Effect"}}},stats={[1]="damage_+%_during_flask_effect"}},[3293]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to avoid Freeze, Shock, Ignite and Bleeding during any Flask Effect"}}},stats={[1]="avoid_freeze_shock_ignite_bleed_%_during_flask_effect"}},[3294]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken during any Flask Effect"}}},stats={[1]="elemental_damage_taken_+%_during_flask_effect"}},[3295]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you've killed a Bleeding Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you've killed a Bleeding Enemy Recently"}}},stats={[1]="damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy"}},[3296]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and nearby Allies deal %1%%% increased Damage while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You and nearby Allies deal %1%%% reduced Damage while you have Fortify"}}},stats={[1]="damage_+%_to_you_and_nearby_allies_while_you_have_fortify"}},[3297]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken from Taunted Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken from Taunted Enemies"}}},stats={[1]="damage_taken_+%_from_taunted_enemies"}},[3298]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while Leeching"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while Leeching"}}},stats={[1]="attack_and_cast_speed_+%_while_leeching"}},[3299]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Shield Charge Damage per Enemy Hit"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Shield Charge Damage per Enemy Hit"}}},stats={[1]="shield_charge_damage_per_target_hit_+%"}},[3300]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]=99}},text="Traps and Mines have a %1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]=100}},text="Traps and Mines Poison on Hit"}}},stats={[1]="traps_and_mines_%_chance_to_poison"}},[3301]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage of each Damage Type for which you\nhave a matching Golem"}}},stats={[1]="damage_+%_of_each_type_that_you_have_an_active_golem_of"}},[3302]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Elemental Golems are Immune to Elemental Damage"}}},stats={[1]="elemental_golem_immunity_to_elemental_damage"}},[3303]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Golems are Immune to Elemental Damage"}}},stats={[1]="golem_immunity_to_elemental_damage"}},[3304]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems have %1%%% more Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems have %1%%% less Life"}}},stats={[1]="unique_primordial_tether_golem_life_+%_final"}},[3305]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Buffs granted by your Elemental Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Buffs granted by your Elemental Golems"}}},stats={[1]="elemental_golem_granted_buff_effect_+%"}},[3306]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of the Buff granted by your Stone Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of the Buff granted by your Stone Golems"}}},stats={[1]="base_stone_golem_granted_buff_effect_+%"}},[3307]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of the Buff granted by your Flame Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of the Buff granted by your Flame Golems"}}},stats={[1]="base_fire_golem_granted_buff_effect_+%"}},[3308]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of the Buff granted by your Ice Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of the Buff granted by your Ice Golems"}}},stats={[1]="base_ice_golem_granted_buff_effect_+%"}},[3309]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of the Buff granted by your Lightning Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of the Buff granted by your Lightning Golems"}}},stats={[1]="base_lightning_golem_granted_buff_effect_+%"}},[3310]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of the Buff granted by your Chaos Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of the Buff granted by your Chaos Golems"}}},stats={[1]="base_chaos_golem_granted_buff_effect_+%"}},[3311]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Elemental Resistances if you Detonated Mines Recently"}}},stats={[1]="gain_elemental_penetration_for_4_seconds_on_mine_detonation"}},[3312]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Cold Damage"}}},stats={[1]="base_cold_immunity"}},[3313]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to lightning Damage"}}},stats={[1]="base_lightning_immunity"}},[3314]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blood Rage grants additional %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blood Rage grants additional %1%%% reduced Attack Speed"}}},stats={[1]="blood_rage_grants_additional_attack_speed_+%"}},[3315]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blood Rage grants additional %1%%% chance to gain a Frenzy Charge on Kill"}}},stats={[1]="blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill"}},[3316]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]="#",[2]="#"}},text="Hindered"}}},stats={[1]="is_hindered"}},[3317]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Hindered Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Hindered Enemies"}}},stats={[1]="damage_+%_vs_hindered_enemies"}},[3318]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Blast Rain has a %1%%% chance to fire an additional Arrow"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Blast Rain fires an additional Arrow"}}},stats={[1]="blast_rain_%_chance_for_additional_blast"}},[3319]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Smoke Mine grants additional %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Smoke Mine grants additional %1%%% reduced Movement Speed"}}},stats={[1]="smoke_mine_base_movement_velocity_+%"}},[3320]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Enduring Cry Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Enduring Cry Buff Effect"}}},stats={[1]="enduring_cry_buff_effect_+%"}},[3321]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Kinetic Blast creates %1% additional explosion"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Kinetic Blast creates %1% additional explosions"}}},stats={[1]="cluster_burst_spawn_amount"}},[3322]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Tendrils Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Tendrils Critical Strike Chance"}}},stats={[1]="lightning_tendrils_critical_strike_chance_+%"}},[3323]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Righteous Fire grants %1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Righteous Fire grants %1%%% reduced Spell Damage"}}},stats={[1]="righteous_fire_spell_damage_+%"}},[3324]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rallying Cry Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rallying Cry Buff Effect"}}},stats={[1]="rallying_cry_buff_effect_+%"}},[3325]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Ancestral Protector Totem Elemental Resistances"}}},stats={[1]="melee_ancestor_totem_elemental_resistance_%"}},[3326]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Kinetic Blast has a %1%%% chance for an additional explosion"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Kinetic Blast has an additional explosion"}}},stats={[1]="kinetic_blast_%_chance_for_additional_blast"}},[3327]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You and nearby Party Members Share Power, Frenzy and Endurance Charges with each other"}}},stats={[1]="guardian_nearby_allies_share_charges"}},[3328]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Phase Run Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Phase Run Duration"}}},stats={[1]="phase_run_skill_effect_duration_+%"}},[3329]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Searing Bond Totem Elemental Resistances"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Searing Bond Totem Elemental Resistances"}}},stats={[1]="searing_totem_elemental_resistance_+%"}},[3330]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Bone Offering grants an additional %1$+d%% Chance to Block Attack Damage"}}},stats={[1]="bone_offering_block_chance_+%"}},[3331]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Desecrate Spawns an additional corpse"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Desecrate Spawns %1% additional corpses"}}},stats={[1]="desecrate_number_of_corpses_to_create"}},[3332]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flesh Offering grants an additional %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flesh Offering grants an additional %1%%% reduced Attack Speed"}}},stats={[1]="flesh_offering_attack_speed_+%"}},[3333]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ice Spear Critical Strike Chance in second form"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ice Spear Critical Strike Chance in second form"}}},stats={[1]="ice_spear_second_form_critical_strike_chance_+%"}},[3334]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Second form has %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="ice_spear_second_form_critical_strike_multiplier_+"}},[3335]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Second form has %1%%% more Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Second form has %1%%% less Projectile Speed"}}},stats={[1]="ice_spear_second_form_projectile_speed_+%_final"}},[3336]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Lightning Arrow hits an additional Enemy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Lightning Arrow hits %1% additional Enemies"}}},stats={[1]="lightning_arrow_maximum_number_of_extra_targets"}},[3337]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to create Consecrated Ground when you Shatter an Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=100,[2]="#"}},text="Create Consecrated Ground when you Shatter an Enemy"}}},stats={[1]="consecrate_ground_on_shatter_%_chance_for_3_seconds"}},[3338]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Glows while in an Area containing a Unique Fish"}}},stats={[1]="glows_in_area_with_unique_fish"}},[3339]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Attacks Chain an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Attacks Chain %1% additional times"}}},stats={[1]="attacks_num_of_additional_chains"}},[3340]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Explosive Arrow has %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Explosive Arrow has %1%%% reduced Speed"}}},stats={[1]="explosive_arrow_attack_speed_+%"}},[3341]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage per 10 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage per 10 Intelligence"}}},stats={[1]="lightning_damage_+%_per_10_intelligence"}},[3342]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]="#",[2]="#"}},text="Attacks with this Weapon Maim on hit"}}},stats={[1]="local_maim_on_hit"}},[3343]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Warcries cost no Mana"}}},stats={[1]="warcries_cost_no_mana"}},[3344]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge if you or your Totems kill an Enemy"}}},stats={[1]="gain_a_power_charge_when_you_or_your_totems_kill_%_chance"}},[3345]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Always Critically Strike Shocked Enemies"}}},stats={[1]="always_crit_shocked_enemies"}},[3346]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot deal Critical Strikes against non-Shocked Enemies"}}},stats={[1]="cannot_crit_non_shocked_enemies"}},[3347]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frostbolt Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frostbolt Damage"}}},stats={[1]="frost_bolt_damage_+%"}},[3348]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vortex Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vortex Damage"}}},stats={[1]="frost_bolt_nova_damage_+%"}},[3349]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lacerate Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lacerate Damage"}}},stats={[1]="double_slash_damage_+%"}},[3350]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blade Flurry Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blade Flurry Damage"}}},stats={[1]="charged_attack_damage_+%"}},[3351]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ancestral Warchief Totem Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ancestral Warchief Totem Damage"}}},stats={[1]="slam_ancestor_totem_damage_+%"}},[3352]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ancestral Blademaster Totem Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ancestral Blademaster Totem Damage"}}},stats={[1]="slash_ancestor_totem_damage_+%"}},[3353]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ancestral Blademaster Totem Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ancestral Blademaster Totem Area of Effect"}}},stats={[1]="slash_ancestor_totem_radius_+%"}},[3354]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Ancestral Warchief Totem Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Ancestral Warchief Totem Area of Effect"}}},stats={[1]="slam_ancestor_totem_radius_+%"}},[3355]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vortex Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vortex Area of Effect"}}},stats={[1]="frost_bolt_nova_radius_+%"}},[3356]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lacerate Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lacerate Critical Strike Chance"}}},stats={[1]="double_slash_critical_strike_chance_+%"}},[3357]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blade Flurry Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blade Flurry Area of Effect"}}},stats={[1]="charged_attack_radius_+%"}},[3358]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lacerate Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lacerate Area of Effect"}}},stats={[1]="double_slash_radius_+%"}},[3359]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Hits and Ailments for each stage"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Hits and Ailments for each stage"}}},stats={[1]="charged_attack_damage_per_stack_+%_final"}},[3360]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Frostbolt Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Frostbolt Cast Speed"}}},stats={[1]="frost_bolt_cast_speed_+%"}},[3361]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},limit={[1]={[1]=1,[2]=99}},text="Frostbolt has %1$+d%% chance to Freeze"}}},stats={[1]="frost_bolt_freeze_chance_%"}},[3362]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Vortex Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Vortex Duration"}}},stats={[1]="frost_bolt_nova_duration_+%"}},[3363]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions cannot be Blinded"}}},stats={[1]="minions_cannot_be_blinded"}},[3364]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to Blind Enemies on hit"}}},stats={[1]="minions_%_chance_to_blind_on_hit"}},[3365]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Found Magic Items drop Identified"}}},stats={[1]="magic_items_drop_identified"}},[3366]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Mana per Grand Spectrum"}}},stats={[1]="X_mana_per_stackable_unique_jewel"}},[3367]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Armour per Grand Spectrum"}}},stats={[1]="X_armour_per_stackable_unique_jewel"}},[3368]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Critical Strike Chance per Grand Spectrum"}}},stats={[1]="critical_strike_chance_+%_per_stackable_unique_jewel"}},[3369]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Elemental Damage per Grand Spectrum"}}},stats={[1]="elemental_damage_+%_per_stackable_unique_jewel"}},[3370]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances per Grand Spectrum"}}},stats={[1]="elemental_resistance_%_per_stackable_unique_jewel"}},[3371]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage for each type of Abyss Jewel affecting you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage for each type of Abyss Jewel affecting you"}}},stats={[1]="damage_+%_per_abyss_jewel_type"}},[3372]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Lightning Damage is taken from Mana before Life"}}},stats={[1]="lightning_damage_%_taken_from_mana_before_life"}},[3373]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage is taken from Mana before Life"}}},stats={[1]="physical_damage_%_taken_from_mana_before_life"}},[3374]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Recover %1%%% of Mana when you Shock an Enemy"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Lose %1%%% of Mana when you Shock an Enemy"}}},stats={[1]="recover_%_maximum_mana_when_enemy_shocked"}},[3375]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Spell Hits if you've taken Attack Damage Recently"}}},stats={[1]="spell_dodge_chance_+%_if_you_have_taken_attack_damage_recently"}},[3376]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Attack Hits if you've taken Spell Damage Recently"}}},stats={[1]="dodge_chance_+%_if_you_have_taken_spell_damage_recently"}},[3377]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Slain Maimed Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Dropped by Slain Maimed Enemies"}}},stats={[1]="quantity_of_items_dropped_by_maimed_enemies_+%"}},[3378]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain Maimed Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain Maimed Enemies"}}},stats={[1]="rarity_of_items_dropped_by_maimed_enemies_+%"}},[3379]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken if you've taken a Savage Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},[3]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken if you've taken a Savage Hit Recently"}}},stats={[1]="damage_taken_+%_if_you_have_taken_a_savage_hit_recently"}},[3380]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration on you"}}},stats={[1]="stun_duration_on_self_+%"}},[3381]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage per Endurance Charge"}}},stats={[1]="melee_damage_+%_per_endurance_charge"}},[3382]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems gain %1$+d%% to all Elemental Resistances per Summoned Totem"}}},stats={[1]="totems_resist_all_elements_+%_per_active_totem"}},[3383]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second if you've taken a Savage Hit in the past 1 second"}}},stats={[1]="gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit"}},[3384]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be Shocked while at maximum Endurance Charges"}}},stats={[1]="cannot_be_shocked_while_at_maximum_endurance_charges"}},[3385]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Movement Speed if you've used a Warcry Recently"}}},stats={[1]="movement_speed_+%_if_used_a_warcry_recently"}},[3386]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life against Poisoned Enemies"}}},stats={[1]="life_leech_from_attack_damage_permyriad_vs_poisoned_enemies"}},[3387]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Mana against Poisoned Enemies"}}},stats={[1]="mana_leech_from_attack_damage_permyriad_vs_poisoned_enemies"}},[3388]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Totems have %1%%% increased Cast Speed per Summoned Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Totems have %1%%% reduced Cast Speed per Summoned Totem"}}},stats={[1]="totems_spells_cast_speed_+%_per_active_totem"}},[3389]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Skill Mana Cost"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Skill Mana Cost"}}},stats={[1]="movement_skills_mana_cost_+%"}},[3390]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Critical Strike Chance when in Main Hand"}}},stats={[1]="critical_strike_chance_+%_when_in_main_hand"}},[3391]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage when in Off Hand"}}},stats={[1]="additional_block_chance_%_when_in_off_hand"}},[3392]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spirit Offering grants %1$+d%% of Physical Damage as Extra Chaos Damage"}}},stats={[1]="spirit_offering_physical_damage_%_to_add_as_chaos"}},[3393]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage taken if you have not been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage taken if you have not been Hit Recently"}}},stats={[1]="damage_taken_+%_if_not_hit_recently_final"}},[3394]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating if you have been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion Rating if you have been Hit Recently"}}},stats={[1]="evasion_+%_if_hit_recently"}},[3395]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage from Taunted Enemies"}}},stats={[1]="block_chance_%_vs_taunted_enemies"}},[3396]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% to Cold Resistance"}}},stats={[1]="minion_cold_damage_resistance_%"}},[3397]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions gain %1%%% of Physical Damage as Extra Cold Damage"}}},stats={[1]="minion_physical_damage_%_to_add_as_cold"}},[3398]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour and Evasion Rating if you've killed a Taunted Enemy Recently"}}},stats={[1]="armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently"}},[3399]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gains no Charges during Effect of any Overflowing Chalice Flask"}}},stats={[1]="local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect"}},[3400]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits for each Level higher the Enemy is than you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits for each Level higher the Enemy is than you"}}},stats={[1]="damage_+%_for_each_level_the_enemy_is_higher_than_you"}},[3401]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Charges gained by Other Flasks during Flask Effect"}}},stats={[1]="local_unique_flask_charges_gained_+%_during_flask_effect"}},[3402]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Totems have %1%%% increased Attack Speed per Summoned Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Totems have %1%%% reduced Attack Speed per Summoned Totem"}}},stats={[1]="totems_attack_speed_+%_per_active_totem"}},[3403]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Attacks Chain an additional time when in Main Hand"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Attacks Chain %1% additional times when in Main Hand"}}},stats={[1]="attacks_num_of_additional_chains_when_in_main_hand"}},[3404]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Attacks fire an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Attacks fire %1% additional Projectiles"}}},stats={[1]="attacks_number_of_additional_projectiles"}},[3405]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Attacks fire an additional Projectile when in Off Hand"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Attacks fire %1% additional Projectiles when in Off Hand"}}},stats={[1]="attacks_number_of_additional_projectiles_when_in_off_hand"}},[3406]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Counterattacks"}}},stats={[1]="counter_attacks_minimum_added_physical_damage",[2]="counter_attacks_maximum_added_physical_damage"}},[3407]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Golem Damage for each Type of Golem you have Summoned"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Golem Damage for each Type of Golem you have Summoned"}}},stats={[1]="golem_damage_+%_per_active_golem_type"}},[3408]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Golem Damage per Summoned Golem"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Golem Damage per Summoned Golem"}}},stats={[1]="golem_damage_+%_per_active_golem"}},[3409]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Life if no Equipped Items are Corrupted"}}},stats={[1]="life_+%_with_no_corrupted_equipped_items"}},[3410]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},[3]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second if no Equipped Items are Corrupted"}}},stats={[1]="life_regeneration_per_minute_with_no_corrupted_equipped_items"}},[3411]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Energy Shield per second if all Equipped items are Corrupted"}}},stats={[1]="energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items"}},[3412]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Enemies take %1% Chaos Damage per second"}}},stats={[1]="local_display_nearby_enemies_take_X_chaos_damage_per_minute"}},[3413]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCounterAttack"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Counterattacks"}}},stats={[1]="counter_attacks_minimum_added_cold_damage",[2]="counter_attacks_maximum_added_cold_damage"}},[3414]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you have Pierced Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you have Pierced Recently"}}},stats={[1]="movement_speed_+%_if_pierced_recently"}},[3415]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Poison Cursed Enemies on hit"}}},stats={[1]="poison_cursed_enemies_on_hit"}},[3416]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Poison on Hit against Cursed Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Always Poison on Hit against Cursed Enemies"}}},stats={[1]="chance_to_poison_%_vs_cursed_enemies"}},[3417]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found with a Normal Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items found with a Normal Item Equipped"}}},stats={[1]="item_found_rarity_+%_if_wearing_a_normal_item"}},[3418]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items found with a Magic Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items found with a Magic Item Equipped"}}},stats={[1]="item_found_quantity_+%_if_wearing_a_magic_item"}},[3419]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Gain Onslaught for %1% seconds when you Kill a Rare or Unique Enemy"}}},stats={[1]="gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster"}},[3420]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Kill Enemies that have 20%% or lower Life when Hit by your Skills"}}},stats={[1]="kill_enemy_on_hit_if_under_20%_life"}},[3421]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You are Immune to Bleeding"}}},stats={[1]="immune_to_bleeding"}},[3422]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Bleeding cannot be inflicted on you"}}},stats={[1]="base_cannot_gain_bleeding"}},[3423]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to avoid Bleeding"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Bleeding cannot be inflicted on you"}}},stats={[1]="base_avoid_bleed_%"}},[3424]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You are Immune to Bleeding while Leeching"}}},stats={[1]="immune_to_bleeding_while_leeching"}},[3425]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage if you've Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage if you've Killed Recently"}}},stats={[1]="damage_+%_if_enemy_killed_recently_final"}},[3426]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect if you've Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect if you've Killed Recently"}}},stats={[1]="skill_area_of_effect_+%_if_enemy_killed_recently"}},[3427]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="1 additional maximum Blade Flurry stages"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% additional maximum Blade Flurry stages"}}},stats={[1]="max_charged_attack_stacks"}},[3428]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skill Effect Duration if you've Killed a Maimed Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skill Effect Duration if you've Killed a Maimed Enemy Recently"}}},stats={[1]="skill_effect_duration_+%_if_killed_maimed_enemy_recently"}},[3429]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken if you've Taunted an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken if you've Taunted an Enemy Recently"}}},stats={[1]="damage_taken_+%_if_taunted_an_enemy_recently"}},[3430]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second if you've Taunted an Enemy Recently"}}},stats={[1]="life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently"}},[3431]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Immune to Elemental Ailments during any Flask Effect"}}},stats={[1]="immune_to_elemental_status_ailments_during_flask_effect"}},[3432]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage during any Flask Effect"}}},stats={[1]="elemental_damage_+%_during_flask_effect"}},[3433]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Freeze, Shock and Ignite during any Flask Effect"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Always Freeze, Shock and Ignite during any Flask Effect"}}},stats={[1]="chance_to_freeze_shock_ignite_%_during_flask_effect"}},[3434]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Mana and Energy Shield per second while on Consecrated Ground"}}},stats={[1]="es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground"}},[3435]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while on Consecrated Ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while on Consecrated Ground"}}},stats={[1]="attack_and_cast_speed_+%_while_on_consecrated_ground"}},[3436]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mine Arming Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mine Arming Speed"}}},stats={[1]="mine_arming_speed_+%"}},[3437]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Flasks you use to not consume Charges"}}},stats={[1]="flasks_%_chance_to_not_consume_charges"}},[3438]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage if you've Blocked Damage from a Unique Enemy in the past 10 seconds"}}},stats={[1]="physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit"}},[3439]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Consecrated Ground you create grants %1%%% increased Damage to you and Allies"}}},stats={[1]="your_consecrated_ground_grants_damage_+%"}},[3440]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you haven't Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you haven't Killed Recently"}}},stats={[1]="attack_speed_+%_if_enemy_not_killed_recently"}},[3441]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Physical Damage while at maximum Frenzy Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Physical Damage while at maximum Frenzy Charges"}}},stats={[1]="physical_damage_+%_while_at_maximum_frenzy_charges_final"}},[3442]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage taken while at maximum Endurance Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage taken while at maximum Endurance Charges"}}},stats={[1]="physical_damage_taken_+%_while_at_maximum_endurance_charges"}},[3443]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage dealt by your Mines is Leeched to you as Life"}}},stats={[1]="mine_damage_leeched_as_life_to_you_permyriad"}},[3444]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage dealt by your Totems is Leeched to you as Life"}}},stats={[1]="totem_damage_leeched_as_life_to_you_permyriad"}},[3445]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed per 200 Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed per 200 Accuracy Rating"}}},stats={[1]="attack_speed_+%_per_200_accuracy_rating"}},[3446]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance that if you would gain Endurance Charges, you instead gain up to your maximum number of Endurance Charges"}}},stats={[1]="gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance"}},[3447]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Every 10 seconds, gain %1%%% increased Area of Effect for 4 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Every 10 seconds, gain %1%%% reduced Area of Effect for 4 seconds"}}},stats={[1]="elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds"}},[3448]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage gained as Extra Chaos Damage against\nBleeding Enemies"}}},stats={[1]="physical_damage_%_to_add_as_chaos_vs_bleeding_enemies"}},[3449]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]="#",[2]=99},[2]={[1]=0,[2]=0}},text="%1%%% chance to gain Phasing for 3 seconds when your Trap is triggered by an Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]=100,[2]="#"},[2]={[1]=0,[2]=0}},text="Gain Phasing for 3 seconds when your Trap is triggered by an Enemy"},[3]={[1]={k="milliseconds_to_seconds",v=2},[2]={k="reminderstring",v="ReminderTextPhasing"},[3]={k="canonical_line",v="canonical"},[4]={k="_stat",v=1},limit={[1]={[1]="#",[2]=99},[2]={[1]=1,[2]="#"}},text="%1%%% chance to gain Phasing for %2% seconds when your Trap is triggered by an Enemy"},[4]={[1]={k="milliseconds_to_seconds",v=2},[2]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]=100,[2]="#"},[2]={[1]=1,[2]="#"}},text="Gain Phasing for %2% seconds when your Trap is triggered by an Enemy"}}},stats={[1]="phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy",[2]="phasing_on_trap_triggered_by_an_enemy_ms"}},[3450]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1% Life when your Trap is triggered by an Enemy"}}},stats={[1]="gain_x_life_on_trap_triggered_by_an_enemy"}},[3451]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1% Energy Shield when your Trap is triggered by an Enemy"}}},stats={[1]="gain_x_es_on_trap_triggered_by_an_enemy"}},[3452]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attack Skills have %1$+d to maximum number of Summoned Ballista Totems"}}},stats={[1]="attack_skills_additional_ballista_totems_allowed"}},[3453]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attack Skills have %1$+d to maximum number of Summoned Totems"}}},stats={[1]="attack_skills_additional_totems_allowed"}},[3454]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Poison you inflict with Critical Strikes deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Poison you inflict with Critical Strikes deals %1%%% less Damage"}}},stats={[1]="poison_from_critical_strikes_damage_+%_final"}},[3455]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Bleeding you inflict on Maimed Enemies deals %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Bleeding you inflict on Maimed Enemies deals %1%%% less Damage"}}},stats={[1]="bleed_damage_+%_vs_maimed_enemies_final"}},[3456]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Enemies you Kill that are affected by Elemental Ailments\ngrant %1%%% increased Flask Charges"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="Enemies you Kill that are affected by Elemental Ailments\ngrant %1%%% reduced Flask Charges"}}},stats={[1]="flask_charges_+%_from_enemies_with_status_ailments"}},[3457]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour and Evasion Rating while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour and Evasion Rating while you have Fortify"}}},stats={[1]="armour_and_evasion_+%_while_fortified"}},[3458]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage while you have Fortify"}}},stats={[1]="melee_damage_+%_while_fortified"}},[3459]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Desecrate Spawns an additional corpse"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Desecrate Spawns %1% additional corpses"}}},stats={[1]="desecrate_creates_X_additional_corpses"}},[3460]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you have Consumed a corpse Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you have Consumed a corpse Recently"}}},stats={[1]="damage_+%_if_you_have_consumed_a_corpse_recently"}},[3461]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed for each corpse Consumed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed for each corpse Consumed Recently"}}},stats={[1]="attack_and_cast_speed_+%_per_corpse_consumed_recently"}},[3462]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="Your Hits permanently Intimidate Enemies that are on Full Life"}}},stats={[1]="permanently_intimidate_enemies_you_hit_on_full_life"}},[3463]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTaunt"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Enemies Taunted by you deal %1%%% more Damage with Hits and\nAilments against other targets"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextTaunt"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Enemies Taunted by you deal %1%%% less Damage with Hits and\nAilments against other targets"}}},stats={[1]="taunted_enemies_damage_+%_final_vs_non_taunt_target"}},[3464]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned during Flask Effect"}}},stats={[1]="local_flask_cannot_be_stunned_during_flask_effect"}},[3465]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Loses all Charges when you enter a new area"}}},stats={[1]="local_flask_lose_all_charges_on_entering_new_area"}},[3466]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},[3]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life if you've Killed Recently"}}},stats={[1]="gain_life_leech_on_kill_permyriad"}},[3467]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Melee Attacks Poison on Hit"}}},stats={[1]="poison_on_melee_hit"}},[3468]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="Melee Attacks have %1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Melee Attacks Poison on Hit"}}},stats={[1]="chance_to_poison_on_melee_hit_%"}},[3469]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Life against Cursed Enemies"}}},stats={[1]="life_leech_permyriad_vs_cursed_enemies"}},[3470]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Movement Speed if you've Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% reduced Movement Speed if you've Killed Recently"}}},stats={[1]="movement_speed_+%_if_enemy_killed_recently"}},[3471]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Weapon Physical Damage as Extra Damage of each Element"}}},stats={[1]="weapon_physical_damage_%_to_add_as_each_element"}},[3472]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Fire Damage if you or your Totems have Killed Recently"}}},stats={[1]="physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems"}},[3473]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier while Dual Wielding"}}},stats={[1]="global_critical_strike_multiplier_while_dual_wielding_+"}},[3474]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance while Dual Wielding"}}},stats={[1]="global_critical_strike_chance_while_dual_wielding_+%"}},[3475]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour and Evasion Rating"}}},stats={[1]="base_physical_damage_reduction_and_evasion_rating"}},[3476]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% Elemental Resistances during any Flask Effect"}}},stats={[1]="elemental_penetration_%_during_flask_effect"}},[3477]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction during any Flask Effect"}}},stats={[1]="additional_physical_damage_reduction_%_during_flask_effect"}},[3478]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Damage taken"}}},stats={[1]="reflect_damage_taken_+%"}},[3479]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when you Block"}}},stats={[1]="power_charge_on_block_%_chance"}},[3480]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextChillNonHit"},limit={[1]={[1]=1000,[2]=1000}},text="Chill Nearby Enemies when you Block"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextChillNonHit"},limit={[1]={[1]=1,[2]="#"}},text="Chill Nearby Enemies when you Block"}}},stats={[1]="nearby_enemies_chilled_on_block"}},[3481]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Cold Damage per Frenzy Charge"}}},stats={[1]="minimum_added_cold_damage_per_frenzy_charge",[2]="maximum_added_cold_damage_per_frenzy_charge"}},[3482]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed during any Flask Effect"}}},stats={[1]="attack_and_cast_speed_+%_during_flask_effect"}},[3483]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage if you've Blocked Recently"}}},stats={[1]="minimum_added_fire_damage_if_blocked_recently",[2]="maximum_added_fire_damage_if_blocked_recently"}},[3484]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]="#"}},text="Stun Threshold is based on Energy Shield instead of Life"}}},stats={[1]="stun_threshold_based_on_energy_shield_instead_of_life"}},[3485]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Leech Life from Critical Strikes"}}},stats={[1]="cannot_leech_life_from_critical_strikes"}},[3486]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Blind Enemies on Critical Strike"}}},stats={[1]="%_chance_to_blind_on_critical_strike"}},[3487]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Causes Bleeding on Melee Critical Strike"}}},stats={[1]="bleed_on_melee_critical_strike"}},[3488]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Elusive on Critical Strike"},[2]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=100,[2]="#"}},text="Gain Elusive on Critical Strike"}}},stats={[1]="gain_elusive_on_crit_%_chance"}},[3489]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Elusive on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=100,[2]="#"}},text="Gain Elusive on Kill"}}},stats={[1]="gain_elusive_on_kill_chance_%"}},[3490]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains many Sentinel Traps"}}},stats={[1]="map_packs_have_pop_up_traps"}},[3491]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Take no Extra Damage from Critical Strikes"}}},stats={[1]="self_take_no_extra_damage_from_critical_strikes"}},[3492]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies you Shock have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies you Shock have %1%%% reduced Cast Speed"}}},stats={[1]="enemies_you_shock_cast_speed_+%"}},[3493]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies you Shock have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies you Shock have %1%%% reduced Movement Speed"}}},stats={[1]="enemies_you_shock_movement_speed_+%"}},[3494]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Normal Monsters in this Area Regenerate %1%%% of Life per second"}}},stats={[1]="map_normal_monster_life_regeneration_rate_per_minute_%"}},[3495]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Magic Monsters in this Area Regenerate %1%%% of Life per second"}}},stats={[1]="map_magic_monster_life_regeneration_rate_per_minute_%"}},[3496]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Rare Monsters in this Area Regenerate %1%%% of Life per second"}}},stats={[1]="map_rare_monster_life_regeneration_rate_per_minute_%"}},[3497]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Burning Damage if you've Ignited an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Burning Damage if you've Ignited an Enemy Recently"}}},stats={[1]="burning_damage_+%_if_ignited_an_enemy_recently"}},[3498]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Recover %1%%% of Life when you Ignite an Enemy"}}},stats={[1]="recover_%_maximum_life_on_enemy_ignited"}},[3499]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage against Ignited Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage against Ignited Enemies"}}},stats={[1]="melee_physical_damage_+%_vs_ignited_enemies"}},[3500]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with arrows that Fork"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with arrows that Fork"}}},stats={[1]="critical_strike_chance_+%_for_forking_arrows"}},[3501]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Arrows that Pierce cause Bleeding"}}},stats={[1]="arrows_that_pierce_cause_bleeding"}},[3502]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Arrows that Pierce have 50%% chance to inflict Bleeding"}}},stats={[1]="arrows_that_pierce_chance_to_bleed_25%"}},[3503]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Arrows Pierce all Targets after Chaining"}}},stats={[1]="arrows_always_pierce_after_chaining"}},[3504]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spells fire an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spells fire %1% additional Projectiles"}}},stats={[1]="spells_number_of_additional_projectiles"}},[3505]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Minion Damage also affect you"}}},stats={[1]="minion_damage_increases_and_reductions_also_affects_you"}},[3506]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Attack Damage per 200 Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Attack Damage per 200 Accuracy Rating"}}},stats={[1]="projectile_attack_damage_+%_per_200_accuracy"}},[3507]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Drops Burning Ground while moving, dealing %1% Fire Damage per second"}}},stats={[1]="essence_display_drop_burning_ground_while_moving_fire_damage_per_second"}},[3508]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage Taken while stationary"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage Taken while stationary"}}},stats={[1]="essence_display_elemental_damage_taken_while_not_moving_+%"}},[3509]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction while stationary"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1$+d%% Physical Damage taken while stationary"}}},stats={[1]="physical_damage_reduction_rating_%_while_not_moving"}},[3510]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Armour while stationary"}}},stats={[1]="armour_while_stationary"}},[3511]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage taken while moving"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage taken while moving"}}},stats={[1]="physical_damage_taken_+%_while_moving"}},[3512]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate while stationary"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% reduced Mana Regeneration Rate while stationary"}}},stats={[1]="mana_regeneration_rate_+%_while_stationary"}},[3513]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectile Attack Skills have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectile Attack Skills have %1%%% reduced Critical Strike Chance"}}},stats={[1]="projectile_attack_skill_critical_strike_chance_+%"}},[3514]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Projectiles from Attacks have %1%%% chance to inflict Bleeding on Hit while\nyou have a Bestial Minion"}}},stats={[1]="projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion"}},[3515]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]="#",[2]="#"}},text="Projectiles from Attacks have %1%%% chance to Maim on Hit while\nyou have a Bestial Minion"}}},stats={[1]="projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion"}},[3516]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Projectiles from Attacks have %1%%% chance to Poison on Hit while\nyou have a Bestial Minion"}}},stats={[1]="projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion"}},[3517]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1%-%2% Physical Damage to Attacks while you have a Bestial Minion"}}},stats={[1]="attack_minimum_added_physical_damage_if_you_have_beast_minion",[2]="attack_maximum_added_physical_damage_if_you_have_beast_minion"}},[3518]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1%-%2% Chaos Damage to Attacks while you have a Bestial Minion"}}},stats={[1]="attack_minimum_added_chaos_damage_if_you_have_beast_minion",[2]="attack_maximum_added_chaos_damage_if_you_have_beast_minion"}},[3519]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Attack and Movement Speed while you have a Bestial Minion"}}},stats={[1]="attack_and_movement_speed_+%_if_you_have_beast_minion"}},[3520]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage if your other Ring is a Shaper Item"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage if your other Ring is a Shaper Item"}}},stats={[1]="attack_damage_+%_if_other_ring_is_shaper_item"}},[3521]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage if your other Ring is an Elder Item"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage if your other Ring is an Elder Item"}}},stats={[1]="spell_damage_+%_if_other_ring_is_elder_item"}},[3522]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned by Spells if your other Ring is a Shaper Item"}}},stats={[1]="cannot_be_stunned_by_spells_if_other_ring_is_shaper_item"}},[3523]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned by Attacks if your other Ring is an Elder Item"}}},stats={[1]="cannot_be_stunned_by_attacks_if_other_ring_is_elder_item"}},[3524]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d to Maximum Life per Elder Item Equipped"}}},stats={[1]="maximum_life_per_equipped_elder_item"}},[3525]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments per Elder Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments per Elder Item Equipped"}}},stats={[1]="ailment_damage_+%_per_equipped_elder_item"}},[3526]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Ailments per Elder Item Equipped"}}},stats={[1]="ailment_dot_multiplier_+_per_equipped_elder_item"}},[3527]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of non-Damaging Ailments per Elder Item Equipped"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of non-Damaging Ailments per Elder Item Equipped"}}},stats={[1]="non_damaging_ailment_effect_+%_per_equipped_elder_item"}},[3528]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Total Mana Cost of Skills for each Corrupted Item Equipped"}}},stats={[1]="skill_mana_cost_+_for_each_equipped_corrupted_item"}},[3529]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped"}}},stats={[1]="elemental_damage_%_to_add_as_chaos_per_shaper_item_equipped"}},[3530]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Siphoning Charges per Elder or Shaper Item Equipped"}}},stats={[1]="maximum_siphoning_charges_per_elder_or_shaper_item_equipped"}},[3531]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Siphoning Charge when you use a Skill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Siphoning Charge when you use a Skill"}}},stats={[1]="gain_siphoning_charge_on_skill_use_%_chance"}},[3532]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks and Spells per Siphoning Charge"}}},stats={[1]="attack_and_spell_minimum_added_physical_damage_per_siphoning_charge",[2]="attack_and_spell_maximum_added_physical_damage_per_siphoning_charge"}},[3533]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge"}}},stats={[1]="non_chaos_damage_%_to_add_as_chaos_damage_per_siphoning_charge"}},[3534]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction from Hits per Siphoning Charge"}}},stats={[1]="additional_physical_damage_reduction_against_hits_%_per_siphoning_charge"}},[3535]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage Leeched as Life per Siphoning Charge"}}},stats={[1]="life_leech_from_any_damage_permyriad_per_siphoning_charge"}},[3536]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Take %1% Physical Damage per Second per Siphoning Charge if you've used a Skill Recently"}}},stats={[1]="physical_damage_taken_per_minute_per_siphoning_charge_if_have_used_a_skill_recently"}},[3537]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life when you use a Mana Flask"}}},stats={[1]="recover_%_maximum_life_on_mana_flask_use"}},[3538]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Non-instant Mana Recovery from Flasks is also Recovered as Life"}}},stats={[1]="non_instant_mana_recovery_from_flasks_also_recovers_life"}},[3539]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills for each 200 total Mana you have Spent Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills for each 200 total Mana you have Spent Recently"}}},stats={[1]="mana_cost_+%_per_200_mana_spent_recently"}},[3540]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%%"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage for each 200 total Mana you have Spent Recently"}}},stats={[1]="spell_damage_+%_per_200_mana_spent_recently"}},[3541]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot be Stunned if you have at least 10 Crab Barriers"}}},stats={[1]="cannot_be_stunned_if_you_have_10_or_more_crab_charges"}},[3542]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Cannot lose Crab Barriers if you have lost Crab Barriers Recently"}}},stats={[1]="cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently"}},[3543]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum number of Crab Barriers"}}},stats={[1]="crab_aspect_crab_barrier_max_+"}},[3544]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Damage per Crab Barrier"}}},stats={[1]="damage_+%_per_crab_charge"}},[3545]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You only lose %1% Crab Barriers when you take Physical Damage from a Hit"}}},stats={[1]="number_of_crab_charges_lost_when_hit"}},[3546]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while you have at least 5 Crab Barriers"}}},stats={[1]="additional_block_%_while_you_have_at_least_5_crab_charges"}},[3547]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while you have at least 10 Crab Barriers"}}},stats={[1]="additional_block_%_while_you_have_at_least_10_crab_charges"}},[3548]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance that if you would gain a Crab Barrier, you instead gain up to\nyour maximum number of Crab Barriers"}}},stats={[1]="chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%"}},[3549]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Maximum Void Charges"}}},stats={[1]="maximum_void_arrows"}},[3550]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain 25%% of Non-Chaos Damage with Hits as Extra Chaos Damage"}}},stats={[1]="%_chance_to_gain_25%_non_chaos_damage_to_add_as_chaos_damage"}},[3551]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain 50%% of Non-Chaos Damage with Hits as Extra Chaos Damage"}}},stats={[1]="%_chance_to_gain_50%_non_chaos_damage_to_add_as_chaos_damage"}},[3552]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain 100%% of Non-Chaos Damage with Hits as Extra Chaos Damage"}}},stats={[1]="%_chance_to_gain_100%_non_chaos_damage_to_add_as_chaos_damage"}},[3553]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance while affected by Aspect of the Cat"}}},stats={[1]="additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect"}},[3554]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Critical Strikes have %1%%% chance to Blind Enemies while you have Cat's Stealth"}}},stats={[1]="%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth"}},[3555]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances while you have at least 200 Strength"}}},stats={[1]="resist_all_elements_%_with_200_or_more_strength"}},[3556]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Attack Damage while you have at least 200 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Attack Damage while you have at least 200 Dexterity"}}},stats={[1]="projectile_attack_damage_+%_with_at_least_200_dex"}},[3557]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance while you have at least 200 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance while you have at least 200 Intelligence"}}},stats={[1]="critical_strike_chance_+%_with_at_least_200_int"}},[3558]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage from Hits with this Weapon is Converted to a random Element"}}},stats={[1]="local_physical_damage_%_to_convert_to_a_random_element"}},[3559]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},[2]={k="reminderstring",v="ReminderTextFreeze"},[3]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="Hits with this Weapon always Ignite, Freeze, and Shock"}}},stats={[1]="local_hits_always_inflict_elemental_ailments"}},[3560]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hits with this Weapon deal %1%%% increased Damage to Ignited Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hits with this Weapon deal %1%%% reduced Damage to Ignited Enemies"}}},stats={[1]="local_hit_damage_+%_vs_ignited_enemies"}},[3561]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hits with this Weapon deal %1%%% increased Damage to Frozen Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hits with this Weapon deal %1%%% reduced Damage to Frozen Enemies"}}},stats={[1]="local_hit_damage_+%_vs_frozen_enemies"}},[3562]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Hits with this Weapon deal %1%%% increased Damage to Shocked Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Hits with this Weapon deal %1%%% reduced Damage to Shocked Enemies"}}},stats={[1]="local_hit_damage_+%_vs_shocked_enemies"}},[3563]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second if you have at least 500 Maximum Energy Shield"}}},stats={[1]="life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield"}},[3564]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second if you have at least 1000 Maximum Energy Shield"}}},stats={[1]="life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield"}},[3565]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second if you have at least 1500 Maximum Energy Shield"}}},stats={[1]="life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield"}},[3566]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per 25 Rampage Kills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per 25 Rampage Kills"}}},stats={[1]="area_of_effect_+%_per_25_rampage_stacks"}},[3567]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Frenzy Charge on every 50th Rampage Kill"}}},stats={[1]="add_frenzy_charge_every_50_rampage_stacks"}},[3568]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Spell Damage Leeched as Life if Equipped Shield has at least 30%% Chance to Block"}}},stats={[1]="life_leech_from_spell_damage_permyriad_if_shield_has_30%_block_chance"}},[3569]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Energy Shield per 5 Armour on Equipped Shield"}}},stats={[1]="maximum_energy_shield_+_per_5_armour_on_shield"}},[3570]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour per 5 Evasion Rating on Equipped Shield"}}},stats={[1]="physical_damage_reduction_rating_per_5_evasion_on_shield"}},[3571]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield"}}},stats={[1]="evasion_rating_+_per_5_maximum_energy_shield_on_shield"}},[3572]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Spirit Charges per Abyss Jewel affecting you"}}},stats={[1]="maximum_spirit_charges_per_abyss_jewel_equipped"}},[3573]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Travel Skills have %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Travel Skills have %1%%% increased Cooldown Recovery Speed"}}},stats={[1]="travel_skill_cooldown_speed_+%"}},[3574]={lang={English={[1]={limit={[1]={[1]=1000,[2]=1000}},text="Gain a Spirit Charge every second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain a Spirit Charge every %1% seconds"}}},stats={[1]="gain_spirit_charge_every_x_ms"}},[3575]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Spirit Charge on Kill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Spirit Charge on Kill"}}},stats={[1]="gain_spirit_charge_on_kill_%_chance"}},[3576]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]="#"}},text="You lose all Spirit Charges when taking a Savage Hit"}}},stats={[1]="lose_spirit_charges_on_savage_hit_taken"}},[3577]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life when you lose a Spirit Charge"}}},stats={[1]="gain_%_life_when_spirit_charge_expires_or_consumed"}},[3578]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Energy Shield when you lose a Spirit Charge"}}},stats={[1]="gain_%_es_when_spirit_charge_expires_or_consumed"}},[3579]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum Divine Charges"}}},stats={[1]="maximum_divine_charges"}},[3580]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Divine Charge on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Divine Charge on Hit"}}},stats={[1]="gain_divine_charge_on_hit_%"}},[3581]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per Divine Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per Divine Charge"}}},stats={[1]="elemental_damage_+%_per_divine_charge"}},[3582]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="You gain Divinity for %1% seconds on reaching maximum Divine Charges\nLose all Divine Charges when you gain Divinity"}}},stats={[1]="gain_divinity_ms_when_reaching_maximum_divine_charges"}},[3583]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cooldown Recovery of Travel Skills per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cooldown Recovery of Travel Skills per Frenzy Charge"}}},stats={[1]="travel_skills_cooldown_speed_+%_per_frenzy_charge"}},[3584]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Elusive on you per Power Charge"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Elusive on you per Power Charge"}}},stats={[1]="elusive_effect_on_self_+%_per_power_charge"}},[3585]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to lose a Frenzy Charge when you use a Travel Skill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Lose a Frenzy Charge when you use a Travel Skill"}}},stats={[1]="lose_a_frenzy_charge_on_travel_skill_use_%_chance"}},[3586]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to lose a Power Charge when you gain Elusive"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Lose a Power Charge when you gain Elusive"}}},stats={[1]="lose_a_power_charge_when_you_gain_elusive_%_chance"}},[3587]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d Armour if you've Blocked Recently"}}},stats={[1]="X_armour_if_you_have_blocked_recently"}},[3588]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Armour per Summoned Totem"}}},stats={[1]="X_armour_per_active_totem"}},[3589]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAddedPassivesNoOtherJewels"},[2]={k="reminderstring",v="ReminderTextAddedPassivesSmallDefault"},limit={[1]={[1]=1,[2]=1}},text="Adds 1 Passive Skill"},[2]={[1]={k="reminderstring",v="ReminderTextAddedPassivesNoOtherJewels"},[2]={k="reminderstring",v="ReminderTextAddedPassivesSmallDefault"},limit={[1]={[1]="#",[2]="#"}},text="Adds %1% Passive Skills"}}},stats={[1]="local_jewel_expansion_passive_node_count"}},[3590]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="50%% more Global Accuracy Rating"}}},stats={[1]="accuracy_rating_is_doubled"}},[3591]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating if you haven't Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating if you haven't Killed Recently"}}},stats={[1]="accuracy_rating_+%_if_enemy_not_killed_recently"}},[3592]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds"}}},stats={[1]="accuracy_rating_+%_if_have_crit_in_past_8_seconds"}},[3593]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy against Bleeding Enemies"}}},stats={[1]="accuracy_rating_vs_bleeding_enemies"}},[3594]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Accuracy Rating while at Maximum Frenzy Charges"}}},stats={[1]="accuracy_rating_while_at_maximum_frenzy_charges"}},[3595]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge on Kill while Dual Wielding"}}},stats={[1]="add_frenzy_charge_on_kill_%_chance_while_dual_wielding"}},[3596]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when Hit"}}},stats={[1]="add_frenzy_charge_when_hit_%"}},[3597]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage if you've Used or Triggered a Shield Skill Recently"}}},stats={[1]="additional_attack_block_%_if_used_shield_skill_recently"}},[3598]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage per Endurance Charge"}}},stats={[1]="additional_attack_block_%_per_endurance_charge"}},[3599]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage per Frenzy Charge"}}},stats={[1]="additional_attack_block_%_per_frenzy_charge"}},[3600]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage per Power Charge"}}},stats={[1]="additional_attack_block_%_per_power_charge"}},[3601]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage per Summoned Skeleton"}}},stats={[1]="additional_attack_block_%_per_summoned_skeleton"}},[3602]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="additional_block_%_if_you_have_crit_recently"}},[3603]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage per Endurance Charge"}}},stats={[1]="additional_block_%_per_endurance_charge"}},[3604]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage for each time you've Blocked in the past 10 seconds"}}},stats={[1]="additional_block_%_per_hit_you_have_blocked_in_past_10_seconds"}},[3605]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while not Cursed"}}},stats={[1]="additional_block_%_while_not_cursed"}},[3606]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while on Consecrated Ground"}}},stats={[1]="additional_block_%_while_on_consecrated_ground"}},[3607]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage if there are at least 5 nearby Enemies"}}},stats={[1]="additional_block_%_with_5_or_more_nearby_enemies"}},[3608]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance per 10 Maximum Energy Shield on Shield"}}},stats={[1]="additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad"}},[3609]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Critical Strike Chance per Power Charge"}}},stats={[1]="additional_critical_strike_chance_per_power_charge_permyriad"}},[3610]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance per Poison affecting Enemy, up to +2.0%%"}}},stats={[1]="additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%"}},[3611]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance while affected by Hatred"}}},stats={[1]="additional_critical_strike_chance_permyriad_while_affected_by_hatred"}},[3612]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance of Herald Skills"}}},stats={[1]="additional_critical_strike_chance_permyriad_with_herald_skills"}},[3613]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Dominating Blow can summon an additional Magic Sentinel of Dominance"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Dominating Blow can summon %1% additional Magic Sentinels of Dominance"}}},stats={[1]="additional_max_number_of_dominated_magic_monsters"}},[3614]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Dominating Blow can summon an additional Rare Sentinel of Dominance"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Dominating Blow can summon %1% additional Rare Sentinels of Dominance"}}},stats={[1]="additional_max_number_of_dominated_rare_monsters"}},[3615]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all maximum Resistances while Poisoned"}}},stats={[1]="additional_maximum_all_resistances_%_while_poisoned"}},[3616]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all maximum Resistances if you have at least 150 Devotion"}}},stats={[1]="additional_maximum_all_resistances_%_at_devotion_threshold"}},[3617]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all maximum Resistances while you have no Endurance Charges"}}},stats={[1]="additional_maximum_all_resistances_%_with_no_endurance_charges"}},[3618]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to Evade Attack Hits if you've\ntaken a Savage Hit Recently"}}},stats={[1]="additional_%_chance_to_evade_attacks_if_you_have_taken_a_savage_hit_recently"}},[3619]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction if you've Warcried in the past 8 seconds"}}},stats={[1]="additional_physical_damage_reduction_if_warcried_in_past_8_seconds"}},[3620]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction while Focussed"}}},stats={[1]="additional_physical_damage_reduction_%_during_focus"}},[3621]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction during Effect of any Life or Mana Flask"}}},stats={[1]="additional_physical_damage_reduction_%_during_life_or_mana_flask_effect"}},[3622]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently"}}},stats={[1]="additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently"}},[3623]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction per Keystone"}}},stats={[1]="additional_physical_damage_reduction_%_per_keystone"}},[3624]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction per Minion, up to 10%%"}}},stats={[1]="additional_physical_damage_reduction_%_per_minion_up_to_10%"}},[3625]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction per Summoned Sentinel of Purity"}}},stats={[1]="additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity"}},[3626]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction against Abyssal Monsters"}}},stats={[1]="additional_physical_damage_reduction_%_vs_abyssal_monsters"}},[3627]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction while affected by Determination"}}},stats={[1]="additional_physical_damage_reduction_%_while_affected_by_determination"}},[3628]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction while affected by a Guard Skill Buff"}}},stats={[1]="additional_physical_damage_reduction_%_while_affected_by_guard_skill"}},[3629]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction while Bleeding"}}},stats={[1]="additional_physical_damage_reduction_%_while_bleeding"}},[3630]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction while Channelling"}}},stats={[1]="additional_physical_damage_reduction_%_while_channelling"}},[3631]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction while Frozen"}}},stats={[1]="additional_physical_damage_reduction_%_while_frozen"}},[3632]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction while moving"}}},stats={[1]="additional_physical_damage_reduction_%_while_moving"}},[3633]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage per Power Charge"}}},stats={[1]="additional_spell_block_%_per_power_charge"}},[3634]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while Cursed"}}},stats={[1]="additional_spell_block_%_while_cursed"}},[3635]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed"}}},stats={[1]="additive_cast_speed_modifiers_apply_to_trap_throwing_speed"}},[3636]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPsudoKeystoneTransfigurationOfSoul"},limit={[1]={[1]="#",[2]="#"}},text="Transfiguration of Soul"}}},stats={[1]="additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value"}},[3637]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPsudoKeystoneTransfigurationOfBody"},limit={[1]={[1]="#",[2]="#"}},text="Transfiguration of Body"}}},stats={[1]="additive_life_modifiers_apply_to_attack_damage_at_30%_value"}},[3638]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPsudoKeystoneTransfigurationOfMind"},limit={[1]={[1]="#",[2]="#"}},text="Transfiguration of Mind"}}},stats={[1]="additive_mana_modifiers_apply_to_damage_at_30%_value"}},[3639]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Agony Crawler deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Agony Crawler deals %1%%% reduced Damage"}}},stats={[1]="agony_crawler_damage_+%"}},[3640]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can have an Offering of each type"}}},stats={[1]="allow_multiple_offerings"}},[3641]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="You always Ignite while Burning"}}},stats={[1]="always_ignite_while_burning"}},[3642]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Pierce all Targets"}}},stats={[1]="always_pierce"}},[3643]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Buffs granted by your Active Ancestor Totems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Buffs granted by your Active Ancestor Totems"}}},stats={[1]="ancestor_totem_buff_effect_+%"}},[3644]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ancestor Totems have %1%%% increased Activation range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ancestor Totems have %1%%% reduced Activation range"}}},stats={[1]="ancestor_totem_parent_activation_range_+%"}},[3645]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Anger Reserves no Mana"}}},stats={[1]="anger_reserves_no_mana"}},[3646]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Animated Guardian deals %1%%% increased Damage per Animated Weapon"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Animated Guardian deals %1%%% reduced Damage per Animated Weapon"}}},stats={[1]="animate_guardian_damage_+%_per_animated_weapon"}},[3647]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"}}},stats={[1]="animated_minions_melee_splash"}},[3648]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="While stationary, gain %1%%% increased Area of Effect every second, up to a maximum of 50%%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="While stationary, gain %1%%% reduced Area of Effect every second, up to a maximum of 50%%"}}},stats={[1]="aoe_+%_per_second_while_stationary_up_to_50"}},[3649]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCoveredInAshNoDuration"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit"}}},stats={[1]="apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy"}},[3650]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCoveredInAsh"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to cover Enemies in Ash when they Hit you"},[2]={[1]={k="reminderstring",v="ReminderTextCoveredInAsh"},limit={[1]={[1]=100,[2]="#"}},text="Cover Enemies in Ash when they Hit you"}}},stats={[1]="apply_covered_in_ash_to_attacker_when_hit_%"}},[3651]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Arc deals %1%%% increased Damage for each time it has Chained"}}},stats={[1]="arc_damage_+%_per_chain"}},[3652]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Arcane Cloak Spends an additional %1%%% of current Mana"}}},stats={[1]="arcane_cloak_consume_%_of_mana"}},[3653]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Arcane Cloak grants Life Regeneration equal to %1%%% of Mana Spent per Second"}}},stats={[1]="arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"}},[3654]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Chill Enemy for %1$d second when Hit, reducing their Action Speed by 30%%"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1001,[2]="#"}},text="Chill Enemy for %1$d seconds when Hit, reducing their Action Speed by 30%%"}}},stats={[1]="arctic_armour_chill_when_hit_duration"}},[3655]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Arctic Breath's Chilling Area has %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Arctic Breath's Chilling Area has %1%%% reduced Movement Speed"}}},stats={[1]="arctic_breath_chilling_area_movement_velocity_+%"}},[3656]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area Damage per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area Damage per 10 Devotion"}}},stats={[1]="area_damage_+%_per_10_devotion"}},[3657]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area Damage per 12 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area Damage per 12 Strength"}}},stats={[1]="area_damage_+%_per_12_strength"}},[3658]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="If you've Consumed a corpse Recently, you and your Minions have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="If you've Consumed a corpse Recently, you and your Minions have %1%%% reduced Area of Effect"}}},stats={[1]="area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently"}},[3659]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect if you've Stunned an Enemy with a Two Handed Melee Weapon Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect if you've Stunned an Enemy with a Two Handed Melee Weapon Recently"}}},stats={[1]="area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently"}},[3660]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect if you have Stunned an Enemy Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect if you have Stunned an Enemy Recently"}}},stats={[1]="area_of_effect_+%_if_have_stunned_an_enemy_recently"}},[3661]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect if you've Killed at least 5 Enemies Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect if you've Killed at least 5 Enemies Recently"}}},stats={[1]="area_of_effect_+%_if_killed_at_least_5_enemies_recently"}},[3662]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect if you have Blocked Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect if you have Blocked Recently"}}},stats={[1]="area_of_effect_+%_if_you_have_blocked_recently"}},[3663]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per 50 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per 50 Strength"}}},stats={[1]="area_of_effect_+%_per_50_strength"}},[3664]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect for each Summoned Sentinel of Purity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect for each Summoned Sentinel of Purity"}}},stats={[1]="area_of_effect_+%_per_active_herald_of_light_minion"}},[3665]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per Endurance Charge"}}},stats={[1]="area_of_effect_+%_per_endurance_charge"}},[3666]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per Enemy killed recently, up to 50%%"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per Enemy killed recently"}}},stats={[1]="area_of_effect_+%_per_enemy_killed_recently"}},[3667]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while Fortified"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while Fortified"}}},stats={[1]="area_of_effect_+%_while_fortified"}},[3668]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while you have a Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while you have a Totem"}}},stats={[1]="area_of_effect_+%_while_totem_active"}},[3669]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while wielding a Bow"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while wielding a Bow"}}},stats={[1]="area_of_effect_+%_while_wielding_bow"}},[3670]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while wielding a Staff"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while wielding a Staff"}}},stats={[1]="area_of_effect_+%_while_wielding_staff"}},[3671]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while you have Arcane Surge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while you have Arcane Surge"}}},stats={[1]="area_of_effect_+%_while_you_have_arcane_surge"}},[3672]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect if you have at least 500 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect if you have at least 500 Strength"}}},stats={[1]="area_of_effect_+%_with_500_or_more_strength"}},[3673]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Bow Skills have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Bow Skills have %1%%% reduced Area of Effect"}}},stats={[1]="area_of_effect_+%_with_bow_skills"}},[3674]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald Skills have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald Skills have %1%%% reduced Area of Effect"}}},stats={[1]="area_of_effect_+%_with_herald_skills"}},[3675]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Accuracy with Area Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Accuracy with Area Skills"}}},stats={[1]="area_skill_accuracy_rating_+%"}},[3676]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKnockback"},limit={[1]={[1]=1,[2]="#"}},text="Area Skills have %1%%% chance to Knock Enemies Back on Hit"}}},stats={[1]="area_skill_knockback_chance_%"}},[3677]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Armageddon Brand Damage Penetrates %1%%% of Branded Enemy's Fire Resistance"}}},stats={[1]="armageddon_brand_attached_target_fire_penetration_%"}},[3678]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Armageddon Brand deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Armageddon Brand deals %1%%% reduced Damage"}}},stats={[1]="armageddon_brand_damage_+%"}},[3679]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Armageddon Brand has %1%%% increased Activation Frequency"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Armageddon Brand has %1%%% reduced Activation Frequency"}}},stats={[1]="armageddon_brand_repeat_frequency_+%"}},[3680]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour and Evasion Rating while you have Fortify"}}},stats={[1]="armour_and_evasion_rating_+_while_fortified"}},[3681]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUncappedResist"},limit={[1]={[1]="#",[2]="#"}},text="Armour is increased by Uncapped Fire Resistance"}}},stats={[1]="armour_increased_by_uncapped_fire_resistance"}},[3682]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour while affected by Determination"}}},stats={[1]="armour_+_while_affected_by_determination"}},[3683]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour while affected by a Guard Skill Buff"}}},stats={[1]="armour_+_while_affected_by_guard_skill"}},[3684]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour if you haven't Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour if you haven't Killed Recently"}}},stats={[1]="armour_+%_if_enemy_not_killed_recently"}},[3685]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Armour while Bleeding"}}},stats={[1]="armour_+%_while_bleeding"}},[3686]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Armour while you have no Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Armour while you have no Energy Shield"}}},stats={[1]="armour_+%_while_no_energy_shield"}},[3687]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Armour while stationary"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Armour while stationary"}}},stats={[1]="armour_+%_while_stationary"}},[3688]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Arrows gain Critical Strike Chance as they travel farther, up to %1%%% increased Critical Strike Chance"}}},stats={[1]="arrow_critical_strike_chance_+%_max_as_distance_travelled_increases"}},[3689]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Arrows deal %1%%% increased Damage with Hits and Ailments to Targets they Pierce"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Arrows deal %1%%% reduced Damage with Hits and Ailments to Targets they Pierce"}}},stats={[1]="arrow_damage_+%_vs_pierced_targets"}},[3690]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]="#"}},text="Arrows deal 50%% increased Damage with Hits and Ailments to Targets they Pierce"}}},stats={[1]="arrow_damage_+50%_vs_pierced_targets"}},[3691]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Arrows gain Damage as they travel farther, dealing up to %1%%% increased Damage with Hits to targets"}}},stats={[1]="arrow_damage_+%_max_as_distance_travelled_increases"}},[3692]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Arrows Pierce all Targets after Forking"}}},stats={[1]="arrows_always_pierce_after_forking"}},[3693]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Arrows Pierce 1 additional Target"}}},stats={[1]="arrows_pierce_additional_target"}},[3694]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Arrows which Pierce also Return"}}},stats={[1]="arrows_that_pierce_also_return"}},[3695]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Artillery Ballista Projectiles fall in two perpendicular lines instead"}}},stats={[1]="artillery_ballista_cross_strafe_pattern"}},[3696]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Artillery Ballista Damage Penetrates %1%%% Fire Resistance"}}},stats={[1]="artillery_ballista_fire_pen_+%"}},[3697]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Artillery Ballista fires an additional Arrow"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Artillery Ballista fires %1% additional Arrows"}}},stats={[1]="artillery_ballista_num_additional_arrows"}},[3698]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Chaos Damage with Attack Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Chaos Damage with Attack Skills"}}},stats={[1]="ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final"}},[3699]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Aspect of the Avian Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Aspect of the Avian Buff Effect"}}},stats={[1]="aspect_of_the_avian_buff_effect_+%"}},[3700]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"}}},stats={[1]="aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies"}},[3701]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Aspect of the Spider can inflict Spider's Web on Enemies an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Aspect of the Spider can inflict Spider's Web on Enemies %1% additional times"}}},stats={[1]="aspect_of_the_spider_web_count_+"}},[3702]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Attacks have %1$+d%% to Critical Strike Chance"}}},stats={[1]="attack_additional_critical_strike_chance_permyriad"}},[3703]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills"}}},stats={[1]="attack_ailment_damage_+%"}},[3704]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Attack Skills deal %1%%% increased Damage with Ailments while Dual Wielding"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Attack Skills deal %1%%% reduced Damage with Ailments while Dual Wielding"}}},stats={[1]="attack_ailment_damage_+%_while_dual_wielding"}},[3705]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding an Axe"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding an Axe"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_axe"}},[3706]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Bow"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Bow"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_bow"}},[3707]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Claw"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Claw"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_claw"}},[3708]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},[2]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Dagger"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},[3]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Dagger"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_dagger"}},[3709]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Mace or Sceptre"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_mace"}},[3710]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Melee Weapon"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Melee Weapon"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_melee_weapon"}},[3711]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a One Handed Weapon"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a One Handed Weapon"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_one_handed_weapon"}},[3712]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Staff"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Staff"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_staff"}},[3713]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Sword"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Sword"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_sword"}},[3714]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Two Handed Weapon"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_two_handed_weapon"}},[3715]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments from Attack Skills while wielding a Wand"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments from Attack Skills while wielding a Wand"}}},stats={[1]="attack_ailment_damage_+%_while_wielding_wand"}},[3716]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed during Effect of any Mana Flask"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed during Effect of any Mana Flask"}}},stats={[1]="attack_and_cast_speed_+%_while_affected_by_a_mana_flask"}},[3717]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while Elusive"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while Elusive"}}},stats={[1]="attack_and_cast_speed_+%_while_affected_by_elusive"}},[3718]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed per Ghost Shroud"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed per Ghost Shroud"}}},stats={[1]="attack_and_cast_speed_per_ghost_dance_stack_+%"}},[3719]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% increased Attack and Cast Speed for 3 seconds when you Attack, up to once every 9 seconds"}}},stats={[1]="attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds"}},[3720]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if you've Hit an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed if you've Hit an Enemy Recently"}}},stats={[1]="attack_and_cast_speed_+%_if_enemy_hit_recently"}},[3721]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed per Endurance Charge"}}},stats={[1]="attack_and_cast_speed_+%_per_endurance_charge"}},[3722]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed per Power Charge"}}},stats={[1]="attack_and_cast_speed_+%_per_power_charge"}},[3723]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed per Summoned Raging Spirit"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed per Summoned Raging Spirit"}}},stats={[1]="attack_and_cast_speed_+%_per_summoned_raging_spirit"}},[3724]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while affected by a Herald"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while affected by a Herald"}}},stats={[1]="attack_and_cast_speed_+%_while_affected_by_a_herald"}},[3725]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while Channelling"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while Channelling"}}},stats={[1]="attack_and_cast_speed_+%_while_channelling"}},[3726]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while Focussed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while Focussed"}}},stats={[1]="attack_and_cast_speed_+%_while_focused"}},[3727]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed while Leeching Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed while Leeching Energy Shield"}}},stats={[1]="attack_and_cast_speed_+%_while_leeching_energy_shield"}},[3728]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Channelling Skills have %1%%% increased Attack and Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Channelling Skills have %1%%% reduced Attack and Cast Speed"}}},stats={[1]="attack_and_cast_speed_+%_with_channelling_skills"}},[3729]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed with Chaos Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed with Chaos Skills"}}},stats={[1]="attack_and_cast_speed_+%_with_chaos_skills"}},[3730]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed with Cold Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed with Cold Skills"}}},stats={[1]="attack_and_cast_speed_+%_with_cold_skills"}},[3731]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed with Elemental Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed with Elemental Skills"}}},stats={[1]="attack_and_cast_speed_+%_with_elemental_skills"}},[3732]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed with Fire Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed with Fire Skills"}}},stats={[1]="attack_and_cast_speed_+%_with_fire_skills"}},[3733]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed with Lightning Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed with Lightning Skills"}}},stats={[1]="attack_and_cast_speed_+%_with_lightning_skills"}},[3734]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed with Physical Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed with Physical Skills"}}},stats={[1]="attack_and_cast_speed_+%_with_physical_skills"}},[3735]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed with Shield Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed with Shield Skills"}}},stats={[1]="attack_and_cast_speed_+%_with_shield_skills"}},[3736]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Attack and Movement Speed per Challenger Charge"}}},stats={[1]="attack_and_movement_speed_+%_final_per_challenger_charge"}},[3737]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect for Attacks"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect for Attacks"}}},stats={[1]="attack_area_of_effect_+%"}},[3738]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage if you have Blocked Spell Damage Recently"}}},stats={[1]="attack_block_%_if_blocked_a_spell_recently"}},[3739]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while at Maximum Endurance Charges"}}},stats={[1]="attack_block_%_while_at_max_endurance_charges"}},[3740]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSavageHit"},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack, Cast and Movement Speed if you've taken a Savage Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextSavageHit"},[3]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack, Cast and Movement Speed if you've taken a Savage Hit Recently"}}},stats={[1]="attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently"}},[3741]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Attacks"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Attacks"}}},stats={[1]="attack_critical_strike_chance_+%"}},[3742]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Critical Strike Chance per 200 Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Critical Strike Chance per 200 Accuracy Rating"}}},stats={[1]="attack_critical_strike_chance_+%_per_200_accuracy_rating"}},[3743]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage per 500 Maximum Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage per 500 Maximum Mana"}}},stats={[1]="attack_damage_+%_per_500_maximum_mana"}},[3744]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Attack Damage for each Map Item Modifier affecting the Area"}}},stats={[1]="attack_damage_+%_per_explicit_map_mod_affecting_area"}},[3745]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1%% increased Attack Damage per 300 of the lowest of Armour and Evasion Rating"}}},stats={[1]="attack_damage_+1%_per_300_of_min_of_armour_or_evasion"}},[3746]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage per 75 Armour or Evasion Rating on Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage per 75 Armour or Evasion Rating on Shield"}}},stats={[1]="attack_damage_+%_per_75_armour_or_evasion_on_shield"}},[3747]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage against Maimed Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage against Maimed Enemies"}}},stats={[1]="attack_damage_+%_vs_maimed_enemies"}},[3748]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage while affected by Precision"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage while affected by Precision"}}},stats={[1]="attack_damage_+%_while_affected_by_precision"}},[3749]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage while Channelling"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage while Channelling"}}},stats={[1]="attack_damage_+%_while_channelling"}},[3750]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage while Leeching"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage while Leeching"}}},stats={[1]="attack_damage_+%_while_leeching"}},[3751]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage while you have Fortify"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage while you have Fortify"}}},stats={[1]="attack_damage_+%_while_you_have_fortify"}},[3752]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Channelling Skills deal %1%%% increased Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Channelling Skills deal %1%%% reduced Attack Damage"}}},stats={[1]="attack_damage_+%_with_channelling_skills"}},[3753]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits from Cursed Enemies"}}},stats={[1]="attack_dodge_%_from_cursed_enemies"}},[3754]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits while Channelling"}}},stats={[1]="attack_dodge_%_while_channelling"}},[3755]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Attacks with this Weapon per 10 Strength"}}},stats={[1]="attack_minimum_added_fire_damage_per_10_strength",[2]="attack_maximum_added_fire_damage_per_10_strength"}},[3756]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Attacks with this Weapon deal %1% to %2% added Fire Damage to Bleeding Enemies"}}},stats={[1]="local_minimum_added_fire_damage_vs_bleeding_enemies",[2]="local_maximum_added_fire_damage_vs_bleeding_enemies"}},[3757]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Attacks with this Weapon per 10 Intelligence"}}},stats={[1]="attack_minimum_added_lightning_damage_per_10_int",[2]="attack_maximum_added_lightning_damage_per_10_int"}},[3758]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks if you've\ndealt a Critical Strike Recently"}}},stats={[1]="attack_minimum_added_physical_damage_if_have_crit_recently",[2]="attack_maximum_added_physical_damage_if_have_crit_recently"}},[3759]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage to Attacks per Level"}}},stats={[1]="attack_minimum_added_physical_damage_per_level",[2]="attack_maximum_added_physical_damage_per_level"}},[3760]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Attacks with this Weapon deal %1% to %2% added Physical Damage to Ignited Enemies"}}},stats={[1]="local_minimum_added_physical_damage_vs_ignited_enemies",[2]="local_maximum_added_physical_damage_vs_ignited_enemies"}},[3761]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Attack Skills fire an additional Projectile while wielding a Claw or Dagger"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Attack Skills fire %1% additional Projectiles while wielding a Claw or Dagger"}}},stats={[1]="attack_skill_additional_num_projectiles_while_wielding_claws_daggers"}},[3762]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attack Skills deal %1%%% increased Damage with Ailments while wielding an Axe or Sword"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Attack Skills deal %1%%% reduced Damage with Ailments while wielding an Axe or Sword"}}},stats={[1]="attack_skill_ailment_damage_+%_while_wielding_axes_swords"}},[3763]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attack Skills have Added Lightning Damage equal to %1%%% of maximum Mana"}}},stats={[1]="attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana"}},[3764]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Attack Speed for each Map Item Modifier affecting the Area"}}},stats={[1]="attack_speed_+%_per_explicit_map_mod_affecting_area"}},[3765]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed per Blitz Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed per Blitz Charge"}}},stats={[1]="attack_speed_+%_final_per_blitz_charge"}},[3766]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you've Hit with your Main Hand Weapon Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you've Hit with your Main Hand Weapon Recently"}}},stats={[1]="attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently"}},[3767]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you've Killed Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you've Killed Recently"}}},stats={[1]="attack_speed_+%_if_enemy_killed_recently"}},[3768]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you've been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you've been Hit Recently"}}},stats={[1]="attack_speed_+%_if_have_been_hit_recently"}},[3769]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you have Blocked Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you have Blocked Recently"}}},stats={[1]="attack_speed_+%_if_have_blocked_recently"}},[3770]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you've dealt a Critical Strike Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you've dealt a Critical Strike Recently"}}},stats={[1]="attack_speed_+%_if_have_crit_recently"}},[3771]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while a Rare or Unique Enemy is Nearby"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while a Rare or Unique Enemy is Nearby"}}},stats={[1]="attack_speed_+%_if_rare_or_unique_enemy_nearby"}},[3772]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed if you have at least 600 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed if you have at least 600 Strength"}}},stats={[1]="attack_speed_+%_if_you_have_at_least_600_strength"}},[3773]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Attack Speed per 25 Dexterity"}}},stats={[1]="attack_speed_+%_per_25_dex"}},[3774]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Speed while affected by Precision"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Speed while affected by Precision"}}},stats={[1]="attack_speed_+%_while_affected_by_precision"}},[3775]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Channelling Skills have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Channelling Skills have %1%%% reduced Attack Speed"}}},stats={[1]="attack_speed_+%_with_channelling_skills"}},[3776]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Attacks always inflict Bleeding while you have Cat's Stealth"}}},stats={[1]="attacks_bleed_on_hit_while_you_have_cat_stealth"}},[3777]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Attacks Cause Bleeding when Hitting Cursed Enemies"}}},stats={[1]="attacks_cause_bleeding_vs_cursed_enemies"}},[3778]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Attacks with this Weapon have %1%%% chance to inflict Bleeding against Ignited Enemies"}}},stats={[1]="local_chance_bleed_on_hit_%_vs_ignited_enemies"}},[3779]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Attacks have 25%% chance to inflict Bleeding when Hitting Cursed Enemies"}}},stats={[1]="attacks_chance_to_bleed_25%_vs_cursed_enemies"}},[3780]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to inflict Bleeding on Hit with Attacks against Taunted Enemies"}}},stats={[1]="attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies"}},[3781]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Blind Enemies on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=100,[2]="#"}},text="Blind Enemies on Hit with Attacks"}}},stats={[1]="attacks_chance_to_blind_on_hit_%"}},[3782]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Taunt Enemies on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]=100,[2]="#"}},text="Taunt Enemies on Hit with Attacks"}}},stats={[1]="attacks_chance_to_taunt_on_hit_%"}},[3783]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Impale Enemies on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Impale Enemies on Hit with Attacks"}}},stats={[1]="attacks_impale_on_hit_%_chance"}},[3784]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Intimidate Enemies for 4 seconds on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]=100,[2]="#"}},text="Intimidate Enemies for 4 seconds on Hit with Attacks"}}},stats={[1]="attacks_intimidate_on_hit_%"}},[3785]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]="#"}},text="Adds %1% to %2% Cold Damage to Attacks with this Weapon per 10 Dexterity"}}},stats={[1]="attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity",[2]="attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity"}},[3786]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Auras on You for each Herald affecting you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Auras on You for each Herald affecting you"}}},stats={[1]="aura_effect_on_you_+%_per_herald_effecting_you"}},[3787]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Avian's Flight Duration"}}},stats={[1]="avians_flight_duration_ms_+"}},[3788]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Avian's Might Duration"}}},stats={[1]="avians_might_duration_ms_+"}},[3789]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to avoid Ailments from Critical Strikes"},[2]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=100,[2]="#"}},text="Avoid Ailments from Critical Strikes"}}},stats={[1]="avoid_ailments_%_from_crit"}},[3790]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid Elemental Ailments while holding a Shield"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be affected by Elemental Ailments while holding a Shield"}}},stats={[1]="avoid_ailments_%_while_holding_shield"}},[3791]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Avoid Elemental Ailments per Summoned Golem"}}},stats={[1]="avoid_all_elemental_ailment_%_per_summoned_golem"}},[3792]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to avoid Projectiles that have Chained"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Avoid Projectiles that have Chained"}}},stats={[1]="avoid_chained_projectile_%_chance"}},[3793]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to avoid Corrupted Blood"}}},stats={[1]="avoid_corrupted_blood_%_chance"}},[3794]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention"},[2]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]=100,[2]=100}},text="Avoid Elemental Damage from Hits during Soul Gain Prevention"}}},stats={[1]="avoid_elemental_damage_chance_%_during_soul_gain_prevention"}},[3795]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChanceToAvoidDamageMax"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to Avoid Elemental Damage from Hits while Phasing"}}},stats={[1]="avoid_elemental_damage_while_phasing_%"}},[3796]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Frozen or Chilled if you have used a Fire Skill Recently"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Chilled or Frozen if you have used a Fire Skill Recently"}}},stats={[1]="avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently"}},[3797]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to avoid Maim"},[2]={limit={[1]={[1]=100,[2]="#"}},text="You cannot be Maimed"}}},stats={[1]="avoid_maim_%_chance"}},[3798]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Avoid Projectiles while Phasing"}}},stats={[1]="avoid_projectiles_while_phasing_%_chance"}},[3799]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Shocked while Chilled"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Shocked while Chilled"}}},stats={[1]="avoid_shock_%_while_chilled"}},[3800]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="35%% chance to avoid being Stunned for each Herald Buff affecting you"}}},stats={[1]="avoid_stun_35%_per_active_herald"}},[3801]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Stunned while Channelling"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Stunned while Channelling"}}},stats={[1]="avoid_stun_%_while_channelling"}},[3802]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Avoid being Stunned while holding a Shield"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Stunned while holding a Shield"}}},stats={[1]="avoid_stun_%_while_holding_shield"}},[3803]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Ball Lightning fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Ball Lightning fires %1% additional Projectiles"}}},stats={[1]="ball_lightning_number_of_additional_projectiles"}},[3804]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Banners you are carrying gain 1 Stage on Melee Hit, up to 5 per second"}}},stats={[1]="add_1_stage_to_banners_on_melee_hit_up_to_5_per_second"}},[3805]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="War Banner has %1%%% increased Adrenaline duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="War Banner has %1%%% reduced Adrenaline duration"}}},stats={[1]="banner_adrenaline_duration_+%"}},[3806]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Dread Banner has %1%%% increased Fortify duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Dread Banner has %1%%% reduced Fortify duration"}}},stats={[1]="banner_fortify_duration_+%"}},[3807]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Reservation of Banner Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Reservation of Banner Skills"}}},stats={[1]="banner_mana_reservation_+%"}},[3808]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Banner Skills Reserve no Mana"}}},stats={[1]="banner_skills_reserve_no_mana"}},[3809]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ailments"}}},stats={[1]="base_ailment_damage_+%"}},[3810]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="All Damage from Hits will cause Elemental Ailments you are suffering"}}},stats={[1]="base_always_inflict_elemental_ailments_you_are_suffering_from"}},[3811]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Arrows Pierce all Targets"}}},stats={[1]="base_arrows_always_pierce"}},[3812]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to avoid Projectiles"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Avoid Projectiles"}}},stats={[1]="base_avoid_projectiles_%_chance"}},[3813]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bleeding Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bleeding Duration"}}},stats={[1]="base_bleed_duration_+%"}},[3814]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of the Buff granted by your Carrion Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of the Buff granted by your Carrion Golems"}}},stats={[1]="base_bone_golem_granted_buff_effect_+%"}},[3815]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPermanentAura"},limit={[1]={[1]="#",[2]="#"}},text="You can only have one Permanent Aura on you from your Skills"}}},stats={[1]="base_can_only_have_one_permanent_aura"}},[3816]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot gain Endurance Charges"}}},stats={[1]="base_cannot_gain_endurance_charges"}},[3817]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Leech Energy Shield"}}},stats={[1]="cannot_leech_energy_shield"}},[3818]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="base_cooldown_speed_+%"}},[3819]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deal no Chaos Damage"}}},stats={[1]="base_deal_no_chaos_damage"}},[3820]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Chaos Damage Leeched as Energy Shield"}}},stats={[1]="base_energy_shield_leech_from_chaos_damage_permyriad"}},[3821]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Cold Damage Leeched as Energy Shield"}}},stats={[1]="base_energy_shield_leech_from_cold_damage_permyriad"}},[3822]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Elemental Damage Leeched as Energy Shield"}}},stats={[1]="base_energy_shield_leech_from_elemental_damage_permyriad"}},[3823]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Fire Damage Leeched as Energy Shield"}}},stats={[1]="base_energy_shield_leech_from_fire_damage_permyriad"}},[3824]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Lightning Damage Leeched as Energy Shield"}}},stats={[1]="base_energy_shield_leech_from_lightning_damage_permyriad"}},[3825]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Leeched as Energy Shield"}}},stats={[1]="base_energy_shield_leech_from_physical_damage_permyriad"}},[3826]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Ignite"}}},stats={[1]="base_immune_to_ignite"}},[3827]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Shock"}}},stats={[1]="base_immune_to_shock"}},[3828]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextColdExposure"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Cold Exposure on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextColdExposure"},limit={[1]={[1]=100,[2]="#"}},text="Inflict Cold Exposure on Hit"}}},stats={[1]="base_inflict_cold_exposure_on_hit_%_chance"}},[3829]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFireExposure"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Fire Exposure on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextFireExposure"},limit={[1]={[1]=100,[2]="#"}},text="Inflict Fire Exposure on Hit"}}},stats={[1]="base_inflict_fire_exposure_on_hit_%_chance"}},[3830]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLightningExposure"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Lightning Exposure on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextLightningExposure"},limit={[1]={[1]=100,[2]="#"}},text="Inflict Lightning Exposure on Hit"}}},stats={[1]="base_inflict_lightning_exposure_on_hit_%_chance"}},[3831]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Life Leech effects Recover Energy Shield instead"}}},stats={[1]="base_life_leech_applies_recovery_to_energy_shield"}},[3832]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Duration"}}},stats={[1]="base_minion_duration_+%"}},[3833]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Sentinels of Purity"}}},stats={[1]="base_number_of_champions_of_light_allowed"}},[3834]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% Summoned Agony Crawler"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Maximum %1% Summoned Agony Crawlers"}}},stats={[1]="base_number_of_herald_scorpions_allowed"}},[3835]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Summoned Holy Relics"}}},stats={[1]="base_number_of_relics_allowed"}},[3836]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You can have an additional Brand Attached to an Enemy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You can have %1% additional Brands Attached to an Enemy"}}},stats={[1]="base_number_of_sigils_allowed_per_target"}},[3837]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage taken over time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage taken over time"}}},stats={[1]="base_physical_damage_over_time_taken_+%"}},[3838]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage Converted to Cold Damage while affected by Hatred"}}},stats={[1]="base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred"}},[3839]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage Converted to Fire Damage while affected by Anger"}}},stats={[1]="base_physical_damage_%_to_convert_to_fire_while_affected_by_anger"}},[3840]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage Converted to Lightning Damage while affected by Wrath"}}},stats={[1]="base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath"}},[3841]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You can Cast an additional Brand"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You can Cast %1% additional Brands"}}},stats={[1]="base_total_number_of_sigils_allowed"}},[3842]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Poison"}}},stats={[1]="base_unaffected_by_poison"}},[3843]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies affected by Bear Trap take %1%%% increased Damage from Trap or Mine Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies affected by Bear Trap take %1%%% reduced Damage from Trap or Mine Hits"}}},stats={[1]="bear_trap_additional_damage_taken_+%_from_traps_and_mines"}},[3844]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies affected by Bear Trap take %1%%% increased Damage from Trap or Mine Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies affected by Bear Trap take %1%%% reduced Damage from Trap or Mine Hits"}}},stats={[1]="bear_trap_damage_taken_+%_from_traps_and_mines"}},[3845]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Movement Speed"}}},stats={[1]="bear_trap_movement_speed_+%_final"}},[3846]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Berserk has %1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Berserk has %1%%% reduced Buff Effect"}}},stats={[1]="berserk_buff_effect_+%"}},[3847]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Berserk has %1%%% increased Rage loss per second"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Berserk has %1%%% reduced Rage loss per second"}}},stats={[1]="berserk_rage_loss_+%"}},[3848]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]="#",[2]="#"}},text="Gain 1 Rage on Hit with Attacks, no more than once every %1% seconds"}}},stats={[1]="berserker_gain_rage_on_attack_hit_cooldown_ms"}},[3849]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="If you've Warcried Recently, you and nearby allies\nhave %1%%% increased Attack Speed"}}},stats={[1]="berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies"}},[3850]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="If you've Warcried Recently, you and nearby allies deal %1%%% increased Damage"}}},stats={[1]="berserker_warcry_grant_damage_+%_to_you_and_nearby_allies"}},[3851]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blade Blast deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blade Blast deals %1%%% reduced Damage"}}},stats={[1]="blade_blase_damage_+%"}},[3852]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blade Blast has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blade Blast has %1%%% reduced Area of Effect"}}},stats={[1]="blade_blast_skill_area_of_effect_+%"}},[3853]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blade Blast detonates other Lingering Blades within an %1%%% increased Area"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blade Blast detonates other Lingering Blades within an %1%%% reduced Area"}}},stats={[1]="blade_blast_trigger_detonation_area_of_effect_+%"}},[3854]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blade Vortex has %1$+d%% to Critical Strike Multiplier for each blade"}}},stats={[1]="blade_vortex_critical_strike_multiplier_+_per_blade"}},[3855]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Bladefall has an additional Volley"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Bladefall has %1% additional Volleys"}}},stats={[1]="bladefall_number_of_volleys"}},[3856]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Bladestorm deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Bladestorm deals %1%%% reduced Damage"}}},stats={[1]="bladestorm_damage_+%"}},[3857]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Bladestorms"}}},stats={[1]="bladestorm_maximum_number_of_storms_allowed"}},[3858]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Sand Bladestorms move with %1%%% increased speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Sand Bladestorms move with %1%%% reduced speed"}}},stats={[1]="bladestorm_sandstorm_movement_speed_+%"}},[3859]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Bleeding per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Bleeding per Endurance Charge"}}},stats={[1]="bleed_damage_+%_per_endurance_charge"}},[3860]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Bleeding you inflict on Maimed Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Bleeding you inflict on Maimed Enemies"}}},stats={[1]="bleeding_damage_+%_vs_maimed_enemies"}},[3861]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Bleeding inflicted on Poisoned Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Bleeding inflicted on Poisoned Enemies"}}},stats={[1]="bleeding_damage_+%_vs_poisoned_enemies"}},[3862]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="+%1%%% to Damage over Time Multiplier for Bleeding you inflict on Poisoned Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="-%1%%% to Damage over Time Multiplier for Bleeding you inflict on Poisoned Enemies"}}},stats={[1]="bleeding_dot_multiplier_+_vs_poisoned_enemies"}},[3863]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Bleeding you inflict is Reflected to you"}}},stats={[1]="bleeding_reflected_to_self"}},[3864]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can inflict Bleeding on an Enemy up to %1% times\nYour Bleeding does not deal extra Damage while the Enemy is moving"}}},stats={[1]="bleeding_stacks_up_to_x_times"}},[3865]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Arc Towers have %1% additional chains"}}},stats={[1]="blight_arc_tower_additional_chains"}},[3866]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Arc Towers repeats %1% additional Times"}}},stats={[1]="blight_arc_tower_additional_repeats"}},[3867]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Arc Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Arc Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_arc_tower_damage_+%"}},[3868]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Arc Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Arc Towers have %1%%% reduced Range"}}},stats={[1]="blight_arc_tower_range_+%"}},[3869]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]=1,[2]="#"}},text="Your Chilling Towers have %1%%% increased effect of Chill"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Chilling Towers have %1%%% reduced effect of Chill"}}},stats={[1]="blight_chilling_tower_chill_effect_+%"}},[3870]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Chilling Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Chilling Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_chilling_tower_damage_+%"}},[3871]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]=1,[2]="#"}},text="Your Chilling Towers have %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Chilling Towers have %1%%% reduced Duration"}}},stats={[1]="blight_chilling_tower_duration_+%"}},[3872]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]=1,[2]="#"}},text="Your Chilling Towers freeze enemies for %1% seconds while they are affected by chilling beams"}}},stats={[1]="blight_chilling_tower_freeze_for_ms"}},[3873]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Chilling Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Chilling Towers have %1%%% reduced Range"}}},stats={[1]="blight_chilling_tower_range_+%"}},[3874]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Empowering Towers have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Empowering Towers have %1%%% reduced Effect"}}},stats={[1]="blight_empowering_tower_buff_effect_+%"}},[3875]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Empowering Towers also grant %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Empowering Towers also grant %1%%% reduced Cast Speed"}}},stats={[1]="blight_empowering_tower_grant_cast_speed_+%"}},[3876]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Empowering Towers also grant %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Empowering Towers also grant %1%%% reduced Damage"}}},stats={[1]="blight_empowering_tower_grant_damage_+%"}},[3877]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="All Towers in range of your Empowering Towers have %1%%% chance to deal Double Damage"},[2]={limit={[1]={[1]=100,[2]="#"}},text="All Towers in range of your Empowering Towers deal Double Damage"}}},stats={[1]="blight_empowering_tower_grant_%_chance_to_deal_double_damage"}},[3878]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Empowering Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Empowering Towers have %1%%% reduced Range"}}},stats={[1]="blight_empowering_tower_range_+%"}},[3879]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Your Fireball Towers fire an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Your Fireball Towers fire an additional %1% Projectiles"}}},stats={[1]="blight_fireball_tower_additional_projectiles_+"}},[3880]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Fireball Towers have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Fireball Towers have %1%%% reduced Cast Speed"}}},stats={[1]="blight_fireball_tower_cast_speed_+%"}},[3881]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Fireball Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Fireball Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_fireball_tower_damage_+%"}},[3882]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Fireball Towers Projectiles fire in a circle"}}},stats={[1]="blight_fireball_tower_projectiles_nova"}},[3883]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Fireball Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Fireball Towers have %1%%% reduced Range"}}},stats={[1]="blight_fireball_tower_range_+%"}},[3884]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Flamethrower Towers have %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Flamethrower Towers have %1%%% reduced Cast Speed"}}},stats={[1]="blight_flamethrower_tower_cast_speed_+%"}},[3885]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Flamethrower Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Flamethrower Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_flamethrower_tower_damage_+%"}},[3886]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Flamethrower Towers deal full damage to Fire Enemies"}}},stats={[1]="blight_flamethrower_tower_full_damage_fire_enemies"}},[3887]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Flamethrower Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Flamethrower Towers have %1%%% reduced Range"}}},stats={[1]="blight_flamethrower_tower_range_+%"}},[3888]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Freezebolt Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Freezebolt Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_freezebolt_tower_damage_+%"}},[3889]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Freezebolt Tower deal full damage to Cold Enemies"}}},stats={[1]="blight_freezebolt_tower_full_damage_cold_enemies"}},[3890]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Your Freezebolt Towers fire an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Your Freezebolt Towers fire %1% additional Projectiles"}}},stats={[1]="blight_freezebolt_tower_projectiles_+"}},[3891]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Freezebolt Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Freezebolt Towers have %1%%% reduced Range"}}},stats={[1]="blight_freezebolt_tower_range_+%"}},[3892]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Glacial Cage Towers have %1%%% increased Cooldown Recovery"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Glacial Cage Towers have %1%%% reduced Cooldown Recovery"}}},stats={[1]="blight_glacialcage_tower_cooldown_recovery_+%"}},[3893]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Glacial Cage Towers have %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Glacial Cage Towers have %1%%% reduced Duration"}}},stats={[1]="blight_glacialcage_tower_duration_+%"}},[3894]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies inside Glacial Cage take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies inside Glacial Cage take %1%%% reduced Damage"}}},stats={[1]="blight_glacialcage_tower_enemy_damage_taken_+%"}},[3895]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Glacial Cage Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Glacial Cage Towers have %1%%% reduced Range"}}},stats={[1]="blight_glacialcage_tower_range_+%"}},[3896]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Hindered by Blight take %1%%% increased Chaos Damage"}}},stats={[1]="blight_hinder_enemy_chaos_damage_taken_+%"}},[3897]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Imbuing Towers have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Imbuing Towers have %1%%% reduced Effect"}}},stats={[1]="blight_imbuing_tower_buff_effect_+%"}},[3898]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Imbuing Towers also grant %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Imbuing Towers also grant %1%%% reduced Critical Strike Chance"}}},stats={[1]="blight_imbuing_tower_grant_critical_strike_+%"}},[3899]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Imbuing Towers also grant %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Imbuing Towers also grant %1%%% reduced Damage"}}},stats={[1]="blight_imbuing_tower_grant_damage_+%"}},[3900]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Imbuing Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Imbuing Towers have %1%%% reduced Range"}}},stats={[1]="blight_imbuing_tower_range_+%"}},[3901]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Lightning Storm Towers have %1%%% increased explosion Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Lightning Storm Towers have %1%%% reduced explosion Area of Effect"}}},stats={[1]="blight_lightningstorm_tower_area_of_effect_+%"}},[3902]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Lightning Storm Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Lightning Storm Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_lightningstorm_tower_damage_+%"}},[3903]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Lightning Storm Towers have %1%%% increased Impact Delay"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Lightning Storm Towers have %1%%% reduced Impact Delay"}}},stats={[1]="blight_lightningstorm_tower_delay_+%"}},[3904]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Lightning Storm Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Lightning Storm Towers have %1%%% reduced Range"}}},stats={[1]="blight_lightningstorm_tower_range_+%"}},[3905]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Your Meteor Towers drop an additional Meteor"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Your Meteor Towers drop %1% additional Meteors"}}},stats={[1]="blight_meteor_tower_additional_meteor_+"}},[3906]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Meteor Towers always Stun"}}},stats={[1]="blight_meteor_tower_always_stun"}},[3907]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Meteor Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Meteor Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_meteor_tower_damage_+%"}},[3908]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Meteor Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Meteor Towers have %1%%% reduced Range"}}},stats={[1]="blight_meteor_tower_range_+%"}},[3909]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Scout Towers have %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Scout Towers have %1%%% reduced Damage"}}},stats={[1]="blight_scout_tower_minion_damage_+%"}},[3910]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Scout Towers have %1%%% increased Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Scout Towers have %1%%% reduced Life"}}},stats={[1]="blight_scout_tower_minion_life_+%"}},[3911]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Scout Towers have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Scout Towers have %1%%% reduced Movement Speed"}}},stats={[1]="blight_scout_tower_minion_movement_speed_+%"}},[3912]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Scout Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Scout Towers have %1%%% reduced Range"}}},stats={[1]="blight_scout_tower_range_+%"}},[3913]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blight has %1%%% increased Hinder Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blight has %1%%% reduced Hinder Duration"}}},stats={[1]="blight_secondary_skill_effect_duration_+%"}},[3914]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Your Seismic Towers have an additional Cascade"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Your Seismic Towers have %1% additional Cascades"}}},stats={[1]="blight_seismic_tower_additional_cascades_+"}},[3915]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Seismic Towers have %1%%% increased length and range of Cascades"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Seismic Towers have %1%%% reduced length and range of Cascades"}}},stats={[1]="blight_seismic_tower_cascade_range_+%"}},[3916]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Seismic Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Seismic Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_seismic_tower_damage_+%"}},[3917]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Seismic Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Seismic Towers have %1%%% reduced Range"}}},stats={[1]="blight_seismic_tower_range_+%"}},[3918]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Seismic Towers have %1%%% increased Stun Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Seismic Towers have %1%%% reduced Stun Duration"}}},stats={[1]="blight_seismic_tower_stun_duration_+%"}},[3919]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Sentinel Towers have %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Sentinel Towers have %1%%% reduced Damage"}}},stats={[1]="blight_sentinel_tower_minion_damage_+%"}},[3920]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Sentinel Towers have %1%%% increased Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Sentinel Towers have %1%%% reduced Life"}}},stats={[1]="blight_sentinel_tower_minion_life_+%"}},[3921]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Sentinel Towers have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Sentinel Towers have %1%%% reduced Movement Speed"}}},stats={[1]="blight_sentinel_tower_minion_movement_speed_+%"}},[3922]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Sentinel Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Sentinel Towers have %1%%% reduced Range"}}},stats={[1]="blight_sentinel_tower_range_+%"}},[3923]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Shock Nova Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Shock Nova Towers deal %1%%% reduced Damage"}}},stats={[1]="blight_shocking_tower_damage_+%"}},[3924]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Shock Nova Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Shock Nova Towers have %1%%% reduced Range"}}},stats={[1]="blight_shocking_tower_range_+%"}},[3925]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Shock Nova Towers deal full damage to Lightning Enemies"}}},stats={[1]="blight_shocknova_tower_full_damage_lightning_enemies"}},[3926]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Shock Nova Towers repeats %1% additional Times"}}},stats={[1]="blight_shocknova_tower_shock_additional_repeats"}},[3927]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Shock Nova Towers have %1%%% increased effect of Shock"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Shock Nova Towers have %1%%% reduced effect of Shock"}}},stats={[1]="blight_shocknova_tower_shock_effect_+%"}},[3928]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Shock Nova Towers have %1%%% increased area of effect per repeat"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Shock Nova Towers have %1%%% reduced area of effect per repeat"}}},stats={[1]="blight_shocknova_tower_shock_repeats_with_area_effect_+%"}},[3929]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blight has %1%%% increased Area of Effect after Channelling for 1 second"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blight has %1%%% reduced Area of Effect after Channelling for 1 second"}}},stats={[1]="blight_skill_area_of_effect_+%_after_1_second_channelling"}},[3930]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Smothering Towers have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Smothering Towers have %1%%% reduced Effect"}}},stats={[1]="blight_smothering_tower_buff_effect_+%"}},[3931]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Smothering Towers also grant %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Smothering Towers also grant %1%%% reduced Damage"}}},stats={[1]="blight_smothering_tower_grant_damage_+%"}},[3932]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Smothering Towers also grant %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Smothering Towers also grant %1%%% reduced Movement Speed"}}},stats={[1]="blight_smothering_tower_grant_movement_speed_+%"}},[3933]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Smothering Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Smothering Towers have %1%%% reduced Range"}}},stats={[1]="blight_smothering_tower_range_+%"}},[3934]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Stone Gaze Towers have %1%%% increased Cooldown Recovery"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Stone Gaze Towers have %1%%% reduced Cooldown Recovery"}}},stats={[1]="blight_stonegaze_tower_cooldown_recovery_+%"}},[3935]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Stone Gaze Towers have %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Stone Gaze Towers have %1%%% reduced Duration"}}},stats={[1]="blight_stonegaze_tower_duration_+%"}},[3936]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Stone Gaze Towers have %1%%% increased Petrification Delay"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Stone Gaze Towers have %1%%% reduced Petrification Delay"}}},stats={[1]="blight_stonegaze_tower_petrify_tick_speed_+%"}},[3937]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Stone Gaze Cage Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Stone Gaze Cage Towers have %1%%% reduced Range"}}},stats={[1]="blight_stonegaze_tower_range_+%"}},[3938]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Summoning Towers have %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Summoning Towers have %1%%% reduced Damage"}}},stats={[1]="blight_summoning_tower_minion_damage_+%"}},[3939]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Summoning Towers have %1%%% increased Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Summoning Towers have %1%%% increased Life"}}},stats={[1]="blight_summoning_tower_minion_life_+%"}},[3940]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions summoned by Your Summoning Towers have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions summoned by Your Summoning Towers have %1%%% reduced Movement Speed"}}},stats={[1]="blight_summoning_tower_minion_movement_speed_+%"}},[3941]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Summoning Towers summon %1% additional Minions"}}},stats={[1]="blight_summoning_tower_minions_summoned_+"}},[3942]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Summoning Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Summoning Towers have %1%%% reduced Range"}}},stats={[1]="blight_summoning_tower_range_+%"}},[3943]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Temporal Towers have %1%%% increased Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Temporal Towers have %1%%% reduced Effect"}}},stats={[1]="blight_temporal_tower_buff_effect_+%"}},[3944]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Temporal Towers also grant you %1%%% reduced action speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Temporal Towers also grant you %1%%% increased action speed"}}},stats={[1]="blight_temporal_tower_grant_you_action_speed_-%"}},[3945]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Temporal Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Temporal Towers have %1%%% reduced Range "}}},stats={[1]="blight_temporal_tower_range_+%"}},[3946]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Temporal Towers effects decay %1%%% faster"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Temporal Towers effects decay %1%%% slower"}}},stats={[1]="blight_temporal_tower_tick_speed_+%"}},[3947]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Blight inflicts Withered for %1% seconds"}}},stats={[1]="blight_tertiary_skill_effect_duration"}},[3948]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Arc Towers deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Arc Towers dea %1%%% reduced Damage"}}},stats={[1]="blight_tower_arc_damage_+%"}},[3949]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Your Chilling Towers have %1%%% increased Range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Your Chilling Towers have %1%%% reduced Range"}}},stats={[1]="blight_tower_chilling_cost_+%"}},[3950]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Your Fireball Towers fire an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Your Fireball Towers fire %1% additional Projectiles"}}},stats={[1]="blight_tower_fireball_additional_projectile"}},[3951]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% Blight Chests are Lucky"}}},stats={[1]="blighted_map_chest_reward_lucky_count"}},[3952]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Towers deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Towers deal %1%%% less Damage"}}},stats={[1]="blighted_map_tower_damage_+%_final"}},[3953]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=100,[2]=100}},text="Blind Chilled Enemies on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Blind Chilled Enemies on Hit"}}},stats={[1]="blind_chilled_enemies_on_hit_%"}},[3954]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Blind Enemies when they Hit you"}}},stats={[1]="blind_enemies_when_hit_%_chance"}},[3955]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Blind Enemies which Hit you while affected by Grace"},[2]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=100,[2]="#"}},text="Blind Enemies which Hit you while affected by Grace"}}},stats={[1]="blind_enemies_when_hit_while_affected_by_grace_%_chance"}},[3956]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Blink Arrow and Mirror Arrow Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Blink Arrow and Mirror Arrow Cooldown Recovery Speed"}}},stats={[1]="blink_and_mirror_arrow_cooldown_speed_+%"}},[3957]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while holding a Shield"}}},stats={[1]="block_chance_%_while_holding_shield"}},[3958]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage if you have Blocked Attack Damage Recently"}}},stats={[1]="block_%_if_blocked_an_attack_recently"}},[3959]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while affected by Determination"}}},stats={[1]="block_%_while_affected_by_determination"}},[3960]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to Block Spell Damage while holding a Shield"}}},stats={[1]="block_spells_chance_%_while_holding_shield"}},[3961]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flesh and Stone has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flesh and Stone has %1%%% reduced Mana Reservation"}}},stats={[1]="blood_sand_armour_mana_reservation_+%"}},[3962]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Blood and Sand has %1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Blood and Sand has %1%%% reduced Buff Effect"}}},stats={[1]="blood_sand_stance_buff_effect_+%"}},[3963]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Perforate has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Perforate has %1%%% reduced Area of Effect"}}},stats={[1]="blood_spears_area_of_effect_+%"}},[3964]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Perforate creates %1$+d Spike"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Perforate creates %1$+d Spikes"}}},stats={[1]="blood_spears_base_number_of_spears"}},[3965]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Perforate deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Perforate deals %1%%% reduced Damage"}}},stats={[1]="blood_spears_damage_+%"}},[3966]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage in Blood Stance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage in Blood Stance"}}},stats={[1]="blood_spears_damage_+%_final_in_blood_stance"}},[3967]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Carrion Golems deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Carrion Golems deal %1%%% reduced Damage"}}},stats={[1]="bone_golem_damage_+%"}},[3968]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Carrion Golems have %1$+d%% to all Elemental Resistances"}}},stats={[1]="bone_golem_elemental_resistances_%"}},[3969]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Unearth Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Unearth Cast Speed"}}},stats={[1]="bone_lance_cast_speed_+%"}},[3970]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Unearth Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Unearth Damage"}}},stats={[1]="bone_lance_damage_+%"}},[3971]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Buff Effect on Low Energy Shield"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Buff Effect on Low Energy Shield"}}},stats={[1]="buff_effect_+%_on_low_energy_shield"}},[3972]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Burning Arrow can inflict an additional Ignite on an Enemy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Burning Arrow can inflict %1% additional Ignites on an Enemy"}}},stats={[1]="burning_arrow_additional_ignite_stacks"}},[3973]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Burning Arrow cannot inflict its Burning Debuff"}}},stats={[1]="burning_arrow_cannot_inflict_additional_burning_debuff_with_ignite"}},[3974]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Burning Arrow has %1%%% increased Debuff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Burning Arrow has %1%%% reduced Debuff Effect"}}},stats={[1]="burning_arrow_debuff_effect_+%"}},[3975]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently"}}},stats={[1]="burning_damage_+%_per_non_shocked_enemy_shocked_recently"}},[3976]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]="#",[2]="#"}},text="Cannot be Blinded while affected by Precision"}}},stats={[1]="cannot_be_blinded_while_affected_by_precision"}},[3977]={lang={English={[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"}},[3978]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Chilled or Frozen while moving"}}},stats={[1]="cannot_be_chilled_or_frozen_while_moving"}},[3979]={lang={English={[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"}},[3980]={lang={English={[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"}},[3981]={lang={English={[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"}},[3982]={lang={English={[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"}},[3983]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Corrupted Blood cannot be inflicted on you"}}},stats={[1]="cannot_be_inflicted_by_corrupted_blood"}},[3984]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Shocked or Ignited while moving"}}},stats={[1]="cannot_be_shocked_or_ignited_while_moving"}},[3985]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be Shocked while you have a Lightning Golem Summoned"}}},stats={[1]="cannot_be_shocked_while_lightning_golem_summoned"}},[3986]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Shocked if Intelligence is higher than Strength"}}},stats={[1]="cannot_be_shocked_with_int_higher_than_strength"}},[3987]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cannot be Stunned by Hits you Block"}}},stats={[1]="cannot_be_stunned_by_blocked_hits"}},[3988]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be Stunned if you've been Stunned or Blocked a Stunning Hit in the past 2 seconds"}}},stats={[1]="cannot_be_stunned_if_have_been_stunned_or_blocked_stunning_hit_in_past_2_seconds"}},[3989]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned if you haven't been Hit Recently"}}},stats={[1]="cannot_be_stunned_if_have_not_been_hit_recently"}},[3990]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You cannot be Stunned if you've been Stunned Recently"}}},stats={[1]="cannot_be_stunned_if_you_have_been_stunned_recently"}},[3991]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You cannot be Stunned if you've Blocked a Stunning Hit Recently"}}},stats={[1]="cannot_be_stunned_if_you_have_blocked_a_stun_recently"}},[3992]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned while you have Ghost Shrouds"}}},stats={[1]="cannot_be_stunned_if_you_have_ghost_dance"}},[3993]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned while you have Fortify"}}},stats={[1]="cannot_be_stunned_while_fortified"}},[3994]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chaos Skills ignore interruption from Stuns"}}},stats={[1]="cannot_be_stunned_while_using_chaos_skill"}},[3995]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Block Spells"}}},stats={[1]="cannot_block_spells"}},[3996]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Cast Spells"}}},stats={[1]="cannot_cast_spells"}},[3997]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Cannot Leech Energy Shield From you"}}},stats={[1]="cannot_have_energy_shield_leeched_from"}},[3998]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot Recharge Energy Shield"}}},stats={[1]="cannot_recharge_energy_shield"}},[3999]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot Regenerate Energy Shield"}}},stats={[1]="cannot_regenerate_energy_shield"}},[4000]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot take Reflected Elemental Damage"}}},stats={[1]="cannot_take_reflected_elemental_damage"}},[4001]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot take Reflected Physical Damage"}}},stats={[1]="cannot_take_reflected_physical_damage"}},[4002]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot Taunt Enemies"}}},stats={[1]="cannot_taunt_enemies"}},[4003]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed with Brand Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed with Brand Skills"}}},stats={[1]="cast_speed_for_brand_skills_+%"}},[4004]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed with Elemental Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed with Elemental Skills"}}},stats={[1]="cast_speed_for_elemental_skills_+%"}},[4005]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed during any Flask Effect"}}},stats={[1]="cast_speed_+%_during_flask_effect"}},[4006]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed if you've Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed if you've Killed Recently"}}},stats={[1]="cast_speed_+%_if_enemy_killed_recently"}},[4007]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed if you've dealt a Critical Strike Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed if you've dealt a Critical Strike Recently"}}},stats={[1]="cast_speed_+%_if_have_crit_recently"}},[4008]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed if a Minion has been Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed if a Minion has been Killed Recently"}}},stats={[1]="cast_speed_+%_if_player_minion_has_been_killed_recently"}},[4009]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed for each corpse Consumed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cast Speed for each corpse Consumed Recently"}}},stats={[1]="cast_speed_+%_per_corpse_consumed_recently"}},[4010]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cast Speed while affected by Zealotry"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Cast Speed while affected by Zealotry"}}},stats={[1]="cast_speed_+%_while_affected_by_zealotry"}},[4011]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Aspect of the Cat Reserves no Mana"}}},stats={[1]="cat_aspect_reserves_no_mana"}},[4012]={lang={English={[1]={[1]={k="milliseconds_to_seconds_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Cat's Stealth Duration"}}},stats={[1]="cats_stealth_duration_ms_+"}},[4013]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]="#"}},text="Caustic Arrow has a %1%%% chance on Hit to Poison Enemies on Caustic Ground"}}},stats={[1]="caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground"}},[4014]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Caustic Arrow deals %1%%% increased Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Caustic Arrow deals %1%%% reduced Damage over Time"}}},stats={[1]="caustic_arrow_damage_over_time_+%"}},[4015]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Caustic Arrow deals %1%%% increased Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Caustic Arrow deals %1%%% reduced Damage with Hits"}}},stats={[1]="caustic_arrow_hit_damage_+%"}},[4016]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chain Hook has +%1% Radius per 12 Rage"}}},stats={[1]="chain_strike_cone_radius_+_per_12_rage"}},[4017]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Cone has +1 Radius per %1% Rage"}}},stats={[1]="chain_strike_cone_radius_+_per_x_rage"}},[4018]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chain Hook deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Chain Hook deals %1%%% reduced Damage"}}},stats={[1]="chain_strike_damage_+%"}},[4019]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]="#",[2]="#"}},text="Chain Hook has a %1%%% chance to grant +1 Rage if it Hits Enemies"}}},stats={[1]="chain_strike_gain_rage_on_hit_%_chance"}},[4020]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% Chance to Block Attack Damage while Channelling"}}},stats={[1]="chance_to_block_attacks_%_while_channelling"}},[4021]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% Chance to Block Spell Damage if you've Cast a Spell Recently"}}},stats={[1]="chance_to_block_spells_%_if_cast_a_spell_recently"}},[4022]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage if you were Damaged by a Hit Recently"}}},stats={[1]="chance_to_block_spells_%_if_damaged_by_a_hit_recently"}},[4023]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while affected by Discipline"}}},stats={[1]="chance_to_block_spells_%_while_affected_by_discipline"}},[4024]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while Channelling"}}},stats={[1]="chance_to_block_spells_%_while_channelling"}},[4025]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% chance to deal Double Damage for 3 seconds when you cast a Spell, up to once every 9 seconds"}}},stats={[1]="chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds"}},[4026]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to deal Double Damage"}}},stats={[1]="chance_to_deal_double_damage_%"}},[4027]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to deal Double Damage if you've dealt a Critical Strike with a Two Handed Melee Weapon Recently"}}},stats={[1]="chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently"}},[4028]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to deal Double Damage if you've Warcried in the past 8 seconds"}}},stats={[1]="chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds"}},[4029]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to deal Double Damage per 4 Rage"}}},stats={[1]="chance_to_deal_double_damage_%_per_4_rage"}},[4030]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to deal Double Damage per 500 Strength"}}},stats={[1]="chance_to_deal_double_damage_%_per_500_strength"}},[4031]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to deal Double Damage while Focussed"},[2]={limit={[1]={[1]=100,[2]=100}},text="Deal Double Damage while Focussed"}}},stats={[1]="chance_to_deal_double_damage_%_while_focused"}},[4032]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You have %1%%% chance to deal Double Damage while on Full Life"}}},stats={[1]="chance_to_deal_double_damage_while_on_full_life_%"}},[4033]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits while at maximum Blade Flurry stages"}}},stats={[1]="chance_to_dodge_%_at_max_charged_attack_stacks"}},[4034]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Attack or Spell Hits if you've Hit an Enemy Recently"}}},stats={[1]="chance_to_dodge_attacks_and_spells_%_if_enemy_hit_recently"}},[4035]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack and Spell Hits while you have Energy Shield"}}},stats={[1]="chance_to_dodge_attacks_and_spells_%_while_you_have_energy_shield"}},[4036]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits per Endurance Charge"}}},stats={[1]="chance_to_dodge_attacks_%_per_endurance_charge"}},[4037]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits per Power Charge"}}},stats={[1]="chance_to_dodge_attacks_%_per_power_charge"}},[4038]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits while affected by Grace"}}},stats={[1]="chance_to_dodge_attacks_%_while_affected_by_grace"}},[4039]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Attack Hits while your Off Hand is empty"}}},stats={[1]="chance_to_dodge_attacks_%_while_off_hand_is_empty"}},[4040]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Spell Hits while affected by Haste"}}},stats={[1]="chance_to_dodge_spells_%_while_affected_by_haste"}},[4041]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance when Hit for double Armour effect"}}},stats={[1]="chance_to_double_armour_effect_on_hit_%"}},[4042]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% chance to Evade Attack Hits"}}},stats={[1]="chance_to_evade_attacks_%"}},[4043]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% chance to Evade Attack Hits if you haven't been Hit Recently"}}},stats={[1]="chance_to_evade_attacks_%_if_havent_been_hit_recently"}},[4044]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to Evade Attack Hits while affected by Grace"}}},stats={[1]="chance_to_evade_attacks_%_while_affected_by_grace"}},[4045]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chance to Evade while you have Energy Shield"}}},stats={[1]="chance_to_evade_%_while_you_have_energy_shield"}},[4046]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain Fortify when you Stun an Enemy with Melee Damage"}}},stats={[1]="chance_to_fortify_on_melee_stun_%"}},[4047]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Freeze, Shock and Ignite while affected by a Herald"}}},stats={[1]="chance_to_freeze_shock_ignite_%_while_affected_by_a_herald"}},[4048]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain an Endurance Charge when you Hit a Bleeding Enemy"}}},stats={[1]="chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy"}},[4049]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain an Endurance Charge when you Stun an Enemy"}}},stats={[1]="chance_to_gain_endurance_charge_when_you_stun_enemy_%"}},[4050]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain an Endurance Charge when you Taunt an Enemy"}}},stats={[1]="chance_to_gain_endurance_charge_when_you_taunt_enemy_%"}},[4051]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Frenzy Charge when you Block Attack Damage"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Frenzy Charge when you Block Attack Damage"}}},stats={[1]="chance_to_gain_frenzy_charge_on_block_attack_%"}},[4052]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Frenzy Charge when you Block"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Frenzy Charge when you Block"}}},stats={[1]="chance_to_gain_frenzy_charge_on_block_%"}},[4053]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when you Stun an Enemy"}}},stats={[1]="chance_to_gain_frenzy_charge_on_stun_%"}},[4054]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain Onslaught when you use a Flask"}}},stats={[1]="chance_to_gain_onslaught_on_flask_use_%"}},[4055]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain Onslaught for 10 Seconds when you Hit a Rare\nor Unique Enemy"}}},stats={[1]="chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy"}},[4056]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Onslaught for 10 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]="#"}},text="Gain Onslaught for 10 seconds on Kill"}}},stats={[1]="chance_to_gain_onslaught_on_kill_for_10_seconds_%"}},[4057]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web"}}},stats={[1]="chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%"}},[4058]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge when you Hit a Rare or Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge when you Hit a Rare or Unique Enemy"}}},stats={[1]="chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"}},[4059]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power, Frenzy or Endurance Charge on Hit"}}},stats={[1]="chance_to_gain_random_standard_charge_on_hit_%"}},[4060]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain Unholy Might for 4 seconds on Critical Strike"}}},stats={[1]="chance_to_gain_unholy_might_on_crit_for_4_seconds_%"}},[4061]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Unholy Might for 10 seconds on Kill"},[2]={[1]={k="reminderstring",v="ReminderTextUnholyMight"},limit={[1]={[1]=100,[2]="#"}},text="Gain Unholy Might for 10 seconds on Kill"}}},stats={[1]="chance_to_gain_unholy_might_on_kill_for_10_seconds_%"}},[4062]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Power Charge when you Shock a Chilled Enemy"}}},stats={[1]="chance_to_grant_power_charge_on_shocking_chilled_enemy_%"}},[4063]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more chance to Hit while Blinded"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less chance to Hit while Blinded"}}},stats={[1]="chance_to_hit_while_blinded_+%_final"}},[4064]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Curses to apply to Hexproof Enemies"}}},stats={[1]="chance_to_ignore_hexproof_%"}},[4065]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Intimidate nearby Enemies for 4 seconds on Melee Kill"}}},stats={[1]="chance_to_intimidate_nearby_enemies_on_melee_kill_%"}},[4066]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Intimidate Enemies for 4 seconds on Hit"}}},stats={[1]="chance_to_intimidate_on_hit_%"}},[4067]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Poison per Power Charge"}}},stats={[1]="chance_to_poison_on_hit_%_per_power_charge"}},[4068]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillingArea"},[2]={k="reminderstring",v="ReminderTextSapped"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Sap Enemies in Chilling Areas"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChillingArea"},[3]={k="reminderstring",v="ReminderTextSapped"},limit={[1]={[1]=100,[2]="#"}},text="Always Sap Enemies in Chilling Areas"}}},stats={[1]="chance_to_sap_%_vs_enemies_in_chilling_areas"}},[4069]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Shock Chilled Enemies"}}},stats={[1]="chance_to_shock_chilled_enemies_%"}},[4070]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnnerve"},limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to Unnerve Enemies for 4 seconds on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextUnnerve"},limit={[1]={[1]=100,[2]="#"}},text="Unnerve Enemies for 4 seconds on Hit"}}},stats={[1]="chance_to_unnerve_on_hit_%"}},[4071]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Channelling Skills deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Channelling Skills deal %1%%% reduced Damage"}}},stats={[1]="channelled_skill_damage_+%"}},[4072]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Channelling Skills deal %1%%% increased Damage per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Channelling Skills deal %1%%% reduced Damage per 10 Devotion"}}},stats={[1]="channelled_skill_damage_+%_per_10_devotion"}},[4073]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]="#"}},text="Chaos Damage does not bypass Energy Shield while not on Low Life or Low Mana"}}},stats={[1]="chaos_damage_does_not_bypass_energy_shield_while_not_low_life_or_mana"}},[4074]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% Chaos Resistance against Damage Over Time"}}},stats={[1]="additional_chaos_resistance_against_damage_over_time_%"}},[4075]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% of Chaos Damage is taken from Mana before Life"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Chaos Damage is taken from Mana before Life"}}},stats={[1]="chaos_damage_%_taken_from_mana_before_life"}},[4076]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Chaos Damage per 100 maximum Mana, up to a maximum of 80%%"}}},stats={[1]="chaos_damage_+%_per_100_max_mana_up_to_80"}},[4077]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage while affected by Herald of Agony"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage while affected by Herald of Agony"}}},stats={[1]="chaos_damage_+%_while_affected_by_herald_of_agony"}},[4078]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Resistance per Endurance Charge"}}},stats={[1]="chaos_damage_resistance_%_per_endurance_charge"}},[4079]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Chaos Resistance is doubled"}}},stats={[1]="chaos_damage_resistance_is_doubled"}},[4080]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Resistance per Poison on you"}}},stats={[1]="chaos_damage_resistance_%_per_poison_stack"}},[4081]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Resistance while affected by Herald of Agony"}}},stats={[1]="chaos_damage_resistance_%_while_affected_by_herald_of_agony"}},[4082]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Chaos Resistance while affected by Purity of Elements"}}},stats={[1]="chaos_damage_resistance_%_while_affected_by_purity_of_elements"}},[4083]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage over Time taken while on Caustic Ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage over Time taken while on Caustic Ground"}}},stats={[1]="chaos_damage_taken_over_time_+%_while_in_caustic_cloud"}},[4084]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage with Attack Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage with Attack Skills"}}},stats={[1]="chaos_damage_with_attack_skills_+%"}},[4085]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chaos Damage with Spell Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chaos Damage with Spell Skills"}}},stats={[1]="chaos_damage_with_spell_skills_+%"}},[4086]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=1,[2]="#"}},text="Chaos Skills have %1%%% chance to Hinder Enemies on Hit, with 30%% reduced Movement Speed"}}},stats={[1]="chaos_skill_chance_to_hinder_on_hit_%"}},[4087]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Chaos Skill Gems"}}},stats={[1]="chaos_skill_gem_level_+"}},[4088]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chaos Skills have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Chaos Skills have %1%%% reduced Area of Effect"}}},stats={[1]="chaos_skills_area_of_effect_+%"}},[4089]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits if you have finished Channelling Charged Dash Recently"}}},stats={[1]="charged_dash_chance_to_dodge_%_if_finished_channelling_recently"}},[4090]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Charged Dash has %1%%% more Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Charged Dash has %1%%% less Movement Speed"}}},stats={[1]="charged_dash_movement_speed_+%_final"}},[4091]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains additional Divination Cards that give Corrupted Items"}}},stats={[1]="chest_drop_additional_corrupted_item_divination_cards"}},[4092]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains additional Divination Cards that give Currency"}}},stats={[1]="chest_drop_additional_currency_item_divination_cards"}},[4093]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains additional Divination Cards from the current Area"}}},stats={[1]="chest_drop_additional_divination_cards_from_current_world_area"}},[4094]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains additional Divination Cards from the same set"}}},stats={[1]="chest_drop_additional_divination_cards_from_same_set"}},[4095]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains additional Divination Cards that give Unique Items"}}},stats={[1]="chest_drop_additional_unique_item_divination_cards"}},[4096]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains an additional Pirate Unique item"}}},stats={[1]="chest_number_of_additional_pirate_uniques_to_drop"}},[4097]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Chill and Freeze Duration on Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Chill and Freeze Duration on Enemies"}}},stats={[1]="chill_and_freeze_duration_+%"}},[4098]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Chill Attackers for 4 seconds on Block"}}},stats={[1]="chill_attackers_for_4_seconds_on_block_%_chance"}},[4099]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="The Effect of Chill on you is reversed"}}},stats={[1]="chill_effect_is_reversed"}},[4100]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Chill"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Chill"}}},stats={[1]="chill_effect_+%"}},[4101]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Chill you inflict with Critical Strikes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Chill you inflict with Critical Strikes"}}},stats={[1]="chill_effect_+%_with_critical_strikes"}},[4102]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chills from your Hits always reduce Action Speed by at least %1%%%"}}},stats={[1]="chill_minimum_slow_%"}},[4103]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHitNoMagnitude"},limit={[1]={[1]="#",[2]="#"}},text="Chill nearby Enemies when you Focus, causing 30%% reduced Action Speed"}}},stats={[1]="chill_nearby_enemies_when_you_focus"}},[4104]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Chilled Ground"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Chilled Ground"}}},stats={[1]="chilled_ground_effect_+%"}},[4105]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to create Chilled Ground when Hit with an Attack"},[2]={[1]={k="reminderstring",v="ReminderTextChilledGround"},limit={[1]={[1]=100,[2]=100}},text="Create Shocked Ground when Hit with an Attack"}}},stats={[1]="chilled_ground_when_hit_with_attack_%"}},[4106]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHit"},limit={[1]={[1]="#",[2]="#"}},text="You are Chilled while you are Bleeding"}}},stats={[1]="chilled_while_bleeding"}},[4107]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHit"},limit={[1]={[1]="#",[2]="#"}},text="You are Chilled when you are Poisoned"}}},stats={[1]="chilled_while_poisoned"}},[4108]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]=1,[2]="#"}},text="Enemies in your Chilling Areas take %1%%% increased Lightning Damage"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextChillingArea"},limit={[1]={[1]="#",[2]=-1}},text="Enemies in your Chilling Areas take %1%%% reduced Lightning Damage"}}},stats={[1]="chilling_areas_also_grant_lightning_damage_taken_+%"}},[4109]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Clarity Reserves no Mana"}}},stats={[1]="clarity_reserves_no_mana"}},[4110]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]="#"}},text="Cleave grants Fortify on Hit"}}},stats={[1]="cleave_fortify_on_hit"}},[4111]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cleave has +1 to Radius per Nearby Enemy, up to +10"}}},stats={[1]="cleave_+1_base_radius_per_nearby_enemy_up_to_10"}},[4112]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cobra Lash deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cobra Lash deals %1%%% reduced Damage"}}},stats={[1]="cobra_lash_damage_+%"}},[4113]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Cobra Lash Chains an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Cobra Lash Chains %1% additional times"}}},stats={[1]="cobra_lash_number_of_additional_chains"}},[4114]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cobra Lash has %1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Cobra Lash has %1%%% reduced Projectile Speed"}}},stats={[1]="cobra_lash_projectile_speed_+%"}},[4115]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold and Chaos Resistances"}}},stats={[1]="cold_and_chaos_damage_resistance_%"}},[4116]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Cold Damage per 1%% Cold Resistance above 75%%"}}},stats={[1]="cold_damage_+%_per_cold_resistance_above_75"}},[4117]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Cold Damage as Extra Chaos Damage per Frenzy Charge"}}},stats={[1]="cold_damage_%_to_add_as_chaos_per_frenzy_charge"}},[4118]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage if you have used a Fire Skill Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage if you have used a Fire Skill Recently"}}},stats={[1]="cold_damage_+%_if_you_have_used_a_fire_skill_recently"}},[4119]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Cold Damage per 25 Dexterity"}}},stats={[1]="cold_damage_+%_per_25_dexterity"}},[4120]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Cold Damage per 25 Intelligence"}}},stats={[1]="cold_damage_+%_per_25_intelligence"}},[4121]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Cold Damage per 25 Strength"}}},stats={[1]="cold_damage_+%_per_25_strength"}},[4122]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage per Frenzy Charge"}}},stats={[1]="cold_damage_+%_per_frenzy_charge"}},[4123]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage while affected by Hatred"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage while affected by Hatred"}}},stats={[1]="cold_damage_+%_while_affected_by_hatred"}},[4124]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage while affected by Herald of Ice"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage while affected by Herald of Ice"}}},stats={[1]="cold_damage_+%_while_affected_by_herald_of_ice"}},[4125]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage while your Off Hand is empty"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage while your Off Hand is empty"}}},stats={[1]="cold_damage_+%_while_off_hand_is_empty"}},[4126]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Cold Resistance while affected by Herald of Ice"}}},stats={[1]="cold_damage_resistance_%_while_affected_by_herald_of_ice"}},[4127]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Cold Damage taken from Hits"}}},stats={[1]="cold_damage_taken_+"}},[4128]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage taken if you've\nbeen Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage taken if you've\nbeen Hit Recently"}}},stats={[1]="cold_damage_taken_+%_if_have_been_hit_recently"}},[4129]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Attack Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Attack Skills"}}},stats={[1]="cold_damage_with_attack_skills_+%"}},[4130]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Spell Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Spell Skills"}}},stats={[1]="cold_damage_with_spell_skills_+%"}},[4131]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cold Damage with Hits against Shocked Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cold Damage with Hits against Shocked Enemies"}}},stats={[1]="cold_hit_damage_+%_vs_shocked_enemies"}},[4132]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Cold Resistance against Chilled Enemies"}}},stats={[1]="cold_penetration_%_vs_chilled_enemies"}},[4133]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Icicle Mine has %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="cold_projectile_mine_critical_multiplier_+"}},[4134]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Icicle Mine deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Icicle Mine deals %1%%% reduced Damage"}}},stats={[1]="cold_projectile_mine_damage_+%"}},[4135]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Icicle Mine Throwing Speed"},[2]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Icicle Mine Throwing Speed"}}},stats={[1]="cold_projectile_mine_throwing_speed_negated_+%"}},[4136]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Icicle Mine has %1%%% increased Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Icicle Mine has %1%%% reduced Throwing Speed"}}},stats={[1]="cold_projectile_mine_throwing_speed_+%"}},[4137]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Cold Damage taken while affected by Purity of Ice"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Cold Damage taken while affected by Purity of Ice"}}},stats={[1]="cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice"}},[4138]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextColdExposure"},limit={[1]={[1]=1,[2]="#"}},text="Cold Skills have a %1%%% chance to apply Cold Exposure on Hit"}}},stats={[1]="cold_skill_chance_to_inflict_cold_exposure_%"}},[4139]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Cold Skill Gems"}}},stats={[1]="cold_skill_gem_level_+"}},[4140]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Cold Skills have %1%%% chance to Poison on Hit"}}},stats={[1]="cold_skills_chance_to_poison_on_hit_%"}},[4141]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area\nCold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges"}}},stats={[1]="cold_snap_uses_and_gains_power_charges_instead_of_frenzy"}},[4142]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Cold Spells have %1%%% of Physical Damage Converted to Cold Damage"}}},stats={[1]="cold_spell_physical_damage_%_to_convert_to_cold"}},[4143]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Consecrated Ground you create grants %1%%% Physical Damage Reduction to you and Allies"}}},stats={[1]="consecrated_ground_additional_physical_damage_reduction_%"}},[4144]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Consecrated Ground you create applies %1%%% increased Damage taken to Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Consecrated Ground you create applies %1%%% reduced Damage taken to Enemies"}}},stats={[1]="consecrated_ground_enemy_damage_taken_+%"}},[4145]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Consecrated Ground you create while affected by Zealotry causes enemies to take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="Consecrated Ground you create while affected by Zealotry causes enemies to take %1%%% reduced Damage"}}},stats={[1]="consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry"}},[4146]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Consecrated Ground you create grants Immunity to Curses to you and Allies"}}},stats={[1]="consecrated_ground_immune_to_curses"}},[4147]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Consecrated Ground you create grants Immunity to Elemental Ailments\nto you and Allies"}}},stats={[1]="consecrated_ground_immune_to_status_ailments"}},[4148]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextLingers"},limit={[1]={[1]="#",[2]="#"}},text="Effects of Consecrated Ground you create while affected by Zealotry Linger for %1% seconds"}}},stats={[1]="consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry"}},[4149]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=1,[2]="#"}},text="Create Consecrated Ground, lasting 6 seconds, when you Hit a Magic, Rare or Unique Enemy, up to once every 3 seconds"}}},stats={[1]="consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds"}},[4150]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]="#",[2]="#"}},text="You have Consecrated Ground around you while stationary"}}},stats={[1]="consecrated_ground_while_stationary_radius"}},[4151]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Consecrated Path has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Consecrated Path deals %1%%% reduced Area of Effect"}}},stats={[1]="consecrated_path_area_of_effect_+%"}},[4152]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Consecrated Path deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Consecrated Path deals %1%%% reduced Damage"}}},stats={[1]="consecrated_path_damage_+%"}},[4153]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Cremation can have up to %1% additional Geyser at a time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Cremation can have up to %1% additional Geysers at a time"}}},stats={[1]="corpse_erruption_base_maximum_number_of_geyers"}},[4154]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cremation Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cremation Cast Speed"}}},stats={[1]="corpse_eruption_cast_speed_+%"}},[4155]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cremation Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cremation Damage"}}},stats={[1]="corpse_eruption_damage_+%"}},[4156]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bodyswap Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bodyswap Cast Speed"}}},stats={[1]="corpse_warp_cast_speed_+%"}},[4157]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Bodyswap Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Bodyswap Damage"}}},stats={[1]="corpse_warp_damage_+%"}},[4158]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Plague Bearer deals Damage based on an additional %1%%% of Plague Value"}}},stats={[1]="corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"}},[4159]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Plague Bearer Buff grants %1$+d%% to Poison Damage over Time Multiplier while Infecting"}}},stats={[1]="corrosive_shroud_poison_dot_multiplier_+_while_aura_active"}},[4160]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCounterAttack"},limit={[1]={[1]="#",[2]="#"}},text="Your Counterattacks deal Double Damage"}}},stats={[1]="counterattacks_deal_double_damage"}},[4161]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlightedSpore"},limit={[1]={[1]="#",[2]="#"}},text="Create a Blighted Spore when your Skills or Minions Kill a Rare Monster"}}},stats={[1]="create_blighted_spore_on_killing_rare_enemy"}},[4162]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds"}}},stats={[1]="create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"}},[4163]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecratedGround"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to create Consecrated Ground when you Kill an Enemy, lasting 3 seconds"}}},stats={[1]="create_consecrated_ground_on_kill_%"}},[4164]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to create a Smoke Cloud on Kill"}}},stats={[1]="create_smoke_cloud_on_kill_%_chance"}},[4165]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Shocked Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Shocked Enemies"}}},stats={[1]="critical_strike_chance_+%_vs_shocked_enemies"}},[4166]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield"}}},stats={[1]="critical_multiplier_+%_per_10_max_es_on_shield"}},[4167]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Critical Strike Chance is increased by Lightning Resistance"}}},stats={[1]="critical_strike_chance_increased_by_lightning_resistance"}},[4168]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUncappedResist"},limit={[1]={[1]="#",[2]="#"}},text="Critical Strike Chance is increased by Uncapped Lightning Resistance"}}},stats={[1]="critical_strike_chance_increased_by_uncapped_lightning_resistance"}},[4169]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry"}}},stats={[1]="critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry"}},[4170]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance during any Flask Effect"}}},stats={[1]="critical_strike_chance_+%_during_any_flask_effect"}},[4171]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Spells if you've Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Spells if you've Killed Recently"}}},stats={[1]="critical_strike_chance_+%_for_spells_if_you_have_killed_recently"}},[4172]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance if you have Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance if you have Killed Recently"}}},stats={[1]="critical_strike_chance_+%_if_enemy_killed_recently"}},[4173]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance if you haven't dealt a Critical Strike Recently"}}},stats={[1]="critical_strike_chance_+%_if_have_not_crit_recently"}},[4174]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance if you haven’t Blocked Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance if you haven’t Blocked Recently"}}},stats={[1]="critical_strike_chance_+%_if_havent_blocked_recently"}},[4175]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Blitz Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Blitz Charge"}}},stats={[1]="critical_strike_chance_+%_per_blitz_charge"}},[4176]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Endurance Charge"}}},stats={[1]="critical_strike_chance_+%_per_endurance_charge"}},[4177]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Frenzy Charge"}}},stats={[1]="critical_strike_chance_+%_per_frenzy_charge"}},[4178]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for each Mine Detonated\nRecently, up to 100%%"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for each Mine Detonated\nRecently, up to 100%%"}}},stats={[1]="critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%"}},[4179]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance per Inspiration Charge"}}},stats={[1]="critical_strike_chance_+%_per_righteous_charge"}},[4180]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Taunted Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Taunted Enemies"}}},stats={[1]="critical_strike_chance_+%_vs_taunted_enemies"}},[4181]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance while affected by Wrath"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance while affected by Wrath"}}},stats={[1]="critical_strike_chance_+%_while_affected_by_wrath"}},[4182]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance while Channelling"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance while Channelling"}}},stats={[1]="critical_strike_chance_+%_while_channelling"}},[4183]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Spells while Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Spells while Dual Wielding"}}},stats={[1]="spell_critical_strike_chance_+%_while_dual_wielding"}},[4184]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Spells while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Spells while holding a Shield"}}},stats={[1]="spell_critical_strike_chance_+%_while_holding_shield"}},[4185]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Spells while wielding a Staff"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Spells while wielding a Staff"}}},stats={[1]="spell_critical_strike_chance_+%_while_wielding_staff"}},[4186]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage from your Critical Strikes cannot be Reflected"}}},stats={[1]="critical_strike_damage_cannot_be_reflected"}},[4187]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently"}}},stats={[1]="critical_strike_multiplier_+_if_have_dealt_non_crit_recently"}},[4188]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Arrows that Pierce have %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="critical_strike_multiplier_for_arrows_that_pierce_+"}},[4189]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Critical Strike Multiplier is 300%%"}}},stats={[1]="critical_strike_multiplier_is_300"}},[4190]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Critical Strike Multiplier during any Flask Effect"}}},stats={[1]="critical_strike_multiplier_+_during_any_flask_effect"}},[4191]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for Spells if you haven't Killed Recently"}}},stats={[1]="critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently"}},[4192]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier if you dealt a Critical Strike with a Herald Skill Recently"}}},stats={[1]="critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently"}},[4193]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier if Dexterity is higher than Intelligence"}}},stats={[1]="critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"}},[4194]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier if you've Killed Recently"}}},stats={[1]="critical_strike_multiplier_+_if_enemy_killed_recently"}},[4195]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier if you've Shattered an Enemy Recently"}}},stats={[1]="critical_strike_multiplier_+_if_enemy_shattered_recently"}},[4196]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently"}}},stats={[1]="critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently"}},[4197]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby"}}},stats={[1]="critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby"}},[4198]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Critical Strike Multiplier if you've taken a Savage Hit Recently"}}},stats={[1]="critical_strike_multiplier_+_if_taken_a_savage_hit_recently"}},[4199]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Critical Strike Multiplier if you have Blocked Recently"}}},stats={[1]="critical_strike_multiplier_+_if_you_have_blocked_recently"}},[4200]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier if you've been Channelling for at least 1 second"}}},stats={[1]="critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second"}},[4201]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for each Mine Detonated\nRecently, up to 40%%"}}},stats={[1]="critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40"}},[4202]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d%% to Critical Strike Multiplier against Taunted Enemies"}}},stats={[1]="critical_strike_multiplier_+_vs_taunted_enemies"}},[4203]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier while affected by Anger"}}},stats={[1]="critical_strike_multiplier_+_while_affected_by_anger"}},[4204]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier while affected by Precision"}}},stats={[1]="critical_strike_multiplier_+_while_affected_by_precision"}},[4205]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for Spells while Dual Wielding"}}},stats={[1]="spell_critical_strike_multiplier_+_while_dual_wielding"}},[4206]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for Spells while holding a Shield"}}},stats={[1]="spell_critical_strike_multiplier_+_while_holding_shield"}},[4207]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier for Spells while wielding a Staff"}}},stats={[1]="spell_critical_strike_multiplier_+_while_wielding_staff"}},[4208]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier of Herald Skills"}}},stats={[1]="critical_strike_multiplier_+_with_herald_skills"}},[4209]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Claws or Daggers"}}},stats={[1]="critical_strike_multiplier_+%_with_claws_daggers"}},[4210]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Critical Strikes have a %1%%% chance to deal Double Damage"}}},stats={[1]="critical_strike_%_chance_to_deal_double_damage"}},[4211]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Critical Strikes Knock Back Shocked Enemies"}}},stats={[1]="critical_strikes_always_knockback_shocked_enemies"}},[4212]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Critical Strikes deal no Damage"}}},stats={[1]="critical_strikes_deal_no_damage"}},[4213]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Critical Strikes do not inherently apply non-Damaging Ailments"}}},stats={[1]="critical_strikes_do_not_always_apply_non_damaging_ailments"}},[4214]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Critical Strikes Penetrate %1%%% of Enemy Elemental Resistances while affected by Zealotry"}}},stats={[1]="critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry"}},[4215]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Culling Strike against Enemies Cursed with Poacher's Mark"}}},stats={[1]="culling_strike_on_enemies_affected_by_poachers_mark"}},[4216]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]="#",[2]="#"}},text="You have Culling Strike against Cursed Enemies"}}},stats={[1]="culling_strike_vs_cursed_enemies"}},[4217]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of your Curses if you've spent 200 total Mana Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of your Curses if you've spent 200 total Mana Recently"}}},stats={[1]="curse_effect_+%_if_200_mana_spent_recently"}},[4218]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Curse Enemies with Level %1% Poacher's Mark on Hit, which can apply to Hexproof Enemies"}}},stats={[1]="curse_on_hit_level_poachers_mark_bypass_hexproof"}},[4219]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Curse Enemies with Vulnerability on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Curse Enemies with Vulnerability on Hit"}}},stats={[1]="curse_on_hit_%_vulnerability"}},[4220]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Curse Skills have %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Curse Skills have %1%%% reduced Skill Effect Duration"}}},stats={[1]="curse_skill_effect_duration_+%"}},[4221]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Curse non-Cursed Enemies with Enfeeble on Hit"}}},stats={[1]="curse_with_enfeeble_on_hit_%_against_uncursed_enemies"}},[4222]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Every 10 seconds for 4 seconds, Curses have no effect on you"}}},stats={[1]="curses_have_no_effect_on_you_for_4_seconds_every_10_seconds"}},[4223]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Non-Aura Curses you inflict are not removed from Dying Enemies"}}},stats={[1]="curses_you_inflict_remain_after_death"}},[4224]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage while there is at most one Rare or Unique Enemy nearby"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage while there is at most one Rare or Unique Enemy nearby"}}},stats={[1]="damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby"}},[4225]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Raised Zombie"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Raised Zombie"}}},stats={[1]="damage_+%_per_raised_zombie"}},[4226]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage over Time while affected by a Herald"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage over Time while affected by a Herald"}}},stats={[1]="damage_over_time_+%_while_affected_by_a_herald"}},[4227]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage Over Time with Attack Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage Over Time with Attack Skills"}}},stats={[1]="damage_over_time_+%_with_attack_skills"}},[4228]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage Over Time with Bow Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage Over Time with Bow Skills"}}},stats={[1]="damage_over_time_+%_with_bow_skills"}},[4229]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald Skills deal %1%%% increased Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald Skills deal %1%%% reduced Damage over Time"}}},stats={[1]="damage_over_time_+%_with_herald_skills"}},[4230]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage penetrates %1%%% Cold Resistance while affected by Herald of Ice"}}},stats={[1]="damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice"}},[4231]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Elemental Resistance if you haven't Killed Recently"}}},stats={[1]="damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"}},[4232]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Damage Penetrates %1%%% Elemental Resistances against Chilled Enemies"}}},stats={[1]="damage_penetrates_%_elemental_resistance_vs_chilled_enemies"}},[4233]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage penetrates %1%%% Fire Resistance while affected by Herald of Ash"}}},stats={[1]="damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash"}},[4234]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage penetrates %1%%% Lightning Resistance while affected by Herald of Thunder"}}},stats={[1]="damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder"}},[4235]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Damage for each Endurance Charge lost recently, up to 15%%"}}},stats={[1]="damage_+%_final_per_endurance_charge_lost_recently_up_to_15%"}},[4236]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage while you have at least one nearby Ally"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage while you have at least one nearby Ally"}}},stats={[1]="damage_+%_final_with_at_least_1_nearby_ally"}},[4237]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage for each Herald affecting you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage for each Herald affecting you"}}},stats={[1]="damage_+%_for_each_herald_affecting_you"}},[4238]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies affected by your Spider's Webs deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies affected by your Spider's Webs deal %1%%% reduced Damage"}}},stats={[1]="damage_+%_for_enemies_you_inflict_spiders_web_upon"}},[4239]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you've Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you've Killed Recently"}}},stats={[1]="damage_+%_if_enemy_killed_recently"}},[4240]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you've dealt a Critical Strike in the past 8 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you've dealt a Critical Strike in the past 8 seconds"}}},stats={[1]="damage_+%_if_have_crit_in_past_8_seconds"}},[4241]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while there is only one nearby Enemy"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while there is only one nearby Enemy"}}},stats={[1]="damage_+%_if_only_one_enemy_nearby"}},[4242]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you've used a Travel Skill Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you've used a Travel Skill Recently"}}},stats={[1]="damage_+%_if_used_travel_skill_recently"}},[4243]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you've Frozen an Enemy Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you've Frozen an Enemy Recently"}}},stats={[1]="damage_+%_if_you_have_frozen_enemy_recently"}},[4244]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if you have Shocked an Enemy Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if you have Shocked an Enemy Recently"}}},stats={[1]="damage_+%_if_you_have_shocked_recently"}},[4245]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per 10 Dexterity"}}},stats={[1]="damage_+%_per_10_dex"}},[4246]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per 15 Dexterity"}}},stats={[1]="damage_+%_per_15_dex"}},[4247]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per 15 Intelligence"}}},stats={[1]="damage_+%_per_15_int"}},[4248]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per 15 Strength"}}},stats={[1]="damage_+%_per_15_strength"}},[4249]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per 1%% Chance to Block Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per 1%% Chance to Block Attack Damage"}}},stats={[1]="damage_+%_per_1%_block_chance"}},[4250]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Increases and Reductions to Quantity of Items found also apply to Damage"}}},stats={[1]="damage_+%_per_1%_increased_item_found_quantity"}},[4251]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per 5 of your lowest Attribute"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per 5 of your lowest Attribute"}}},stats={[1]="damage_+%_per_5_of_your_lowest_attribute"}},[4252]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Summoned Golem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Summoned Golem"}}},stats={[1]="damage_+%_per_active_golem"}},[4253]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Frenzy, Power or Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Frenzy, Power or Endurance Charge"}}},stats={[1]="damage_+%_per_frenzy_power_or_endurance_charge"}},[4254]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage per Power Charge"}}},stats={[1]="damage_+%_per_power_charge"}},[4255]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage against Abyssal Monsters"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage against Abyssal Monsters"}}},stats={[1]="damage_+%_vs_abyssal_monsters"}},[4256]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits against Chilled Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits against Chilled Enemies"}}},stats={[1]="damage_+%_vs_chilled_enemies"}},[4257]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage against Taunted Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage against Taunted Enemies"}}},stats={[1]="damage_+%_vs_taunted_enemies"}},[4258]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while on Full Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while on Full Energy Shield"}}},stats={[1]="damage_+%_on_full_energy_shield"}},[4259]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage when on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage when on Full Life"}}},stats={[1]="damage_+%_when_on_full_life"}},[4260]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while affected by a Herald"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while affected by a Herald"}}},stats={[1]="damage_+%_while_affected_by_a_herald"}},[4261]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while Channelling"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while Channelling"}}},stats={[1]="damage_+%_while_channelling"}},[4262]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage while you have a Summoned Golem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage while you have a Summoned Golem"}}},stats={[1]="damage_+%_while_you_have_a_summoned_golem"}},[4263]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald Skills deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald Skills deal %1%%% reduced Damage"}}},stats={[1]="damage_+%_with_herald_skills"}},[4264]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Maces, Sceptres or Staves"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Maces, Sceptres or Staves"}}},stats={[1]="damage_+%_with_maces_sceptres_staves"}},[4265]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Non-Vaal Skills deal %1%%% increased Damage during Soul Gain Prevention"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Non-Vaal Skills deal %1%%% reduced Damage during Soul Gain Prevention"}}},stats={[1]="damage_+%_with_non_vaal_skills_during_soul_gain_prevention"}},[4266]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Shield Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Shield Skills"}}},stats={[1]="damage_+%_with_shield_skills"}},[4267]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Shield Skills per 2%% Chance to Block Attack Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Shield Skills per 2%% Chance to Block Attack Damage"}}},stats={[1]="damage_+%_with_shield_skills_per_2%_attack_block"}},[4268]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage taken from Mana before Life while affected by Clarity"}}},stats={[1]="damage_removed_from_mana_before_life_%_while_affected_by_clarity"}},[4269]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage is taken from Mana before Life while Focussed"}}},stats={[1]="damage_removed_from_mana_before_life_%_while_focused"}},[4270]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMinionsOverMatter"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage from Hits is taken from your Spectres' Life before you"}}},stats={[1]="damage_removed_from_spectres_before_life_or_es_%"}},[4271]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage Taken for 4 seconds after Spending a total of 200 Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage Taken for 4 seconds after Spending a total of 200 Mana"}}},stats={[1]="damage_taken_+%_for_4_seconds_after_spending_200_mana"}},[4272]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken while there are at least two Rare or Unique Enemies nearby"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced 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"}},[4273]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken while Elusive"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken while Elusive"}}},stats={[1]="damage_taken_+%_while_affected_by_elusive"}},[4274]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage taken gained as Life over 4 seconds when Hit"}}},stats={[1]="damage_taken_goes_to_life_over_4_seconds_%"}},[4275]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage taken gained as Mana over 4 seconds when Hit while affected by Clarity"}}},stats={[1]="damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity"}},[4276]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken per 250 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken per 250 Dexterity"}}},stats={[1]="damage_taken_per_250_dexterity_+%"}},[4277]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken per 250 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken per 250 Intelligence"}}},stats={[1]="damage_taken_per_250_intelligence_+%"}},[4278]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken per 250 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken per 250 Strength"}}},stats={[1]="damage_taken_per_250_strength_+%"}},[4279]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken per Ghost Shroud"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken per Ghost Shroud"}}},stats={[1]="damage_taken_per_ghost_dance_stack_+%"}},[4280]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage Taken per Summoned Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage Taken per Summoned Totem"}}},stats={[1]="damage_taken_+%_final_per_totem"}},[4281]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken if you haven't been Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken if you haven't been Hit Recently"}}},stats={[1]="damage_taken_+%_if_have_not_been_hit_recently"}},[4282]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken while Leeching"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken while Leeching"}}},stats={[1]="damage_taken_+%_while_leeching"}},[4283]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},[2]={k="reminderstring",v="ReminderTextDealsDamageFaster"},limit={[1]={[1]="#",[2]="#"}},text="Damaging Ailments deal damage %1%%% faster"}}},stats={[1]="damaging_ailments_deal_damage_+%_faster"}},[4284]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Bane has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Bane has %1%%% reduced Area of Effect"}}},stats={[1]="dark_ritual_area_of_effect_+%"}},[4285]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Bane deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Bane deals %1%%% reduced Damage"}}},stats={[1]="dark_ritual_damage_+%"}},[4286]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Curses applied by Bane"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Curses applied by Bane"}}},stats={[1]="dark_ritual_linked_curse_effect_+%"}},[4287]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles deal %1%%% more Damage for each remaining Chain"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles deal %1%%% less Damage for each remaining Chain"}}},stats={[1]="deadeye_projectile_damage_+%_final_for_each_remaining_chain"}},[4288]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Hits inflict Decay, dealing 500 Chaos Damage per second for 8 seconds"}}},stats={[1]="deal_1000_chaos_damage_per_second_for_10_seconds_on_hit"}},[4289]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Hits inflict Decay, dealing %1% Chaos Damage per second for 8 seconds"}}},stats={[1]="deal_chaos_damage_per_second_for_10_seconds_on_hit"}},[4290]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deal Double Damage to Enemies that are on Full Life"}}},stats={[1]="deal_double_damage_to_enemies_on_full_life"}},[4291]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deal no Elemental Damage"}}},stats={[1]="deal_no_elemental_damage"}},[4292]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Deal no Non-Elemental Damage"}}},stats={[1]="deal_no_non_elemental_damage"}},[4293]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSlowTimeEffects"},limit={[1]={[1]=1,[2]="#"}},text="Debuffs on you expire %1%%% slower while affected by Haste"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Debuffs on you expire %1%%% faster while affected by Haste"}}},stats={[1]="debuff_time_passed_-%_while_affected_by_haste"}},[4294]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Debuffs on you expire %1%%% faster"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextSlowTimeEffects"},limit={[1]={[1]="#",[2]=-1}},text="Debuffs on you expire %1%%% slower"}}},stats={[1]="debuff_time_passed_+%"}},[4295]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]="#",[2]="#"}},text="Defences of Items attached to Animated Guardian also apply to Animated Weapons"}}},stats={[1]="defences_from_animated_guardians_items_apply_to_animated_weapon"}},[4296]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Malevolence has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Malevolence has %1%%% reduced Aura Effect"}}},stats={[1]="delirium_aura_effect_+%"}},[4297]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Malevolence has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Malevolence has %1%%% reduced Mana Reservation"}}},stats={[1]="delirium_mana_reservation_+%"}},[4298]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Malevolence Reserves no Mana"}}},stats={[1]="delirium_reserves_no_mana"}},[4299]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Despair Curse Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Despair Curse Effect"}}},stats={[1]="despair_curse_effect_+%"}},[4300]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Despair Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Despair Duration"}}},stats={[1]="despair_duration_+%"}},[4301]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Determination Reserves no Mana"}}},stats={[1]="determination_reserves_no_mana"}},[4302]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dexterity if Strength is higher than Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dexterity if Strength is higher than Intelligence"}}},stats={[1]="dexterity_+%_if_strength_higher_than_intelligence"}},[4303]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Dexterity Skill Gems"}}},stats={[1]="dexterity_skill_gem_level_+"}},[4304]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage if Triggered"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage if Triggered"}}},stats={[1]="discharge_triggered_damage_+%_final"}},[4305]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Discipline Reserves no Mana"}}},stats={[1]="discipline_reserves_no_mana"}},[4306]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains waves of Monsters"}}},stats={[1]="display_cowards_trial_waves_of_monsters"}},[4307]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains additional waves of Undead Monsters"}}},stats={[1]="display_cowards_trial_waves_of_undead_monsters"}},[4308]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Only applies Curses from Skill Gems requiring Level %1% or lower"}}},stats={[1]="display_dark_ritual_curse_max_skill_level_requirement"}},[4309]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss is augmented by Player choices"}}},stats={[1]="display_map_augmentable_boss"}},[4310]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Lunaris fanatics"}}},stats={[1]="display_map_inhabited_by_lunaris_fanatics"}},[4311]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Solaris fanatics"}}},stats={[1]="display_map_inhabited_by_solaris_fanatics"}},[4312]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains Einhar"},[2]={limit={[1]={[1]=2,[2]=2}},text="Area contains Einhar"},[3]={limit={[1]={[1]=3,[2]=3}},text="Area contains Alva"},[4]={limit={[1]={[1]=4,[2]=4}},text="Area contains Alva"},[5]={limit={[1]={[1]=5,[2]=5}},text="Area contains Niko"},[6]={limit={[1]={[1]=6,[2]=6}},text="Area contains Jun"},[7]={limit={[1]={[1]=7,[2]=7}},text="Area contains Zana"}}},stats={[1]="display_map_mission_id"}},[4313]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Contains additional Divination Cards that give Shaper or Elder items"}}},stats={[1]="display_strongbox_drops_additional_shaper_or_elder_cards"}},[4314]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Divine Ire's beam has %1%%% increased width"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Divine Ire's beam has %1%%% reduced width"}}},stats={[1]="divine_tempest_beam_width_+%"}},[4315]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Divine Ire deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Divine Ire deals %1%%% reduced Damage"}}},stats={[1]="divine_tempest_damage_+%"}},[4316]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Divine Ire Damages an additional nearby Enemy when gaining Stages"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Divine Ire Damages %1% additional nearby Enemies when gaining Stages"}}},stats={[1]="divine_tempest_number_of_additional_nearby_enemies_to_zap"}},[4317]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack and Spell Hits per 500 Maximum Mana, up to 20%%"}}},stats={[1]="dodge_attacks_and_spell_chance_%_per_500_maximum_mana_up_to_20"}},[4318]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Dodge Attack and Spell Hits if you've\nbeen Hit Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=100,[2]="#"}},text="Dodge all Attack and Spell Hits if you've\nbeen Hit Recently"}}},stats={[1]="dodge_attacks_and_spells_%_chance_if_have_been_hit_recently"}},[4319]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to Dodge Attack Hits while Focussed"}}},stats={[1]="dodge_attacks_chance_%_during_focus"}},[4320]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits if you have Blocked Recently"}}},stats={[1]="dodge_attacks_chance_%_if_you_have_blocked_recently"}},[4321]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits while moving"}}},stats={[1]="dodge_attacks_chance_%_while_moving"}},[4322]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack Hits while holding a Shield"}}},stats={[1]="dodge_chance_%_while_holding_shield"}},[4323]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Spell Hits while moving"}}},stats={[1]="dodge_spells_chance_%_while_moving"}},[4324]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier while affected by Malevolence"}}},stats={[1]="dot_multiplier_+_while_affected_by_malevolence"}},[4325]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Bow Skills have +%1%%% to Damage over Time Multiplier"}}},stats={[1]="dot_multiplier_+_with_bow_skills"}},[4326]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to deal Double Damage while wielding a Mace, Sceptre or Staff"}}},stats={[1]="double_damage_%_chance_while_wielding_mace_sceptre_staff"}},[4327]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Lacerate deals %1% to %2% added Physical Damage against Bleeding Enemies"}}},stats={[1]="double_slash_minimum_added_physical_damage_vs_bleeding_enemies",[2]="double_slash_maximum_added_physical_damage_vs_bleeding_enemies"}},[4328]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Double Strike has a %1%%% chance to deal Double Damage to Bleeding Enemies"}}},stats={[1]="double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies"}},[4329]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Dread Banner has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Dread Banner has %1%%% reduced Aura Effect"}}},stats={[1]="dread_banner_aura_effect_+%"}},[4330]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Dual Strike has a %1%%% chance to deal Double Damage with the Main-Hand Weapon"},[2]={limit={[1]={[1]=100,[2]=100}},text="Dual Strike deals Double Damage with the Main-Hand Weapon"}}},stats={[1]="dual_strike_main_hand_deals_double_damage_%"}},[4331]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Dual Strike deals Off-Hand Splash Damage to surrounding targets"}}},stats={[1]="dual_strike_melee_splash_with_off_hand_weapon"}},[4332]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Elemental Damage per Inspiration Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Elemental Damage per Inspiration Charge"}}},stats={[1]="elemental_damage_+%_final_per_righteous_charge"}},[4333]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage if you've Killed a Cursed Enemy Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage if you've Killed a Cursed Enemy Recently"}}},stats={[1]="elemental_damage_+%_if_cursed_enemy_killed_recently"}},[4334]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage if you've Chilled an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage if you've Chilled an Enemy Recently"}}},stats={[1]="elemental_damage_+%_if_enemy_chilled_recently"}},[4335]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage if you've Ignited an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage if you've Ignited an Enemy Recently"}}},stats={[1]="elemental_damage_+%_if_enemy_ignited_recently"}},[4336]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage if you've Shocked an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage if you've Shocked an Enemy Recently"}}},stats={[1]="elemental_damage_+%_if_enemy_shocked_recently"}},[4337]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage if you've dealt a Critical Strike Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="elemental_damage_+%_if_have_crit_recently"}},[4338]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Elemental Damage if you've used a Warcry Recently"}}},stats={[1]="elemental_damage_+%_if_used_a_warcry_recently"}},[4339]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per 10 Devotion"}}},stats={[1]="elemental_damage_+%_per_10_devotion"}},[4340]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per 10 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per 10 Dexterity"}}},stats={[1]="elemental_damage_+%_per_10_dexterity"}},[4341]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per 12 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per 12 Intelligence"}}},stats={[1]="elemental_damage_+%_per_12_int"}},[4342]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per 12 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per 12 Strength"}}},stats={[1]="elemental_damage_+%_per_12_strength"}},[4343]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per Power charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per Power charge"}}},stats={[1]="elemental_damage_+%_per_power_charge"}},[4344]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage per Sextant affecting the area"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage per Sextant affecting the area"}}},stats={[1]="elemental_damage_+%_per_sextant_affecting_area"}},[4345]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage while affected by a Herald"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage while affected by a Herald"}}},stats={[1]="elemental_damage_+%_while_affected_by_a_herald"}},[4346]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage while in an area affected by a Sextant"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage while in an area affected by a Sextant"}}},stats={[1]="elemental_damage_+%_while_in_area_affected_by_sextant"}},[4347]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Elemental Damage taken per Raised Zombie"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Elemental Damage taken per Raised Zombie"}}},stats={[1]="elemental_damage_taken_+%_final_per_raised_zombie"}},[4348]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken from Hits per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken from Hits per Endurance Charge"}}},stats={[1]="elemental_damage_taken_from_hits_+%_per_endurance_charge"}},[4349]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken if you haven't\nbeen Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken if you haven't\nbeen Hit Recently"}}},stats={[1]="elemental_damage_taken_+%_if_not_hit_recently"}},[4350]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken while you have an Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken while you have an Endurance Charge"}}},stats={[1]="elemental_damage_taken_+%_if_you_have_an_endurance_charge"}},[4351]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken per Endurance Charge"}}},stats={[1]="elemental_damage_taken_+%_per_endurance_charge"}},[4352]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage taken while stationary"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage taken while stationary"}}},stats={[1]="elemental_damage_taken_+%_while_stationary"}},[4353]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Attack Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Attack Skills"}}},stats={[1]="elemental_damage_with_attack_skills_+%"}},[4354]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elemental Damage with Attack Skills per Power Charge"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elemental Damage with Attack Skills per Power Charge"}}},stats={[1]="elemental_damage_with_attack_skills_+%_per_power_charge"}},[4355]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Hit and Wild Strike cannot choose Cold"}}},stats={[1]="elemental_hit_cannot_roll_cold_damage"}},[4356]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Hit and Wild Strike cannot choose Fire"}}},stats={[1]="elemental_hit_cannot_roll_fire_damage"}},[4357]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Hit and Wild Strike cannot choose Lightning"}}},stats={[1]="elemental_hit_cannot_roll_lightning_damage"}},[4358]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Hit and Wild Strike deal 50%% less Cold Damage"}}},stats={[1]="elemental_hit_deals_50%_less_cold_damage"}},[4359]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Hit and Wild Strike deal 50%% less Fire Damage"}}},stats={[1]="elemental_hit_deals_50%_less_fire_damage"}},[4360]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Elemental Hit and Wild Strike deal 50%% less Lightning Damage"}}},stats={[1]="elemental_hit_deals_50%_less_lightning_damage"}},[4361]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% Elemental Resistances while you have a Power Charge"}}},stats={[1]="elemental_penetration_%_if_you_have_a_power_charge"}},[4362]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and your Minions take %1%%% increased Reflected Elemental Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You and your Minions take %1%%% reduced Reflected Elemental Damage"}}},stats={[1]="elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%"}},[4363]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Elemental Damage taken while affected by Purity of Elements"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Elemental Damage taken while affected by Purity of Elements"}}},stats={[1]="elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements"}},[4364]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances per Minion, up to 30%%"}}},stats={[1]="elemental_resistance_%_per_minion_up_to_30%"}},[4365]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances per 10 Devotion"}}},stats={[1]="elemental_resistance_%_per_10_devotion"}},[4366]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Blind nearby Enemies when you use an Elemental Skill"}}},stats={[1]="elemental_skill_chance_to_blind_nearby_enemies_%"}},[4367]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% increased Area of Effect for 5 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Gain %1%%% reduced Area of Effect for 5 seconds"}}},stats={[1]="elementalist_area_of_effect_+%_for_5_seconds"}},[4368]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextConsecutive"},limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% increased Elemental Damage for 5 seconds"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextConsecutive"},limit={[1]={[1]="#",[2]=-1}},text="Gain %1%%% reduced Elemental Damage for 5 seconds"}}},stats={[1]="elementalist_elemental_damage_+%_for_5_seconds"}},[4369]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Every 14 seconds:\nGain Chilling Conflux for 4 seconds\nGain Shocking Conflux for 4 seconds\nGain Igniting Conflux for 4 seconds\nGain Chilling, Shocking and Igniting Conflux for 2 seconds"}}},stats={[1]="elementalist_gain_shaper_of_desolation_every_10_seconds"}},[4370]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Ignite"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Ignite"}}},stats={[1]="elementalist_ignite_damage_+%_final"}},[4371]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Elusive Effect"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Elusive Effect"}}},stats={[1]="elusive_effect_+%"}},[4372]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate if you've cast a Spell Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate if you've cast a Spell Recently"}}},stats={[1]="enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently"}},[4373]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain an Endurance Charge on Kill while holding a Shield"}}},stats={[1]="endurance_charge_on_kill_percent_chance_while_holding_shield"}},[4374]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage per Endurance Charge"}}},stats={[1]="endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"}},[4375]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Chilled by your Hits are Shocked"}}},stats={[1]="enemies_chilled_by_your_hits_are_shocked"}},[4376]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies you Kill Explode, dealing %1%%% of their Life as Physical Damage"}}},stats={[1]="enemies_explode_for_%_life_as_physical_damage"}},[4377]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Killed with Attack Hits have a %1%%% chance to Explode, dealing a tenth of their Life as Physical Damage"}}},stats={[1]="enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage"}},[4378]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Killed with Wand Hits have a %1%%% chance to Explode, dealing a quarter of their Life as Chaos Damage"}}},stats={[1]="enemies_explode_on_death_by_wand_hit_for_25%_life_as_chaos_damage_%_chance"}},[4379]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies you hit are destroyed on Kill"}}},stats={[1]="enemies_explode_on_kill"}},[4380]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]="#",[2]="#"}},text="Lightning Damage from Enemies Hitting you is Lucky"}}},stats={[1]="enemies_extra_damage_rolls_with_lightning_damage"}},[4381]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFungalGround"},limit={[1]={[1]=1,[2]=99}},text="Enemies on Fungal Ground you Kill have %1%%% chance to Explode, dealing 5%% of their Life as Chaos Damage"},[2]={[1]={k="reminderstring",v="ReminderTextFungalGround"},limit={[1]={[1]=100,[2]="#"}},text="Enemies on Fungal Ground you Kill Explode, dealing 5%% of their Life as Chaos Damage"}}},stats={[1]="enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance"}},[4382]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSpawnCorpse"},[2]={k="reminderstring",v="ReminderTextRecently"},[3]={k="reminderstring",v="ReminderTextShockNonHitNoDuration"},[4]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]="#",[2]="#"}},text="Enemies near corpses you Spawned Recently are Chilled and Shocked"}}},stats={[1]="enemies_near_corpses_created_recently_are_shocked_and_chilled"}},[4383]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies near corpses affected by your Curses are Blinded\nEnemies Killed near corpses affected by your Curses explode, dealing\n%1%%% of their Life as Physical Damage"}}},stats={[1]="enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage"}},[4384]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Poisoned by you cannot Regenerate Life"}}},stats={[1]="enemies_poisoned_by_you_cannot_regen_life"}},[4385]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Shocked by your Hits are Chilled"}}},stats={[1]="enemies_shocked_by_your_hits_are_chilled"}},[4386]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Taunted by you cannot Evade Attacks"}}},stats={[1]="enemies_taunted_by_you_cannot_evade_attacks"}},[4387]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="Enemies Taunted by your Warcries are Intimidated"}}},stats={[1]="enemies_taunted_by_your_warcies_are_intimidated"}},[4388]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnnerve"},limit={[1]={[1]="#",[2]="#"}},text="Enemies Taunted by your Warcries are Unnerved"}}},stats={[1]="enemies_taunted_by_your_warcries_are_unnerved"}},[4389]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Enemies that have Hit you with an Attack Recently have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Enemies that have Hit you with an Attack Recently have %1%%% reduced Attack Speed"}}},stats={[1]="enemies_that_hit_you_with_attack_recently_attack_speed_+%"}},[4390]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="Enemies you Curse are Intimidated"}}},stats={[1]="enemies_you_curse_are_intimidated"}},[4391]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnnerve"},limit={[1]={[1]="#",[2]="#"}},text="Enemies you Curse are Unnerved"}}},stats={[1]="enemies_you_curse_are_unnerved"}},[4392]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]="#",[2]="#"}},text="Enemies you Curse are Hindered, with 15%% reduced Movement Speed"}}},stats={[1]="enemies_you_curse_have_15%_hinder"}},[4393]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Enemies have %1%%% increased Evasion if you have Hit them Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Enemies have %1%%% reduced Evasion if you have Hit them Recently"}}},stats={[1]="enemy_evasion_+%_if_you_have_hit_them_recently"}},[4394]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]=1,[2]="#"}},text="Damage from Enemies Hitting you is Lucky while you are on Full Life"},[2]={[1]={k="reminderstring",v="ReminderTextUnlucky"},limit={[1]={[1]="#",[2]=-1}},text="Damage from Enemies Hitting you is Unlucky while you are on Full Life"}}},stats={[1]="enemy_extra_damage_rolls_when_on_full_life"}},[4395]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% faster start of Energy Shield Recharge while affected by Discipline"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% slower start of Energy Shield Recharge while affected by Discipline"}}},stats={[1]="energy_shield_delay_-%_while_affected_by_discipline"}},[4396]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Energy Shield gained for each Enemy Hit while affected by Discipline"}}},stats={[1]="energy_shield_gain_per_target_hit_while_affected_by_discipline"}},[4397]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Energy Shield for each Enemy you Hit which is affected by a Spider's Web"}}},stats={[1]="energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web"}},[4398]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Lightning Damage is Leeched as Energy Shield while affected by Wrath"}}},stats={[1]="energy_shield_leech_from_lightning_damage_permyriad_while_affected_by_wrath"}},[4399]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="If a skill deals at least 25%% Fire Damage, it leeches %1%%% of damage dealt as Energy Shield"}}},stats={[1]="energy_shield_leech_if_hit_is_at_least_25_%_fire_damage_permyriad"}},[4400]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextEnergyShieldLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Energy Shield against Frozen Enemies"}}},stats={[1]="energy_shield_leech_permyriad_vs_frozen_enemies"}},[4401]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="You lose %1%%% of Energy Shield per second"}}},stats={[1]="energy_shield_lost_per_minute_%"}},[4402]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Maximum Energy Shield per Level"}}},stats={[1]="energy_shield_per_level"}},[4403]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Energy Shield per 10 Strength"}}},stats={[1]="energy_shield_+%_per_10_strength"}},[4404]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Energy Shield per Power Charge"}}},stats={[1]="energy_shield_+%_per_power_charge"}},[4405]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Energy Shield Recharge starts when you are Stunned"}}},stats={[1]="energy_shield_recharge_start_when_stunned"}},[4406]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Energy Shield Recharge to start when you use a Skill"}}},stats={[1]="energy_shield_recharges_on_skill_use_chance_%"}},[4407]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Recovery Rate while affected by Discipline"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Recovery Rate while affected by Discipline"}}},stats={[1]="energy_shield_recovery_rate_while_affected_by_discipline_+%"}},[4408]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Energy Shield per second if you’ve Cursed an Enemy Recently"}}},stats={[1]="energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently"}},[4409]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Energy Shield per second if you’ve Killed an Enemy Recently"}}},stats={[1]="energy_shield_regeneration_%_per_minute_if_enemy_killed_recently"}},[4410]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Energy Shield per second while a Rare or Unique Enemy is Nearby"}}},stats={[1]="energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby"}},[4411]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Energy Shield per Second per Poison on you, up to 250 per second"}}},stats={[1]="energy_shield_regeneration_rate_per_minute_per_poison_stack"}},[4412]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield per second if you've Hit an Enemy Recently"}}},stats={[1]="energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently"}},[4413]={lang={English={[1]={[1]={k="per_minute_to_per_second_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield per Second while affected by Discipline"}}},stats={[1]="energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline"}},[4414]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Energy Shield per Second while on Consecrated Ground"}}},stats={[1]="energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground"}},[4415]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Energy Shield per second"}}},stats={[1]="energy_shield_regeneration_rate_per_second"}},[4416]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Energy Shield Regeneration rate"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Energy Shield Regeneration rate"}}},stats={[1]="energy_shield_regeneration_rate_+%"}},[4417]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ensnaring Arrow has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ensnaring Arrow has %1%%% reduced Area of Effect"}}},stats={[1]="ensnaring_arrow_area_of_effect_+%"}},[4418]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ensnaring Arrow has %1%%% increased Debuff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ensnaring Arrow has %1%%% reduced Debuff Effect"}}},stats={[1]="ensnaring_arrow_debuff_effect_+%"}},[4419]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Envy Reserves no Mana"}}},stats={[1]="envy_reserves_no_mana"}},[4420]={lang={English={[1]={[1]={k="per_minute_to_per_second_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield per second while stationary"}}},stats={[1]="es_regeneration_per_minute_%_while_stationary"}},[4421]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Ethereal Knives fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Ethereal Knives fires %1% additional Projectiles"}}},stats={[1]="ethereal_knives_number_of_additional_projectiles"}},[4422]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Ethereal Knives Pierces an additional Target "},[2]={limit={[1]={[1]=2,[2]="#"}},text="Ethereal Knives Pierces %1% additional Targets"}}},stats={[1]="ethereal_knives_projectile_base_number_of_targets_to_pierce"}},[4423]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ethereal Knives fires Projectiles in a circle"}}},stats={[1]="ethereal_knives_projectiles_nova"}},[4424]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Evasion Rating per 10 Intelligence"}}},stats={[1]="evasion_+%_per_10_intelligence"}},[4425]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUncappedResist"},limit={[1]={[1]="#",[2]="#"}},text="Evasion Rating is increased by Uncapped Cold Resistance"}}},stats={[1]="evasion_rating_increased_by_uncapped_cold_resistance"}},[4426]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Evasion Rating is Regenerated as Life per second while Focussed"}}},stats={[1]="evasion_rating_%_as_life_regeneration_per_minute_during_focus"}},[4427]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating if Hit an Enemy Recently"}}},stats={[1]="evasion_rating_+_if_you_have_hit_an_enemy_recently"}},[4428]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Evasion Rating while you have Tailwind"}}},stats={[1]="evasion_rating_+_while_you_have_tailwind"}},[4429]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion if you have Hit an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion if you have Hit an Enemy Recently"}}},stats={[1]="evasion_rating_+%_if_you_have_hit_an_enemy_recently"}},[4430]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Evasion Rating when on Full Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Evasion Rating when on Full Life"}}},stats={[1]="evasion_rating_+%_when_on_full_life"}},[4431]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion while Leeching"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion while Leeching"}}},stats={[1]="evasion_rating_+%_while_leeching"}},[4432]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Evasion Rating while moving"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Evasion Rating while moving"}}},stats={[1]="evasion_rating_+%_while_moving"}},[4433]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Incinerate has %1$+d to maximum stages"}}},stats={[1]="expanding_fire_cone_additional_maximum_number_of_stages"}},[4434]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Incinerate has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Incinerate has %1%%% reduced Area of Effect"}}},stats={[1]="expanding_fire_cone_area_of_effect_+%"}},[4435]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Explosive Arrow has %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Explosive Arrow has %1%%% reduced Duration"}}},stats={[1]="explosive_arrow_duration_+%"}},[4436]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]=1,[2]="#"}},text="Your Critical Strike Chance is Lucky while Focussed"},[2]={[1]={k="reminderstring",v="ReminderTextUnlucky"},limit={[1]={[1]="#",[2]=-1}},text="Your Critical Strike Chance is Unlucky while Focussed"}}},stats={[1]="extra_critical_rolls_during_focus"}},[4437]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lightning Damage with Non-Critical Strikes is Lucky"}}},stats={[1]="extra_damage_rolls_with_lightning_damage_on_non_critical_hits"}},[4438]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% increased Extra Damage from Critical Strikes while affected by Determination"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You take %1%%% reduced Extra Damage from Critical Strikes while affected by Determination"}}},stats={[1]="extra_damage_taken_from_crit_+%_while_affected_by_determination"}},[4439]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% increased Extra Damage from Critical Strikes while you have no Power Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You take %1%%% reduced Extra Damage from Critical Strikes while you have no Power Charges"}}},stats={[1]="extra_damage_taken_from_crit_while_no_power_charges_+%"}},[4440]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDealsDamageFaster"},limit={[1]={[1]="#",[2]="#"}},text="Bleeding you inflict deals Damage %1%%% faster"}}},stats={[1]="faster_bleed_%"}},[4441]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},[2]={k="reminderstring",v="ReminderTextDealsDamageFaster"},limit={[1]={[1]="#",[2]="#"}},text="Poisons you inflict deal Damage %1%%% faster"}}},stats={[1]="faster_poison_%"}},[4442]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Fire and Chaos Resistances"}}},stats={[1]="fire_and_chaos_damage_resistance_%"}},[4443]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Scorching Ray Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Scorching Ray Cast Speed"}}},stats={[1]="fire_beam_cast_speed_+%"}},[4444]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Scorching Ray Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Scorching Ray Damage"}}},stats={[1]="fire_beam_damage_+%"}},[4445]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Scorching Ray debuff spreads to nearby Enemies on death"}}},stats={[1]="fire_beam_degen_spread_to_enemies_in_radius_on_kill"}},[4446]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Scorching Ray Debuff applies %1$+d%% Fire Resistance at max stages"}}},stats={[1]="fire_beam_enemy_fire_resistance_%_at_max_stacks"}},[4447]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Scorching Ray Debuff applies %1$+d%% Fire Resistance per stage"}}},stats={[1]="fire_beam_enemy_fire_resistance_%_per_stack"}},[4448]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Scorching Ray beam length"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Scorching Ray beam length"}}},stats={[1]="fire_beam_length_+%"}},[4449]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Fire Damage over Time Multiplier while Burning"}}},stats={[1]="fire_damage_over_time_multiplier_+%_while_burning"}},[4450]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Fire Damage as Extra Chaos Damage per Endurance Charge"}}},stats={[1]="fire_damage_%_to_add_as_chaos_per_endurance_charge"}},[4451]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage if you have been Hit Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage if you have been Hit Recently"}}},stats={[1]="fire_damage_+%_if_you_have_been_hit_recently"}},[4452]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage if you have used a Cold Skill Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage if you have used a Cold Skill Recently"}}},stats={[1]="fire_damage_+%_if_you_have_used_a_cold_skill_recently"}},[4453]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage per 20 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage per 20 Strength"}}},stats={[1]="fire_damage_+%_per_20_strength"}},[4454]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage per Endurance Charge"}}},stats={[1]="fire_damage_+%_per_endurance_charge"}},[4455]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Hits and Ailments against Bleeding Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Hits and Ailments against Bleeding Enemies"}}},stats={[1]="fire_damage_+%_vs_bleeding_enemies"}},[4456]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage while affected by Anger"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage while affected by Anger"}}},stats={[1]="fire_damage_+%_while_affected_by_anger"}},[4457]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage while affected by Herald of Ash"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage while affected by Herald of Ash"}}},stats={[1]="fire_damage_+%_while_affected_by_herald_of_ash"}},[4458]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Fire Resistance while affected by Herald of Ash"}}},stats={[1]="fire_damage_resistance_%_while_affected_by_herald_of_ash"}},[4459]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage taken while moving"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage taken while moving"}}},stats={[1]="fire_damage_taken_+%_while_moving"}},[4460]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Take %1% Fire Damage when you Ignite an Enemy"}}},stats={[1]="fire_damage_taken_when_enemy_ignited"}},[4461]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Attack Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Attack Skills"}}},stats={[1]="fire_damage_with_attack_skills_+%"}},[4462]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Damage with Spell Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Damage with Spell Skills"}}},stats={[1]="fire_damage_with_spell_skills_+%"}},[4463]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% of Fire Resistance if you have Blocked Recently"}}},stats={[1]="fire_penetration_%_if_you_have_blocked_recently"}},[4464]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Fire Damage taken while affected by Purity of Fire"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Fire Damage taken while affected by Purity of Fire"}}},stats={[1]="fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire"}},[4465]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFireExposure"},limit={[1]={[1]=1,[2]="#"}},text="Fire Skills have a %1%%% chance to apply Fire Exposure on Hit"}}},stats={[1]="fire_skill_chance_to_inflict_fire_exposure_%"}},[4466]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Fire Skill Gems"}}},stats={[1]="fire_skill_gem_level_+"}},[4467]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Fire Skills have %1%%% chance to Poison on Hit"}}},stats={[1]="fire_skills_chance_to_poison_on_hit_%"}},[4468]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Fire Spells have %1%%% of Physical Damage Converted to Fire Damage"}}},stats={[1]="fire_spell_physical_damage_%_to_convert_to_fire"}},[4469]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fire Trap Burning Ground Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fire Trap Burning Ground Duration"}}},stats={[1]="fire_trap_burning_ground_duration_+%"}},[4470]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Fire Trap throws up to 1 additional Trap"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Fire Trap throws up to %1% additional Traps"}}},stats={[1]="fire_trap_number_of_additional_traps_to_throw"}},[4471]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Consecrated Ground from Holy Flame Totem applies %1%%% increased Damage taken to Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Consecrated Ground from Holy Flame Totem applies %1%%% reduced Damage taken to Enemies"}}},stats={[1]="flame_totem_consecrated_ground_enemy_damage_taken_+%"}},[4472]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flamethrower Trap has %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flamethrower Trap has %1%%% reduced Cast Speed"}}},stats={[1]="flamethrower_tower_trap_cast_speed_+%"}},[4473]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flamethrower Trap has %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flamethrower Trap has %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="flamethrower_tower_trap_cooldown_speed_+%"}},[4474]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flamethrower Trap deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flamethrower Trap deals %1%%% reduced Damage"}}},stats={[1]="flamethrower_tower_trap_damage_+%"}},[4475]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Flamethrower Trap has %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Flamethrower Trap has %1%%% reduced Skill Effect Duration"}}},stats={[1]="flamethrower_tower_trap_duration_+%"}},[4476]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Flamethrower Trap has an additional Flame"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Flamethrower Trap has %1% additional Flames"}}},stats={[1]="flamethrower_tower_trap_number_of_additional_flamethrowers"}},[4477]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage against Burning Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage against Burning Enemies"}}},stats={[1]="flamethrower_trap_damage_+%_final_vs_burning_enemies"}},[4478]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life and Mana Recovery from Flasks"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life and Mana Recovery from Flasks"}}},stats={[1]="flask_life_and_mana_to_recover_+%"}},[4479]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovery from Flasks while affected by Vitality"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Recovery from Flasks while affected by Vitality"}}},stats={[1]="flask_life_recovery_+%_while_affected_by_vitality"}},[4480]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Life and Mana Recovery from Flasks are instant"}}},stats={[1]="flask_recovery_is_instant"}},[4481]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Focus has +1 Cooldown"}}},stats={[1]="focus_cooldown_modifier_ms"}},[4482]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Focus has %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Focus has %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="focus_cooldown_speed_+%"}},[4483]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Fortify Duration per 10 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Fortify Duration per 10 Strength"}}},stats={[1]="fortify_duration_+%_per_10_strength"}},[4484]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Fortify on you while Stationary"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Fortify on you while Stationary"}}},stats={[1]="fortify_effect_on_self_+%_while_stationary"}},[4485]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Fortify on you while Focussed"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Fortify on you while Focussed"}}},stats={[1]="fortify_effect_+%_while_focused"}},[4486]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]="#"}},text="Grants Fortify on hit"}}},stats={[1]="fortify_on_hit"}},[4487]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Freezing Pulse Damage if you've Shattered an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Freezing Pulse Damage if you've Shattered an Enemy Recently"}}},stats={[1]="freezing_pulse_damage_+%_if_enemy_shattered_recently"}},[4488]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Freezing Pulse fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Freezing Pulse fires %1% additional Projectiles"}}},stats={[1]="freezing_pulse_number_of_additional_projectiles"}},[4489]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Frenzy Charge on Kill while holding a Shield"}}},stats={[1]="frenzy_charge_on_kill_percent_chance_while_holding_shield"}},[4490]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Frost Blades Melee Damage Penetrates %1%%% Cold Resistance"}}},stats={[1]="frost_blades_melee_damage_penetrates_%_cold_resistance"}},[4491]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vortex has %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vortex has %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="frost_bolt_nova_cooldown_speed_+%"}},[4492]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Frost Bomb has %1%%% increased Debuff Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Frost Bomb has %1%%% reduced Debuff Duration"}}},stats={[1]="frost_bomb_buff_duration_+%"}},[4493]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Winter Orb has +%1% Maximum Stages"}}},stats={[1]="frost_fury_additional_max_number_of_stages"}},[4494]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Winter Orb has %1%%% increased Area of Effect per Stage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Winter Orb has %1%%% reduced Area of Effect per Stage"}}},stats={[1]="frost_fury_area_of_effect_+%_per_stage"}},[4495]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Winter Orb deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Winter Orb deals %1%%% reduced Damage"}}},stats={[1]="frost_fury_damage_+%"}},[4496]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Frostbolt fires %1% additional Projectiles"}}},stats={[1]="frostbolt_number_of_additional_projectiles"}},[4497]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Frostbolt Projectiles gain %1%%% increased Projectile Speed per second"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Frostbolt Projectiles gain %1%%% reduced Projectile Speed per second"}}},stats={[1]="frostbolt_projectile_acceleration"}},[4498]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFungalGround"},limit={[1]={[1]="#",[2]="#"}},text="You have Fungal Ground around you while stationary"}}},stats={[1]="fungal_ground_while_stationary_radius"}},[4499]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="When you Kill a Rare Monster, %1%%% chance to gain one of its Modifiers for 10 seconds"}}},stats={[1]="gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance"}},[4500]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Gain a Frenzy Charge after Spending a total of 200 Mana"},[2]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1% Frenzy Charges after Spending a total of 200 Mana"}}},stats={[1]="gain_X_frenzy_charges_after_spending_200_mana"}},[4501]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1% Life when you Stun an Enemy"}}},stats={[1]="gain_X_life_on_stun"}},[4502]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Power Charges when you Warcry"}}},stats={[1]="gain_X_power_charges_on_using_a_warcry"}},[4503]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain Accuracy Rating equal to your Strength"}}},stats={[1]="gain_accuracy_rating_equal_to_strength"}},[4504]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAdrenaline"},limit={[1]={[1]=1,[2]="#"}},text="Gain Adrenaline for %1% seconds when you reach Low Life if you\ndo not have Adrenaline"}}},stats={[1]="gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline"}},[4505]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Kills grant an additional Vaal Soul if you have Rampaged Recently"}}},stats={[1]="gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently"}},[4506]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]="#"}},text="Gain Arcane Surge after Channelling for 1 second"}}},stats={[1]="gain_arcane_surge_for_4_seconds_after_channelling_for_1_second"}},[4507]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]="#"}},text="Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry"}}},stats={[1]="gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry"}},[4508]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Gain Arcane Surge when you deal a Critical Strike"},[2]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=100,[2]="#"}},text="Gain Arcane Surge when you deal a Critical Strike"}}},stats={[1]="gain_arcane_surge_on_crit_%_chance"}},[4509]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]="#"}},text="Gain Arcane Surge on Hit with Spells if you have at least 150 Devotion"}}},stats={[1]="gain_arcane_surge_on_hit_at_devotion_threshold"}},[4510]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Gain Arcane Surge on Hit with Spells while at maximum Power Charges"},[2]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=100,[2]="#"}},text="Gain Arcane Surge on Hit with Spells while at maximum Power Charges"}}},stats={[1]="gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%"}},[4511]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Gain Arcane Surge on Hit with Spells"},[2]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=100,[2]="#"}},text="Gain Arcane Surge on Hit with Spells"}}},stats={[1]="gain_arcane_surge_on_hit_%_chance"}},[4512]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain Arcane Surge when you Hit a Unique enemy"}}},stats={[1]="gain_arcane_surge_on_hit_vs_unique_enemy_%_chance"}},[4513]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain Arcane Surge when you Kill an Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]=100,[2]="#"}},text="Gain Arcane Surge when you Kill an Enemy"}}},stats={[1]="gain_arcane_surge_on_kill_chance_%"}},[4514]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]="#"}},text="Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell"}}},stats={[1]="gain_arcane_surge_on_spell_hit_by_you_or_your_totems"}},[4515]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]="#"}},text="Gain Arcane Surge when your Mine is Detonated targeting an Enemy"}}},stats={[1]="gain_arcane_surge_when_mine_detonated_targeting_an_enemy"}},[4516]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]="#"}},text="Gain Arcane Surge when your Trap is Triggered by an Enemy"}}},stats={[1]="gain_arcane_surge_when_trap_triggered_by_an_enemy"}},[4517]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]="#"}},text="Gain Arcane Surge when you Summon a Totem"}}},stats={[1]="gain_arcane_surge_when_you_summon_a_totem"}},[4518]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain Armour equal to your Reserved Mana"}}},stats={[1]="gain_armour_equal_to_mana_reserved"}},[4519]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy"}}},stats={[1]="gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy"}},[4520]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlitzChargeDuration"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Blitz Charge on Critical Strike"},[2]={[1]={k="reminderstring",v="ReminderTextBlitzChargeDuration"},limit={[1]={[1]=100,[2]="#"}},text="Gain a Blitz Charge on Critical Strike"}}},stats={[1]="gain_blitz_charge_%_chance_on_crit"}},[4521]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Challenger Charge when you Hit a Rare or Unique Enemy while in Blood Stance"}}},stats={[1]="gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance"}},[4522]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Challenger Charge when you Kill an Enemy while in Sand Stance"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Challenger Charge when you Kill an Enemy while in Sand Stance"}}},stats={[1]="gain_challenger_charge_%_chance_on_kill_in_sand_stance"}},[4523]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain %1$+d%% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana"}}},stats={[1]="gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana"}},[4524]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextDebilitatingPresence"},limit={[1]={[1]="#",[2]="#"}},text="Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"}}},stats={[1]="gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy"}},[4525]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Gain an Endurance Charge every second if you've been Hit Recently"}}},stats={[1]="gain_endurance_charge_per_second_if_have_been_hit_recently"}},[4526]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Gain an Endurance Charge when you lose Fortify"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge when you lose Fortify"}}},stats={[1]="gain_endurance_charge_%_chance_when_you_lose_fortify"}},[4527]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain an Endurance Charge when Hit while Channelling"}}},stats={[1]="gain_endurance_charge_%_when_hit_while_channelling"}},[4528]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges"}}},stats={[1]="gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges"}},[4529]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="Gain Fortify for %1% seconds on Melee Hit with a Mace, Sceptre or Staff"}}},stats={[1]="gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff"}},[4530]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Frenzy Charge on Critical Strike"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Frenzy Charge on Critical Strike"}}},stats={[1]="gain_frenzy_charge_on_critical_strike_%"}},[4531]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Frenzy Charge on Hit while Bleeding"}}},stats={[1]="gain_frenzy_charge_on_hit_while_bleeding"}},[4532]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy"}}},stats={[1]="gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"}},[4533]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons"}}},stats={[1]="gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"}},[4534]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Frenzy Charge when Hit while Channelling"}}},stats={[1]="gain_frenzy_charge_%_when_hit_while_channelling"}},[4535]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextHerEmbrace"},limit={[1]={[1]=1,[2]="#"}},text="Gain Her Embrace for %1% seconds when you Ignite an Enemy"}}},stats={[1]="gain_her_embrace_for_x_ms_on_enemy_ignited"}},[4536]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth"}}},stats={[1]="gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth"}},[4537]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"}}},stats={[1]="gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance"}},[4538]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance that if you would gain Power Charges, you instead gain up to\nyour maximum number of Power Charges"}}},stats={[1]="gain_maximum_power_charges_on_power_charge_gained_%_chance"}},[4539]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% increased Movement Speed for 20 seconds when you Kill an Enemy"}}},stats={[1]="gain_movement_speed_+%_for_20_seconds_on_kill"}},[4540]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="You have Onslaught during Soul Gain Prevention"}}},stats={[1]="gain_onslaught_during_soul_gain_prevention"}},[4541]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]=99}},text="%1%%% chance to gain Onslaught for 3 seconds when Hit"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]=100}},text="Gain Onslaught for 3 seconds when Hit"}}},stats={[1]="gain_onslaught_for_3_seconds_%_chance_when_hit"}},[4542]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Gain Onslaught for %1% seconds when you Warcry"}}},stats={[1]="gain_onslaught_ms_on_using_a_warcry"}},[4543]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]="#"}},text="Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges"}}},stats={[1]="gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%"}},[4544]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="You gain Onslaught for %1% seconds on Hit"}}},stats={[1]="gain_onslaught_on_hit_duration_ms"}},[4545]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="You gain Onslaught for %1% seconds on Kill while affected by Haste"}}},stats={[1]="gain_onslaught_on_kill_ms_while_affected_by_haste"}},[4546]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="You have Onslaught while at maximum Endurance Charges"}}},stats={[1]="gain_onslaught_while_at_maximum_endurance_charges"}},[4547]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="You have Onslaught while not on Low Mana"}}},stats={[1]="gain_onslaught_while_not_on_low_mana"}},[4548]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="You have Onslaught while on Low Life"}}},stats={[1]="gain_onslaught_while_on_low_life"}},[4549]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="You have Onslaught while you have Fortify"}}},stats={[1]="gain_onslaught_while_you_have_fortify"}},[4550]={lang={English={[1]={[1]={k="deciseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Total Physical Damage prevented from Hits in the past 10 seconds is Regenerated as Life per second"}}},stats={[1]="gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec"}},[4551]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You have Phasing if you've Killed Recently"}}},stats={[1]="gain_phasing_if_enemy_killed_recently"}},[4552]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhasing"},limit={[1]={[1]="#",[2]="#"}},text="You have Phasing while affected by Haste"}}},stats={[1]="gain_phasing_while_affected_by_haste"}},[4553]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You have Phasing while you have Cat's Stealth"}}},stats={[1]="gain_phasing_while_you_have_cats_stealth"}},[4554]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"}}},stats={[1]="gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%"}},[4555]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Power Charge when you use a Vaal Skill"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Power Charge when you use a Vaal Skill"}}},stats={[1]="gain_power_charge_on_vaal_skill_use_%"}},[4556]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Power or Frenzy Charge each second while Channelling"}}},stats={[1]="gain_power_or_frenzy_charge_for_each_second_channeling"}},[4557]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain an Endurance, Frenzy or Power charge when you Block"}}},stats={[1]="gain_random_charge_on_block"}},[4558]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary"}}},stats={[1]="gain_random_charge_per_second_while_stationary"}},[4559]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Inspiration Charge when you Spend Mana"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Inspiration Charge when you Spend Mana"}}},stats={[1]="gain_righteous_charge_on_mana_spent_%"}},[4560]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShapersPresence"},[2]={k="reminderstring",v="ReminderTextSlowTimeEffects"},limit={[1]={[1]="#",[2]="#"}},text="Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy"}}},stats={[1]="gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster"}},[4561]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You have Chilling Conflux for 3 seconds every 8 seconds"},[2]={limit={[1]={[1]=2,[2]=2}},text="You have Shocking Conflux for 3 seconds every 8 seconds"},[3]={limit={[1]={[1]=3,[2]=3}},text="You have Igniting Conflux for 3 seconds every 8 seconds"}}},stats={[1]="gain_single_conflux_for_3_seconds_every_8_seconds"}},[4562]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain Soul Eater for %1% seconds when you use a Vaal Skill"}}},stats={[1]="gain_soul_eater_for_x_ms_on_vaal_skill_use"}},[4563]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextKeystoneVaalPact"},limit={[1]={[1]="#",[2]="#"}},text="You have Vaal Pact if you've dealt a Critical Strike Recently"}}},stats={[1]="gain_vaal_pact_if_you_have_crit_recently"}},[4564]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneVaalPact"},limit={[1]={[1]="#",[2]="#"}},text="You have Vaal Pact while Focussed"}}},stats={[1]="gain_vaal_pact_while_focused"}},[4565]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain Vaal Soul on Hit\nYou can only generate a Soul every %1% seconds"}}},stats={[1]="gain_vaal_soul_on_hit_cooldown_ms"}},[4566]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]=1,[2]="#"}},text="Attacks with Axes or Swords grant %1% Rage on Hit, no more than once every second"}}},stats={[1]="gain_x_rage_on_hit_with_axes_swords_1s_cooldown"}},[4567]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Galvanic Arrow has %1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Galvanic Arrow has %1%%% reduced Projectile Speed"}}},stats={[1]="galvanic_arrow_projectile_speed_+%"}},[4568]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Every 2 seconds, gain a Ghost Shroud, up to a maximum of %1%"}}},stats={[1]="ghost_dance_max_stacks"}},[4569]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When Hit, lose a Ghost Shroud and Recover Energy Shield equal to %1%%% of your Evasion Rating"}}},stats={[1]="ghost_dance_restore_%_evasion_as_energy_shield_when_hit"}},[4570]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Glacial Cascade has an additional Burst"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Glacial Cascade has %1% additional Bursts"}}},stats={[1]="glacial_cascade_number_of_additional_bursts"}},[4571]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Glacial Hammer deals Cold-only Splash Damage to surrounding targets"}}},stats={[1]="glacial_hammer_melee_splash_with_cold_damage"}},[4572]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Glacial Hammer Physical Damage Converted to Cold Damage"}}},stats={[1]="glacial_hammer_physical_damage_%_to_convert_to_cold"}},[4573]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Attack Speed per Level"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Attack Speed per Level"}}},stats={[1]="global_attack_speed_+%_per_level"}},[4574]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Blind with Hits against Bleeding Enemies"}}},stats={[1]="global_chance_to_blind_on_hit_%_vs_bleeding_enemies"}},[4575]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance against Chilled Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance against Chilled Enemies"}}},stats={[1]="global_critical_strike_chance_+%_vs_chilled_enemies"}},[4576]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Global Evasion Rating while moving"}}},stats={[1]="global_evasion_rating_+_while_moving"}},[4577]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage against Chilled or Frozen Enemies"}}},stats={[1]="global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies",[2]="global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies"}},[4578]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage against Ignited Enemies"}}},stats={[1]="global_minimum_added_fire_damage_vs_ignited_enemies",[2]="global_maximum_added_fire_damage_vs_ignited_enemies"}},[4579]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Hits against Ignited Enemies"}}},stats={[1]="global_minimum_added_lightning_damage_vs_ignited_enemies",[2]="global_maximum_added_lightning_damage_vs_ignited_enemies"}},[4580]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage against Shocked Enemies"}}},stats={[1]="global_minimum_added_lightning_damage_vs_shocked_enemies",[2]="global_maximum_added_lightning_damage_vs_shocked_enemies"}},[4581]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage against Bleeding Enemies"}}},stats={[1]="global_minimum_added_physical_damage_vs_bleeding_enemies",[2]="global_maximum_added_physical_damage_vs_bleeding_enemies"}},[4582]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Global Armour while moving"}}},stats={[1]="global_physical_damage_reduction_rating_while_moving"}},[4583]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems have %1%%% increased Attack and Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems have %1%%% reduced Attack and Cast Speed"}}},stats={[1]="golem_attack_and_cast_speed_+%"}},[4584]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Buffs granted by your Golems"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Buffs granted by your Golems"}}},stats={[1]="golem_buff_effect_+%"}},[4585]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Buffs granted by your Golems per Summoned Golem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Buffs granted by your Golems per Summoned Golem"}}},stats={[1]="golem_buff_effect_+%_per_summoned_golem"}},[4586]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Summoned Golems Regenerate %1%%% of their Life per second"}}},stats={[1]="golem_life_regeneration_per_minute_%"}},[4587]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems have %1%%% increased Maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems have %1%%% reduced Maximum Life"}}},stats={[1]="golem_maximum_life_+%"}},[4588]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Golems have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Golems have %1%%% reduced Movement Speed"}}},stats={[1]="golem_movement_speed_+%"}},[4589]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Golems have %1$+d to Armour"}}},stats={[1]="golem_physical_damage_reduction_rating"}},[4590]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grace Reserves no Mana"}}},stats={[1]="grace_reserves_no_mana"}},[4591]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text=" Animated Minions' Melee Attacks deal %1%%% more Damage to surrounding targets"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Animated Minions' Melee Attacks deal %1%%% less Damage to surrounding targets"}}},stats={[1]="grant_animated_minion_melee_splash_damage_+%_final_for_splash"}},[4592]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="If you've used a Skill Recently, you and nearby Allies have Tailwind"}}},stats={[1]="grant_tailwind_to_nearby_allies_if_used_skill_recently"}},[4593]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage with Bleeding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage with Bleeding"}}},stats={[1]="gratuitous_violence_bleeding_damage_+%_final"}},[4594]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Ground Slam has a %1%%% chance to grant an Endurance Charge when\nyou Stun an Enemy"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Ground Slam grants an Endurance Charge on Stun"}}},stats={[1]="ground_slam_chance_to_gain_endurance_charge_%_on_stun"}},[4595]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextGroundTar"},limit={[1]={[1]="#",[2]="#"}},text="Spreads Tar when you Block"}}},stats={[1]="ground_tar_on_block_base_area_of_effect_radius"}},[4596]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to spread Tar when Hit"}}},stats={[1]="ground_tar_when_hit_%_chance"}},[4597]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Guard Skills have %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Guard Skills have %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="guard_skill_cooldown_recovery_+%"}},[4598]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="While there are at least five nearby Allies, you and nearby Allies have Onslaught"}}},stats={[1]="guardian_with_5_nearby_allies_you_and_allies_have_onslaught"}},[4599]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="While there is at least one nearby Ally, you and nearby Allies deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="While there is at least one nearby Ally, you and nearby Allies deal %1%%% less Damage"}}},stats={[1]="guardian_with_nearby_ally_damage_+%_final_for_you_and_allies"}},[4600]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Haste Reserves no Mana"}}},stats={[1]="haste_reserves_no_mana"}},[4601]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hatred Reserves no Mana"}}},stats={[1]="hatred_reserves_no_mana"}},[4602]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Herald Buffs on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Herald Buffs on you"}}},stats={[1]="herald_effect_on_self_+%"}},[4603]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Mana Reservation of Herald Skills is always 45%%"}}},stats={[1]="herald_mana_reservation_override_45%"}},[4604]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextVirulence"},limit={[1]={[1]=1,[2]="#"}},text="You lose Virulence %1%%% faster"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextVirulence"},limit={[1]={[1]="#",[2]=-1}},text="You lose Virulence %1%%% slower"}}},stats={[1]="herald_of_agony_buff_drop_off_speed_+%"}},[4605]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Agony has %1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Agony has %1%%% reduced Buff Effect"}}},stats={[1]="herald_of_agony_buff_effect_+%"}},[4606]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Agony has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Agony has %1%%% reduced Mana Reservation"}}},stats={[1]="herald_of_agony_mana_reservation_+%"}},[4607]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Ash has %1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Ash has %1%%% reduced Buff Effect"}}},stats={[1]="herald_of_ash_buff_effect_+%"}},[4608]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Burning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Burning Damage"}}},stats={[1]="herald_of_ash_burning_damage_+%_final"}},[4609]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Spell Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Spell Fire Damage"}}},stats={[1]="herald_of_ash_spell_fire_damage_+%_final"}},[4610]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Ice has %1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Ice has %1%%% reduced Buff Effect"}}},stats={[1]="herald_of_ice_buff_effect_+%"}},[4611]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Sentinels use Crusade Slam"}}},stats={[1]="herald_of_light_and_dominating_blow_minions_use_holy_slam"}},[4612]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Purity has %1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Purity has %1%%% reduced Buff Effect"}}},stats={[1]="herald_of_light_buff_effect_+%"}},[4613]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Sentinels of Purity have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Sentinels of Purity have %1%%% reduced Area of Effect"}}},stats={[1]="herald_of_light_minion_area_of_effect_+%"}},[4614]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Purity has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Purity has %1%%% reduced Mana Reservation"}}},stats={[1]="herald_of_purity_mana_reservation_+%"}},[4615]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Herald of Thunder has %1%%% increased Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Herald of Thunder has %1%%% reduced Buff Effect"}}},stats={[1]="herald_of_thunder_buff_effect_+%"}},[4616]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Summoned Agony Crawler fires %1% additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Summoned Agony Crawler fires %1% additional Projectiles"}}},stats={[1]="herald_scorpion_number_of_additional_projectiles"}},[4617]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Reservation of Herald Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Reservation of Herald Skills"}}},stats={[1]="herald_skills_mana_reservation_+%"}},[4618]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Area of Effect per 50 Unreserved Maximum Mana, up to 100%%"}}},stats={[1]="hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%"}},[4619]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Mana Cost of Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Mana Cost of Skills"}}},stats={[1]="hierophant_mana_cost_+%_final"}},[4620]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Mana Reservation of Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Mana Reservation of Skills"}}},stats={[1]="hierophant_mana_reservation_+%_final"}},[4621]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Hinder on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced effect of Hinder on you"}}},stats={[1]="hinder_effect_on_self_+%"}},[4622]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Hindered by you take %1%%% increased Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Hindered by you take %1%%% reduced Chaos Damage"}}},stats={[1]="hinder_enemy_chaos_damage_taken_+%"}},[4623]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Bleeding Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Bleeding Enemies"}}},stats={[1]="hit_and_ailment_damage_+%_vs_bleeding_enemies"}},[4624]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Blinded Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Blinded Enemies"}}},stats={[1]="hit_and_ailment_damage_+%_vs_blinded_enemies"}},[4625]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Chilled Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Chilled Enemies"}}},stats={[1]="hit_and_ailment_damage_+%_vs_chilled_enemies"}},[4626]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Cursed Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Cursed Enemies"}}},stats={[1]="hit_and_ailment_damage_+%_vs_cursed_enemies"}},[4627]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Enemies affected by Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Enemies affected by Ailments"}}},stats={[1]="hit_and_ailment_damage_+%_vs_enemies_affected_by_ailments"}},[4628]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs"}}},stats={[1]="hit_and_ailment_damage_+%_vs_enemies_affected_by_at_least_3_spiders_webs"}},[4629]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Hits and Ailments against Unique Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Hits and Ailments against Unique Enemies"}}},stats={[1]="hit_and_ailment_damage_+%_vs_unique_enemies"}},[4630]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Hits can't be Evaded by Blinded Enemies"}}},stats={[1]="hits_cannot_be_evaded_vs_blinded_enemies"}},[4631]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items"}}},stats={[1]="hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped"}},[4632]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hits ignore Enemy Monster Fire Resistance while you are Ignited"}}},stats={[1]="hits_ignore_enemy_fire_resistance_while_you_are_ignited"}},[4633]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Consecrated Path has %1%%% increased teleport range"}}},stats={[1]="holy_path_teleport_range_+%"}},[4634]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Holy Relics have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Holy Relics have %1%%% reduced Area of Effect"}}},stats={[1]="holy_relic_area_of_effect_+%"}},[4635]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Holy Relics have %1%%% increased Buff Effect"}}},stats={[1]="holy_relic_buff_effect_+%"}},[4636]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Holy Relics have %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Holy Relics have %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="holy_relic_cooldown_recovery_+%"}},[4637]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Holy Relics deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Holy Relics deal %1%%% reduced Damage"}}},stats={[1]="holy_relic_damage_+%"}},[4638]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Frostblink has %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Frostblink has %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="ice_dash_cooldown_speed_+%"}},[4639]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Frostblink has %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Frostblink has %1%%% reduced Duration"}}},stats={[1]="ice_dash_duration_+%"}},[4640]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Frostblink has %1%%% increased maximum travel distance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Frostblink has %1%%% reduced maximum travel distance"}}},stats={[1]="ice_dash_travel_distance_+%"}},[4641]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Chills from Ice Nova Hits always reduce Action Speed by at least %1%%%"}}},stats={[1]="ice_nova_chill_minimum_slow_%"}},[4642]={lang={English={[1]={limit={[1]={[1]=10,[2]=19}},text="Ice Shot Pierces an additional Target"},[2]={[1]={k="divide_by_ten_0dp",v=1},limit={[1]={[1]=20,[2]="#"}},text="Ice Shot Pierces %1% additional Targets"}}},stats={[1]="ice_shot_additional_pierce_per_10_old"}},[4643]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ice Shot has %1%%% increased Area of Effect angle"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ice Shot has %1%%% reduced Area of Effect angle"}}},stats={[1]="ice_shot_area_angle_+%"}},[4644]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Ice Shot Pierces an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Ice Shot Pierces %1% additional Targets"}}},stats={[1]="ice_shot_pierce_+"}},[4645]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Siphoning Trap has %1%%% increased Chill Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Siphoning Trap has %1%%% reduced Chill Effect"}}},stats={[1]="ice_siphon_trap_chill_effect_+%"}},[4646]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Siphoning Trap deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Siphoning Trap deals %1%%% reduced Damage"}}},stats={[1]="ice_siphon_trap_damage_+%"}},[4647]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Siphoning Trap's beam to you grants %1%%% increased Damage taken for each other beam"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Siphoning Trap's beam to you grants %1%%% reduced Damage taken for each other beam"}}},stats={[1]="ice_siphon_trap_damage_taken_+%_per_beam"}},[4648]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Siphoning Trap has %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Siphoning Trap has %1%%% reduced Skill Effect Duration"}}},stats={[1]="ice_siphon_trap_duration_+%"}},[4649]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Ice Spear travels %1%%% increased distance before changing forms"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Ice Spear travels %1%%% reduced distance before changing forms"}}},stats={[1]="ice_spear_distance_before_form_change_+%"}},[4650]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Ice Spear fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Ice Spear fires %1% additional Projectiles"}}},stats={[1]="ice_spear_number_of_additional_projectiles"}},[4651]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ice Trap Damage Penetrates %1%%% Cold Resistance"}}},stats={[1]="ice_trap_cold_resistance_penetration_%"}},[4652]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Ignite inflicted on Chilled Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Ignite inflicted on Chilled Enemies"}}},stats={[1]="ignite_damage_+%_vs_chilled_enemies"}},[4653]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Ignite Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Ignite Duration"}}},stats={[1]="ignite_duration_-%"}},[4654]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies Ignited by you have %1$+d%% to Fire Resistance"}}},stats={[1]="ignites_apply_fire_resistance_+"}},[4655]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hits ignore Enemy Cold Resistance"}}},stats={[1]="ignores_enemy_cold_resistance"}},[4656]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hits ignore Enemy Fire Resistance"}}},stats={[1]="ignores_enemy_fire_resistance"}},[4657]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hits ignore Enemy Lightning Resistance"}}},stats={[1]="ignores_enemy_lightning_resistance"}},[4658]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Immortal Call has %1%%% increased Buff Duration per Endurance Charge removed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Immortal Call has %1%%% decreased Buff Duration per Endurance Charge removed"}}},stats={[1]="immortal_call_buff_effect_duration_+%_per_removable_endurance_charge"}},[4659]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Burning Ground, Shocked Ground and Chilled Ground"}}},stats={[1]="immune_to_burning_shocks_and_chilled_ground"}},[4660]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Curses while Channelling"}}},stats={[1]="immune_to_curses_while_channelling"}},[4661]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="Immune to Elemental Ailments while on Consecrated Ground"}}},stats={[1]="immune_to_elemental_ailments_while_on_consecrated_ground"}},[4662]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Immune to Elemental Ailments while on Consecrated Ground if you have at least 150 Devotion"}}},stats={[1]="immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"}},[4663]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Immune to Elemental Ailments while you have Arcane Surge"}}},stats={[1]="immune_to_elemental_ailments_while_you_have_arcane_surge"}},[4664]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Freeze and Chill while Ignited"}}},stats={[1]="immune_to_freeze_and_chill_while_ignited"}},[4665]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Freeze while affected by Purity of Ice"}}},stats={[1]="immune_to_freeze_while_affected_by_purity_of_ice"}},[4666]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Ignite and Shock"}}},stats={[1]="immune_to_ignite_and_shock"}},[4667]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Ignite while affected by Purity of Fire"}}},stats={[1]="immune_to_ignite_while_affected_by_purity_of_fire"}},[4668]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Immune to Shock while affected by Purity of Lightning"}}},stats={[1]="immune_to_shock_while_affected_by_purity_of_lightning"}},[4669]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="You are Immune to Ailments while Focussed"}}},stats={[1]="immune_to_status_ailments_while_focused"}},[4670]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Impale Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Impale Effect"}}},stats={[1]="impale_debuff_effect_+%"}},[4671]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Impales inflicted by Hits that also inflict Bleeding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Impales inflicted by Hits that also inflict Bleeding"}}},stats={[1]="impale_debuff_effect_+%_from_hits_that_also_inflict_bleeding"}},[4672]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Impale Enemies on Hit with Axes or Swords"}}},stats={[1]="impale_on_hit_%_chance_with_axes_swords"}},[4673]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Impales you inflict last 1 additional Hit"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Impales you inflict last %1% additional Hits"}}},stats={[1]="impaled_debuff_number_of_reflected_hits"}},[4674]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Cold Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Cold Damage taken"}}},stats={[1]="impurity_cold_damage_taken_+%_final"}},[4675]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Fire Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Fire Damage taken"}}},stats={[1]="impurity_fire_damage_taken_+%_final"}},[4676]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Lightning Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Lightning Damage taken"}}},stats={[1]="impurity_lightning_damage_taken_+%_final"}},[4677]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Infernal Blow Debuff deals an additional %1%%% of Damage per Charge"}}},stats={[1]="infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack"}},[4678]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextColdExposure"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Cold Exposure on Hit if you have at least 150 Devotion"},[2]={[1]={k="reminderstring",v="ReminderTextColdExposure"},limit={[1]={[1]=100,[2]="#"}},text="Inflict Cold Exposure on Hit if you have at least 150 Devotion"}}},stats={[1]="inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"}},[4679]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFireExposure"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Fire Exposure on Hit if you have at least 150 Devotion"},[2]={[1]={k="reminderstring",v="ReminderTextFireExposure"},limit={[1]={[1]=100,[2]="#"}},text="Inflict Fire Exposure on Hit if you have at least 150 Devotion"}}},stats={[1]="inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"}},[4680]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLightningExposure"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Lightning Exposure on Hit if you have at least 150 Devotion"},[2]={[1]={k="reminderstring",v="ReminderTextLightningExposure"},limit={[1]={[1]=100,[2]="#"}},text="Inflict Lightning Exposure on Hit if you have at least 150 Devotion"}}},stats={[1]="inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"}},[4681]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Infusion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Infusion"}}},stats={[1]="infusion_effect_+%"}},[4682]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Inspiration Charge Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Inspiration Charge Duration"}}},stats={[1]="inspiration_charge_duration_+%"}},[4683]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Intelligence Skill Gems"}}},stats={[1]="intelligence_skill_gem_level_+"}},[4684]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges"},[2]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]=100,[2]="#"}},text="Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges"}}},stats={[1]="intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%"}},[4685]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is infested with Fungal Growths"}}},stats={[1]="is_blighted_map"}},[4686]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items found per Chest opened Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items found per Chest opened Recently"}}},stats={[1]="item_found_quantity_+%_per_chest_opened_recently"}},[4687]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="1%% increased Rarity of Items found per %1% Rampage Kills"}}},stats={[1]="item_found_rarity_+1%_per_X_rampage_stacks"}},[4688]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]="#",[2]="#"}},text="Gain 1 Rage on Critical Hit with attacks, no more than once every %1% seconds"}}},stats={[1]="kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms"}},[4689]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1%%% chance for Kills to count twice for Rampage"},[2]={limit={[1]={[1]=100,[2]=100}},text="Kills count twice for Rampage"}}},stats={[1]="kills_count_twice_for_rampage_%"}},[4690]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Kinetic Bolt has %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Kinetic Bolt has %1%%% reduced Attack Speed"}}},stats={[1]="kinetic_bolt_attack_speed_+%"}},[4691]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Kinetic Bolt has %1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Kinetic Bolt has %1%%% reduced Projectile Speed"}}},stats={[1]="kinetic_bolt_projectile_speed_+%"}},[4692]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Kinetic Bolt changes direction %1% additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Kinetic Bolt changes direction %1% additional times"}}},stats={[1]="kinetic_wand_base_number_of_zig_zags"}},[4693]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Labyrinth Traps are disabled in the Aspirant's Trial"}}},stats={[1]="labyrinth_darkshrine_boss_room_traps_are_disabled"}},[4694]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You will receive an additional use of the Divine Font"}}},stats={[1]="labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x"}},[4695]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Izaro will drop an additional Unique Item on Death"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Izaro will drop %1% additional Unique Items on Death"}}},stats={[1]="labyrinth_darkshrine_izaro_dropped_unique_items_+"}},[4696]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Izaro will drop an additional Treasure Key on Death"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Izaro will drop %1% additional Treasure Keys on Death"}}},stats={[1]="labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys"}},[4697]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage Taken from Hits from Labyrinth Traps\n%1%%% increased effectiveness of Damage over Time Debuffs from Labyrinth Traps on Players"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage Taken from Hits from Labyrinth Traps\n%1%%% reduced effectiveness of Damage over Time Debuffs from Labyrinth Traps on Players"}}},stats={[1]="labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%"}},[4698]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Players in the Labyrinth will be affected by Acceleration Shrine"},[2]={limit={[1]={[1]=2,[2]=2}},text="Players in the Labyrinth will be affected by Lightning Shrine"},[3]={limit={[1]={[1]=3,[2]=3}},text="Players in the Labyrinth will be affected by Freezing Shrine"},[4]={limit={[1]={[1]=4,[2]=4}},text="Players in the Labyrinth will be affected by Burning Shrine"},[5]={limit={[1]={[1]=5,[2]=5}},text="Players in the Labyrinth will be affected by Static Shrine"},[6]={limit={[1]={[1]=6,[2]=6}},text="Players in the Labyrinth will be affected by Diamond Shrine"},[7]={limit={[1]={[1]=7,[2]=7}},text="Players in the Labyrinth will be affected by Brutal Shrine"},[8]={limit={[1]={[1]=8,[2]=8}},text="Players in the Labyrinth will be affected by Thorned Shrine"},[9]={limit={[1]={[1]=9,[2]=9}},text="Players in the Labyrinth will be affected by Replenishing Shrine"},[10]={limit={[1]={[1]=10,[2]=10}},text="Players in the Labyrinth will be affected by Massive Shrine"},[11]={limit={[1]={[1]=11,[2]=11}},text="Players in the Labyrinth will be affected by Impenetrable Shrine"},[12]={limit={[1]={[1]=12,[2]=12}},text="Players in the Labyrinth will be affected by Resistance Shrine"},[13]={limit={[1]={[1]=13,[2]=13}},text="Players in the Labyrinth will be affected by Divine Shrine"},[14]={limit={[1]={[1]=14,[2]=14}},text="Players in the Labyrinth will be affected by Echoing Shrine"},[15]={limit={[1]={[1]=15,[2]=15}},text="Players in the Labyrinth will be affected by Hexing Shrine"},[16]={limit={[1]={[1]=16,[2]=16}},text="Players in the Labyrinth will be affected by Skeletal Shrine"},[17]={limit={[1]={[1]=17,[2]=17}},text="Players in the Labyrinth will be affected by Shrouded Shrine"}}},stats={[1]="labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth"}},[4699]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lancing Steel deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lancing Steel deals %1%%% reduced Damage"}}},stats={[1]="lancing_steel_damage_+%"}},[4700]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="Lancing Steel's additional Projectiles have %1$+d%% chance to Impale Enemies"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Lancing Steel's additional Projectiles Impale Enemies"}}},stats={[1]="lancing_steel_impale_chance_%"}},[4701]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Lancing Steel's primary Projectile Pierces 1 additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Lancing Steel's primary Projectile Pierces %1% additional Targets"}}},stats={[1]="lancing_steel_primary_proj_pierce_num"}},[4702]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Leech Energy Shield instead of Life"}}},stats={[1]="leech_energy_shield_instead_of_life"}},[4703]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Recovery rate of Life and Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Recovery rate of Life and Energy Shield"}}},stats={[1]="life_and_energy_shield_recovery_rate_+%"}},[4704]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Recovery rate of Life and Energy Shield if you've stopped taking Damage Over Time Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Recovery rate of Life and Energy Shield if you've stopped taking Damage Over Time Recently"}}},stats={[1]="life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently"}},[4705]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Recovery Rate of Life and Energy Shield per Minion, up to 20%%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Recovery Rate of Life and Energy Shield per Minion"}}},stats={[1]="life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%"}},[4706]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Recovery rate of Life and Energy Shield per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Recovery rate of Life and Energy Shield per Power Charge"}}},stats={[1]="life_and_energy_shield_recovery_rate_+%_per_power_charge"}},[4707]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Recovery rate of Life and Energy Shield while affected by Malevolence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Recovery rate of Life and Energy Shield while affected by Malevolence"}}},stats={[1]="life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence"}},[4708]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},[3]={k="reminderstring",v="ReminderTextLifeLeech"},[4]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Attack Damage Leeched as Life and Mana if you've Killed Recently"}}},stats={[1]="life_and_mana_leech_from_attack_damage_permyriad_if_killed_recently"}},[4709]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Life Flasks gain %1% Charge every 3 seconds"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Life Flasks gain %1% Charges every 3 seconds"}}},stats={[1]="life_flask_charges_recovered_per_3_seconds"}},[4710]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Life Flasks gain %1% Charges every 3 seconds if you haven't used a Life Flask Recently"}}},stats={[1]="life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently"}},[4711]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life gained for each Enemy Hit while affected by Vitality"}}},stats={[1]="life_gain_per_target_hit_while_affected_by_vitality"}},[4712]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1% Life gained for each Enemy Hit if you have used a Vaal Skill Recently"}}},stats={[1]="life_gain_per_target_if_have_used_a_vaal_skill_recently"}},[4713]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Life Leech effects are not removed at Full Life\nLife Leech effects Recover Energy Shield instead while on Full Life"}}},stats={[1]="life_leech_applies_to_energy_shield_on_full_life"}},[4714]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage leeched as Life while affected by Vitality"}}},stats={[1]="life_leech_from_any_damage_permyriad_while_affected_by_vitality"}},[4715]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Damage Leeched as Life while Focussed"}}},stats={[1]="life_leech_from_any_damage_permyriad_while_focused"}},[4716]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Attack Damage Leeched as Life per Frenzy Charge"}}},stats={[1]="life_leech_from_attack_damage_permyriad_per_frenzy_charge"}},[4717]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life against Maimed Enemies"}}},stats={[1]="life_leech_from_attack_damage_permyriad_vs_maimed_enemies"}},[4718]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life against Taunted Enemies"}}},stats={[1]="life_leech_from_attack_damage_permyriad_vs_taunted_enemies"}},[4719]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Fire Damage Leeched as Life while affected by Anger"}}},stats={[1]="life_leech_from_fire_damage_permyriad_while_affected_by_anger"}},[4720]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Fire Damage Leeched as Life while Ignited"}}},stats={[1]="life_leech_from_fire_damage_while_ignited_permyriad"}},[4721]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Spell Damage Leeched as Life while you have Arcane Surge"}}},stats={[1]="life_leech_from_spell_damage_permyriad_while_you_have_arcane_surge"}},[4722]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Taken from Hits is Leeched as Life"}}},stats={[1]="life_leech_on_damage_taken_%_permyriad"}},[4723]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Leech %1%%% of Damage as Life against Poisoned Enemies"}}},stats={[1]="life_leech_permyriad_vs_poisoned_enemies"}},[4724]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Life Leeched per Second is doubled"}}},stats={[1]="life_leech_speed_is_doubled"}},[4725]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Lose %1%%% of Life per second per Rage while you are not losing Rage"}}},stats={[1]="life_loss_%_per_minute_per_rage_while_not_losing_rage"}},[4726]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Maximum Life per Level"}}},stats={[1]="life_per_level"}},[4727]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovery from Flasks used when on Low Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextLowLife"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Recovery from Flasks used when on Low Life"}}},stats={[1]="life_recovery_+%_from_flasks_while_on_low_life"}},[4728]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovery Rate if you've taken Fire Damage from an Enemy Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Recovery Rate if you've taken Fire Damage from an Enemy Hit Recently"}}},stats={[1]="life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently"}},[4729]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovery Rate while affected by Vitality"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Recovery Rate while affected by Vitality"}}},stats={[1]="life_recovery_rate_+%_while_affected_by_vitality"}},[4730]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Life per second per Buff on you"}}},stats={[1]="life_regeneration_per_minute_per_active_buff"}},[4731]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second while affected by a Guard Skill Buff"}}},stats={[1]="life_regeneration_per_minute_%_while_affected_by_guard_skill"}},[4732]={lang={English={[1]={[1]={k="per_minute_to_per_second_2dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second while Burning"}}},stats={[1]="life_regeneration_per_minute_%_while_burning"}},[4733]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second while Channelling"}}},stats={[1]="life_regeneration_per_minute_%_while_channelling"}},[4734]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Life per Second while affected by Vitality"}}},stats={[1]="life_regeneration_per_minute_while_affected_by_vitality"}},[4735]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per second while Ignited"}}},stats={[1]="life_regeneration_per_minute_while_ignited"}},[4736]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Life per second while moving"}}},stats={[1]="life_regeneration_per_minute_while_moving"}},[4737]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Life per Second while you have Avian's Flight"}}},stats={[1]="life_regeneration_per_minute_while_you_have_avians_flight"}},[4738]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second if a Minion has Died Recently"}}},stats={[1]="life_regeneration_%_per_minute_if_player_minion_died_recently"}},[4739]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second if you have been Hit Recently"}}},stats={[1]="life_regeneration_rate_per_minute_%_if_have_been_hit_recently"}},[4740]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second if you've taken Fire Damage from an Enemy Hit Recently"}}},stats={[1]="life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently"}},[4741]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second per 500 Maximum Energy Shield"}}},stats={[1]="life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield"}},[4742]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second for each Mine Detonated Recently, up to 10%% per second"}}},stats={[1]="life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%"}},[4743]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second per Power Charge"}}},stats={[1]="life_regeneration_rate_per_minute_%_per_power_charge"}},[4744]={lang={English={[1]={[1]={k="per_minute_to_per_second_2dp_if_required",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second for each Raised Zombie"}}},stats={[1]="life_regeneration_rate_per_minute_%_per_raised_zombie"}},[4745]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per Second for each Trap Triggered Recently, up to 10%% per second"}}},stats={[1]="life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%"}},[4746]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second while moving"}}},stats={[1]="life_regeneration_rate_per_minute_%_while_moving"}},[4747]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second while stationary"}}},stats={[1]="life_regeneration_rate_per_minute_%_while_stationary"}},[4748]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second during any Flask Effect"}}},stats={[1]="life_regeneration_rate_per_minute_%_while_using_flask"}},[4749]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Life per second with at least 400 Strength"}}},stats={[1]="life_regeneration_rate_per_minute_%_with_400_or_more_strength"}},[4750]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Light Radius also apply to Accuracy"}}},stats={[1]="light_radius_increases_apply_to_accuracy"}},[4751]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Increases and Reductions to Light Radius also apply to Area of Effect"}}},stats={[1]="light_radius_increases_apply_to_area_of_effect"}},[4752]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Lightning and Chaos Resistances"}}},stats={[1]="lightning_and_chaos_damage_resistance_%"}},[4753]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Lightning Damage can Ignite"}}},stats={[1]="lightning_damage_can_ignite"}},[4754]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Lightning Damage per 1%% Lightning Resistance above 75%%"}}},stats={[1]="lightning_damage_+%_per_lightning_resistance_above_75"}},[4755]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Lightning Damage as Extra Chaos Damage per Power Charge"}}},stats={[1]="lightning_damage_%_to_add_as_chaos_per_power_charge"}},[4756]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Lightning Damage as Extra Cold Damage against Chilled Enemies"}}},stats={[1]="lightning_damage_%_to_add_as_cold_vs_chilled_enemies"}},[4757]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage while affected by Herald of Thunder"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage while affected by Herald of Thunder"}}},stats={[1]="lightning_damage_+%_while_affected_by_herald_of_thunder"}},[4758]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage while affected by Wrath"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage while affected by Wrath"}}},stats={[1]="lightning_damage_+%_while_affected_by_wrath"}},[4759]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Lightning Resistance while affected by Herald of Thunder"}}},stats={[1]="lightning_damage_resistance_%_while_affected_by_herald_of_thunder"}},[4760]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Lightning Damage taken from Hits"}}},stats={[1]="lightning_damage_taken_+"}},[4761]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage with Attack Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage with Attack Skills"}}},stats={[1]="lightning_damage_with_attack_skills_+%"}},[4762]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage with Spell Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage with Spell Skills"}}},stats={[1]="lightning_damage_with_spell_skills_+%"}},[4763]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Stormblast Mine has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Stormblast Mine has %1%%% reduced Aura Effect"}}},stats={[1]="lightning_explosion_mine_aura_effect_+%"}},[4764]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Stormblast Mine deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Stormblast Mine deals %1%%% reduced Damage"}}},stats={[1]="lightning_explosion_mine_damage_+%"}},[4765]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Stormblast Mine has %1%%% increased Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Stormblast Mine has %1%%% reduced Throwing Speed"}}},stats={[1]="lightning_explosion_mine_throwing_speed_+%"}},[4766]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Damage with Hits against Chilled Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Damage with Hits against Chilled Enemies"}}},stats={[1]="lightning_hit_damage_+%_vs_chilled_enemies"}},[4767]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Lightning Damage taken while affected by Purity of Lightning"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Lightning Damage taken while affected by Purity of Lightning"}}},stats={[1]="lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning"}},[4768]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLightningExposure"},limit={[1]={[1]=1,[2]="#"}},text="Lightning Skills have a %1%%% chance to apply Lightning Exposure on Hit"}}},stats={[1]="lightning_skill_chance_to_inflict_lightning_exposure_%"}},[4769]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Lightning Skill Gems"}}},stats={[1]="lightning_skill_gem_level_+"}},[4770]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="Lightning Skills have %1%%% increased Enemy Stun Threshold"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]="#",[2]=-1}},text="Lightning Skills have %1%%% reduced Enemy Stun Threshold"}}},stats={[1]="lightning_skill_stun_threshold_+%"}},[4771]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Lightning Skills have %1%%% chance to Poison on Hit"}}},stats={[1]="lightning_skills_chance_to_poison_on_hit_%"}},[4772]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lightning Spells have %1%%% of Physical Damage Converted to Lightning Damage"}}},stats={[1]="lightning_spell_physical_damage_%_to_convert_to_lightning"}},[4773]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lightning Tendrils has %1%%% increased Area of Effect per Enemy Hit"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lightning Tendrils has %1%%% reduced Area of Effect per Enemy Hit"}}},stats={[1]="lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit"}},[4774]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Lightning Spire Trap strikes an additional area"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Lightning Spire Trap strikes %1% additional areas"}}},stats={[1]="lightning_tower_trap_additional_number_of_beams"}},[4775]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lightning Spire Trap has %1%%% increased Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lightning Spire Trap has %1%%% reduced Cast Speed"}}},stats={[1]="lightning_tower_trap_cast_speed_+%"}},[4776]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lightning Spire Trap has %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lightning Spire Trap has %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="lightning_tower_trap_cooldown_speed_+%"}},[4777]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lightning Spire Trap deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lightning Spire Trap deals %1%%% reduced Damage"}}},stats={[1]="lightning_tower_trap_damage_+%"}},[4778]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Lightning Spire Trap has %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Lightning Spire Trap has %1%%% reduced Skill Effect Duration"}}},stats={[1]="lightning_tower_trap_duration_+%"}},[4779]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lightning Trap Damage Penetrates %1%%% Lightning Resistance"}}},stats={[1]="lightning_trap_lightning_resistance_penetration_%"}},[4780]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Lightning Trap Shock Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Lightning Trap Shock Effect"}}},stats={[1]="lightning_trap_shock_effect_+%"}},[4781]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills grant Nothing"}}},stats={[1]="local_affliction_jewel_display_small_nodes_grant_nothing"}},[4782]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1$+d to All Attributes"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_all_attributes"}},[4783]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1$+d to Armour"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_armour"}},[4784]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Attack and Cast Speed while affected by a Herald"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_while_affected_by_a_herald"}},[4785]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: Channelling Skills have %1%%% increased Attack and Cast Speed"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_channelling_skills"}},[4786]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Attack and Cast Speed with Chaos Skills"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_chaos_skills"}},[4787]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Attack and Cast Speed with Cold Skills"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_cold_skills"}},[4788]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Attack and Cast Speed with Elemental Skills"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_elemental_skills"}},[4789]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Attack and Cast Speed with Fire Skills"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_fire_skills"}},[4790]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Attack and Cast Speed with Lightning Skills"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_lightning_skills"}},[4791]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Attack and Cast Speed with Physical Skills"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_physical_skills"}},[4792]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Attack Speed"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_attack_speed_+%"}},[4793]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Area of Effect of Aura Skills"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_base_aura_area_of_effect_+%"}},[4794]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Cast Speed"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_base_cast_speed_+%"}},[4795]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_base_critical_strike_multiplier_+"}},[4796]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Duration of Elemental Ailments on Enemies"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_base_elemental_status_ailment_duration_+%"}},[4797]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Projectile Speed"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_base_projectile_speed_+%"}},[4798]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Area of Effect"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_base_skill_area_of_effect_+%"}},[4799]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1$+d%% to Chaos Resistance"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_chaos_resistance_%"}},[4800]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Flask Charges gained"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_charges_gained_+%"}},[4801]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1$+d%% to Cold Resistance"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_cold_resistance_%"}},[4802]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Area of Effect of Curse Skills"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_curse_area_of_effect_+%"}},[4803]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Damage over Time"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_damage_over_time_+%"}},[4804]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Damage"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_damage_+%"}},[4805]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1$+d to Dexterity"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_dex"}},[4806]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1$+d%% to Elemental Resistance"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_elemental_resistance_%"}},[4807]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1$+d to Evasion"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_evasion"}},[4808]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1$+d%% to Fire Resistance"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_fire_resistance_%"}},[4809]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1$+d to Intelligence"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_int"}},[4810]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1$+d%% to Lightning Resistance"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_lightning_resistance_%"}},[4811]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Mana Regeneration Rate"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_mana_regeneration_+%"}},[4812]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1$+d to Maximum Energy Shield"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_maximum_energy_shield"}},[4813]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1$+d to Maximum Life"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_maximum_life"}},[4814]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1$+d to Maximum Mana"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_maximum_mana"}},[4815]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: Minions have %1%%% increased Attack and Cast Speed"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%"}},[4816]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: Minions have %1%%% increased Attack and Cast Speed while you are affected by a Herald"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"}},[4817]={lang={English={[1]={[1]={k="per_minute_to_per_second_2dp_if_required",v=1},limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: Minions Regenerate %1%%% of Life per Second"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_minion_life_regeneration_rate_per_minute_%"}},[4818]={lang={English={[1]={[1]={k="per_minute_to_per_second_2dp_if_required",v=1},[2]={k="reminderstring",v="ReminderTextSmallPassives"},limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: Regenerate %1%%% of Life per Second"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_%_life_regeneration_per_minute"}},[4819]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Brand Attachment range"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_sigil_target_search_range_+%"}},[4820]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1$+d to Strength"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_str"}},[4821]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Totem Placement speed"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_summon_totem_cast_speed_+%"}},[4822]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Trap and Mine Throwing Speed"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_trap_and_mine_throwing_speed_+%"}},[4823]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills also grant: %1%%% increased Warcry Duration"}}},stats={[1]="local_affliction_jewel_small_nodes_grant_warcry_duration_+%"}},[4824]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Added Small Passive Skills have %1%%% increased Effect"}}},stats={[1]="local_affliction_jewel_small_nodes_have_effect_+%"}},[4825]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Adrenaline"}}},stats={[1]="local_affliction_notable_adrenaline"}},[4826]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Advance Guard"}}},stats={[1]="local_affliction_notable_advance_guard"}},[4827]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Aerialist"}}},stats={[1]="local_affliction_notable_aerialist"}},[4828]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Aerodynamics"}}},stats={[1]="local_affliction_notable_aerodynamics"}},[4829]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Agent of Destruction"}}},stats={[1]="local_affliction_notable_agent_of_destruction"}},[4830]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Alchemist"}}},stats={[1]="local_affliction_notable_alchemist"}},[4831]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Ancestral Echo"}}},stats={[1]="local_affliction_notable_ancestral_echo"}},[4832]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Ancestral Guidance"}}},stats={[1]="local_affliction_notable_ancestral_guidance"}},[4833]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Ancestral Inspiration"}}},stats={[1]="local_affliction_notable_ancestral_inspiration"}},[4834]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Ancestral Might"}}},stats={[1]="local_affliction_notable_ancestral_might"}},[4835]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Ancestral Preservation"}}},stats={[1]="local_affliction_notable_ancestral_preservation"}},[4836]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Ancestral Reach"}}},stats={[1]="local_affliction_notable_ancestral_reach"}},[4837]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Antifreeze"}}},stats={[1]="local_affliction_notable_antifreeze"}},[4838]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Antivenom"}}},stats={[1]="local_affliction_notable_antivenom"}},[4839]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Arcane Adept"}}},stats={[1]="local_affliction_notable_arcane_focus"}},[4840]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Arcane Heroism"}}},stats={[1]="local_affliction_notable_arcane_heroism"}},[4841]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Arcane Pyrotechnics"}}},stats={[1]="local_affliction_notable_arcane_pyrotechnics"}},[4842]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Arcing Shot"}}},stats={[1]="local_affliction_notable_arcing_shot"}},[4843]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Assert Dominance"}}},stats={[1]="local_affliction_notable_assert_dominance"}},[4844]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Astonishing Affliction"}}},stats={[1]="local_affliction_notable_astonishing_affliction"}},[4845]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Basics of Pain"}}},stats={[1]="local_affliction_notable_basics_of_pain"}},[4846]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Battle-Hardened"}}},stats={[1]="local_affliction_notable_battle_hardened"}},[4847]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Battlefield Dominator"}}},stats={[1]="local_affliction_notable_battlefield_dominator"}},[4848]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Blacksmith"}}},stats={[1]="local_affliction_notable_blacksmith"}},[4849]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Blanketed Snow"}}},stats={[1]="local_affliction_notable_blanketed_snow"}},[4850]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Blast-Freeze"}}},stats={[1]="local_affliction_notable_blast_freeze"}},[4851]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Blessed"}}},stats={[1]="local_affliction_notable_blessed"}},[4852]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Blessed Rebirth"}}},stats={[1]="local_affliction_notable_blessed_rebirth"}},[4853]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Bloodscent"}}},stats={[1]="local_affliction_notable_bloodscent"}},[4854]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Blowback"}}},stats={[1]="local_affliction_notable_blowback"}},[4855]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Bodyguards"}}},stats={[1]="local_affliction_notable_bodyguards"}},[4856]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Born of Chaos"}}},stats={[1]="local_affliction_notable_born_of_chaos"}},[4857]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Brand Loyalty"}}},stats={[1]="local_affliction_notable_brand_loyalty"}},[4858]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Brewed for Potency"}}},stats={[1]="local_affliction_notable_brewed_for_potency"}},[4859]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Broadside"}}},stats={[1]="local_affliction_notable_broadside"}},[4860]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Brush with Death"}}},stats={[1]="local_affliction_notable_brush_with_death"}},[4861]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Brutal Infamy"}}},stats={[1]="local_affliction_notable_brutal_infamy"}},[4862]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Burden Projection"}}},stats={[1]="local_affliction_notable_burden_projection"}},[4863]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Burning Bright"}}},stats={[1]="local_affliction_notable_burning_bright"}},[4864]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Calamitous"}}},stats={[1]="local_affliction_notable_calamitous"}},[4865]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Call to the Slaughter"}}},stats={[1]="local_affliction_notable_call_to_the_slaughter"}},[4866]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Capacitor"}}},stats={[1]="local_affliction_notable_capacitor"}},[4867]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Careful Handling"}}},stats={[1]="local_affliction_notable_careful_handling"}},[4868]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Chilling Presence"}}},stats={[1]="local_affliction_notable_chilling_presence"}},[4869]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Chip Away"}}},stats={[1]="local_affliction_notable_chip_away"}},[4870]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Circling Oblivion"}}},stats={[1]="local_affliction_notable_circling_oblivion"}},[4871]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Clarity of Purpose"}}},stats={[1]="local_affliction_notable_clarity_of_purpose"}},[4872]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Cold-Blooded Killer"}}},stats={[1]="local_affliction_notable_cold_blooded_killer"}},[4873]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Cold Conduction"}}},stats={[1]="local_affliction_notable_cold_conduction"}},[4874]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Cold to the Core"}}},stats={[1]="local_affliction_notable_cold_to_the_core"}},[4875]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Combat Rhythm"}}},stats={[1]="local_affliction_notable_combat_rhythm"}},[4876]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Compound Injury"}}},stats={[1]="local_affliction_notable_compound_injury"}},[4877]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Confident Combatant"}}},stats={[1]="local_affliction_notable_confident_combatant"}},[4878]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Conjured Wall"}}},stats={[1]="local_affliction_notable_conjured_wall"}},[4879]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Conservation of Energy"}}},stats={[1]="local_affliction_notable_conservation_of_energy"}},[4880]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Cooked Alive"}}},stats={[1]="local_affliction_notable_cooked_alive"}},[4881]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Corrosive Elements"}}},stats={[1]="local_affliction_notable_corrosive_elements"}},[4882]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Cremator"}}},stats={[1]="local_affliction_notable_cremator"}},[4883]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Cry Wolf"}}},stats={[1]="local_affliction_notable_cry_wolf"}},[4884]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Cult-Leader"}}},stats={[1]="local_affliction_notable_cult_leader"}},[4885]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Daring Ideas"}}},stats={[1]="local_affliction_notable_daring_ideas"}},[4886]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Dark Discourse"}}},stats={[1]="local_affliction_notable_dark_discourse"}},[4887]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Dark Ideation"}}},stats={[1]="local_affliction_notable_dark_ideation"}},[4888]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Dark Messenger"}}},stats={[1]="local_affliction_notable_dark_messenger"}},[4889]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Darting Movements"}}},stats={[1]="local_affliction_notable_darting_movements"}},[4890]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Deadly Repartee"}}},stats={[1]="local_affliction_notable_deadly_repartee"}},[4891]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Deep Chill"}}},stats={[1]="local_affliction_notable_deep_chill"}},[4892]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Deep Cuts"}}},stats={[1]="local_affliction_notable_deep_cuts"}},[4893]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Devastator"}}},stats={[1]="local_affliction_notable_devastator"}},[4894]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Disciples"}}},stats={[1]="local_affliction_notable_disciples"}},[4895]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Disease Vector"}}},stats={[1]="local_affliction_notable_disease_vector"}},[4896]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Disorienting Display"}}},stats={[1]="local_affliction_notable_disorienting_display"}},[4897]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Disorienting Wounds"}}},stats={[1]="local_affliction_notable_disorienting_wounds"}},[4898]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Distilled Perfection"}}},stats={[1]="local_affliction_notable_distilled_perfection"}},[4899]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Doryani's Lesson"}}},stats={[1]="local_affliction_notable_doryanis_lesson"}},[4900]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Dragon Hunter"}}},stats={[1]="local_affliction_notable_dragon_hunter"}},[4901]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Dread March"}}},stats={[1]="local_affliction_notable_dread_march"}},[4902]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Drive the Destruction"}}},stats={[1]="local_affliction_notable_drive_the_destruction"}},[4903]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Eldritch Inspiration"}}},stats={[1]="local_affliction_notable_eldritch_inspiration"}},[4904]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Elegant Form"}}},stats={[1]="local_affliction_notable_elegant_form"}},[4905]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Empowered Envoy"}}},stats={[1]="local_affliction_notable_empowered_envoy"}},[4906]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Endbringer"}}},stats={[1]="local_affliction_notable_endbringer"}},[4907]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Enduring Composure"}}},stats={[1]="local_affliction_notable_enduring_composure"}},[4908]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Enduring Focus"}}},stats={[1]="local_affliction_notable_enduring_focus"}},[4909]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Enduring Ward"}}},stats={[1]="local_affliction_notable_enduring_ward"}},[4910]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Energy From Naught"}}},stats={[1]="local_affliction_notable_energy_from_naught"}},[4911]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Essence Rush"}}},stats={[1]="local_affliction_notable_essence_rush"}},[4912]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Eternal Suffering"}}},stats={[1]="local_affliction_notable_eternal_suffering"}},[4913]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Evil Eye"}}},stats={[1]="local_affliction_notable_evil_eye"}},[4914]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Expansive Might"}}},stats={[1]="local_affliction_notable_expansive_might"}},[4915]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Expendability"}}},stats={[1]="local_affliction_notable_expendability"}},[4916]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Expert Sabotage"}}},stats={[1]="local_affliction_notable_expert_sabotage"}},[4917]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Explosive Force"}}},stats={[1]="local_affliction_notable_explosive_force"}},[4918]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Exposure Therapy"}}},stats={[1]="local_affliction_notable_exposure_therapy"}},[4919]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Eye of the Storm"}}},stats={[1]="local_affliction_notable_eye_of_the_storm"}},[4920]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Eye to Eye"}}},stats={[1]="local_affliction_notable_eye_to_eye"}},[4921]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Fan of Blades"}}},stats={[1]="local_affliction_notable_fan_of_blades"}},[4922]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Fan the Flames"}}},stats={[1]="local_affliction_notable_fan_the_flames"}},[4923]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Fasting"}}},stats={[1]="local_affliction_notable_fasting"}},[4924]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Fearsome Warrior"}}},stats={[1]="local_affliction_notable_fearsome_warrior"}},[4925]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Feast of Flesh"}}},stats={[1]="local_affliction_notable_feast_of_flesh"}},[4926]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Feasting Fiends"}}},stats={[1]="local_affliction_notable_feasting_fiends"}},[4927]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Feed the Fury"}}},stats={[1]="local_affliction_notable_feed_the_fury"}},[4928]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Fettle"}}},stats={[1]="local_affliction_notable_fettle"}},[4929]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Fire Attunement"}}},stats={[1]="local_affliction_notable_fire_attunement"}},[4930]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is First Among Equals"}}},stats={[1]="local_affliction_notable_first_among_equals"}},[4931]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Flexible Sentry"}}},stats={[1]="local_affliction_notable_flexible_sentry"}},[4932]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Flow of Life"}}},stats={[1]="local_affliction_notable_flow_of_life"}},[4933]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Follow-Through"}}},stats={[1]="local_affliction_notable_follow_through"}},[4934]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Force Multiplier"}}},stats={[1]="local_affliction_notable_force_multiplier"}},[4935]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Fuel the Fight"}}},stats={[1]="local_affliction_notable_fuel_the_fight"}},[4936]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Furious Assault"}}},stats={[1]="local_affliction_notable_furious_assault"}},[4937]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Genius"}}},stats={[1]="local_affliction_notable_genius"}},[4938]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Gladiatorial Combat"}}},stats={[1]="local_affliction_notable_gladiatorial_combat"}},[4939]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Gladiator's Fortitude"}}},stats={[1]="local_affliction_notable_gladiators_fortitude"}},[4940]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Graceful Execution"}}},stats={[1]="local_affliction_notable_graceful_execution"}},[4941]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Grand Design"}}},stats={[1]="local_affliction_notable_grand_design"}},[4942]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Grim Oath"}}},stats={[1]="local_affliction_notable_grim_oath"}},[4943]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Guerilla Tactics"}}},stats={[1]="local_affliction_notable_guerilla_tactics"}},[4944]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Haemorrhage"}}},stats={[1]="local_affliction_notable_haemorrhage"}},[4945]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Haunting Shout"}}},stats={[1]="local_affliction_notable_haunting_shout"}},[4946]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Heart of Iron"}}},stats={[1]="local_affliction_notable_heart_of_iron"}},[4947]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Heavy Hitter"}}},stats={[1]="local_affliction_notable_heavy_hitter"}},[4948]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Heraldry"}}},stats={[1]="local_affliction_notable_heraldry"}},[4949]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Hex Breaker"}}},stats={[1]="local_affliction_notable_hex_breaker"}},[4950]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Hibernator"}}},stats={[1]="local_affliction_notable_hibernator"}},[4951]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Hit and Run"}}},stats={[1]="local_affliction_notable_hit_and_run"}},[4952]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Holistic Health"}}},stats={[1]="local_affliction_notable_holistic_health"}},[4953]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Holy Conquest"}}},stats={[1]="local_affliction_notable_holy_conquest"}},[4954]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Hulking Corpses"}}},stats={[1]="local_affliction_notable_hulking_corpses"}},[4955]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Improvisor"}}},stats={[1]="local_affliction_notable_improvisor"}},[4956]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Insatiable Killer"}}},stats={[1]="local_affliction_notable_insatiable_killer"}},[4957]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Inspired Oppression"}}},stats={[1]="local_affliction_notable_inspired_oppression"}},[4958]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Insulated"}}},stats={[1]="local_affliction_notable_insulated"}},[4959]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Intensity"}}},stats={[1]="local_affliction_notable_intensity"}},[4960]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Invigorating Portents"}}},stats={[1]="local_affliction_notable_invigorating_portents"}},[4961]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Iron Breaker"}}},stats={[1]="local_affliction_notable_iron_breaker"}},[4962]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Lasting Impression"}}},stats={[1]="local_affliction_notable_lasting_impression"}},[4963]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Lead By Example"}}},stats={[1]="local_affliction_notable_lead_by_example"}},[4964]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Life from Death"}}},stats={[1]="local_affliction_notable_life_from_death"}},[4965]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Liquid Inspiration"}}},stats={[1]="local_affliction_notable_liquid_inspiration"}},[4966]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Low Tolerance"}}},stats={[1]="local_affliction_notable_low_tolerance"}},[4967]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Mage Bane"}}},stats={[1]="local_affliction_notable_mage_bane"}},[4968]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Mage Hunter"}}},stats={[1]="local_affliction_notable_mage_hunter"}},[4969]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Magnifier"}}},stats={[1]="local_affliction_notable_magnifier"}},[4970]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Martial Mastery"}}},stats={[1]="local_affliction_notable_martial_mastery"}},[4971]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Martial Momentum"}}},stats={[1]="local_affliction_notable_martial_momentum"}},[4972]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Martial Prowess"}}},stats={[1]="local_affliction_notable_martial_prowess"}},[4973]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Master of Command"}}},stats={[1]="local_affliction_notable_master_of_command"}},[4974]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Master of Fear"}}},stats={[1]="local_affliction_notable_master_of_fear"}},[4975]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Master of Fire"}}},stats={[1]="local_affliction_notable_master_of_fire"}},[4976]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Master the Fundamentals"}}},stats={[1]="local_affliction_notable_master_the_fundamentals"}},[4977]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Mender's Wellspring"}}},stats={[1]="local_affliction_notable_menders_wellspring"}},[4978]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Militarism"}}},stats={[1]="local_affliction_notable_militarism"}},[4979]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Mindfulness"}}},stats={[1]="local_affliction_notable_mindfulness"}},[4980]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Mob Mentality"}}},stats={[1]="local_affliction_notable_mob_mentality"}},[4981]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Molten One's Mark"}}},stats={[1]="local_affliction_notable_molten_ones_mark"}},[4982]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Mystical Ward"}}},stats={[1]="local_affliction_notable_mystical_ward"}},[4983]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Natural Vigour"}}},stats={[1]="local_affliction_notable_natural_vigour"}},[4984]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is No Witnesses"}}},stats={[1]="local_affliction_notable_no_witnesses"}},[4985]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Non-Flammable"}}},stats={[1]="local_affliction_notable_non_flammable"}},[4986]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Numbing Elixir"}}},stats={[1]="local_affliction_notable_numbing_elixir"}},[4987]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is One with the Shield"}}},stats={[1]="local_affliction_notable_one_with_the_shield"}},[4988]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Openness"}}},stats={[1]="local_affliction_notable_openness"}},[4989]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Opportunistic Fusilade"}}},stats={[1]="local_affliction_notable_opportunistic_fusilade"}},[4990]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Overlord"}}},stats={[1]="local_affliction_notable_overlord"}},[4991]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Overshock"}}},stats={[1]="local_affliction_notable_overshock"}},[4992]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Overwhelming Malice"}}},stats={[1]="local_affliction_notable_overwhelming_malice"}},[4993]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Paralysis"}}},stats={[1]="local_affliction_notable_paralysis"}},[4994]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Peace Amidst Chaos"}}},stats={[1]="local_affliction_notable_peace_amidst_chaos"}},[4995]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Peak Vigour"}}},stats={[1]="local_affliction_notable_peak_vigour"}},[4996]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Powerful Assault"}}},stats={[1]="local_affliction_notable_powerful_assault"}},[4997]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Powerful Ward"}}},stats={[1]="local_affliction_notable_powerful_ward"}},[4998]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Practiced Caster"}}},stats={[1]="local_affliction_notable_practiced_caster"}},[4999]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Precise Commander"}}},stats={[1]="local_affliction_notable_precise_commander"}},[5000]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Precise Focus"}}},stats={[1]="local_affliction_notable_precise_focus"}},[5001]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Precise Retaliation"}}},stats={[1]="local_affliction_notable_precise_retaliation"}},[5002]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Pressure Points"}}},stats={[1]="local_affliction_notable_pressure_points"}},[5003]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Primordial Bond"}}},stats={[1]="local_affliction_notable_primordial_bond"}},[5004]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Prismatic Carapace"}}},stats={[1]="local_affliction_notable_prismatic_carapace"}},[5005]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Prismatic Dance"}}},stats={[1]="local_affliction_notable_prismatic_dance"}},[5006]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Prismatic Heart"}}},stats={[1]="local_affliction_notable_prismatic_heart"}},[5007]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Prodigious Defence"}}},stats={[1]="local_affliction_notable_prodigious_defense"}},[5008]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Provocateur"}}},stats={[1]="local_affliction_notable_provocateur"}},[5009]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Pure Agony"}}},stats={[1]="local_affliction_notable_pure_agony"}},[5010]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Pure Aptitude"}}},stats={[1]="local_affliction_notable_pure_aptitude"}},[5011]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Pure Commander"}}},stats={[1]="local_affliction_notable_pure_commander"}},[5012]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Pure Guile"}}},stats={[1]="local_affliction_notable_pure_guile"}},[5013]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Pure Might"}}},stats={[1]="local_affliction_notable_pure_might"}},[5014]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Purposeful Harbinger"}}},stats={[1]="local_affliction_notable_purposeful_harbinger"}},[5015]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Quick and Deadly"}}},stats={[1]="local_affliction_notable_quick_and_deadly"}},[5016]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Quick Getaway"}}},stats={[1]="local_affliction_notable_quick_getaway"}},[5017]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Rapid Infusion"}}},stats={[1]="local_affliction_notable_rapid_infusion"}},[5018]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Rattling Bellow"}}},stats={[1]="local_affliction_notable_rattling_bellow"}},[5019]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Raze and Pillage"}}},stats={[1]="local_affliction_notable_raze_and_pillage"}},[5020]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Readiness"}}},stats={[1]="local_affliction_notable_readiness"}},[5021]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Remarkable"}}},stats={[1]="local_affliction_notable_remarkable"}},[5022]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Rend"}}},stats={[1]="local_affliction_notable_rend"}},[5023]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Renewal"}}},stats={[1]="local_affliction_notable_renewal"}},[5024]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Repeater"}}},stats={[1]="local_affliction_notable_repeater"}},[5025]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Replenishing Presence"}}},stats={[1]="local_affliction_notable_replenishing_presence"}},[5026]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Riot Queller"}}},stats={[1]="local_affliction_notable_riot_queller"}},[5027]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Rot-Resistant"}}},stats={[1]="local_affliction_notable_rot_resistant"}},[5028]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Rote Reinforcement"}}},stats={[1]="local_affliction_notable_rote_reinforcement"}},[5029]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Rotten Claws"}}},stats={[1]="local_affliction_notable_rotten_claws"}},[5030]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Run Through"}}},stats={[1]="local_affliction_notable_run_through"}},[5031]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Sadist"}}},stats={[1]="local_affliction_notable_sadist"}},[5032]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Sage"}}},stats={[1]="local_affliction_notable_sage"}},[5033]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Sap Psyche"}}},stats={[1]="local_affliction_notable_sap_psyche"}},[5034]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Savage Response"}}},stats={[1]="local_affliction_notable_savage_response"}},[5035]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Savour the Moment"}}},stats={[1]="local_affliction_notable_savour_the_moment"}},[5036]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Scintillating Idea"}}},stats={[1]="local_affliction_notable_scintillating_idea"}},[5037]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Seal Mender"}}},stats={[1]="local_affliction_notable_seal_mender"}},[5038]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Second Skin"}}},stats={[1]="local_affliction_notable_second_skin"}},[5039]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Seeker Runes"}}},stats={[1]="local_affliction_notable_seeker_runes"}},[5040]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Self-Fulfilling Prophecy"}}},stats={[1]="local_affliction_notable_self_fulfilling_prophecy"}},[5041]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Septic Spells"}}},stats={[1]="local_affliction_notable_septic_spells"}},[5042]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Set and Forget"}}},stats={[1]="local_affliction_notable_set_and_forget"}},[5043]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Shifting Shadow"}}},stats={[1]="local_affliction_notable_shifting_shadow"}},[5044]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Shrieking Bolts"}}},stats={[1]="local_affliction_notable_shrieking_bolts"}},[5045]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Skeletal Atrophy"}}},stats={[1]="local_affliction_notable_skeletal_atrophy"}},[5046]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Skullbreaker"}}},stats={[1]="local_affliction_notable_skullbreaker"}},[5047]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Sleepless Sentries"}}},stats={[1]="local_affliction_notable_sleepless_sentries"}},[5048]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Smite the Weak"}}},stats={[1]="local_affliction_notable_smite_the_weak"}},[5049]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Smoking Remains"}}},stats={[1]="local_affliction_notable_smoking_remains"}},[5050]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Snaring Spirits"}}},stats={[1]="local_affliction_notable_snaring_spirits"}},[5051]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Snowstorm"}}},stats={[1]="local_affliction_notable_snowstorm"}},[5052]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Special Reserve"}}},stats={[1]="local_affliction_notable_special_reserve"}},[5053]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Spiked Concoction"}}},stats={[1]="local_affliction_notable_spiked_concoction"}},[5054]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Spring Back"}}},stats={[1]="local_affliction_notable_spring_back"}},[5055]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Stalwart Commander"}}},stats={[1]="local_affliction_notable_stalwart_commander"}},[5056]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Steady Torment"}}},stats={[1]="local_affliction_notable_steady_torment"}},[5057]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Stoic Focus"}}},stats={[1]="local_affliction_notable_stoic_focus"}},[5058]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Storm Drinker"}}},stats={[1]="local_affliction_notable_storm_drinker"}},[5059]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Stormrider"}}},stats={[1]="local_affliction_notable_stormrider"}},[5060]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Storm's Hand"}}},stats={[1]="local_affliction_notable_storms_hand"}},[5061]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Streamlined"}}},stats={[1]="local_affliction_notable_streamlined"}},[5062]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Strike Leader"}}},stats={[1]="local_affliction_notable_strike_leader"}},[5063]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Stubborn Student"}}},stats={[1]="local_affliction_notable_stubborn_student"}},[5064]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Student of Decay"}}},stats={[1]="local_affliction_notable_student_of_decay"}},[5065]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Sublime Sensation"}}},stats={[1]="local_affliction_notable_sublime_sensation"}},[5066]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Supercharge"}}},stats={[1]="local_affliction_notable_supercharge"}},[5067]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Surefooted Striker"}}},stats={[1]="local_affliction_notable_surefooted_striker"}},[5068]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Surging Vitality"}}},stats={[1]="local_affliction_notable_surging_vitality"}},[5069]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Surprise Sabotage"}}},stats={[1]="local_affliction_notable_surprise_sabotage"}},[5070]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Tempered Arrowheads"}}},stats={[1]="local_affliction_notable_tempered_arrowheads"}},[5071]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Thaumophage"}}},stats={[1]="local_affliction_notable_thaumophage"}},[5072]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Thunderstruck"}}},stats={[1]="local_affliction_notable_thunderstruck"}},[5073]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Titanic Swings"}}},stats={[1]="local_affliction_notable_titanic_swings"}},[5074]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Touch of Cruelty"}}},stats={[1]="local_affliction_notable_touch_of_cruelty"}},[5075]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Towering Threat"}}},stats={[1]="local_affliction_notable_towering_threat"}},[5076]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Unholy Grace"}}},stats={[1]="local_affliction_notable_unholy_grace"}},[5077]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Unspeakable Gifts"}}},stats={[1]="local_affliction_notable_unspeakable_gifts"}},[5078]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Untouchable"}}},stats={[1]="local_affliction_notable_untouchable"}},[5079]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Unwavering Focus"}}},stats={[1]="local_affliction_notable_unwavering_focus"}},[5080]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Unwaveringly Evil"}}},stats={[1]="local_affliction_notable_unwaveringly_evil"}},[5081]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Vast Power"}}},stats={[1]="local_affliction_notable_vast_power"}},[5082]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Vengeful Commander"}}},stats={[1]="local_affliction_notable_vengeful_commander"}},[5083]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Veteran Defender"}}},stats={[1]="local_affliction_notable_veteran_defender"}},[5084]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Vicious Bite"}}},stats={[1]="local_affliction_notable_vicious_bite"}},[5085]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Vicious Guard"}}},stats={[1]="local_affliction_notable_vicious_guard_"}},[5086]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Vicious Skewering"}}},stats={[1]="local_affliction_notable_vicious_skewering"}},[5087]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Victim Maker"}}},stats={[1]="local_affliction_notable_victim_maker"}},[5088]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Vile Reinvigoration"}}},stats={[1]="local_affliction_notable_vile_reinvigoration"}},[5089]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Vital Focus"}}},stats={[1]="local_affliction_notable_vital_focus"}},[5090]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Vivid Hues"}}},stats={[1]="local_affliction_notable_vivid_hues"}},[5091]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Wall of Muscle"}}},stats={[1]="local_affliction_notable_wall_of_muscle"}},[5092]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Forbidden Words"}}},stats={[1]="local_affliction_notable_wardbreaker"}},[5093]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Warning Call"}}},stats={[1]="local_affliction_notable_warning_call"}},[5094]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Wasting Affliction"}}},stats={[1]="local_affliction_notable_wasting_affliction"}},[5095]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Weight Advantage"}}},stats={[1]="local_affliction_notable_weight_advantage"}},[5096]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Whispers of Death"}}},stats={[1]="local_affliction_notable_whispers_of_death"}},[5097]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Wicked Pall"}}},stats={[1]="local_affliction_notable_wicked_pall"}},[5098]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Widespread Destruction"}}},stats={[1]="local_affliction_notable_widespread_destruction"}},[5099]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Will Shaper"}}},stats={[1]="local_affliction_notable_will_shaper"}},[5100]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Wind-up"}}},stats={[1]="local_affliction_notable_wind_up"}},[5101]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Winter Prowler"}}},stats={[1]="local_affliction_notable_winter_prowler"}},[5102]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Wish for Death"}}},stats={[1]="local_affliction_notable_wish_for_death"}},[5103]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Wizardry"}}},stats={[1]="local_affliction_notable_wizardry"}},[5104]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Wound Aggravation"}}},stats={[1]="local_affliction_notable_wound_aggravation"}},[5105]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="1 Added Passive Skill is Wrapped in Flame"}}},stats={[1]="local_affliction_notable_wrapped_in_flame"}},[5106]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack and Cast Speed if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack and Cast Speed if Corrupted"}}},stats={[1]="local_attack_and_cast_speed_+%_if_item_corrupted"}},[5107]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack, Cast and Movement Speed during Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack, Cast and Movement Speed during Flask Effect"}}},stats={[1]="local_attack_cast_movement_speed_+%_during_flask_effect"}},[5108]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Increase Attack, Cast and Movement Speed by %1%%% every second during Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Reduce Attack, Cast and Movement Speed %1%%% every second during Flask Effect"}}},stats={[1]="local_attack_cast_movement_speed_+%_per_second_during_flask_effect"}},[5109]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Damage if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Damage if Corrupted"}}},stats={[1]="local_attack_damage_+%_if_item_corrupted"}},[5110]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Impale Enemies on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Impale Enemies on Hit with Attacks"}}},stats={[1]="local_attacks_impale_on_hit_%_chance"}},[5111]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks"}}},stats={[1]="local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed"}},[5112]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]="#",[2]="#"}},text="With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"}}},stats={[1]="local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed"}},[5113]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Cause Bleeding on Critical Strike"},[2]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]=100,[2]="#"}},text="Cause Bleeding on Critical Strike"}}},stats={[1]="local_bleed_on_critical_strike_chance_%"}},[5114]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You can only Socket Corrupted Gems in this item"}}},stats={[1]="local_can_only_socket_corrupted_gems"}},[5115]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Bleeding inflicted with this Weapon to deal 100%% more Damage"}}},stats={[1]="local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon"}},[5116]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Poisons inflicted with this Weapon to deal 100%% more Damage"}}},stats={[1]="local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon"}},[5117]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Poisons inflicted with this Weapon to deal 300%% more Damage"}}},stats={[1]="local_chance_for_poison_damage_+300%_final_inflicted_with_weapon"}},[5118]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="50%% chance to cause Bleeding on Critical Strike"}}},stats={[1]="local_chance_to_bleed_on_crit_50%"}},[5119]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Intimidate Enemies for 4 seconds on Hit"}}},stats={[1]="local_chance_to_intimidate_on_hit_%"}},[5120]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Poison on Hit during Flask effect"}}},stats={[1]="local_chance_to_poison_on_hit_%_during_flask_effect"}},[5121]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Attacks with this Weapon Penetrate %1%%% Chaos Resistance"}}},stats={[1]="local_chaos_penetration_%"}},[5122]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]=1000,[2]=1000}},text="Chill Enemies for %1% second on Hit with this Weapon when in Off Hand"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]=1,[2]="#"}},text="Chill Enemies for %1% seconds on Hit with this Weapon when in Off Hand"}}},stats={[1]="local_chill_on_hit_ms_if_in_off_hand"}},[5123]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Global Critical Strike Chance if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Global Critical Strike Chance if Corrupted"}}},stats={[1]="local_critical_strike_chance_+%_if_item_corrupted"}},[5124]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]="#",[2]="#"}},text="Critical Strikes with this Weapon have Culling Strike"}}},stats={[1]="local_crits_have_culling_strike"}},[5125]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]="#",[2]="#"}},text="Hits with this Weapon have Culling Strike if you have dealt a Critical Strike Recently"}}},stats={[1]="local_culling_strike_if_crit_recently"}},[5126]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCullingStrike"},limit={[1]={[1]=1,[2]="#"}},text="Hits with this Weapon have Culling Strike against Bleeding Enemies"}}},stats={[1]="local_culling_strike_vs_bleeding_enemies"}},[5127]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage if Corrupted"}}},stats={[1]="local_damage_+%_if_item_corrupted"}},[5128]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage taken if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="canonical_line",v="reminderstring"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage taken if Corrupted"}}},stats={[1]="local_damage_taken_+%_if_item_corrupted"}},[5129]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Curse Enemies with Socketed Curse Gem on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Curse Enemies with Socketed Curse Gem on Hit"}}},stats={[1]="local_display_curse_enemies_with_socketed_curse_on_hit_%_chance"}},[5130]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Every 10 seconds, gain %1%%% of Physical Damage\nas Extra Fire Damage for 4 seconds"}}},stats={[1]="local_display_every_10_seconds_physical_damage_%_to_add_as_fire_for_3_seconds"}},[5131]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Enemies have %1%%% increased Fire and Cold Resistances"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nearby Enemies have %1%%% reduced Fire and Cold Resistances"}}},stats={[1]="local_display_fire_and_cold_resist_debuff"}},[5132]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Power Charge after Spending a total of 200 Mana"}}},stats={[1]="local_display_gain_power_charge_on_spending_mana"}},[5133]={lang={English={[1]={limit={[1]={[1]=1000,[2]=1000}},text="Gain a Void Charge every second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Gain a Void Charge every %1% seconds"}}},stats={[1]="local_display_grant_void_arrow_every_x_ms"}},[5134]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed for you and nearby Allies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed for you and nearby Allies"}}},stats={[1]="local_display_movement_speed_+%_for_you_and_nearby_allies"}},[5135]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Allies' Action Speed cannot be modified to below base value"}}},stats={[1]="local_display_nearby_allies_action_speed_cannot_be_reduced_below_base"}},[5136]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Allies have %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="local_display_nearby_allies_critical_strike_multiplier_+"}},[5137]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLucky"},limit={[1]={[1]="#",[2]="#"}},text="Nearby Allies' Damage with Hits is Lucky"}}},stats={[1]="local_display_nearby_allies_extra_damage_rolls"}},[5138]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]="#"}},text="Nearby Allies have Fortify"}}},stats={[1]="local_display_nearby_allies_have_fortify"}},[5139]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies are Chilled"}}},stats={[1]="local_display_nearby_enemies_are_chilled"}},[5140]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies are Intimidated"}}},stats={[1]="local_display_nearby_enemies_are_intimidated"}},[5141]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies cannot deal Critical Strikes"}}},stats={[1]="local_display_nearby_enemies_cannot_crit"}},[5142]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFireExposure"},limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies have Fire Exposure"}}},stats={[1]="local_display_nearby_enemies_have_fire_exposure"}},[5143]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies have %1$+d%% to Chaos Resistance"}}},stats={[1]="local_display_nearby_enemy_chaos_damage_resistance_%"}},[5144]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies have %1$+d%% to Cold Resistance"}}},stats={[1]="local_display_nearby_enemy_cold_damage_resistance_%"}},[5145]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies take %1%%% increased Elemental Damage"}}},stats={[1]="local_display_nearby_enemy_elemental_damage_taken_+%"}},[5146]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies have %1$+d%% to Fire Resistance"}}},stats={[1]="local_display_nearby_enemy_fire_damage_resistance_%"}},[5147]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies have %1$+d%% to Lightning Resistance"}}},stats={[1]="local_display_nearby_enemy_lightning_damage_resistance_%"}},[5148]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies take %1%%% increased Physical Damage"}}},stats={[1]="local_display_nearby_enemy_physical_damage_taken_+%"}},[5149]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Enemies inflict Elemental Ailments on you instead of nearby Allies"}}},stats={[1]="local_display_you_get_elemental_ailments_instead_of_allies"}},[5150]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Attacks with this Weapon deal Double Damage"}}},stats={[1]="local_double_damage_with_attacks"}},[5151]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Evasion Rating and Energy Shield"}}},stats={[1]="local_evasion_rating_and_energy_shield"}},[5152]={lang={English={[1]={limit={[1]={[1]=200,[2]=200}},text="Consecrated Ground created by this Flask has Tripled Radius"},[2]={limit={[1]={[1]=100,[2]=100}},text="Consecrated Ground created by this Flask has Doubled Radius"},[3]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Radius of Consecrated Ground created by this Flask"}}},stats={[1]="local_flask_area_of_consecrated_ground_+%"}},[5153]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Area of Effect during Flask Effect"}}},stats={[1]="local_flask_area_of_effect_+%_during_flask_effect"}},[5154]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% Chance to avoid being Stunned during Flask Effect"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot be Stunned during Flask Effect"}}},stats={[1]="local_flask_avoid_stun_chance_%_during_flask_effect"}},[5155]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Consumes Maximum Charges to use"}}},stats={[1]="local_flask_consumes_max_charges_on_use"}},[5156]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Chance against Enemies on Consecrated Ground during Effect"}}},stats={[1]="local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect"}},[5157]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance during Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance during Flask Effect"}}},stats={[1]="local_flask_critical_strike_chance_+%_during_flask_effect"}},[5158]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Consecrated Ground created during Effect applies %1%%% increased Damage taken to Enemies"}}},stats={[1]="local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground"}},[5159]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFlaskNoQueue"},limit={[1]={[1]="#",[2]="#"}},text="Flask Effect is not removed at Full Mana\nFlask Effect does not Queue"}}},stats={[1]="local_flask_effect_not_removed_at_full_mana"}},[5160]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain Vaal Souls equal to Charges Consumed when used"}}},stats={[1]="local_flask_gain_charges_consumed_as_vaal_souls_on_use"}},[5161]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Vaal Souls on use"}}},stats={[1]="local_flask_gain_x_vaal_souls_on_use"}},[5162]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found during Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items found during Flask Effect"}}},stats={[1]="local_flask_item_found_rarity_+%_during_flask_effect"}},[5163]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Taken from Hits is Leeched as Life during Flask Effect"}}},stats={[1]="local_flask_life_leech_on_damage_taken_%_permyriad_during_flask_effect"}},[5164]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeFlasksStillRemovedOnFullLife"},limit={[1]={[1]="#",[2]="#"}},text="Life Recovery from Flasks also applies to Energy Shield during Flask Effect"}}},stats={[1]="local_flask_life_recovery_from_flasks_also_recovers_energy_shield"}},[5165]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1%%% of Life per second during Flask Effect"}}},stats={[1]="local_flask_life_regeneration_per_minute_%_during_flask_effect"}},[5166]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot gain Mana during effect"}}},stats={[1]="local_flask_no_mana_recovery_during_effect"}},[5167]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]=60}},text="Gain %1% Vaal Soul Per Second during effect"},[2]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=61,[2]="#"}},text="Gain %1% Vaal Souls Per Second during effect"}}},stats={[1]="local_flask_vaal_souls_gained_per_minute_during_effect"}},[5168]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Hits with this Weapon can't be Evaded if you have Blocked Recently"}}},stats={[1]="local_hits_with_this_weapon_always_hit_if_have_blocked_recently"}},[5169]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="Immune to Curses if Corrupted"}}},stats={[1]="local_immune_to_curses_if_item_corrupted"}},[5170]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality"}}},stats={[1]="local_item_quality_+"}},[5171]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Item sells for much more to vendors"}}},stats={[1]="local_item_sell_price_doubled"}},[5172]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Properties are doubled while in a Breach"}}},stats={[1]="local_item_stats_are_doubled_in_breach"}},[5173]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSmallPassives"},limit={[1]={[1]="#",[2]="#"}},text="Allocated Small Passive Skills in Radius grant nothing"}}},stats={[1]="local_jewel_allocated_non_notable_passives_in_radius_grant_nothing"}},[5174]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSmallPassives"},limit={[1]={[1]="#",[2]="#"}},text="Grants all bonuses of Unallocated Small Passive Skills in Radius"}}},stats={[1]="local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius"}},[5175]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="1 Added Passive Skill is a Jewel Socket"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% Added Passive Skills are Jewel Sockets"}}},stats={[1]="local_jewel_expansion_jewels_count"}},[5176]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAddedPassivesNoOtherJewels"},limit={[1]={[1]=1,[2]=1}},text="Adds 1 Jewel Socket Passive Skill"},[2]={[1]={k="reminderstring",v="ReminderTextAddedPassivesNoOtherJewels"},limit={[1]={[1]=2,[2]="#"}},text="Adds %1% Jewel Socket Passive Skills"}}},stats={[1]="local_jewel_expansion_jewels_count_override"}},[5177]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Adds Disciple of Kitava"}}},stats={[1]="local_jewel_expansion_keystone_disciple_of_kitava"}},[5178]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Adds Hollow Palm Technique"}}},stats={[1]="local_jewel_expansion_keystone_hollow_palm_technique"}},[5179]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Adds Kineticism"}}},stats={[1]="local_jewel_expansion_keystone_kineticism"}},[5180]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Adds Lone Messenger"}}},stats={[1]="local_jewel_expansion_keystone_lone_messenger"}},[5181]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Adds Nature's Patience"}}},stats={[1]="local_jewel_expansion_keystone_natures_patience"}},[5182]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Adds Pitfighter"}}},stats={[1]="local_jewel_expansion_keystone_pitfighter"}},[5183]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Adds Secrets of Suffering"}}},stats={[1]="local_jewel_expansion_keystone_secrets_of_suffering"}},[5184]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Adds Veteran's Awareness"}}},stats={[1]="local_jewel_expansion_keystone_veterans_awareness"}},[5185]={lang={English={[1]={[1]={k="tree_expansion_jewel_passive",v=1},[2]={k="reminderstring",v="ReminderTextSmallPassives"},limit={[1]={[1]="#",[2]="#"}},text="%1%"}}},stats={[1]="local_jewel_expansion_passive_node_index"}},[5186]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Left ring slot: Projectiles from Spells cannot Chain"}}},stats={[1]="local_left_ring_slot_projectiles_from_spells_cannot_chain"}},[5187]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Left ring slot: Projectiles from Spells Fork"}}},stats={[1]="local_left_ring_slot_projectiles_from_spells_fork"}},[5188]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Curse instead"}}},stats={[1]="local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura"}},[5189]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life gained for each Blinded Enemy Hit by this Weapon"}}},stats={[1]="local_life_gain_per_target_vs_blinded_enemies"}},[5190]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life gained for each Enemy Hit by this Weapon while you are Leeching"}}},stats={[1]="local_life_gain_per_target_while_leeching"}},[5191]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Life"}}},stats={[1]="local_life_leech_from_any_damage_permyriad"}},[5192]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Maim on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=100,[2]="#"}},text="Maim on Hit"}}},stats={[1]="local_maim_on_hit_%"}},[5193]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Mana"}}},stats={[1]="local_mana_leech_from_any_damage_permyriad"}},[5194]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased maximum Energy Shield if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced maximum Energy Shield if Corrupted"}}},stats={[1]="local_maximum_energy_shield_+%_if_item_corrupted"}},[5195]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased maximum Life if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced maximum Life if Corrupted"}}},stats={[1]="local_maximum_life_+%_if_item_corrupted"}},[5196]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With a Ghastly Eye Jewel Socketed, Minions have +%1% to Accuracy Rating"}}},stats={[1]="local_minion_accuracy_rating_with_minion_abyss_jewel_socketed"}},[5197]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if Corrupted"}}},stats={[1]="local_movement_speed_+%_if_item_corrupted"}},[5198]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Critical Strikes do not deal extra Damage during Flask effect"}}},stats={[1]="local_no_critical_strike_multiplier_during_flask_effect"}},[5199]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Poisons you inflict during Flask effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Poisons you inflict during Flask effect"}}},stats={[1]="local_poison_duration_+%_during_flask_effect"}},[5200]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Cause Poison on Critical Strike"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Cause Poison on Critical Strike"}}},stats={[1]="local_poison_on_critical_strike_chance_%"}},[5201]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Poison on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=100,[2]="#"}},text="Always Poison on Hit"}}},stats={[1]="local_poison_on_hit_%"}},[5202]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to all Elemental Resistances if Corrupted"}}},stats={[1]="local_resist_all_elements_%_if_item_corrupted"}},[5203]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Right ring slot: Projectiles from Spells Chain +%1% times"}}},stats={[1]="local_right_ring_slot_number_of_additional_chains_for_spell_projectiles"}},[5204]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Right ring slot: Projectiles from Spells cannot Fork"}}},stats={[1]="local_right_ring_slot_projectiles_from_spells_cannot_fork"}},[5205]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Curse instead"}}},stats={[1]="local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura"}},[5206]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Attack Speed"}}},stats={[1]="local_ring_attack_speed_+%_final"}},[5207]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nova Spells have %1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nova Spells have %1%%% less Area of Effect"}}},stats={[1]="local_ring_nova_spells_area_of_effect_+%_final"}},[5208]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed AoE Gems"}}},stats={[1]="local_socketed_area_of_effect_gem_quality_+"}},[5209]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Aura Gems"}}},stats={[1]="local_socketed_aura_gem_quality_+"}},[5210]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Bow Gems"}}},stats={[1]="local_socketed_bow_gem_quality_+"}},[5211]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Chaos Gems"}}},stats={[1]="local_socketed_chaos_gem_quality_+"}},[5212]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Cold Gems"}}},stats={[1]="local_socketed_cold_gem_quality_+"}},[5213]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Dexterity Gems"}}},stats={[1]="local_socketed_dexterity_gem_quality_+"}},[5214]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Fire Gems"}}},stats={[1]="local_socketed_fire_gem_quality_+"}},[5215]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Intelligence Gems"}}},stats={[1]="local_socketed_intelligence_gem_quality_+"}},[5216]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Lightning Gems"}}},stats={[1]="local_socketed_lightning_gem_quality_+"}},[5217]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Melee Gems"}}},stats={[1]="local_socketed_melee_gem_quality_+"}},[5218]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Minion Gems"}}},stats={[1]="local_socketed_minion_gem_quality_+"}},[5219]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Projectile Gems"}}},stats={[1]="local_socketed_projectile_gem_quality_+"}},[5220]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Quality of Socketed Strength Gems"}}},stats={[1]="local_socketed_strength_gem_quality_+"}},[5221]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage if Corrupted"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextIfItemCorrupted"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage if Corrupted"}}},stats={[1]="local_spell_damage_+%_if_item_corrupted"}},[5222]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]="#"}},text="With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells"}}},stats={[1]="local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed"}},[5223]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage Over Time during Flask Effect"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage Over Time during Flask Effect"}}},stats={[1]="local_unique_flask_damage_over_time_+%_during_flask_effect"}},[5224]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUncappedResist"},limit={[1]={[1]=1,[2]="#"}},text="During Flask Effect, %1%%% increased Damage taken of each Element for which your Uncapped Elemental Resistance is lowest"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextUncappedResist"},limit={[1]={[1]="#",[2]=-1}},text="During Flask Effect, %1%%% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest"}}},stats={[1]="local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type"}},[5225]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUncappedResist"},limit={[1]={[1]=1,[2]="#"}},text="During Flask Effect, Damage Penetrates %1%%% Resistance of each Element for which your Uncapped Elemental Resistance is highest"}}},stats={[1]="local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type"}},[5226]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Grants Level %1% Despair Curse Aura during Flask Effect"}}},stats={[1]="local_unique_flask_nearby_enemies_cursed_with_level_x_despair_during_flask_effect"}},[5227]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vaal Skills have %1%%% increased Critical Strike Chance during effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vaal Skills have %1%%% reduced Critical Strike Chance during effect"}}},stats={[1]="local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect"}},[5228]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vaal Skills deal %1%%% increased Damage during effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vaal Skills deal %1%%% reduced Damage during effect"}}},stats={[1]="local_unique_flask_vaal_skill_damage_+%_during_flask_effect"}},[5229]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vaal Skills deal %1%%% more Damage during Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vaal Skills deal %1%%% less Damage during Effect"}}},stats={[1]="local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect"}},[5230]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Vaal Skills used during effect do not apply Soul Gain Prevention"}}},stats={[1]="local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect"}},[5231]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vaal Skills have %1%%% increased Soul Cost during effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vaal Skills have %1%%% reduced Soul Cost during effect"}}},stats={[1]="local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect"}},[5232]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vaal Skills used during effect have %1%%% increased Soul Gain Prevention Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vaal Skills used during effect have %1%%% reduced Soul Gain Prevention Duration"}}},stats={[1]="local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect"}},[5233]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="+%1% to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="-%1% to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius"}}},stats={[1]="local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius"}},[5234]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Blight inflicts Withered for %1% seconds"}}},stats={[1]="local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius"}},[5235]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds"}}},stats={[1]="local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius"}},[5236]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Blight has %1%%% increased Hinder Duration"}}},stats={[1]="local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius"}},[5237]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Enemies Hindered by\nBlight take %1%%% increased Chaos Damage"}}},stats={[1]="local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius"}},[5238]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Blight has %1%%% increased Area of Effect after 1 second of Channelling"}}},stats={[1]="local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius"}},[5239]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Caustic Arrow has a %1%%% chance on Hit to Poison Enemies on Caustic Ground"}}},stats={[1]="local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius"}},[5240]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Caustic Arrow deals %1%%% increased Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Dexterity in Radius, Caustic Arrow deals %1%%% reduced Damage over Time"}}},stats={[1]="local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius"}},[5241]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Caustic Arrow deals %1%%% increased Damage with Hits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Dexterity in Radius, Caustic Arrow deals %1%%% reduced Damage with Hits"}}},stats={[1]="local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius"}},[5242]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cold Resistance and Lightning Resistance in Radius are Transformed to increased Melee Damage"}}},stats={[1]="local_unique_jewel_cold_and_lightning_resistance_to_melee_damage"}},[5243]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant Chance to Dodge Attack Hits at %1%%% of its value"}}},stats={[1]="local_unique_jewel_cold_resistance_also_grants_dodge_chance_scaled_%"}},[5244]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Frenzy Charge on Kill"}}},stats={[1]="local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance"}},[5245]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area\nWith at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges"}}},stats={[1]="local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius"}},[5246]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier per 10 Intelligence on Unallocated Passives in Radius"}}},stats={[1]="local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius"}},[5247]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="With at least 40 Dexterity in Radius, Dual Strike has a %1%%% chance\nto deal Double Damage with the Main-Hand Weapon"},[2]={limit={[1]={[1]=100,[2]=100}},text="With at least 40 Dexterity in Radius, Dual Strike deals Double Damage with the Main-Hand Weapon"}}},stats={[1]="local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius"}},[5248]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage\nto surrounding targets"}}},stats={[1]="local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius"}},[5249]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike deal 50%% less Cold Damage"}}},stats={[1]="local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int"}},[5250]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike deal 50%% less Fire Damage"}}},stats={[1]="local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex"}},[5251]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike deal 50%% less Lightning Damage"}}},stats={[1]="local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex"}},[5252]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Strength and Intelligence in Radius, Elemental Hit and Wild Strike cannot choose Cold"}}},stats={[1]="local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius"}},[5253]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Intelligence and Dexterity in Radius, Elemental Hit and Wild Strike cannot choose Fire"}}},stats={[1]="local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius"}},[5254]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Dexterity and Strength in Radius, Elemental Hit and Wild Strike cannot choose Lightning"}}},stats={[1]="local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius"}},[5255]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fire Resistance and Cold Resistance in Radius are Transformed to increased Spell Damage"}}},stats={[1]="local_unique_jewel_fire_and_cold_resistance_to_spell_damage"}},[5256]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Fire Resistance and Lightning Resistance in Radius are Transformed to increased Projectile Attack Damage"}}},stats={[1]="local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage"}},[5257]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Attack Damage at %1%%% of its value"}}},stats={[1]="local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%"}},[5258]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain an Endurance Charge on Kill"}}},stats={[1]="local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance"}},[5259]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Dexterity in Radius, Fire Trap throws up to 1 additional Trap"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Fire Trap throws up to %1% additional Traps"}}},stats={[1]="local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius"}},[5260]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Melee Damage\ndealt by Frost Blades Penetrates %1%%% Cold Resistance"}}},stats={[1]="local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius"}},[5261]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Frost Blades has %1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Dexterity in Radius, Frost Blades has %1%%% reduced Projectile Speed"}}},stats={[1]="local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius"}},[5262]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Intelligence in Radius, Frostbolt fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Frostbolt fires %1% additional Projectiles"}}},stats={[1]="local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius"}},[5263]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, Frostbolt Projectiles gain %1%%% increased Projectile Speed per second"},[2]={limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Intelligence in Radius, Frostbolt Projectiles gain %1%%% reduced Projectile Speed per second"}}},stats={[1]="local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius"}},[5264]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With 40 Intelligence in Radius, Glacial Cascade has an additional Burst"},[2]={limit={[1]={[1]=2,[2]="#"}},text="With 40 Intelligence in Radius, Glacial Cascade has %1% additional Bursts"}}},stats={[1]="local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius"}},[5265]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 Intelligence in Radius, %1%%% of Glacial Cascade Physical Damage\nConverted to Cold Damage"}}},stats={[1]="local_unique_jewel_glacial_cascade_physical_damage_%_to_convert_to_cold_with_40_int_in_radius"}},[5266]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAddedPassivesNoOtherJewels"},limit={[1]={[1]=1,[2]=1}},text="Adds 1 Small Passive Skill which grants nothing"},[2]={[1]={k="reminderstring",v="ReminderTextAddedPassivesNoOtherJewels"},limit={[1]={[1]=2,[2]="#"}},text="Adds %1% Small Passive Skills which grant nothing"}}},stats={[1]="local_unique_jewel_grants_x_empty_passives"}},[5267]={lang={English={[1]={limit={[1]={[1]=10,[2]=19}},text="With at least 40 Dexterity in Radius, Ice Shot Pierces an additional Target"},[2]={[1]={k="divide_by_ten_0dp",v=1},limit={[1]={[1]=20,[2]="#"}},text="With at least 40 Dexterity in Radius, Ice Shot Pierces %1% additional Targets"}}},stats={[1]="local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius"}},[5268]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Ice Shot has %1%%% increased Area of Effect"}}},stats={[1]="local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius"}},[5269]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Dexterity in Radius, Ice Shot Pierces an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="With at least 40 Dexterity in Radius, Ice Shot Pierces %1% additional Targets"}}},stats={[1]="local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius"}},[5270]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Recovery Rate per 10 Strength on Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius"}},[5271]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Life Recovery Rate per 10 Strength on Unallocated Passives in Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Life Recovery Rate per 10 Strength on Unallocated Passives in Radius"}}},stats={[1]="local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius"}},[5272]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant Chance to Block Spell Damage at %1%%% of its value"}}},stats={[1]="local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_%"}},[5273]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant an equal chance to gain a Power Charge on Kill"}}},stats={[1]="local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance"}},[5274]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, each Lightning Tendrils Repeat has %1%%% increased Area of Effect per Enemy Hit"}}},stats={[1]="local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius"}},[5275]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Intelligence in Radius, Magma Orb fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Magma Orb fires %1% additional Projectiles"}}},stats={[1]="local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius"}},[5276]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, Magma Orb\nhas %1%%% increased Area of Effect per Chain"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Intelligence in Radius, Magma Orb\nhas %1%%% reduced Area of Effect per Chain"}}},stats={[1]="local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius"}},[5277]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius"}}},stats={[1]="local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius"}},[5278]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Recovery Rate per 10 Intelligence on Unallocated Passives in Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Recovery Rate per 10 Intelligence on Unallocated Passives in Radius"}}},stats={[1]="local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius"}},[5279]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Strength in Radius, Molten Strike fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Strength in Radius, Molten Strike fires %1% additional Projectiles"}}},stats={[1]="local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius"}},[5280]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Strength in Radius, Molten Strike has %1%%% increased Area of Effect"}}},stats={[1]="local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius"}},[5281]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed per 10 Dexterity on Unallocated Passives in Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed per 10 Dexterity on Unallocated Passives in Radius"}}},stats={[1]="local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius"}},[5282]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of non-Keystone Passive Skills in Radius"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of non-Keystone Passive Skills in Radius"}}},stats={[1]="local_unique_jewel_non_keystone_passive_in_radius_effect_+%"}},[5283]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Notable Passive Skills in Radius grant nothing"}}},stats={[1]="local_unique_jewel_notable_passive_in_radius_does_nothing"}},[5284]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Galvanic Arrow deals %1%%% increased Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least 40 Dexterity in Radius, Galvanic Arrow deals %1%%% increased Area Damage"}}},stats={[1]="local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius"}},[5285]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="With at least 40 Intelligence in Radius, Spark fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Spark fires %1% additional Projectiles"}}},stats={[1]="local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius"}},[5286]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle"}}},stats={[1]="local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius"}},[5287]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Dexterity and Strength in Radius, Spectral Shield Throw Chains +%1% times"}}},stats={[1]="local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius"}},[5288]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires Shard Projectiles when Chaining"}}},stats={[1]="local_unique_jewel_spectral_shield_throw_fire_shards_on_chain_with_total_40_str_+_dex_in_radius"}},[5289]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires %1%%% more Shard Projectiles"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With 40 total Dexterity and Strength in Radius, Spectral Shield Throw fires %1%%% less Shard Projectiles"}}},stats={[1]="local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius"}},[5290]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Spectral Throw has %1%%% chance on Hit to give a Vaal soul to Vaal Spectral Throw"}}},stats={[1]="local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius"}},[5291]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSoulEater"},limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Intelligence in Radius, Raised Spectres have a %1%%% chance to gain Soul Eater for 20 seconds on Kill"}}},stats={[1]="local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius"}},[5292]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Dexterity in Radius, Split Arrow fires Projectiles in Parallel"}}},stats={[1]="local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius"}},[5293]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least 40 Dexterity in Radius, Viper Strike has a %1%%% chance per Poison on Enemy to grant Unholy Might for 4 seconds on Hit"}}},stats={[1]="local_unique_jewel_viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy_with_50_dex_in_radius"}},[5294]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Raised\nZombies' Slam Attack has %1%%% increased Cooldown Recovery Speed"}}},stats={[1]="local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius"}},[5295]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="With at least 40 Intelligence in Radius, Raised Zombies' Slam\nAttack deals %1%%% increased Damage"}}},stats={[1]="local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius"}},[5296]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gains no Charges during effect of any Soul Ripper Flask"}}},stats={[1]="local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect"}},[5297]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose all Frenzy, Endurance, and Power Charges when you Move"}}},stats={[1]="lose_all_charges_on_starting_movement"}},[5298]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose %1%%% of Mana when you use an Attack Skill"}}},stats={[1]="lose_%_of_mana_when_you_use_an_attack_skill"}},[5299]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Lose a Power Charge each second if you have not Detonated Mines Recently"}}},stats={[1]="lose_power_charge_each_second_if_not_detonated_mines_recently"}},[5300]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain Magic Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain Magic Enemies"}}},stats={[1]="magic_monster_dropped_item_rarity_+%"}},[5301]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Magma Orb fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Magma Orb fires %1% additional Projectiles"}}},stats={[1]="magma_orb_number_of_additional_projectiles"}},[5302]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Magma Orb has %1%%% increased Area of Effect per Chain"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Magma Orb has %1%%% reduced Area of Effect per Chain"}}},stats={[1]="magma_orb_skill_area_of_effect_+%_per_bounce"}},[5303]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Maim"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Maim"}}},stats={[1]="maim_effect_+%"}},[5304]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Maim Enemies on Critical Strike with Attacks"}}},stats={[1]="maim_on_crit_%_with_attacks"}},[5305]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]=99}},text="Attacks have %1%%% chance to Maim on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=100,[2]="#"}},text="Attacks always Maim on Hit"}}},stats={[1]="maim_on_hit_%"}},[5306]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Main Hand Attack Damage while wielding two different Weapon Types"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Main Hand Attack Damage while wielding two different Weapon Types"}}},stats={[1]="main_hand_attack_damage_+%_while_wielding_two_weapon_types"}},[5307]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Pestilent Strike has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pestilent Strike has %1%%% reduced Area of Effect"}}},stats={[1]="mamba_strike_area_of_effect_+%"}},[5308]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Pestilent Strike deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pestilent Strike deals %1%%% reduced Damage"}}},stats={[1]="mamba_strike_damage_+%"}},[5309]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Pestilent Strike has %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pestilent Strike has %1%%% reduced Duration"}}},stats={[1]="mamba_strike_duration_+%"}},[5310]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Channelling Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Channelling Skills"}}},stats={[1]="mana_cost_+%_for_channelling_skills"}},[5311]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills that throw Traps or Mines"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills that throw Traps or Mines"}}},stats={[1]="mana_cost_+%_for_trap_and_mine_skills"}},[5312]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills that throw Traps"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills that throw Traps"}}},stats={[1]="mana_cost_+%_for_trap_skills"}},[5313]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Skills per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Skills per 10 Devotion"}}},stats={[1]="mana_cost_+%_per_10_devotion"}},[5314]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Lose %1% Mana per Second"}}},stats={[1]="mana_degeneration_per_minute"}},[5315]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Lose %1%%% of Mana per Second"}}},stats={[1]="mana_degeneration_per_minute_%"}},[5316]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Mana Flasks gain %1% Charge every 3 seconds"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Mana Flasks gain %1% Charges every 3 seconds"}}},stats={[1]="mana_flasks_gain_X_charges_every_3_seconds"}},[5317]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained for each Enemy Hit by your Spells"}}},stats={[1]="mana_gained_on_spell_hit"}},[5318]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d Mana gained for each Cursed Enemy Hit by your Spells"}}},stats={[1]="mana_gained_on_spell_hit_vs_cursed_enemies"}},[5319]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Attack Damage Leeched as Mana per Power Charge"}}},stats={[1]="mana_leech_from_attack_damage_permyriad_per_power_charge"}},[5320]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Lightning Damage is Leeched as Mana while affected by Wrath"}}},stats={[1]="mana_leech_from_lightning_damage_permyriad_while_affected_by_wrath"}},[5321]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Damage Leeched as Mana against Frozen Enemies"}}},stats={[1]="mana_leech_permyriad_vs_frozen_enemies"}},[5322]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Maximum Mana per Level"}}},stats={[1]="mana_per_level"}},[5323]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of your maximum Mana when you Block"}}},stats={[1]="mana_%_gained_on_block"}},[5324]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Maximum Mana as Extra Maximum Energy Shield while you have at least 150 Devotion"}}},stats={[1]="mana_%_to_add_as_energy_shield_at_devotion_threshold"}},[5325]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextEquippedItems"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Mana per second if all Equipped Items are Corrupted"}}},stats={[1]="mana_recharge_rate_per_minute_with_all_corrupted_equipped_items"}},[5326]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Recovery Rate during Effect of any Mana Flask"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Recovery Rate during Effect of any Mana Flask"}}},stats={[1]="mana_recovery_rate_+%_while_affected_by_a_mana_flask"}},[5327]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Recovery Rate while affected by Clarity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Recovery Rate while affected by Clarity"}}},stats={[1]="mana_recovery_rate_+%_while_affected_by_clarity"}},[5328]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate per 1%% Chance to Block Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate per 1%% Chance to Block Spell Damage"}}},stats={[1]="mana_regeneration_rate_+%_per_1%_spell_block_chance"}},[5329]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per second if you've Hit an Enemy Recently"}}},stats={[1]="mana_regeneration_rate_per_minute_if_enemy_hit_recently"}},[5330]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Mana per second if you've used a Movement Skill Recently"}}},stats={[1]="mana_regeneration_rate_per_minute_if_used_movement_skill_recently"}},[5331]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per Second per 10 Devotion"}}},stats={[1]="mana_regeneration_rate_per_minute_per_10_devotion"}},[5332]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per Second per Power Charge"}}},stats={[1]="mana_regeneration_rate_per_minute_per_power_charge"}},[5333]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Mana per second if you've Hit an Enemy Recently"}}},stats={[1]="mana_regeneration_rate_per_minute_%_if_enemy_hit_recently"}},[5334]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Mana per second for each Summoned Totem"}}},stats={[1]="mana_regeneration_rate_per_minute_%_per_active_totem"}},[5335]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per Second while Dual Wielding"}}},stats={[1]="mana_regeneration_rate_per_minute_while_dual_wielding"}},[5336]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per Second while holding a Shield"}}},stats={[1]="mana_regeneration_rate_per_minute_while_holding_shield"}},[5337]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per Second while on Consecrated Ground"}}},stats={[1]="mana_regeneration_rate_per_minute_while_on_consecrated_ground"}},[5338]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextStaffWarstaff"},limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1% Mana per second while wielding a Staff"}}},stats={[1]="mana_regeneration_rate_per_minute_while_wielding_staff"}},[5339]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Regenerate %1% Mana per Second while you have Avian's Flight"}}},stats={[1]="mana_regeneration_rate_per_minute_while_you_have_avians_flight"}},[5340]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate if you have Frozen an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate if you have Frozen an Enemy Recently"}}},stats={[1]="mana_regeneration_rate_+%_if_enemy_frozen_recently"}},[5341]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate if you have Shocked an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate if you have Shocked an Enemy Recently"}}},stats={[1]="mana_regeneration_rate_+%_if_enemy_shocked_recently"}},[5342]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate if you've Hit a Cursed Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate if you've Hit a Cursed Enemy Recently"}}},stats={[1]="mana_regeneration_rate_+%_if_hit_cursed_enemy_recently"}},[5343]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate per Raised Spectre"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate per Raised Spectre"}}},stats={[1]="mana_regeneration_rate_+%_per_raised_spectre"}},[5344]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Regeneration Rate while moving"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Regeneration Rate while moving"}}},stats={[1]="mana_regeneration_rate_+%_while_moving"}},[5345]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Reservation of Skills that throw Mines"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Reservation of Skills that throw Mines"}}},stats={[1]="mana_reservation_+%_with_skills_that_throw_mines"}},[5346]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Reserved per 250 total Attributes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Reserved per 250 total Attributes"}}},stats={[1]="mana_reservation_+%_per_250_total_attributes"}},[5347]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Curse Skills have %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Curse Skills have %1%%% reduced Mana Reservation"}}},stats={[1]="mana_reservation_+%_with_curse_skills"}},[5348]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Manifest Dancing Dervish also manifests a copy of Dancing Dervish"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Manifest Dancing Dervish also manifests %1% copies of Dancing Dervish"}}},stats={[1]="manifest_dancing_dervish_number_of_additional_copies"}},[5349]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Rare Packs to have an additional Rare Monster"}}},stats={[1]="map_additional_rare_in_rare_pack_%_chance"}},[5350]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Synthesised Rare Packs to have an additional Rare Monster"}}},stats={[1]="map_additional_rare_in_synthesised_rare_pack_%_chance"}},[5351]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains %1% additional Red Beast"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Red Beasts"}}},stats={[1]="map_additional_red_beasts"}},[5352]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Map has %1% additional random Modifier"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Map has %1% additional random Modifiers"}}},stats={[1]="map_adds_X_extra_synthesis_mods"}},[5353]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Map has %1% additional Synthesis Global Modifier"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Map has %1% additional Synthesis Global Modifiers"}}},stats={[1]="map_adds_X_extra_synthesis_special_mods"}},[5354]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Temple Architects drop an additional Map Currency Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Temple Architects drop %1% additional Map Currency Items"}}},stats={[1]="map_architects_drops_additional_map_currency"}},[5355]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area is influenced by The Shaper"},[2]={limit={[1]={[1]=2,[2]=2}},text="Area is influenced by The Elder"}}},stats={[1]="map_atlas_influence_type"}},[5356]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Arcanist's Strongbox"}}},stats={[1]="map_area_contains_arcanists_strongbox"}},[5357]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Ambush"}}},stats={[1]="map_area_contains_avatar_of_ambush"}},[5358]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Anarchy"}}},stats={[1]="map_area_contains_avatar_of_anarchy"}},[5359]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Beyond"}}},stats={[1]="map_area_contains_avatar_of_beyond"}},[5360]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Bloodlines"}}},stats={[1]="map_area_contains_avatar_of_bloodlines"}},[5361]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Breach"}}},stats={[1]="map_area_contains_avatar_of_breach"}},[5362]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Domination"}}},stats={[1]="map_area_contains_avatar_of_domination"}},[5363]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Essence"}}},stats={[1]="map_area_contains_avatar_of_essence"}},[5364]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Invasion"}}},stats={[1]="map_area_contains_avatar_of_invasion"}},[5365]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Nemesis"}}},stats={[1]="map_area_contains_avatar_of_nemesis"}},[5366]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Onslaught"}}},stats={[1]="map_area_contains_avatar_of_onslaught"}},[5367]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Perandus"}}},stats={[1]="map_area_contains_avatar_of_perandus"}},[5368]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Prophecy"}}},stats={[1]="map_area_contains_avatar_of_prophecy"}},[5369]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Rampage"}}},stats={[1]="map_area_contains_avatar_of_rampage"}},[5370]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Talisman"}}},stats={[1]="map_area_contains_avatar_of_talisman"}},[5371]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Tempest"}}},stats={[1]="map_area_contains_avatar_of_tempest"}},[5372]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Torment"}}},stats={[1]="map_area_contains_avatar_of_torment"}},[5373]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Avatar of Warbands"}}},stats={[1]="map_area_contains_avatar_of_warbands"}},[5374]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Cartographer's Strongbox"}}},stats={[1]="map_area_contains_cartographers_strongbox"}},[5375]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Perandus Treasury"}}},stats={[1]="map_area_contains_currency_chest"}},[5376]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Gemcutter's Strongbox"}}},stats={[1]="map_area_contains_gemcutters_strongbox"}},[5377]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Grandmaster Ally"}}},stats={[1]="map_area_contains_grandmaster_ally"}},[5378]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Perandus Jewellery Box"}}},stats={[1]="map_area_contains_jewellery_chest"}},[5379]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Perandus Archive"}}},stats={[1]="map_area_contains_map_chest"}},[5380]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains Metamorph Monsters"}}},stats={[1]="map_area_contains_metamorphs"}},[5381]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Perandus Coffer"}}},stats={[1]="map_area_contains_perandus_coin_chest"}},[5382]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Tormented Embezzler"}}},stats={[1]="map_area_contains_tormented_embezzler"}},[5383]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Tormented Seditionist"}}},stats={[1]="map_area_contains_tormented_seditionist"}},[5384]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Tormented Vaal Cultist"}}},stats={[1]="map_area_contains_tormented_vaal_cultist"}},[5385]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Perandus Locker"}}},stats={[1]="map_area_contains_unique_item_chest"}},[5386]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Unique Strongbox"}}},stats={[1]="map_area_contains_unique_strongbox"}},[5387]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Clusters of Mysterious Barrels"}}},stats={[1]="map_area_contains_x_additional_clusters_of_beacon_barrels"}},[5388]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Clusters of Mysterious Barrels"}}},stats={[1]="map_area_contains_x_additional_clusters_of_bloodworm_barrels"}},[5389]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Clusters of Mysterious Barrels"}}},stats={[1]="map_area_contains_x_additional_clusters_of_explosive_barrels"}},[5390]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is Overgrown with Caustic Plants"}}},stats={[1]="map_area_contains_x_additional_clusters_of_explosive_eggs"}},[5391]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Clusters of Mysterious Barrels"}}},stats={[1]="map_area_contains_x_additional_clusters_of_parasite_barrels"}},[5392]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Clusters of Mysterious Barrels"}}},stats={[1]="map_area_contains_x_additional_clusters_of_volatile_barrels"}},[5393]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Clusters of Mysterious Barrels"}}},stats={[1]="map_area_contains_x_additional_clusters_of_wealthy_barrels"}},[5394]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Beyond Portals have a %1%%% chance to spawn an additional Beyond Demon"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Beyond Portals spawn an additional Beyond Demon"}}},stats={[1]="map_beyond_portal_spawn_additional_demon_%_chance"}},[5395]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance for Blight Chests to drop an additional Reward"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Blight Chests drop an additional Reward"}}},stats={[1]="map_blight_chest_%_chance_for_additional_drop"}},[5396]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cost of Building and Upgrading Towers"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cost of Building and Upgrading Towers"}}},stats={[1]="map_blight_tower_cost_+%"}},[5397]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="When a Bloodline Pack is Slain, it drops a Currency Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="When a Bloodline Pack is Slain, it drops %1% Currency Items"}}},stats={[1]="map_bloodline_packs_drop_x_additional_currency_items"}},[5398]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="When a Bloodline Pack is Slain, it drops a Rare Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="When a Bloodline Pack is Slain, it drops %1% Rare Items"}}},stats={[1]="map_bloodline_packs_drop_x_additional_rare_items"}},[5399]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss is accompanied by Bodyguards"}}},stats={[1]="map_boss_accompanied_by_bodyguards"}},[5400]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss is accompanied by a mysterious Harbinger"}}},stats={[1]="map_boss_accompanied_by_harbinger"}},[5401]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items dropped by Unique Boss"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items dropped by Unique Boss"}}},stats={[1]="map_boss_dropped_item_quantity_+%"}},[5402]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Unique Boss drops %1% additional Unique Item"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Unique Boss drops %1% additional Unique Items"}}},stats={[1]="map_boss_dropped_unique_items_+"}},[5403]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss drops additional Currency Shards"}}},stats={[1]="map_boss_drops_additional_currency_shards"}},[5404]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss drops Corrupted Items"}}},stats={[1]="map_boss_drops_corrupted_items"}},[5405]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Unique Boss drops an additional Vaal Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss drops %1% additional Vaal Items"}}},stats={[1]="map_boss_drops_x_additional_vaal_items"}},[5406]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Breaches each contain a Breachlord"}}},stats={[1]="map_breach_has_boss"}},[5407]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Breaches contain a Breachlord's Clasped Hand"}}},stats={[1]="map_breach_has_large_chest"}},[5408]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Breaches have %1%%% increased Monster density"}}},stats={[1]="map_breach_monster_quantity_+%"}},[5409]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Breach"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Breaches"}}},stats={[1]="map_contains_additional_breaches"}},[5410]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Chrysalis Talisman"}}},stats={[1]="map_contains_additional_chrysalis_talisman"}},[5411]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Clutching Talisman"}}},stats={[1]="map_contains_additional_clutching_talisman"}},[5412]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Fangjaw Talisman"}}},stats={[1]="map_contains_additional_fangjaw_talisman"}},[5413]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Mandible Talisman"}}},stats={[1]="map_contains_additional_mandible_talisman"}},[5414]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Monsters that deal Chaos Damage"}}},stats={[1]="map_contains_additional_packs_of_chaos_monsters"}},[5415]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Monsters that deal Cold Damage"}}},stats={[1]="map_contains_additional_packs_of_cold_monsters"}},[5416]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Monsters that deal Fire Damage"}}},stats={[1]="map_contains_additional_packs_of_fire_monsters"}},[5417]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Monsters that deal Lightning Damage"}}},stats={[1]="map_contains_additional_packs_of_lightning_monsters"}},[5418]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Monsters that deal Physical Damage"}}},stats={[1]="map_contains_additional_packs_of_physical_monsters"}},[5419]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains %1% additional pack of Corrupted Vaal Monsters"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional packs of Corrupted Vaal Monsters"}}},stats={[1]="map_contains_additional_packs_of_vaal_monsters"}},[5420]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Three Rat Talisman"}}},stats={[1]="map_contains_additional_three_rat_talisman"}},[5421]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Tormented Betrayer"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Tormented Betrayers"}}},stats={[1]="map_contains_additional_tormented_betrayers"}},[5422]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Tormented Graverobber"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Tormented Graverobbers"}}},stats={[1]="map_contains_additional_tormented_graverobbers"}},[5423]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Tormented Heretic"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Tormented Heretics"}}},stats={[1]="map_contains_additional_tormented_heretics"}},[5424]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Unique Talisman"}}},stats={[1]="map_contains_additional_unique_talisman"}},[5425]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Writhing Talisman"}}},stats={[1]="map_contains_additional_writhing_talisman"}},[5426]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Chayula Breach"}}},stats={[1]="map_contains_chayula_breach"}},[5427]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="A Strongbox in this Area is Corrupted"}}},stats={[1]="map_contains_corrupted_strongbox"}},[5428]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains Creeping Agony"}}},stats={[1]="map_contains_creeping_agony"}},[5429]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Keepers of the Trove Bloodline Pack"}}},stats={[1]="map_contains_keepers_of_the_trove_bloodline_pack"}},[5430]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains a Forsaken Master"}}},stats={[1]="map_contains_master"}},[5431]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains Yama the White"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains Yama the Generous"}}},stats={[1]="map_contains_nevalis_monkey"}},[5432]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="At least one Perandus Chest is guarded by a Unique Monster"}}},stats={[1]="map_contains_perandus_boss"}},[5433]={lang={English={[1]={limit={[1]={[1]=2,[2]=2}},text="Area contains a Rare Monster carrying a Tier 2 Talisman"},[2]={limit={[1]={[1]=3,[2]=3}},text="Area contains a Unique Monster carrying a Tier 3 Talisman"}}},stats={[1]="map_contains_talisman_boss_with_higher_tier"}},[5434]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"},[2]={[1]=1,[2]="#"}},text="Area contains 3 additional Magic Packs which\nhave %1%%% increased Attack, Cast and Movement Speed, and drop %2%%% more items"},[2]={[1]={k="negate",v=1},[2]={k="negate",v=2},limit={[1]={[1]="#",[2]=-1},[2]={[1]="#",[2]=-1}},text="Area contains 3 additional Magic Packs which\nhave %1%%% reduced Attack, Cast and Movement Speed, and drop %2%%% less items"}}},stats={[1]="map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+%",[2]="map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final"}},[5435]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an Uul-Netol Breach"}}},stats={[1]="map_contains_uul_netol_breach"}},[5436]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains an additional Magic Pack of Wealth"}}},stats={[1]="map_contains_wealthy_pack"}},[5437]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Animated Weapon Packs"}}},stats={[1]="map_contains_x_additional_animated_weapon_packs"}},[5438]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Monsters that Heal"}}},stats={[1]="map_contains_x_additional_healing_packs"}},[5439]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Magic Monster pack"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Magic Monster packs"}}},stats={[1]="map_contains_x_additional_magic_packs"}},[5440]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional Normal Monsters"}}},stats={[1]="map_contains_x_additional_normal_packs"}},[5441]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains hunted traitors"}}},stats={[1]="map_contains_x_additional_packs_on_their_own_team"}},[5442]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Monsters that Convert when Killed"}}},stats={[1]="map_contains_x_additional_packs_that_convert_on_death"}},[5443]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Packs with Mirrored Rare Monsters"}}},stats={[1]="map_contains_x_additional_packs_with_mirrored_rare_monsters"}},[5444]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Poisonous Monsters"}}},stats={[1]="map_contains_x_additional_poison_packs"}},[5445]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional pack with a Rare monster"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional packs with a Rare monster"}}},stats={[1]="map_contains_x_additional_rare_packs"}},[5446]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1% fewer Portals to Area"}}},stats={[1]="map_contains_x_fewer_portals"}},[5447]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Rare Monster with Inner Treasure"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% Rare Monsters with Inner Treasure"}}},stats={[1]="map_area_contains_x_rare_monsters_with_inner_treasure"}},[5448]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional waves of Ghosts"}}},stats={[1]="map_cowards_trial_extra_ghosts"}},[5449]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional waves of Oriathan Zombies"}}},stats={[1]="map_cowards_trial_extra_oriath_citizens"}},[5450]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional waves of Phantasms"}}},stats={[1]="map_cowards_trial_extra_phantasms"}},[5451]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional waves of Raging Spirits"}}},stats={[1]="map_cowards_trial_extra_raging_spirits"}},[5452]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional waves of Bone Rhoas"}}},stats={[1]="map_cowards_trial_extra_rhoas"}},[5453]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional waves of Ravager Maws"}}},stats={[1]="map_cowards_trial_extra_skeleton_cannons"}},[5454]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains additional waves of Zombies"}}},stats={[1]="map_cowards_trial_extra_zombies"}},[5455]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players deal %1%%% increased Damage for each Poison on them"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players deal %1%%% reduced Damage for each Poison on them"}}},stats={[1]="map_damage_+%_per_poison_stack"}},[5456]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="While on Elemental Ground, Players have %1%%% increased Damage of the associated Damage Type"}}},stats={[1]="map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on"}},[5457]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players take %1%%% increased Damage from Monsters from Beyond"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players take %1%%% reduced Damage from Monsters from Beyond"}}},stats={[1]="map_damage_taken_+%_from_beyond_monsters"}},[5458]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players take %1%%% increased Damage while stationary"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players take %1%%% reduced Damage while stationary"}}},stats={[1]="map_damage_taken_while_stationary_+%"}},[5459]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players deal %1%%% increased Damage while stationary"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players deal %1%%% reduced Damage while stationary"}}},stats={[1]="map_damage_while_stationary_+%"}},[5460]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Unique Boss drops an additional Currency Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss drops %1% additional Currency Items"}}},stats={[1]="map_death_and_taxes_boss_drops_additional_currency"}},[5461]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Areas contain deposits of Voltaxic Sulphite"}}},stats={[1]="map_delve_rules"}},[5462]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]=20},[3]={[1]=0,[2]=99},[4]={[1]=1,[2]="#"}},text="Area is Alluring"},[2]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]=20},[3]={[1]=100,[2]="#"},[4]={[1]=1,[2]="#"}},text="Area is always Alluring"},[3]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]=20},[3]={[1]=0,[2]=99},[4]={[1]="#",[2]=-1}},text="Area is Repulsive"},[4]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=1,[2]=20},[3]={[1]=100,[2]="#"},[4]={[1]="#",[2]=-1}},text="Area is always Repulsive"},[5]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=21,[2]=40},[3]={[1]=0,[2]=99},[4]={[1]=1,[2]="#"}},text="Area is very Alluring"},[6]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=21,[2]=40},[3]={[1]=100,[2]="#"},[4]={[1]=1,[2]="#"}},text="Area is always very Alluring"},[7]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=21,[2]=40},[3]={[1]=0,[2]=99},[4]={[1]="#",[2]=-1}},text="Area is very Repulsive"},[8]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=21,[2]=40},[3]={[1]=100,[2]="#"},[4]={[1]="#",[2]=-1}},text="Area is always very Repulsive"},[9]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=41,[2]=60},[3]={[1]=0,[2]=99},[4]={[1]=1,[2]="#"}},text="Area is extremely Alluring"},[10]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=41,[2]=60},[3]={[1]=100,[2]="#"},[4]={[1]=1,[2]="#"}},text="Area is always extremely Alluring"},[11]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=41,[2]=60},[3]={[1]=0,[2]=99},[4]={[1]="#",[2]=-1}},text="Area is extremely Repulsive"},[12]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=41,[2]=60},[3]={[1]=100,[2]="#"},[4]={[1]="#",[2]=-1}},text="Area is always extremely Repulsive"},[13]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=61,[2]=80},[3]={[1]=0,[2]=99},[4]={[1]=1,[2]="#"}},text="Area is incredibly Alluring"},[14]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=61,[2]=80},[3]={[1]=100,[2]="#"},[4]={[1]=1,[2]="#"}},text="Area is always incredibly Alluring"},[15]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=61,[2]=80},[3]={[1]=0,[2]=99},[4]={[1]="#",[2]=-1}},text="Area is incredibly Repulsive"},[16]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=61,[2]=80},[3]={[1]=100,[2]="#"},[4]={[1]="#",[2]=-1}},text="Area is always incredibly Repulsive"},[17]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=81,[2]=100},[3]={[1]=0,[2]=99},[4]={[1]=1,[2]="#"}},text="Area is alluringly Alluring"},[18]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=81,[2]=100},[3]={[1]=100,[2]="#"},[4]={[1]=1,[2]="#"}},text="Area is always alluringly Alluring"},[19]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=81,[2]=100},[3]={[1]=0,[2]=99},[4]={[1]="#",[2]=-1}},text="Area is alluringly Repulsive"},[20]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=81,[2]=100},[3]={[1]=100,[2]="#"},[4]={[1]="#",[2]=-1}},text="Area is always alluringly Repulsive"}}},stats={[1]="map_fishy_effect_0",[2]="map_fishy_effect_1",[3]="map_fishy_effect_2",[4]="map_fishy_effect_3"}},[5463]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strongbox Monsters are Enraged"}}},stats={[1]="map_display_strongbox_monsters_are_enraged"}},[5464]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Divination Cards found in Area"}}},stats={[1]="map_divination_card_drop_chance_+%"}},[5465]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players gain %1%%% chance to Dodge Attack Hits while under a Shrine Effect"}}},stats={[1]="map_player_dodge_chance_%_during_shrine_effect"}},[5466]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Duplicate %1% Rare Monsters"}}},stats={[1]="map_duplicate_x_rare_monsters"}},[5467]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Duplicate up to %1% Synthesised Rare Monsters"}}},stats={[1]="map_duplicate_x_synthesised_rare_monsters"}},[5468]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Map is occupied by The Enslaver"},[2]={limit={[1]={[1]=2,[2]=2}},text="Map is occupied by The Eradicator"},[3]={limit={[1]={[1]=3,[2]=3}},text="Map is occupied by The Constrictor"},[4]={limit={[1]={[1]=4,[2]=4}},text="Map is occupied by The Purifier"}}},stats={[1]="map_elder_boss_variation"}},[5469]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Rare Elder Items found in Area"}}},stats={[1]="map_elder_rare_chance_+%"}},[5470]={lang={English={[1]={[1]={k="affliction_reward_type",v=1},limit={[1]={[1]="#",[2]="#"}},text="Delirium Reward Type: %1%"}}},stats={[1]="map_endgame_affliction_reward_1"}},[5471]={lang={English={[1]={[1]={k="affliction_reward_type",v=1},limit={[1]={[1]="#",[2]="#"}},text="Delirium Reward Type: %1%"}}},stats={[1]="map_endgame_affliction_reward_2"}},[5472]={lang={English={[1]={[1]={k="affliction_reward_type",v=1},limit={[1]={[1]="#",[2]="#"}},text="Delirium Reward Type: %1%"}}},stats={[1]="map_endgame_affliction_reward_3"}},[5473]={lang={English={[1]={[1]={k="affliction_reward_type",v=1},limit={[1]={[1]="#",[2]="#"}},text="Delirium Reward Type: %1%"}}},stats={[1]="map_endgame_affliction_reward_4"}},[5474]={lang={English={[1]={[1]={k="affliction_reward_type",v=1},limit={[1]={[1]="#",[2]="#"}},text="Delirium Reward Type: %1%"}}},stats={[1]="map_endgame_affliction_reward_5"}},[5475]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players in Area are %1%%% Delirious"}}},stats={[1]="map_endgame_fog_depth"}},[5476]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Found Items drop Identified in Area"}}},stats={[1]="map_equipment_drops_identified"}},[5477]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters Imprisoned by Essences have a %1%%% chance to contain an additional Remnant of Corruption"}}},stats={[1]="map_essence_monolith_contains_additional_essence_of_corruption"}},[5478]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters Imprisoned by Essences have a %1%%% chance to contain a Remnant of Corruption"}}},stats={[1]="map_essence_monolith_contains_essence_of_corruption_%"}},[5479]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Essences found in this Area are Corrupted"}}},stats={[1]="map_essence_monsters_are_corrupted"}},[5480]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Imprisoned Monsters have an additional Essence"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Imprisoned Monsters have %1% additional Essences"}}},stats={[1]="map_essence_monsters_have_additional_essences"}},[5481]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Essences found in this Area are a higher level"}}},stats={[1]="map_essence_monsters_higher_tier"}},[5482]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Essence"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Essences"}}},stats={[1]="map_extra_monoliths"}},[5483]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="An additional Currency Item drops when the first Invasion Boss is slain"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1% additional Currency Items drops when the first Invasion Boss is slain"}}},stats={[1]="map_first_invasion_boss_killed_drops_x_additional_currency"}},[5484]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="The first Strongbox Opened in this Area is guarded by an additional Rare Monster"},[2]={limit={[1]={[1]="#",[2]="#"}},text="The first Strongbox Opened in this Area is guarded by %1% additional Rare Monsters"}}},stats={[1]="map_first_strongbox_contains_x_additional_rare_monsters"}},[5485]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="A Beyond Unique drops when the first Unique Monster from Beyond is slain"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1% Beyond Uniques drop when the first Unique Monster from Beyond is slain"}}},stats={[1]="map_first_unique_beyond_boss_slain_drops_x_beyond_uniques"}},[5486]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1% Flask Charges recovered every 3 seconds"}}},stats={[1]="map_flask_charges_recovered_per_3_seconds_%"}},[5487]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Players gain Onslaught for %1% seconds when they Kill a Rare Monster"}}},stats={[1]="map_gain_onslaught_for_x_ms_on_killing_rare_monster"}},[5488]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains Slipstreams"}}},stats={[1]="map_ground_haste_action_speed_+%"}},[5489]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Harbingers drop additional Currency Shards"}}},stats={[1]="map_harbingers_drops_additional_currency_shards"}},[5490]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Areas can contain Essences"}}},stats={[1]="map_has_monoliths"}},[5491]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Map has %1%%% Quality"}}},stats={[1]="map_has_x%_quality"}},[5492]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Imprisoned Monsters have %1%%% increased Action Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Imprisoned Monsters have %1%%% reduced Action Speed"}}},stats={[1]="map_imprisoned_monsters_action_speed_+%"}},[5493]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Imprisoned Monsters deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Imprisoned Monsters deal %1%%% reduced Damage"}}},stats={[1]="map_imprisoned_monsters_damage_+%"}},[5494]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Imprisoned Monsters take %1%%% increased Damage"}}},stats={[1]="map_imprisoned_monsters_damage_taken_+%"}},[5495]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Arsonist"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_arsonist"}},[5496]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Blasphemer"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_blasphemer"}},[5497]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Cannibal"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_cannibal"}},[5498]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Charlatan"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_charlatan"}},[5499]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Vaal Cultist"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_corrupter"}},[5500]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Forger"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_counterfeiter"}},[5501]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Cutthroat"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_cutthroat"}},[5502]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Embezzler"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_embezzler"}},[5503]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Storm Cultist"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_experimenter"}},[5504]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Illegal Fisherman"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_fisherman"}},[5505]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Aurora Cultist"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_freezer"}},[5506]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Seditionist"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_librarian"}},[5507]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Martyr"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_martyr"}},[5508]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Mutilator"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_mutilator"}},[5509]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Necromancer"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_necromancer"}},[5510]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Alchemist"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_poisoner"}},[5511]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Rogue"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_rogue"}},[5512]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Smuggler"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_smuggler"}},[5513]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Spy"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_spy"}},[5514]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Thief"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_thief"}},[5515]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Thug"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_thug"}},[5516]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Bosses are possessed by Tormented Warlord"}}},stats={[1]="map_incursion_boss_possessed_by_tormented_warlord"}},[5517]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is Overgrown with Large Caustic Plants"}}},stats={[1]="map_incursion_spawn_large_caustic_plants"}},[5518]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is Overgrown with Parasitic Caustic Plants"}}},stats={[1]="map_incursion_spawn_parasitic_caustic_plants"}},[5519]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Invasion Bosses are Duplicated"}}},stats={[1]="map_invasion_bosses_are_twinned"}},[5520]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Invasion Bosses drop an additional Vaal Orb"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Invasion Bosses drop %1% additional Vaal Orbs"}}},stats={[1]="map_invasion_bosses_drop_x_additional_vaal_orbs"}},[5521]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Items dropped by Invasion Bosses are fully Linked"}}},stats={[1]="map_invasion_bosses_dropped_items_are_fully_linked"}},[5522]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Items dropped by Invasion Bosses have an additional Socket"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Items dropped by Invasion Bosses have %1% additional Sockets"}}},stats={[1]="map_invasion_bosses_dropped_items_have_x_additional_sockets"}},[5523]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Invasion Bosses are guarded by a Magic Pack"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Invasion Bosses are guarded by %1% Magic Packs"}}},stats={[1]="map_invasion_monsters_guarded_by_x_magic_packs"}},[5524]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="This Map's Quality also applies to Rarity of Items found"}}},stats={[1]="map_item_drop_quality_also_applies_to_map_item_drop_rarity"}},[5525]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% increased Rarity of Items Found per 15 Rampage Kills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% reduced Rarity of Items Found per 15 Rampage Kills"}}},stats={[1]="map_item_found_rarity_+%_per_15_rampage_stacks"}},[5526]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters with Silver Coins have %1%%% increased Quantity of Items Dropped, and are highlighted"}}},stats={[1]="map_item_quantity_from_monsters_that_drop_silver_coin_+%"}},[5527]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Leaguestone"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional Leaguestones"}}},stats={[1]="map_leaguestone_area_contains_x_additional_leaguestones"}},[5528]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Monsters from Beyond have %1%%% more Quantity and Rarity of Dropped Items"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters from Beyond have %1%%% less Quantity and Rarity of Dropped Items"}}},stats={[1]="map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final"}},[5529]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is controlled by a Warband Boss"}}},stats={[1]="map_leaguestone_contains_warband_leader"}},[5530]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area is inhabited by Redblade Warbands"},[2]={limit={[1]={[1]=2,[2]=2}},text="Area is inhabited by Mutewind Warbands"},[3]={limit={[1]={[1]=3,[2]=3}},text="Area is inhabited by Brinerot Warbands"},[4]={limit={[1]={[1]=4,[2]=4}},text="Area is inhabited by Renegade Warbands"}}},stats={[1]="map_leaguestone_explicit_warband_type_override"}},[5531]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% More Quantity of Items Dropped by Imprisoned Monsters"}}},stats={[1]="map_leaguestone_imprisoned_monsters_item_quantity_+%_final"}},[5532]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Rarity of Items Dropped by Imprisoned Monsters"}}},stats={[1]="map_leaguestone_imprisoned_monsters_item_rarity_+%_final"}},[5533]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Invasion Bosses have %1%%% more Quantity and Rarity of dropped Items"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Invasion Bosses have %1%%% less Quantity and Rarity of dropped Items"}}},stats={[1]="map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final"}},[5534]={lang={English={[1]={limit={[1]={[1]=21,[2]=21}},text="Area contains an Essence of Hysteria"},[2]={limit={[1]={[1]=22,[2]=22}},text="Area contains an Essence of Insanity"},[3]={limit={[1]={[1]=23,[2]=23}},text="Area contains an Essence of Horror"},[4]={limit={[1]={[1]=24,[2]=24}},text="Area contains an Essence of Delirium"},[5]={limit={[1]={[1]=25,[2]=25}},text="Area contains a Remnant of Corruption"}}},stats={[1]="map_leaguestone_monolith_contains_essence_type"}},[5535]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Breach"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% Breaches"}}},stats={[1]="map_leaguestone_override_base_num_breaches"}},[5536]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an Invasion Boss"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% Invasion Bosses"}}},stats={[1]="map_leaguestone_override_base_num_invasion_bosses"}},[5537]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains up to 1 Monster imprisoned by Essences"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains up to %1% Monsters imprisoned by Essences"}}},stats={[1]="map_leaguestone_override_base_num_monoliths"}},[5538]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Perandus Chest"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% Perandus Chests"}}},stats={[1]="map_leaguestone_override_base_num_perandus_chests"}},[5539]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Silver Coin"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% Silver Coins"}}},stats={[1]="map_leaguestone_override_base_num_prophecy_coins"}},[5540]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Rogue Exile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% Rogue Exiles"}}},stats={[1]="map_leaguestone_override_base_num_rogue_exiles"}},[5541]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains up to 1 Shrine"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains up to %1% Shrines"}}},stats={[1]="map_leaguestone_override_base_num_shrines"}},[5542]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Strongbox"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% Strongboxes"}}},stats={[1]="map_leaguestone_override_base_num_strongboxes"}},[5543]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Monster possessed by an Ancient Talisman"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% Monsters possessed by Ancient Talismans"}}},stats={[1]="map_leaguestone_override_base_num_talismans"}},[5544]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Tormented Spirit"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% Tormented Spirits"}}},stats={[1]="map_leaguestone_override_base_num_tormented_spirits"}},[5545]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains at least 1 Warband Pack"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains at least %1% Warband Packs"}}},stats={[1]="map_leaguestone_override_base_num_warband_packs"}},[5546]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Perandus Chests have %1%%% more Quantity of Items Dropped"}}},stats={[1]="map_leaguestone_perandus_chests_have_item_quantity_+%_final"}},[5547]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Perandus Chests have %1%%% more Rarity of Items Dropped"}}},stats={[1]="map_leaguestone_perandus_chests_have_item_rarity_+%_final"}},[5548]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rogue Exiles have %1%%% more Rarity of Items Dropped"}}},stats={[1]="map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final"}},[5549]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters guarding Shrines are Magic"},[2]={limit={[1]={[1]=2,[2]=2}},text="Some Monsters guarding Shrines are Rare"}}},stats={[1]="map_leaguestone_shrine_monster_rarity_override"}},[5550]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="At least one Shine in this Area is an Acceleration Shrine"},[2]={limit={[1]={[1]=2,[2]=2}},text="At least one Shine in this Area is an Echoing Shrine"},[3]={limit={[1]={[1]=3,[2]=3}},text="At least one Shine in this Area is a Divine Shrine"}}},stats={[1]="map_leaguestone_shrine_override_type"}},[5551]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Strongboxes are Magic"},[2]={limit={[1]={[1]=2,[2]=2}},text="Strongboxes are Rare"}}},stats={[1]="map_leaguestone_strongboxes_rarity_override"}},[5552]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strongboxes in Area have %1%%% chance to contain an additional Vaal Orb"}}},stats={[1]="map_strongboxes_vaal_orb_drop_chance_%"}},[5553]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Warbands have %1%%% more Quantity of Items Dropped"}}},stats={[1]="map_leaguestone_warbands_packs_have_item_quantity_+%_final"}},[5554]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Warbands have %1%%% more Rarity of Items Dropped"}}},stats={[1]="map_leaguestone_warbands_packs_have_item_rarity_+%_final"}},[5555]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="A Monster in this Area will summon Abaxoth when Slain"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1% Monsters in this Area will summon Abaxoth when Slain"}}},stats={[1]="map_leaguestone_x_monsters_spawn_abaxoth"}},[5556]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="A Monster in this Area will summon a Unique Monster from Beyond when Slain"},[2]={limit={[1]={[1]="#",[2]="#"}},text="%1% Monsters in this Area will summon a Unique Monster from Beyond when Slain"}}},stats={[1]="map_leaguestone_x_monsters_spawn_random_beyond_boss"}},[5557]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="The first time a Player reaches %1% Rampage Kills in this Area, 6 Currency Items will drop"}}},stats={[1]="map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks"}},[5558]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="The first time a Player reaches %1% Rampage Kills in this Area, they will encounter a Powerful Monster"}}},stats={[1]="map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks"}},[5559]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Legion Encounter"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Legion Encounters"}}},stats={[1]="map_legion_league_extra_spawns"}},[5560]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Each Legion is accompanied by a General"}}},stats={[1]="map_legion_league_force_general"}},[5561]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Each Legion contains a War Hoard"}}},stats={[1]="map_legion_league_force_war_chest"}},[5562]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Monster Level of Area"}}},stats={[1]="map_level_+"}},[5563]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Randomly dropped Items are Normal instead of Magic"}}},stats={[1]="map_magic_items_drop_as_normal"}},[5564]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]="#",[2]="#"}},text="Magic Monsters are Maimed"}}},stats={[1]="map_magic_monsters_are_maimed"}},[5565]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Magic Monsters take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Magic Monsters take %1%%% reduced Damage"}}},stats={[1]="map_magic_monsters_damage_taken_+%"}},[5566]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Magic Pack Size"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Magic Pack Size"}}},stats={[1]="map_magic_pack_size_+%"}},[5567]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Maps found in Area"}}},stats={[1]="map_map_item_drop_chance_+%"}},[5568]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="All Metamorph Monsters have Rewards"}}},stats={[1]="map_metamorph_all_metamorphs_have_rewards"}},[5569]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Metamorph Bosses which drop an Itemised Sample drop an additional Itemised Sample"}}},stats={[1]="map_metamorph_boss_drops_additional_itemised_organs"}},[5570]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Areas contain additional Metamorph monsters"}}},stats={[1]="map_metamorphosis_league"}},[5571]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters Imprisoned around Essences in Area are Magic"}}},stats={[1]="map_mini_monolith_monsters_are_magic"}},[5572]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Onslaught on Players and Monsters"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced effect of Onslaught on Players and Monsters"}}},stats={[1]="map_monster_and_player_onslaught_effect_+%"}},[5573]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Monsters have %1%%% increased Attack, Cast and Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters have %1%%% reduced Attack, Cast and Movement Speed"}}},stats={[1]="map_monster_attack_cast_and_movement_speed_+%"}},[5574]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Monsters have %1%%% increased chance to spawn a Beyond Portal"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters have %1%%% reduced chance to spawn a Beyond Portal"}}},stats={[1]="map_monster_beyond_portal_chance_+%"}},[5575]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Curses on Monsters"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Curses on Monsters"}}},stats={[1]="map_monster_curse_effect_on_self_+%"}},[5576]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Monsters Possessed by Tormented Spirits take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters Possessed by Tormented Spirits take %1%%% reduced Damage"}}},stats={[1]="map_monster_damage_taken_+%_while_possessed"}},[5577]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Non-Damaging Ailments on Monsters"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Non-Damaging Ailments on Monsters"}}},stats={[1]="map_monster_non_damaging_ailment_effect_+%_on_self"}},[5578]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Monsters grant %1%%% increased Experience"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters grant %1%%% reduced Experience"}}},stats={[1]="map_monster_slain_experience_+%"}},[5579]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Monsters have %1%%% increased Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Monsters have %1%%% reduced Accuracy Rating"}}},stats={[1]="map_monsters_accuracy_rating_+%"}},[5580]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to gain an Endurance Charge on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Monsters gain an Endurance Charge on Hit"}}},stats={[1]="map_monsters_add_endurance_charge_on_hit_%"}},[5581]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to gain a Frenzy Charge on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Monsters gain a Frenzy Charge on Hit"}}},stats={[1]="map_monsters_add_frenzy_charge_on_hit_%"}},[5582]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to gain a Power Charge on Hit"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Monsters gain a Power Charge on Hit"}}},stats={[1]="map_monsters_add_power_charge_on_hit_%"}},[5583]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1%%% Monster Chaos Resistance"}}},stats={[1]="map_monsters_additional_chaos_resistance"}},[5584]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+%1%%% Monster Elemental Resistance"}}},stats={[1]="map_monsters_additional_elemental_resistance"}},[5585]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChill"},limit={[1]={[1]="#",[2]="#"}},text="All Damage from Monsters' Hits inflicts Chill"}}},stats={[1]="map_monsters_all_damage_can_chill"}},[5586]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShock"},limit={[1]={[1]="#",[2]="#"}},text="All Damage from Monsters' Hits inflicts Shock"}}},stats={[1]="map_monsters_all_damage_can_shock"}},[5587]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]="#",[2]="#"}},text="All Monster Damage from Hits always Ignites"}}},stats={[1]="map_monsters_always_ignite"}},[5588]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters are Revived as Allies on Kill"}}},stats={[1]="map_monsters_are_converted_on_kill"}},[5589]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters have a %1%%% chance to avoid Poison, Blind, and Bleeding"}}},stats={[1]="map_monsters_avoid_poison_blind_bleed_%"}},[5590]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters cannot be Taunted"}}},stats={[1]="map_monsters_cannot_be_taunted"}},[5591]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to Impale with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Monsters inflict Impale with Attacks"}}},stats={[1]="map_monsters_chance_to_impale_%"}},[5592]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBrittle"},limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to inflict Brittle"},[2]={[1]={k="reminderstring",v="ReminderTextBrittle"},limit={[1]={[1]=100,[2]="#"}},text="Monsters inflict Brittle"}}},stats={[1]="map_monsters_chance_to_inflict_brittle_%"}},[5593]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSapped"},limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to inflict Sapped"},[2]={[1]={k="reminderstring",v="ReminderTextSapped"},limit={[1]={[1]=100,[2]="#"}},text="Monsters inflict Sapped"}}},stats={[1]="map_monsters_chance_to_inflict_sapped_%"}},[5594]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextScorch"},limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to inflict Scorch"},[2]={[1]={k="reminderstring",v="ReminderTextScorch"},limit={[1]={[1]=100,[2]="#"}},text="Monsters inflict Scorch"}}},stats={[1]="map_monsters_chance_to_scorch_%"}},[5595]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more effect of Curses on Monsters"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less effect of Curses on Monsters"}}},stats={[1]="map_monsters_curse_effect_on_self_+%_final"}},[5596]={lang={English={[1]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextPhysReductionNotNegative"},limit={[1]={[1]="#",[2]="#"}},text="Monster's targets have %1$+d%% to Total Physical Damage Reduction against Monsters' Hits"}}},stats={[1]="map_monsters_enemy_phys_reduction_%_penalty_vs_hit"}},[5597]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="%1$+d%% Monster Energy Shield Leech Resistance"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Cannot Leech Energy Shield from Monsters"}}},stats={[1]="map_monsters_energy_shield_leech_resistance_%"}},[5598]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to Maim on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextMaim"},limit={[1]={[1]=100,[2]="#"}},text="Monsters Maim on Hit with Attacks"}}},stats={[1]="map_monsters_maim_on_hit_%_chance"}},[5599]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters' Action Speed cannot be modified to below base value"}}},stats={[1]="map_monsters_movement_speed_cannot_be_reduced_below_base"}},[5600]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHitNoDuration"},limit={[1]={[1]="#",[2]="#"}},text="Monsters near Shrines are Chilled"}}},stats={[1]="map_monsters_near_shrines_are_chilled"}},[5601]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monster Damage Penetrates %1%%% Elemental Resistances"}}},stats={[1]="map_monsters_penetrate_elemental_resistances_%"}},[5602]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Monsters have a %1%%% chance to cause Elemental Ailments on Hit"}}},stats={[1]="map_monsters_%_chance_to_inflict_status_ailments"}},[5603]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters deal %1%%% extra Physical Damage as Chaos"}}},stats={[1]="map_monsters_%_physical_damage_to_add_as_chaos"}},[5604]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monster Damage penetrates %1%%% of Chaos Resistance"}}},stats={[1]="map_monsters_reduce_enemy_chaos_resistance_%"}},[5605]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monster Damage penetrates %1%%% of Cold Resistance"}}},stats={[1]="map_monsters_reduce_enemy_cold_resistance_%"}},[5606]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monster Damage penetrates %1%%% of Fire Resistance"}}},stats={[1]="map_monsters_reduce_enemy_fire_resistance_%"}},[5607]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monster Damage penetrates %1%%% of Lightning Resistance"}}},stats={[1]="map_monsters_reduce_enemy_lightning_resistance_%"}},[5608]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to remove Power, Frenzy and Endurance charges on Hit"},[2]={limit={[1]={[1]=100,[2]=100}},text="Monsters remove Power, Frenzy and Endurance charges on Hit"}}},stats={[1]="map_monsters_remove_charges_on_hit_%"}},[5609]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters have %1%%% chance to remove a Flask Charge on Hit"}}},stats={[1]="map_monsters_remove_enemy_flask_charge_on_hit_%_chance"}},[5610]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Monsters remove %1%%% of Mana on hit"}}},stats={[1]="map_monsters_remove_%_of_mana_on_hit"}},[5611]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters initially carrying a Talisman drop an additional Rare Item"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Monsters initially carrying a Talisman drop %1% additional Rare Items"}}},stats={[1]="map_monsters_spawned_with_talisman_drop_additional_rare_items"}},[5612]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to Hinder on Hit with Spells"},[2]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=100,[2]="#"}},text="Monsters Hinder on Hit with Spells"}}},stats={[1]="map_monsters_spells_chance_to_hinder_on_hit_%_chance"}},[5613]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Monsters have %1%%% chance to steal Power, Frenzy and Endurance charges on Hit"},[2]={limit={[1]={[1]=100,[2]=100}},text="Monsters steal Power, Frenzy and Endurance charges on Hit"}}},stats={[1]="map_monsters_steal_charges"}},[5614]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters with Silver Coins drop an additional Silver Coin"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Monsters with Silver Coins drop %1% additional Silver Coins"}}},stats={[1]="map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins"}},[5615]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters with Silver Coins drop an additional Currency Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Monsters with Silver Coins drop %1% additional Currency Items"}}},stats={[1]="map_monsters_with_silver_coins_drop_x_additional_currency_items"}},[5616]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Monsters with Silver Coins drop an additional Rare Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Monsters with Silver Coins drop %1% additional Rare Items"}}},stats={[1]="map_monsters_with_silver_coins_drop_x_additional_rare_items"}},[5617]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area's inhabitants are lying in ambush"}}},stats={[1]="map_monstrous_treasure_no_monsters"}},[5618]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% increased Movement Speed for each Poison on them"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% reduced Movement Speed for each Poison on them"}}},stats={[1]="map_movement_velocity_+%_per_poison_stack"}},[5619]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Nemesis Monsters drop %1% additional Currency Item"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Nemesis Monsters drop %1% additional Currency Items"}}},stats={[1]="map_nemesis_dropped_items_+"}},[5620]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Bearers of the Guardian Bloodline Pack"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% Bearers of the Guardian Bloodline Packs"}}},stats={[1]="map_next_area_contains_x_additional_bearers_of_the_guardian_packs"}},[5621]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains a Voidspawn of Abaxoth Bloodline Pack"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% Voidspawn of Abaxoth Bloodline Packs"}}},stats={[1]="map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs"}},[5622]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Dropped Items cannot be Magic"}}},stats={[1]="map_no_magic_items_drop"}},[5623]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Dropped Items cannot be Rare"}}},stats={[1]="map_no_rare_items_drop"}},[5624]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Stashes cannot be used"}}},stats={[1]="map_no_stashes"}},[5625]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Randomly dropped Items cannot be Unique"}}},stats={[1]="map_no_uniques_drop_randomly"}},[5626]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Items cannot be sold to or purchased from NPCs"}}},stats={[1]="map_no_vendors"}},[5627]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Items cannot drop as Magic or Rare"}}},stats={[1]="map_non_unique_items_drop_normal"}},[5628]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Non-Unique Monsters in this Area Regenerate %1%%% of Life per second"}}},stats={[1]="map_non_unique_monster_life_regeneration_rate_per_minute_%"}},[5629]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Randomly dropped Items are Magic instead of Normal"}}},stats={[1]="map_normal_items_drop_as_magic"}},[5630]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Natural inhabitants of this area have been removed"}}},stats={[1]="map_nuke_everything"}},[5631]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Abyss"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Abysses"}}},stats={[1]="map_num_extra_abysses"}},[5632]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Blight Encounter"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Blight Encounters"}}},stats={[1]="map_num_extra_blights_"}},[5633]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an extra Gloom Shrine"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% extra Gloom Shrines"}}},stats={[1]="map_num_extra_gloom_shrines"}},[5634]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an extra Harbinger"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% extra Harbingers"}}},stats={[1]="map_num_extra_harbingers"}},[5635]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an extra Resonating Shrine"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% extra Resonating Shrines"}}},stats={[1]="map_num_extra_resonating_shrines"}},[5636]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Map has %1% additional random Modifier"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Map has %1% additional random Modifiers"}}},stats={[1]="map_number_of_additional_mods"}},[5637]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Map has %1% additional random Prefix"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Map has %1% additional random Prefixes"}}},stats={[1]="map_number_of_additional_prefixes"}},[5638]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area has a Monster that drops a Silver Coin"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area has %1% Monsters that drop a Silver Coin"}}},stats={[1]="map_number_of_additional_silver_coin_drops"}},[5639]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Map has %1% additional random Suffix"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Map has %1% additional random Suffixes"}}},stats={[1]="map_number_of_additional_suffixes"}},[5640]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="An additional Map drops on Completing Area"},[2]={limit={[1]={[1]=2,[2]="#"}},text="%1% additional Maps drop on Completing Area"}}},stats={[1]="map_on_complete_drop_x_additional_maps"}},[5641]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Map owner gains %1%%% more Sulphite"}}},stats={[1]="map_owner_sulphite_gained_+%"}},[5642]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Abominations"}}},stats={[1]="map_packs_are_abomination_monsters"}},[5643]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Blackguards"}}},stats={[1]="map_packs_are_blackguards"}},[5644]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Ghosts"}}},stats={[1]="map_packs_are_ghosts"}},[5645]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Cultists of Kitava"}}},stats={[1]="map_packs_are_kitava"}},[5646]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Lunaris fanatics"}}},stats={[1]="map_packs_are_lunaris"}},[5647]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Solaris fanatics"}}},stats={[1]="map_packs_are_solaris"}},[5648]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by Spiders"}}},stats={[1]="map_packs_are_spiders"}},[5649]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area is inhabited by the Vaal"}}},stats={[1]="map_packs_are_vaal"}},[5650]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Perandus Chests are guarded by additional Rare monsters"}}},stats={[1]="map_perandus_guards_are_rare"}},[5651]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Perandus Monsters have a %1%%% chance to drop Perandus Coins"}}},stats={[1]="map_perandus_monsters_drop_perandus_coin_stack_%"}},[5652]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% increased Attack, Cast and Movement Speed while they have Onslaught"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% reduced Attack, Cast and Movement Speed while they have Onslaught"}}},stats={[1]="map_player_attack_cast_and_movement_speed_+%_during_onslaught"}},[5653]={lang={English={[1]={limit={[1]={[1]=100,[2]="#"}},text="Players gain an additional Vaal Soul on Kill"},[2]={limit={[1]={[1]=1,[2]=99}},text="Players have %1%%% chance to gain an additional Vaal Soul on Kill"}}},stats={[1]="map_player_chance_to_gain_vaal_soul_on_kill_%"}},[5654]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players gain %1%%% increased Flask Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players gain %1%%% reduced Flask Charges"}}},stats={[1]="map_player_charges_gained_+%"}},[5655]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Curses on Players"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Curses on Players"}}},stats={[1]="map_player_curse_effect_on_self_+%"}},[5656]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players deal %1%%% increased Damage with Hits to Breach Monsters"}}},stats={[1]="map_player_damage_+%_vs_breach_monsters"}},[5657]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players take %1%%% increased Damage from Breach Monsters"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players take %1%%% reduced Damage from Breach Monsters"}}},stats={[1]="map_player_damage_taken_+%_vs_breach_monsters"}},[5658]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players with at least 50 Rampage Kills take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players with at least 50 Rampage Kills take %1%%% reduced Damage"}}},stats={[1]="map_player_damage_taken_+%_while_rampaging"}},[5659]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players' Vaal Skills do not apply Soul Gain Prevention"}}},stats={[1]="map_player_disable_soul_gain_prevention"}},[5660]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Player's Life and Mana Recovery from Flasks are instant"}}},stats={[1]="map_player_flask_recovery_is_instant"}},[5661]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Conductivity"}}},stats={[1]="map_player_has_level_X_conductivity"}},[5662]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Flammability"}}},stats={[1]="map_player_has_level_X_flammability"}},[5663]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Frostbite"}}},stats={[1]="map_player_has_level_X_frostbite"}},[5664]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Projectile Weakness"}}},stats={[1]="map_player_has_level_X_projectile_weakness"}},[5665]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSilence"},limit={[1]={[1]="#",[2]="#"}},text="Players are Cursed with Silence"}}},stats={[1]="map_player_has_level_X_silence"}},[5666]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have a random Curse on them every 10 seconds"}}},stats={[1]="map_player_has_random_level_X_curse_every_10_seconds"}},[5667]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% more Recovery Rate of Life and Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% less Recovery Rate of Life and Energy Shield"}}},stats={[1]="map_player_life_and_es_recovery_speed_+%_final"}},[5668]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Players Regenerate %1%%% of Life per second per 25 Rampage Kills"}}},stats={[1]="map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks"}},[5669]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have %1%%% increased Movement Speed"}}},stats={[1]="map_player_movement_velocity_+%"}},[5670]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]=99}},text="Players have a %1%%% chance to gain Onslaught on Kill For 4 seconds"},[2]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=100,[2]=100}},text="Players gain Onslaught on Kill for 4 seconds"}}},stats={[1]="map_player_onslaught_on_kill_%"}},[5671]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Duration of Shrine Effects on Players"}}},stats={[1]="map_player_shrine_effect_duration_+%"}},[5672]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have %1%%% chance to Dodge Spell Hits"}}},stats={[1]="map_players_additional_spell_dodge_%"}},[5673]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players and Monsters take %1%%% increased Chaos Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players and Monsters take %1%%% reduced Chaos Damage"}}},stats={[1]="map_players_and_monsters_chaos_damage_taken_+%"}},[5674]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players and Monsters take %1%%% increased Cold Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players and Monsters take %1%%% reduced Cold Damage"}}},stats={[1]="map_players_and_monsters_cold_damage_taken_+%"}},[5675]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players and Monsters have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players and Monsters have %1%%% reduced Critical Strike Chance"}}},stats={[1]="map_players_and_monsters_critical_strike_chance_+%"}},[5676]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Player's and Monster's Curses are Reflected"}}},stats={[1]="map_players_and_monsters_curses_are_reflected"}},[5677]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players and Monsters have %1%%% increased Damage per Curse on them"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players and Monsters have %1%%% reduced Damage per Curse on them"}}},stats={[1]="map_players_and_monsters_damage_+%_per_curse"}},[5678]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players and Monsters take %1%%% increased Damage while stationary"}}},stats={[1]="map_players_and_monsters_damage_taken_+%_while_stationary"}},[5679]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players and Monsters take %1%%% increased Fire Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players and Monsters take %1%%% reduced Fire Damage"}}},stats={[1]="map_players_and_monsters_fire_damage_taken_+%"}},[5680]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Players and Monsters have Onslaught if they have been Hit Recently"}}},stats={[1]="map_players_and_monsters_have_onslaught_if_hit_recently"}},[5681]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players and Monsters have Resolute Technique"}}},stats={[1]="map_players_and_monsters_have_resolute_technique"}},[5682]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players and Monsters take %1%%% increased Lightning Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players and Monsters take %1%%% reduced Lightning Damage"}}},stats={[1]="map_players_and_monsters_lightning_damage_taken_+%"}},[5683]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Player and Monster Movement Speed"}}},stats={[1]="map_players_and_monsters_movement_speed_+%"}},[5684]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players and Monsters take %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players and Monsters take %1%%% reduced Physical Damage"}}},stats={[1]="map_players_and_monsters_physical_damage_taken_+%"}},[5685]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Players are Poisoned while moving"}}},stats={[1]="map_players_are_poisoned_while_moving_chaos_damage_per_second"}},[5686]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% more Armour"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% less Armour"}}},stats={[1]="map_players_armour_+%_final"}},[5687]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% increased Chance to Block"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% reduced Chance to Block"}}},stats={[1]="map_players_block_chance_+%"}},[5688]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players cannot gain Endurance Charges"}}},stats={[1]="map_players_cannot_gain_endurance_charges"}},[5689]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players cannot gain Frenzy Charges"}}},stats={[1]="map_players_cannot_gain_frenzy_charges"}},[5690]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players cannot gain Power Charges"}}},stats={[1]="map_players_cannot_gain_power_charges"}},[5691]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players and their Minions cannot take Reflected Damage"}}},stats={[1]="map_players_cannot_take_reflected_damage"}},[5692]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Player chance to Dodge is Lucky"},[2]={limit={[1]={[1]=-1,[2]=-1}},text="Player chance to Dodge is Unlucky"}}},stats={[1]="map_players_extra_dodge_rolls"}},[5693]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Players gain a Random Mod from Slain Rare Monsters for %1% seconds"}}},stats={[1]="map_players_gain_1_random_rare_monster_mod_on_kill_ms"}},[5694]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Players have a %1%%% chance when they Kill a Rare Monster to gain 1 of its Modifiers for 20 seconds"},[2]={limit={[1]={[1]=100,[2]=100}},text="When Players Kill a Rare Monster they will gain 1 of its Modifiers for 20 seconds"}}},stats={[1]="map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%"}},[5695]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]="#"}},text="Strongboxes grant Onslaught for %1% seconds when opened"}}},stats={[1]="map_players_gain_onslaught_after_opening_a_strongbox_ms"}},[5696]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have Onslaught while using Flasks"}}},stats={[1]="map_players_gain_onslaught_during_flask_effect"}},[5697]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When a Player Kills a Rare Monster, they have %1%%% chance to gain its Modifiers for 20 seconds"}}},stats={[1]="map_players_gain_rare_monster_mods_on_kill_%_chance"}},[5698]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have Point Blank"}}},stats={[1]="map_players_have_point_blank"}},[5699]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have %1%%% increased Cooldown Recovery Speed for Movement Skills"}}},stats={[1]="map_players_movement_skills_cooldown_speed_+%"}},[5700]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% reduced Movement Speed"}}},stats={[1]="map_players_movement_speed_+%"}},[5701]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players cannot Regenerate Life, Mana or Energy Shield"}}},stats={[1]="map_players_no_regeneration_including_es"}},[5702]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Players have %1$+d%% to All Resistances"}}},stats={[1]="map_players_resist_all_%"}},[5703]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Players have %1%%% more Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Players have %1%%% less Area of Effect"}}},stats={[1]="map_players_skill_area_of_effect_+%_final"}},[5704]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Map Portals do not expire"}}},stats={[1]="map_portals_do_not_expire"}},[5705]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="The First 3 Possessed Monsters have a %1%%% chance to drop an additional Gilded Scarab"},[2]={limit={[1]={[1]=100,[2]="#"}},text="The First 3 Possessed Monsters drop an additional Gilded Scarab"}}},stats={[1]="map_possessed_monsters_drop_gilded_scarab_chance_%"}},[5706]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="The First 3 Possessed Monsters have a %1%%% chance to drop an additional Map"},[2]={limit={[1]={[1]=100,[2]="#"}},text="The First 3 Possessed Monsters drop an additional Map"}}},stats={[1]="map_possessed_monsters_drop_map_chance_%"}},[5707]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="The First 3 Possessed Monsters have a %1%%% chance to drop an additional Polished Scarab"},[2]={limit={[1]={[1]=100,[2]="#"}},text="The First 3 Possessed Monsters drop an additional Polished Scarab"}}},stats={[1]="map_possessed_monsters_drop_polished_scarab_chance_%"}},[5708]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="The First 3 Possessed Monsters have a %1%%% chance to drop an additional Rusted Scarab"},[2]={limit={[1]={[1]=100,[2]="#"}},text="The First 3 Possessed Monsters drop an additional Rusted Scarab"}}},stats={[1]="map_possessed_monsters_drop_rusted_scarab_chance_%"}},[5709]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="The First 3 Possessed Monsters have a %1%%% chance to drop an additional Unique Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="The First 3 Possessed Monsters drop an additional Unique Item"}}},stats={[1]="map_possessed_monsters_drop_unique_chance_%"}},[5710]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rampage Streak Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rampage Streak Duration"}}},stats={[1]="map_rampage_time_+%"}},[5711]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="If this Area contains any Unique Monsters, one is Possessed"}}},stats={[1]="map_random_unique_monster_is_possessed"}},[5712]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rare Monsters from Breaches have a %1%%% chance to Drop a Breach Ring"}}},stats={[1]="map_rare_breach_monster_additional_breach_ring_drop_chance_%"}},[5713]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Rare Breach Monsters drop an additional Splinter"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Rare Breach Monsters drop %1% additional Splinters"}}},stats={[1]="map_rare_breach_monsters_drop_additional_shards"}},[5714]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=1,[2]="#"}},text="Rare Monsters are Hindered, with %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]="#",[2]=-1}},text="Rare Monsters are Hindered, with %1%%% reduced Movement Speed"}}},stats={[1]="map_rare_monsters_are_hindered"}},[5715]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Rare Monsters have %1%%% chance to drop a Rare Prismatic Ring"},[2]={limit={[1]={[1]=100,[2]=100}},text="Rare Monsters drop a Rare Prismatic Ring"}}},stats={[1]="map_rare_monsters_drop_rare_prismatic_ring_on_death_%"}},[5716]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Rare Monsters drop an additional Rare Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Rare Monsters drop %1% additional Rare Items"}}},stats={[1]="map_rare_monsters_drop_x_additional_rare_items"}},[5717]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rare Monsters have Inner Treasure in addition to their other Modifiers"}}},stats={[1]="map_rare_monsters_have_inner_treasure"}},[5718]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rogue Exiles have %1%%% increased Attack, Cast and Movement Speed"}}},stats={[1]="map_rogue_exile_attack_cast_and_movement_speed_+%"}},[5719]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rogue Exiles each drop a Skill Gem with Quality"}}},stats={[1]="map_rogue_exile_drop_skill_gem_with_quality"}},[5720]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rogue Exiles each have a Rogue Exile ally"}}},stats={[1]="map_rogue_exiles_are_doubled"}},[5721]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Rogue Exiles deal %1%%% increased Damage"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Rogue Exiles deal %1%%% reduced Damage"}}},stats={[1]="map_rogue_exiles_damage_+%"}},[5722]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Rogue Exiles drop %1% additional Currency Items"}}},stats={[1]="map_rogue_exiles_drop_additional_currency_items_with_quality"}},[5723]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Rogue Exiles drop an additional Jewel"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Rogue Exiles drop %1% additional Jewels"}}},stats={[1]="map_rogue_exiles_drop_x_additional_jewels"}},[5724]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Items dropped by Rogue Exiles are Corrupted"}}},stats={[1]="map_rogue_exiles_dropped_items_are_corrupted"}},[5725]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Items dropped by Rogue Exiles are Mirrored"}}},stats={[1]="map_rogue_exiles_dropped_items_are_duplicated"}},[5726]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Items dropped by Rogue Exiles are fully Linked"}}},stats={[1]="map_rogue_exiles_dropped_items_are_fully_linked"}},[5727]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Rogue Exiles have %1%%% increased Maximum Life"},[2]={limit={[1]={[1]="#",[2]=-1}},text="Rogue Exiles have %1%%% reduced Maximum Life"}}},stats={[1]="map_rogue_exiles_maximum_life_+%"}},[5728]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Rare Shaper Items found in Area"}}},stats={[1]="map_shaper_rare_chance_+%"}},[5729]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Shrines drop a Currency Item when used"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Shrines drop %1% Currency Items when used"}}},stats={[1]="map_shrines_drop_x_currency_items_on_activation"}},[5730]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Shrines grant a random additional Shrine Effect"}}},stats={[1]="map_shrines_grant_a_random_additional_effect"}},[5731]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of dropped Reward Items"}}},stats={[1]="map_simulacrum_reward_level_+"}},[5732]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Areas can contain Abysses"}}},stats={[1]="map_spawn_abysses"}},[5733]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Areas contain Beasts to hunt"}}},stats={[1]="map_spawn_bestiary_encounters"}},[5734]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Unique Monsters from Beyond have a %1%%% chance to Summon\nanother Unique Monster from Beyond when Slain"},[2]={limit={[1]={[1]=100,[2]=100}},text="Unique Monsters from Beyond will Summon another Unique Monster from Beyond when Slain"}}},stats={[1]="map_spawn_beyond_boss_when_beyond_boss_slain_%"}},[5735]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Area has a %1%%% chance to contain Cadiro Perandus"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Area contains Cadiro Perandus"}}},stats={[1]="map_spawn_cadiro_%_chance"}},[5736]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains an additional Perandus Chest"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Perandus Chests"}}},stats={[1]="map_spawn_extra_perandus_chests"}},[5737]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Areas contain Temporal Incursions"}}},stats={[1]="map_spawn_incursion_encounters"}},[5738]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Tempest Effects have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Tempest Effects have %1%%% reduced Area of Effect"}}},stats={[1]="map_storm_area_of_effect_+%"}},[5739]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strongbox contents are Mirrored"}}},stats={[1]="map_strongbox_items_dropped_are_mirrored"}},[5740]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Strongbox Monsters are Enraged"}}},stats={[1]="map_strongbox_monsters_attack_speed_+%"}},[5741]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Strongbox Monsters have %1%%% increased Item Quantity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]="#"}},text="Strongbox Monsters have %1%%% reduced Item Quantity"}}},stats={[1]="map_strongbox_monsters_item_quantity_+%"}},[5742]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strongboxes in Area are Corrupted"}}},stats={[1]="map_strongboxes_are_corrupted"}},[5743]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Strongboxes each contain an additional random Rare Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Strongboxes each contain %1% additional random Rare Items"}}},stats={[1]="map_strongboxes_drop_x_additional_rare_items"}},[5744]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Strongboxes in Area are at least Magic Rarity"},[2]={limit={[1]={[1]=2,[2]=2}},text="Strongboxes in Area are at least Rare Rarity"},[3]={limit={[1]={[1]=3,[2]=3}},text="Strongboxes in Area are at least Unique Rarity"}}},stats={[1]="map_strongboxes_minimum_rarity"}},[5745]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Areas contain Memory Fragments"}}},stats={[1]="map_synthesis_league"}},[5746]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Area contains %1% additional Abyss Bone Chest Clusters"}}},stats={[1]="map_synthesis_spawn_additional_abyss_bone_chest_clusters"}},[5747]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Area contains %1% additional Bloodworm Chest Clusters"}}},stats={[1]="map_synthesis_spawn_additional_bloodworm_barrel_clusters"}},[5748]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Area contains %1% additional Fungal Chest Clusters"}}},stats={[1]="map_synthesis_spawn_additional_fungal_chest_clusters"}},[5749]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains %1% additional Synthesised Chest which contains Magic Monsters"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Synthesised Chests which contain Magic Monsters"}}},stats={[1]="map_synthesis_spawn_additional_magic_ambush_chest"}},[5750]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains %1% additional Synthesised Chest which contains Normal Monsters"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Synthesised Chests which contain Normal Monsters"}}},stats={[1]="map_synthesis_spawn_additional_normal_ambush_chest"}},[5751]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Area contains %1% additional Parasitic Chest Clusters"}}},stats={[1]="map_synthesis_spawn_additional_parasite_barrel_clusters"}},[5752]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Area contains %1% additional Synthesised Chest which contains Rare Monsters"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Area contains %1% additional Synthesised Chests which contain Rare Monsters"}}},stats={[1]="map_synthesis_spawn_additional_rare_ambush_chest"}},[5753]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Area contains %1% additional Explosive Chest Clusters"}}},stats={[1]="map_synthesis_spawn_additional_volatile_barrel_clusters"}},[5754]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Area contains %1% additional Wealthy Barrel Clusters"}}},stats={[1]="map_synthesis_spawn_additional_wealthy_barrel_clusters"}},[5755]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop a Breach Splinter"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop a Breach Splinter"}}},stats={[1]="map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%"}},[5756]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop a Currency Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop a Currency Item"}}},stats={[1]="map_synthesised_magic_monster_additional_currency_item_drop_chance_%"}},[5757]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop a Currency Shard"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop a Currency Shard"}}},stats={[1]="map_synthesised_magic_monster_additional_currency_shard_drop_chance_%"}},[5758]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop a Divination Card"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop a Divination Card"}}},stats={[1]="map_synthesised_magic_monster_additional_divination_card_drop_chance_%"}},[5759]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop an Elder Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop an Elder Item"}}},stats={[1]="map_synthesised_magic_monster_additional_elder_item_drop_chance_%"}},[5760]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop a Fossil"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop a Fossil"}}},stats={[1]="map_synthesised_magic_monster_additional_fossil_drop_chance_%"}},[5761]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop a Quality Currency Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop a Quality Currency Item"}}},stats={[1]="map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%"}},[5762]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Magic Monsters have %1%%% chance to drop a Shaper Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Magic Monsters drop a Shaper Item"}}},stats={[1]="map_synthesised_magic_monster_additional_shaper_item_drop_chance_%"}},[5763]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Magic Monsters drop an additional Currency Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Synthesised Magic Monsters drop %1% additional Currency Items"}}},stats={[1]="map_synthesised_magic_monster_drop_additional_currency"}},[5764]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Magic Monsters drop an additional Currency Shard"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Synthesised Magic Monsters drop %1% additional Currency Shards"}}},stats={[1]="map_synthesised_magic_monster_drop_additional_currency_shard"}},[5765]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Magic Monsters drop an additional Quality Currency Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Synthesised Magic Monsters drop %1% additional Quality Currency Items"}}},stats={[1]="map_synthesised_magic_monster_drop_additional_quality_currency"}},[5766]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Synthesised Magic Monsters"}}},stats={[1]="map_synthesised_magic_monster_dropped_item_quantity_+%"}},[5767]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Synthesised Magic Monsters"}}},stats={[1]="map_synthesised_magic_monster_dropped_item_rarity_+%"}},[5768]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Magic Monsters have %1%%% increased chance to drop a Fractured Item"}}},stats={[1]="map_synthesised_magic_monster_fractured_item_drop_chance_+%"}},[5769]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Items dropped by Synthesised Magic Monsters have %1%%% chance to be Corrupted"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Items dropped by Synthesised Magic Monsters are Corrupted"}}},stats={[1]="map_synthesised_magic_monster_items_drop_corrupted_%"}},[5770]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Magic Monsters have %1%%% increased chance to drop a Map"}}},stats={[1]="map_synthesised_magic_monster_map_drop_chance_+%"}},[5771]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Magic Monsters grant %1%%% increased Experience"}}},stats={[1]="map_synthesised_magic_monster_slain_experience_+%"}},[5772]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Magic Monsters have %1%%% increased chance to drop a Unique Item"}}},stats={[1]="map_synthesised_magic_monster_unique_item_drop_chance_+%"}},[5773]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop a Breach Splinter"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop a Breach Splinter"}}},stats={[1]="map_synthesised_monster_additional_breach_splinter_drop_chance_%"}},[5774]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop a Currency Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop a Currency Item"}}},stats={[1]="map_synthesised_monster_additional_currency_item_drop_chance_%"}},[5775]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop a Currency Shard"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop a Currency Shard"}}},stats={[1]="map_synthesised_monster_additional_currency_shard_drop_chance_%"}},[5776]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop a Divination Card"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop a Divination Card"}}},stats={[1]="map_synthesised_monster_additional_divination_card_drop_chance_%"}},[5777]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop an Elder Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop an Elder Item"}}},stats={[1]="map_synthesised_monster_additional_elder_item_drop_chance_%"}},[5778]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop a Fossil"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop a Fossil"}}},stats={[1]="map_synthesised_monster_additional_fossil_drop_chance_%"}},[5779]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop a Quality Currency Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop a Quality Currency Item"}}},stats={[1]="map_synthesised_monster_additional_quality_currency_item_drop_chance_%"}},[5780]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Monsters have %1%%% chance to drop a Shaper Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Monsters drop a Shaper Item"}}},stats={[1]="map_synthesised_monster_additional_shaper_item_drop_chance_%"}},[5781]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Synthesised Monsters"}}},stats={[1]="map_synthesised_monster_dropped_item_quantity_+%"}},[5782]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Synthesised Monsters"}}},stats={[1]="map_synthesised_monster_dropped_item_rarity_+%"}},[5783]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Monsters have %1%%% increased chance to drop a Fractured Item"}}},stats={[1]="map_synthesised_monster_fractured_item_drop_chance_+%"}},[5784]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Items dropped by Synthesised Monsters have %1%%% chance to be Corrupted"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Items dropped by Synthesised Monsters are Corrupted"}}},stats={[1]="map_synthesised_monster_items_drop_corrupted_%"}},[5785]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Monsters have %1%%% increased chance to drop a Map"}}},stats={[1]="map_synthesised_monster_map_drop_chance_+%"}},[5786]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Size of Synthesised Monster Packs"}}},stats={[1]="map_synthesised_monster_pack_size_+%"}},[5787]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Monsters grant %1%%% increased Experience"}}},stats={[1]="map_synthesised_monster_slain_experience_+%"}},[5788]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Monsters have %1%%% increased chance to drop a Unique Item"}}},stats={[1]="map_synthesised_monster_unique_item_drop_chance_+%"}},[5789]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop an Abyss Jewel"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop an Abyss Jewel"}}},stats={[1]="map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%"}},[5790]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Breach Splinter"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Breach Splinter"}}},stats={[1]="map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%"}},[5791]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Currency Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Currency Item"}}},stats={[1]="map_synthesised_rare_monster_additional_currency_item_drop_chance_%"}},[5792]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Rare Monsters drop an additional Currency Shard"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Synthesised Rare Monsters drop %1% additional Currency Shards"}}},stats={[1]="map_synthesised_rare_monster_additional_currency_shard_drop_chance_%"}},[5793]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Divination Card"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Divination Card"}}},stats={[1]="map_synthesised_rare_monster_additional_divination_card_drop_chance_%"}},[5794]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop an Elder Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop an Elder Item"}}},stats={[1]="map_synthesised_rare_monster_additional_elder_item_drop_chance_%"}},[5795]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop an Essence"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop an Essence"}}},stats={[1]="map_synthesised_rare_monster_additional_essence_drop_chance_%"}},[5796]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Fossil"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Fossil"}}},stats={[1]="map_synthesised_rare_monster_additional_fossil_drop_chance_%"}},[5797]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Jewel"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Jewel"}}},stats={[1]="map_synthesised_rare_monster_additional_jewel_drop_chance_%"}},[5798]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Map"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Map"}}},stats={[1]="map_synthesised_rare_monster_additional_map_drop_chance_%"}},[5799]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Quality Currency Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Quality Currency Item"}}},stats={[1]="map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%"}},[5800]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Shaper Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Shaper Item"}}},stats={[1]="map_synthesised_rare_monster_additional_shaper_item_drop_chance_%"}},[5801]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Talisman"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Talisman"}}},stats={[1]="map_synthesised_rare_monster_additional_talisman_drop_chance_%"}},[5802]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Vaal Fragment"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Vaal Fragment"}}},stats={[1]="map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%"}},[5803]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have %1%%% chance to drop a Veiled Item"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters drop a Veiled Item"}}},stats={[1]="map_synthesised_rare_monster_additional_veiled_item_drop_chance_%"}},[5804]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Rare Monsters drop an additional Breach Splinter"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Synthesised Rare Monsters drop %1% additional Breach Splinters"}}},stats={[1]="map_synthesised_rare_monster_drop_additional_breach_splinter"}},[5805]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Rare Monsters drop an additional Currency Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Synthesised Rare Monsters drop %1% additional Currency Items"}}},stats={[1]="map_synthesised_rare_monster_drop_additional_currency"}},[5806]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Rare Monsters drop an additional Currency Shard"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Synthesised Rare Monsters drop %1% additional Currency Shards"}}},stats={[1]="map_synthesised_rare_monster_drop_additional_currency_shard"}},[5807]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Synthesised Rare Monsters drop an additional Quality Currency Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Synthesised Rare Monsters drop %1% additional Quality Currency Items"}}},stats={[1]="map_synthesised_rare_monster_drop_additional_quality_currency"}},[5808]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Synthesised Rare Monsters"}}},stats={[1]="map_synthesised_rare_monster_dropped_item_quantity_+%"}},[5809]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Synthesised Rare Monsters"}}},stats={[1]="map_synthesised_rare_monster_dropped_item_rarity_+%"}},[5810]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Rare Monsters have %1%%% increased chance to drop a Fractured Item"}}},stats={[1]="map_synthesised_rare_monster_fractured_item_drop_chance_+%"}},[5811]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="When a Player Kills a Synthesised Rare Monster, they have %1%%% chance to gain its Modifiers for 20 seconds"},[2]={limit={[1]={[1]=100,[2]="#"}},text="When a Player Kills a Synthesised Rare Monster, they gain its Modifiers for 20 seconds"}}},stats={[1]="map_synthesised_rare_monster_gives_mods_to_killer_chance_%"}},[5812]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Items dropped by Synthesised Rare Monsters have %1%%% chance to be Corrupted"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Items dropped by Synthesised Rare Monsters are Corrupted"}}},stats={[1]="map_synthesised_rare_monster_items_drop_corrupted_%"}},[5813]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Rare Monsters have %1%%% increased chance to drop a Map"}}},stats={[1]="map_synthesised_rare_monster_map_drop_chance_+%"}},[5814]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Synthesised Rare Monsters have a %1%%% chance to resurrect as an Ally when slain"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Synthesised Rare Monsters are resurrected as an Ally when slain"}}},stats={[1]="map_synthesised_rare_monster_resurrect_as_ally_chance_%"}},[5815]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Rare Monsters grant %1%%% increased Experience"}}},stats={[1]="map_synthesised_rare_monster_slain_experience_+%"}},[5816]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Synthesised Rare Monsters have %1%%% increased chance to drop a Unique Item"}}},stats={[1]="map_synthesised_rare_monster_unique_item_drop_chance_+%"}},[5817]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Talismans found in this Area are Rare"}}},stats={[1]="map_talismans_dropped_as_rare"}},[5818]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Talismans found in this Area are 1 Tier higher"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Talismans found in this Area are %1% Tiers higher"}}},stats={[1]="map_talismans_higher_tier"}},[5819]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Tempest Effects have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Tempest Effects have %1%%% reduced Area of Effect"}}},stats={[1]="map_tempest_area_of_effect_+%_visible"}},[5820]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased frequency of Tempest effects"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced frequency of Tempest effects"}}},stats={[1]="map_tempest_frequency_+%"}},[5821]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Tormented Spirits drop 1 additional Rare Item"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Tormented Spirits drop %1% additional Rare Items"}}},stats={[1]="map_tormented_spirits_drop_x_additional_rare_items"}},[5822]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Tormented Spirits have %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Tormented Spirits have %1%%% reduced Duration"}}},stats={[1]="map_tormented_spirits_duration_+%"}},[5823]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Tormented Spirits have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Tormented Spirits have %1%%% reduced Movement Speed"}}},stats={[1]="map_tormented_spirits_movement_speed_+%"}},[5824]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Boss drops divination cards"}}},stats={[1]="map_unique_boss_drops_divination_cards"}},[5825]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Unique Items found in Area"}}},stats={[1]="map_unique_item_drop_chance_+%"}},[5826]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unique Monsters drop Corrupted Items"}}},stats={[1]="map_unique_monsters_drop_corrupted_items"}},[5827]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Packs to be upgraded to Magic"}}},stats={[1]="map_upgrade_pack_to_magic_%_chance"}},[5828]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Packs to be upgraded to Rare"}}},stats={[1]="map_upgrade_pack_to_rare_%_chance"}},[5829]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Synthesised Packs to be upgraded to Magic"}}},stats={[1]="map_upgrade_synthesised_pack_to_magic_%_chance"}},[5830]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Synthesised Packs to be upgraded to Rare"}}},stats={[1]="map_upgrade_synthesised_pack_to_rare_%_chance"}},[5831]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="Items dropped by Corrupted Vaal Monsters have %1%%% chance to be Corrupted"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Items dropped by Corrupted Vaal Monsters are Corrupted"}}},stats={[1]="map_vaal_monster_items_drop_corrupted_%"}},[5832]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has %1%%% chance to contain Gifts of the Red Queen per Mortal Fragment used"}}},stats={[1]="map_vaal_mortal_strongbox_chance_per_fragment_%"}},[5833]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area has %1%%% chance to contain Gifts of the Sacrificed per Sacrifice Fragment used"}}},stats={[1]="map_vaal_sacrifice_strongbox_chance_per_fragment_%"}},[5834]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Vaal Vessel contains an additional Divination Card that give Corrupted Items"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Vaal Vessel contains %1% additional Divination Cards that give Corrupted Items"}}},stats={[1]="map_vaal_vessel_drop_X_divination_cards"}},[5835]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Vaal Vessel contains an additional Fossil"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Vaal Vessel contains %1% additional Fossils"}}},stats={[1]="map_vaal_vessel_drop_X_fossils"}},[5836]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Vaal Vessel contains an additional Vaal Gem with Experience"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Vaal Vessel contains %1% additional Vaal Gems with Experience"}}},stats={[1]="map_vaal_vessel_drop_X_levelled_vaal_gems"}},[5837]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Vaal Vessel contains an additional Mortal Fragment"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Vaal Vessel contains %1% additional Mortal Fragments"}}},stats={[1]="map_vaal_vessel_drop_X_mortal_fragments"}},[5838]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Vaal Vessel contains an additional Prophecy"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Vaal Vessel contains %1% additional Prophecies"}}},stats={[1]="map_vaal_vessel_drop_X_prophecies"}},[5839]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Vaal Vessel contains an additional Rare Item with an Incursion Modifier"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Vaal Vessel contains %1% additional Rare Items with an Incursion Modifier"}}},stats={[1]="map_vaal_vessel_drop_X_rare_temple_items"}},[5840]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Vaal Vessel contains an additional Sacrifice Fragment"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Vaal Vessel contains %1% additional Sacrifice Fragments"}}},stats={[1]="map_vaal_vessel_drop_X_sacrifice_fragments"}},[5841]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Vaal Vessel contains an additional Vaal Orb"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Vaal Vessel contains %1% additional Vaal Orbs"}}},stats={[1]="map_vaal_vessel_drop_X_vaal_orbs"}},[5842]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Vaal Vessel contains an additional Corrupted Unique Item with two Implicit Modifiers"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Vaal Vessel contains %1% additional Corrupted Unique Items with two Implicit Modifiers"}}},stats={[1]="map_vaal_vessel_drop_x_double_implicit_corrupted_uniques"}},[5843]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Vaal Vessel contains an additional Corrupted Unique Item"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Vaal Vessel contains %1% additional Corrupted Unique Items"}}},stats={[1]="map_vaal_vessel_drop_x_single_implicit_corrupted_uniques"}},[5844]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Quantity of Items contained in Vaal Vessel"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items contained in Vaal Vessel"}}},stats={[1]="map_vaal_vessel_item_drop_quantity_+%"}},[5845]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items contained in Vaal Vessel"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items contained in Vaal Vessel"}}},stats={[1]="map_vaal_vessel_item_drop_rarity_+%"}},[5846]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Warbands in the Area have an additional Elite Member"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Warbands in the Area have %1% additional Elites Members"}}},stats={[1]="map_warbands_packs_have_additional_elites"}},[5847]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Warbands in this Area have an additional Member"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Warbands in this Area have %1% additional Members"}}},stats={[1]="map_warbands_packs_have_additional_grunts"}},[5848]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Warbands in the Area have an additional Support Member"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Warbands in the Area have %1% additional Support Members"}}},stats={[1]="map_warbands_packs_have_additional_supports"}},[5849]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Elder Fiends"}}},stats={[1]="map_watchstone_additional_packs_of_elder_monsters"}},[5850]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Area contains %1% additional packs of Shaper Creations"}}},stats={[1]="map_watchstone_additional_packs_of_shaper_monsters"}},[5851]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Monster Damage"}}},stats={[1]="map_watchstone_monsters_damage_+%_final"}},[5852]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Monster Life"}}},stats={[1]="map_watchstone_monsters_life_+%_final"}},[5853]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently"}}},stats={[1]="max_chance_to_block_attacks_if_not_blocked_recently"}},[5854]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Adds %1% maximum Lightning Damage per 10 Intelligence"}}},stats={[1]="maximum_added_lightning_damage_per_10_int"}},[5855]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Blitz Charges"}}},stats={[1]="maximum_blitz_charges"}},[5856]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Challenger Charges"}}},stats={[1]="maximum_challenger_charges"}},[5857]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Cold Resistance while affected by Herald of Ice"}}},stats={[1]="maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice"}},[5858]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Chance to Dodge Attack Hits"}}},stats={[1]="maximum_dodge_chance_%"}},[5859]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges"}}},stats={[1]="maximum_endurance_charges_is_equal_to_maximum_frenzy_charges"}},[5860]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Energy Shield from Body Armour"}}},stats={[1]="maximum_energy_shield_from_body_armour_+%"}},[5861]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Fire Resistance while affected by Herald of Ash"}}},stats={[1]="maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash"}},[5862]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Maximum Frenzy Charges is equal to your Maximum Power Charges"}}},stats={[1]="maximum_frenzy_charges_is_equal_to_maximum_power_charges"}},[5863]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Skills supported by Intensify have %1$+d to maximum Intensity"}}},stats={[1]="maximum_intensify_stacks"}},[5864]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% of Maximum Life to maximum Recovery per Life Leech"}}},stats={[1]="maximum_life_leech_amount_per_leech_%_max_life"}},[5865]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum total Recovery per second from Life Leech is doubled"}}},stats={[1]="maximum_life_leech_rate_%_per_minute_is_doubled"}},[5866]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum total Recovery per second from Life Leech if you've taken a Savage Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextSavageHit"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum total Recovery per second from Life Leech if you've taken a Savage Hit Recently"}}},stats={[1]="maximum_life_leech_rate_+%_if_have_taken_a_savage_hit_recently"}},[5867]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Life per 10 Dexterity"}}},stats={[1]="maximum_life_per_10_dexterity"}},[5868]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Life per 10 Intelligence"}}},stats={[1]="maximum_life_per_10_intelligence"}},[5869]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Life per 2%% increased Rarity of Items found"}}},stats={[1]="maximum_life_per_2%_increased_item_found_rarity"}},[5870]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Maximum Life as Extra Armour"}}},stats={[1]="maximum_life_%_to_add_as_maximum_armour"}},[5871]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Maximum Life as Extra Maximum Energy Shield"}}},stats={[1]="maximum_life_%_to_add_as_maximum_energy_shield"}},[5872]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Maximum Life Converted to Energy Shield"}}},stats={[1]="maximum_life_%_to_convert_to_maximum_energy_shield"}},[5873]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSpawnCorpse"},limit={[1]={[1]=1,[2]="#"}},text="Corpses you Spawn have %1%%% increased Maximum Life"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextSpawnCorpse"},limit={[1]={[1]="#",[2]=-1}},text="Corpses you Spawn have %1%%% reduced Maximum Life"}}},stats={[1]="maximum_life_+%_for_corpses_you_create"}},[5874]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Life per Abyss Jewel affecting you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Life per Abyss Jewel affecting you"}}},stats={[1]="maximum_life_+%_per_abyssal_jewel_affecting_you"}},[5875]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Lightning Resistance while affected by Herald of Thunder"}}},stats={[1]="maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder"}},[5876]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% of Maximum Mana to maximum Recovery per Mana Leech"}}},stats={[1]="maximum_mana_leech_amount_per_leech_%_max_mana"}},[5877]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity"}}},stats={[1]="maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity"}},[5878]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum Mana per Abyss Jewel affecting you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum Mana per Abyss Jewel affecting you"}}},stats={[1]="maximum_mana_+%_per_abyssal_jewel_affecting_you"}},[5879]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to maximum Chance to Dodge Spell Hits"}}},stats={[1]="maximum_spell_dodge_chance_%"}},[5880]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Maximum Virulence"}}},stats={[1]="maximum_virulence_stacks"}},[5881]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Strike Skills target %1% additional nearby Enemy"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Strike Skills target %1% additional nearby Enemies"}}},stats={[1]="melee_attack_number_of_spirit_strikes"}},[5882]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Melee Critical Strike Chance if you've Warcried Recently"}}},stats={[1]="melee_critical_strike_chance_+%_if_warcried_recently"}},[5883]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Melee Critical Strike Multiplier if you've Warcried Recently"}}},stats={[1]="melee_critical_strike_multiplier_+%_if_warcried_recently"}},[5884]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Damage during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Damage during any Flask Effect"}}},stats={[1]="melee_damage_+%_during_flask_effect"}},[5885]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]=1,[2]="#"}},text="Melee Movement Skills have %1%%% chance to Fortify on Hit"}}},stats={[1]="melee_movement_skill_chance_to_fortify_on_hit_%"}},[5886]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Melee Physical Damage per 10 Dexterity"}}},stats={[1]="melee_physical_damage_+%_per_10_dexterity"}},[5887]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Melee Physical Damage per 10 Strength while Fortified"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Melee Physical Damage per 10 Strength while Fortified"}}},stats={[1]="melee_physical_damage_+%_per_10_strength_while_fortified"}},[5888]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Strike Range while Holding a Shield"}}},stats={[1]="melee_range_+_while_wielding_shield"}},[5889]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Strike Range while Dual Wielding"}}},stats={[1]="melee_range_+_while_dual_wielding"}},[5890]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Strike Range with Axes"}}},stats={[1]="melee_range_+_with_axe"}},[5891]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Strike Range with Claws"}}},stats={[1]="melee_range_+_with_claw"}},[5892]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDaggerRuneDagger"},[2]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Strike Range with Daggers"}}},stats={[1]="melee_range_+_with_dagger"}},[5893]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Strike Range with Maces and Sceptres"}}},stats={[1]="melee_range_+_with_mace"}},[5894]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Strike Range with One Handed Weapons"}}},stats={[1]="melee_range_+_with_one_handed"}},[5895]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStaffWarstaff"},[2]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Strike Range with Staves"}}},stats={[1]="melee_range_+_with_staff"}},[5896]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Strike Range with Swords"}}},stats={[1]="melee_range_+_with_sword"}},[5897]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Melee Strike Range with Two Handed Weapons"}}},stats={[1]="melee_range_+_with_two_handed"}},[5898]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Melee Skills have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Melee Skills have %1%%% reduced Area of Effect"}}},stats={[1]="melee_skills_area_of_effect_+%"}},[5899]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strike Skills also target the previous location they were Used"}}},stats={[1]="melee_strike_skill_strike_previous_location"}},[5900]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]=1,[2]="#"}},text="%1$+d to Melee Strike Range if you have Killed Recently"}}},stats={[1]="melee_weapon_range_+_if_you_have_killed_recently"}},[5901]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]=1,[2]="#"}},text="%1$+d to Melee Strike Range while at Maximum Frenzy Charges"}}},stats={[1]="melee_weapon_range_+_while_at_maximum_frenzy_charges"}},[5902]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMeleeStrikeRange"},limit={[1]={[1]=1,[2]="#"}},text="%1$+d to Melee Strike Range while Fortified"}}},stats={[1]="melee_weapon_range_+_while_fortified"}},[5903]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Skills used by Mines deal %1%%% increased Area Damage if you Detonated a Mine Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Skills used by Mines deal %1%%% reduced Area Damage if you Detonated a Mine Recently"}}},stats={[1]="mine_area_damage_+%_if_detonated_mine_recently"}},[5904]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skills used by Mines have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Skills used by Mines have %1%%% reduced Area of Effect"}}},stats={[1]="mine_area_of_effect_+%"}},[5905]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Skills used by Mines have %1%%% increased Area of Effect if you Detonated a Mine Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Skills used by Mines have %1%%% reduced Area of Effect if you Detonated a Mine Recently"}}},stats={[1]="mine_area_of_effect_+%_if_detonated_mine_recently"}},[5906]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Auras from Mines"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Auras from Mines"}}},stats={[1]="mine_aura_effect_+%"}},[5907]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Mines have %1%%% increased Detonation Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Mines have %1%%% reduced Detonation Speed"}}},stats={[1]="mine_detonation_speed_+%"}},[5908]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=1000,[2]=1000}},text="Mines Hinder Enemies near them for %1% second when they Land,\nreducing Movement Speed by 40%%"},[2]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]="#",[2]="#"}},text="Mines Hinder Enemies near them for %1% seconds when they Land,\nreducing Movement Speed by 40%%"}}},stats={[1]="mines_hinder_nearby_enemies_for_x_ms_on_arming"}},[5909]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="minimum_added_chaos_damage_if_have_crit_recently",[2]="maximum_added_chaos_damage_if_have_crit_recently"}},[5910]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage for each Spider's Web on the Enemy"}}},stats={[1]="minimum_added_chaos_damage_per_spiders_web_on_enemy",[2]="maximum_added_chaos_damage_per_spiders_web_on_enemy"}},[5911]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Attacks with this Weapon deal %1%-%2% added Chaos Damage against\nEnemies affected by at least 5 Poisons"}}},stats={[1]="minimum_added_chaos_damage_vs_enemies_with_5+_poisons",[2]="maximum_added_chaos_damage_vs_enemies_with_5+_poisons"}},[5912]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="minimum_added_cold_damage_if_have_crit_recently",[2]="maximum_added_cold_damage_if_have_crit_recently"}},[5913]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Attacks per 10 Dexterity"}}},stats={[1]="minimum_added_cold_damage_to_attacks_per_10_dexterity",[2]="maximum_added_cold_damage_to_attacks_per_10_dexterity"}},[5914]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage against Chilled Enemies"}}},stats={[1]="minimum_added_cold_damage_vs_chilled_enemies",[2]="maximum_added_cold_damage_vs_chilled_enemies"}},[5915]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage while affected by Hatred"}}},stats={[1]="minimum_added_cold_damage_while_affected_by_hatred",[2]="maximum_added_cold_damage_while_affected_by_hatred"}},[5916]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage while you have Avian's Might"}}},stats={[1]="minimum_added_cold_damage_while_you_have_avians_might",[2]="maximum_added_cold_damage_while_you_have_avians_might"}},[5917]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="minimum_added_fire_damage_if_have_crit_recently",[2]="maximum_added_fire_damage_if_have_crit_recently"}},[5918]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Fire Damage per Endurance Charge"}}},stats={[1]="minimum_added_fire_damage_per_endurance_charge",[2]="maximum_added_fire_damage_per_endurance_charge"}},[5919]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Attacks per 10 Strength"}}},stats={[1]="minimum_added_fire_damage_to_attacks_per_10_strength",[2]="maximum_added_fire_damage_to_attacks_per_10_strength"}},[5920]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Hits with this Weapon against Blinded Enemies"}}},stats={[1]="minimum_added_fire_damage_to_hits_vs_blinded_enemies",[2]="maximum_added_fire_damage_to_hits_vs_blinded_enemies"}},[5921]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="minimum_added_lightning_damage_if_have_crit_recently",[2]="maximum_added_lightning_damage_if_have_crit_recently"}},[5922]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% Lightning Damage per Power Charge"}}},stats={[1]="minimum_added_lightning_damage_per_power_charge",[2]="maximum_added_lightning_damage_per_power_charge"}},[5923]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage for each Shocked Enemy you've Killed Recently"}}},stats={[1]="minimum_added_lightning_damage_per_shocked_enemy_killed_recently",[2]="maximum_added_lightning_damage_per_shocked_enemy_killed_recently"}},[5924]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Attacks per 10 Intelligence"}}},stats={[1]="minimum_added_lightning_damage_to_attacks_per_10_intelligence",[2]="maximum_added_lightning_damage_to_attacks_per_10_intelligence"}},[5925]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells per Power Charge"}}},stats={[1]="minimum_added_lightning_damage_to_spells_per_power_charge",[2]="maximum_added_lightning_damage_to_spells_per_power_charge"}},[5926]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage while you have Avian's Might"}}},stats={[1]="minimum_added_lightning_damage_while_you_have_avians_might",[2]="maximum_added_lightning_damage_while_you_have_avians_might"}},[5927]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="minimum_added_physical_damage_if_have_crit_recently",[2]="maximum_added_physical_damage_if_have_crit_recently"}},[5928]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage per Endurance Charge"}}},stats={[1]="minimum_added_physical_damage_per_endurance_charge",[2]="maximum_added_physical_damage_per_endurance_charge"}},[5929]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Physical Damage against Poisoned Enemies"}}},stats={[1]="minimum_added_physical_damage_vs_poisoned_enemies",[2]="maximum_added_physical_damage_vs_poisoned_enemies"}},[5930]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Cold Damage to Spells while no Life is Reserved"}}},stats={[1]="minimum_added_spell_cold_damage_while_no_life_is_reserved",[2]="maximum_added_spell_cold_damage_while_no_life_is_reserved"}},[5931]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Fire Damage to Spells while no Life is Reserved"}}},stats={[1]="minimum_added_spell_fire_damage_while_no_life_is_reserved",[2]="maximum_added_spell_fire_damage_while_no_life_is_reserved"}},[5932]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Lightning Damage to Spells while no Life is Reserved"}}},stats={[1]="minimum_added_spell_lightning_damage_while_no_life_is_reserved",[2]="maximum_added_spell_lightning_damage_while_no_life_is_reserved"}},[5933]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Endurance Charges while you have at least 150 Devotion"}}},stats={[1]="minimum_endurance_charges_at_devotion_threshold"}},[5934]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Endurance Charges while on Low Life"}}},stats={[1]="minimum_endurance_charges_while_on_low_life_+"}},[5935]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Frenzy Charges while you have at least 150 Devotion"}}},stats={[1]="minimum_frenzy_charges_at_devotion_threshold"}},[5936]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Power Charges while you have at least 150 Devotion"}}},stats={[1]="minimum_power_charges_at_devotion_threshold"}},[5937]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Minimum Power Charges while on Low Life"}}},stats={[1]="minimum_power_charges_while_on_low_life_+"}},[5938]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d to Accuracy Rating"}}},stats={[1]="minion_accuracy_rating"}},[5939]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have +%1% to Accuracy Rating per 10 Devotion"}}},stats={[1]="minion_accuracy_rating_per_10_devotion"}},[5940]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Accuracy Rating"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Accuracy Rating"}}},stats={[1]="minion_accuracy_rating_+%"}},[5941]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Area of Effect if you have used a Minion Skill Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Area of Effect if you have used a Minion Skill Recently"}}},stats={[1]="minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently"}},[5942]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Attack and Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Attack and Cast Speed"}}},stats={[1]="minion_attack_and_cast_speed_+%"}},[5943]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Attack and Cast Speed if you or your Minions have Killed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Attack and Cast Speed if you or your Minions have Killed Recently"}}},stats={[1]="minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"}},[5944]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Attack and Cast Speed per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Attack and Cast Speed per 10 Devotion"}}},stats={[1]="minion_attack_and_cast_speed_+%_per_10_devotion"}},[5945]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Attack and Cast Speed while you are affected by a Herald"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Attack and Cast Speed while you are affected by a Herald"}}},stats={[1]="minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"}},[5946]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% chance to Knock Enemies Back on Hit with Attacks"}}},stats={[1]="minion_attack_hits_knockback_chance_%"}},[5947]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Attack Speed per 50 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Attack Speed per 50 Dexterity"}}},stats={[1]="minion_attack_speed_+%_per_50_dex"}},[5948]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Blind on Hit with Attacks"},[2]={[1]={k="reminderstring",v="ReminderTextBlind"},limit={[1]={[1]=100,[2]="#"}},text="Minions Blind on Hit with Attacks"}}},stats={[1]="minion_attacks_chance_to_blind_on_hit_%"}},[5949]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to deal Double Damage"}}},stats={[1]="minion_chance_to_deal_double_damage_%"}},[5950]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% chance to deal Double Damage while they are on Full Life"}}},stats={[1]="minion_chance_to_deal_double_damage_while_on_full_life_%"}},[5951]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have %1%%% chance to Dodge Spell Hits"}}},stats={[1]="minion_chance_to_dodge_spells_%"}},[5952]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Freeze, Shock and Ignite"},[2]={[1]={k="reminderstring",v="ReminderTextFreeze"},[2]={k="reminderstring",v="ReminderTextShock"},[3]={k="reminderstring",v="ReminderTextIgnite"},limit={[1]={[1]=100,[2]="#"}},text="Minions always Freeze, Shock and Ignite"}}},stats={[1]="minion_chance_to_freeze_shock_ignite_%"}},[5953]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% chance to gain a Power Charge on Hit"}}},stats={[1]="minion_chance_to_gain_power_charge_on_hit_%"}},[5954]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% chance to Ignite"}}},stats={[1]="minion_chance_to_ignite_%"}},[5955]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have a %1%%% chance to Impale on Hit with Attacks"}}},stats={[1]="minion_chance_to_impale_on_attack_hit_%"}},[5956]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Critical Strike Chance"}}},stats={[1]="minion_critical_strike_chance_+%"}},[5957]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage against Ignited Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage against Ignited Enemies"}}},stats={[1]="minion_damage_against_ignited_enemies_+%"}},[5958]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage if you've Hit Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage if you've Hit Recently"}}},stats={[1]="minion_damage_+%_if_enemy_hit_recently"}},[5959]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage against Abyssal Monsters"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage against Abyssal Monsters"}}},stats={[1]="minion_damage_+%_vs_abyssal_monsters"}},[5960]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions deal %1%%% increased Damage while you are affected by a Herald"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions deal %1%%% reduced Damage while you are affected by a Herald"}}},stats={[1]="minion_damage_+%_while_affected_by_a_herald"}},[5961]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions take %1%%% reduced Damage"}}},stats={[1]="minion_damage_taken_+%"}},[5962]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions gain %1%%% of Elemental Damage as Extra Chaos Damage"}}},stats={[1]="minion_elemental_damage_%_to_add_as_chaos"}},[5963]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions have +30%% to all Elemental Resistances"}}},stats={[1]="minion_elemental_resistance_30%"}},[5964]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain a Rampage Kill when Minion hits a Unique Enemy"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain a Rampage Kill when Minion hits a Unique Enemy"}}},stats={[1]="minion_grants_rampage_kill_to_parent_on_hitting_unique_enemy_%"}},[5965]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextLifeLeech"},limit={[1]={[1]=1,[2]="#"}},text="Minions Leech %1%%% of Damage as Life against Poisoned Enemies"}}},stats={[1]="minion_life_leech_permyriad_vs_poisoned_enemies"}},[5966]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions Regenerate %1% Life per second"}}},stats={[1]="minion_life_regeneration_rate_per_second"}},[5967]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMaximumResistance"},limit={[1]={[1]="#",[2]="#"}},text="Minions have %1$+d%% to all maximum Elemental Resistances"}}},stats={[1]="minion_maximum_all_elemental_resistances_%"}},[5968]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions gain %1%%% of Maximum Life as Extra Maximum Energy Shield"}}},stats={[1]="minion_maximum_life_%_to_add_as_maximum_energy_shield"}},[5969]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have +%1% to Minimum Power Charges"}}},stats={[1]="minion_minimum_power_charges"}},[5970]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Minion Movement Speed per 50 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Minion Movement Speed per 50 Dexterity"}}},stats={[1]="minion_movement_speed_+%_per_50_dex"}},[5971]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% increased Movement Speed for each Herald affecting you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% reduced Movement Speed for each Herald affecting you"}}},stats={[1]="minion_movement_velocity_+%_for_each_herald_affecting_you"}},[5972]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions gain %1%%% of Physical Damage as Extra Fire Damage"}}},stats={[1]="minion_physical_damage_%_to_add_as_fire"}},[5973]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Raging Spirits have %1%%% increased maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Raging Spirits have %1%%% reduced maximum Life"}}},stats={[1]="minion_raging_spirit_maximum_life_+%"}},[5974]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="Summoned Raging Spirits take %1%%% of their Maximum Life per second as Chaos Damage"}}},stats={[1]="minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage"}},[5975]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions Recover %1%%% of Life on Minion Death"}}},stats={[1]="minion_recover_%_maximum_life_on_minion_death"}},[5976]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Minion Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Minion Skills"}}},stats={[1]="minion_skill_mana_cost_+%"}},[5977]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Hinder Enemies on Hit with Spells, with 30%% reduced Movement Speed"},[2]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=100,[2]="#"}},text="Minions Hinder Enemies on Hit with Spells, with 30%% reduced Movement Speed"}}},stats={[1]="minion_spells_chance_to_hinder_on_hit_%"}},[5978]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions created Recently have %1%%% increased Attack and Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions created Recently have %1%%% reduced Attack and Cast Speed"}}},stats={[1]="minion_summoned_recently_attack_and_cast_speed_+%"}},[5979]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Minions created Recently cannot be Damaged"}}},stats={[1]="minion_summoned_recently_cannot_be_damaged"}},[5980]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions created Recently have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions created Recently have %1%%% reduced Movement Speed"}}},stats={[1]="minion_summoned_recently_movement_speed_+%"}},[5981]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions cannot Taunt Enemies"}}},stats={[1]="minions_cannot_taunt_enemies"}},[5982]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]=1,[2]=99}},text="Minions have %1%%% chance to Intimidate Enemies for 4 seconds on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]=100,[2]="#"}},text="Minions Intimidate Enemies for 4 seconds on Hit"}}},stats={[1]="minions_chance_to_intimidate_on_hit_%"}},[5983]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Half of your Strength is added to your Minions"}}},stats={[1]="minions_gain_your_strength"}},[5984]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions' Hits can only Kill Ignited Enemies"}}},stats={[1]="minions_hits_can_only_kill_ignited_enemies"}},[5985]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions Recover %1%%% of Life on Killing a Poisoned Enemy"}}},stats={[1]="minions_recover_%_maximum_life_on_killing_poisoned_enemy"}},[5986]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Minions Recover %1%%% of their Life when you Focus"}}},stats={[1]="minions_recover_%_maximum_life_when_you_focus"}},[5987]={lang={English={[1]={[1]={k="passive_hash",v=1},limit={[1]={[1]="#",[2]="#"}},text="Allocates %1%"}}},stats={[1]="mod_granted_passive_hash"}},[5988]={lang={English={[1]={[1]={k="passive_hash",v=1},limit={[1]={[1]="#",[2]="#"}},text="Allocates %1%"}}},stats={[1]="mod_granted_passive_hash_2"}},[5989]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Modifiers to number of Projectiles instead apply\nto the number of targets Projectiles Split towards"}}},stats={[1]="modifiers_to_number_of_projectiles_instead_apply_to_splitting"}},[5990]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Molten Shell has %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Molten Shell has %1%%% reduced Skill Effect Duration"}}},stats={[1]="molten_shell_duration_+%"}},[5991]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Pyroclast Mine deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pyroclast Mine deals %1%%% reduced Damage"}}},stats={[1]="mortar_barrage_mine_damage_+%"}},[5992]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Pyroclast Mine fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Pyroclast Mine fires %1% additional Projectiles"}}},stats={[1]="mortar_barrage_mine_num_projectiles"}},[5993]={lang={English={[1]={[1]={k="divide_by_two_0dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="Pyroclast Mine has %1%%% increased Throwing Speed"},[2]={[1]={k="divide_by_two_0dp",v=1},[2]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pyroclast Mine has %1%%% reduced Throwing Speed"}}},stats={[1]="mortar_barrage_mine_throwing_speed_halved_+%"}},[5994]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Pyroclast Mine has %1%%% increased Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pyroclast Mine has %1%%% reduced Throwing Speed"}}},stats={[1]="mortar_barrage_mine_throwing_speed_+%"}},[5995]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Movement Attack Skills have %1%%% increased Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Movement Attack Skills have %1%%% reduced Attack Speed"}}},stats={[1]="movement_attack_skills_attack_speed_+%"}},[5996]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Cooldown Recovery Speed of Movement Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Cooldown Recovery Speed of Movement Skills"}}},stats={[1]="movement_skills_cooldown_speed_+%"}},[5997]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased cooldown recovery speed of Movement Skills used while affected by Haste"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced cooldown recovery speed of Movement Skills used while affected by Haste"}}},stats={[1]="movement_skills_cooldown_speed_+%_while_affected_by_haste"}},[5998]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Movement Skills deal no Physical Damage"}}},stats={[1]="movement_skills_deal_no_physical_damage"}},[5999]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you've thrown a Trap or Mine Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you've thrown a Trap or Mine Recently"}}},stats={[1]="movement_speed_+%_if_placed_trap_or_mine_recently"}},[6000]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Movement Speed is %1%%% of its base value"}}},stats={[1]="movement_speed_is_%_of_base"}},[6001]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you've dealt a Critical Strike Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you've dealt a Critical Strike Recently"}}},stats={[1]="movement_speed_+%_if_crit_recently"}},[6002]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you've Hit an Enemy Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you've Hit an Enemy Recently"}}},stats={[1]="movement_speed_+%_if_enemy_hit_recently"}},[6003]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you've Hit with your Off Hand Weapon Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you've Hit with your Off Hand Weapon Recently"}}},stats={[1]="movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently"}},[6004]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you haven't taken Damage Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you haven't taken Damage Recently"}}},stats={[1]="movement_speed_+%_if_have_not_taken_damage_recently"}},[6005]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed if you have used a Vaal Skill Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed if you have used a Vaal Skill Recently"}}},stats={[1]="movement_speed_+%_if_have_used_a_vaal_skill_recently"}},[6006]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed per Chest opened Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed per Chest opened Recently"}}},stats={[1]="movement_speed_+%_per_chest_opened_recently"}},[6007]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed per Endurance Charge"}}},stats={[1]="movement_speed_+%_per_endurance_charge"}},[6008]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Movement Speed for each\nnearby Enemy, up to 8%%"}}},stats={[1]="movement_speed_+%_per_nearby_enemy"}},[6009]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed per Power Charge"}}},stats={[1]="movement_speed_+%_per_power_charge"}},[6010]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while affected by Grace"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while affected by Grace"}}},stats={[1]="movement_speed_+%_while_affected_by_grace"}},[6011]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while Bleeding"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while Bleeding"}}},stats={[1]="movement_speed_+%_while_bleeding"}},[6012]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while holding a Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while holding a Shield"}}},stats={[1]="movement_speed_+%_while_holding_shield"}},[6013]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while under no Flask Effects"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while under no Flask Effects"}}},stats={[1]="movement_speed_+%_while_not_using_flask"}},[6014]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement speed while on Burning, Chilled or Shocked ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement speed while on Burning, Chilled or Shocked ground"}}},stats={[1]="movement_speed_+%_while_on_burning_chilled_shocked_ground"}},[6015]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while on Burning Ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while on Burning Ground"}}},stats={[1]="movement_speed_+%_while_on_burning_ground"}},[6016]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while you have Cat's Stealth"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while you have Cat's Stealth"}}},stats={[1]="movement_speed_+%_while_you_have_cats_stealth"}},[6017]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while you have Energy Shield"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while you have Energy Shield"}}},stats={[1]="movement_speed_+%_while_you_have_energy_shield"}},[6018]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while you have Infusion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while you have Infusion"}}},stats={[1]="movement_speed_+%_while_you_have_infusion"}},[6019]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed per Summoned Totem"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed per Summoned Totem"}}},stats={[1]="movement_velocity_+%_per_totem"}},[6020]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Movement Speed while at maximum Power Charges"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Movement Speed while at maximum Power Charges"}}},stats={[1]="movement_velocity_+%_while_at_maximum_power_charges"}},[6021]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nearby Enemies have Fire, Cold and Lightning Exposure while you have Phasing, applying %1$+d%% to those Resistances"}}},stats={[1]="nearby_enemies_all_exposure_%_while_phasing"}},[6022]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least one nearby corpse, you and nearby Allies deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least one nearby corpse, you and nearby Allies deal %1%%% less Damage"}}},stats={[1]="necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse"}},[6023]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="With at least one nearby corpse, nearby Enemies deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="With at least one nearby corpse, nearby Enemies deal %1%%% reduced Damage"}}},stats={[1]="necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse"}},[6024]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Minions have %1%%% more Maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Minions have %1%%% less Maximum Life"}}},stats={[1]="necromancer_defensive_notable_minion_maximum_life_+%_final"}},[6025]={lang={English={[1]={[1]={k="per_minute_to_per_second_1dp",v=1},limit={[1]={[1]="#",[2]="#"}},text="For each nearby corpse, you and nearby Allies Regenerate %1%%% of Energy Shield per second, up to 2.0%% per second"}}},stats={[1]="necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse"}},[6026]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="For each nearby corpse, you and nearby Allies Regenerate %1% Mana\nper second, up to 50 per second"}}},stats={[1]="necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse"}},[6027]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Bleeding does not deal extra Damage while the Enemy is moving"}}},stats={[1]="no_extra_bleed_damage_while_target_is_moving"}},[6028]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Non-Chaos Damage as extra Chaos Damage"}}},stats={[1]="non_chaos_damage_to_add_as_chaos_damage_%"}},[6029]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHit"},limit={[1]={[1]="#",[2]="#"}},text="Non-Chilled Enemies you inflict Bleeding on are Chilled"}}},stats={[1]="non_chilled_enemies_you_bleed_are_chilled"}},[6030]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextChillNonHit"},limit={[1]={[1]="#",[2]="#"}},text="Non-Chilled Enemies you Poison are Chilled"}}},stats={[1]="non_chilled_enemies_you_poison_are_chilled"}},[6031]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Non-Critical Strikes deal no Damage"}}},stats={[1]="non_critical_strikes_deal_no_damage"}},[6032]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased effect of Non-Curse Auras per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced effect of Non-Curse Auras per 10 Devotion"}}},stats={[1]="non_curse_aura_effect_+%_per_10_devotion"}},[6033]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Non-Curse Auras from your Skills on Enemies"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Non-Curse Auras from your Skills on Enemies"}}},stats={[1]="non_curse_aura_effect_+%_vs_enemies"}},[6034]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Non-Damaging Ailments"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Non-Damaging Ailments"}}},stats={[1]="non_damaging_ailment_effect_+%"}},[6035]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of non-Damaging Ailments on Enemies per 10 Devotion"}}},stats={[1]="non_damaging_ailment_effect_+%_per_10_devotion"}},[6036]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Inflict non-Damaging Ailments as though dealing %1%%% more Damage"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextNonDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Inflict non-Damaging Ailments as though dealing %1%%% less Damage"}}},stats={[1]="non_damaging_ailments_as_though_damage_+%_final"}},[6037]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles have %1%%% increased Critical Strike Chance against Targets they do not Pierce"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles have %1%%% reduced Critical Strike Chance against Targets they do not Pierce"}}},stats={[1]="non_piercing_projectiles_critical_strike_chance_+%"}},[6038]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Quantity of Items Dropped by Slain Normal Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Quantity of Items Dropped by Slain Normal Enemies"}}},stats={[1]="normal_monster_dropped_item_quantity_+%"}},[6039]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Nova Spells deal 30%% less Damage to Players\nNova Spells Cast at the targeted location instead of around you"}}},stats={[1]="nova_spells_cast_at_target_location"}},[6040]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Bow Attacks fire an additional Arrow while Main Hand Accuracy Rating is at least 3000"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Bow Attacks fire %1% additional Arrows while Main Hand Accuracy Rating is at least 3000"}}},stats={[1]="number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more"}},[6041]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You can apply an additional Curse while at maximum Power Charges"},[2]={limit={[1]={[1]=1,[2]="#"}},text="You can apply %1% additional Curses while at maximum Power Charges"}}},stats={[1]="number_of_additional_curses_allowed_while_at_maximum_power_charges"}},[6042]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="You can inflict an additional Ignite on an Enemy"},[2]={limit={[1]={[1]=2,[2]="#"}},text="You can inflict %1% additional Ignites on an Enemy"}}},stats={[1]="number_of_additional_ignites_allowed"}},[6043]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]=1,[2]=1}},text="Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity"},[2]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]=2,[2]="#"}},text="Skills which throw Mines throw up to %1% additional Mines if you have at least 800 Dexterity"}}},stats={[1]="number_of_additional_mines_to_place_with_at_least_500_dex"}},[6044]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]=1,[2]=1}},text="Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence"},[2]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]=2,[2]="#"}},text="Skills which throw Mines throw up to %1% additional Mines if you have at least 800 Intelligence"}}},stats={[1]="number_of_additional_mines_to_place_with_at_least_500_int"}},[6045]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]=1}},text="Skills fire an additional Projectile if you've been Hit Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=2,[2]="#"}},text="Skills fire %1% additional Projectiles if you've been Hit Recently"}}},stats={[1]="number_of_additional_projectiles_if_you_have_been_hit_recently"}},[6046]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]=1}},text="Skills fire an additional Projectile if you've used a Movement Skill Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=2,[2]="#"}},text="Skills fire %1% additional Projectiles if you've used a Movement Skill Recently"}}},stats={[1]="number_of_additional_projectiles_if_you_have_used_movement_skill_recently"}},[6047]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Skills which Throw Traps throw up to 1 additional Trap"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Skills which Throw Traps throw up to %1% additional Traps"}}},stats={[1]="number_of_additional_traps_to_throw"}},[6048]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to maximum number of Animated Weapons"}}},stats={[1]="number_of_animated_weapons_allowed"}},[6049]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Gain an Endurance Charge every 4 seconds while Stationary"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Gain %1% Endurance Charges every 4 seconds while Stationary"}}},stats={[1]="number_of_endurance_charges_to_gain_every_4_seconds_while_stationary"}},[6050]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="%1$+d to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped"}}},stats={[1]="number_of_golems_allowed_with_3_primordial_jewels"}},[6051]={lang={English={[1]={limit={[1]={[1]="#",[2]=-1}},text="Skills fire %1%%% less projectiles"},[2]={limit={[1]={[1]=1,[2]="#"}},text="Skills fire %1%%% more projectiles"}}},stats={[1]="number_of_projectiles_+%_final_from_skill"}},[6052]={lang={English={[1]={[1]={k="divide_by_two_0dp",v=1},limit={[1]={[1]=2,[2]="#"}},text="%1$+d to maximum number of Skeletons"}}},stats={[1]="number_of_skeletons_allowed_per_2_old"}},[6053]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="+1 to maximum number of Raised Zombies per %1% Strength"}}},stats={[1]="number_of_zombies_allowed_+1_per_X_strength"}},[6054]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Off Hand Attack Speed while wielding two different Weapon Types"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Off Hand Attack Speed while wielding two different Weapon Types"}}},stats={[1]="off_hand_attack_speed_+%_while_wielding_two_weapon_types"}},[6055]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Offering Skills have %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Offering Skills have %1%%% reduced Duration"}}},stats={[1]="offering_duration_+%"}},[6056]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage\nequal to %1%%% of Sacrificed Mana for 4 seconds"}}},stats={[1]="on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds"}},[6057]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When you create a Banner, it gains %1%%% of the Stages of your placed Banner"}}},stats={[1]="on_casting_banner_recover_%_of_planted_banner_stages"}},[6058]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="When you place a Banner, you and nearby Allies Recover %1%%% of Life for\neach Stage the Banner has"}}},stats={[1]="on_planting_banner_you_and_nearby_allies_recover_permyriad_maximum_life_per_stage"}},[6059]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Onslaught duration"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextOnslaught"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Onslaught duration"}}},stats={[1]="onslaught_duration_+%"}},[6060]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Orb of Storms has %1%%% increased Cast Speed"}}},stats={[1]="orb_of_storms_cast_speed_+%"}},[6061]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Maximum Resistances are %1%%%"}}},stats={[1]="override_maximum_damage_resistance_%"}},[6062]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Base Critical Strike Chance for Attacks with Weapons is %1%%%"}}},stats={[1]="override_weapon_base_critical_strike_chance"}},[6063]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Poisons you inflict during any Flask Effect have %1%%% chance to deal 100%% more Damage"}}},stats={[1]="pathfinder_poison_damage_+100%_final_chance_during_flask_effect"}},[6064]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Number of Perandus Coins dropped in this Area is Doubled"}}},stats={[1]="perandus_double_number_of_coins_found"}},[6065]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain an Endurance Charge each second while Channelling"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Gain an Endurance Charge each second while Channelling"}}},stats={[1]="%_chance_to_gain_endurance_charge_each_second_while_channelling"}},[6066]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain an Endurance, Frenzy or Power Charge when any\nof your Traps are Triggered by an Enemy"}}},stats={[1]="%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy"}},[6067]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]=1,[2]="#"}},text="While in Her Embrace, take %1%%% of your total Maximum Life and Energy Shield as Fire Damage per second per Level"}}},stats={[1]="%_maximum_es_and_life_taken_as_fire_damage_per_minute_per_level_while_in_her_embrace"}},[6068]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Maximum number of Summoned Raging Spirits"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Maximum number of Summoned Raging Spirits"}}},stats={[1]="%_number_of_raging_spirits_allowed"}},[6069]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="Permanently Intimidate Enemies on Block"}}},stats={[1]="permanently_intimidate_enemy_on_block"}},[6070]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You have Phasing if you have Blocked Recently"}}},stats={[1]="phasing_if_blocked_recently"}},[6071]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Seismic Trap has %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Seismic Trap has %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="phys_cascade_trap_cooldown_speed_+%"}},[6072]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Seismic Trap deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Seismic Trap deals %1%%% reduced Damage"}}},stats={[1]="phys_cascade_trap_damage_+%"}},[6073]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Seismic Trap has %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Seismic Trap has %1%%% reduced Skill Effect Duration"}}},stats={[1]="phys_cascade_trap_duration_+%"}},[6074]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Seismic Trap releases an additional Wave"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Seismic Trap releases %1% additional Waves"}}},stats={[1]="phys_cascade_trap_number_of_additional_cascades"}},[6075]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Physical Damage for each Map Item Modifier affecting the Area"}}},stats={[1]="physical_damage_+%_per_explicit_map_mod_affecting_area"}},[6076]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Damage of a Random Element"}}},stats={[1]="physical_damage_from_hits_%_taken_as_random_element"}},[6077]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage over Time taken while moving"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage over Time Damage taken while moving"}}},stats={[1]="physical_damage_over_time_taken_+%_while_moving"}},[6078]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Chaos Damage against\nPoisoned Enemies"}}},stats={[1]="physical_damage_%_to_add_as_chaos_vs_poisoned_enemies"}},[6079]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Fire Damage while affected by Anger"}}},stats={[1]="physical_damage_%_to_add_as_fire_damage_while_affected_by_anger"}},[6080]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="physical_damage_%_to_add_as_fire_if_have_crit_recently"}},[6081]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Fire Damage per 1 Rage"}}},stats={[1]="physical_damage_%_to_add_as_fire_per_rage"}},[6082]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain %1%%% of Physical Damage as Extra Lightning Damage while affected by Wrath"}}},stats={[1]="physical_damage_%_to_add_as_lightning_damage_while_affected_by_wrath"}},[6083]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Cold Damage while you have at least 150 Devotion"}}},stats={[1]="physical_damage_%_to_convert_to_cold_at_devotion_threshold"}},[6084]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Fire Damage while you have at least 150 Devotion"}}},stats={[1]="physical_damage_%_to_convert_to_fire_at_devotion_threshold"}},[6085]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Physical Damage Converted to Lightning Damage while you have at least 150 Devotion"}}},stats={[1]="physical_damage_%_to_convert_to_lightning_at_devotion_threshold"}},[6086]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Hits and Ailments against Ignited Enemies"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Hits and Ailments against Ignited Enemies"}}},stats={[1]="physical_damage_+%_vs_ignited_enemies"}},[6087]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage while affected by Herald of Purity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage while affected by Herald of Purity"}}},stats={[1]="physical_damage_+%_while_affected_by_herald_of_purity"}},[6088]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Axes or Swords"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Axes or Swords"}}},stats={[1]="physical_damage_+%_with_axes_swords"}},[6089]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage while you have Unholy Might"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage while you have Unholy Might"}}},stats={[1]="physical_damage_+%_with_unholy_might"}},[6090]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction while you have at least 150 Devotion"}}},stats={[1]="physical_damage_reduction_%_at_devotion_threshold"}},[6091]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction per Frenzy Charge"}}},stats={[1]="physical_damage_reduction_percent_per_frenzy_charge"}},[6092]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction for each Hit you've taken Recently up to a maximum of 5%%"}}},stats={[1]="physical_damage_reduction_%_per_hit_you_have_taken_recently"}},[6093]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% additional Physical Damage Reduction per Power Charge"}}},stats={[1]="physical_damage_reduction_percent_per_power_charge"}},[6094]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction while affected by Herald of Purity"}}},stats={[1]="physical_damage_reduction_%_while_affected_by_herald_of_purity"}},[6095]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour during Soul Gain Prevention"}}},stats={[1]="physical_damage_reduction_rating_during_soul_gain_prevention"}},[6096]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour if you've Hit an Enemy Recently"}}},stats={[1]="physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently"}},[6097]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Armour per Endurance Charge"}}},stats={[1]="physical_damage_reduction_rating_per_endurance_charge"}},[6098]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction while there\nis only one nearby Enemy"}}},stats={[1]="physical_damage_reduction_%_if_only_one_enemy_nearby"}},[6099]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% increased Armour per Endurance Charge"}}},stats={[1]="physical_damage_reduction_rating_+%_per_endurance_charge"}},[6100]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% additional Physical Damage Reduction for each\nnearby Enemy, up to 8%%"}}},stats={[1]="physical_damage_reduction_%_per_nearby_enemy"}},[6101]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements"}}},stats={[1]="physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements"}},[6102]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice"}}},stats={[1]="physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice"}},[6103]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements"}}},stats={[1]="physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements"}},[6104]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire"}}},stats={[1]="physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire"}},[6105]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements"}}},stats={[1]="physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements"}},[6106]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning"}}},stats={[1]="physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning"}},[6107]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Attack Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Attack Skills"}}},stats={[1]="physical_damage_with_attack_skills_+%"}},[6108]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage with Spell Skills"},[2]={limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage with Spell Skills"}}},stats={[1]="physical_damage_with_spell_skills_+%"}},[6109]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="+%1%%% to Physical Damage over Time Multiplier while wielding an Axe or Sword"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="-%1%%% to Physical Damage over Time Multiplier while wielding an Axe or Sword"}}},stats={[1]="physical_dot_multiplier_+_while_wielding_axes_swords"}},[6110]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and your Minions take %1%%% increased Reflected Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You and your Minions take %1%%% reduced Reflected Physical Damage"}}},stats={[1]="physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%"}},[6111]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Physical Skill Gems"}}},stats={[1]="physical_skill_gem_level_+"}},[6112]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles have %1%%% increased Critical Strike Chance against Targets they Pierce"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles have %1%%% reduced Critical Strike Chance against Targets they Pierce"}}},stats={[1]="piercing_projectiles_critical_strike_chance_+%"}},[6113]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Poison per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Poison per Frenzy Charge"}}},stats={[1]="poison_damage_+%_per_frenzy_charge"}},[6114]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Poison per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Poison per Power Charge"}}},stats={[1]="poison_damage_+%_per_power_charge"}},[6115]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Poison inflicted on Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Poison inflicted on Bleeding Enemies"}}},stats={[1]="poison_damage_+%_vs_bleeding_enemies"}},[6116]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Poison if you have at least 300 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Poison if you have at least 300 Dexterity"}}},stats={[1]="poison_damage_+%_with_over_300_dexterity"}},[6117]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Poison per Frenzy Charge"}}},stats={[1]="poison_dot_multiplier_+_per_frenzy_charge"}},[6118]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="+%1%%% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="-%1%%% to Damage over Time Multiplier for Poison you inflict on Bleeding Enemies"}}},stats={[1]="poison_dot_multiplier_+_vs_bleeding_enemies"}},[6119]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spell Skills have +%1%%% to Damage over Time Multiplier for Poison"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spell Skills have -%1%%% to Damage over Time Multiplier for Poison"}}},stats={[1]="poison_dot_multiplier_+_with_spells"}},[6120]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poison Duration for each Poison you have inflicted Recently"},[2]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poison Duration for each Poison you have inflicted Recently"}}},stats={[1]="poison_duration_+%_per_poison_applied_recently"}},[6121]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poison Duration per Power Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poison Duration per Power Charge"}}},stats={[1]="poison_duration_+%_per_power_charge"}},[6122]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Poison Duration if you have at least 150 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Poison Duration if you have at least 150 Intelligence"}}},stats={[1]="poison_duration_+%_with_over_150_intelligence"}},[6123]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]="#"}},text="Critical Strikes Poison the Enemy"}}},stats={[1]="poison_on_critical_strike"}},[6124]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Poisons you inflict on non-Poisoned Enemies deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Poisons you inflict on non-Poisoned Enemies deal %1%%% reduced Damage"}}},stats={[1]="poison_on_non_poisoned_enemies_damage_+%"}},[6125]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you"}}},stats={[1]="poison_reflected_to_self"}},[6126]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Poisons on you expire %1%%% faster"},[2]={[1]={k="negate",v=1},[2]={k="canonical_line",v="reminderstring"},limit={[1]={[1]="#",[2]=-1}},text="Poisons on you expire %1%%% slower"}}},stats={[1]="poison_time_passed_+%"}},[6127]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Damage over Time Multiplier for Poison while wielding a Claw or Dagger"}}},stats={[1]="posion_damage_over_time_multiplier_+%_while_wielding_claws_daggers"}},[6128]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to gain a Power Charge on Kill while holding a Shield"}}},stats={[1]="power_charge_on_kill_percent_chance_while_holding_shield"}},[6129]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge on Non-Critical Strike with a Claw or Dagger"}}},stats={[1]="power_charge_on_non_critical_strike_%_chance_with_claws_daggers"}},[6130]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to gain a Power Charge when you Block Spell Damage"}}},stats={[1]="power_charge_on_spell_block_%_chance"}},[6131]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Power Siphon fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Power Siphon fires %1% additional Projectiles"}}},stats={[1]="power_siphon_number_of_additional_projectiles"}},[6132]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Precision has 50%% less Mana Reservation"}}},stats={[1]="precision_mana_reservation_-50%_final"}},[6133]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Precision has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Precision has %1%%% reduced Mana Reservation"}}},stats={[1]="precision_mana_reservation_+%"}},[6134]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Precision Reserves no Mana"}}},stats={[1]="precision_reserves_no_mana"}},[6135]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to prevent Projectiles Chaining to or from you"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Prevent Projectiles Chaining to or from you"}}},stats={[1]="prevent_projectile_chaining_%_chance"}},[6136]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Pride has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pride has %1%%% reduced Aura Effect"}}},stats={[1]="pride_aura_effect_+%"}},[6137]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to deal Double Damage while using Pride"}}},stats={[1]="pride_chance_to_deal_double_damage_%"}},[6138]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Impale Enemies on Hit with Attacks while using Pride"},[2]={[1]={k="reminderstring",v="ReminderTextImpale"},limit={[1]={[1]=100,[2]="#"}},text="Impale Enemies on Hit with Attacks while using Pride"}}},stats={[1]="pride_chance_to_impale_with_attacks_%"}},[6139]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIntimidate"},limit={[1]={[1]="#",[2]="#"}},text="Your Hits Intimidate Enemies for 4 seconds while you are using Pride"}}},stats={[1]="pride_intimidate_enemy_for_4_seconds_on_hit"}},[6140]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Pride has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Pride has %1%%% reduced Mana Reservation"}}},stats={[1]="pride_mana_reservation_+%"}},[6141]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack Physical Damage while using Pride"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack Physical Damage while using Pride"}}},stats={[1]="pride_physical_damage_+%"}},[6142]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Pride Reserves no Mana"}}},stats={[1]="pride_reserves_no_mana"}},[6143]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Impales you inflict last %1% additional Hits while using Pride"}}},stats={[1]="pride_your_impaled_debuff_lasts_+_additional_hits"}},[6144]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Attack Damage during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Attack Damage during any Flask Effect"}}},stats={[1]="projectile_attack_damage_+%_during_flask_effect"}},[6145]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Attack Damage with Claws or Daggers"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Attack Damage with Claws or Daggers"}}},stats={[1]="projectile_attack_damage_+%_with_claw_or_dagger"}},[6146]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles deal %1%%% increased Damage for each time they have Chained"}}},stats={[1]="projectile_damage_+%_per_chain"}},[6147]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles deal %1%%% increased Damage for each Enemy Pierced"}}},stats={[1]="projectile_damage_+%_per_pierced_enemy"}},[6148]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Projectiles deal %1%%% increased Damage for each remaining Chain"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Projectiles deal %1%%% reduced Damage for each remaining Chain"}}},stats={[1]="projectile_damage_+%_per_remaining_chain"}},[6149]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Projectile Damage with Hits against Nearby Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Projectile Damage with Hits against Nearby Enemies"}}},stats={[1]="projectile_damage_+%_vs_nearby_enemies"}},[6150]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles gain %1%%% of Non-Chaos Damage as extra Chaos Damage per Chain"}}},stats={[1]="projectile_non_chaos_damage_to_add_as_chaos_damage_%_per_chain"}},[6151]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemy Projectiles Pierce you"}}},stats={[1]="projectiles_always_pierce_you"}},[6152]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles from Spells cannot Pierce"}}},stats={[1]="projectiles_from_spells_cannot_pierce"}},[6153]={lang={English={[1]={limit={[1]={[1]=10,[2]=19}},text="Projectiles Pierce an additional Target"},[2]={[1]={k="divide_by_ten_0dp",v=1},limit={[1]={[1]=20,[2]="#"}},text="Projectiles Pierce %1% additional Targets"}}},stats={[1]="projectiles_pierce_1_additional_target_per_10_stat_value"}},[6154]={lang={English={[1]={limit={[1]={[1]=15,[2]=24}},text="Projectiles Pierce an additional Target"},[2]={[1]={k="divide_by_fifteen_0dp",v=1},limit={[1]={[1]=25,[2]="#"}},text="Projectiles Pierce %1% additional Targets"}}},stats={[1]="projectiles_pierce_1_additional_target_per_15_stat_value"}},[6155]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Pierce all nearby Targets"}}},stats={[1]="projectiles_pierce_all_nearby_targets"}},[6156]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Pierce all Targets while you have Phasing"}}},stats={[1]="projectiles_pierce_while_phasing"}},[6157]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Projectiles Pierce an additional Target while you have Phasing"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Projectiles Pierce %1% additional Targets while you have Phasing"}}},stats={[1]="projectiles_pierce_x_additional_targets_while_you_have_phasing"}},[6158]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="Feeding Frenzy base Duration is %1% second"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Feeding Frenzy base Duration is %1% seconds"}}},stats={[1]="puppet_master_base_duration_ms"}},[6159]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Wave of Conviction's Exposure applies %1$+d%% Elemental Resistance"}}},stats={[1]="purge_additional_enemy_resistance_%"}},[6160]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Wave of Conviction deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Wave of Conviction deals %1%%% reduced Damage"}}},stats={[1]="purge_damage_+%"}},[6161]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Wave of Conviction has %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Wave of Conviction has %1%%% reduced Duration"}}},stats={[1]="purge_duration_+%"}},[6162]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Purity of Elements Reserves no Mana"}}},stats={[1]="purity_of_elements_reserves_no_mana"}},[6163]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Purity of Fire Reserves no Mana"}}},stats={[1]="purity_of_fire_reserves_no_mana"}},[6164]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Purity of Ice Reserves no Mana"}}},stats={[1]="purity_of_ice_reserves_no_mana"}},[6165]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Purity of Lightning Reserves no Mana"}}},stats={[1]="purity_of_lightning_reserves_no_mana"}},[6166]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Dash has %1$+d Cooldown Use"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Dash has %1$+d Cooldown Uses"}}},stats={[1]="quick_dodge_added_cooldown_count"}},[6167]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Dash travels %1%%% increased distance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Dash travels %1%%% reduced distance"}}},stats={[1]="quick_dodge_travel_distance_+%"}},[6168]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Steelskin grants %1%%% additional Physical Damage Reduction"}}},stats={[1]="quick_guard_additional_physical_damage_reduction_%"}},[6169]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Pierce an additional Target"}}},stats={[1]="quiver_projectiles_pierce_1_additional_target"}},[6170]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Pierce 2 additional Targets"}}},stats={[1]="quiver_projectiles_pierce_2_additional_targets"}},[6171]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Projectiles Pierce 3 additional Targets"}}},stats={[1]="quiver_projectiles_pierce_3_additional_targets"}},[6172]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1$+d to Maximum Rage"}}},stats={[1]="maximum_rage"}},[6173]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]=1,[2]=1}},text="Inherent effects from having Rage are Tripled"}}},stats={[1]="rage_effects_doubled"}},[6174]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]=1,[2]="#"}},text="Gain %1% Rage when you Kill an Enemy"}}},stats={[1]="gain_rage_on_kill"}},[6175]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to gain 1 Rage when you Hit a Rare or Unique Enemy"},[2]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]=100,[2]="#"}},text="Gain 1 Rage when you Hit a Rare or Unique Enemy"}}},stats={[1]="gain_rage_on_hitting_rare_unique_enemy_%"}},[6176]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]=1,[2]="#"}},text="Gain %1% Rage when you use a Warcry"}}},stats={[1]="gain_rage_when_you_use_a_warcry"}},[6177]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Cannot be Stunned while you have at least 25 Rage"}}},stats={[1]="cannot_be_stunned_with_25_rage"}},[6178]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]="#",[2]="#"}},text="Gain %1% Rage on Hit"}}},stats={[1]="gain_rage_on_hit"}},[6179]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Raging Spirits' Hits always Ignite"}}},stats={[1]="raging_spirits_always_ignite"}},[6180]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy"}}},stats={[1]="raging_spirits_refresh_duration_when_they_kill_ignited_enemy"}},[6181]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Nearby Enemies have %1%%% more Accuracy Rating while you have Phasing"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Nearby Enemies have %1%%% less Accuracy Rating while you have Phasing"}}},stats={[1]="raider_nearby_enemies_accuracy_rating_+%_final_while_phasing"}},[6182]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rain of Arrows has %1%%% chance to fire an additional sequence of arrows"}}},stats={[1]="rain_of_arrows_additional_sequence_chance_%"}},[6183]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rain of Arrows has %1%%% chance to fire an additional sequence of arrows"}}},stats={[1]="rain_of_arrows_rain_of_arrows_additional_sequence_chance_%"}},[6184]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Mana Cost of Raise Spectre"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Mana Cost of Raise Spectre"}}},stats={[1]="raise_spectre_mana_cost_+%"}},[6185]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raise Zombie does not require a corpse"}}},stats={[1]="raise_zombie_does_not_use_corpses"}},[6186]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Raised Zombies have %1%%% chance to Taunt Enemies on Hit"}}},stats={[1]="raised_zombie_%_chance_to_taunt"}},[6187]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Raised Zombies count as corpses"}}},stats={[1]="raised_zombies_are_usable_as_corpses_when_alive"}},[6188]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Curse non-Cursed Enemies with a random Curse on Hit"}}},stats={[1]="random_curse_on_hit_%_against_uncursed_enemies"}},[6189]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items Dropped by Slain Rare or Unique Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items Dropped by Slain Rare or Unique Enemies"}}},stats={[1]="rare_or_unique_monster_dropped_item_rarity_+%"}},[6190]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Brand Attachment range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Brand Attachment range"}}},stats={[1]="recall_sigil_target_search_range_+%"}},[6191]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to be inflicted with Bleeding when Hit by an Attack"}}},stats={[1]="receive_bleeding_chance_%_when_hit_by_attack"}},[6192]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gain a Flask Charge when you deal a Critical Strike while affected by Precision"}}},stats={[1]="recharge_flasks_on_crit_while_affected_by_precision"}},[6193]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Recover 10%% of Mana when you use a Skill while affected by Clarity"}}},stats={[1]="recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity"}},[6194]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1% Life when you Ignite an Enemy"}}},stats={[1]="recover_X_life_on_enemy_ignited"}},[6195]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Mana gained on Killing a Frozen Enemy"}}},stats={[1]="recover_X_mana_on_killing_frozen_enemy"}},[6196]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life when you gain Adrenaline"}}},stats={[1]="recover_%_life_when_gaining_adrenaline"}},[6197]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]=1,[2]="#"}},text="Recover %1%%% of Mana when you Freeze an Enemy"}}},stats={[1]="recover_%_maximum_mana_when_enemy_frozen_permyriad"}},[6198]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Recover %1%%% of Life per Poison affecting Enemies you Kill"}}},stats={[1]="recover_permyriad_maximum_life_per_poison_on_enemy_on_kill"}},[6199]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% Cold Resistance while affected by Hatred"}}},stats={[1]="reduce_enemy_cold_resistance_%_while_affected_by_hatred"}},[6200]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% Fire Resistance against Blinded Enemies"}}},stats={[1]="reduce_enemy_fire_resistance_%_vs_blinded_enemies"}},[6201]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% Fire Resistance while affected by Anger "}}},stats={[1]="reduce_enemy_fire_resistance_%_while_affected_by_anger"}},[6202]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Damage Penetrates %1%%% Lightning Resistance while affected by Wrath"}}},stats={[1]="reduce_enemy_lightning_resistance_%_while_affected_by_wrath"}},[6203]={lang={English={[1]={limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Reflect Enemy Chills and Freezes"},[2]={limit={[1]={[1]=100,[2]="#"}},text="Chill and Freeze Reflection"}}},stats={[1]="reflect_chill_and_freeze_%_chance"}},[6204]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and your Minions take %1%%% increased Reflected Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You and your Minions take %1%%% reduced Reflected Damage"}}},stats={[1]="reflect_damage_taken_and_minion_reflect_damage_taken_+%"}},[6205]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Shock Reflection"}}},stats={[1]="reflect_shocks"}},[6206]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Reflect Shocks applied to you to all Nearby Enemies"}}},stats={[1]="reflect_shocks_to_enemies_in_radius"}},[6207]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Reflected Physical Damage taken while affected by Determination"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Reflected Physical Damage taken while affected by Determination"}}},stats={[1]="reflected_physical_damage_taken_+%_while_affected_by_determination"}},[6208]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Energy Shield over 2 seconds when you Consume a corpse"}}},stats={[1]="regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse"}},[6209]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Regenerate %1%%% of Mana over 2 seconds when you Consume a corpse"}}},stats={[1]="regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse"}},[6210]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Remove all Ailments and Burning when you gain Adrenaline"}}},stats={[1]="remove_ailments_and_burning_on_gaining_adrenaline"}},[6211]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Elemental Ailments you inflict are removed from you"}}},stats={[1]="base_remove_elemental_ailments_from_you_when_you_inflict_them"}},[6212]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Remove Bleeding when you use a Life Flask"}}},stats={[1]="remove_bleed_on_life_flask_use"}},[6213]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Removes Bleeding when you use a Warcry"}}},stats={[1]="remove_bleeding_on_warcry"}},[6214]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Remove Chill and Freeze when you use a Flask"}}},stats={[1]="remove_chill_and_freeze_on_flask_use"}},[6215]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Remove a Curse when you use a Mana Flask"}}},stats={[1]="remove_curse_on_mana_flask_use"}},[6216]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Remove Ignite and Burning when you use a Flask"}}},stats={[1]="remove_ignite_and_burning_on_flask_use"}},[6217]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Remove %1%%% of Mana on hit"}}},stats={[1]="remove_%_of_mana_on_hit"}},[6218]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Remove an Ailment when you use a Flask if all Equipped Items are Elder Items"}}},stats={[1]="remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder"}},[6219]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Remove a random Elemental Ailment when you use a Mana Flask"}}},stats={[1]="remove_random_elemental_ailment_on_mana_flask_use"}},[6220]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Remove Shock when you use a Flask"}}},stats={[1]="remove_shock_on_flask_use"}},[6221]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Enemies affected by your Spider's Webs have %1$+d%% to All Resistances"}}},stats={[1]="resist_all_%_for_enemies_you_inflict_spiders_web_upon"}},[6222]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Recover %1%%% of Mana and Energy Shield when you Focus"}}},stats={[1]="restore_energy_shield_and_mana_when_you_focus_%"}},[6223]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Returning Projectiles Pierce all Targets"}}},stats={[1]="returning_projectiles_always_pierce"}},[6224]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1 second"}}},stats={[1]="rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown"}},[6225]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Rune Blast teleports you to the detonated Rune if you have not detonated Runes in the past 1.5 seconds"}}},stats={[1]="rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown"}},[6226]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Mine applies %1%%% increased Damage dealt to Enemies near it, up to 10%%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Mine applies %1%%% reduced Damage dealt to Enemies near it, up to 10%%"}}},stats={[1]="sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%"}},[6227]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Mine applies %1%%% increased Damage taken to Enemies near it, up to 10%%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Mine applies %1%%% reduced Damage taken to Enemies near it, up to 10%%"}}},stats={[1]="sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%"}},[6228]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Sacrifice %1%%% of your Life when you Use or Trigger a Spell Skill"}}},stats={[1]="sacrifice_%_life_on_spell_skill"}},[6229]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Sacrifice %1%%% of Life to gain that much Energy Shield when you Cast a Spell"}}},stats={[1]="sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast"}},[6230]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purifying Flame has %1%%% increased Area of Effect if targeting Consecrated Ground"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purifying Flame has %1%%% reduced Area of Effect if targeting Consecrated Ground"}}},stats={[1]="sanctify_area_of_effect_+%_when_targeting_consecrated_ground"}},[6231]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Consecrated Ground from Purifying Flame applies %1%%% increased Damage taken to Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Consecrated Ground from Purifying Flame applies %1%%% reduced Damage taken to Enemies"}}},stats={[1]="sanctify_consecrated_ground_enemy_damage_taken_+%"}},[6232]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Purifying Flame deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Purifying Flame deals %1%%% reduced Damage"}}},stats={[1]="sanctify_damage_+%"}},[6233]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Scourge Arrow deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Scourge Arrow deals %1%%% reduced Damage"}}},stats={[1]="scourge_arrow_damage_+%"}},[6234]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Extra Damage taken from Critical Strikes while Ignited"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Extra Damage taken from Critical Strikes while Ignited"}}},stats={[1]="self_critical_strike_multiplier_+%_while_ignited"}},[6235]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Curses on you per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Curses on you per 10 Devotion"}}},stats={[1]="self_curse_duration_+%_per_10_devotion"}},[6236]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Elemental Ailment Duration on you per 10 Devotion"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% increased Elemental Ailment Duration on you per 10 Devotion"}}},stats={[1]="self_elemental_status_duration_-%_per_10_devotion"}},[6237]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Take %1% Physical Damage when you use a Movement Skill"}}},stats={[1]="self_physical_damage_on_movement_skill_use"}},[6238]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="Take no Extra Damage from Critical Strikes if you have taken a Critical Strike Recently"}}},stats={[1]="self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently"}},[6239]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You take no Extra Damage from Critical Strikes while there is only one nearby Enemy"}}},stats={[1]="self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy"}},[6240]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="While there is at most one Rare or Unique Enemy nearby, you take no Extra Damage from Critical Strikes"}}},stats={[1]="self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby"}},[6241]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You take no Extra Damage from Critical Strikes while Elusive"}}},stats={[1]="self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive"}},[6242]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Sentinels of Purity deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Sentinels of Purity deal %1%%% reduced Damage"}}},stats={[1]="sentinel_of_purity_damage_+%"}},[6243]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Maximum %1% summoned Burrowing Viper"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Maximum %1% summoned Burrowing Vipers"}}},stats={[1]="serpent_strike_maximum_snakes"}},[6244]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Bleeding Enemies you Kill with Hits Shatter"}}},stats={[1]="shatter_on_kill_vs_bleeding_enemies"}},[6245]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Poisoned Enemies you Kill with Hits Shatter"}}},stats={[1]="shatter_on_kill_vs_poisoned_enemies"}},[6246]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shattering Steel deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shattering Steel deals %1%%% reduced Damage"}}},stats={[1]="shattering_steel_damage_+%"}},[6247]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFortify"},limit={[1]={[1]="#",[2]="#"}},text="Shattering Steel grants Fortify on Hitting an Enemy at Close Range"}}},stats={[1]="shattering_steel_fortify_on_hit_close_range"}},[6248]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Shattering Steel fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Shattering Steel fires %1% additional Projectiles"}}},stats={[1]="shattering_steel_number_of_additional_projectiles"}},[6249]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Defences from Equipped Shield per 10 Devotion"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextDefences"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Defences from Equipped Shield per 10 Devotion"}}},stats={[1]="shield_defences_+%_per_10_devotion"}},[6250]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextShockNonHitNoDuration"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Shock Attackers for 4 seconds on Block"}}},stats={[1]="shock_attackers_for_4_seconds_on_block_%_chance"}},[6251]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Shock"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Shock"}}},stats={[1]="shock_effect_+%"}},[6252]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Shock you inflict with Critical Strikes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Shock you inflict with Critical Strikes"}}},stats={[1]="shock_effect_+%_with_critical_strikes"}},[6253]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Shocks can increase Damage taken by up to a maximum of 60%%"}}},stats={[1]="shock_maximum_magnitude_is_60%"}},[6254]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shocks from your Hits always increase Damage taken by at least %1%%%"}}},stats={[1]="shock_minimum_damage_taken_increase_%"}},[6255]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextShockNonHitNoDuration"},limit={[1]={[1]=1,[2]="#"}},text="Shock nearby Enemies for %1% Seconds when you Focus"}}},stats={[1]="shock_nearby_enemies_for_x_ms_when_you_focus"}},[6256]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Shock on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]=-99,[2]=-1}},text="%1%%% reduced Effect of Shock on you"}}},stats={[1]="shocked_effect_on_self_+%"}},[6257]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shocked Enemies you Kill Explode, dealing %1%%% of\ntheir Life as Lightning Damage which cannot Shock"}}},stats={[1]="shocked_enemies_explode_for_%_life_as_lightning_damage"}},[6258]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shocked Ground you create causes %1%%% increased Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shocked Ground you create causes %1%%% reduced Damage taken"}}},stats={[1]="shocked_ground_base_magnitude_override"}},[6259]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Shrapnel Ballista fires an additional Arrow"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Shrapnel Ballista fires %1% additional Arrows"}}},stats={[1]="shrapnel_ballista_num_additional_arrows"}},[6260]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Shrapnel Ballista Pierces an additional Target"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Shrapnel Ballista Pierces %1% additional Targets"}}},stats={[1]="shrapnel_ballista_num_pierce"}},[6261]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shrapnel Ballista has %1%%% increased Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shrapnel Ballista has %1%%% reduced Projectile Speed"}}},stats={[1]="shrapnel_ballista_projectile_speed_+%"}},[6262]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Galvanic Arrow deals %1%%% increased Area Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Galvanic Arrow deals %1%%% reduced Area Damage"}}},stats={[1]="galvanic_arrow_area_damage_+%"}},[6263]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Explosive Trap has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Explosive Trap has %1%%% reduced Area of Effect"}}},stats={[1]="shrapnel_trap_area_of_effect_+%"}},[6264]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Explosive Trap deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Explosive Trap deals %1%%% reduced Damage"}}},stats={[1]="shrapnel_trap_damage_+%"}},[6265]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Explosive Trap causes an additional smaller explosion"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Explosive Trap causes %1% additional smaller explosions"}}},stats={[1]="shrapnel_trap_number_of_additional_secondary_explosions"}},[6266]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Brand Skills deal %1%%% increased Damage to Enemies they're Attached to"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Brand Skills deal %1%%% reduced Damage to Enemies they're Attached to"}}},stats={[1]="sigil_attached_target_damage_+%"}},[6267]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies take %1%%% increased Damage for each of your Brands Attached to them"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies take %1%%% reduced Damage for each of your Brands Attached to them"}}},stats={[1]="sigil_attached_target_damage_taken_+%"}},[6268]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance with Brand Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance with Brand Skills"}}},stats={[1]="sigil_critical_strike_chance_+%"}},[6269]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier with Brand Skills"}}},stats={[1]="sigil_critical_strike_multiplier_+"}},[6270]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Brand Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Brand Skills"}}},stats={[1]="sigil_damage_+%"}},[6271]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Brand Skills per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Brand Skills per 10 Devotion"}}},stats={[1]="sigil_damage_+%_per_10_devotion"}},[6272]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Brand Skills have %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Brand Skills have %1%%% reduced Duration"}}},stats={[1]="sigil_duration_+%"}},[6273]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Brand Recall has %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Brand Recall has %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="sigil_recall_cooldown_speed_+%"}},[6274]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Brand Activation frequency"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Brand Activation frequency"}}},stats={[1]="sigil_repeat_frequency_+%"}},[6275]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Brand Activation Frequency if you haven't used a Brand Skill Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Brand Activation Frequency if you haven't used a Brand Skill Recently"}}},stats={[1]="sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently"}},[6276]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Brand Attachment range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Brand Attachment range"}}},stats={[1]="sigil_target_search_range_+%"}},[6277]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dark Pact Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dark Pact Area of Effect"}}},stats={[1]="skeletal_chains_area_of_effect_+%"}},[6278]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Dark Pact Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Dark Pact Cast Speed"}}},stats={[1]="skeletal_chains_cast_speed_+%"}},[6279]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skeleton Attack Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skeleton Attack Speed"}}},stats={[1]="skeleton_attack_speed_+%"}},[6280]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skeleton Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skeleton Cast Speed"}}},stats={[1]="skeleton_cast_speed_+%"}},[6281]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skeleton Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skeleton Movement Speed"}}},stats={[1]="skeleton_movement_speed_+%"}},[6282]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Maximum 1 Summoned Mirage Archer"}}},stats={[1]="skill_can_own_mirage_archers"}},[6283]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Skill Effect Duration while affected by Malevolence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Skill Effect Duration while affected by Malevolence"}}},stats={[1]="skill_effect_duration_+%_while_affected_by_malevolence"}},[6284]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Bow Skills have %1%%% increased Skill Effect Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Bow Skills have %1%%% reduced Skill Effect Duration"}}},stats={[1]="skill_effect_duration_+%_with_bow_skills"}},[6285]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Non-Curse Aura Skills have %1%%% increased Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Non-Curse Aura Skills have %1%%% reduced Duration"}}},stats={[1]="skill_effect_duration_+%_with_non_curse_aura_skills"}},[6286]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Total Mana Cost of Skills while affected by Clarity"}}},stats={[1]="skill_mana_cost_+_while_affected_by_clarity"}},[6287]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Channelling Skills have %1$+d to Total Mana Cost"}}},stats={[1]="skill_mana_cost_+_with_channelling_skills"}},[6288]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Non-Channelling Skills have %1$+d to Total Mana Cost while affected by Clarity"}}},stats={[1]="skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity"}},[6289]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Non-Channelling Skills have %1$+d to Total Mana Cost"}}},stats={[1]="skill_mana_cost_+_with_non_channelling_skills"}},[6290]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Skills Cost no Mana while Focussed"}}},stats={[1]="skills_cost_no_mana_while_focused"}},[6291]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect per Enemy killed recently, up to 50%%"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect per Enemy killed recently"}}},stats={[1]="slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%"}},[6292]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% to Critical Strike Multiplier per Nearby Enemy, up to +100%%"}}},stats={[1]="slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100"}},[6293]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage against Unique Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage against Unique Enemies"}}},stats={[1]="slayer_damage_+%_final_against_unique_enemies"}},[6294]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Deal up to %1%%% more Melee Damage to Enemies, based on proximity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Deal up to %1%%% less Melee Damage to Enemies, based on proximity"}}},stats={[1]="slayer_damage_+%_final_from_distance"}},[6295]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]=1,[2]="#"}},text="Withering Step has %1%%% increased Elusive Effect"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextElusive"},limit={[1]={[1]="#",[2]=-1}},text="Withering Step has %1%%% reduced Elusive Effect"}}},stats={[1]="slither_elusive_effect_+%"}},[6296]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=1,[2]="#"}},text="Withering Step inflicts %1% additional Withered Debuffs"}}},stats={[1]="slither_wither_stacks"}},[6297]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Smite has %1%%% increased Aura Effect"}}},stats={[1]="smite_aura_effect_+%"}},[6298]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Smite has a %1%%% chance for lightning to strike another target"}}},stats={[1]="smite_chance_for_lighting_to_strike_extra_target_%"}},[6299]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Smite deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Smite deals %1%%% reduced Damage"}}},stats={[1]="smite_damage_+%"}},[6300]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Venom Gyre deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Venom Gyre deals %1%%% reduced Damage"}}},stats={[1]="snapping_adder_damage_+%"}},[6301]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Venom Gyre has a %1%%% chance to keep caught Projectiles fired by using Whirling Blades"}}},stats={[1]="snapping_adder_%_chance_to_retain_projectile_on_release"}},[6302]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=1,[2]=99}},text="Venom Gyre has a %1%%% chance to inflict Withered for 2 seconds on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=100,[2]="#"}},text="Venom Gyre inflicts Withered for 2 seconds on Hit"}}},stats={[1]="snapping_adder_withered_on_hit_for_2_seconds_%_chance"}},[6303]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Soulrend also Hinders Enemies, with %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Soulrend also Hinders Enemies, with %1%%% reduced Movement Speed"}}},stats={[1]="soulrend_applies_hinder_movement_speed_+%"}},[6304]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Soulrend deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Soulrend deals %1%%% reduced Damage"}}},stats={[1]="soulrend_damage_+%"}},[6305]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Soulrend fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Soulrend fires %1% additional Projectiles"}}},stats={[1]="soulrend_number_of_additional_projectiles"}},[6306]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spark fires an additional Projectile"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Spark fires %1% additional Projectiles"}}},stats={[1]="spark_number_of_additional_projectiles"}},[6307]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spark fires Projectiles in a circle"}}},stats={[1]="spark_projectiles_nova"}},[6308]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spark Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spark Duration"}}},stats={[1]="spark_skill_effect_duration_+%"}},[6309]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spectral Shield Throw's Shield Projectile Chains an additional time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spectral Shield Throw's Shield Projectile Chains %1% additional times"}}},stats={[1]="spectral_shield_throw_additional_chains"}},[6310]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spectral Shield Throw Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spectral Shield Throw Damage"}}},stats={[1]="spectral_shield_throw_damage_+%"}},[6311]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spectral Shield Throw fires Shard Projectiles when Chaining"}}},stats={[1]="spectral_shield_throw_fire_shards_on_chain"}},[6312]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Spectral Shield Throw fires an additional Shard Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Spectral Shield Throw fires %1% additional Shard Projectiles"}}},stats={[1]="spectral_shield_throw_num_of_additional_projectiles"}},[6313]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spectral Shield Throw Projectile Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spectral Shield Throw Projectile Speed"}}},stats={[1]="spectral_shield_throw_projectile_speed_+%"}},[6314]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Shard Projectiles Pierce all Targets"}}},stats={[1]="spectral_shield_throw_secondary_projectiles_pierce"}},[6315]={lang={English={[1]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spectral Shield Throw fires %1%%% less Shard Projectiles"},[2]={limit={[1]={[1]=1,[2]="#"}},text="Spectral Shield Throw fires %1%%% more Shard Projectiles"}}},stats={[1]="spectral_shield_throw_shard_projectiles_+%_final"}},[6316]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spectral Throw has %1%%% chance on Hit to give a Vaal soul to Vaal Spectral Throw"}}},stats={[1]="spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%"}},[6317]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Spectre maximum Life"}}},stats={[1]="spectre_maximum_life_+"}},[6318]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Raised Spectres, Raised Zombies, and Summoned Skeletons have +%1%%% to Critical Strike Multiplier"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Raised Spectres, Raised Zombies, and Summoned Skeletons have -%1%%% to Critical Strike Multiplier"}}},stats={[1]="spectre_zombie_skeleton_critical_strike_multiplier_+"}},[6319]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spectres have %1%%% increased Critical Strike Chance"}}},stats={[1]="spectres_critical_strike_chance_+%"}},[6320]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextArcaneSurge"},limit={[1]={[1]="#",[2]="#"}},text="Your Raised Spectres also gain Arcane Surge when you do"}}},stats={[1]="spectres_gain_arcane_surge_when_you_do"}},[6321]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextSoulEater"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance for Spectres to gain Soul Eater on Kill for 20 seconds"}}},stats={[1]="spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance"}},[6322]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Spectres have a Base Duration of %1% seconds\nSpectres do not travel between Areas"}}},stats={[1]="spectres_have_base_duration_ms"}},[6323]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="Spells have %1$+d%% to Critical Strike Chance "}}},stats={[1]="spell_additional_critical_strike_chance_permyriad"}},[6324]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Attack and Spell Hits while moving"}}},stats={[1]="spell_and_attack_dodge_%_while_moving"}},[6325]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Adds %1% to %2% Chaos Damage to Spells and Attacks during any Flask Effect"}}},stats={[1]="spell_and_attack_minimum_added_chaos_damage_during_flask_effect",[2]="spell_and_attack_maximum_added_chaos_damage_during_flask_effect"}},[6326]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spell Skills have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spell Skills have %1%%% reduced Area of Effect"}}},stats={[1]="spell_area_of_effect_+%"}},[6327]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage if you have Blocked Spell Damage Recently"}}},stats={[1]="spell_block_%_if_blocked_a_spell_recently"}},[6328]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% chance to Block Spell Damage if you have Blocked Attack Damage Recently"}}},stats={[1]="spell_block_%_if_blocked_an_attack_recently"}},[6329]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d%% Chance to Block Spell Damage while at Maximum Power Charges"}}},stats={[1]="spell_block_%_while_at_max_power_charges"}},[6330]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Spells have a %1%%% chance to deal Double Damage"},[2]={limit={[1]={[1]=100,[2]=100}},text="Spells Deal Double Damage"}}},stats={[1]="spell_chance_to_deal_double_damage_%"}},[6331]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Spells per 100 Player Maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Spells per 100 Player Maximum Life"}}},stats={[1]="spell_critical_strike_chance_+%_per_100_max_life"}},[6332]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance for Spells per Raised Spectre"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance for Spells per Raised Spectre"}}},stats={[1]="spell_critical_strike_chance_+%_per_raised_spectre"}},[6333]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage if you've dealt a Critical Strike Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage if you've dealt a Critical Strike Recently"}}},stats={[1]="spell_damage_+%_if_have_crit_recently"}},[6334]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per 500 Maximum Mana"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% redcued Spell Damage per 500 Maximum Mana"}}},stats={[1]="spell_damage_+%_per_500_maximum_mana"}},[6335]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage during any Flask Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage during any Flask Effect"}}},stats={[1]="spell_damage_+%_during_flask_effect"}},[6336]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage if you've dealt a Critical Strike in the past 8 seconds"}}},stats={[1]="spell_damage_+%_if_have_crit_in_past_8_seconds"}},[6337]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage if you've Blocked Recently"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage if you've Blocked Recently"}}},stats={[1]="spell_damage_+%_if_you_have_blocked_recently"}},[6338]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per 100 Player Maximum Life"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage per 100 Player Maximum Life"}}},stats={[1]="spell_damage_+%_per_100_max_life"}},[6339]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per 100 Maximum Mana, up to 40%%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage per 100 Maximum Mana"}}},stats={[1]="spell_damage_+%_per_100_maximum_mana_up_to_60%"}},[6340]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per 10 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage per 10 Strength"}}},stats={[1]="spell_damage_+%_per_10_strength"}},[6341]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per 16 Dexterity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage per 16 Dexterity"}}},stats={[1]="spell_damage_+%_per_16_dex"}},[6342]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per 16 Intelligence"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage per 16 Intelligence"}}},stats={[1]="spell_damage_+%_per_16_int"}},[6343]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage per 16 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage per 16 Strength"}}},stats={[1]="spell_damage_+%_per_16_strength"}},[6344]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while Shocked"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while Shocked"}}},stats={[1]="spell_damage_+%_while_shocked"}},[6345]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Spell Damage while you have Arcane Surge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Spell Damage while you have Arcane Surge"}}},stats={[1]="spell_damage_+%_while_you_have_arcane_surge"}},[6346]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Dodge Spell Hits if you have Energy Shield"}}},stats={[1]="spell_dodge_while_you_have_energy_shield_+%"}},[6347]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Dodge Spell Hits while Channelling"}}},stats={[1]="spell_dodge_%_while_channelling"}},[6348]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spells have %1%%% of Physical Damage Converted to Fire Damage"}}},stats={[1]="spell_physical_damage_%_to_convert_to_fire"}},[6349]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Spell Skills deal no Damage"}}},stats={[1]="spell_skills_deal_no_damage"}},[6350]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to Hinder Enemies on Hit with Spells, with 30%% reduced Movement Speed"},[2]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]=100,[2]="#"}},text="Hinder Enemies on Hit with Spells, with 30%% reduced Movement Speed"}}},stats={[1]="spells_chance_to_hinder_on_hit_%"}},[6351]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Knock Enemies Back on Hit with Spell Damage"}}},stats={[1]="spells_chance_to_knockback_on_hit_%"}},[6352]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Poison on Hit with Spell Damage"}}},stats={[1]="spells_chance_to_poison_on_hit_%"}},[6353]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skills Supported by Spellslinger have %1%%% increased Cooldown Recovery Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Skills Supported by Spellslinger have %1%%% reduced Cooldown Recovery Speed"}}},stats={[1]="spellslinger_cooldown_duration_+%"}},[6354]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skills Supported by Spellslinger have %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Skills Supported by Spellslinger have %1%%% reduced Mana Reservation"}}},stats={[1]="spellslinger_mana_reservation_+%"}},[6355]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Aspect of the Spider Debuff Duration"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Aspect of the Spider Debuff Duration"}}},stats={[1]="spider_aspect_debuff_duration_+%"}},[6356]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Aspect of the Spider Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Aspect of the Spider Area of Effect"}}},stats={[1]="spider_aspect_skill_area_of_effect_+%"}},[6357]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="Aspect of the Spider inflicts Spider's Webs and Hinder every %1% Seconds instead"}}},stats={[1]="spider_aspect_web_interval_ms_override"}},[6358]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Split Arrow fires Projectiles in Parallel"}}},stats={[1]="split_arrow_projectiles_fire_in_parallel_x_dist"}},[6359]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Freezes you inflict spread to other Enemies within a Radius of 12"}}},stats={[1]="spread_freeze_to_nearby_enemies"}},[6360]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Ignites you inflict spread to other Enemies within a Radius of 15"}}},stats={[1]="spread_ignite_to_nearby_enemies"}},[6361]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Static Strike has %1$+d maximum Beam Targets"}}},stats={[1]="static_strike_additional_number_of_beam_targets"}},[6362]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Ailments you inflict while Focussed"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Ailments you inflict while Focussed"}}},stats={[1]="status_ailments_you_inflict_duration_+%_while_focused"}},[6363]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Duration of Ailments inflicted while wielding a Bow"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextStatusAilments"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Duration of Ailments inflicted while wielding a Bow"}}},stats={[1]="status_ailments_you_inflict_duration_+%_with_bows"}},[6364]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Steelskin Buff can take %1%%% increased amount of Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Steelskin Buff can take %1%%% reduced amount of Damage"}}},stats={[1]="steelskin_damage_limit_+%"}},[6365]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Storm Brand has a %1%%% chance to Chain an additional time"}}},stats={[1]="storm_brand_additional_chain_chance_%"}},[6366]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Storm Brand Damage Penetrates %1%%% of Branded Enemy's Lightning Resistance"}}},stats={[1]="storm_brand_attached_target_lightning_penetration_%"}},[6367]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Storm Brand deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Storm Brand deals %1%%% reduced Damage"}}},stats={[1]="storm_brand_damage_+%"}},[6368]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Storm Burst has a 15%% chance to create an additional Orb"}}},stats={[1]="storm_burst_15_%_chance_to_create_additional_orb"}},[6369]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Storm Burst has a %1%%% chance to create an additional Orb"}}},stats={[1]="storm_burst_additional_object_chance_%"}},[6370]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Storm Burst Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Storm Burst Area of Effect"}}},stats={[1]="storm_burst_area_of_effect_+%"}},[6371]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Avoid interruption from Stuns while Casting Storm Burst"}}},stats={[1]="storm_burst_avoid_interruption_while_casting_%"}},[6372]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Storm Burst fires an additional Projectile"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Storm Burst fires %1% additional Projectiles"}}},stats={[1]="storm_burst_number_of_additional_projectiles"}},[6373]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Stormbind has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Stormbind has %1%%% reduced Area of Effect"}}},stats={[1]="stormbind_skill_area_of_effect_+%"}},[6374]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Stormbind deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Stormbind deals %1%%% reduced Damage"}}},stats={[1]="stormbind_skill_damage_+%"}},[6375]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Strength's Damage Bonus instead grants 3%% increased Melee\nPhysical Damage per 10 Strength"}}},stats={[1]="strength_damage_bonus_grants_melee_physical_damage_+3%_per_10_strength_instead"}},[6376]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of all Strength Skill Gems"}}},stats={[1]="strength_skill_gem_level_+"}},[6377]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration per 15 Strength"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration per 15 Strength"}}},stats={[1]="stun_duration_+%_per_15_strength"}},[6378]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Stun Duration on Enemies per Endurance Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Stun Duration on Enemies per Endurance Charge"}}},stats={[1]="stun_duration_+%_per_endurance_charge"}},[6379]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextStunThreshold"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% reduced Enemy Stun Threshold while you have at least 500 Strength"}}},stats={[1]="stun_threshold_reduction_+%_with_500_or_more_strength"}},[6380]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Skills that would Summon a Totem Summon two Totems instead"}}},stats={[1]="summon_2_totems"}},[6381]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="20%% chance to Summon an additional Skeleton Warrior with Summon Skeleton"},[2]={limit={[1]={[1]=2,[2]=2}},text="40%% chance to Summon an additional Skeleton Warrior with Summon Skeleton"},[3]={limit={[1]={[1]=3,[2]=3}},text="60%% chance to Summon an additional Skeleton Warrior with Summon Skeleton"},[4]={limit={[1]={[1]=4,[2]=4}},text="80%% chance to Summon an additional Skeleton Warrior with Summon Skeleton"},[5]={limit={[1]={[1]=5,[2]="#"}},text="Summon an additional Skeleton Warrior with Summon Skeleton"}}},stats={[1]="summon_skeletons_additional_warrior_skeleton_one_twentieth_chance"}},[6382]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to Summon an additional Skeleton Warrior with Summon Skeleton"}}},stats={[1]="summon_skeletons_additional_warrior_skeleton_%_chance"}},[6383]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1000,[2]=1000}},text="%1$+d second to Summon Skeleton Cooldown"},[2]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1$+d seconds to Summon Skeleton Cooldown"}}},stats={[1]="summon_skeletons_cooldown_modifier_ms"}},[6384]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Skitterbots have %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summoned Skitterbots have %1%%% reduced Area of Effect"}}},stats={[1]="summon_skitterbots_area_of_effect_+%"}},[6385]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summon Skitterbots has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Summon Skitterbots has %1%%% reduced Mana Reservation"}}},stats={[1]="summon_skitterbots_mana_reservation_+%"}},[6386]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPhantasmalMight"},limit={[1]={[1]="#",[2]="#"}},text="Each Summoned Phantasm grants you Phantasmal Might"}}},stats={[1]="summoned_phantasms_grant_buff"}},[6387]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Phantasms have no Duration"}}},stats={[1]="summoned_phantasms_have_no_duration"}},[6388]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Skeletons have %1%%% chance to Wither Enemies for 2 seconds on Hit"}}},stats={[1]="summoned_skeleton_%_chance_to_wither_for_2_seconds"}},[6389]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Summoned Skeletons have %1%%% of Physical Damage Converted to Chaos Damage"}}},stats={[1]="summoned_skeleton_%_physical_to_chaos"}},[6390]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextCoveredInAsh"},limit={[1]={[1]="#",[2]=99}},text="Summoned Skeletons have a %1%%% chance to Cover Enemies in Ash on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextCoveredInAsh"},limit={[1]={[1]=100,[2]=100}},text="Summoned Skeletons Cover Enemies in Ash on Hit"}}},stats={[1]="summoned_skeletons_cover_in_ash_on_hit_%"}},[6391]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Summoned Skeletons take %1%%% of their Maximum Life per second as Fire Damage"}}},stats={[1]="summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute"}},[6392]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Summoned Skeletons' hits can't be Evaded"}}},stats={[1]="summoned_skeletons_hits_cant_be_evaded"}},[6393]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMultipleMines"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to throw up to 1 additional Trap or Mine"}}},stats={[1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine"}},[6394]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Skills Supported by Unleash have %1%%% increased Seal gain frequency"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Skills Supported by Unleash have %1%%% reduced Seal gain frequency"}}},stats={[1]="support_anticipation_charge_gain_frequency_+%"}},[6395]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies Maimed by you take %1%%% increased Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Enemies Maimed by you take %1%%% reduced Physical Damage"}}},stats={[1]="support_maimed_enemies_physical_damage_taken_+%"}},[6396]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="%1% to %2% added Fire Damage against Burning Enemies"}}},stats={[1]="global_minimum_added_fire_damage_vs_burning_enemies",[2]="global_maximum_added_fire_damage_vs_burning_enemies"}},[6397]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},limit={[1]={[1]=1,[2]="#"}},text="Mirage Archer lasts %1% seconds"}}},stats={[1]="support_mirage_archer_base_duration"}},[6398]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Deal up to %1%%% more Melee Damage to Enemies, based on proximity"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Deal up to %1%%% less Melee Damage to Enemies, based on proximity"}}},stats={[1]="support_slashing_damage_+%_final_from_distance"}},[6399]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Supported Aura Skill Gems"}}},stats={[1]="supported_aura_skill_gem_level_+"}},[6400]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Supported Cold Skill Gems"}}},stats={[1]="supported_cold_skill_gem_level_+"}},[6401]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Supported Curse Skill Gems"}}},stats={[1]="supported_curse_skill_gem_level_+"}},[6402]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Supported Elemental Skill Gems"}}},stats={[1]="supported_elemental_skill_gem_level_+"}},[6403]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Supported Fire Skill Gems"}}},stats={[1]="supported_fire_skill_gem_level_+"}},[6404]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d to Level of Supported Lightning Skill Gems"}}},stats={[1]="supported_lightning_skill_gem_level_+"}},[6405]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Doubles the values of Global Mods affecting Memories placed next to this Location"}}},stats={[1]="synthesis_map_adjacent_nodes_global_mod_values_doubled"}},[6406]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Doubles the values of Memory Modifiers affecting Memories placed on this location"}}},stats={[1]="synthesis_map_global_mod_values_doubled_on_this_node"}},[6407]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triples the values of Global Mods affecting Memories placed on this location"}}},stats={[1]="synthesis_map_global_mod_values_tripled_on_this_node"}},[6408]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Memories at this location do not collapse"}}},stats={[1]="synthesis_map_memories_do_not_collapse_on_this_node"}},[6409]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Experience from Monsters Slain in Memories placed on this Location"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Experience from Monsters Slain in Memories placed on this Location"}}},stats={[1]="synthesis_map_monster_slain_experience_+%_on_this_node"}},[6410]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Allow for memories at or adjacent to this location have BONUS"}}},stats={[1]="synthesis_map_nearby_memories_have_bonus"}},[6411]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Memories placed on this location can be run an additional time before Decaying"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Memories placed on this location can be run %1% additional times before Decaying"}}},stats={[1]="synthesis_map_node_additional_uses_+"}},[6412]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Triples the values of Global Mods affecting Memories placed on this location, if all adjacent locations have Memories"}}},stats={[1]="synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories"}},[6413]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Applies a Memory Modifier to Memories placed on or next to this location"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Applies %1% Memory Modifiers to Memories placed on or next to this location"}}},stats={[1]="synthesis_map_node_grants_additional_global_mod"}},[6414]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Memories placed on this location are unaffected by Global Mods"}}},stats={[1]="synthesis_map_node_grants_no_global_mod"}},[6415]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Guest Monsters within Memories placed on this location are replaced by Synthesised Monsters"}}},stats={[1]="synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters"}},[6416]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Doubles bonuses to Quantity of Items Found in Memories placed on this location"}}},stats={[1]="synthesis_map_node_item_quantity_increases_doubled"}},[6417]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Doubles bonuses to Rarity of Items Found in Memories placed on this location"}}},stats={[1]="synthesis_map_node_item_rarity_increases_doubled"}},[6418]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Memories placed on this location are %1% Level Higher"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Memories placed on this location are %1% Levels Higher"}}},stats={[1]="synthesis_map_node_level_+"}},[6419]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Monsters Slain within Memories placed on this location drop no Items"}}},stats={[1]="synthesis_map_node_monsters_drop_no_items"}},[6420]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Doubles bonuses to Monster Pack Size in Memories placed on this location"}}},stats={[1]="synthesis_map_node_pack_size_increases_doubled"}},[6421]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Tailwind on you"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Tailwind on you"}}},stats={[1]="tailwind_effect_on_self_+%"}},[6422]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Tailwind on you for each Skill you've used Recently, up to 100%%"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Tailwind on you for each Skill you've used Recently"}}},stats={[1]="tailwind_effect_on_self_+%_for_each_skill_used_recently"}},[6423]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTailwind"},limit={[1]={[1]="#",[2]="#"}},text="You have Tailwind if you have dealt a Critical Strike Recently"}}},stats={[1]="tailwind_if_have_crit_recently"}},[6424]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% chance to take 50%% less Area Damage from Hits"}}},stats={[1]="take_half_area_damage_from_hit_%_chance"}},[6425]={lang={English={[1]={[1]={k="divide_by_ten_0dp",v=1},limit={[1]={[1]=20,[2]=35}},text="Projectiles Pierce %1% additional Targets"},[2]={[1]={k="divide_by_twenty_then_double_0dp",v=1},limit={[1]={[1]=50,[2]=75}},text="Projectiles Pierce %1% additional Targets"}}},stats={[1]="talisman_implicit_projectiles_pierce_1_additional_target_per_10"}},[6426]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextTaunt"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to Taunt Enemies on Projectile Hit"}}},stats={[1]="taunt_on_projectile_hit_chance_%"}},[6427]={lang={English={[1]={[1]={k="divide_by_two_0dp",v=1},limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to create a Charged Slam"}}},stats={[1]="tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value"}},[6428]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Tectonic Slam Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Tectonic Slam Area of Effect"}}},stats={[1]="tectonic_slam_area_of_effect_+%"}},[6429]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to consume an Endurance Charge to create a larger Slam"}}},stats={[1]="tectonic_slam_chance_to_use_endurance_charge_%"}},[6430]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Tectonic Slam Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Tectonic Slam Damage"}}},stats={[1]="tectonic_slam_damage_+%"}},[6431]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Tectonic Slam has %1%%% chance to create a Charged Slam"}}},stats={[1]="tectonic_slam_%_chance_to_do_charged_slam"}},[6432]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextMalachaisEndurance"},[2]={k="reminderstring",v="ReminderTextMalachaisFrenzy"},[3]={k="reminderstring",v="ReminderTextMalachaisPower"},limit={[1]={[1]="#",[2]="#"}},text="Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence"}}},stats={[1]="thaumaturgy_rotation_active"}},[6433]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shard Projectiles Deal %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shard Projectiles Deal %1%%% less Damage"}}},stats={[1]="thrown_shield_secondary_projectile_damage_+%_final"}},[6434]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Totems' Action Speed cannot be modified to below base value"}}},stats={[1]="totems_action_speed_cannot_be_modified_below_base"}},[6435]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},[2]={k="reminderstring",v="ReminderTextManaLeech"},limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Attack Damage dealt by your Totems is Leeched to you as Mana"}}},stats={[1]="totem_attack_damage_leeched_as_mana_to_you_permyriad"}},[6436]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Totems are Immune to Chaos Damage"}}},stats={[1]="totem_chaos_immunity"}},[6437]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Totems gain +%1%%% to Chaos Resistance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Totems lose -%1%%% to Chaos Resistance"}}},stats={[1]="totem_chaos_resistance_%"}},[6438]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Damage if you haven't Summoned a Totem in the past 2 seconds"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Damage if you haven't Summoned a Totem in the past 2 seconds"}}},stats={[1]="totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds"}},[6439]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Damage per 10 Devotion"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Damage per 10 Devotion"}}},stats={[1]="totem_damage_+%_per_10_devotion"}},[6440]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextHinder"},limit={[1]={[1]="#",[2]="#"}},text="Totems Hinder Enemies near them when Summoned, with 25%% reduced Movement Speed"}}},stats={[1]="totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed"}},[6441]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Totems have %1$+d to Maximum Energy Shield"}}},stats={[1]="totem_maximum_energy_shield"}},[6442]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Totem Placement range"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Totem Placement range"}}},stats={[1]="totem_placement_range_+%"}},[6443]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Spells cast by Totems deal %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Spells cast by Totems deal %1%%% reduced Damage"}}},stats={[1]="totem_spells_damage_+%"}},[6444]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Totem applies %1%%% increased Damage taken to Enemies near it"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Each Totem applies %1%%% reduced Damage taken to Enemies near it"}}},stats={[1]="totems_nearby_enemies_damage_taken_+%"}},[6445]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Toxic Rain deals %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Toxic Rain deals %1%%% reduced Damage"}}},stats={[1]="toxic_rain_damage_+%"}},[6446]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Toxic Rain fires %1% additional Arrow"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Toxic Rain fires %1% additional Arrows"}}},stats={[1]="toxic_rain_num_of_additional_projectiles"}},[6447]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Toxic Rain gains %1%%% of Physical Damage as Extra Chaos Damage"}}},stats={[1]="toxic_rain_physical_damage_%_to_add_as_chaos"}},[6448]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]=1,[2]="#"}},text="Traps deal %1%%% increased Damage with Hits and Ailments if they were not Armed Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},[3]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]=-1}},text="Traps deal %1%%% reduced Damage with Hits and Ailments if they were not Armed Recently"}}},stats={[1]="trap_and_mine_damage_+%_if_armed_for_4_seconds"}},[6449]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap and Mine Throwing Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap and Mine Throwing Speed"}}},stats={[1]="trap_and_mine_throwing_speed_+%"}},[6450]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Trap Throwing Speed per Frenzy Charge"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Trap Throwing Speed per Frenzy Charge"}}},stats={[1]="trap_throwing_speed_+%_per_frenzy_charge"}},[6451]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Damage over Time"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Damage over Time"}}},stats={[1]="trickster_damage_over_time_+%_final"}},[6452]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Triggered Spells deal %1%%% increased Spell Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Triggered Spells deal %1%%% reduced Spell Damage"}}},stats={[1]="triggered_spell_spell_damage_+%"}},[6453]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area Damage while wielding a Two Handed Melee Weapon"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area Damage while wielding a Two Handed Melee Weapon"}}},stats={[1]="two_handed_melee_area_damage_+%"}},[6454]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Area of Effect while wielding a Two Handed Melee Weapon"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Area of Effect while wielding a Two Handed Melee Weapon"}}},stats={[1]="two_handed_melee_area_of_effect_+%"}},[6455]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Bleeding while affected by Malevolence"}}},stats={[1]="unaffected_by_bleeding_while_affected_by_malevolence"}},[6456]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="You are Unaffected by Bleeding while Leeching"}}},stats={[1]="unaffected_by_bleeding_while_leeching"}},[6457]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Burning Ground"}}},stats={[1]="unaffected_by_burning_ground"}},[6458]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Burning Ground while affected by Purity of Fire"}}},stats={[1]="unaffected_by_burning_ground_while_affected_by_purity_of_fire"}},[6459]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Chilled Ground"}}},stats={[1]="unaffected_by_chilled_ground"}},[6460]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Chilled Ground while affected by Purity of Ice"}}},stats={[1]="unaffected_by_chilled_ground_while_affected_by_purity_of_ice"}},[6461]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Conductivity while affected by Purity of Lightning"}}},stats={[1]="unaffected_by_conductivity_while_affected_by_purity_of_lightning"}},[6462]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Desecrated Ground"}}},stats={[1]="unaffected_by_desecrated_ground"}},[6463]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Elemental Weakness while affected by Purity of Elements"}}},stats={[1]="unaffected_by_elemental_weakness_while_affected_by_purity_of_elements"}},[6464]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Enfeeble while affected by Grace"}}},stats={[1]="unaffected_by_enfeeble_while_affected_by_grace"}},[6465]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Flammability while affected by Purity of Fire"}}},stats={[1]="unaffected_by_flammability_while_affected_by_purity_of_fire"}},[6466]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Frostbite while affected by Purity of Ice"}}},stats={[1]="unaffected_by_frostbite_while_affected_by_purity_of_ice"}},[6467]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Ignite"}}},stats={[1]="unaffected_by_ignite"}},[6468]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Poison while affected by Malevolence"}}},stats={[1]="unaffected_by_poison_while_affected_by_malevolence"}},[6469]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Shock"}}},stats={[1]="unaffected_by_shock"}},[6470]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Shocked Ground"}}},stats={[1]="unaffected_by_shocked_ground"}},[6471]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Shocked Ground while affected by Purity of Lightning"}}},stats={[1]="unaffected_by_shocked_ground_while_affected_by_purity_of_lightning"}},[6472]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Temporal Chains"}}},stats={[1]="unaffected_by_temporal_chains"}},[6473]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Temporal Chains while affected by Haste"}}},stats={[1]="unaffected_by_temporal_chains_while_affected_by_haste"}},[6474]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextUnaffectedBy"},limit={[1]={[1]="#",[2]="#"}},text="Unaffected by Vulnerability while affected by Determination"}}},stats={[1]="unaffected_by_vulnerability_while_affected_by_determination"}},[6475]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Unattached Brands gain %1%%% increased Brand Attachment Range per second"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Unattached Brands gain %1%%% reduced Brand Attachment Range per second"}}},stats={[1]="unattached_sigil_attachment_range_+%_per_second"}},[6476]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Unearth Spawns corpses with %1$+d Level"}}},stats={[1]="unearth_additional_corpse_level"}},[6477]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0}},text="While your Passive Skill Tree connects to the Marauder's starting location, you gain:\nMelee Skills have %1%%% increased Area of Effect"},[2]={[1]={k="divide_by_one_hundred",v="2reminderstring"},limit={[1]={[1]=0,[2]=0},[2]={[1]="#",[2]="#"},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0}},text="While your Passive Skill Tree connects to the Duelist's starting location, you gain:\n%2%%% of Attack Damage Leeched as Life"},[3]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]="#",[2]="#"},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0}},text="While your Passive Skill Tree connects to the Ranger's starting location, you gain:\n%3%%% increased Movement Speed"},[4]={[1]={k="divide_by_one_hundred",v=4},limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]="#",[2]="#"},[5]={[1]=0,[2]=0},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0}},text="While your Passive Skill Tree connects to the Shadow's starting location, you gain:\n%4$+d%% to Critical Strike Chance"},[5]={[1]={k="per_minute_to_per_second",v=5},limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]="#",[2]="#"},[6]={[1]=0,[2]=0},[7]={[1]=0,[2]=0}},text="While your Passive Skill Tree connects to the Witch's starting location, you gain:\n%5%%% of Mana Regenerated per second"},[6]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0},[6]={[1]="#",[2]="#"},[7]={[1]=0,[2]=0}},text="While your Passive Skill Tree connects to the Templar's starting location, you gain:\nDamage Penetrates %6%%% Elemental Resistances"},[7]={[1]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=0,[2]=0},[4]={[1]=0,[2]=0},[5]={[1]=0,[2]=0},[6]={[1]=0,[2]=0},[7]={[1]="#",[2]="#"}},text="While your Passive Skill Tree connects to the Scion's starting location, you gain:\n%7$+d to All Attributes"},[8]={[1]={k="divide_by_one_hundred",v=2},[2]={k="reminderstring",v="ReminderTextLifeLeech"},[3]={k="divide_by_one_hundred",v=4},[4]={k="per_minute_to_per_second",v=5},[5]={k="reminderstring",v="ReminderTextAttributes"},limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"},[3]={[1]="#",[2]="#"},[4]={[1]="#",[2]="#"},[5]={[1]="#",[2]="#"},[6]={[1]="#",[2]="#"},[7]={[1]="#",[2]="#"}},text="While your Passive Skill Tree connects to a class' starting location, you gain:\nMarauder: Melee Skills have %1%%% increased Area of Effect\nDuelist: %2%%% of Attack Damage Leeched as Life\nRanger: %3%%% increased Movement Speed\nShadow: %4$+d%% to Critical Strike Chance\nWitch: %5%%% of Mana Regenerated per second\nTemplar: Damage Penetrates %6%%% Elemental Resistances\nScion: %7$+d to All Attributes"}}},stats={[1]="local_unique_jewel_melee_skills_area_of_effect_+%_with_passive_tree_connected_to_marauder_start",[2]="local_unique_jewel_life_leech_from_attack_damage_permyriad_with_passive_tree_connected_to_duelist_start",[3]="local_unique_jewel_movement_speed_+%_with_passive_tree_connected_to_ranger_start",[4]="local_unique_jewel_additional_critical_strike_chance_permyriad_with_passive_tree_connected_to_shadow_start",[5]="local_unique_jewel_mana_regeneration_rate_per_minute_%_with_passive_tree_connected_to_witch_start",[6]="local_unique_jewel_elemental_penetration_%_with_passive_tree_connected_to_templar_start",[7]="local_unique_jewel_additional_all_attributes_with_passive_tree_connected_to_scion_start"}},[6478]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Lose a Power Charge when Hit"}}},stats={[1]="unique_lose_a_power_charge_when_hit"}},[6479]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Rarity of Items found from Slain Unique Enemies"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Rarity of Items found from Slain Unique Enemies"}}},stats={[1]="unique_monster_dropped_item_rarity_+%"}},[6480]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When you kill a Poisoned Enemy during any Flask Effect, nearby Enemies are Poisoned"}}},stats={[1]="unique_spread_poison_to_nearby_enemies_during_flask_effect"}},[6481]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Shock Enemies as though dealing %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Shock Enemies as though dealing %1%%% less Damage"}}},stats={[1]="unique_voltaxic_rift_shock_as_though_damage_+%_final"}},[6482]={lang={English={[1]={limit={[1]={[1]=51,[2]="#"}},text="Your Shocks can increase Damage taken by up to a maximum of %1%%%"},[2]={limit={[1]={[1]=1,[2]=49}},text="Your Shocks can only increase Damage taken by up to a maximum of %1%%%"}}},stats={[1]="unique_voltaxic_rift_shock_maximum_magnitude_override"}},[6483]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Cold Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Cold Damage taken"}}},stats={[1]="utility_flask_cold_damage_taken_+%_final"}},[6484]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Fire Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Fire Damage taken"}}},stats={[1]="utility_flask_fire_damage_taken_+%_final"}},[6485]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% more Lightning Damage taken"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% less Lightning Damage taken"}}},stats={[1]="utility_flask_lightning_damage_taken_+%_final"}},[6486]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Soul Cost of Vaal Skills"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Soul Cost of Vaal Skills"}}},stats={[1]="vaal_skill_soul_cost_+%"}},[6487]={lang={English={[1]={limit={[1]={[1]="#",[2]=99}},text="Viper Strike has a %1%%% chance to grant Unholy Might for 4 seconds on Hit per Poison on Enemy"},[2]={limit={[1]={[1]=100,[2]=100}},text="Viper Strike grants Unholy Might for 4 seconds on Hit per Poison on Enemy"}}},stats={[1]="viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy"}},[6488]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% More Attack Speed if Dual Wielding"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% Less Attack Speed if Dual Wielding"}}},stats={[1]="viper_strike_dual_wield_attack_speed_+%_final"}},[6489]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Each Weapon Hits separately if Dual Wielding, dealing %1%%% more Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=1}},text="Each Weapon Hits separately if Dual Wielding, dealing %1%%% less Damage"}}},stats={[1]="viper_strike_dual_wield_damage_+%_final"}},[6490]={lang={English={[1]={limit={[1]={[1]=0,[2]=0}},text="You take no damage from hits you Block"},[2]={limit={[1]={[1]=1,[2]="#"}},text="You take %1%%% of the damage from hits you Block"}}},stats={[1]="virtual_block_%_damage_taken"}},[6491]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Beams Chain %1% Time"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Beams Chain %1% Times"}}},stats={[1]="additional_beam_only_chains"}},[6492]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Scourge Arrow creates an additional spore pod at Maximum Stages"},[2]={limit={[1]={[1]=2,[2]="#"}},text="Scourge Arrow creates %1% additional spore pods at Maximum Stages"}}},stats={[1]="virulent_arrow_additional_spores_at_max_stages"}},[6493]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="Scourge Arrow has %1%%% chance to Poison per Stage"}}},stats={[1]="virulent_arrow_chance_to_poison_%_per_stage"}},[6494]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Vitality Reserves no Mana"}}},stats={[1]="vitality_reserves_no_mana"}},[6495]={lang={English={[1]={limit={[1]={[1]=1,[2]=1}},text="Volatile Dead Consumes up to %1% additional corpse"},[2]={limit={[1]={[1]="#",[2]="#"}},text="Volatile Dead Consumes up to %1% additional corpses"}}},stats={[1]="volatile_dead_base_number_of_corpses_to_consume"}},[6496]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Volatile Dead Cast Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Volatile Dead Cast Speed"}}},stats={[1]="volatile_dead_cast_speed_+%"}},[6497]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Volatile Dead Consumes up to 1 additional corpse"}}},stats={[1]="volatile_dead_consume_additional_corpse"}},[6498]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Volatile Dead Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Volatile Dead Damage"}}},stats={[1]="volatile_dead_damage_+%"}},[6499]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Vortex has %1%%% increased Area of Effect when Cast on Frostbolt"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Vortex has %1%%% reduced Area of Effect when Cast on Frostbolt"}}},stats={[1]="vortex_area_of_effect_+%_when_cast_on_frostbolt"}},[6500]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Damage with Wands if you've dealt a Critical Strike Recently"},[2]={[1]={k="negate",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Damage with Wands if you've dealt a Critical Strike Recently"}}},stats={[1]="wand_damage_+%_if_crit_recently"}},[6501]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Gain %1%%% of Wand Physical Damage as Extra Chaos Damage"}}},stats={[1]="wand_physical_damage_%_to_add_as_chaos"}},[6502]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% of Wand Physical Damage converted to Lightning Damage"}}},stats={[1]="wand_physical_damage_%_to_convert_to_lightning"}},[6503]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="War Banner has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="War Banner has %1%%% reduced Aura Effect"}}},stats={[1]="war_banner_aura_effect_+%"}},[6504]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Warcries count as having %1% additional nearby Enemies"}}},stats={[1]="warcries_count_as_having_x_additional_nearby_enemies"}},[6505]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Warcries Knock Enemies Back in an Area"}}},stats={[1]="warcries_knock_back_enemies"}},[6506]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Warcry Buff Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Warcry Buff Effect"}}},stats={[1]="warcry_buff_effect_+%"}},[6507]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Warcry Skills have %1%%% increased Area of Effect"}}},stats={[1]="warcry_skill_area_of_effect_+%"}},[6508]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Warcry Skills' Cooldown Time is 2 seconds"}}},stats={[1]="warcry_skills_cooldown_is_2_seconds"}},[6509]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="While stationary, gain %1%%% additional Physical Damage Reduction every second, up to a maximum of 8%%"}}},stats={[1]="while_stationary_gain_additional_physical_damage_reduction_%"}},[6510]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="While stationary, gain %1%%% of Life Regenerated per second every second, up to a maximum of 2%%"}}},stats={[1]="while_stationary_gain_life_regeneration_rate_per_minute_%"}},[6511]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=1,[2]=99}},text="%1%%% chance to inflict Withered for 2 seconds on Hit"},[2]={[1]={k="reminderstring",v="ReminderTextWithered"},limit={[1]={[1]=100,[2]="#"}},text="Inflict Withered for 2 seconds on Hit"}}},stats={[1]="withered_on_hit_for_2_seconds_%_chance"}},[6512]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Wrath Reserves no Mana"}}},stats={[1]="wrath_reserves_no_mana"}},[6513]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="If you've Attacked Recently, you\nand nearby Allies have %1$+d%% Chance to Block Attack Damage"}}},stats={[1]="you_and_allies_additional_block_%_if_have_attacked_recently"}},[6514]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="If you've Cast a Spell Recently, you\nand nearby Allies have %1$+d%% Chance to Block Spell Damage"}}},stats={[1]="you_and_allies_additional_spell_block_%_if_cast_spell_recently"}},[6515]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="If you've Impaled an Enemy Recently, you\nand nearby Allies have +%1% to Armour"}}},stats={[1]="you_and_nearby_allies_armour_+_if_have_impaled_recently"}},[6516]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="You and nearby Allies have %1%%% increased Critical Strike Chance"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="You and nearby Allies have %1%%% reduced Critical Strike Chance"}}},stats={[1]="you_and_nearby_allies_critical_strike_chance_+%"}},[6517]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You and nearby Allies have %1$+d%% to Critical Strike Multiplier"}}},stats={[1]="you_and_nearby_allies_critical_strike_multiplier_+"}},[6518]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="If you Consumed a corpse Recently, you and nearby Allies Regenerate %1%%% of Life per second"}}},stats={[1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently"}},[6519]={lang={English={[1]={[1]={k="per_minute_to_per_second_0dp",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="If you have Blocked Recently, you and nearby Allies Regenerate %1%%% of Life per second"}}},stats={[1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently"}},[6520]={lang={English={[1]={[1]={k="per_minute_to_per_second_1dp",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="If you've Hit an Enemy Recently, you and nearby Allies Regenerate %1%%% of Life per second"}}},stats={[1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently"}},[6521]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRage"},limit={[1]={[1]="#",[2]="#"}},text="You and nearby Party members gain %1% Rage when you Warcry"}}},stats={[1]="you_and_nearby_party_members_gain_x_rage_when_you_warcry"}},[6522]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="You and your Totems Regenerate %1%%% of Life per second for each Summoned Totem"}}},stats={[1]="you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem"}},[6523]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot be Hindered"}}},stats={[1]="you_cannot_be_hindered"}},[6524]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You cannot have non-Animated Minions"}}},stats={[1]="you_cannot_have_non_animated_minions"}},[6525]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You count as on Low Life while not on Full Life"}}},stats={[1]="you_count_as_low_life_while_not_on_full_life"}},[6526]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="You have no Armour or Maximum Energy Shield"}}},stats={[1]="you_have_no_armour_or_energy_shield"}},[6527]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDealsDamageFaster"},limit={[1]={[1]="#",[2]="#"}},text="Damaging Ailments you inflict deal Damage %1%%% faster while affected by Malevolence"}}},stats={[1]="your_ailments_deal_damage_faster_%_while_affected_by_malevolence"}},[6528]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextDealsDamageFaster"},limit={[1]={[1]="#",[2]="#"}},text="Damaging Ailments you inflict deal Damage %1%%% faster while affected by Malevolence"}}},stats={[1]="your_ailments_deal_damage_faster_%_while_affected_by_malevolence"}},[6529]={lang={English={[1]={[1]={k="milliseconds_to_seconds",v=1},[2]={k="reminderstring",v="ReminderTextLingers"},limit={[1]={[1]="#",[2]="#"}},text="Effects of Consecrated Ground you create Linger for %1% seconds"}}},stats={[1]="your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"}},[6530]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Your Spells are disabled"}}},stats={[1]="your_spells_are_disabled"}},[6531]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextPoison"},limit={[1]={[1]="#",[2]="#"}},text="All Damage inflicts Poison while affected by Glorious Madness"}}},stats={[1]="all_damage_can_poison_while_affected_by_glorious_madness"}},[6532]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% chance to deal Double Damage while affected by Glorious Madness"}}},stats={[1]="chance_to_deal_double_damage_while_affected_by_glorious_madness_%"}},[6533]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="%1% Cold Damage taken per second per Frenzy Charge while moving"}}},stats={[1]="cold_damage_taken_per_minute_per_frenzy_charge_while_moving"}},[6534]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Enemies you Kill while affected by Glorious Madness have a %1%%% chance to Explode, dealing a quarter of their Life as Chaos Damage"}}},stats={[1]="explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%"}},[6535]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1% Fire Damage taken per second per Endurance Charge if you've been Hit Recently"}}},stats={[1]="fire_damage_taken_per_minute_per_endurance_charge_if_you_have_been_hit_recently"}},[6536]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Effect of Fortify on you while affected by Glorious Madness"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Effect of Fortify on you while affected by Glorious Madness"}}},stats={[1]="fortify_effect_on_self_while_affected_by_glorious_madness_+%"}},[6537]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalConflux"},limit={[1]={[1]="#",[2]="#"}},text="You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness"}}},stats={[1]="gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness"}},[6538]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Immune to Elemental Ailments while affected by Glorious Madness"}}},stats={[1]="immune_to_elemental_status_ailments_while_affected_by_glorious_madness"}},[6539]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="%1% Lightning Damage taken per second per Power Charge if\nyour Skills have dealt a Critical Strike Recently"}}},stats={[1]="lightning_damage_taken_per_minute_per_power_charge_if_have_crit_recently"}},[6540]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="When used in the Synthesiser, the new item will have an additional Herald Modifier"}}},stats={[1]="local_apply_extra_herald_mod_when_synthesised"}},[6541]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Historic"}}},stats={[1]="local_unique_jewel_alternate_tree_internal_revision"}},[6542]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Primordial"}}},stats={[1]="primordial_jewel_count"}},[6543]={lang={English={[1]={limit={[1]={[1]=0,[2]=0},[2]={[1]=0,[2]=0},[3]={[1]=1,[2]="#"},[4]={[1]=0,[2]=0}},text="Skills supported by Unleash have %3$+d to maximum number of Seals"}}},stats={[1]="support_anticipation_charge_gain_interval_ms",[2]="virtual_support_anticipation_charge_gain_interval_ms",[3]="support_anticipation_rapid_fire_count",[4]="skill_max_unleash_seals"}},[6544]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Zealotry has %1%%% increased Aura Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Zealotry has %1%%% reduced Aura Effect"}}},stats={[1]="zealotry_aura_effect_+%"}},[6545]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Zealotry has %1%%% increased Mana Reservation"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Zealotry has %1%%% reduced Mana Reservation"}}},stats={[1]="zealotry_mana_reservation_+%"}},[6546]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Zealotry Reserves no Mana"}}},stats={[1]="zealotry_reserves_no_mana"}},[6547]={lang={English={[1]={[1]={k="per_minute_to_per_second",v=1},limit={[1]={[1]="#",[2]="#"}},text="Your Raised Zombies spread Caustic Ground on Death, dealing %1%%% of their maximum Life as Chaos Damage per second"}}},stats={[1]="zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"}},[6548]={lang={English={[1]={[1]={k="divide_by_one_hundred",v=1},limit={[1]={[1]="#",[2]="#"}},text="With at least 1000 Strength, %1%%% of Damage dealt by your Raised Zombies is Leeched to you as Life"}}},stats={[1]="zombie_damage_leeched_as_life_to_you_permyriad_if_over_1000_strength"}},[6549]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Raised Zombies deal %1%%% more Physical Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Raised Zombies deal %1%%% less Physical Damage"}}},stats={[1]="zombie_physical_damage_+%_final"}},[6550]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Raised Zombies' Slam Attack has %1%%% increased Area of Effect"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Raised Zombies' Slam Attack has %1%%% reduced Area of Effect"}}},stats={[1]="zombie_slam_area_of_effect_+%"}},[6551]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raised Zombies' Slam Attack has %1%%% increased Cooldown Recovery Speed"}}},stats={[1]="zombie_slam_cooldown_speed_+%"}},[6552]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Raised Zombies' Slam Attack deals %1%%% increased Damage"}}},stats={[1]="zombie_slam_damage_+%"}},[6553]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAggressiveMinions"},limit={[1]={[1]="#",[2]="#"}},text="Summoned Golems are Aggressive"}}},stats={[1]="golems_larger_aggro_radius"}},[6554]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextAggressiveMinions"},limit={[1]={[1]="#",[2]="#"}},text="Minions are Aggressive"}}},stats={[1]="minion_larger_aggro_radius"}},[6555]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions take %1%%% increased Damage"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions take %1%%% reduced Damage"}}},stats={[1]="local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%"}},[6556]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions have %1%%% increased Movement Speed"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="Notable Passive Skills in Radius are Transformed to\ninstead grant: Minions have %1%%% reduced Movement Speed"}}},stats={[1]="local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%"}},[6557]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"},[2]={[1]="#",[2]="#"}},text="Passive Skills in Radius also grant: Traps and Mines deal %1% to %2% added Physical Damage"}}},stats={[1]="local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage",[2]="local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage"}},[6558]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRampage"},limit={[1]={[1]=1,[2]="#"}},text="Rampage"}}},stats={[1]="player_gain_rampage_stacks"}},[6559]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneAcrobatics"},limit={[1]={[1]="#",[2]="#"}},text="Acrobatics"}}},stats={[1]="keystone_acrobatics"}},[6560]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystonePerfectAgony"},[2]={k="reminderstring",v="ReminderTextDamagingAilments"},limit={[1]={[1]="#",[2]="#"}},text="Perfect Agony"}}},stats={[1]="keystone_ailment_crit"}},[6561]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneAncestralBond"},limit={[1]={[1]="#",[2]="#"}},text="Ancestral Bond"}}},stats={[1]="keystone_ancestral_bond"}},[6562]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneAvatarOfFire"},limit={[1]={[1]="#",[2]="#"}},text="Avatar of Fire"}}},stats={[1]="keystone_avatar_of_fire"}},[6563]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneBloodMagic"},limit={[1]={[1]="#",[2]="#"}},text="Blood Magic"}}},stats={[1]="keystone_blood_magic"}},[6564]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneChaosInoculation"},limit={[1]={[1]=1,[2]="#"}},text="Chaos Inoculation"}}},stats={[1]="keystone_chaos_inoculation"}},[6565]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneConduit"},limit={[1]={[1]="#",[2]="#"}},text="Conduit"}}},stats={[1]="keystone_conduit"}},[6566]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneCrimsonDance"},limit={[1]={[1]="#",[2]="#"}},text="Crimson Dance"}}},stats={[1]="keystone_crimson_dance"}},[6567]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneEldritchBattery"},limit={[1]={[1]="#",[2]="#"}},text="Eldritch Battery"}}},stats={[1]="keystone_eldritch_battery"}},[6568]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneElementalEquilibrium"},limit={[1]={[1]="#",[2]="#"}},text="Elemental Equilibrium"}}},stats={[1]="keystone_elemental_equilibrium"}},[6569]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneElementalOverload"},limit={[1]={[1]="#",[2]="#"}},text="Elemental Overload"}}},stats={[1]="keystone_elemental_overload"}},[6570]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneGhostReaver"},limit={[1]={[1]="#",[2]="#"}},text="Ghost Reaver"}}},stats={[1]="keystone_ghost_reaver"}},[6571]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneIronReflexes"},limit={[1]={[1]="#",[2]="#"}},text="Iron Reflexes"}}},stats={[1]="keystone_iron_reflexes"}},[6572]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneMindOverMatter"},limit={[1]={[1]="#",[2]="#"}},text="Mind Over Matter"}}},stats={[1]="keystone_mana_shield"}},[6573]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneMinionInstability"},limit={[1]={[1]="#",[2]="#"}},text="Minion Instability"}}},stats={[1]="keystone_minion_instability"}},[6574]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneMortalConviction"},limit={[1]={[1]="#",[2]="#"}},text="Mortal Conviction"}}},stats={[1]="keystone_mortal_conviction"}},[6575]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLowLife"},[2]={k="reminderstring",v="ReminderTextKeystonePainAttunement"},limit={[1]={[1]="#",[2]="#"}},text="Pain Attunement"}}},stats={[1]="keystone_pain_attunement"}},[6576]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystonePhaseAcrobatics"},limit={[1]={[1]="#",[2]="#"}},text="Phase Acrobatics"}}},stats={[1]="keystone_phase_acrobatics"}},[6577]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystonePointBlank"},limit={[1]={[1]="#",[2]="#"}},text="Point Blank"}}},stats={[1]="keystone_point_blank"}},[6578]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneProjectileEvasion"},limit={[1]={[1]="#",[2]="#"}},text="Arrow Dancing"}}},stats={[1]="keystone_projectile_evasion"}},[6579]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneInnerConviction"},limit={[1]={[1]="#",[2]="#"}},text="Inner Conviction"}}},stats={[1]="keystone_quiet_might"}},[6580]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneZealotsOath"},limit={[1]={[1]="#",[2]="#"}},text="Zealot's Oath"}}},stats={[1]="regenerate_energy_shield_instead_of_life"}},[6581]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneRunebinder"},limit={[1]={[1]="#",[2]="#"}},text="Runebinder"}}},stats={[1]="keystone_runebinder"}},[6582]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneSharedSuffering"},[2]={k="reminderstring",v="ReminderTextElementalStatusAilments"},limit={[1]={[1]="#",[2]="#"}},text="Shared Suffering"}}},stats={[1]="keystone_shared_suffering"}},[6583]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneIronGrip"},limit={[1]={[1]="#",[2]="#"}},text="Iron Grip"}}},stats={[1]="keystone_strong_bowman"}},[6584]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneUnwaveringStance"},limit={[1]={[1]="#",[2]="#"}},text="Unwavering Stance"}}},stats={[1]="keystone_unwavering_stance"}},[6585]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneVaalPact"},limit={[1]={[1]="#",[2]="#"}},text="Vaal Pact"}}},stats={[1]="keystone_vaal_pact"}},[6586]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextLifeLeech"},[2]={k="reminderstring",v="ReminderTextKeystoneVaalPact"},limit={[1]={[1]="#",[2]="#"}},text="Vaal Pact"}}},stats={[1]="keystone_vampirism"}},[6587]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneWickedWard"},limit={[1]={[1]="#",[2]="#"}},text="Wicked Ward"}}},stats={[1]="keystone_wicked_ward"}},[6588]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFarShot"},limit={[1]={[1]="#",[2]="#"}},text="Far Shot"}}},stats={[1]="player_far_shot"}},[6589]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneResoluteTechnique"},limit={[1]={[1]="#",[2]="#"}},text="Resolute Technique"}}},stats={[1]="resolute_technique"}},[6590]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextIronWill"},limit={[1]={[1]="#",[2]="#"}},text="Iron Will"}}},stats={[1]="strong_casting"}},[6591]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneAvatarOfFire"},limit={[1]={[1]="#",[2]="#"}},text="Summoned Skeletons have Avatar of Fire"}}},stats={[1]="summoned_skeletons_have_avatar_of_fire"}},[6592]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextRecently"},[2]={k="reminderstring",v="ReminderTextKeystoneCrimsonDance"},limit={[1]={[1]="#",[2]="#"}},text="You have Crimson Dance if you have dealt a Critical Strike Recently"}}},stats={[1]="gain_crimson_dance_if_have_dealt_critical_strike_recently"}},[6593]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneCrimsonDance"},limit={[1]={[1]="#",[2]="#"}},text="You have Crimson Dance while you have Cat's Stealth"}}},stats={[1]="gain_crimson_dance_while_you_have_cat_stealth"}},[6594]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneIronReflexes"},limit={[1]={[1]="#",[2]="#"}},text="You have Iron Reflexes while at maximum Frenzy Charges"}}},stats={[1]="gain_iron_reflexes_while_at_maximum_frenzy_charges"}},[6595]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneMindOverMatter"},limit={[1]={[1]="#",[2]="#"}},text="You have Mind over Matter while at maximum Power Charges"}}},stats={[1]="gain_mind_over_matter_while_at_maximum_power_charges"}},[6596]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneVaalPact"},limit={[1]={[1]="#",[2]="#"}},text="You have Vaal Pact while at maximum Endurance Charges"}}},stats={[1]="gain_vaal_pact_while_at_maximum_endurance_charges"}},[6597]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneVaalPact"},limit={[1]={[1]="#",[2]="#"}},text="You have Vaal Pact while all Socketed Gems are Red"}}},stats={[1]="local_gain_vaal_pact_if_all_socketed_gems_red"}},[6598]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneAvatarOfFire"},limit={[1]={[1]="#",[2]="#"}},text="Every 8 seconds, gain Avatar of Fire for 4 seconds"}}},stats={[1]="avatar_of_fire_rotation_active"}},[6599]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneElementalOverload"},limit={[1]={[1]="#",[2]="#"}},text="Every 16 seconds you gain Elemental Overload for 8 seconds"}}},stats={[1]="elemental_overload_rotation_active"}},[6600]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneIronReflexes"},limit={[1]={[1]="#",[2]="#"}},text="Iron Reflexes while stationary"}}},stats={[1]="gain_iron_reflexes_while_stationary"}},[6601]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneResoluteTechnique"},limit={[1]={[1]="#",[2]="#"}},text="You have Resolute Technique while you do not have Elemental Overload"}}},stats={[1]="gain_resolute_technique_while_do_not_have_elemental_overload"}},[6602]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystonePerfectAgony"},limit={[1]={[1]="#",[2]="#"}},text="Grants Perfect Agony during Flask effect"}}},stats={[1]="local_grant_perfect_agony_during_flask_effect"}},[6603]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneIronReflexes"},limit={[1]={[1]="#",[2]="#"}},text="Every 16 seconds you gain Iron Reflexes for 8 seconds"}}},stats={[1]="iron_reflexes_rotation_active"}},[6604]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextKeystoneZealotsOath"},[2]={k="reminderstring",v="ReminderTextRecently"},limit={[1]={[1]="#",[2]="#"}},text="You have Zealot's Oath if you haven't been hit recently"}}},stats={[1]="you_have_zealots_oath_if_you_havent_been_hit_recently"}},[6605]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Physical Damage while you have Resolute Technique"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Physical Damage while you have Resolute Technique"}}},stats={[1]="physical_damage_+%_while_you_have_resolute_technique"}},[6606]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Critical Strike Chance while you have Avatar of Fire"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Critical Strike Chance while you have Avatar of Fire"}}},stats={[1]="critical_strike_chance_+%_while_you_have_avatar_of_fire"}},[6607]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% of Physical Damage Converted to Fire while you have Avatar of Fire"}}},stats={[1]="physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire"}},[6608]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1%%% more Damage with Arrow Hits at Close Range while you have Iron Reflexes"}}},stats={[1]="unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes"}},[6609]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextBleeding"},limit={[1]={[1]="#",[2]="#"}},text="Attacks with this Weapon have %1%%% chance to inflict Bleeding while you do not have Avatar of Fire"}}},stats={[1]="local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire"}},[6610]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="%1$+d Armour while you do not have Avatar of Fire"}}},stats={[1]="armour_while_you_do_not_have_avatar_of_fire"}},[6611]={lang={English={[1]={limit={[1]={[1]=1,[2]="#"}},text="%1%%% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes"},[2]={[1]={k="negate",v=1},limit={[1]={[1]="#",[2]=-1}},text="%1%%% reduced Attack, Cast and Movement Speed while you do not have Iron Reflexes"}}},stats={[1]="attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes"}},[6612]={lang={English={[1]={[1]={k="reminderstring",v="ReminderTextFarShot"},limit={[1]={[1]="#",[2]="#"}},text="You have Far Shot while you do not have Iron Reflexes"}}},stats={[1]="gain_player_far_shot_while_do_not_have_iron_reflexes"}},[6613]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Gore Footprints"}}},stats={[1]="blood_footprints_from_item"}},[6614]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Celestial Footprints"}}},stats={[1]="celestial_footprints_from_item"}},[6615]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Demigod Footprints"}}},stats={[1]="demigod_footprints_from_item"}},[6616]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Extra gore"}}},stats={[1]="extra_gore"}},[6617]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Burning Hoofprints"}}},stats={[1]="goat_footprints_from_item"}},[6618]={lang={English={[1]={limit={[1]={[1]="#",[2]="#"}},text="Mercury Footprints"}}},stats={[1]="silver_footprints_from_item"}},["%_chance_to_blind_on_critical_strike"]=3486,["%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth"]=3554,["%_chance_to_cause_bleeding_enemies_to_flee_on_hit"]=3014,["%_chance_to_create_smoke_cloud_on_mine_or_trap_creation"]=3285,["%_chance_to_gain_100%_non_chaos_damage_to_add_as_chaos_damage"]=3552,["%_chance_to_gain_25%_non_chaos_damage_to_add_as_chaos_damage"]=3550,["%_chance_to_gain_50%_non_chaos_damage_to_add_as_chaos_damage"]=3551,["%_chance_to_gain_endurance_charge_each_second_while_channelling"]=6065,["%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy"]=2809,["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=2808,["%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life"]=3283,["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1417,["%_chance_to_gain_power_charge_on_placing_a_totem"]=3269,["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1416,["%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy"]=6066,["%_maximum_es_and_life_taken_as_fire_damage_per_minute_per_level_while_in_her_embrace"]=6067,["%_number_of_raging_spirits_allowed"]=6068,["X_accuracy_per_2_intelligence"]=1310,["X_armour_if_you_have_blocked_recently"]=3587,["X_armour_per_active_totem"]=3588,["X_armour_per_stackable_unique_jewel"]=3367,["X_life_per_4_dexterity"]=1311,["X_mana_per_4_strength"]=1312,["X_mana_per_stackable_unique_jewel"]=3366,["abyssal_cry_damage_+%"]=2939,["abyssal_cry_duration_+%"]=3133,["accuracy_rating"]=788,["accuracy_rating_+%"]=789,["accuracy_rating_+%_if_enemy_not_killed_recently"]=3591,["accuracy_rating_+%_if_have_crit_in_past_8_seconds"]=3592,["accuracy_rating_+%_per_frenzy_charge"]=1341,["accuracy_rating_+%_when_on_low_life"]=1817,["accuracy_rating_is_doubled"]=3590,["accuracy_rating_vs_bleeding_enemies"]=3593,["accuracy_rating_while_at_maximum_frenzy_charges"]=3594,["accuracy_rating_while_dual_wielding_+%"]=790,["acrobatics_additional_chance_to_dodge_%"]=1506,["action_speed_+%_while_chilled"]=2795,["action_speed_cannot_be_reduced_below_base"]=2408,["active_skill_attack_speed_+%_final"]=766,["active_skill_attack_speed_+%_final_per_frenzy_charge"]=3003,["active_skill_damage_over_time_from_projectile_hits_+%_final"]=1505,["active_skill_level_+"]=1172,["active_skill_projectile_damage_+%_final"]=1504,["add_1_stage_to_banners_on_melee_hit_up_to_5_per_second"]=3804,["add_endurance_charge_on_critical_strike"]=1116,["add_endurance_charge_on_enemy_critical_strike"]=1132,["add_endurance_charge_on_gain_power_charge_%"]=2816,["add_endurance_charge_on_kill"]=2045,["add_endurance_charge_on_skill_hit_%"]=1129,["add_endurance_charge_on_status_ailment"]=1133,["add_frenzy_charge_every_50_rampage_stacks"]=3567,["add_frenzy_charge_on_critical_strike"]=1125,["add_frenzy_charge_on_enemy_block"]=1412,["add_frenzy_charge_on_kill_%_chance"]=1852,["add_frenzy_charge_on_kill_%_chance_while_dual_wielding"]=3595,["add_frenzy_charge_on_skill_hit_%"]=1130,["add_frenzy_charge_when_hit_%"]=3596,["add_power_charge_on_critical_strike"]=1126,["add_power_charge_on_critical_strike_%"]=1127,["add_power_charge_on_hit_%"]=2810,["add_power_charge_on_kill_%_chance"]=1854,["add_power_charge_on_melee_critical_strike"]=1128,["add_power_charge_on_minion_death"]=1348,["add_power_charge_on_skill_hit_%"]=1131,["add_power_charge_when_interrupted_while_casting"]=1439,["add_power_charge_when_kill_shocked_enemy"]=1428,["additional_%_chance_to_evade_attacks_if_you_have_taken_a_savage_hit_recently"]=3618,["additional_all_attributes"]=554,["additional_attack_block_%_if_used_shield_skill_recently"]=3597,["additional_attack_block_%_per_endurance_charge"]=3598,["additional_attack_block_%_per_frenzy_charge"]=3599,["additional_attack_block_%_per_power_charge"]=3600,["additional_attack_block_%_per_summoned_skeleton"]=3601,["additional_base_critical_strike_chance"]=814,["additional_beam_only_chains"]=6491,["additional_block_%"]=1697,["additional_block_%_if_you_have_crit_recently"]=3602,["additional_block_%_per_endurance_charge"]=3603,["additional_block_%_per_hit_you_have_blocked_in_past_10_seconds"]=3604,["additional_block_%_while_not_cursed"]=3605,["additional_block_%_while_on_consecrated_ground"]=3606,["additional_block_%_while_you_have_at_least_10_crab_charges"]=3547,["additional_block_%_while_you_have_at_least_5_crab_charges"]=3546,["additional_block_%_with_5_or_more_nearby_enemies"]=3607,["additional_block_chance_%_for_1_second_every_5_seconds"]=1698,["additional_block_chance_%_for_you_and_allies_affected_by_your_auras"]=3275,["additional_block_chance_%_when_in_off_hand"]=3391,["additional_block_chance_against_projectiles_%"]=1703,["additional_chance_to_freeze_chilled_enemies_%"]=1322,["additional_chaos_resistance_against_damage_over_time_%"]=4074,["additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad"]=3608,["additional_critical_strike_chance_per_power_charge_permyriad"]=3609,["additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%"]=3610,["additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect"]=3553,["additional_critical_strike_chance_permyriad_while_affected_by_hatred"]=3611,["additional_critical_strike_chance_permyriad_while_at_maximum_power_charges"]=2686,["additional_critical_strike_chance_permyriad_with_herald_skills"]=3612,["additional_dexterity"]=556,["additional_dexterity_and_intelligence"]=560,["additional_intelligence"]=557,["additional_max_number_of_dominated_magic_monsters"]=3613,["additional_max_number_of_dominated_rare_monsters"]=3614,["additional_maximum_all_elemental_resistances_%"]=974,["additional_maximum_all_resistances_%"]=973,["additional_maximum_all_resistances_%_at_devotion_threshold"]=3616,["additional_maximum_all_resistances_%_while_poisoned"]=3615,["additional_maximum_all_resistances_%_with_no_endurance_charges"]=3617,["additional_physical_damage_reduction_%_during_flask_effect"]=3477,["additional_physical_damage_reduction_%_during_focus"]=3620,["additional_physical_damage_reduction_%_during_life_or_mana_flask_effect"]=3621,["additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently"]=3622,["additional_physical_damage_reduction_%_per_keystone"]=3623,["additional_physical_damage_reduction_%_per_minion_up_to_10%"]=3624,["additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity"]=3625,["additional_physical_damage_reduction_%_vs_abyssal_monsters"]=3626,["additional_physical_damage_reduction_%_when_on_low_life"]=1540,["additional_physical_damage_reduction_%_while_affected_by_determination"]=3627,["additional_physical_damage_reduction_%_while_affected_by_guard_skill"]=3628,["additional_physical_damage_reduction_%_while_bleeding"]=3629,["additional_physical_damage_reduction_%_while_channelling"]=3630,["additional_physical_damage_reduction_%_while_frozen"]=3631,["additional_physical_damage_reduction_%_while_moving"]=3632,["additional_physical_damage_reduction_against_hits_%_per_siphoning_charge"]=3534,["additional_physical_damage_reduction_if_warcried_in_past_8_seconds"]=3619,["additional_scroll_of_wisdom_drop_chance_%"]=1827,["additional_spell_block_%"]=542,["additional_spell_block_%_per_power_charge"]=3633,["additional_spell_block_%_while_cursed"]=3634,["additional_staff_block_%"]=538,["additional_strength"]=555,["additional_strength_and_dexterity"]=558,["additional_strength_and_intelligence"]=559,["additive_cast_speed_modifiers_apply_to_trap_throwing_speed"]=3635,["additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value"]=3636,["additive_life_modifiers_apply_to_attack_damage_at_30%_value"]=3637,["additive_mana_modifiers_apply_to_damage_at_30%_value"]=3638,["additive_modifiers_to_minion_attack_speed_also_affect_you"]=2965,["additive_spell_damage_modifiers_apply_to_attack_damage"]=1890,["additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand"]=1892,["additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value"]=1891,["additive_vaal_skill_damage_modifiers_apply_to_all_skills"]=1893,["agony_crawler_damage_+%"]=3639,["ailment_damage_+%_per_equipped_elder_item"]=3525,["ailment_dot_multiplier_+"]=615,["ailment_dot_multiplier_+_per_equipped_elder_item"]=3526,["ailment_types_apply_damage_taken_+%"]=1701,["all_attributes_+%"]=561,["all_attributes_+%_per_assigned_keystone"]=2302,["all_damage_can_freeze"]=2076,["all_damage_can_poison_while_affected_by_glorious_madness"]=6531,["all_resistances_%_per_equipped_corrupted_item"]=2318,["allow_2_active_banners"]=2235,["allow_multiple_offerings"]=3640,["always_crit"]=1335,["always_crit_shocked_enemies"]=3345,["always_freeze"]=1319,["always_ignite"]=1147,["always_ignite_while_burning"]=3641,["always_pierce"]=3642,["always_shock"]=1148,["always_stun"]=1149,["always_stun_enemies_that_are_on_full_life"]=2555,["ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=2652,["ancestor_totem_buff_effect_+%"]=3643,["ancestor_totem_parent_activation_range_+%"]=3644,["anger_aura_effect_+%"]=2583,["anger_mana_reservation_+%"]=2636,["anger_reserves_no_mana"]=3645,["animate_guardian_damage_+%"]=2920,["animate_guardian_damage_+%_per_animated_weapon"]=3646,["animate_guardian_elemental_resistances_%"]=3201,["animate_item_maximum_level_requirement"]=2009,["animate_weapon_can_animate_bows"]=2376,["animate_weapon_can_animate_up_to_x_additional_ranged_weapons"]=2471,["animate_weapon_can_animate_wands"]=2377,["animate_weapon_chance_to_create_additional_copy_%"]=3207,["animate_weapon_damage_+%"]=2842,["animate_weapon_duration_+%"]=2011,["animate_weapon_number_of_additional_copies"]=2012,["animated_minions_melee_splash"]=3647,["aoe_+%_per_second_while_stationary_up_to_50"]=3648,["apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy"]=3649,["apply_covered_in_ash_to_attacker_when_hit_%"]=3650,["apply_poison_on_hit_vs_bleeding_enemies_%"]=2499,["arc_damage_+%"]=2875,["arc_damage_+%_per_chain"]=3651,["arc_num_of_additional_projectiles_in_chain"]=3164,["arc_shock_chance_%"]=3179,["arcane_cloak_consume_%_of_mana"]=3652,["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=3653,["arcane_surge_effect_+%"]=2503,["arcane_surge_effect_+%_per_200_mana_spent_recently_up_to_50%"]=2504,["arctic_armour_buff_effect_+%"]=3234,["arctic_armour_chill_when_hit_duration"]=3654,["arctic_armour_mana_reservation_+%"]=3241,["arctic_breath_chilling_area_movement_velocity_+%"]=3655,["arctic_breath_damage_+%"]=2893,["arctic_breath_duration_+%"]=3144,["arctic_breath_radius_+%"]=3036,["area_damage_+%"]=1325,["area_damage_+%_per_10_devotion"]=3656,["area_damage_+%_per_12_strength"]=3657,["area_damage_taken_from_hits_+%"]=1521,["area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently"]=3658,["area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently"]=3659,["area_of_effect_+%_if_have_stunned_an_enemy_recently"]=3660,["area_of_effect_+%_if_killed_at_least_5_enemies_recently"]=3661,["area_of_effect_+%_if_you_have_blocked_recently"]=3662,["area_of_effect_+%_per_20_int"]=1775,["area_of_effect_+%_per_25_rampage_stacks"]=3566,["area_of_effect_+%_per_50_strength"]=3663,["area_of_effect_+%_per_active_herald_of_light_minion"]=3664,["area_of_effect_+%_per_endurance_charge"]=3665,["area_of_effect_+%_per_enemy_killed_recently"]=3666,["area_of_effect_+%_while_fortified"]=3667,["area_of_effect_+%_while_totem_active"]=3668,["area_of_effect_+%_while_wielding_bow"]=3669,["area_of_effect_+%_while_wielding_staff"]=3670,["area_of_effect_+%_while_you_have_arcane_surge"]=3671,["area_of_effect_+%_with_500_or_more_strength"]=3672,["area_of_effect_+%_with_bow_skills"]=3673,["area_of_effect_+%_with_herald_skills"]=3674,["area_skill_accuracy_rating_+%"]=3675,["area_skill_knockback_chance_%"]=3676,["armageddon_brand_attached_target_fire_penetration_%"]=3677,["armageddon_brand_damage_+%"]=3678,["armageddon_brand_repeat_frequency_+%"]=3679,["armour_%_to_leech_as_life_on_block"]=1953,["armour_+%_if_enemy_not_killed_recently"]=3684,["armour_+%_while_bleeding"]=3685,["armour_+%_while_no_energy_shield"]=3686,["armour_+%_while_stationary"]=3687,["armour_+_while_affected_by_determination"]=3682,["armour_+_while_affected_by_guard_skill"]=3683,["armour_and_evasion_+%_while_fortified"]=3457,["armour_and_evasion_on_low_life_+%"]=2427,["armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently"]=3398,["armour_and_evasion_rating_+_while_fortified"]=3680,["armour_increased_by_uncapped_fire_resistance"]=3681,["armour_while_stationary"]=3510,["armour_while_you_do_not_have_avatar_of_fire"]=6610,["arrow_base_number_of_targets_to_pierce"]=1099,["arrow_critical_strike_chance_+%_max_as_distance_travelled_increases"]=3688,["arrow_damage_+%_max_as_distance_travelled_increases"]=3691,["arrow_damage_+%_vs_pierced_targets"]=3689,["arrow_damage_+50%_vs_pierced_targets"]=3690,["arrows_always_pierce_after_chaining"]=3503,["arrows_always_pierce_after_forking"]=3692,["arrows_pierce_additional_target"]=3693,["arrows_that_pierce_also_return"]=3694,["arrows_that_pierce_cause_bleeding"]=3501,["arrows_that_pierce_chance_to_bleed_25%"]=3502,["artillery_ballista_cross_strafe_pattern"]=3695,["artillery_ballista_fire_pen_+%"]=3696,["artillery_ballista_num_additional_arrows"]=3697,["ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final"]=3698,["aspect_of_the_avian_buff_effect_+%"]=3699,["aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies"]=3700,["aspect_of_the_spider_web_count_+"]=3701,["assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final"]=2654,["assassins_mark_curse_effect_+%"]=3221,["assassins_mark_duration_+%"]=3130,["attack_additional_critical_strike_chance_permyriad"]=3702,["attack_ailment_damage_+%"]=3703,["attack_ailment_damage_+%_while_dual_wielding"]=3704,["attack_ailment_damage_+%_while_holding_shield"]=583,["attack_ailment_damage_+%_while_wielding_axe"]=3705,["attack_ailment_damage_+%_while_wielding_bow"]=3706,["attack_ailment_damage_+%_while_wielding_claw"]=3707,["attack_ailment_damage_+%_while_wielding_dagger"]=3708,["attack_ailment_damage_+%_while_wielding_mace"]=3709,["attack_ailment_damage_+%_while_wielding_melee_weapon"]=3710,["attack_ailment_damage_+%_while_wielding_one_handed_weapon"]=3711,["attack_ailment_damage_+%_while_wielding_staff"]=3712,["attack_ailment_damage_+%_while_wielding_sword"]=3713,["attack_ailment_damage_+%_while_wielding_two_handed_weapon"]=3714,["attack_ailment_damage_+%_while_wielding_wand"]=3715,["attack_always_crit"]=2993,["attack_and_cast_speed_+%"]=1337,["attack_and_cast_speed_+%_during_flask_effect"]=3482,["attack_and_cast_speed_+%_during_onslaught"]=2245,["attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds"]=3719,["attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge"]=2742,["attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use"]=2689,["attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras"]=3276,["attack_and_cast_speed_+%_if_enemy_hit_recently"]=3720,["attack_and_cast_speed_+%_on_placing_totem"]=2419,["attack_and_cast_speed_+%_per_corpse_consumed_recently"]=3461,["attack_and_cast_speed_+%_per_endurance_charge"]=3721,["attack_and_cast_speed_+%_per_frenzy_charge"]=1339,["attack_and_cast_speed_+%_per_power_charge"]=3722,["attack_and_cast_speed_+%_per_summoned_raging_spirit"]=3723,["attack_and_cast_speed_+%_while_affected_by_a_herald"]=3724,["attack_and_cast_speed_+%_while_affected_by_a_mana_flask"]=3716,["attack_and_cast_speed_+%_while_affected_by_elusive"]=3717,["attack_and_cast_speed_+%_while_channelling"]=3725,["attack_and_cast_speed_+%_while_focused"]=3726,["attack_and_cast_speed_+%_while_leeching"]=3298,["attack_and_cast_speed_+%_while_leeching_energy_shield"]=3727,["attack_and_cast_speed_+%_while_on_consecrated_ground"]=3435,["attack_and_cast_speed_+%_while_totem_active"]=2818,["attack_and_cast_speed_+%_while_you_have_fortify"]=1548,["attack_and_cast_speed_+%_with_channelling_skills"]=3728,["attack_and_cast_speed_+%_with_chaos_skills"]=3729,["attack_and_cast_speed_+%_with_cold_skills"]=3730,["attack_and_cast_speed_+%_with_elemental_skills"]=3731,["attack_and_cast_speed_+%_with_fire_skills"]=3732,["attack_and_cast_speed_+%_with_lightning_skills"]=3733,["attack_and_cast_speed_+%_with_physical_skills"]=3734,["attack_and_cast_speed_+%_with_shield_skills"]=3735,["attack_and_cast_speed_per_ghost_dance_stack_+%"]=3718,["attack_and_cast_speed_when_hit_+%"]=2434,["attack_and_movement_speed_+%_final_per_challenger_charge"]=3736,["attack_and_movement_speed_+%_if_you_have_beast_minion"]=3519,["attack_and_movement_speed_+%_with_her_blessing"]=2497,["attack_and_spell_maximum_added_physical_damage_per_siphoning_charge"]=3532,["attack_and_spell_minimum_added_physical_damage_per_siphoning_charge"]=3532,["attack_area_of_effect_+%"]=3737,["attack_block_%_if_blocked_a_spell_recently"]=3738,["attack_block_%_while_at_max_endurance_charges"]=3739,["attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes"]=6611,["attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras"]=3277,["attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently"]=3740,["attack_critical_strike_chance_+%"]=3741,["attack_critical_strike_chance_+%_per_200_accuracy_rating"]=3742,["attack_critical_strike_damage_life_leech_permyriad"]=2982,["attack_damage_+%"]=572,["attack_damage_+%_for_4_seconds_on_cast"]=2747,["attack_damage_+%_if_other_ring_is_shaper_item"]=3520,["attack_damage_+%_per_450_evasion"]=2163,["attack_damage_+%_per_500_maximum_mana"]=3743,["attack_damage_+%_per_75_armour_or_evasion_on_shield"]=3746,["attack_damage_+%_per_explicit_map_mod_affecting_area"]=3744,["attack_damage_+%_per_frenzy_charge"]=2501,["attack_damage_+%_per_level"]=2178,["attack_damage_+%_vs_maimed_enemies"]=3747,["attack_damage_+%_while_affected_by_precision"]=3748,["attack_damage_+%_while_channelling"]=3749,["attack_damage_+%_while_holding_a_shield"]=580,["attack_damage_+%_while_leeching"]=3750,["attack_damage_+%_while_onslaught_active"]=2506,["attack_damage_+%_while_you_have_fortify"]=3751,["attack_damage_+%_with_channelling_skills"]=3752,["attack_damage_+1%_per_300_of_min_of_armour_or_evasion"]=3745,["attack_damage_that_stuns_also_chills"]=2227,["attack_damage_vs_bleeding_enemies_+%"]=1727,["attack_dodge_%_from_cursed_enemies"]=3753,["attack_dodge_%_while_channelling"]=3754,["attack_ignite_chance_%"]=1916,["attack_maximum_added_chaos_damage"]=744,["attack_maximum_added_chaos_damage_if_you_have_beast_minion"]=3518,["attack_maximum_added_cold_damage"]=729,["attack_maximum_added_cold_damage_with_axes"]=1362,["attack_maximum_added_cold_damage_with_bows"]=1363,["attack_maximum_added_cold_damage_with_claws"]=1364,["attack_maximum_added_cold_damage_with_daggers"]=1365,["attack_maximum_added_cold_damage_with_maces"]=1366,["attack_maximum_added_cold_damage_with_staves"]=1367,["attack_maximum_added_cold_damage_with_swords"]=1368,["attack_maximum_added_cold_damage_with_wand"]=1360,["attack_maximum_added_fire_damage"]=722,["attack_maximum_added_fire_damage_per_10_strength"]=3755,["attack_maximum_added_fire_damage_with_axes"]=1369,["attack_maximum_added_fire_damage_with_bow"]=1370,["attack_maximum_added_fire_damage_with_claws"]=1371,["attack_maximum_added_fire_damage_with_daggers"]=1372,["attack_maximum_added_fire_damage_with_maces"]=1373,["attack_maximum_added_fire_damage_with_staves"]=1374,["attack_maximum_added_fire_damage_with_swords"]=1375,["attack_maximum_added_fire_damage_with_wand"]=1359,["attack_maximum_added_lightning_damage"]=738,["attack_maximum_added_lightning_damage_per_10_int"]=3757,["attack_maximum_added_lightning_damage_while_unarmed"]=1678,["attack_maximum_added_lightning_damage_with_axes"]=1376,["attack_maximum_added_lightning_damage_with_bows"]=1377,["attack_maximum_added_lightning_damage_with_claws"]=1378,["attack_maximum_added_lightning_damage_with_daggers"]=1379,["attack_maximum_added_lightning_damage_with_maces"]=1380,["attack_maximum_added_lightning_damage_with_staves"]=1381,["attack_maximum_added_lightning_damage_with_swords"]=1382,["attack_maximum_added_lightning_damage_with_wand"]=1358,["attack_maximum_added_physical_damage"]=632,["attack_maximum_added_physical_damage_if_have_crit_recently"]=3758,["attack_maximum_added_physical_damage_if_you_have_beast_minion"]=3517,["attack_maximum_added_physical_damage_per_25_dexterity"]=2617,["attack_maximum_added_physical_damage_per_level"]=3759,["attack_maximum_added_physical_damage_while_holding_a_shield"]=1383,["attack_maximum_added_physical_damage_while_unarmed"]=1384,["attack_maximum_added_physical_damage_with_axes"]=1385,["attack_maximum_added_physical_damage_with_bow"]=1361,["attack_maximum_added_physical_damage_with_claws"]=1386,["attack_maximum_added_physical_damage_with_daggers"]=1387,["attack_maximum_added_physical_damage_with_maces"]=1388,["attack_maximum_added_physical_damage_with_staves"]=1389,["attack_maximum_added_physical_damage_with_swords"]=1390,["attack_maximum_added_physical_damage_with_wands"]=1391,["attack_maximum_added_physical_damage_with_weapons"]=633,["attack_minimum_added_chaos_damage"]=744,["attack_minimum_added_chaos_damage_if_you_have_beast_minion"]=3518,["attack_minimum_added_cold_damage"]=729,["attack_minimum_added_cold_damage_with_axes"]=1362,["attack_minimum_added_cold_damage_with_bows"]=1363,["attack_minimum_added_cold_damage_with_claws"]=1364,["attack_minimum_added_cold_damage_with_daggers"]=1365,["attack_minimum_added_cold_damage_with_maces"]=1366,["attack_minimum_added_cold_damage_with_staves"]=1367,["attack_minimum_added_cold_damage_with_swords"]=1368,["attack_minimum_added_cold_damage_with_wand"]=1360,["attack_minimum_added_fire_damage"]=722,["attack_minimum_added_fire_damage_per_10_strength"]=3755,["attack_minimum_added_fire_damage_with_axes"]=1369,["attack_minimum_added_fire_damage_with_bow"]=1370,["attack_minimum_added_fire_damage_with_claws"]=1371,["attack_minimum_added_fire_damage_with_daggers"]=1372,["attack_minimum_added_fire_damage_with_maces"]=1373,["attack_minimum_added_fire_damage_with_staves"]=1374,["attack_minimum_added_fire_damage_with_swords"]=1375,["attack_minimum_added_fire_damage_with_wand"]=1359,["attack_minimum_added_lightning_damage"]=738,["attack_minimum_added_lightning_damage_per_10_int"]=3757,["attack_minimum_added_lightning_damage_while_unarmed"]=1678,["attack_minimum_added_lightning_damage_with_axes"]=1376,["attack_minimum_added_lightning_damage_with_bows"]=1377,["attack_minimum_added_lightning_damage_with_claws"]=1378,["attack_minimum_added_lightning_damage_with_daggers"]=1379,["attack_minimum_added_lightning_damage_with_maces"]=1380,["attack_minimum_added_lightning_damage_with_staves"]=1381,["attack_minimum_added_lightning_damage_with_swords"]=1382,["attack_minimum_added_lightning_damage_with_wand"]=1358,["attack_minimum_added_physical_damage"]=632,["attack_minimum_added_physical_damage_if_have_crit_recently"]=3758,["attack_minimum_added_physical_damage_if_you_have_beast_minion"]=3517,["attack_minimum_added_physical_damage_per_25_dexterity"]=2617,["attack_minimum_added_physical_damage_per_level"]=3759,["attack_minimum_added_physical_damage_while_holding_a_shield"]=1383,["attack_minimum_added_physical_damage_while_unarmed"]=1384,["attack_minimum_added_physical_damage_with_axes"]=1385,["attack_minimum_added_physical_damage_with_bow"]=1361,["attack_minimum_added_physical_damage_with_claws"]=1386,["attack_minimum_added_physical_damage_with_daggers"]=1387,["attack_minimum_added_physical_damage_with_maces"]=1388,["attack_minimum_added_physical_damage_with_staves"]=1389,["attack_minimum_added_physical_damage_with_swords"]=1390,["attack_minimum_added_physical_damage_with_wands"]=1391,["attack_minimum_added_physical_damage_with_weapons"]=633,["attack_physical_damage_%_to_add_as_cold"]=2990,["attack_physical_damage_%_to_add_as_fire"]=2989,["attack_physical_damage_%_to_add_as_lightning"]=2991,["attack_projectiles_return"]=2041,["attack_projectiles_return_if_no_hit_object"]=2041,["attack_repeat_count"]=1186,["attack_skill_additional_num_projectiles_while_wielding_claws_daggers"]=3761,["attack_skill_ailment_damage_+%_while_wielding_axes_swords"]=3762,["attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem"]=1931,["attack_skills_additional_ballista_totems_allowed"]=3452,["attack_skills_additional_totems_allowed"]=3453,["attack_skills_damage_+%_while_dual_wielding"]=641,["attack_skills_damage_+%_while_holding_shield"]=581,["attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana"]=3763,["attack_speed_+%"]=765,["attack_speed_+%_during_flask_effect"]=2515,["attack_speed_+%_final_per_blitz_charge"]=3765,["attack_speed_+%_for_4_seconds_on_attack"]=2748,["attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently"]=3766,["attack_speed_+%_if_enemy_killed_recently"]=3767,["attack_speed_+%_if_enemy_not_killed_recently"]=3440,["attack_speed_+%_if_have_been_hit_recently"]=3768,["attack_speed_+%_if_have_blocked_recently"]=3769,["attack_speed_+%_if_have_crit_recently"]=3770,["attack_speed_+%_if_rare_or_unique_enemy_nearby"]=3771,["attack_speed_+%_if_you_have_at_least_600_strength"]=3772,["attack_speed_+%_per_10_dex"]=1776,["attack_speed_+%_per_200_accuracy_rating"]=3445,["attack_speed_+%_per_25_dex"]=3773,["attack_speed_+%_per_explicit_map_mod_affecting_area"]=3764,["attack_speed_+%_per_frenzy_charge"]=1338,["attack_speed_+%_when_hit"]=2415,["attack_speed_+%_when_on_full_life"]=595,["attack_speed_+%_when_on_low_life"]=594,["attack_speed_+%_while_affected_by_precision"]=3774,["attack_speed_+%_while_holding_shield"]=772,["attack_speed_+%_while_ignited"]=2158,["attack_speed_+%_while_leeching"]=2422,["attack_speed_+%_with_channelling_skills"]=3775,["attack_speed_+%_with_movement_skills"]=787,["attack_speed_while_dual_wielding_+%"]=770,["attack_speed_while_fortified_+%"]=2430,["attacks_bleed_on_hit_while_you_have_cat_stealth"]=3776,["attacks_bleed_on_stun"]=1721,["attacks_cause_bleeding_vs_cursed_enemies"]=3777,["attacks_chance_to_bleed_25%_vs_cursed_enemies"]=3779,["attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies"]=3780,["attacks_chance_to_blind_on_hit_%"]=3781,["attacks_chance_to_poison_%_on_max_frenzy_charges"]=1344,["attacks_chance_to_taunt_on_hit_%"]=3782,["attacks_deal_no_physical_damage"]=1716,["attacks_do_not_cost_mana"]=1179,["attacks_impale_on_hit_%_chance"]=3783,["attacks_intimidate_on_hit_%"]=3784,["attacks_num_of_additional_chains"]=3339,["attacks_num_of_additional_chains_when_in_main_hand"]=3403,["attacks_number_of_additional_projectiles"]=3404,["attacks_number_of_additional_projectiles_when_in_off_hand"]=3405,["attacks_poison_while_at_max_frenzy_charges"]=1343,["attacks_use_life_in_place_of_mana"]=2425,["attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity"]=3785,["attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity"]=3785,["aura_effect_+%"]=2036,["aura_effect_on_self_+%"]=1430,["aura_effect_on_you_+%_per_herald_effecting_you"]=3786,["aura_grant_shield_defences_to_nearby_allies"]=2679,["aura_melee_physical_damage_+%_per_10_strength"]=2665,["auras_grant_additional_physical_damage_reduction_%_to_you_and_your_allies"]=2674,["auras_grant_attack_and_cast_speed_+%_to_you_and_your_allies"]=2675,["auras_grant_damage_+%_to_you_and_your_allies"]=2673,["avatar_of_fire_rotation_active"]=6598,["avians_flight_duration_ms_+"]=3787,["avians_might_duration_ms_+"]=3788,["avoid_ailments_%_from_crit"]=3789,["avoid_ailments_%_on_consecrated_ground"]=2769,["avoid_ailments_%_while_holding_shield"]=3790,["avoid_all_elemental_ailment_%_per_summoned_golem"]=3791,["avoid_all_elemental_status_%"]=1138,["avoid_blind_%"]=1807,["avoid_chained_projectile_%_chance"]=3792,["avoid_chaos_damage_%"]=2600,["avoid_chill_%"]=1134,["avoid_cold_damage_%"]=2598,["avoid_corrupted_blood_%_chance"]=3793,["avoid_elemental_damage_%_per_frenzy_charge"]=2596,["avoid_elemental_damage_chance_%_during_soul_gain_prevention"]=3794,["avoid_elemental_damage_while_phasing_%"]=3795,["avoid_fire_damage_%"]=2597,["avoid_freeze_%"]=1135,["avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently"]=3796,["avoid_freeze_chill_ignite_%_while_have_onslaught"]=2254,["avoid_freeze_chill_ignite_%_with_her_blessing"]=2496,["avoid_freeze_shock_ignite_bleed_%_during_flask_effect"]=3293,["avoid_ignite_%"]=1136,["avoid_ignite_%_when_on_low_life"]=1142,["avoid_interruption_while_casting_%"]=1185,["avoid_knockback_%"]=876,["avoid_lightning_damage_%"]=2599,["avoid_maim_%_chance"]=3797,["avoid_physical_damage_%"]=2595,["avoid_projectiles_while_phasing_%_chance"]=3798,["avoid_shock_%"]=1137,["avoid_shock_%_while_chilled"]=3799,["avoid_status_ailments_%_during_flask_effect"]=2514,["avoid_stun_%"]=1145,["avoid_stun_%_for_4_seconds_on_kill"]=2549,["avoid_stun_%_while_channelling"]=3801,["avoid_stun_%_while_holding_shield"]=3802,["avoid_stun_35%_per_active_herald"]=3800,["axe_accuracy_rating"]=1300,["axe_accuracy_rating_+%"]=793,["axe_ailment_damage_+%"]=667,["axe_attack_speed_+%"]=775,["axe_critical_strike_chance_+%"]=828,["axe_critical_strike_multiplier_+"]=850,["axe_damage_+%"]=664,["axe_hit_and_ailment_damage_+%"]=665,["axe_or_sword_ailment_damage_+%"]=714,["axe_or_sword_hit_and_ailment_damage_+%"]=713,["ball_lightning_damage_+%"]=2382,["ball_lightning_number_of_additional_projectiles"]=3803,["ball_lightning_projectile_speed_+%"]=3103,["ball_lightning_radius_+%"]=3037,["banner_adrenaline_duration_+%"]=3805,["banner_fortify_duration_+%"]=3806,["banner_mana_reservation_+%"]=3807,["banner_skills_reserve_no_mana"]=3808,["barrage_attack_speed_+%"]=3072,["barrage_damage_+%"]=2876,["barrage_final_volley_fires_x_additional_projectiles_simultaneously"]=2480,["barrage_num_of_additional_projectiles"]=3161,["base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3001,["base_actor_scale_+%"]=1347,["base_additional_physical_damage_reduction_%"]=1553,["base_ailment_damage_+%"]=3809,["base_all_ailment_duration_+%"]=1154,["base_all_damage_can_cause_elemental_ailments_you_are_suffering_from"]=2077,["base_always_inflict_elemental_ailments_you_are_suffering_from"]=3810,["base_arrow_speed_+%"]=1103,["base_arrows_always_pierce"]=3811,["base_attack_speed_+%_per_frenzy_charge"]=1340,["base_aura_area_of_effect_+%"]=1513,["base_avoid_bleed_%"]=3423,["base_avoid_chill_%"]=1139,["base_avoid_chill_%_while_have_onslaught"]=2246,["base_avoid_freeze_%"]=1140,["base_avoid_ignite_%"]=1141,["base_avoid_poison_%"]=1144,["base_avoid_projectiles_%_chance"]=3812,["base_avoid_shock_%"]=1143,["base_avoid_stun_%"]=1146,["base_bleed_duration_+%"]=3813,["base_bone_golem_granted_buff_effect_+%"]=3814,["base_can_only_have_one_permanent_aura"]=3815,["base_cannot_be_stunned"]=1461,["base_cannot_evade"]=1202,["base_cannot_gain_bleeding"]=3422,["base_cannot_gain_endurance_charges"]=3816,["base_cannot_leech"]=1704,["base_cannot_leech_life"]=1799,["base_cannot_leech_mana"]=1800,["base_cast_speed_+%"]=801,["base_chance_to_dodge_%"]=1451,["base_chance_to_dodge_spells_%"]=1452,["base_chance_to_freeze_%"]=1319,["base_chance_to_ignite_%"]=1316,["base_chance_to_poison_on_hit_%"]=2387,["base_chance_to_shock_%"]=1323,["base_chaos_damage_%_of_maximum_life_taken_per_minute"]=1230,["base_chaos_damage_resistance_%"]=972,["base_chaos_damage_taken_per_minute"]=1231,["base_chaos_golem_granted_buff_effect_+%"]=3310,["base_cold_damage_%_to_convert_to_chaos"]=1253,["base_cold_damage_%_to_convert_to_fire"]=1252,["base_cold_damage_can_poison"]=2078,["base_cold_damage_heals"]=2251,["base_cold_damage_resistance_%"]=963,["base_cold_immunity"]=3312,["base_cooldown_speed_+%"]=3818,["base_critical_strike_chance_while_unarmed_%"]=2778,["base_critical_strike_multiplier_+"]=844,["base_curse_duration_+%"]=1090,["base_damage_removed_from_mana_before_life_%"]=1913,["base_damage_taken_+%"]=1520,["base_deal_no_chaos_damage"]=3819,["base_deal_no_physical_damage"]=2007,["base_elemental_damage_heals"]=2253,["base_elemental_status_ailment_duration_+%"]=1155,["base_enemy_critical_strike_chance_+%_against_self"]=2344,["base_energy_shield_gained_on_enemy_death"]=1803,["base_energy_shield_leech_from_chaos_damage_permyriad"]=3820,["base_energy_shield_leech_from_cold_damage_permyriad"]=3821,["base_energy_shield_leech_from_elemental_damage_permyriad"]=3822,["base_energy_shield_leech_from_fire_damage_permyriad"]=3823,["base_energy_shield_leech_from_lightning_damage_permyriad"]=3824,["base_energy_shield_leech_from_physical_damage_permyriad"]=3825,["base_energy_shield_leech_from_spell_damage_permyriad"]=1033,["base_energy_shield_regeneration_rate_per_minute"]=1865,["base_energy_shield_regeneration_rate_per_minute_%"]=1866,["base_evasion_rating"]=888,["base_fire_damage_%_to_convert_to_chaos"]=1254,["base_fire_damage_%_to_convert_to_chaos_60%_value"]=1255,["base_fire_damage_can_poison"]=2079,["base_fire_damage_heals"]=2250,["base_fire_damage_resistance_%"]=957,["base_fire_elemental_maximum_life_+%"]=1080,["base_fire_golem_granted_buff_effect_+%"]=3307,["base_fire_hit_damage_taken_%_as_physical"]=1685,["base_fire_hit_damage_taken_%_as_physical_value_negated"]=1686,["base_fire_immunity"]=939,["base_frenzy_charge_duration_+%"]=1413,["base_global_chance_to_knockback_%"]=1288,["base_ice_golem_granted_buff_effect_+%"]=3308,["base_ignite_proliferation_radius"]=1511,["base_immune_to_ignite"]=3826,["base_immune_to_shock"]=3827,["base_inflict_cold_exposure_on_hit_%_chance"]=3828,["base_inflict_fire_exposure_on_hit_%_chance"]=3829,["base_inflict_lightning_exposure_on_hit_%_chance"]=3830,["base_item_found_quantity_+%"]=926,["base_item_found_rarity_+%"]=930,["base_killed_monster_dropped_item_quantity_+%"]=1306,["base_killed_monster_dropped_item_rarity_+%"]=1305,["base_leech_is_instant_on_critical"]=1770,["base_life_gain_per_target"]=1051,["base_life_gained_on_enemy_death"]=1059,["base_life_gained_on_spell_hit"]=1050,["base_life_leech_applies_recovery_to_energy_shield"]=3831,["base_life_leech_from_attack_damage_permyriad"]=992,["base_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"]=1009,["base_life_leech_from_chaos_damage_permyriad"]=1001,["base_life_leech_from_cold_damage_permyriad"]=998,["base_life_leech_from_elemental_damage_permyriad"]=1003,["base_life_leech_from_fire_damage_permyriad"]=996,["base_life_leech_from_lightning_damage_permyriad"]=1000,["base_life_leech_from_physical_damage_permyriad"]=994,["base_life_leech_from_spell_damage_permyriad"]=991,["base_life_leech_is_instant"]=1768,["base_life_leech_permyriad_vs_frozen_enemies"]=1007,["base_life_leech_permyriad_vs_shocked_enemies"]=1005,["base_life_regeneration_rate_per_minute"]=916,["base_lightning_damage_%_to_convert_to_chaos"]=1250,["base_lightning_damage_%_to_convert_to_chaos_60%_value"]=1251,["base_lightning_damage_%_to_convert_to_cold"]=1249,["base_lightning_damage_%_to_convert_to_fire"]=1248,["base_lightning_damage_can_poison"]=2080,["base_lightning_damage_heals"]=2252,["base_lightning_damage_resistance_%"]=968,["base_lightning_golem_granted_buff_effect_+%"]=3309,["base_lightning_immunity"]=3313,["base_main_hand_damage_+%"]=646,["base_mana_cost_-%"]=1175,["base_mana_gained_on_enemy_death"]=1072,["base_mana_leech_from_attack_damage_permyriad"]=1020,["base_mana_leech_from_chaos_damage_permyriad"]=1026,["base_mana_leech_from_cold_damage_permyriad"]=1023,["base_mana_leech_from_elemental_damage_permyriad"]=1027,["base_mana_leech_from_fire_damage_permyriad"]=1022,["base_mana_leech_from_lightning_damage_permyriad"]=1025,["base_mana_leech_from_physical_damage_permyriad"]=1021,["base_mana_leech_from_spell_damage_permyriad"]=1019,["base_mana_leech_permyriad_vs_shocked_enemies"]=1029,["base_mana_regeneration_rate_per_minute"]=921,["base_mana_reservation_+%"]=1515,["base_maximum_chaos_damage_resistance_%"]=971,["base_maximum_cold_damage_resistance_%"]=961,["base_maximum_energy_shield"]=901,["base_maximum_energy_shield_per_blue_socket_on_item"]=1940,["base_maximum_fire_damage_resistance_%"]=955,["base_maximum_life"]=911,["base_maximum_life_per_red_socket_on_item"]=1932,["base_maximum_lightning_damage_on_charge_expiry"]=1789,["base_maximum_lightning_damage_resistance_%"]=966,["base_maximum_mana"]=918,["base_maximum_mana_per_green_socket_on_item"]=1936,["base_maximum_spell_block_%"]=1283,["base_minimum_endurance_charges"]=1109,["base_minimum_frenzy_charges"]=1111,["base_minimum_lightning_damage_on_charge_expiry"]=1789,["base_minimum_power_charges"]=1113,["base_minion_duration_+%"]=3832,["base_movement_velocity_+%"]=1104,["base_number_of_additional_arrows"]=1101,["base_number_of_champions_of_light_allowed"]=3833,["base_number_of_essence_spirits_allowed"]=398,["base_number_of_golems_allowed"]=2905,["base_number_of_herald_scorpions_allowed"]=3834,["base_number_of_raging_spirits_allowed"]=1449,["base_number_of_relics_allowed"]=3835,["base_number_of_remote_mines_allowed"]=1535,["base_number_of_sigils_allowed_per_target"]=3836,["base_number_of_skeletons_allowed"]=1448,["base_number_of_spectres_allowed"]=1447,["base_number_of_totems_allowed"]=1533,["base_number_of_traps_allowed"]=1534,["base_number_of_zombies_allowed"]=1446,["base_off_hand_attack_speed_+%"]=771,["base_penetrate_elemental_resistances_%"]=2772,["base_physical_damage_%_to_convert_to_chaos"]=1246,["base_physical_damage_%_to_convert_to_cold"]=1242,["base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred"]=3838,["base_physical_damage_%_to_convert_to_fire"]=1240,["base_physical_damage_%_to_convert_to_fire_while_affected_by_anger"]=3839,["base_physical_damage_%_to_convert_to_lightning"]=1244,["base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath"]=3840,["base_physical_damage_over_time_taken_+%"]=3837,["base_physical_damage_reduction_and_evasion_rating"]=3475,["base_physical_damage_reduction_rating"]=882,["base_poison_damage_+%"]=2395,["base_poison_duration_+%"]=2384,["base_projectile_speed_+%"]=1102,["base_raven_maximum_life_+%"]=1081,["base_reduce_enemy_cold_resistance_%"]=2201,["base_reduce_enemy_fire_resistance_%"]=2200,["base_reduce_enemy_lightning_resistance_%"]=2202,["base_remove_elemental_ailments_from_you_when_you_inflict_them"]=6211,["base_resist_all_elements_%"]=951,["base_self_chill_duration_-%"]=1166,["base_self_critical_strike_multiplier_-%"]=867,["base_self_freeze_duration_-%"]=1168,["base_self_ignite_duration_-%"]=1169,["base_self_shock_duration_-%"]=1167,["base_shock_proliferation_radius"]=1512,["base_skill_area_of_effect_+%"]=1174,["base_spectre_maximum_life_+%"]=1078,["base_spell_block_%"]=544,["base_spell_block_luck"]=543,["base_spell_critical_strike_chance"]=811,["base_spell_critical_strike_multiplier_+"]=847,["base_steal_power_frenzy_endurance_charges_on_hit_%"]=2209,["base_stone_golem_granted_buff_effect_+%"]=3306,["base_stun_duration_+%"]=1157,["base_stun_recovery_+%"]=1187,["base_stun_threshold_reduction_+%"]=871,["base_total_number_of_sigils_allowed"]=3841,["base_unaffected_by_poison"]=3842,["base_zombie_maximum_life_+%"]=1079,["bear_trap_additional_damage_taken_+%_from_traps_and_mines"]=3843,["bear_trap_cooldown_speed_+%"]=3090,["bear_trap_damage_+%"]=2921,["bear_trap_damage_taken_+%_from_traps_and_mines"]=3844,["bear_trap_movement_speed_+%_final"]=3845,["berserk_buff_effect_+%"]=3846,["berserk_rage_loss_+%"]=3847,["berserker_damage_+%_final"]=3266,["berserker_gain_rage_on_attack_hit_cooldown_ms"]=3848,["berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies"]=3849,["berserker_warcry_grant_damage_+%_to_you_and_nearby_allies"]=3850,["blade_blase_damage_+%"]=3851,["blade_blast_skill_area_of_effect_+%"]=3852,["blade_blast_trigger_detonation_area_of_effect_+%"]=3853,["blade_vortex_critical_strike_multiplier_+_per_blade"]=3854,["blade_vortex_damage_+%"]=2944,["blade_vortex_duration_+%"]=3137,["blade_vortex_radius_+%"]=3054,["bladefall_critical_strike_chance_+%"]=3156,["bladefall_damage_+%"]=2945,["bladefall_number_of_volleys"]=3855,["bladefall_radius_+%"]=3055,["bladestorm_damage_+%"]=3856,["bladestorm_maximum_number_of_storms_allowed"]=3857,["bladestorm_sandstorm_movement_speed_+%"]=3858,["blast_rain_%_chance_for_additional_blast"]=3318,["blast_rain_damage_+%"]=2941,["blast_rain_number_of_blasts"]=3203,["blast_rain_radius_+%"]=3051,["blast_rain_single_additional_projectile"]=3204,["bleed_damage_+%_per_endurance_charge"]=3859,["bleed_damage_+%_vs_maimed_enemies_final"]=3455,["bleed_duration_per_12_intelligence_+%"]=3013,["bleed_on_bow_attack_chance_%"]=1725,["bleed_on_crit_%_with_attacks"]=1722,["bleed_on_hit_with_attacks_%"]=1726,["bleed_on_melee_attack_chance_%"]=1724,["bleed_on_melee_crit_chance_%"]=1723,["bleed_on_melee_critical_strike"]=3487,["bleeding_damage_+%"]=2383,["bleeding_damage_+%_vs_maimed_enemies"]=3860,["bleeding_damage_+%_vs_poisoned_enemies"]=3861,["bleeding_damage_on_self_converted_to_chaos"]=1690,["bleeding_dot_multiplier_+"]=618,["bleeding_dot_multiplier_+_vs_poisoned_enemies"]=3862,["bleeding_enemies_explode_for_%_life_as_physical_damage"]=2696,["bleeding_monsters_movement_velocity_+%"]=2181,["bleeding_reflected_to_self"]=3863,["bleeding_stacks_up_to_x_times"]=3864,["blight_arc_tower_additional_chains"]=3865,["blight_arc_tower_additional_repeats"]=3866,["blight_arc_tower_damage_+%"]=3867,["blight_arc_tower_range_+%"]=3868,["blight_chilling_tower_chill_effect_+%"]=3869,["blight_chilling_tower_damage_+%"]=3870,["blight_chilling_tower_duration_+%"]=3871,["blight_chilling_tower_freeze_for_ms"]=3872,["blight_chilling_tower_range_+%"]=3873,["blight_damage_+%"]=2954,["blight_duration_+%"]=3139,["blight_empowering_tower_buff_effect_+%"]=3874,["blight_empowering_tower_grant_%_chance_to_deal_double_damage"]=3877,["blight_empowering_tower_grant_cast_speed_+%"]=3875,["blight_empowering_tower_grant_damage_+%"]=3876,["blight_empowering_tower_range_+%"]=3878,["blight_fireball_tower_additional_projectiles_+"]=3879,["blight_fireball_tower_cast_speed_+%"]=3880,["blight_fireball_tower_damage_+%"]=3881,["blight_fireball_tower_projectiles_nova"]=3882,["blight_fireball_tower_range_+%"]=3883,["blight_flamethrower_tower_cast_speed_+%"]=3884,["blight_flamethrower_tower_damage_+%"]=3885,["blight_flamethrower_tower_full_damage_fire_enemies"]=3886,["blight_flamethrower_tower_range_+%"]=3887,["blight_freezebolt_tower_damage_+%"]=3888,["blight_freezebolt_tower_full_damage_cold_enemies"]=3889,["blight_freezebolt_tower_projectiles_+"]=3890,["blight_freezebolt_tower_range_+%"]=3891,["blight_glacialcage_tower_cooldown_recovery_+%"]=3892,["blight_glacialcage_tower_duration_+%"]=3893,["blight_glacialcage_tower_enemy_damage_taken_+%"]=3894,["blight_glacialcage_tower_range_+%"]=3895,["blight_hinder_enemy_chaos_damage_taken_+%"]=3896,["blight_imbuing_tower_buff_effect_+%"]=3897,["blight_imbuing_tower_grant_critical_strike_+%"]=3898,["blight_imbuing_tower_grant_damage_+%"]=3899,["blight_imbuing_tower_range_+%"]=3900,["blight_lightningstorm_tower_area_of_effect_+%"]=3901,["blight_lightningstorm_tower_damage_+%"]=3902,["blight_lightningstorm_tower_delay_+%"]=3903,["blight_lightningstorm_tower_range_+%"]=3904,["blight_meteor_tower_additional_meteor_+"]=3905,["blight_meteor_tower_always_stun"]=3906,["blight_meteor_tower_damage_+%"]=3907,["blight_meteor_tower_range_+%"]=3908,["blight_radius_+%"]=3060,["blight_scout_tower_minion_damage_+%"]=3909,["blight_scout_tower_minion_life_+%"]=3910,["blight_scout_tower_minion_movement_speed_+%"]=3911,["blight_scout_tower_range_+%"]=3912,["blight_secondary_skill_effect_duration_+%"]=3913,["blight_seismic_tower_additional_cascades_+"]=3914,["blight_seismic_tower_cascade_range_+%"]=3915,["blight_seismic_tower_damage_+%"]=3916,["blight_seismic_tower_range_+%"]=3917,["blight_seismic_tower_stun_duration_+%"]=3918,["blight_sentinel_tower_minion_damage_+%"]=3919,["blight_sentinel_tower_minion_life_+%"]=3920,["blight_sentinel_tower_minion_movement_speed_+%"]=3921,["blight_sentinel_tower_range_+%"]=3922,["blight_shocking_tower_damage_+%"]=3923,["blight_shocking_tower_range_+%"]=3924,["blight_shocknova_tower_full_damage_lightning_enemies"]=3925,["blight_shocknova_tower_shock_additional_repeats"]=3926,["blight_shocknova_tower_shock_effect_+%"]=3927,["blight_shocknova_tower_shock_repeats_with_area_effect_+%"]=3928,["blight_skill_area_of_effect_+%_after_1_second_channelling"]=3929,["blight_smothering_tower_buff_effect_+%"]=3930,["blight_smothering_tower_grant_damage_+%"]=3931,["blight_smothering_tower_grant_movement_speed_+%"]=3932,["blight_smothering_tower_range_+%"]=3933,["blight_stonegaze_tower_cooldown_recovery_+%"]=3934,["blight_stonegaze_tower_duration_+%"]=3935,["blight_stonegaze_tower_petrify_tick_speed_+%"]=3936,["blight_stonegaze_tower_range_+%"]=3937,["blight_summoning_tower_minion_damage_+%"]=3938,["blight_summoning_tower_minion_life_+%"]=3939,["blight_summoning_tower_minion_movement_speed_+%"]=3940,["blight_summoning_tower_minions_summoned_+"]=3941,["blight_summoning_tower_range_+%"]=3942,["blight_temporal_tower_buff_effect_+%"]=3943,["blight_temporal_tower_grant_you_action_speed_-%"]=3944,["blight_temporal_tower_range_+%"]=3945,["blight_temporal_tower_tick_speed_+%"]=3946,["blight_tertiary_skill_effect_duration"]=3947,["blight_tower_arc_damage_+%"]=3948,["blight_tower_chilling_cost_+%"]=3949,["blight_tower_fireball_additional_projectile"]=3950,["blighted_map_chest_reward_lucky_count"]=3951,["blighted_map_tower_damage_+%_final"]=3952,["blind_chilled_enemies_on_hit_%"]=3953,["blind_duration_+%"]=2653,["blind_enemies_when_hit_%_chance"]=3954,["blind_enemies_when_hit_while_affected_by_grace_%_chance"]=3955,["blind_nearby_enemies_when_gaining_her_blessing_%"]=2495,["blind_nearby_enemies_when_ignited_%"]=2258,["blink_and_mirror_arrow_cooldown_speed_+%"]=3956,["blink_arrow_and_blink_arrow_clone_attack_speed_+%"]=3079,["blink_arrow_and_blink_arrow_clone_damage_+%"]=2934,["blink_arrow_cooldown_speed_+%"]=3095,["block_%_if_blocked_an_attack_recently"]=3958,["block_%_while_affected_by_determination"]=3959,["block_causes_monster_flee_%"]=2175,["block_chance_%_per_50_strength"]=537,["block_chance_%_vs_taunted_enemies"]=3395,["block_chance_%_while_holding_shield"]=3957,["block_chance_+%"]=548,["block_chance_on_damage_taken_%"]=2431,["block_recovery_+%"]=549,["block_spells_chance_%_while_holding_shield"]=3960,["block_while_dual_wielding_%"]=545,["block_while_dual_wielding_claws_%"]=546,["blood_footprints_from_item"]=6613,["blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill"]=3315,["blood_rage_grants_additional_attack_speed_+%"]=3314,["blood_sand_armour_mana_reservation_+%"]=3961,["blood_sand_stance_buff_effect_+%"]=3962,["blood_spears_area_of_effect_+%"]=3963,["blood_spears_base_number_of_spears"]=3964,["blood_spears_damage_+%"]=3965,["blood_spears_damage_+%_final_in_blood_stance"]=3966,["bone_golem_damage_+%"]=3967,["bone_golem_elemental_resistances_%"]=3968,["bone_lance_cast_speed_+%"]=3969,["bone_lance_damage_+%"]=3970,["bone_offering_block_chance_+%"]=3330,["bone_offering_duration_+%"]=3113,["bow_accuracy_rating"]=1298,["bow_accuracy_rating_+%"]=798,["bow_ailment_damage_+%"]=697,["bow_attack_speed_+%"]=780,["bow_critical_strike_chance_+%"]=821,["bow_critical_strike_multiplier_+"]=851,["bow_damage_+%"]=694,["bow_elemental_damage_+%"]=700,["bow_enemy_block_-%"]=1190,["bow_hit_and_ailment_damage_+%"]=695,["bow_physical_damage_+%_while_holding_shield"]=1281,["bow_steal_power_frenzy_endurance_charges_on_hit_%"]=2167,["bow_stun_duration_+%"]=1159,["bow_stun_threshold_reduction_+%"]=873,["buff_affects_party"]=1094,["buff_auras_dont_affect_allies"]=2236,["buff_duration_+%"]=1088,["buff_effect_+%_on_low_energy_shield"]=3971,["buff_effect_on_self_+%"]=1429,["buff_party_effect_radius_+%"]=1095,["burn_damage_+%"]=1171,["burning_arrow_additional_ignite_stacks"]=3972,["burning_arrow_cannot_inflict_additional_burning_debuff_with_ignite"]=3973,["burning_arrow_damage_+%"]=2843,["burning_arrow_debuff_effect_+%"]=3974,["burning_arrow_ignite_chance_%"]=3168,["burning_arrow_physical_damage_%_to_add_as_fire_damage"]=3169,["burning_arrow_spread_burning_ground_when_igniting_enemy_on_hit_%"]=2581,["burning_arrow_spread_tar_ground_when_not_igniting_enemy_on_hit_%"]=2582,["burning_damage_+%_if_ignited_an_enemy_recently"]=3497,["burning_damage_+%_per_non_shocked_enemy_shocked_recently"]=3975,["burning_damage_taken_+%"]=1780,["burning_ground_effect_on_self_+%"]=1436,["can_catch_corrupted_fish"]=2072,["can_catch_exotic_fish"]=2071,["can_inflict_multiple_ignites"]=1826,["cannot_be_affected_by_flasks"]=2962,["cannot_be_blinded"]=2193,["cannot_be_blinded_while_affected_by_precision"]=3976,["cannot_be_chilled_or_frozen_while_ice_golem_summoned"]=3977,["cannot_be_chilled_or_frozen_while_moving"]=3978,["cannot_be_cursed_with_silence"]=2309,["cannot_be_damaged"]=924,["cannot_be_frozen_if_you_have_been_frozen_recently"]=3979,["cannot_be_frozen_with_dex_higher_than_int"]=3980,["cannot_be_ignited_while_flame_golem_summoned"]=3981,["cannot_be_ignited_with_strength_higher_than_dex"]=3982,["cannot_be_inflicted_by_corrupted_blood"]=3983,["cannot_be_killed_by_elemental_reflect"]=1879,["cannot_be_knocked_back"]=875,["cannot_be_poisoned"]=2593,["cannot_be_shocked_or_ignited_while_moving"]=3984,["cannot_be_shocked_while_at_maximum_endurance_charges"]=3384,["cannot_be_shocked_while_frozen"]=2110,["cannot_be_shocked_while_lightning_golem_summoned"]=3985,["cannot_be_shocked_with_int_higher_than_strength"]=3986,["cannot_be_stunned"]=1460,["cannot_be_stunned_by_attacks_if_other_ring_is_elder_item"]=3523,["cannot_be_stunned_by_blocked_hits"]=3987,["cannot_be_stunned_by_spells_if_other_ring_is_shaper_item"]=3522,["cannot_be_stunned_if_have_been_stunned_or_blocked_stunning_hit_in_past_2_seconds"]=3988,["cannot_be_stunned_if_have_not_been_hit_recently"]=3989,["cannot_be_stunned_if_you_have_10_or_more_crab_charges"]=3541,["cannot_be_stunned_if_you_have_been_stunned_recently"]=3990,["cannot_be_stunned_if_you_have_blocked_a_stun_recently"]=3991,["cannot_be_stunned_if_you_have_ghost_dance"]=3992,["cannot_be_stunned_when_on_low_life"]=1462,["cannot_be_stunned_while_at_max_endurance_charges"]=3263,["cannot_be_stunned_while_fortified"]=3993,["cannot_be_stunned_while_leeching"]=2424,["cannot_be_stunned_while_using_chaos_skill"]=3994,["cannot_be_stunned_with_25_rage"]=6177,["cannot_block_attacks"]=1539,["cannot_block_spells"]=3995,["cannot_cast_curses"]=1887,["cannot_cast_spells"]=3996,["cannot_cause_bleeding"]=1726,["cannot_crit_non_shocked_enemies"]=3346,["cannot_freeze_shock_ignite_on_critical"]=1880,["cannot_gain_endurance_charges_while_have_onslaught"]=1967,["cannot_gain_power_charges"]=2231,["cannot_have_energy_shield_leeched_from"]=3997,["cannot_have_life_leeched_from"]=1681,["cannot_have_mana_leeched_from"]=1682,["cannot_increase_quantity_of_dropped_items"]=1782,["cannot_increase_rarity_of_dropped_items"]=1781,["cannot_inflict_status_ailments"]=1156,["cannot_knockback"]=2226,["cannot_leech_energy_shield"]=3817,["cannot_leech_life_from_critical_strikes"]=3485,["cannot_leech_or_regenerate_mana"]=1801,["cannot_leech_when_on_low_life"]=1802,["cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently"]=3542,["cannot_recharge_energy_shield"]=3998,["cannot_regenerate_energy_shield"]=3999,["cannot_resist_cold_damage"]=1478,["cannot_take_reflected_elemental_damage"]=4000,["cannot_take_reflected_physical_damage"]=4001,["cannot_taunt_enemies"]=4002,["cast_linked_spells_on_shocked_enemy_kill_%"]=399,["cast_socketed_minion_skills_on_bow_kill_%"]=400,["cast_socketed_spells_on_X_mana_spent"]=401,["cast_socketed_spells_on_mana_spent_%_chance"]=401,["cast_speed_+%_during_flask_effect"]=4005,["cast_speed_+%_for_4_seconds_on_attack"]=2749,["cast_speed_+%_if_enemy_killed_recently"]=4006,["cast_speed_+%_if_have_crit_recently"]=4007,["cast_speed_+%_if_player_minion_has_been_killed_recently"]=4008,["cast_speed_+%_per_corpse_consumed_recently"]=4009,["cast_speed_+%_per_frenzy_charge"]=1294,["cast_speed_+%_per_power_charge"]=806,["cast_speed_+%_when_on_full_life"]=1293,["cast_speed_+%_when_on_low_life"]=1292,["cast_speed_+%_while_affected_by_zealotry"]=4010,["cast_speed_+%_while_holding_bow"]=805,["cast_speed_+%_while_holding_shield"]=803,["cast_speed_+%_while_holding_staff"]=804,["cast_speed_+%_while_ignited"]=2159,["cast_speed_for_brand_skills_+%"]=4003,["cast_speed_for_chaos_skills_+%"]=747,["cast_speed_for_cold_skills_+%"]=735,["cast_speed_for_elemental_skills_+%"]=4004,["cast_speed_for_fire_skills_+%"]=726,["cast_speed_for_lightning_skills_+%"]=741,["cast_speed_while_dual_wielding_+%"]=802,["cat_aspect_reserves_no_mana"]=4011,["cats_stealth_duration_ms_+"]=4012,["cause_maim_on_critical_strike_attack"]=3284,["caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground"]=4013,["caustic_arrow_damage_+%"]=2903,["caustic_arrow_damage_over_time_+%"]=4014,["caustic_arrow_duration_+%"]=3147,["caustic_arrow_hit_damage_+%"]=4015,["caustic_arrow_radius_+%"]=3045,["caustic_arrow_withered_base_duration_ms"]=2904,["caustic_arrow_withered_on_hit_%"]=2904,["caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=2656,["celestial_footprints_from_item"]=6614,["chain_strike_cone_radius_+_per_12_rage"]=4016,["chain_strike_cone_radius_+_per_x_rage"]=4017,["chain_strike_damage_+%"]=4018,["chain_strike_gain_rage_on_hit_%_chance"]=4019,["chance_for_elemental_damage_to_be_added_as_additional_chaos_damage_%"]=2764,["chance_per_second_of_fire_spreading_between_enemies_%"]=1170,["chance_to_avoid_stun_%_aura_while_wielding_a_staff"]=2538,["chance_to_be_ignited_%"]=2164,["chance_to_be_poisoned_%"]=2594,["chance_to_be_shocked_%"]=2165,["chance_to_block_attacks_%_while_channelling"]=4020,["chance_to_block_spells_%_if_cast_a_spell_recently"]=4021,["chance_to_block_spells_%_if_damaged_by_a_hit_recently"]=4022,["chance_to_block_spells_%_while_affected_by_discipline"]=4023,["chance_to_block_spells_%_while_channelling"]=4024,["chance_to_counter_strike_when_hit_%"]=2046,["chance_to_curse_self_with_punishment_on_kill_%"]=2335,["chance_to_deal_double_damage_%"]=4026,["chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently"]=4027,["chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds"]=4028,["chance_to_deal_double_damage_%_per_4_rage"]=4029,["chance_to_deal_double_damage_%_per_500_strength"]=4030,["chance_to_deal_double_damage_%_while_focused"]=4031,["chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds"]=4025,["chance_to_deal_double_damage_while_affected_by_glorious_madness_%"]=6532,["chance_to_deal_double_damage_while_on_full_life_%"]=4032,["chance_to_dodge_%_at_max_charged_attack_stacks"]=4033,["chance_to_dodge_%_per_frenzy_charge"]=1778,["chance_to_dodge_attacks_%_per_endurance_charge"]=4036,["chance_to_dodge_attacks_%_per_power_charge"]=4037,["chance_to_dodge_attacks_%_while_affected_by_grace"]=4038,["chance_to_dodge_attacks_%_while_off_hand_is_empty"]=4039,["chance_to_dodge_attacks_%_while_phasing"]=1741,["chance_to_dodge_attacks_and_spells_%_if_enemy_hit_recently"]=4034,["chance_to_dodge_attacks_and_spells_%_while_you_have_energy_shield"]=4035,["chance_to_dodge_spells_%_while_affected_by_haste"]=4040,["chance_to_dodge_spells_%_while_es_full"]=2297,["chance_to_dodge_spells_%_while_phased"]=2684,["chance_to_double_armour_effect_on_hit_%"]=4041,["chance_to_double_stun_duration_%"]=2773,["chance_to_evade_%_while_you_have_energy_shield"]=4045,["chance_to_evade_attacks_%"]=4042,["chance_to_evade_attacks_%_if_havent_been_hit_recently"]=4043,["chance_to_evade_attacks_%_while_affected_by_grace"]=4044,["chance_to_fortify_on_melee_hit_+%"]=1545,["chance_to_fortify_on_melee_stun_%"]=4046,["chance_to_freeze_%_while_using_flask"]=2139,["chance_to_freeze_shock_ignite_%"]=2016,["chance_to_freeze_shock_ignite_%_during_flask_effect"]=3433,["chance_to_freeze_shock_ignite_%_while_affected_by_a_herald"]=4047,["chance_to_gain_endurance_charge_on_block_%"]=1410,["chance_to_gain_endurance_charge_on_bow_crit_%"]=1120,["chance_to_gain_endurance_charge_on_crit_%"]=1117,["chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy"]=4048,["chance_to_gain_endurance_charge_on_melee_crit_%"]=1118,["chance_to_gain_endurance_charge_when_hit_%"]=1964,["chance_to_gain_endurance_charge_when_you_stun_enemy_%"]=4049,["chance_to_gain_endurance_charge_when_you_taunt_enemy_%"]=4050,["chance_to_gain_frenzy_charge_on_block_%"]=4052,["chance_to_gain_frenzy_charge_on_block_attack_%"]=4051,["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=1121,["chance_to_gain_frenzy_charge_on_stun_%"]=4053,["chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%"]=3548,["chance_to_gain_onslaught_on_flask_use_%"]=4054,["chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy"]=4055,["chance_to_gain_onslaught_on_kill_%"]=2210,["chance_to_gain_onslaught_on_kill_for_10_seconds_%"]=4056,["chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=2604,["chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%"]=4057,["chance_to_gain_power_charge_on_killing_frozen_enemy_%"]=1122,["chance_to_gain_power_charge_on_melee_stun_%"]=1987,["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=4058,["chance_to_gain_power_charge_on_stun_%"]=1988,["chance_to_gain_power_charge_when_block_%"]=1414,["chance_to_gain_random_curse_when_hit_%_per_10_levels"]=1977,["chance_to_gain_random_standard_charge_on_hit_%"]=4059,["chance_to_gain_unholy_might_on_block_%"]=2264,["chance_to_gain_unholy_might_on_block_ms"]=2264,["chance_to_gain_unholy_might_on_crit_for_4_seconds_%"]=4060,["chance_to_gain_unholy_might_on_kill_for_10_seconds_%"]=4061,["chance_to_gain_unholy_might_on_kill_for_3_seconds_%"]=2601,["chance_to_gain_unholy_might_on_kill_for_4_seconds_%"]=2602,["chance_to_gain_unholy_might_on_melee_kill_%"]=2298,["chance_to_gain_vaal_soul_on_enemy_shatter_%"]=2323,["chance_to_gain_vaal_soul_on_kill_%"]=2319,["chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%"]=2609,["chance_to_grant_nearby_enemies_onslaught_on_kill_%"]=2606,["chance_to_grant_nearby_enemies_unholy_might_on_kill_%"]=2607,["chance_to_grant_power_charge_on_shocking_chilled_enemy_%"]=4062,["chance_to_grant_power_charge_to_nearby_allies_on_kill_%"]=2608,["chance_to_hit_while_blinded_+%_final"]=4063,["chance_to_ignite_%_while_ignited"]=2160,["chance_to_ignite_%_while_using_flask"]=2138,["chance_to_ignore_hexproof_%"]=4064,["chance_to_inflict_frostburn_%"]=1320,["chance_to_inflict_sapped_%"]=1324,["chance_to_intimidate_nearby_enemies_on_melee_kill_%"]=4065,["chance_to_intimidate_on_hit_%"]=4066,["chance_to_place_an_additional_mine_%"]=2762,["chance_to_poison_%_vs_cursed_enemies"]=3416,["chance_to_poison_on_critical_strike_with_bow_%"]=808,["chance_to_poison_on_critical_strike_with_dagger_%"]=809,["chance_to_poison_on_hit_%_per_power_charge"]=4067,["chance_to_poison_on_hit_with_attacks_%"]=2389,["chance_to_poison_on_melee_hit_%"]=3468,["chance_to_sap_%_vs_enemies_in_chilling_areas"]=4068,["chance_to_scorch_%"]=1317,["chance_to_shock_%_while_using_flask"]=2140,["chance_to_shock_chilled_enemies_%"]=4069,["chance_to_taunt_on_hit_%"]=2648,["chance_to_trigger_socketed_bow_skill_on_bow_attack_%"]=402,["chance_to_trigger_socketed_spell_on_bow_attack_%"]=292,["chance_to_unnerve_on_hit_%"]=4070,["channelled_skill_damage_+%"]=4071,["channelled_skill_damage_+%_per_10_devotion"]=4072,["chaos_critical_strike_chance_+%"]=841,["chaos_critical_strike_multiplier_+"]=866,["chaos_damage_%_taken_from_mana_before_life"]=4075,["chaos_damage_+%"]=742,["chaos_damage_+%_per_100_max_mana_up_to_80"]=4076,["chaos_damage_+%_per_equipped_corrupted_item"]=2314,["chaos_damage_+%_per_level"]=2196,["chaos_damage_+%_while_affected_by_herald_of_agony"]=4077,["chaos_damage_can_chill"]=2081,["chaos_damage_can_freeze"]=2082,["chaos_damage_can_ignite_chill_and_shock"]=2100,["chaos_damage_can_shock"]=2083,["chaos_damage_cannot_poison"]=2101,["chaos_damage_chance_to_poison_%"]=2248,["chaos_damage_does_not_bypass_energy_shield"]=1745,["chaos_damage_does_not_bypass_energy_shield_while_not_low_life_or_mana"]=4073,["chaos_damage_over_time_multiplier_+_while_affected_by_malevolence"]=626,["chaos_damage_poisons"]=2247,["chaos_damage_resistance_%_per_endurance_charge"]=4078,["chaos_damage_resistance_%_per_poison_stack"]=4080,["chaos_damage_resistance_%_when_on_low_life"]=1787,["chaos_damage_resistance_%_while_affected_by_herald_of_agony"]=4081,["chaos_damage_resistance_%_while_affected_by_purity_of_elements"]=4082,["chaos_damage_resistance_is_doubled"]=4079,["chaos_damage_taken_+"]=2055,["chaos_damage_taken_+%"]=1525,["chaos_damage_taken_over_time_+%"]=1232,["chaos_damage_taken_over_time_+%_while_in_caustic_cloud"]=4083,["chaos_damage_taken_when_hit_by_attack"]=1503,["chaos_damage_to_return_to_melee_attacker"]=1493,["chaos_damage_to_return_when_hit"]=1498,["chaos_damage_with_attack_skills_+%"]=4084,["chaos_damage_with_spell_skills_+%"]=4085,["chaos_dot_multiplier_+"]=627,["chaos_golem_damage_+%"]=2912,["chaos_golem_elemental_resistances_%"]=3200,["chaos_immunity"]=1455,["chaos_inoculation_keystone_energy_shield_+%_final"]=1480,["chaos_non_ailment_damage_over_time_multiplier_+"]=628,["chaos_resistance_%_for_you_and_allies_affected_by_your_auras"]=3278,["chaos_resistance_+_while_using_flask"]=2516,["chaos_skill_chance_to_hinder_on_hit_%"]=4086,["chaos_skill_effect_duration_+%"]=1183,["chaos_skill_gem_level_+"]=4087,["chaos_skills_area_of_effect_+%"]=4088,["chaos_spell_skill_gem_level_+"]=946,["chaos_weakness_mana_reservation_+%"]=3257,["charge_duration_+%"]=2242,["charged_attack_damage_+%"]=3350,["charged_attack_damage_per_stack_+%_final"]=3359,["charged_attack_radius_+%"]=3357,["charged_dash_area_of_effect_radius_+_of_final_explosion"]=3063,["charged_dash_chance_to_dodge_%_if_finished_channelling_recently"]=4089,["charged_dash_damage_+%"]=2947,["charged_dash_movement_speed_+%_final"]=4090,["charges_gained_+%"]=1470,["chest_drop_additional_corrupted_item_divination_cards"]=4091,["chest_drop_additional_currency_item_divination_cards"]=4092,["chest_drop_additional_divination_cards_from_current_world_area"]=4093,["chest_drop_additional_divination_cards_from_same_set"]=4094,["chest_drop_additional_unique_item_divination_cards"]=4095,["chest_item_quality_+%"]=23,["chest_item_quantity_+%"]=928,["chest_item_rarity_+%"]=933,["chest_level_+"]=24,["chest_number_of_additional_pirate_uniques_to_drop"]=4096,["chest_only_currency_items"]=29,["chest_only_gems"]=30,["chest_only_magic_rarity"]=26,["chest_only_normal_rarity"]=25,["chest_only_rare_rarity"]=27,["chest_only_unique_rarity"]=28,["chest_trap_defuse_%"]=1195,["chieftain_burning_damage_+%_final"]=1318,["chill_and_freeze_duration_+%"]=4097,["chill_and_freeze_duration_based_on_%_energy_shield"]=1823,["chill_attackers_for_4_seconds_on_block_%_chance"]=4098,["chill_duration_+%"]=1150,["chill_effect_+%"]=4100,["chill_effect_+%_with_critical_strikes"]=4101,["chill_effect_is_reversed"]=4099,["chill_effectiveness_on_self_+%"]=976,["chill_enemy_when_hit_duration_ms"]=2354,["chill_minimum_slow_%"]=4102,["chill_nearby_enemies_when_you_focus"]=4103,["chill_on_you_proliferates_to_nearby_enemies_within_x_radius"]=2839,["chill_prevention_ms_when_chilled"]=2106,["chilled_ground_effect_+%"]=4104,["chilled_ground_effect_on_self_+%"]=1435,["chilled_ground_on_freeze_%_chance_for_3_seconds"]=2626,["chilled_ground_when_hit_with_attack_%"]=4105,["chilled_monsters_take_+%_burning_damage"]=1983,["chilled_while_bleeding"]=4106,["chilled_while_poisoned"]=4107,["chilling_areas_also_grant_lightning_damage_taken_+%"]=4108,["clarity_mana_reservation_+%"]=3245,["clarity_reserves_no_mana"]=4109,["claw_accuracy_rating"]=1301,["claw_accuracy_rating_+%"]=795,["claw_ailment_damage_+%"]=679,["claw_attack_speed_+%"]=777,["claw_critical_strike_chance_+%"]=822,["claw_critical_strike_multiplier_+"]=854,["claw_damage_+%"]=676,["claw_hit_and_ailment_damage_+%"]=677,["claw_or_dagger_ailment_damage_+%"]=716,["claw_or_dagger_hit_and_ailment_damage_+%"]=715,["claw_steal_power_frenzy_endurance_charges_on_hit_%"]=2166,["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=4111,["cleave_attack_speed_+%"]=3064,["cleave_damage_+%"]=2844,["cleave_fortify_on_hit"]=4110,["cleave_radius_+%"]=3019,["cluster_burst_spawn_amount"]=3321,["cobra_lash_damage_+%"]=4112,["cobra_lash_number_of_additional_chains"]=4113,["cobra_lash_projectile_speed_+%"]=4114,["cold_and_chaos_damage_resistance_%"]=4115,["cold_and_lightning_damage_resistance_%"]=2015,["cold_attack_damage_+%"]=575,["cold_attack_damage_+%_while_holding_a_shield"]=578,["cold_axe_damage_+%"]=669,["cold_bow_damage_+%"]=699,["cold_claw_damage_+%"]=681,["cold_critical_strike_chance_+%"]=839,["cold_critical_strike_multiplier_+"]=864,["cold_dagger_damage_+%"]=687,["cold_damage_%_to_add_as_chaos"]=1225,["cold_damage_%_to_add_as_chaos_per_frenzy_charge"]=4117,["cold_damage_%_to_add_as_fire"]=1224,["cold_damage_+%"]=727,["cold_damage_+%_if_you_have_used_a_fire_skill_recently"]=4118,["cold_damage_+%_per_1%_block_chance"]=2791,["cold_damage_+%_per_25_dexterity"]=4119,["cold_damage_+%_per_25_intelligence"]=4120,["cold_damage_+%_per_25_strength"]=4121,["cold_damage_+%_per_cold_resistance_above_75"]=4116,["cold_damage_+%_per_frenzy_charge"]=4122,["cold_damage_+%_while_affected_by_hatred"]=4123,["cold_damage_+%_while_affected_by_herald_of_ice"]=4124,["cold_damage_+%_while_off_hand_is_empty"]=4125,["cold_damage_can_ignite"]=2084,["cold_damage_can_shock"]=2085,["cold_damage_cannot_chill"]=2099,["cold_damage_cannot_freeze"]=2098,["cold_damage_over_time_+%"]=587,["cold_damage_over_time_multiplier_+_while_affected_by_malevolence"]=623,["cold_damage_resistance_%_while_affected_by_herald_of_ice"]=4126,["cold_damage_resistance_+%"]=965,["cold_damage_resistance_is_%"]=962,["cold_damage_taken_%_as_fire"]=2392,["cold_damage_taken_%_as_lightning"]=2393,["cold_damage_taken_+"]=4127,["cold_damage_taken_+%"]=2612,["cold_damage_taken_+%_if_have_been_hit_recently"]=4128,["cold_damage_taken_per_minute_per_frenzy_charge_while_moving"]=6533,["cold_damage_taken_when_hit_by_attack"]=1501,["cold_damage_to_return_to_melee_attacker"]=1490,["cold_damage_to_return_when_hit"]=1496,["cold_damage_while_dual_wielding_+%"]=645,["cold_damage_with_attack_skills_+%"]=4129,["cold_damage_with_spell_skills_+%"]=4130,["cold_dot_multiplier_+"]=624,["cold_hit_damage_+%_vs_shocked_enemies"]=4131,["cold_mace_damage_+%"]=693,["cold_penetration_%_vs_chilled_enemies"]=4132,["cold_projectile_mine_critical_multiplier_+"]=4133,["cold_projectile_mine_damage_+%"]=4134,["cold_projectile_mine_throwing_speed_+%"]=4136,["cold_projectile_mine_throwing_speed_negated_+%"]=4135,["cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice"]=4137,["cold_skill_chance_to_inflict_cold_exposure_%"]=4138,["cold_skill_gem_level_+"]=4139,["cold_skills_chance_to_poison_on_hit_%"]=4140,["cold_snap_cooldown_speed_+%"]=3088,["cold_snap_damage_+%"]=2918,["cold_snap_gain_power_charge_on_kill_%"]=2476,["cold_snap_radius_+%"]=3046,["cold_snap_uses_and_gains_power_charges_instead_of_frenzy"]=4141,["cold_spell_physical_damage_%_to_convert_to_cold"]=4142,["cold_spell_skill_gem_level_+"]=944,["cold_staff_damage_+%"]=675,["cold_sword_damage_+%"]=706,["cold_wand_damage_+%"]=712,["conductivity_curse_effect_+%"]=3222,["conductivity_duration_+%"]=3129,["conductivity_mana_reservation_+%"]=3258,["consecrate_ground_for_3_seconds_when_hit_%"]=2767,["consecrate_ground_on_kill_%_for_3_seconds"]=2627,["consecrate_ground_on_shatter_%_chance_for_3_seconds"]=3337,["consecrate_on_block_%_chance_to_create"]=1805,["consecrate_on_crit_%_chance_to_create"]=1859,["consecrated_ground_additional_physical_damage_reduction_%"]=4143,["consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry"]=4148,["consecrated_ground_enemy_damage_taken_+%"]=4144,["consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry"]=4145,["consecrated_ground_immune_to_curses"]=4146,["consecrated_ground_immune_to_status_ailments"]=4147,["consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds"]=4149,["consecrated_ground_while_stationary_radius"]=4150,["consecrated_path_area_of_effect_+%"]=4151,["consecrated_path_damage_+%"]=4152,["contagion_damage_+%"]=2943,["contagion_duration_+%"]=3134,["contagion_radius_+%"]=3052,["conversion_trap_cooldown_speed_+%"]=3101,["convert_all_physical_damage_to_fire"]=1464,["converted_enemies_damage_+%"]=2938,["convocation_buff_effect_+%"]=3235,["convocation_cooldown_speed_+%"]=3089,["corpse_erruption_base_maximum_number_of_geyers"]=4153,["corpse_eruption_cast_speed_+%"]=4154,["corpse_eruption_damage_+%"]=4155,["corpse_warp_cast_speed_+%"]=4156,["corpse_warp_damage_+%"]=4157,["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=4158,["corrosive_shroud_poison_dot_multiplier_+_while_aura_active"]=4159,["corrupted_gem_experience_gain_+%"]=2325,["counter_attacks_maximum_added_cold_damage"]=3413,["counter_attacks_maximum_added_physical_damage"]=3406,["counter_attacks_minimum_added_cold_damage"]=3413,["counter_attacks_minimum_added_physical_damage"]=3406,["counterattacks_deal_double_damage"]=4160,["crab_aspect_crab_barrier_max_+"]=3543,["create_blighted_spore_on_killing_rare_enemy"]=4161,["create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"]=4162,["create_consecrated_ground_on_kill_%"]=4163,["create_smoke_cloud_on_kill_%_chance"]=4164,["critical_ailment_dot_multiplier_+"]=616,["critical_bleeding_dot_multiplier_+"]=619,["critical_ignite_dot_multiplier_+"]=621,["critical_multiplier_+%_per_10_max_es_on_shield"]=4166,["critical_poison_dot_multiplier_+"]=629,["critical_strike_%_chance_to_deal_double_damage"]=4210,["critical_strike_chance_+%"]=816,["critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry"]=4169,["critical_strike_chance_+%_during_any_flask_effect"]=4170,["critical_strike_chance_+%_for_4_seconds_on_kill"]=2669,["critical_strike_chance_+%_for_forking_arrows"]=3500,["critical_strike_chance_+%_for_spells_if_you_have_killed_recently"]=4171,["critical_strike_chance_+%_if_enemy_killed_recently"]=4172,["critical_strike_chance_+%_if_have_not_crit_recently"]=4173,["critical_strike_chance_+%_if_havent_blocked_recently"]=4174,["critical_strike_chance_+%_per_8_strength"]=2155,["critical_strike_chance_+%_per_blitz_charge"]=4175,["critical_strike_chance_+%_per_endurance_charge"]=4176,["critical_strike_chance_+%_per_frenzy_charge"]=4177,["critical_strike_chance_+%_per_level"]=2177,["critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%"]=4178,["critical_strike_chance_+%_per_power_charge"]=2380,["critical_strike_chance_+%_per_righteous_charge"]=4179,["critical_strike_chance_+%_per_stackable_unique_jewel"]=3368,["critical_strike_chance_+%_vs_bleeding_enemies"]=2404,["critical_strike_chance_+%_vs_blinded_enemies"]=2625,["critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments"]=3268,["critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments"]=2745,["critical_strike_chance_+%_vs_poisoned_enemies"]=2507,["critical_strike_chance_+%_vs_shocked_enemies"]=4165,["critical_strike_chance_+%_vs_taunted_enemies"]=4180,["critical_strike_chance_+%_when_in_main_hand"]=3390,["critical_strike_chance_+%_while_affected_by_wrath"]=4181,["critical_strike_chance_+%_while_channelling"]=4182,["critical_strike_chance_+%_while_you_have_avatar_of_fire"]=6606,["critical_strike_chance_+%_with_at_least_200_int"]=3557,["critical_strike_chance_against_enemies_on_full_life_+%"]=2981,["critical_strike_chance_increased_by_lightning_resistance"]=4167,["critical_strike_chance_increased_by_uncapped_lightning_resistance"]=4168,["critical_strike_chance_while_dual_wielding_+%"]=836,["critical_strike_chance_while_wielding_shield_+%"]=829,["critical_strike_damage_cannot_be_reflected"]=4186,["critical_strike_multiplier_+%_with_claws_daggers"]=4209,["critical_strike_multiplier_+_during_any_flask_effect"]=4190,["critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently"]=4191,["critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently"]=4192,["critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"]=4193,["critical_strike_multiplier_+_if_enemy_killed_recently"]=4194,["critical_strike_multiplier_+_if_enemy_shattered_recently"]=4195,["critical_strike_multiplier_+_if_have_dealt_non_crit_recently"]=4187,["critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently"]=4196,["critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby"]=4197,["critical_strike_multiplier_+_if_taken_a_savage_hit_recently"]=4198,["critical_strike_multiplier_+_if_you_have_blocked_recently"]=4199,["critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second"]=4200,["critical_strike_multiplier_+_per_1%_block_chance"]=2403,["critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40"]=4201,["critical_strike_multiplier_+_per_power_charge"]=2498,["critical_strike_multiplier_+_vs_bleeding_enemies"]=2401,["critical_strike_multiplier_+_vs_burning_enemies"]=2402,["critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment"]=2770,["critical_strike_multiplier_+_vs_taunted_enemies"]=4202,["critical_strike_multiplier_+_while_affected_by_anger"]=4203,["critical_strike_multiplier_+_while_affected_by_precision"]=4204,["critical_strike_multiplier_+_with_herald_skills"]=4208,["critical_strike_multiplier_for_arrows_that_pierce_+"]=4188,["critical_strike_multiplier_is_100"]=869,["critical_strike_multiplier_is_300"]=4189,["critical_strike_multiplier_vs_enemies_on_full_life_+"]=2651,["critical_strike_multiplier_while_dual_wielding_+"]=858,["critical_strike_multiplier_with_dagger_+"]=848,["critical_strikes_always_knockback_shocked_enemies"]=4211,["critical_strikes_deal_no_damage"]=4212,["critical_strikes_do_not_always_apply_non_damaging_ailments"]=4213,["critical_strikes_do_not_always_freeze"]=1321,["critical_strikes_ignore_elemental_resistances"]=2667,["critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry"]=4214,["crits_have_culling_strike"]=2655,["culling_strike_on_burning_enemies"]=2052,["culling_strike_on_enemies_affected_by_poachers_mark"]=4215,["culling_strike_vs_cursed_enemies"]=4216,["current_endurance_charges"]=6,["current_frenzy_charges"]=7,["current_power_charges"]=8,["curse_apply_as_aura"]=2666,["curse_area_of_effect_+%"]=1514,["curse_cast_speed_+%"]=1509,["curse_effect_+%"]=1833,["curse_effect_+%_if_200_mana_spent_recently"]=4217,["curse_effect_on_self_+%"]=1458,["curse_on_block_level_5_vulnerability"]=2203,["curse_on_hit_%_enfeeble"]=1748,["curse_on_hit_%_flammability"]=1963,["curse_on_hit_%_temporal_chains"]=1749,["curse_on_hit_%_vulnerability"]=4219,["curse_on_hit_level_10_vulnerability_%"]=1752,["curse_on_hit_level_assassins_mark"]=1754,["curse_on_hit_level_cold_weakness"]=1755,["curse_on_hit_level_conductivity"]=1756,["curse_on_hit_level_despair"]=1757,["curse_on_hit_level_elemental_weakness"]=1753,["curse_on_hit_level_enfeeble"]=1758,["curse_on_hit_level_flammability"]=1759,["curse_on_hit_level_frostbite"]=1760,["curse_on_hit_level_poachers_mark"]=1761,["curse_on_hit_level_poachers_mark_bypass_hexproof"]=4218,["curse_on_hit_level_projectile_weakness"]=1762,["curse_on_hit_level_temporal_chains"]=1750,["curse_on_hit_level_vulnerability"]=1751,["curse_on_hit_level_warlords_mark"]=1763,["curse_on_melee_block_level_15_punishment"]=2204,["curse_on_projectile_block_level_15_temporal_chains"]=2205,["curse_on_spell_block_level_15_elemental_weakness"]=2206,["curse_skill_effect_duration_+%"]=4220,["curse_with_enfeeble_on_hit_%_against_uncursed_enemies"]=4221,["curses_have_no_effect_on_you_for_4_seconds_every_10_seconds"]=4222,["curses_never_expire"]=1450,["curses_you_inflict_remain_after_death"]=4223,["cyclone_attack_speed_+%"]=3074,["cyclone_damage_+%"]=2891,["dagger_accuracy_rating"]=1299,["dagger_accuracy_rating_+%"]=796,["dagger_ailment_damage_+%"]=685,["dagger_attack_speed_+%"]=778,["dagger_critical_strike_chance_+%"]=823,["dagger_damage_+%"]=682,["dagger_hit_and_ailment_damage_+%"]=683,["damage_+%"]=565,["damage_+%_during_flask_effect"]=3292,["damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=4224,["damage_+%_final_per_endurance_charge_lost_recently_up_to_15%"]=4235,["damage_+%_final_with_at_least_1_nearby_ally"]=4236,["damage_+%_for_4_seconds_on_crit"]=2668,["damage_+%_for_4_seconds_on_detonation"]=2692,["damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy"]=3295,["damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy"]=3272,["damage_+%_for_each_herald_affecting_you"]=4237,["damage_+%_for_each_level_the_enemy_is_higher_than_you"]=3400,["damage_+%_for_each_trap_and_mine_active"]=3286,["damage_+%_for_enemies_you_inflict_spiders_web_upon"]=4238,["damage_+%_for_you_and_allies_affected_by_your_auras"]=3279,["damage_+%_if_enemy_killed_recently"]=4239,["damage_+%_if_enemy_killed_recently_final"]=3425,["damage_+%_if_golem_summoned_in_past_8_seconds"]=2913,["damage_+%_if_have_crit_in_past_8_seconds"]=4240,["damage_+%_if_only_one_enemy_nearby"]=4241,["damage_+%_if_used_travel_skill_recently"]=4242,["damage_+%_if_you_have_consumed_a_corpse_recently"]=3460,["damage_+%_if_you_have_frozen_enemy_recently"]=4243,["damage_+%_if_you_have_shocked_recently"]=4244,["damage_+%_of_each_type_that_you_have_an_active_golem_of"]=3301,["damage_+%_on_consecrated_ground"]=2766,["damage_+%_on_full_energy_shield"]=4258,["damage_+%_per_1%_block_chance"]=4249,["damage_+%_per_1%_increased_item_found_quantity"]=4250,["damage_+%_per_10_dex"]=4245,["damage_+%_per_10_levels"]=2054,["damage_+%_per_15_dex"]=4246,["damage_+%_per_15_int"]=4247,["damage_+%_per_15_strength"]=4248,["damage_+%_per_5_of_your_lowest_attribute"]=4251,["damage_+%_per_abyss_jewel_type"]=3371,["damage_+%_per_active_curse_on_self"]=589,["damage_+%_per_active_golem"]=4252,["damage_+%_per_active_trap"]=2681,["damage_+%_per_crab_charge"]=3544,["damage_+%_per_endurance_charge"]=2412,["damage_+%_per_equipped_magic_item"]=2294,["damage_+%_per_frenzy_charge"]=2502,["damage_+%_per_frenzy_power_or_endurance_charge"]=4253,["damage_+%_per_power_charge"]=4254,["damage_+%_per_raised_zombie"]=4225,["damage_+%_per_shock"]=1992,["damage_+%_to_rare_and_unique_enemies"]=2420,["damage_+%_to_you_and_nearby_allies_while_you_have_fortify"]=3296,["damage_+%_vs_abyssal_monsters"]=4255,["damage_+%_vs_bleeding_enemies"]=2695,["damage_+%_vs_blinded_enemies"]=2026,["damage_+%_vs_burning_enemies"]=2663,["damage_+%_vs_chilled_enemies"]=4256,["damage_+%_vs_demons"]=1982,["damage_+%_vs_enemies_affected_by_status_ailments"]=2677,["damage_+%_vs_enemies_on_low_life_per_frenzy_charge"]=2025,["damage_+%_vs_enemies_per_freeze_shock_ignite"]=612,["damage_+%_vs_frozen_enemies"]=608,["damage_+%_vs_frozen_shocked_ignited_enemies"]=613,["damage_+%_vs_hindered_enemies"]=3317,["damage_+%_vs_ignited_enemies"]=2168,["damage_+%_vs_rare_monsters"]=2022,["damage_+%_vs_taunted_enemies"]=4257,["damage_+%_when_currently_has_no_energy_shield"]=1949,["damage_+%_when_not_on_low_life"]=2416,["damage_+%_when_on_burning_ground"]=1433,["damage_+%_when_on_full_life"]=4259,["damage_+%_when_on_low_life"]=588,["damage_+%_while_affected_by_a_herald"]=4260,["damage_+%_while_channelling"]=4261,["damage_+%_while_dead"]=2311,["damage_+%_while_es_leeching"]=593,["damage_+%_while_es_not_full"]=3288,["damage_+%_while_fortified"]=2410,["damage_+%_while_ignited"]=2017,["damage_+%_while_leeching"]=2280,["damage_+%_while_life_leeching"]=590,["damage_+%_while_mana_leeching"]=592,["damage_+%_while_totem_active"]=2417,["damage_+%_while_unarmed"]=2782,["damage_+%_while_wielding_wand"]=707,["damage_+%_while_you_have_a_summoned_golem"]=4262,["damage_+%_with_herald_skills"]=4263,["damage_+%_with_maces_sceptres_staves"]=4264,["damage_+%_with_movement_skills"]=786,["damage_+%_with_non_vaal_skills_during_soul_gain_prevention"]=4265,["damage_+%_with_one_handed_weapons"]=2558,["damage_+%_with_shield_skills"]=4266,["damage_+%_with_shield_skills_per_2%_attack_block"]=4267,["damage_+%_with_two_handed_weapons"]=2559,["damage_+1%_per_X_strength_when_in_main_hand"]=1993,["damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse"]=2670,["damage_over_time_+%"]=584,["damage_over_time_+%_per_frenzy_charge"]=1418,["damage_over_time_+%_per_power_charge"]=1419,["damage_over_time_+%_while_affected_by_a_herald"]=4226,["damage_over_time_+%_while_dual_wielding"]=1420,["damage_over_time_+%_while_holding_a_shield"]=1421,["damage_over_time_+%_while_wielding_two_handed_weapon"]=1422,["damage_over_time_+%_with_attack_skills"]=4227,["damage_over_time_+%_with_bow_skills"]=4228,["damage_over_time_+%_with_herald_skills"]=4229,["damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice"]=4230,["damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"]=4231,["damage_penetrates_%_elemental_resistance_vs_chilled_enemies"]=4232,["damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash"]=4233,["damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder"]=4234,["damage_reduction_rating_%_with_active_totem"]=2561,["damage_reduction_rating_from_body_armour_doubled"]=2560,["damage_reflected_to_enemies_%_gained_as_life"]=1927,["damage_removed_from_mana_before_life_%_while_affected_by_clarity"]=4268,["damage_removed_from_mana_before_life_%_while_focused"]=4269,["damage_removed_from_spectres_before_life_or_es_%"]=4270,["damage_taken_+%_final_per_totem"]=4280,["damage_taken_+%_for_4_seconds_after_spending_200_mana"]=4271,["damage_taken_+%_for_4_seconds_on_kill"]=2548,["damage_taken_+%_for_4_seconds_on_killing_taunted_enemy"]=2650,["damage_taken_+%_from_bleeding_enemies"]=2539,["damage_taken_+%_from_blinded_enemies"]=2500,["damage_taken_+%_from_ghosts"]=1530,["damage_taken_+%_from_hits"]=1522,["damage_taken_+%_from_skeletons"]=1529,["damage_taken_+%_from_taunted_enemies"]=3297,["damage_taken_+%_if_have_not_been_hit_recently"]=4281,["damage_taken_+%_if_not_hit_recently_final"]=3393,["damage_taken_+%_if_taunted_an_enemy_recently"]=3429,["damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby"]=4272,["damage_taken_+%_if_you_have_taken_a_savage_hit_recently"]=3379,["damage_taken_+%_per_frenzy_charge"]=2145,["damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element"]=2828,["damage_taken_+%_vs_demons"]=1981,["damage_taken_+%_while_affected_by_elusive"]=4273,["damage_taken_+%_while_es_full"]=1526,["damage_taken_+%_while_leeching"]=4282,["damage_taken_from_traps_and_mines_+%"]=2509,["damage_taken_goes_to_life_over_4_seconds_%"]=4274,["damage_taken_goes_to_mana_%"]=1694,["damage_taken_goes_to_mana_%_per_power_charge"]=2379,["damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity"]=4275,["damage_taken_per_250_dexterity_+%"]=4276,["damage_taken_per_250_intelligence_+%"]=4277,["damage_taken_per_250_strength_+%"]=4278,["damage_taken_per_ghost_dance_stack_+%"]=4279,["damage_vs_cursed_enemies_per_enemy_curse_+%"]=2230,["damage_vs_enemies_on_full_life_per_power_charge_+%"]=2213,["damage_vs_enemies_on_low_life_+%"]=2023,["damage_vs_enemies_on_low_life_+%_final"]=2024,["damage_vs_enemies_on_low_life_per_power_charge_+%"]=2214,["damage_vs_shocked_enemies_+%"]=610,["damage_while_dual_wielding_+%"]=642,["damage_while_no_damage_taken_+%"]=2432,["damage_while_no_frenzy_charges_+%"]=2978,["damage_with_cold_skills_+%"]=734,["damage_with_fire_skills_+%"]=725,["damage_with_lightning_skills_+%"]=740,["damaging_ailments_deal_damage_+%_faster"]=4283,["dark_ritual_area_of_effect_+%"]=4284,["dark_ritual_damage_+%"]=4285,["dark_ritual_linked_curse_effect_+%"]=4286,["deadeye_projectile_damage_+%_final_for_each_remaining_chain"]=4287,["deal_1000_chaos_damage_per_second_for_10_seconds_on_hit"]=4288,["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=4289,["deal_double_damage_to_enemies_on_full_life"]=4290,["deal_no_damage_yourself"]=1532,["deal_no_elemental_damage"]=4291,["deal_no_non_elemental_damage"]=4292,["deal_no_non_fire_damage"]=2008,["deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute"]=1907,["deaths_oath_debuff_on_kill_duration_ms"]=1907,["debuff_time_passed_+%"]=4294,["debuff_time_passed_-%_while_affected_by_haste"]=4293,["decoy_totem_life_+%"]=3208,["decoy_totem_radius_+%"]=3047,["defences_from_animated_guardians_items_apply_to_animated_weapon"]=4295,["degen_effect_+%"]=1527,["delirium_aura_effect_+%"]=4296,["delirium_mana_reservation_+%"]=4297,["delirium_reserves_no_mana"]=4298,["demigod_footprints_from_item"]=6615,["desecrate_cooldown_speed_+%"]=3094,["desecrate_creates_X_additional_corpses"]=3459,["desecrate_damage_+%"]=2933,["desecrate_duration_+%"]=3131,["desecrate_number_of_corpses_to_create"]=3331,["desecrate_on_block_%_chance_to_create"]=1806,["desecrated_ground_effect_on_self_+%"]=1438,["despair_curse_effect_+%"]=4299,["despair_duration_+%"]=4300,["determination_aura_effect_+%"]=2591,["determination_mana_reservation_+%"]=3248,["determination_reserves_no_mana"]=4301,["detonate_dead_%_chance_to_detonate_additional_corpse"]=3206,["detonate_dead_damage_+%"]=2902,["detonate_dead_radius_+%"]=3042,["devouring_totem_%_chance_to_consume_additional_corpse"]=3215,["devouring_totem_leech_per_second_+%"]=3209,["dexterity_+%"]=563,["dexterity_+%_if_strength_higher_than_intelligence"]=4302,["dexterity_skill_gem_level_+"]=4303,["disable_chest_slot"]=1815,["disable_skill_if_melee_attack"]=1732,["discharge_chance_not_to_consume_charges_%"]=2635,["discharge_damage_+%"]=2633,["discharge_radius_+%"]=2634,["discharge_triggered_damage_+%_final"]=4304,["discipline_aura_effect_+%"]=2592,["discipline_mana_reservation_+%"]=3249,["discipline_reserves_no_mana"]=4305,["dispel_status_ailments_on_flask_use"]=2513,["dispel_status_ailments_on_rampage_threshold"]=2170,["display_abberaths_hooves_skill_level"]=403,["display_attack_with_commandment_of_force_on_hit_%"]=2725,["display_attack_with_commandment_of_fury_on_hit_%"]=2737,["display_attack_with_commandment_of_ire_when_hit_%"]=3233,["display_attack_with_commandment_of_light_when_critically_hit_%"]=2729,["display_attack_with_commandment_of_spite_when_hit_%"]=2741,["display_attack_with_decree_of_force_on_hit_%"]=2724,["display_attack_with_decree_of_fury_on_hit_%"]=2736,["display_attack_with_decree_of_ire_when_hit_%"]=3232,["display_attack_with_decree_of_light_when_critically_hit_%"]=2728,["display_attack_with_decree_of_spite_when_hit_%"]=2740,["display_attack_with_edict_of_force_on_hit_%"]=2723,["display_attack_with_edict_of_fury_on_hit_%"]=2735,["display_attack_with_edict_of_ire_when_hit_%"]=3231,["display_attack_with_edict_of_light_when_critically_hit_%"]=2727,["display_attack_with_edict_of_spite_when_hit_%"]=2739,["display_attack_with_word_of_force_on_hit_%"]=2722,["display_attack_with_word_of_fury_on_hit_%"]=2734,["display_attack_with_word_of_ire_when_hit_%"]=3230,["display_attack_with_word_of_light_when_critically_hit_%"]=2726,["display_attack_with_word_of_spite_when_hit_%"]=2738,["display_bow_range_+"]=2281,["display_cast_commandment_of_blades_on_hit_%_"]=2701,["display_cast_commandment_of_flames_on_hit_%"]=2753,["display_cast_commandment_of_frost_on_kill_%"]=2757,["display_cast_commandment_of_inferno_on_kill_%"]=2709,["display_cast_commandment_of_reflection_when_hit_%"]=2721,["display_cast_commandment_of_tempest_on_hit_%"]=2713,["display_cast_commandment_of_the_grave_on_kill_%"]=2717,["display_cast_commandment_of_thunder_on_kill_%"]=2761,["display_cast_commandment_of_war_on_kill_%"]=2733,["display_cast_commandment_of_winter_when_hit_%"]=2705,["display_cast_decree_of_blades_on_hit_%__"]=2700,["display_cast_decree_of_flames_on_hit_%"]=2752,["display_cast_decree_of_frost_on_kill_%"]=2756,["display_cast_decree_of_inferno_on_kill_%"]=2708,["display_cast_decree_of_reflection_when_hit_%"]=2720,["display_cast_decree_of_tempest_on_hit_%"]=2712,["display_cast_decree_of_the_grave_on_kill_%"]=2716,["display_cast_decree_of_thunder_on_kill_%"]=2760,["display_cast_decree_of_war_on_kill_%"]=2732,["display_cast_decree_of_winter_when_hit_%"]=2704,["display_cast_edict_of_blades_on_hit_%_"]=2699,["display_cast_edict_of_flames_on_hit_%"]=2751,["display_cast_edict_of_frost_on_kill_%"]=2755,["display_cast_edict_of_inferno_on_kill_%"]=2707,["display_cast_edict_of_reflection_when_hit_%"]=2719,["display_cast_edict_of_tempest_on_hit_%"]=2711,["display_cast_edict_of_the_grave_on_kill_%"]=2715,["display_cast_edict_of_thunder_on_kill_%"]=2759,["display_cast_edict_of_war_on_kill_%"]=2731,["display_cast_edict_of_winter_when_hit_%"]=2703,["display_cast_fire_burst_on_kill"]=404,["display_cast_word_of_blades_on_hit_%"]=2698,["display_cast_word_of_flames_on_hit_%"]=2750,["display_cast_word_of_frost_on_kill_%"]=2754,["display_cast_word_of_inferno_on_kill_%"]=2706,["display_cast_word_of_reflection_when_hit_%"]=2718,["display_cast_word_of_tempest_on_hit_%"]=2710,["display_cast_word_of_the_grave_on_kill_%"]=2714,["display_cast_word_of_thunder_on_kill_%"]=2758,["display_cast_word_of_war_on_kill_%"]=2730,["display_cast_word_of_winter_when_hit_%"]=2702,["display_cowards_trial_waves_of_monsters"]=4306,["display_cowards_trial_waves_of_undead_monsters"]=4307,["display_dark_ritual_curse_max_skill_level_requirement"]=4308,["display_golden_radiance"]=1731,["display_item_generation_can_roll_minion_affixes"]=41,["display_mana_cost_reduction_%"]=1233,["display_map_augmentable_boss"]=4309,["display_map_boss_gives_experience_+%"]=2057,["display_map_contains_grandmasters"]=2228,["display_map_final_boss_drops_higher_level_gear"]=2056,["display_map_has_oxygen"]=2207,["display_map_inhabited_by_lunaris_fanatics"]=4310,["display_map_inhabited_by_solaris_fanatics"]=4311,["display_map_inhabited_by_wild_beasts"]=1587,["display_map_large_chest"]=1774,["display_map_larger_maze"]=1773,["display_map_mission_id"]=4312,["display_map_no_monsters"]=1676,["display_map_restless_dead"]=1772,["display_minion_maximum_life"]=1234,["display_socketed_minion_gems_supported_by_level_X_life_leech"]=274,["display_strongbox_drops_additional_shaper_or_elder_cards"]=4313,["display_trigger_arcane_wake_after_spending_200_mana_%_chance"]=405,["divine_tempest_beam_width_+%"]=4314,["divine_tempest_damage_+%"]=4315,["divine_tempest_number_of_additional_nearby_enemies_to_zap"]=4316,["do_not_chain"]=1096,["dodge_attacks_and_spell_chance_%_per_500_maximum_mana_up_to_20"]=4317,["dodge_attacks_and_spells_%_chance_if_have_been_hit_recently"]=4318,["dodge_attacks_chance_%_during_focus"]=4319,["dodge_attacks_chance_%_if_you_have_blocked_recently"]=4320,["dodge_attacks_chance_%_while_moving"]=4321,["dodge_chance_%_while_holding_shield"]=4322,["dodge_chance_+%_if_you_have_taken_spell_damage_recently"]=3376,["dodge_spells_chance_%_while_moving"]=4323,["dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence"]=2219,["dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity"]=2218,["dominance_defences_+%_on_nearby_allies_per_100_strength"]=2217,["dominating_blow_duration_+%"]=3110,["dominating_blow_minion_damage_+%"]=2916,["dominating_blow_skill_attack_damage_+%"]=2917,["dot_multiplier_+"]=614,["dot_multiplier_+_while_affected_by_malevolence"]=4324,["dot_multiplier_+_with_bow_skills"]=4325,["double_damage_%_chance_while_wielding_mace_sceptre_staff"]=4326,["double_slash_critical_strike_chance_+%"]=3356,["double_slash_damage_+%"]=3349,["double_slash_maximum_added_physical_damage_vs_bleeding_enemies"]=4327,["double_slash_minimum_added_physical_damage_vs_bleeding_enemies"]=4327,["double_slash_radius_+%"]=3358,["double_strike_attack_speed_+%"]=3065,["double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies"]=4328,["double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%"]=2448,["double_strike_critical_strike_chance_+%"]=3148,["double_strike_damage_+%"]=2845,["dread_banner_aura_effect_+%"]=4329,["dual_strike_attack_speed_+%"]=3066,["dual_strike_critical_strike_chance_+%"]=3149,["dual_strike_damage_+%"]=2846,["dual_strike_main_hand_deals_double_damage_%"]=4330,["dual_strike_melee_splash_with_off_hand_weapon"]=4331,["dual_wield_or_shield_block_%"]=547,["earthquake_damage_+%"]=2948,["earthquake_duration_+%"]=3138,["earthquake_radius_+%"]=3057,["elemental_critical_strike_chance_+%"]=840,["elemental_critical_strike_multiplier_+"]=865,["elemental_damage_%_to_add_as_chaos"]=1227,["elemental_damage_%_to_add_as_chaos_per_shaper_item_equipped"]=3529,["elemental_damage_+%"]=1274,["elemental_damage_+%_during_flask_effect"]=3432,["elemental_damage_+%_final_per_righteous_charge"]=4332,["elemental_damage_+%_if_cursed_enemy_killed_recently"]=4333,["elemental_damage_+%_if_enemy_chilled_recently"]=4334,["elemental_damage_+%_if_enemy_ignited_recently"]=4335,["elemental_damage_+%_if_enemy_shocked_recently"]=4336,["elemental_damage_+%_if_have_crit_recently"]=4337,["elemental_damage_+%_if_used_a_warcry_recently"]=4338,["elemental_damage_+%_per_10_devotion"]=4339,["elemental_damage_+%_per_10_dexterity"]=4340,["elemental_damage_+%_per_12_int"]=4341,["elemental_damage_+%_per_12_strength"]=4342,["elemental_damage_+%_per_divine_charge"]=3581,["elemental_damage_+%_per_frenzy_charge"]=1423,["elemental_damage_+%_per_level"]=2195,["elemental_damage_+%_per_power_charge"]=4343,["elemental_damage_+%_per_sextant_affecting_area"]=4344,["elemental_damage_+%_per_stackable_unique_jewel"]=3369,["elemental_damage_+%_while_affected_by_a_herald"]=4345,["elemental_damage_+%_while_in_area_affected_by_sextant"]=4346,["elemental_damage_can_shock"]=2086,["elemental_damage_taken_%_as_chaos"]=1692,["elemental_damage_taken_+%"]=2508,["elemental_damage_taken_+%_at_maximum_endurance_charges"]=2544,["elemental_damage_taken_+%_during_flask_effect"]=3294,["elemental_damage_taken_+%_final_per_raised_zombie"]=4347,["elemental_damage_taken_+%_if_not_hit_recently"]=4349,["elemental_damage_taken_+%_if_you_have_an_endurance_charge"]=4350,["elemental_damage_taken_+%_per_endurance_charge"]=4351,["elemental_damage_taken_+%_while_on_consecrated_ground"]=3267,["elemental_damage_taken_+%_while_stationary"]=4352,["elemental_damage_taken_from_hits_+%_per_endurance_charge"]=4348,["elemental_damage_with_attack_skills_+%"]=4353,["elemental_damage_with_attack_skills_+%_per_power_charge"]=4354,["elemental_damage_with_attack_skills_+%_while_using_flask"]=1970,["elemental_equilibrium_effect_+%"]=1482,["elemental_golem_granted_buff_effect_+%"]=3305,["elemental_golem_immunity_to_elemental_damage"]=3302,["elemental_hit_attack_speed_+%"]=3073,["elemental_hit_cannot_roll_cold_damage"]=4355,["elemental_hit_cannot_roll_fire_damage"]=4356,["elemental_hit_cannot_roll_lightning_damage"]=4357,["elemental_hit_chance_to_freeze_shock_ignite_%"]=3190,["elemental_hit_damage_+%"]=2890,["elemental_hit_deals_50%_less_cold_damage"]=4358,["elemental_hit_deals_50%_less_fire_damage"]=4359,["elemental_hit_deals_50%_less_lightning_damage"]=4360,["elemental_overload_rotation_active"]=6599,["elemental_penetration_%_during_flask_effect"]=3476,["elemental_penetration_%_if_you_have_a_power_charge"]=4361,["elemental_reflect_damage_taken_+%"]=1923,["elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements"]=4363,["elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%"]=4362,["elemental_resistance_%_per_10_devotion"]=4365,["elemental_resistance_%_per_minion_up_to_30%"]=4364,["elemental_resistance_%_per_stackable_unique_jewel"]=3370,["elemental_resistance_%_when_on_low_life"]=954,["elemental_resistances_+%_for_you_and_allies_affected_by_your_auras"]=3280,["elemental_skill_chance_to_blind_nearby_enemies_%"]=4366,["elemental_status_effect_aura_radius"]=1510,["elemental_weakness_curse_effect_+%"]=3223,["elemental_weakness_duration_+%"]=3128,["elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%"]=2834,["elementalist_area_of_effect_+%_for_5_seconds"]=4367,["elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill"]=2830,["elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element"]=2827,["elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds"]=2829,["elementalist_elemental_damage_+%_for_5_seconds"]=4368,["elementalist_elemental_status_effect_aura_radius"]=2835,["elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill"]=2832,["elementalist_gain_shaper_of_desolation_every_10_seconds"]=4369,["elementalist_ignite_damage_+%_final"]=4370,["elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill"]=2831,["elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds"]=3447,["elementalist_summon_elemental_golem_on_killing_enemy_with_element_%"]=2833,["elusive_effect_+%"]=4371,["elusive_effect_on_self_+%_per_power_charge"]=3584,["enchantment_boots_added_cold_damage_when_hit_maximum"]=2455,["enchantment_boots_added_cold_damage_when_hit_minimum"]=2455,["enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill"]=2454,["enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds"]=2530,["enchantment_boots_dodge_chance_when_critically_hit_%"]=2461,["enchantment_boots_life_leech_on_kill_permyriad"]=2457,["enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit"]=2381,["enchantment_boots_mana_costs_when_hit_+%"]=2451,["enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently"]=4372,["enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s"]=2532,["enchantment_boots_maximum_added_fire_damage_on_kill_4s"]=2458,["enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=2456,["enchantment_boots_minimum_added_chaos_damage_for_4_seconds_when_crit_4s"]=2532,["enchantment_boots_minimum_added_fire_damage_on_kill_4s"]=2458,["enchantment_boots_minimum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=2456,["enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds"]=2459,["enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds"]=2531,["enchantment_boots_spell_dodge_when_hit_by_spells_%"]=2453,["enchantment_boots_status_ailment_chance_+%_when_havent_crit_for_4_seconds"]=2460,["enchantment_boots_stun_avoid_%_on_kill"]=2452,["enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds"]=2765,["endurance_charge_duration_+%"]=1411,["endurance_charge_on_kill_%"]=1853,["endurance_charge_on_kill_percent_chance_while_holding_shield"]=4373,["endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"]=4374,["endurance_charge_on_off_hand_kill_%"]=2664,["endurance_charges_granted_per_one_hundred_nearby_enemies_during_endurance_warcry"]=1215,["endurance_only_conduit"]=1541,["enduring_cry_buff_effect_+%"]=3320,["enduring_cry_cooldown_speed_+%"]=3099,["enemies_chaos_resistance_%_while_cursed"]=3271,["enemies_chill_as_unfrozen"]=1196,["enemies_chilled_by_your_hits_are_shocked"]=4375,["enemies_damage_taken_+%_while_cursed"]=2971,["enemies_explode_for_%_life_as_physical_damage"]=4376,["enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage"]=4377,["enemies_explode_on_death_by_wand_hit_for_25%_life_as_chaos_damage_%_chance"]=4378,["enemies_explode_on_kill"]=4379,["enemies_extra_damage_rolls_with_lightning_damage"]=4380,["enemies_killed_on_fungal_ground_explode_for_5%_chaos_damage_%_chance"]=4381,["enemies_near_corpses_created_recently_are_shocked_and_chilled"]=4382,["enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage"]=4383,["enemies_poisoned_by_you_cannot_regen_life"]=4384,["enemies_shocked_by_your_hits_are_chilled"]=4385,["enemies_taunted_by_you_cannot_evade_attacks"]=4386,["enemies_taunted_by_your_warcies_are_intimidated"]=4387,["enemies_taunted_by_your_warcries_are_unnerved"]=4388,["enemies_that_hit_you_with_attack_recently_attack_speed_+%"]=4389,["enemies_you_bleed_grant_flask_charges_+%"]=1729,["enemies_you_curse_are_intimidated"]=4390,["enemies_you_curse_are_unnerved"]=4391,["enemies_you_curse_have_15%_hinder"]=4392,["enemies_you_curse_have_malediction"]=2972,["enemies_you_shock_cast_speed_+%"]=3492,["enemies_you_shock_movement_speed_+%"]=3493,["enemy_additional_critical_strike_chance_against_self"]=2345,["enemy_aggro_radius_+%"]=2357,["enemy_critical_strike_chance_+%_against_self_20_times_value"]=2346,["enemy_evasion_+%_if_you_have_hit_them_recently"]=4393,["enemy_extra_damage_rolls_when_on_full_life"]=4394,["enemy_extra_damage_rolls_when_on_low_life"]=1788,["enemy_extra_damage_rolls_while_affected_by_vulnerability"]=2331,["enemy_hits_roll_low_damage"]=1785,["enemy_knockback_direction_is_reversed"]=2233,["enemy_on_low_life_damage_taken_+%_per_frenzy_charge"]=1857,["enemy_phys_reduction_%_penalty_vs_hit"]=2197,["enemy_shock_on_kill"]=1197,["energy_shield_%_gained_on_block"]=1706,["energy_shield_%_of_armour_rating_gained_on_block"]=1707,["energy_shield_%_to_lose_on_block"]=1952,["energy_shield_+%_per_10_strength"]=4403,["energy_shield_+%_per_power_charge"]=4404,["energy_shield_delay_-%"]=905,["energy_shield_delay_-%_while_affected_by_discipline"]=4395,["energy_shield_delay_during_flask_effect_-%"]=2785,["energy_shield_gain_per_target"]=1058,["energy_shield_gain_per_target_hit_while_affected_by_discipline"]=4396,["energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web"]=4397,["energy_shield_gained_on_enemy_death_per_level"]=2192,["energy_shield_leech_from_any_damage_permyriad"]=1032,["energy_shield_leech_from_lightning_damage_permyriad_while_affected_by_wrath"]=4398,["energy_shield_leech_from_spell_damage_permyriad_per_curse_on_enemy"]=1034,["energy_shield_leech_if_hit_is_at_least_25_%_fire_damage_permyriad"]=4399,["energy_shield_leech_permyriad_vs_frozen_enemies"]=4400,["energy_shield_leech_speed_+%"]=1445,["energy_shield_lost_per_minute_%"]=4401,["energy_shield_per_level"]=4402,["energy_shield_protects_mana"]=2330,["energy_shield_recharge_not_delayed_by_damage"]=906,["energy_shield_recharge_rate_+%"]=908,["energy_shield_recharge_rate_during_flask_effect_+%"]=2787,["energy_shield_recharge_rate_per_minute_%"]=907,["energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=3411,["energy_shield_recharge_start_when_stunned"]=4405,["energy_shield_recharges_on_block_%"]=2641,["energy_shield_recharges_on_skill_use_chance_%"]=4406,["energy_shield_recovery_rate_+%"]=2189,["energy_shield_recovery_rate_while_affected_by_discipline_+%"]=4407,["energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently"]=4408,["energy_shield_regeneration_%_per_minute_if_enemy_killed_recently"]=4409,["energy_shield_regeneration_%_per_minute_while_shocked"]=2241,["energy_shield_regeneration_rate_+%"]=4416,["energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently"]=4412,["energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline"]=4413,["energy_shield_regeneration_rate_per_minute_%_while_on_low_life"]=1107,["energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby"]=4410,["energy_shield_regeneration_rate_per_minute_per_poison_stack"]=4411,["energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground"]=4414,["energy_shield_regeneration_rate_per_second"]=4415,["enfeeble_curse_effect_+%"]=3224,["enfeeble_duration_+%"]=3127,["ensnaring_arrow_area_of_effect_+%"]=4417,["ensnaring_arrow_debuff_effect_+%"]=4418,["envy_reserves_no_mana"]=4419,["es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground"]=3434,["es_regeneration_per_minute_%_while_stationary"]=4420,["essence_display_drop_burning_ground_while_moving_fire_damage_per_second"]=3507,["essence_display_elemental_damage_taken_while_not_moving_+%"]=3508,["essence_drain_damage_+%"]=2942,["ethereal_knives_damage_+%"]=2863,["ethereal_knives_number_of_additional_projectiles"]=4421,["ethereal_knives_projectile_base_number_of_targets_to_pierce"]=4422,["ethereal_knives_projectile_speed_+%"]=3107,["ethereal_knives_projectiles_nova"]=4423,["evasion_+%_if_hit_recently"]=3394,["evasion_+%_per_10_intelligence"]=4424,["evasion_and_physical_damage_reduction_rating_+%"]=886,["evasion_rating_%_as_life_regeneration_per_minute_during_focus"]=4426,["evasion_rating_+%"]=893,["evasion_rating_+%_if_you_have_hit_an_enemy_recently"]=4429,["evasion_rating_+%_per_frenzy_charge"]=900,["evasion_rating_+%_when_on_full_life"]=4430,["evasion_rating_+%_when_on_low_life"]=1767,["evasion_rating_+%_while_leeching"]=4431,["evasion_rating_+%_while_moving"]=4432,["evasion_rating_+%_while_onslaught_is_active"]=895,["evasion_rating_+_if_you_have_hit_an_enemy_recently"]=4427,["evasion_rating_+_per_1_helmet_energy_shield"]=891,["evasion_rating_+_per_5_maximum_energy_shield_on_shield"]=3571,["evasion_rating_+_when_on_full_life"]=890,["evasion_rating_+_when_on_low_life"]=889,["evasion_rating_+_while_you_have_tailwind"]=4428,["evasion_rating_increased_by_uncapped_cold_resistance"]=4425,["evasion_rating_while_es_full_+%_final"]=3287,["expanding_fire_cone_additional_maximum_number_of_stages"]=4433,["expanding_fire_cone_area_of_effect_+%"]=4434,["experience_gain_+%"]=936,["experience_loss_on_death_-%"]=937,["explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=2529,["explode_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=2528,["explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%"]=6534,["explode_on_kill_%_chaos_damage_to_deal"]=2527,["explode_on_kill_%_fire_damage_to_deal"]=1920,["explosive_arrow_attack_speed_+%"]=3340,["explosive_arrow_damage_+%"]=2894,["explosive_arrow_duration_+%"]=4435,["explosive_arrow_radius_+%"]=3038,["extra_critical_rolls"]=1877,["extra_critical_rolls_during_focus"]=4436,["extra_damage_rolls_with_lightning_damage_on_non_critical_hits"]=4437,["extra_damage_taken_from_crit_+%_while_affected_by_determination"]=4438,["extra_damage_taken_from_crit_while_no_power_charges_+%"]=4439,["extra_gore"]=6616,["faster_bleed_%"]=4440,["faster_burn_%"]=1796,["faster_burn_from_attacks_%"]=1798,["faster_poison_%"]=4441,["fire_and_chaos_damage_resistance_%"]=4442,["fire_and_cold_damage_resistance_%"]=2013,["fire_and_lightning_damage_resistance_%"]=2014,["fire_attack_damage_+%"]=576,["fire_attack_damage_+%_while_holding_a_shield"]=579,["fire_axe_damage_+%"]=668,["fire_beam_cast_speed_+%"]=4443,["fire_beam_damage_+%"]=4444,["fire_beam_degen_spread_to_enemies_in_radius_on_kill"]=4445,["fire_beam_enemy_fire_resistance_%_at_max_stacks"]=4446,["fire_beam_enemy_fire_resistance_%_per_stack"]=4447,["fire_beam_length_+%"]=4448,["fire_bow_damage_+%"]=698,["fire_claw_damage_+%"]=680,["fire_critical_strike_chance_+%"]=837,["fire_critical_strike_multiplier_+"]=862,["fire_dagger_damage_+%"]=686,["fire_damage_%_to_add_as_chaos"]=1226,["fire_damage_%_to_add_as_chaos_per_endurance_charge"]=4450,["fire_damage_+%"]=720,["fire_damage_+%_if_you_have_been_hit_recently"]=4451,["fire_damage_+%_if_you_have_used_a_cold_skill_recently"]=4452,["fire_damage_+%_per_20_strength"]=4453,["fire_damage_+%_per_endurance_charge"]=4454,["fire_damage_+%_to_blinded_enemies"]=2435,["fire_damage_+%_vs_bleeding_enemies"]=4455,["fire_damage_+%_while_affected_by_anger"]=4456,["fire_damage_+%_while_affected_by_herald_of_ash"]=4457,["fire_damage_can_chill"]=2087,["fire_damage_can_freeze"]=2088,["fire_damage_can_shock"]=2089,["fire_damage_cannot_ignite"]=2097,["fire_damage_over_time_+%"]=586,["fire_damage_over_time_multiplier_+%_while_burning"]=4449,["fire_damage_resistance_%_when_on_low_life"]=959,["fire_damage_resistance_%_while_affected_by_herald_of_ash"]=4458,["fire_damage_resistance_+%"]=960,["fire_damage_resistance_is_%"]=956,["fire_damage_taken_%_as_cold"]=2390,["fire_damage_taken_%_as_lightning"]=2391,["fire_damage_taken_%_causes_additional_physical_damage"]=1693,["fire_damage_taken_+"]=1519,["fire_damage_taken_+%"]=1524,["fire_damage_taken_+%_while_moving"]=4459,["fire_damage_taken_per_minute_per_endurance_charge_if_you_have_been_hit_recently"]=6535,["fire_damage_taken_when_enemy_ignited"]=4460,["fire_damage_taken_when_hit_by_attack"]=1500,["fire_damage_to_return_to_melee_attacker"]=1491,["fire_damage_to_return_when_hit"]=1495,["fire_damage_while_dual_wielding_+%"]=644,["fire_damage_with_attack_skills_+%"]=4461,["fire_damage_with_spell_skills_+%"]=4462,["fire_dot_multiplier_+"]=620,["fire_mace_damage_+%"]=692,["fire_nova_mine_cast_speed_+%"]=3084,["fire_nova_mine_damage_+%"]=2877,["fire_nova_mine_num_of_additional_repeats"]=3180,["fire_penetration_%_if_you_have_blocked_recently"]=4463,["fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire"]=4464,["fire_skill_chance_to_inflict_fire_exposure_%"]=4465,["fire_skill_gem_level_+"]=4466,["fire_skills_chance_to_poison_on_hit_%"]=4467,["fire_spell_physical_damage_%_to_convert_to_fire"]=4468,["fire_spell_skill_gem_level_+"]=943,["fire_staff_damage_+%"]=674,["fire_storm_damage_+%"]=2878,["fire_sword_damage_+%"]=705,["fire_trap_burning_damage_+%"]=3171,["fire_trap_burning_ground_duration_+%"]=4469,["fire_trap_cooldown_speed_+%"]=3086,["fire_trap_damage_+%"]=2847,["fire_trap_number_of_additional_traps_to_throw"]=4470,["fire_wand_damage_+%"]=711,["fireball_base_radius_up_to_+_at_longer_ranges"]=2469,["fireball_cast_speed_+%"]=3083,["fireball_damage_+%"]=2848,["fireball_ignite_chance_%"]=3172,["fireball_radius_up_to_+%_at_longer_ranges"]=2468,["firestorm_duration_+%"]=3141,["firestorm_explosion_area_of_effect_+%"]=3181,["fish_quantity_+%"]=2065,["fish_rarity_+%"]=2066,["fishing_bite_sensitivity_+%"]=2790,["fishing_hook_type"]=2063,["fishing_line_strength_+%"]=2060,["fishing_lure_type"]=2062,["fishing_pool_consumption_+%"]=2061,["fishing_range_+%"]=2064,["flame_dash_cooldown_speed_+%"]=3093,["flame_dash_damage_+%"]=2927,["flame_golem_damage_+%"]=2909,["flame_golem_elemental_resistances_%"]=3197,["flame_surge_critical_strike_chance_+%"]=3153,["flame_surge_damage_+%"]=2879,["flame_surge_damage_+%_vs_burning_enemies"]=3182,["flame_totem_consecrated_ground_enemy_damage_taken_+%"]=4471,["flame_totem_damage_+%"]=2919,["flame_totem_num_of_additional_projectiles"]=3165,["flame_totem_projectile_speed_+%"]=3108,["flameblast_critical_strike_chance_+%"]=3152,["flameblast_damage_+%"]=2895,["flameblast_radius_+%"]=3039,["flamethrower_tower_trap_cast_speed_+%"]=4472,["flamethrower_tower_trap_cooldown_speed_+%"]=4473,["flamethrower_tower_trap_damage_+%"]=4474,["flamethrower_tower_trap_duration_+%"]=4475,["flamethrower_tower_trap_number_of_additional_flamethrowers"]=4476,["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=4477,["flammability_curse_effect_+%"]=3225,["flammability_duration_+%"]=3126,["flammability_mana_reservation_+%"]=3259,["flask_charges_+%_from_enemies_with_status_ailments"]=3456,["flask_charges_gained_+%_during_flask_effect"]=2397,["flask_charges_recovered_per_3_seconds"]=2693,["flask_charges_used_+%"]=1471,["flask_duration_+%"]=1474,["flask_duration_on_minions_+%"]=1475,["flask_effect_+%"]=1955,["flask_life_and_mana_to_recover_+%"]=4478,["flask_life_recovery_+%_while_affected_by_vitality"]=4479,["flask_life_recovery_rate_+%"]=1476,["flask_life_to_recover_+%"]=1349,["flask_mana_charges_used_+%"]=1472,["flask_mana_recovery_rate_+%"]=1477,["flask_mana_to_recover_+%"]=1350,["flask_minion_heal_%"]=2114,["flask_recovery_is_instant"]=4480,["flask_recovery_speed_+%"]=1351,["flasks_%_chance_to_not_consume_charges"]=3437,["flasks_apply_to_your_zombies_and_spectres"]=2963,["flasks_dispel_burning"]=1968,["flesh_offering_attack_speed_+%"]=3332,["flesh_offering_duration_+%"]=3114,["flicker_strike_cooldown_speed_+%"]=3087,["flicker_strike_damage_+%"]=2868,["flicker_strike_damage_+%_per_frenzy_charge"]=3177,["flicker_strike_more_attack_speed_+%_final"]=767,["focus_cooldown_modifier_ms"]=4481,["focus_cooldown_speed_+%"]=4482,["fortify_duration_+%"]=1546,["fortify_duration_+%_per_10_strength"]=4483,["fortify_during_life_flask_effect"]=1972,["fortify_effect_+%"]=1549,["fortify_effect_+%_while_focused"]=4485,["fortify_effect_on_self_+%"]=2783,["fortify_effect_on_self_+%_while_stationary"]=4484,["fortify_effect_on_self_while_affected_by_glorious_madness_+%"]=6536,["fortify_on_hit"]=4486,["freeze_as_though_dealt_damage_+%"]=2105,["freeze_duration_+%"]=1152,["freeze_mine_cold_resistance_+_while_frozen"]=1995,["freeze_mine_damage_+%"]=2928,["freeze_mine_radius_+%"]=3049,["freeze_on_you_proliferates_to_nearby_enemies_within_x_radius"]=2840,["freeze_prevention_ms_when_frozen"]=2107,["freezing_pulse_cast_speed_+%"]=3082,["freezing_pulse_damage_+%"]=2849,["freezing_pulse_damage_+%_if_enemy_shattered_recently"]=4487,["freezing_pulse_number_of_additional_projectiles"]=4488,["freezing_pulse_projectile_speed_+%"]=3104,["frenzy_%_chance_to_gain_additional_frenzy_charge"]=3189,["frenzy_charge_duration_+%_per_frenzy_charge"]=1342,["frenzy_charge_on_kill_percent_chance_while_holding_shield"]=4489,["frenzy_damage_+%"]=2888,["frenzy_damage_+%_per_frenzy_charge"]=3188,["frenzy_only_conduit"]=1542,["frost_blades_damage_+%"]=2628,["frost_blades_melee_damage_penetrates_%_cold_resistance"]=4490,["frost_blades_number_of_additional_projectiles_in_chain"]=2630,["frost_blades_projectile_speed_+%"]=2629,["frost_bolt_cast_speed_+%"]=3360,["frost_bolt_damage_+%"]=3347,["frost_bolt_freeze_chance_%"]=3361,["frost_bolt_nova_cooldown_speed_+%"]=4491,["frost_bolt_nova_damage_+%"]=3348,["frost_bolt_nova_duration_+%"]=3362,["frost_bolt_nova_radius_+%"]=3355,["frost_bomb_buff_duration_+%"]=4492,["frost_bomb_cooldown_speed_+%"]=3100,["frost_bomb_damage_+%"]=2951,["frost_bomb_radius_+%"]=3058,["frost_fury_additional_max_number_of_stages"]=4493,["frost_fury_area_of_effect_+%_per_stage"]=4494,["frost_fury_damage_+%"]=4495,["frost_wall_cooldown_speed_+%"]=3091,["frost_wall_damage_+%"]=2922,["frost_wall_duration_+%"]=3117,["frostbite_curse_effect_+%"]=3226,["frostbite_duration_+%"]=3125,["frostbite_mana_reservation_+%"]=3260,["frostbolt_number_of_additional_projectiles"]=4496,["frostbolt_projectile_acceleration"]=4497,["frozen_monsters_take_increased_damage"]=1700,["fungal_ground_while_stationary_radius"]=4498,["gain_%_es_when_spirit_charge_expires_or_consumed"]=3578,["gain_%_life_when_spirit_charge_expires_or_consumed"]=3577,["gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec"]=4550,["gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance"]=4499,["gain_X_energy_shield_on_killing_shocked_enemy"]=1804,["gain_X_frenzy_charges_after_spending_200_mana"]=4500,["gain_X_life_on_stun"]=4501,["gain_X_power_charges_on_using_a_warcry"]=4502,["gain_X_random_rare_monster_mods_on_kill"]=2276,["gain_X_vaal_souls_on_rampage_threshold"]=2172,["gain_a_power_charge_when_you_or_your_totems_kill_%_chance"]=3344,["gain_accuracy_rating_equal_to_strength"]=4503,["gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline"]=4504,["gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently"]=4505,["gain_arcane_surge_for_4_seconds_after_channelling_for_1_second"]=4506,["gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry"]=4507,["gain_arcane_surge_on_crit_%_chance"]=4508,["gain_arcane_surge_on_hit_%_chance"]=4511,["gain_arcane_surge_on_hit_at_devotion_threshold"]=4509,["gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%"]=4510,["gain_arcane_surge_on_hit_vs_unique_enemy_%_chance"]=4512,["gain_arcane_surge_on_kill_chance_%"]=4513,["gain_arcane_surge_on_spell_hit_by_you_or_your_totems"]=4514,["gain_arcane_surge_when_mine_detonated_targeting_an_enemy"]=4515,["gain_arcane_surge_when_trap_triggered_by_an_enemy"]=4516,["gain_arcane_surge_when_you_summon_a_totem"]=4517,["gain_armour_equal_to_mana_reserved"]=4518,["gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit"]=3265,["gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy"]=4519,["gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit"]=2662,["gain_blitz_charge_%_chance_on_crit"]=4520,["gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius"]=3018,["gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance"]=4521,["gain_challenger_charge_%_chance_on_kill_in_sand_stance"]=4522,["gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness"]=6537,["gain_crimson_dance_if_have_dealt_critical_strike_recently"]=6592,["gain_crimson_dance_while_you_have_cat_stealth"]=6593,["gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana"]=4523,["gain_damage_+%_for_4_seconds_if_taken_savage_hit"]=2661,["gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy"]=4524,["gain_divine_charge_on_hit_%"]=3580,["gain_divinity_ms_when_reaching_maximum_divine_charges"]=3582,["gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy"]=3270,["gain_elemental_penetration_for_4_seconds_on_mine_detonation"]=3311,["gain_elusive_on_crit_%_chance"]=3488,["gain_elusive_on_kill_chance_%"]=3489,["gain_endurance_charge_%_chance_on_using_fire_skill"]=1119,["gain_endurance_charge_%_chance_when_you_lose_fortify"]=4526,["gain_endurance_charge_%_when_hit_while_channelling"]=4527,["gain_endurance_charge_on_main_hand_kill_%"]=2547,["gain_endurance_charge_on_melee_stun"]=1986,["gain_endurance_charge_on_melee_stun_%"]=1986,["gain_endurance_charge_on_power_charge_expiry"]=1856,["gain_endurance_charge_per_second_if_have_been_hit_recently"]=4525,["gain_flask_chance_on_crit_%"]=2614,["gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges"]=4528,["gain_flask_charge_when_crit_%"]=1352,["gain_flask_charge_when_crit_amount"]=1352,["gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff"]=4529,["gain_frenzy_and_power_charge_on_kill_%"]=1855,["gain_frenzy_charge_%_when_hit_while_channelling"]=4534,["gain_frenzy_charge_if_attack_ignites"]=2053,["gain_frenzy_charge_on_critical_strike_%"]=4530,["gain_frenzy_charge_on_hit_while_bleeding"]=4531,["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=4532,["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=4533,["gain_frenzy_charge_on_main_hand_kill_%"]=2546,["gain_frenzy_charge_on_reaching_maximum_power_charges"]=2813,["gain_her_blessing_for_3_seconds_on_ignite_%"]=2494,["gain_her_embrace_for_x_ms_on_enemy_ignited"]=4535,["gain_iron_reflexes_while_at_maximum_frenzy_charges"]=6594,["gain_iron_reflexes_while_stationary"]=6600,["gain_life_and_mana_leech_on_kill_permyriad"]=2439,["gain_life_leech_from_any_damage_permyriad_as_life_for_4_seconds_if_taken_savage_hit"]=2660,["gain_life_leech_on_kill_permyriad"]=3466,["gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit"]=3383,["gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance"]=3446,["gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth"]=4536,["gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance"]=4537,["gain_maximum_power_charges_on_power_charge_gained_%_chance"]=4538,["gain_mind_over_matter_while_at_maximum_power_charges"]=6595,["gain_movement_speed_+%_for_20_seconds_on_kill"]=4539,["gain_no_maximum_life_from_strength"]=1308,["gain_no_maximum_mana_from_intelligence"]=1309,["gain_onslaught_during_soul_gain_prevention"]=4540,["gain_onslaught_for_3_seconds_%_chance_when_hit"]=4541,["gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster"]=3419,["gain_onslaught_ms_on_using_a_warcry"]=4542,["gain_onslaught_ms_when_reaching_maximum_endurance_charges"]=1966,["gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%"]=4543,["gain_onslaught_on_hit_duration_ms"]=4544,["gain_onslaught_on_kill_ms_while_affected_by_haste"]=4545,["gain_onslaught_on_stun_duration_ms"]=1962,["gain_onslaught_when_ignited_ms"]=2257,["gain_onslaught_while_at_maximum_endurance_charges"]=4546,["gain_onslaught_while_frenzy_charges_full"]=3290,["gain_onslaught_while_not_on_low_mana"]=4547,["gain_onslaught_while_on_low_life"]=4548,["gain_onslaught_while_you_have_fortify"]=4549,["gain_phasing_for_4_seconds_on_begin_es_recharge"]=1740,["gain_phasing_if_enemy_killed_recently"]=4551,["gain_phasing_while_affected_by_haste"]=4552,["gain_phasing_while_at_maximum_frenzy_charges"]=1738,["gain_phasing_while_you_have_cats_stealth"]=4553,["gain_phasing_while_you_have_onslaught"]=1739,["gain_physical_damage_immunity_on_rampage_threshold_ms"]=2171,["gain_player_far_shot_while_do_not_have_iron_reflexes"]=6612,["gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%"]=4554,["gain_power_charge_on_non_critical_strike_%"]=2624,["gain_power_charge_on_vaal_skill_use_%"]=4555,["gain_power_charge_per_enemy_you_crit"]=1779,["gain_power_charge_when_throwing_trap_%"]=2154,["gain_power_or_frenzy_charge_for_each_second_channeling"]=4556,["gain_rage_on_hit"]=6178,["gain_rage_on_hitting_rare_unique_enemy_%"]=6175,["gain_rage_on_kill"]=6174,["gain_rage_when_you_use_a_warcry"]=6176,["gain_rampage_while_at_maximum_endurance_charges"]=2484,["gain_random_charge_on_block"]=4557,["gain_random_charge_per_second_while_stationary"]=4558,["gain_rare_monster_mods_on_kill_ms"]=2034,["gain_resolute_technique_while_do_not_have_elemental_overload"]=6601,["gain_righteous_charge_on_mana_spent_%"]=4559,["gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster"]=4560,["gain_single_conflux_for_3_seconds_every_8_seconds"]=4561,["gain_siphoning_charge_on_skill_use_%_chance"]=3531,["gain_soul_eater_during_flask_effect"]=2645,["gain_soul_eater_for_x_ms_on_vaal_skill_use"]=4562,["gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms"]=2328,["gain_spirit_charge_every_x_ms"]=3574,["gain_spirit_charge_on_kill_%_chance"]=3575,["gain_unholy_might_for_2_seconds_on_crit"]=2127,["gain_unholy_might_for_2_seconds_on_melee_crit"]=2126,["gain_unholy_might_for_4_seconds_on_crit"]=2128,["gain_unholy_might_on_rampage_threshold_ms"]=2194,["gain_vaal_pact_if_you_have_crit_recently"]=4563,["gain_vaal_pact_while_at_maximum_endurance_charges"]=6596,["gain_vaal_pact_while_focused"]=4564,["gain_vaal_soul_on_hit_cooldown_ms"]=4565,["gain_x_es_on_trap_triggered_by_an_enemy"]=3451,["gain_x_life_on_trap_triggered_by_an_enemy"]=3450,["gain_x_life_when_endurance_charge_expires_or_consumed"]=2229,["gain_x_rage_on_hit_with_axes_swords_1s_cooldown"]=4566,["galvanic_arrow_area_damage_+%"]=6262,["galvanic_arrow_projectile_speed_+%"]=4567,["gem_experience_gain_+%"]=1173,["ghost_dance_max_stacks"]=4568,["ghost_dance_restore_%_evasion_as_energy_shield_when_hit"]=4569,["glacial_cascade_damage_+%"]=2896,["glacial_cascade_number_of_additional_bursts"]=4570,["glacial_cascade_physical_damage_%_to_convert_to_cold"]=3191,["glacial_cascade_radius_+%"]=3040,["glacial_hammer_damage_+%"]=2850,["glacial_hammer_freeze_chance_%"]=3173,["glacial_hammer_item_rarity_on_shattering_enemy_+%"]=2446,["glacial_hammer_melee_splash_with_cold_damage"]=4571,["glacial_hammer_physical_damage_%_to_add_as_cold_damage"]=3192,["glacial_hammer_physical_damage_%_to_convert_to_cold"]=4572,["global_always_hit"]=1334,["global_attack_speed_+%_per_green_socket_on_item"]=1937,["global_attack_speed_+%_per_level"]=4573,["global_bleed_on_hit"]=1726,["global_cannot_crit"]=1466,["global_chance_to_blind_on_hit_%"]=2173,["global_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=4574,["global_critical_strike_chance_+%_vs_chilled_enemies"]=4575,["global_critical_strike_chance_+%_while_holding_bow"]=1712,["global_critical_strike_chance_+%_while_holding_staff"]=1710,["global_critical_strike_chance_while_dual_wielding_+%"]=3474,["global_critical_strike_mulitplier_+_per_green_socket_on_item"]=1938,["global_critical_strike_multiplier_+_while_holding_bow"]=1713,["global_critical_strike_multiplier_+_while_holding_staff"]=1711,["global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges"]=1345,["global_critical_strike_multiplier_while_dual_wielding_+"]=3473,["global_defences_+%"]=2050,["global_defences_+%_per_white_socket_on_item"]=1947,["global_evasion_rating_+_while_moving"]=4576,["global_hit_causes_monster_flee_%"]=1332,["global_item_attribute_requirements_+%"]=1784,["global_knockback"]=874,["global_knockback_on_crit"]=1235,["global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad"]=1933,["global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item"]=1943,["global_maximum_added_chaos_damage"]=743,["global_maximum_added_cold_damage"]=728,["global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies"]=4577,["global_maximum_added_fire_damage"]=721,["global_maximum_added_fire_damage_vs_burning_enemies"]=6396,["global_maximum_added_fire_damage_vs_ignited_enemies"]=4578,["global_maximum_added_lightning_damage"]=737,["global_maximum_added_lightning_damage_vs_ignited_enemies"]=4579,["global_maximum_added_lightning_damage_vs_shocked_enemies"]=4580,["global_maximum_added_physical_damage"]=631,["global_maximum_added_physical_damage_vs_bleeding_enemies"]=4581,["global_melee_range_+_per_white_socket_on_item"]=1948,["global_minimum_added_chaos_damage"]=743,["global_minimum_added_cold_damage"]=728,["global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies"]=4577,["global_minimum_added_fire_damage"]=721,["global_minimum_added_fire_damage_vs_burning_enemies"]=6396,["global_minimum_added_fire_damage_vs_ignited_enemies"]=4578,["global_minimum_added_lightning_damage"]=737,["global_minimum_added_lightning_damage_vs_ignited_enemies"]=4579,["global_minimum_added_lightning_damage_vs_shocked_enemies"]=4580,["global_minimum_added_physical_damage"]=631,["global_minimum_added_physical_damage_vs_bleeding_enemies"]=4581,["global_physical_damage_reduction_rating_while_moving"]=4582,["global_poison_on_hit"]=2386,["global_reduce_enemy_block_%"]=1191,["global_weapon_physical_damage_+%_per_red_socket_on_item"]=1934,["glows_in_area_with_unique_fish"]=3338,["goat_footprints_from_item"]=6617,["golem_attack_and_cast_speed_+%"]=4583,["golem_buff_effect_+%"]=4584,["golem_buff_effect_+%_per_summoned_golem"]=4585,["golem_cooldown_recovery_+%"]=2554,["golem_damage_+%_if_summoned_in_past_8_seconds"]=2914,["golem_damage_+%_per_active_golem"]=3408,["golem_damage_+%_per_active_golem_type"]=3407,["golem_immunity_to_elemental_damage"]=3303,["golem_life_regeneration_per_minute_%"]=4586,["golem_maximum_life_+%"]=4587,["golem_movement_speed_+%"]=4588,["golem_physical_damage_reduction_rating"]=4589,["golem_scale_+%"]=2907,["golem_skill_cooldown_recovery_+%"]=2553,["golems_larger_aggro_radius"]=6553,["grace_aura_effect_+%"]=2589,["grace_mana_reservation_+%"]=3255,["grace_reserves_no_mana"]=4590,["grant_X_frenzy_charges_to_nearby_allies_on_death"]=2111,["grant_animated_minion_melee_splash_damage_+%_final_for_splash"]=4591,["grant_tailwind_to_nearby_allies_if_used_skill_recently"]=4592,["gratuitous_violence_bleeding_damage_+%_final"]=4593,["ground_slam_angle_+%"]=2474,["ground_slam_chance_to_gain_endurance_charge_%_on_stun"]=4594,["ground_slam_damage_+%"]=2851,["ground_slam_radius_+%"]=3020,["ground_smoke_on_rampage_threshold_ms"]=2182,["ground_smoke_when_hit_%"]=1808,["ground_tar_on_block_base_area_of_effect_radius"]=4595,["ground_tar_on_take_crit_base_area_of_effect_radius"]=1746,["ground_tar_when_hit_%_chance"]=4596,["guard_skill_cooldown_recovery_+%"]=4597,["guardian_auras_grant_life_regeneration_per_minute_%"]=2995,["guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds"]=3000,["guardian_nearby_allies_share_charges"]=3327,["guardian_nearby_enemies_cannot_gain_charges"]=2996,["guardian_remove_curses_and_status_ailments_every_10_seconds"]=2999,["guardian_reserved_life_granted_to_you_and_allies_as_armour_%"]=2997,["guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield"]=2998,["guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%"]=2537,["guardian_with_5_nearby_allies_you_and_allies_have_onslaught"]=4598,["guardian_with_nearby_ally_damage_+%_final_for_you_and_allies"]=4599,["half_physical_bypasses_es_half_chaos_damages_es_when_X_corrupted_items_equipped"]=2327,["has_fortify"]=2815,["has_onslaught"]=2806,["haste_mana_reservation_+%"]=3256,["haste_reserves_no_mana"]=4600,["hatred_aura_effect_+%"]=2590,["hatred_mana_reservation_+%"]=3246,["hatred_reserves_no_mana"]=4601,["heavy_strike_attack_speed_+%"]=3067,["heavy_strike_chance_to_deal_double_damage_%"]=2450,["heavy_strike_damage_+%"]=2852,["herald_effect_on_self_+%"]=4602,["herald_mana_reservation_override_45%"]=4603,["herald_of_agony_buff_drop_off_speed_+%"]=4604,["herald_of_agony_buff_effect_+%"]=4605,["herald_of_agony_mana_reservation_+%"]=4606,["herald_of_ash_buff_effect_+%"]=4607,["herald_of_ash_burning_damage_+%_final"]=4608,["herald_of_ash_damage_+%"]=2929,["herald_of_ash_mana_reservation_+%"]=3242,["herald_of_ash_spell_fire_damage_+%_final"]=4609,["herald_of_ice_buff_effect_+%"]=4610,["herald_of_ice_damage_+%"]=2930,["herald_of_ice_mana_reservation_+%"]=3243,["herald_of_light_and_dominating_blow_minions_use_holy_slam"]=4611,["herald_of_light_buff_effect_+%"]=4612,["herald_of_light_minion_area_of_effect_+%"]=4613,["herald_of_purity_mana_reservation_+%"]=4614,["herald_of_thunder_buff_effect_+%"]=4615,["herald_of_thunder_damage_+%"]=2931,["herald_of_thunder_mana_reservation_+%"]=3244,["herald_scorpion_number_of_additional_projectiles"]=4616,["herald_skills_mana_reservation_+%"]=4617,["hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%"]=4618,["hierophant_boots_supported_by_life_leech"]=325,["hierophant_gloves_supported_by_increased_area_of_effect"]=324,["hierophant_helmet_supported_by_elemental_penetration"]=323,["hierophant_mana_cost_+%_final"]=4619,["hierophant_mana_reservation_+%_final"]=4620,["hierophant_passive_damage_+%_final_per_totem"]=2960,["hinder_effect_on_self_+%"]=4621,["hinder_enemy_chaos_damage_taken_+%"]=4622,["hit_and_ailment_damage_+%_vs_bleeding_enemies"]=4623,["hit_and_ailment_damage_+%_vs_blinded_enemies"]=4624,["hit_and_ailment_damage_+%_vs_chilled_enemies"]=4625,["hit_and_ailment_damage_+%_vs_cursed_enemies"]=4626,["hit_and_ailment_damage_+%_vs_enemies_affected_by_ailments"]=4627,["hit_and_ailment_damage_+%_vs_enemies_affected_by_at_least_3_spiders_webs"]=4628,["hit_and_ailment_damage_+%_vs_unique_enemies"]=4629,["hits_can_only_kill_frozen_enemies"]=2237,["hits_cannot_be_evaded_vs_blinded_enemies"]=4630,["hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped"]=4631,["hits_ignore_enemy_fire_resistance_while_you_are_ignited"]=4632,["holy_path_teleport_range_+%"]=4633,["holy_relic_area_of_effect_+%"]=4634,["holy_relic_buff_effect_+%"]=4635,["holy_relic_cooldown_recovery_+%"]=4636,["holy_relic_damage_+%"]=4637,["ice_crash_damage_+%"]=2897,["ice_crash_physical_damage_%_to_add_as_cold_damage"]=3193,["ice_crash_radius_+%"]=3043,["ice_dash_cooldown_speed_+%"]=4638,["ice_dash_duration_+%"]=4639,["ice_dash_travel_distance_+%"]=4640,["ice_golem_damage_+%"]=2910,["ice_golem_elemental_resistances_%"]=3198,["ice_nova_chill_minimum_slow_%"]=4641,["ice_nova_damage_+%"]=2880,["ice_nova_freeze_chance_%"]=3174,["ice_nova_radius_+%"]=3030,["ice_shot_additional_pierce_per_10_old"]=4642,["ice_shot_area_angle_+%"]=4643,["ice_shot_damage_+%"]=2864,["ice_shot_duration_+%"]=3146,["ice_shot_pierce_+"]=4644,["ice_shot_radius_+%"]=3026,["ice_siphon_trap_chill_effect_+%"]=4645,["ice_siphon_trap_damage_+%"]=4646,["ice_siphon_trap_damage_taken_+%_per_beam"]=4647,["ice_siphon_trap_duration_+%"]=4648,["ice_spear_%_chance_to_gain_power_charge_on_critical_strike"]=3183,["ice_spear_damage_+%"]=2881,["ice_spear_distance_before_form_change_+%"]=4649,["ice_spear_number_of_additional_projectiles"]=4650,["ice_spear_second_form_critical_strike_chance_+%"]=3333,["ice_spear_second_form_critical_strike_multiplier_+"]=3334,["ice_spear_second_form_projectile_speed_+%_final"]=3335,["ice_trap_cold_resistance_penetration_%"]=4651,["ice_trap_cooldown_speed_+%"]=3102,["ice_trap_damage_+%"]=2946,["ice_trap_radius_+%"]=3056,["ignite_X_nearby_enemies_for_4_s_on_killing_ignited_enemy"]=2033,["ignite_damage_+%_vs_chilled_enemies"]=4652,["ignite_dot_multiplier_+"]=622,["ignite_duration_+%"]=1153,["ignite_duration_-%"]=4653,["ignite_prevention_ms_when_ignited"]=2108,["ignite_slower_burn_%"]=1797,["ignited_enemies_explode_on_kill"]=1825,["ignites_apply_fire_resistance_+"]=4654,["ignites_reflected_to_self"]=2255,["ignore_armour_movement_penalties"]=1468,["ignore_hexproof"]=1834,["ignores_enemy_cold_resistance"]=4655,["ignores_enemy_fire_resistance"]=4656,["ignores_enemy_lightning_resistance"]=4657,["immortal_call_%_chance_to_not_consume_endurance_charges"]=3237,["immortal_call_buff_effect_duration_+%_per_removable_endurance_charge"]=4658,["immortal_call_duration_+%"]=3112,["immune_to_ally_buff_auras"]=2234,["immune_to_bleeding"]=3421,["immune_to_bleeding_while_leeching"]=3424,["immune_to_burning_shocks_and_chilled_ground"]=4659,["immune_to_curses_while_channelling"]=4660,["immune_to_elemental_ailments_while_on_consecrated_ground"]=4661,["immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"]=4662,["immune_to_elemental_ailments_while_you_have_arcane_surge"]=4663,["immune_to_elemental_status_ailments_during_flask_effect"]=3431,["immune_to_elemental_status_ailments_while_affected_by_glorious_madness"]=6538,["immune_to_freeze_and_chill_while_ignited"]=4664,["immune_to_freeze_while_affected_by_purity_of_ice"]=4665,["immune_to_ignite_and_shock"]=4666,["immune_to_ignite_while_affected_by_purity_of_fire"]=4667,["immune_to_poison"]=2825,["immune_to_shock_while_affected_by_purity_of_lightning"]=4668,["immune_to_status_ailments_while_focused"]=4669,["immune_to_status_ailments_while_phased"]=2683,["impale_debuff_effect_+%"]=4670,["impale_debuff_effect_+%_from_hits_that_also_inflict_bleeding"]=4671,["impale_on_hit_%_chance_with_axes_swords"]=4672,["impale_phys_reduction_%_penalty"]=2198,["impaled_debuff_number_of_reflected_hits"]=4673,["impurity_cold_damage_taken_+%_final"]=4674,["impurity_fire_damage_taken_+%_final"]=4675,["impurity_lightning_damage_taken_+%_final"]=4676,["incinerate_damage_+%"]=2882,["incinerate_damage_+%_per_stage"]=3217,["incinerate_projectile_speed_+%"]=3109,["increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem"]=843,["infernal_blow_damage_+%"]=2853,["infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack"]=4677,["infernal_blow_physical_damage_%_to_add_as_fire_damage"]=3170,["infernal_blow_radius_+%"]=3021,["inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"]=4678,["inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"]=4679,["inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"]=4680,["infusion_effect_+%"]=4681,["inquisitor_aura_elemental_damage_+%_final"]=2800,["inspiration_charge_duration_+%"]=4682,["intelligence_+%"]=564,["intelligence_+%_per_equipped_unique"]=1824,["intelligence_skill_gem_level_+"]=4683,["intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%"]=4684,["iron_reflexes_rotation_active"]=6603,["is_blighted_map"]=4685,["is_hindered"]=3316,["is_petrified"]=2814,["item_drop_slots"]=3,["item_drops_on_death"]=1790,["item_found_quality_+%"]=934,["item_found_quantity_+%"]=925,["item_found_quantity_+%_if_wearing_a_magic_item"]=3418,["item_found_quantity_+%_per_chest_opened_recently"]=4686,["item_found_quantity_+%_per_white_socket_on_item"]=1944,["item_found_quantity_+%_when_on_low_life"]=927,["item_found_rarity_+%"]=929,["item_found_rarity_+%_if_wearing_a_normal_item"]=3417,["item_found_rarity_+%_per_white_socket_on_item"]=1946,["item_found_rarity_+%_when_on_low_life"]=932,["item_found_rarity_+%_while_phasing"]=1742,["item_found_rarity_+1%_per_X_rampage_stacks"]=4687,["item_found_relevancy_+%"]=935,["item_generation_can_have_multiple_crafted_mods"]=46,["item_generation_cannot_change_prefixes"]=42,["item_generation_cannot_change_suffixes"]=43,["item_generation_cannot_roll_attack_affixes"]=45,["item_generation_cannot_roll_caster_affixes"]=44,["item_generation_local_maximum_mod_required_level_override"]=47,["item_rarity_+%_while_using_flask"]=1969,["jorrhasts_blacksteel_animate_weapon_duration_+%_final"]=2010,["kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms"]=4688,["keystone_acrobatics"]=6559,["keystone_ailment_crit"]=6560,["keystone_ancestral_bond"]=6561,["keystone_avatar_of_fire"]=6562,["keystone_blood_magic"]=6563,["keystone_chaos_inoculation"]=6564,["keystone_conduit"]=6565,["keystone_crimson_dance"]=6566,["keystone_eldritch_battery"]=6567,["keystone_elemental_equilibrium"]=6568,["keystone_elemental_overload"]=6569,["keystone_ghost_reaver"]=6570,["keystone_iron_reflexes"]=6571,["keystone_mana_shield"]=6572,["keystone_minion_instability"]=6573,["keystone_mortal_conviction"]=6574,["keystone_pain_attunement"]=6575,["keystone_phase_acrobatics"]=6576,["keystone_point_blank"]=6577,["keystone_projectile_evasion"]=6578,["keystone_quiet_might"]=6579,["keystone_runebinder"]=6581,["keystone_shared_suffering"]=6582,["keystone_strong_bowman"]=6583,["keystone_unwavering_stance"]=6584,["keystone_vaal_pact"]=6585,["keystone_vampirism"]=6586,["keystone_wicked_ward"]=6587,["kill_enemy_on_hit_if_under_10%_life"]=1329,["kill_enemy_on_hit_if_under_20%_life"]=3420,["killed_monster_dropped_item_quantity_+%_when_frozen"]=1908,["killed_monster_dropped_item_rarity_+%_on_crit"]=1862,["killed_monster_dropped_item_rarity_+%_when_frozen"]=1911,["killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked"]=1909,["killed_monster_dropped_item_rarity_+%_when_shattered"]=2784,["killed_monster_dropped_item_rarity_+%_when_shocked"]=1910,["kills_count_twice_for_rampage_%"]=4689,["kinetic_blast_%_chance_for_additional_blast"]=3326,["kinetic_blast_damage_+%"]=2898,["kinetic_blast_radius_+%"]=3044,["kinetic_bolt_attack_speed_+%"]=4690,["kinetic_bolt_projectile_speed_+%"]=4691,["kinetic_wand_base_number_of_zig_zags"]=4692,["knockback_distance_+%"]=1295,["knockback_on_counterattack_%"]=2836,["knockback_on_crit_with_bow"]=1236,["knockback_on_crit_with_staff"]=1237,["knockback_on_crit_with_wand"]=1238,["knockback_with_bow"]=877,["knockback_with_staff"]=878,["knockback_with_wand"]=879,["labyrinth_darkshrine_boss_room_traps_are_disabled"]=4693,["labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x"]=4694,["labyrinth_darkshrine_izaro_dropped_unique_items_+"]=4695,["labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys"]=4696,["labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%"]=4697,["labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth"]=4698,["lancing_steel_damage_+%"]=4699,["lancing_steel_impale_chance_%"]=4700,["lancing_steel_primary_proj_pierce_num"]=4701,["leap_slam_attack_speed_+%"]=3070,["leap_slam_damage_+%"]=2869,["leap_slam_radius_+%"]=3028,["leech_X_life_per_spell_cast"]=2047,["leech_energy_shield_instead_of_life"]=4702,level=1,["life_+%_with_no_corrupted_equipped_items"]=3409,["life_and_energy_shield_recovery_rate_+%"]=4703,["life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently"]=4704,["life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%"]=4705,["life_and_energy_shield_recovery_rate_+%_per_power_charge"]=4706,["life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence"]=4707,["life_and_mana_gain_per_hit"]=1052,["life_and_mana_leech_from_attack_damage_permyriad_if_killed_recently"]=4708,["life_and_mana_leech_from_physical_damage_permyriad"]=984,["life_es_and_mana_recovery_+%_for_4_seconds_on_killing_enemies_affected_by_your_degen"]=2743,["life_flask_charges_recovered_per_3_seconds"]=4709,["life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently"]=4710,["life_gain_on_ignited_enemy_hit"]=1054,["life_gain_per_target"]=1048,["life_gain_per_target_hit_while_affected_by_vitality"]=4711,["life_gain_per_target_if_have_used_a_vaal_skill_recently"]=4712,["life_gained_on_bleeding_enemy_hit"]=2777,["life_gained_on_block"]=1068,["life_gained_on_enemy_death_per_frenzy_charge"]=2147,["life_gained_on_enemy_death_per_level"]=2190,["life_gained_on_hit_per_enemy_status_ailment"]=2289,["life_gained_on_killing_ignited_enemies"]=1064,["life_gained_on_spell_hit_per_enemy_status_ailment"]=2290,["life_gained_on_taunting_enemy"]=1092,["life_leech_applies_to_enemies_%"]=2399,["life_leech_applies_to_energy_shield_on_full_life"]=4713,["life_leech_does_not_stop_at_full_life"]=2423,["life_leech_from_any_damage_permyriad"]=989,["life_leech_from_any_damage_permyriad_per_siphoning_charge"]=3535,["life_leech_from_any_damage_permyriad_while_affected_by_vitality"]=4714,["life_leech_from_any_damage_permyriad_while_focused"]=4715,["life_leech_from_attack_damage_permyriad_per_frenzy_charge"]=4716,["life_leech_from_attack_damage_permyriad_vs_bleeding_enemies"]=1012,["life_leech_from_attack_damage_permyriad_vs_maimed_enemies"]=4717,["life_leech_from_attack_damage_permyriad_vs_poisoned_enemies"]=3386,["life_leech_from_attack_damage_permyriad_vs_taunted_enemies"]=4718,["life_leech_from_fire_damage_permyriad_while_affected_by_anger"]=4719,["life_leech_from_fire_damage_while_ignited_permyriad"]=4720,["life_leech_from_physical_attack_damage_permyriad"]=978,["life_leech_from_physical_damage_with_bow_permyriad"]=983,["life_leech_from_physical_damage_with_claw_permyriad"]=982,["life_leech_from_skills_used_by_totems_permyriad"]=1814,["life_leech_from_spell_damage_permyriad_if_shield_has_30%_block_chance"]=3568,["life_leech_from_spell_damage_permyriad_while_you_have_arcane_surge"]=4721,["life_leech_on_damage_taken_%_permyriad"]=4722,["life_leech_on_overkill_damage_%"]=2421,["life_leech_permyriad_from_elemental_damage_against_enemies_with_elemental_status_ailments"]=2535,["life_leech_permyriad_on_crit"]=1011,["life_leech_permyriad_vs_cursed_enemies"]=3469,["life_leech_permyriad_vs_poisoned_enemies"]=4723,["life_leech_speed_+%"]=1443,["life_leech_speed_+%_per_equipped_corrupted_item"]=2315,["life_leech_speed_is_doubled"]=4724,["life_leech_uses_chaos_damage_when_X_corrupted_items_equipped"]=2326,["life_loss_%_per_minute_per_rage_while_not_losing_rage"]=4725,["life_per_level"]=4726,["life_recovery_+%_from_flasks_while_on_low_life"]=4727,["life_recovery_rate_+%"]=2187,["life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=4728,["life_recovery_rate_+%_while_affected_by_vitality"]=4729,["life_regen_per_minute_per_endurance_charge"]=2225,["life_regenerate_rate_per_second_%_while_totem_active"]=3264,["life_regeneration_%_per_minute_if_player_minion_died_recently"]=4738,["life_regeneration_per_minute_%_while_affected_by_guard_skill"]=4731,["life_regeneration_per_minute_%_while_burning"]=4732,["life_regeneration_per_minute_%_while_channelling"]=4733,["life_regeneration_per_minute_%_while_fortified"]=2411,["life_regeneration_per_minute_%_while_frozen"]=2956,["life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield"]=3564,["life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield"]=3565,["life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield"]=3563,["life_regeneration_per_minute_per_active_buff"]=4730,["life_regeneration_per_minute_while_affected_by_vitality"]=4734,["life_regeneration_per_minute_while_ignited"]=4735,["life_regeneration_per_minute_while_moving"]=4736,["life_regeneration_per_minute_while_you_have_avians_flight"]=4737,["life_regeneration_per_minute_with_no_corrupted_equipped_items"]=3410,["life_regeneration_rate_+%"]=2186,["life_regeneration_rate_+%_while_es_full"]=2291,["life_regeneration_rate_per_minute_%"]=1228,["life_regeneration_rate_per_minute_%_if_have_been_hit_recently"]=4739,["life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=4740,["life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently"]=3430,["life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield"]=4741,["life_regeneration_rate_per_minute_%_per_endurance_charge"]=917,["life_regeneration_rate_per_minute_%_per_frenzy_charge"]=1851,["life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%"]=4742,["life_regeneration_rate_per_minute_%_per_power_charge"]=4743,["life_regeneration_rate_per_minute_%_per_raised_zombie"]=4744,["life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%"]=4745,["life_regeneration_rate_per_minute_%_when_on_chilled_ground"]=1434,["life_regeneration_rate_per_minute_%_when_on_low_life"]=1229,["life_regeneration_rate_per_minute_%_while_moving"]=4746,["life_regeneration_rate_per_minute_%_while_stationary"]=4747,["life_regeneration_rate_per_minute_%_while_using_flask"]=4748,["life_regeneration_rate_per_minute_%_with_400_or_more_strength"]=4749,["life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item"]=2316,["life_regeneration_rate_per_minute_per_level"]=2176,["life_reserved_by_stat_%"]=1680,["light_radius_+%"]=1736,["light_radius_+%_while_phased"]=1744,["light_radius_additive_modifiers_apply_to_area_%_value"]=1734,["light_radius_additive_modifiers_apply_to_damage"]=1735,["light_radius_increases_apply_to_accuracy"]=4750,["light_radius_increases_apply_to_area_of_effect"]=4751,["light_radius_scales_with_energy_shield"]=1954,["lightning_and_chaos_damage_resistance_%"]=4752,["lightning_arrow_damage_+%"]=2870,["lightning_arrow_maximum_number_of_extra_targets"]=3336,["lightning_arrow_radius_+%"]=3029,["lightning_critical_strike_chance_+%"]=838,["lightning_critical_strike_multiplier_+"]=863,["lightning_damage_%_taken_from_mana_before_life"]=3372,["lightning_damage_%_to_add_as_chaos"]=1223,["lightning_damage_%_to_add_as_chaos_per_power_charge"]=4755,["lightning_damage_%_to_add_as_cold"]=1222,["lightning_damage_%_to_add_as_cold_vs_chilled_enemies"]=4756,["lightning_damage_%_to_add_as_fire"]=1221,["lightning_damage_+%"]=736,["lightning_damage_+%_per_10_intelligence"]=3341,["lightning_damage_+%_per_frenzy_charge"]=2146,["lightning_damage_+%_per_lightning_resistance_above_75"]=4754,["lightning_damage_+%_while_affected_by_herald_of_thunder"]=4757,["lightning_damage_+%_while_affected_by_wrath"]=4758,["lightning_damage_can_chill"]=2090,["lightning_damage_can_freeze"]=2096,["lightning_damage_can_ignite"]=4753,["lightning_damage_cannot_shock"]=2102,["lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=4759,["lightning_damage_resistance_+%"]=970,["lightning_damage_resistance_is_%"]=967,["lightning_damage_taken_%_as_cold"]=2396,["lightning_damage_taken_%_as_fire"]=2394,["lightning_damage_taken_+"]=4760,["lightning_damage_taken_+%"]=2611,["lightning_damage_taken_per_minute_per_power_charge_if_have_crit_recently"]=6539,["lightning_damage_taken_when_hit_by_attack"]=1502,["lightning_damage_to_return_to_melee_attacker"]=1492,["lightning_damage_to_return_when_hit"]=1497,["lightning_damage_with_attack_skills_+%"]=4761,["lightning_damage_with_spell_skills_+%"]=4762,["lightning_dot_multiplier_+"]=625,["lightning_explosion_mine_aura_effect_+%"]=4763,["lightning_explosion_mine_damage_+%"]=4764,["lightning_explosion_mine_throwing_speed_+%"]=4765,["lightning_golem_damage_+%"]=2911,["lightning_golem_elemental_resistances_%"]=3199,["lightning_hit_damage_+%_vs_chilled_enemies"]=4766,["lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning"]=4767,["lightning_skill_chance_to_inflict_lightning_exposure_%"]=4768,["lightning_skill_gem_level_+"]=4769,["lightning_skill_stun_threshold_+%"]=4770,["lightning_skills_chance_to_poison_on_hit_%"]=4771,["lightning_spell_physical_damage_%_to_convert_to_lightning"]=4772,["lightning_spell_skill_gem_level_+"]=945,["lightning_strike_additional_pierce"]=3166,["lightning_strike_damage_+%"]=2854,["lightning_strike_num_of_additional_projectiles"]=3157,["lightning_tendrils_critical_strike_chance_+%"]=3322,["lightning_tendrils_damage_+%"]=2855,["lightning_tendrils_radius_+%"]=3022,["lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit"]=4773,["lightning_tower_trap_additional_number_of_beams"]=4774,["lightning_tower_trap_cast_speed_+%"]=4775,["lightning_tower_trap_cooldown_speed_+%"]=4776,["lightning_tower_trap_damage_+%"]=4777,["lightning_tower_trap_duration_+%"]=4778,["lightning_trap_additional_pierce"]=3167,["lightning_trap_cooldown_speed_+%"]=2639,["lightning_trap_damage_+%"]=2637,["lightning_trap_lightning_resistance_penetration_%"]=4779,["lightning_trap_number_of_additional_projectiles"]=2638,["lightning_trap_shock_effect_+%"]=4780,["lightning_warp_cast_speed_+%"]=3085,["lightning_warp_damage_+%"]=2871,["lightning_warp_duration_+%"]=3145,["local_accuracy_rating"]=1314,["local_accuracy_rating_+%"]=1315,["local_additional_block_chance_%"]=1531,["local_affliction_jewel_display_small_nodes_grant_nothing"]=4781,["local_affliction_jewel_small_nodes_grant_%_life_regeneration_per_minute"]=4818,["local_affliction_jewel_small_nodes_grant_all_attributes"]=4782,["local_affliction_jewel_small_nodes_grant_armour"]=4783,["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_while_affected_by_a_herald"]=4784,["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_channelling_skills"]=4785,["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_chaos_skills"]=4786,["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_cold_skills"]=4787,["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_elemental_skills"]=4788,["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_fire_skills"]=4789,["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_lightning_skills"]=4790,["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_physical_skills"]=4791,["local_affliction_jewel_small_nodes_grant_attack_speed_+%"]=4792,["local_affliction_jewel_small_nodes_grant_base_aura_area_of_effect_+%"]=4793,["local_affliction_jewel_small_nodes_grant_base_cast_speed_+%"]=4794,["local_affliction_jewel_small_nodes_grant_base_critical_strike_multiplier_+"]=4795,["local_affliction_jewel_small_nodes_grant_base_elemental_status_ailment_duration_+%"]=4796,["local_affliction_jewel_small_nodes_grant_base_projectile_speed_+%"]=4797,["local_affliction_jewel_small_nodes_grant_base_skill_area_of_effect_+%"]=4798,["local_affliction_jewel_small_nodes_grant_chaos_resistance_%"]=4799,["local_affliction_jewel_small_nodes_grant_charges_gained_+%"]=4800,["local_affliction_jewel_small_nodes_grant_cold_resistance_%"]=4801,["local_affliction_jewel_small_nodes_grant_curse_area_of_effect_+%"]=4802,["local_affliction_jewel_small_nodes_grant_damage_+%"]=4804,["local_affliction_jewel_small_nodes_grant_damage_over_time_+%"]=4803,["local_affliction_jewel_small_nodes_grant_dex"]=4805,["local_affliction_jewel_small_nodes_grant_elemental_resistance_%"]=4806,["local_affliction_jewel_small_nodes_grant_evasion"]=4807,["local_affliction_jewel_small_nodes_grant_fire_resistance_%"]=4808,["local_affliction_jewel_small_nodes_grant_int"]=4809,["local_affliction_jewel_small_nodes_grant_lightning_resistance_%"]=4810,["local_affliction_jewel_small_nodes_grant_mana_regeneration_+%"]=4811,["local_affliction_jewel_small_nodes_grant_maximum_energy_shield"]=4812,["local_affliction_jewel_small_nodes_grant_maximum_life"]=4813,["local_affliction_jewel_small_nodes_grant_maximum_mana"]=4814,["local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%"]=4815,["local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=4816,["local_affliction_jewel_small_nodes_grant_minion_life_regeneration_rate_per_minute_%"]=4817,["local_affliction_jewel_small_nodes_grant_sigil_target_search_range_+%"]=4819,["local_affliction_jewel_small_nodes_grant_str"]=4820,["local_affliction_jewel_small_nodes_grant_summon_totem_cast_speed_+%"]=4821,["local_affliction_jewel_small_nodes_grant_trap_and_mine_throwing_speed_+%"]=4822,["local_affliction_jewel_small_nodes_grant_warcry_duration_+%"]=4823,["local_affliction_jewel_small_nodes_have_effect_+%"]=4824,["local_affliction_notable_adrenaline"]=4825,["local_affliction_notable_advance_guard"]=4826,["local_affliction_notable_aerialist"]=4827,["local_affliction_notable_aerodynamics"]=4828,["local_affliction_notable_agent_of_destruction"]=4829,["local_affliction_notable_alchemist"]=4830,["local_affliction_notable_ancestral_echo"]=4831,["local_affliction_notable_ancestral_guidance"]=4832,["local_affliction_notable_ancestral_inspiration"]=4833,["local_affliction_notable_ancestral_might"]=4834,["local_affliction_notable_ancestral_preservation"]=4835,["local_affliction_notable_ancestral_reach"]=4836,["local_affliction_notable_antifreeze"]=4837,["local_affliction_notable_antivenom"]=4838,["local_affliction_notable_arcane_focus"]=4839,["local_affliction_notable_arcane_heroism"]=4840,["local_affliction_notable_arcane_pyrotechnics"]=4841,["local_affliction_notable_arcing_shot"]=4842,["local_affliction_notable_assert_dominance"]=4843,["local_affliction_notable_astonishing_affliction"]=4844,["local_affliction_notable_basics_of_pain"]=4845,["local_affliction_notable_battle_hardened"]=4846,["local_affliction_notable_battlefield_dominator"]=4847,["local_affliction_notable_blacksmith"]=4848,["local_affliction_notable_blanketed_snow"]=4849,["local_affliction_notable_blast_freeze"]=4850,["local_affliction_notable_blessed"]=4851,["local_affliction_notable_blessed_rebirth"]=4852,["local_affliction_notable_bloodscent"]=4853,["local_affliction_notable_blowback"]=4854,["local_affliction_notable_bodyguards"]=4855,["local_affliction_notable_born_of_chaos"]=4856,["local_affliction_notable_brand_loyalty"]=4857,["local_affliction_notable_brewed_for_potency"]=4858,["local_affliction_notable_broadside"]=4859,["local_affliction_notable_brush_with_death"]=4860,["local_affliction_notable_brutal_infamy"]=4861,["local_affliction_notable_burden_projection"]=4862,["local_affliction_notable_burning_bright"]=4863,["local_affliction_notable_calamitous"]=4864,["local_affliction_notable_call_to_the_slaughter"]=4865,["local_affliction_notable_capacitor"]=4866,["local_affliction_notable_careful_handling"]=4867,["local_affliction_notable_chilling_presence"]=4868,["local_affliction_notable_chip_away"]=4869,["local_affliction_notable_circling_oblivion"]=4870,["local_affliction_notable_clarity_of_purpose"]=4871,["local_affliction_notable_cold_blooded_killer"]=4872,["local_affliction_notable_cold_conduction"]=4873,["local_affliction_notable_cold_to_the_core"]=4874,["local_affliction_notable_combat_rhythm"]=4875,["local_affliction_notable_compound_injury"]=4876,["local_affliction_notable_confident_combatant"]=4877,["local_affliction_notable_conjured_wall"]=4878,["local_affliction_notable_conservation_of_energy"]=4879,["local_affliction_notable_cooked_alive"]=4880,["local_affliction_notable_corrosive_elements"]=4881,["local_affliction_notable_cremator"]=4882,["local_affliction_notable_cry_wolf"]=4883,["local_affliction_notable_cult_leader"]=4884,["local_affliction_notable_daring_ideas"]=4885,["local_affliction_notable_dark_discourse"]=4886,["local_affliction_notable_dark_ideation"]=4887,["local_affliction_notable_dark_messenger"]=4888,["local_affliction_notable_darting_movements"]=4889,["local_affliction_notable_deadly_repartee"]=4890,["local_affliction_notable_deep_chill"]=4891,["local_affliction_notable_deep_cuts"]=4892,["local_affliction_notable_devastator"]=4893,["local_affliction_notable_disciples"]=4894,["local_affliction_notable_disease_vector"]=4895,["local_affliction_notable_disorienting_display"]=4896,["local_affliction_notable_disorienting_wounds"]=4897,["local_affliction_notable_distilled_perfection"]=4898,["local_affliction_notable_doryanis_lesson"]=4899,["local_affliction_notable_dragon_hunter"]=4900,["local_affliction_notable_dread_march"]=4901,["local_affliction_notable_drive_the_destruction"]=4902,["local_affliction_notable_eldritch_inspiration"]=4903,["local_affliction_notable_elegant_form"]=4904,["local_affliction_notable_empowered_envoy"]=4905,["local_affliction_notable_endbringer"]=4906,["local_affliction_notable_enduring_composure"]=4907,["local_affliction_notable_enduring_focus"]=4908,["local_affliction_notable_enduring_ward"]=4909,["local_affliction_notable_energy_from_naught"]=4910,["local_affliction_notable_essence_rush"]=4911,["local_affliction_notable_eternal_suffering"]=4912,["local_affliction_notable_evil_eye"]=4913,["local_affliction_notable_expansive_might"]=4914,["local_affliction_notable_expendability"]=4915,["local_affliction_notable_expert_sabotage"]=4916,["local_affliction_notable_explosive_force"]=4917,["local_affliction_notable_exposure_therapy"]=4918,["local_affliction_notable_eye_of_the_storm"]=4919,["local_affliction_notable_eye_to_eye"]=4920,["local_affliction_notable_fan_of_blades"]=4921,["local_affliction_notable_fan_the_flames"]=4922,["local_affliction_notable_fasting"]=4923,["local_affliction_notable_fearsome_warrior"]=4924,["local_affliction_notable_feast_of_flesh"]=4925,["local_affliction_notable_feasting_fiends"]=4926,["local_affliction_notable_feed_the_fury"]=4927,["local_affliction_notable_fettle"]=4928,["local_affliction_notable_fire_attunement"]=4929,["local_affliction_notable_first_among_equals"]=4930,["local_affliction_notable_flexible_sentry"]=4931,["local_affliction_notable_flow_of_life"]=4932,["local_affliction_notable_follow_through"]=4933,["local_affliction_notable_force_multiplier"]=4934,["local_affliction_notable_fuel_the_fight"]=4935,["local_affliction_notable_furious_assault"]=4936,["local_affliction_notable_genius"]=4937,["local_affliction_notable_gladiatorial_combat"]=4938,["local_affliction_notable_gladiators_fortitude"]=4939,["local_affliction_notable_graceful_execution"]=4940,["local_affliction_notable_grand_design"]=4941,["local_affliction_notable_grim_oath"]=4942,["local_affliction_notable_guerilla_tactics"]=4943,["local_affliction_notable_haemorrhage"]=4944,["local_affliction_notable_haunting_shout"]=4945,["local_affliction_notable_heart_of_iron"]=4946,["local_affliction_notable_heavy_hitter"]=4947,["local_affliction_notable_heraldry"]=4948,["local_affliction_notable_hex_breaker"]=4949,["local_affliction_notable_hibernator"]=4950,["local_affliction_notable_hit_and_run"]=4951,["local_affliction_notable_holistic_health"]=4952,["local_affliction_notable_holy_conquest"]=4953,["local_affliction_notable_hulking_corpses"]=4954,["local_affliction_notable_improvisor"]=4955,["local_affliction_notable_insatiable_killer"]=4956,["local_affliction_notable_inspired_oppression"]=4957,["local_affliction_notable_insulated"]=4958,["local_affliction_notable_intensity"]=4959,["local_affliction_notable_invigorating_portents"]=4960,["local_affliction_notable_iron_breaker"]=4961,["local_affliction_notable_lasting_impression"]=4962,["local_affliction_notable_lead_by_example"]=4963,["local_affliction_notable_life_from_death"]=4964,["local_affliction_notable_liquid_inspiration"]=4965,["local_affliction_notable_low_tolerance"]=4966,["local_affliction_notable_mage_bane"]=4967,["local_affliction_notable_mage_hunter"]=4968,["local_affliction_notable_magnifier"]=4969,["local_affliction_notable_martial_mastery"]=4970,["local_affliction_notable_martial_momentum"]=4971,["local_affliction_notable_martial_prowess"]=4972,["local_affliction_notable_master_of_command"]=4973,["local_affliction_notable_master_of_fear"]=4974,["local_affliction_notable_master_of_fire"]=4975,["local_affliction_notable_master_the_fundamentals"]=4976,["local_affliction_notable_menders_wellspring"]=4977,["local_affliction_notable_militarism"]=4978,["local_affliction_notable_mindfulness"]=4979,["local_affliction_notable_mob_mentality"]=4980,["local_affliction_notable_molten_ones_mark"]=4981,["local_affliction_notable_mystical_ward"]=4982,["local_affliction_notable_natural_vigour"]=4983,["local_affliction_notable_no_witnesses"]=4984,["local_affliction_notable_non_flammable"]=4985,["local_affliction_notable_numbing_elixir"]=4986,["local_affliction_notable_one_with_the_shield"]=4987,["local_affliction_notable_openness"]=4988,["local_affliction_notable_opportunistic_fusilade"]=4989,["local_affliction_notable_overlord"]=4990,["local_affliction_notable_overshock"]=4991,["local_affliction_notable_overwhelming_malice"]=4992,["local_affliction_notable_paralysis"]=4993,["local_affliction_notable_peace_amidst_chaos"]=4994,["local_affliction_notable_peak_vigour"]=4995,["local_affliction_notable_powerful_assault"]=4996,["local_affliction_notable_powerful_ward"]=4997,["local_affliction_notable_practiced_caster"]=4998,["local_affliction_notable_precise_commander"]=4999,["local_affliction_notable_precise_focus"]=5000,["local_affliction_notable_precise_retaliation"]=5001,["local_affliction_notable_pressure_points"]=5002,["local_affliction_notable_primordial_bond"]=5003,["local_affliction_notable_prismatic_carapace"]=5004,["local_affliction_notable_prismatic_dance"]=5005,["local_affliction_notable_prismatic_heart"]=5006,["local_affliction_notable_prodigious_defense"]=5007,["local_affliction_notable_provocateur"]=5008,["local_affliction_notable_pure_agony"]=5009,["local_affliction_notable_pure_aptitude"]=5010,["local_affliction_notable_pure_commander"]=5011,["local_affliction_notable_pure_guile"]=5012,["local_affliction_notable_pure_might"]=5013,["local_affliction_notable_purposeful_harbinger"]=5014,["local_affliction_notable_quick_and_deadly"]=5015,["local_affliction_notable_quick_getaway"]=5016,["local_affliction_notable_rapid_infusion"]=5017,["local_affliction_notable_rattling_bellow"]=5018,["local_affliction_notable_raze_and_pillage"]=5019,["local_affliction_notable_readiness"]=5020,["local_affliction_notable_remarkable"]=5021,["local_affliction_notable_rend"]=5022,["local_affliction_notable_renewal"]=5023,["local_affliction_notable_repeater"]=5024,["local_affliction_notable_replenishing_presence"]=5025,["local_affliction_notable_riot_queller"]=5026,["local_affliction_notable_rot_resistant"]=5027,["local_affliction_notable_rote_reinforcement"]=5028,["local_affliction_notable_rotten_claws"]=5029,["local_affliction_notable_run_through"]=5030,["local_affliction_notable_sadist"]=5031,["local_affliction_notable_sage"]=5032,["local_affliction_notable_sap_psyche"]=5033,["local_affliction_notable_savage_response"]=5034,["local_affliction_notable_savour_the_moment"]=5035,["local_affliction_notable_scintillating_idea"]=5036,["local_affliction_notable_seal_mender"]=5037,["local_affliction_notable_second_skin"]=5038,["local_affliction_notable_seeker_runes"]=5039,["local_affliction_notable_self_fulfilling_prophecy"]=5040,["local_affliction_notable_septic_spells"]=5041,["local_affliction_notable_set_and_forget"]=5042,["local_affliction_notable_shifting_shadow"]=5043,["local_affliction_notable_shrieking_bolts"]=5044,["local_affliction_notable_skeletal_atrophy"]=5045,["local_affliction_notable_skullbreaker"]=5046,["local_affliction_notable_sleepless_sentries"]=5047,["local_affliction_notable_smite_the_weak"]=5048,["local_affliction_notable_smoking_remains"]=5049,["local_affliction_notable_snaring_spirits"]=5050,["local_affliction_notable_snowstorm"]=5051,["local_affliction_notable_special_reserve"]=5052,["local_affliction_notable_spiked_concoction"]=5053,["local_affliction_notable_spring_back"]=5054,["local_affliction_notable_stalwart_commander"]=5055,["local_affliction_notable_steady_torment"]=5056,["local_affliction_notable_stoic_focus"]=5057,["local_affliction_notable_storm_drinker"]=5058,["local_affliction_notable_stormrider"]=5059,["local_affliction_notable_storms_hand"]=5060,["local_affliction_notable_streamlined"]=5061,["local_affliction_notable_strike_leader"]=5062,["local_affliction_notable_stubborn_student"]=5063,["local_affliction_notable_student_of_decay"]=5064,["local_affliction_notable_sublime_sensation"]=5065,["local_affliction_notable_supercharge"]=5066,["local_affliction_notable_surefooted_striker"]=5067,["local_affliction_notable_surging_vitality"]=5068,["local_affliction_notable_surprise_sabotage"]=5069,["local_affliction_notable_tempered_arrowheads"]=5070,["local_affliction_notable_thaumophage"]=5071,["local_affliction_notable_thunderstruck"]=5072,["local_affliction_notable_titanic_swings"]=5073,["local_affliction_notable_touch_of_cruelty"]=5074,["local_affliction_notable_towering_threat"]=5075,["local_affliction_notable_unholy_grace"]=5076,["local_affliction_notable_unspeakable_gifts"]=5077,["local_affliction_notable_untouchable"]=5078,["local_affliction_notable_unwavering_focus"]=5079,["local_affliction_notable_unwaveringly_evil"]=5080,["local_affliction_notable_vast_power"]=5081,["local_affliction_notable_vengeful_commander"]=5082,["local_affliction_notable_veteran_defender"]=5083,["local_affliction_notable_vicious_bite"]=5084,["local_affliction_notable_vicious_guard_"]=5085,["local_affliction_notable_vicious_skewering"]=5086,["local_affliction_notable_victim_maker"]=5087,["local_affliction_notable_vile_reinvigoration"]=5088,["local_affliction_notable_vital_focus"]=5089,["local_affliction_notable_vivid_hues"]=5090,["local_affliction_notable_wall_of_muscle"]=5091,["local_affliction_notable_wardbreaker"]=5092,["local_affliction_notable_warning_call"]=5093,["local_affliction_notable_wasting_affliction"]=5094,["local_affliction_notable_weight_advantage"]=5095,["local_affliction_notable_whispers_of_death"]=5096,["local_affliction_notable_wicked_pall"]=5097,["local_affliction_notable_widespread_destruction"]=5098,["local_affliction_notable_will_shaper"]=5099,["local_affliction_notable_wind_up"]=5100,["local_affliction_notable_winter_prowler"]=5101,["local_affliction_notable_wish_for_death"]=5102,["local_affliction_notable_wizardry"]=5103,["local_affliction_notable_wound_aggravation"]=5104,["local_affliction_notable_wrapped_in_flame"]=5105,["local_all_sockets_are_white"]=1203,["local_all_sockets_linked"]=54,["local_always_hit"]=1333,["local_apply_extra_herald_mod_when_synthesised"]=6540,["local_armour_and_energy_shield_+%"]=896,["local_armour_and_evasion_+%"]=897,["local_armour_and_evasion_and_energy_shield_+%"]=899,["local_attack_and_cast_speed_+%_if_item_corrupted"]=5106,["local_attack_cast_movement_speed_+%_during_flask_effect"]=5107,["local_attack_cast_movement_speed_+%_per_second_during_flask_effect"]=5108,["local_attack_damage_+%_if_item_corrupted"]=5109,["local_attack_maximum_added_physical_damage_per_3_levels"]=634,["local_attack_minimum_added_physical_damage_per_3_levels"]=634,["local_attack_speed_+%"]=768,["local_attacks_impale_on_hit_%_chance"]=5110,["local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed"]=5111,["local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed"]=5112,["local_attacks_with_this_weapon_elemental_damage_+%"]=2144,["local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion"]=2162,["local_attribute_requirements_+%"]=518,["local_base_evasion_rating"]=892,["local_base_physical_damage_reduction_rating"]=883,["local_bleed_on_critical_strike_chance_%"]=5113,["local_bleed_on_hit"]=1717,["local_can_only_deal_damage_with_this_weapon"]=1928,["local_can_only_socket_corrupted_gems"]=5114,["local_can_socket_gems_ignoring_colour"]=56,["local_cannot_be_used_with_chaos_innoculation"]=519,["local_chance_bleed_on_hit_%_vs_ignited_enemies"]=3778,["local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon"]=5115,["local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon"]=5116,["local_chance_for_poison_damage_+300%_final_inflicted_with_weapon"]=5117,["local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire"]=6609,["local_chance_to_bleed_on_crit_50%"]=5118,["local_chance_to_bleed_on_hit_%"]=1720,["local_chance_to_bleed_on_hit_25%"]=1718,["local_chance_to_bleed_on_hit_50%"]=1719,["local_chance_to_blind_on_hit_%"]=1544,["local_chance_to_intimidate_on_hit_%"]=5119,["local_chance_to_poison_on_hit_%_during_flask_effect"]=5120,["local_chaos_damage_taken_per_minute_during_flask_effect"]=510,["local_chaos_penetration_%"]=5121,["local_charges_added_+%"]=470,["local_charges_used_+%"]=471,["local_chill_on_hit_ms_if_in_off_hand"]=5122,["local_cold_penetration_%"]=2976,["local_connectivity_of_sockets_+%"]=1207,["local_consecrate_ground_on_flask_use_radius"]=2805,["local_critical_strike_chance_+%"]=820,["local_critical_strike_chance_+%_if_item_corrupted"]=5123,["local_critical_strike_multiplier_+"]=845,["local_crits_have_culling_strike"]=5124,["local_culling_strike_if_crit_recently"]=5125,["local_culling_strike_vs_bleeding_enemies"]=5126,["local_damage_+%_if_item_corrupted"]=5127,["local_damage_taken_+%_if_item_corrupted"]=5128,["local_dexterity_requirement_+"]=520,["local_dexterity_requirement_+%"]=521,["local_disable_gem_experience_gain"]=1204,["local_display_assailum_socketed_gems_damage_+%_final"]=293,["local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill"]=406,["local_display_aura_allies_have_culling_strike"]=1765,["local_display_aura_allies_have_increased_item_rarity_+%"]=931,["local_display_aura_base_chaos_damage_to_deal_per_minute"]=1906,["local_display_aura_curse_effect_on_self_+%"]=1915,["local_display_aura_damage_+%"]=1914,["local_display_aura_damage_+%_allies_only"]=2118,["local_display_aura_life_regeneration_rate_per_minute_%"]=2215,["local_display_aura_mana_regeneration_rate_+%"]=2220,["local_display_cast_animate_weapon_on_kill_%_chance"]=407,["local_display_cast_cold_aegis_on_gain_skill"]=408,["local_display_cast_elemental_aegis_on_gain_skill"]=409,["local_display_cast_fire_aegis_on_gain_skill"]=410,["local_display_cast_level_1_summon_lesser_shrine_on_kill_%"]=365,["local_display_cast_level_X_consecrate_on_crit"]=366,["local_display_cast_level_x_manifest_rageblade"]=2562,["local_display_cast_level_x_shock_ground_when_hit"]=367,["local_display_cast_lightning_aegis_on_gain_skill"]=411,["local_display_cast_lightning_on_critical_strike"]=412,["local_display_curse_enemies_with_socketed_curse_on_hit_%_chance"]=5129,["local_display_every_10_seconds_physical_damage_%_to_add_as_fire_for_3_seconds"]=5130,["local_display_fire_and_cold_resist_debuff"]=5131,["local_display_fire_burst_on_hit_%"]=413,["local_display_gain_power_charge_on_spending_mana"]=5132,["local_display_grant_level_x_petrification_statue"]=368,["local_display_grant_level_x_snipe_skill"]=49,["local_display_grant_void_arrow_every_x_ms"]=5133,["local_display_grants_level_X_envy"]=356,["local_display_grants_level_X_reckoning"]=357,["local_display_grants_level_X_vengeance"]=332,["local_display_grants_level_x_blood_offering_skill"]=370,["local_display_grants_level_x_curse_pillar_skill"]=371,["local_display_grants_level_x_despair"]=333,["local_display_grants_level_x_summon_stone_golem"]=331,["local_display_grants_skill_abyssal_cry_level"]=372,["local_display_grants_skill_accuracy_crits_aura_level"]=373,["local_display_grants_skill_anger_level"]=351,["local_display_grants_skill_bear_trap_level"]=330,["local_display_grants_skill_bird_aspect_level"]=374,["local_display_grants_skill_blight_level"]=358,["local_display_grants_skill_bone_armour"]=375,["local_display_grants_skill_cat_aspect_level"]=376,["local_display_grants_skill_clarity_level"]=344,["local_display_grants_skill_conductivity_level"]=339,["local_display_grants_skill_crab_aspect_level"]=377,["local_display_grants_skill_critical_weakness_level"]=348,["local_display_grants_skill_death_aura_level"]=363,["local_display_grants_skill_decoy_totem_level"]=378,["local_display_grants_skill_determination_level"]=352,["local_display_grants_skill_discipline_level"]=355,["local_display_grants_skill_doryanis_touch_level"]=361,["local_display_grants_skill_elemental_weakness_level"]=360,["local_display_grants_skill_embrace_madness_level"]=379,["local_display_grants_skill_enduring_cry_level"]=380,["local_display_grants_skill_flammability_level"]=337,["local_display_grants_skill_frostbite_level"]=340,["local_display_grants_skill_frostblink_level"]=327,["local_display_grants_skill_gluttony_of_elements_level"]=347,["local_display_grants_skill_grace_level"]=353,["local_display_grants_skill_haste_level"]=342,["local_display_grants_skill_hatred_level"]=350,["local_display_grants_skill_herald_of_ash_level"]=381,["local_display_grants_skill_herald_of_ice_level"]=382,["local_display_grants_skill_herald_of_thunder_level"]=383,["local_display_grants_skill_icestorm_level"]=364,["local_display_grants_skill_intimidating_cry_level"]=384,["local_display_grants_skill_lightning_warp_level"]=385,["local_display_grants_skill_malevolence_level"]=386,["local_display_grants_skill_pride_level"]=387,["local_display_grants_skill_projectile_weakness_level"]=359,["local_display_grants_skill_purity_level"]=346,["local_display_grants_skill_purity_of_cold_level"]=334,["local_display_grants_skill_purity_of_fire_level"]=328,["local_display_grants_skill_purity_of_lightning_level"]=336,["local_display_grants_skill_rallying_cry_level"]=388,["local_display_grants_skill_scorching_ray_level"]=354,["local_display_grants_skill_smite_level"]=389,["local_display_grants_skill_spider_aspect_level"]=390,["local_display_grants_skill_temporal_chains_level"]=341,["local_display_grants_skill_vaal_impurity_of_fire_level"]=391,["local_display_grants_skill_vaal_impurity_of_ice_level"]=392,["local_display_grants_skill_vaal_impurity_of_lightning_level"]=393,["local_display_grants_skill_vitality_level"]=345,["local_display_grants_skill_vulnerability_level"]=362,["local_display_grants_skill_wrath_level"]=349,["local_display_grants_skill_zealotry_level"]=394,["local_display_grants_summon_beast_companion"]=335,["local_display_has_additional_implicit_mod"]=343,["local_display_hits_against_nearby_enemies_critical_strike_chance_+50%"]=2619,["local_display_illusory_warp_level"]=329,["local_display_manifest_rageblade_destroy_on_end_rampage"]=2564,["local_display_manifest_rageblade_disables_weapons"]=2563,["local_display_minions_grant_onslaught"]=2565,["local_display_molten_burst_on_melee_hit_%"]=414,["local_display_movement_speed_+%_for_you_and_nearby_allies"]=5134,["local_display_nearby_allies_action_speed_cannot_be_reduced_below_base"]=5135,["local_display_nearby_allies_critical_strike_multiplier_+"]=5136,["local_display_nearby_allies_extra_damage_rolls"]=5137,["local_display_nearby_allies_have_fortify"]=5138,["local_display_nearby_enemies_all_resistances_%"]=2216,["local_display_nearby_enemies_are_blinded"]=2618,["local_display_nearby_enemies_are_chilled"]=5139,["local_display_nearby_enemies_are_intimidated"]=5140,["local_display_nearby_enemies_cannot_crit"]=5141,["local_display_nearby_enemies_critical_strike_chance_+%_against_self"]=2620,["local_display_nearby_enemies_flask_charges_granted_+%"]=2621,["local_display_nearby_enemies_have_fire_exposure"]=5142,["local_display_nearby_enemies_movement_speed_+%"]=2622,["local_display_nearby_enemies_stun_and_block_recovery_+%"]=2623,["local_display_nearby_enemies_take_X_chaos_damage_per_minute"]=3412,["local_display_nearby_enemies_take_X_lightning_damage_per_minute"]=2378,["local_display_nearby_enemy_chaos_damage_resistance_%"]=5143,["local_display_nearby_enemy_cold_damage_resistance_%"]=5144,["local_display_nearby_enemy_elemental_damage_taken_+%"]=5145,["local_display_nearby_enemy_fire_damage_resistance_%"]=5146,["local_display_nearby_enemy_lightning_damage_resistance_%"]=5147,["local_display_nearby_enemy_physical_damage_taken_+%"]=5148,["local_display_raise_spider_on_kill_%_chance"]=415,["local_display_socketed_attack_damage_+%_final"]=294,["local_display_socketed_attacks_additional_critical_strike_chance"]=295,["local_display_socketed_attacks_critical_strike_multiplier_+"]=296,["local_display_socketed_attacks_mana_cost_+"]=297,["local_display_socketed_aura_gems_reserve_no_mana"]=279,["local_display_socketed_curse_gems_have_mana_reservation_+%"]=321,["local_display_socketed_curse_gems_supported_by_level_x_blasphemy"]=270,["local_display_socketed_gems_additional_critical_strike_chance_%"]=290,["local_display_socketed_gems_attack_and_cast_speed_+%_final"]=298,["local_display_socketed_gems_chain_X_additional_times"]=289,["local_display_socketed_gems_damage_over_time_+%_final"]=313,["local_display_socketed_gems_elemental_damage_+%_final"]=299,["local_display_socketed_gems_get_added_chaos_damage_level"]=224,["local_display_socketed_gems_get_added_fire_damage_level"]=227,["local_display_socketed_gems_get_added_lightning_damage_level"]=232,["local_display_socketed_gems_get_additional_accuracy_level"]=241,["local_display_socketed_gems_get_blind_level"]=235,["local_display_socketed_gems_get_blood_magic_level"]=225,["local_display_socketed_gems_get_cast_on_crit_level"]=237,["local_display_socketed_gems_get_cast_on_death_level"]=239,["local_display_socketed_gems_get_cast_when_stunned_level"]=238,["local_display_socketed_gems_get_cold_to_fire_level"]=228,["local_display_socketed_gems_get_concentrated_area_level"]=219,["local_display_socketed_gems_get_curse_reflection"]=287,["local_display_socketed_gems_get_echo_level"]=248,["local_display_socketed_gems_get_elemental_proliferation_level"]=231,["local_display_socketed_gems_get_faster_attacks_level"]=234,["local_display_socketed_gems_get_faster_cast_level"]=254,["local_display_socketed_gems_get_faster_projectiles_level"]=243,["local_display_socketed_gems_get_fire_penetration_level"]=230,["local_display_socketed_gems_get_flee_level"]=253,["local_display_socketed_gems_get_fork_level"]=246,["local_display_socketed_gems_get_generosity_level"]=250,["local_display_socketed_gems_get_increased_area_level"]=100,["local_display_socketed_gems_get_increased_critical_damage_level"]=245,["local_display_socketed_gems_get_increased_duration_level"]=226,["local_display_socketed_gems_get_iron_will_level"]=255,["local_display_socketed_gems_get_item_quantity_+%"]=286,["local_display_socketed_gems_get_life_leech_level"]=244,["local_display_socketed_gems_get_mana_multplier_%"]=280,["local_display_socketed_gems_get_melee_physical_damage_level"]=233,["local_display_socketed_gems_get_melee_splash_level"]=236,["local_display_socketed_gems_get_multistrike_level"]=242,["local_display_socketed_gems_get_pierce_level"]=263,["local_display_socketed_gems_get_reduced_mana_cost_level"]=249,["local_display_socketed_gems_get_remote_mine_level"]=252,["local_display_socketed_gems_get_spell_totem_level"]=229,["local_display_socketed_gems_get_stun_level"]=240,["local_display_socketed_gems_get_trap_level"]=220,["local_display_socketed_gems_get_weapon_elemental_damage_level"]=247,["local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage"]=284,["local_display_socketed_gems_have_blood_magic"]=277,["local_display_socketed_gems_have_chance_to_flee_%"]=285,["local_display_socketed_gems_have_elemental_equilibrium"]=314,["local_display_socketed_gems_have_elemental_equilibrium_effect_pluspercent"]=316,["local_display_socketed_gems_have_iron_will"]=288,["local_display_socketed_gems_have_mana_reservation_+%"]=278,["local_display_socketed_gems_have_number_of_additional_projectiles"]=317,["local_display_socketed_gems_mana_cost_-%"]=300,["local_display_socketed_gems_maximum_added_fire_damage"]=301,["local_display_socketed_gems_minimum_added_fire_damage"]=301,["local_display_socketed_gems_physical_damage_%_to_add_as_lightning"]=302,["local_display_socketed_gems_projectiles_nova"]=318,["local_display_socketed_gems_skill_effect_duration_+%"]=319,["local_display_socketed_gems_supported_by_X_lesser_poison"]=273,["local_display_socketed_gems_supported_by_X_vile_toxins"]=272,["local_display_socketed_gems_supported_by_level_x_arcane_surge"]=101,["local_display_socketed_gems_supported_by_level_x_archmage"]=102,["local_display_socketed_gems_supported_by_level_x_aura_duration"]=103,["local_display_socketed_gems_supported_by_level_x_barrage"]=104,["local_display_socketed_gems_supported_by_level_x_bloodlust"]=105,["local_display_socketed_gems_supported_by_level_x_bonechill"]=106,["local_display_socketed_gems_supported_by_level_x_brutality"]=107,["local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken"]=108,["local_display_socketed_gems_supported_by_level_x_cast_on_kill"]=109,["local_display_socketed_gems_supported_by_level_x_cast_while_channelling"]=110,["local_display_socketed_gems_supported_by_level_x_chain"]=111,["local_display_socketed_gems_supported_by_level_x_chance_to_bleed"]=112,["local_display_socketed_gems_supported_by_level_x_chance_to_ignite"]=113,["local_display_socketed_gems_supported_by_level_x_chaos_attacks"]=183,["local_display_socketed_gems_supported_by_level_x_charged_mines"]=114,["local_display_socketed_gems_supported_by_level_x_close_combat"]=115,["local_display_socketed_gems_supported_by_level_x_cluster_trap"]=221,["local_display_socketed_gems_supported_by_level_x_culling_strike"]=116,["local_display_socketed_gems_supported_by_level_x_curse_on_hit"]=117,["local_display_socketed_gems_supported_by_level_x_deadly_ailments"]=118,["local_display_socketed_gems_supported_by_level_x_deathmark"]=303,["local_display_socketed_gems_supported_by_level_x_decay"]=119,["local_display_socketed_gems_supported_by_level_x_efficacy"]=120,["local_display_socketed_gems_supported_by_level_x_elemental_focus"]=121,["local_display_socketed_gems_supported_by_level_x_elemental_penetration"]=122,["local_display_socketed_gems_supported_by_level_x_empower"]=123,["local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun"]=276,["local_display_socketed_gems_supported_by_level_x_energy_leech"]=124,["local_display_socketed_gems_supported_by_level_x_enhance"]=125,["local_display_socketed_gems_supported_by_level_x_enlighten"]=126,["local_display_socketed_gems_supported_by_level_x_feeding_frenzy"]=127,["local_display_socketed_gems_supported_by_level_x_fire_penetration"]=128,["local_display_socketed_gems_supported_by_level_x_fortify"]=251,["local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger"]=129,["local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles"]=130,["local_display_socketed_gems_supported_by_level_x_greater_spell_echo"]=131,["local_display_socketed_gems_supported_by_level_x_greater_volley"]=132,["local_display_socketed_gems_supported_by_level_x_ignite_proliferation"]=133,["local_display_socketed_gems_supported_by_level_x_immolate"]=134,["local_display_socketed_gems_supported_by_level_x_impale"]=135,["local_display_socketed_gems_supported_by_level_x_increased_burning_damage"]=136,["local_display_socketed_gems_supported_by_level_x_increased_critical_strikes"]=137,["local_display_socketed_gems_supported_by_level_x_increased_duration"]=138,["local_display_socketed_gems_supported_by_level_x_infernal_legion"]=139,["local_display_socketed_gems_supported_by_level_x_iron_grip"]=140,["local_display_socketed_gems_supported_by_level_x_item_quantity"]=141,["local_display_socketed_gems_supported_by_level_x_item_rarity"]=142,["local_display_socketed_gems_supported_by_level_x_life_gain_on_hit"]=143,["local_display_socketed_gems_supported_by_level_x_lightning_penetration"]=144,["local_display_socketed_gems_supported_by_level_x_maim"]=145,["local_display_socketed_gems_supported_by_level_x_meat_shield"]=146,["local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life"]=147,["local_display_socketed_gems_supported_by_level_x_minefield"]=148,["local_display_socketed_gems_supported_by_level_x_mirage_archer"]=149,["local_display_socketed_gems_supported_by_level_x_multi_totem"]=150,["local_display_socketed_gems_supported_by_level_x_multi_trap"]=222,["local_display_socketed_gems_supported_by_level_x_multicast"]=151,["local_display_socketed_gems_supported_by_level_x_nightblade"]=304,["local_display_socketed_gems_supported_by_level_x_onslaught"]=152,["local_display_socketed_gems_supported_by_level_x_parallel_projectiles"]=153,["local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage"]=154,["local_display_socketed_gems_supported_by_level_x_physical_to_lightning"]=155,["local_display_socketed_gems_supported_by_level_x_point_blank"]=156,["local_display_socketed_gems_supported_by_level_x_poison"]=157,["local_display_socketed_gems_supported_by_level_x_power_charge_on_crit"]=158,["local_display_socketed_gems_supported_by_level_x_pulverise"]=159,["local_display_socketed_gems_supported_by_level_x_rage"]=160,["local_display_socketed_gems_supported_by_level_x_rain"]=161,["local_display_socketed_gems_supported_by_level_x_ranged_attack_totem"]=162,["local_display_socketed_gems_supported_by_level_x_rapid_decay"]=163,["local_display_socketed_gems_supported_by_level_x_reduced_block_chance"]=164,["local_display_socketed_gems_supported_by_level_x_reduced_duration"]=165,["local_display_socketed_gems_supported_by_level_x_remote_mine_2"]=166,["local_display_socketed_gems_supported_by_level_x_ruthless"]=167,["local_display_socketed_gems_supported_by_level_x_second_wind"]=168,["local_display_socketed_gems_supported_by_level_x_shockwave"]=169,["local_display_socketed_gems_supported_by_level_x_slower_projectiles"]=170,["local_display_socketed_gems_supported_by_level_x_snipe"]=171,["local_display_socketed_gems_supported_by_level_x_spell_cascade"]=172,["local_display_socketed_gems_supported_by_level_x_spell_focus"]=173,["local_display_socketed_gems_supported_by_level_x_spirit_strike"]=174,["local_display_socketed_gems_supported_by_level_x_storm_barrier"]=175,["local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance"]=176,["local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill"]=177,["local_display_socketed_gems_supported_by_level_x_swift_assembly"]=178,["local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage"]=223,["local_display_socketed_gems_supported_by_level_x_trap_cooldown"]=179,["local_display_socketed_gems_supported_by_level_x_unbound_ailments"]=180,["local_display_socketed_gems_supported_by_level_x_unleash"]=181,["local_display_socketed_gems_supported_by_level_x_void_manipulation"]=182,["local_display_socketed_gems_supported_by_pierce_level"]=262,["local_display_socketed_gems_supported_by_x_added_cold_damage"]=268,["local_display_socketed_gems_supported_by_x_cold_penetration"]=266,["local_display_socketed_gems_supported_by_x_controlled_destruction"]=275,["local_display_socketed_gems_supported_by_x_hypothermia"]=264,["local_display_socketed_gems_supported_by_x_ice_bite"]=265,["local_display_socketed_gems_supported_by_x_increased_critical_damage_level"]=260,["local_display_socketed_gems_supported_by_x_increased_minion_damage_level"]=259,["local_display_socketed_gems_supported_by_x_increased_minion_life_level"]=257,["local_display_socketed_gems_supported_by_x_increased_minion_speed_level"]=261,["local_display_socketed_gems_supported_by_x_innervate_level"]=271,["local_display_socketed_gems_supported_by_x_knockback_level"]=256,["local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level"]=258,["local_display_socketed_gems_supported_by_x_mana_leech"]=267,["local_display_socketed_gems_supported_by_x_reduced_mana_cost"]=269,["local_display_socketed_golem_attack_and_cast_speed_+%"]=89,["local_display_socketed_golem_buff_effect_+%"]=90,["local_display_socketed_golem_chance_to_taunt_%"]=91,["local_display_socketed_golem_life_regeneration_rate_per_minute_%"]=92,["local_display_socketed_golem_skill_grants_onslaught_when_summoned"]=93,["local_display_socketed_golem_skills_minions_life_%_to_add_as_energy_shield"]=94,["local_display_socketed_melee_gems_have_area_radius_+%"]=281,["local_display_socketed_movement_skills_have_no_mana_cost"]=305,["local_display_socketed_non_curse_aura_gems_effect_+%"]=315,["local_display_socketed_red_gems_have_%_of_physical_damage_to_add_as_fire"]=282,["local_display_socketed_skills_attack_speed_+%"]=306,["local_display_socketed_skills_cast_speed_+%"]=307,["local_display_socketed_skills_fork"]=308,["local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation"]=283,["local_display_socketed_spell_damage_+%_final"]=309,["local_display_socketed_spells_additional_critical_strike_chance"]=310,["local_display_socketed_spells_critical_strike_multiplier_+"]=311,["local_display_socketed_spells_mana_cost_+%"]=312,["local_display_socketed_spells_repeat_count"]=291,["local_display_socketed_trap_skills_create_smoke_cloud"]=320,["local_display_summon_harbinger_x_on_equip"]=338,["local_display_summon_raging_spirit_on_kill_%"]=416,["local_display_summon_wolf_on_kill_%"]=417,["local_display_supported_by_level_x_awakened_added_chaos_damage"]=184,["local_display_supported_by_level_x_awakened_added_cold_damage"]=185,["local_display_supported_by_level_x_awakened_added_fire_damage"]=186,["local_display_supported_by_level_x_awakened_added_lightning_damage"]=187,["local_display_supported_by_level_x_awakened_ancestral_call"]=188,["local_display_supported_by_level_x_awakened_arrow_nova"]=189,["local_display_supported_by_level_x_awakened_blasphemy"]=190,["local_display_supported_by_level_x_awakened_brutality"]=191,["local_display_supported_by_level_x_awakened_burning_damage"]=192,["local_display_supported_by_level_x_awakened_cast_on_crit"]=193,["local_display_supported_by_level_x_awakened_cast_while_channelling"]=194,["local_display_supported_by_level_x_awakened_chain"]=195,["local_display_supported_by_level_x_awakened_cold_penetration"]=196,["local_display_supported_by_level_x_awakened_controlled_destruction"]=197,["local_display_supported_by_level_x_awakened_curse_on_hit"]=198,["local_display_supported_by_level_x_awakened_deadly_ailments"]=199,["local_display_supported_by_level_x_awakened_elemental_focus"]=200,["local_display_supported_by_level_x_awakened_fire_penetration"]=201,["local_display_supported_by_level_x_awakened_fork"]=202,["local_display_supported_by_level_x_awakened_generosity"]=203,["local_display_supported_by_level_x_awakened_greater_multiple_projectiles"]=204,["local_display_supported_by_level_x_awakened_increased_area_of_effect"]=205,["local_display_supported_by_level_x_awakened_lightning_penetration"]=206,["local_display_supported_by_level_x_awakened_melee_physical_damage"]=207,["local_display_supported_by_level_x_awakened_melee_splash"]=208,["local_display_supported_by_level_x_awakened_minion_damage"]=209,["local_display_supported_by_level_x_awakened_multistrike"]=210,["local_display_supported_by_level_x_awakened_spell_cascade"]=211,["local_display_supported_by_level_x_awakened_spell_echo"]=212,["local_display_supported_by_level_x_awakened_swift_affliction"]=213,["local_display_supported_by_level_x_awakened_unbound_ailments"]=214,["local_display_supported_by_level_x_awakened_unleash"]=215,["local_display_supported_by_level_x_awakened_vicious_projectiles"]=216,["local_display_supported_by_level_x_awakened_void_manipulation"]=217,["local_display_supported_by_level_x_awakened_weapon_elemental_damage"]=218,["local_display_trigger_commandment_of_inferno_on_crit_%"]=418,["local_display_trigger_death_walk_on_equip_level"]=420,["local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance"]=421,["local_display_trigger_level_1_blood_rage_on_kill_chance_%"]=422,["local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance"]=423,["local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance"]=424,["local_display_trigger_level_20_shade_form_on_skill_use_%"]=425,["local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%"]=426,["local_display_trigger_level_X_blinding_aura_skill_on_equip"]=369,["local_display_trigger_level_X_darktongue_kiss_on_curse"]=395,["local_display_trigger_level_X_feast_of_flesh_every_5_seconds"]=427,["local_display_trigger_level_X_offering_every_5_seconds"]=428,["local_display_trigger_level_X_void_gaze_on_skill_use"]=396,["local_display_trigger_level_x_create_fungal_ground_on_kill"]=419,["local_display_trigger_level_x_curse_nova_on_hit_while_cursed"]=429,["local_display_trigger_level_x_icicle_nova_on_kill_vs_frozen_enemy"]=430,["local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth"]=431,["local_display_trigger_level_x_rain_of_arrows_on_bow_attack"]=432,["local_display_trigger_level_x_reflection_skill_on_equip"]=433,["local_display_trigger_level_x_smoke_cloud_on_trap_triggered"]=434,["local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge"]=435,["local_display_trigger_level_x_storm_cascade_on_attack"]=397,["local_display_trigger_level_x_summon_phantasm_on_corpse_consume"]=436,["local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow"]=437,["local_display_trigger_socketed_curses_on_casting_curse_%_chance"]=438,["local_display_trigger_temporal_anomaly_when_hit_%_chance"]=439,["local_display_trigger_tentacle_smash_on_kill_%_chance"]=440,["local_display_trigger_void_sphere_on_kill_%_chance"]=441,["local_display_use_level_X_abyssal_cry_on_hit"]=442,["local_display_you_get_elemental_ailments_instead_of_allies"]=5149,["local_double_damage_to_chilled_enemies"]=2973,["local_double_damage_with_attacks"]=5150,["local_elemental_penetration_%"]=2974,["local_energy_shield"]=902,["local_energy_shield_+%"]=903,["local_evasion_and_energy_shield_+%"]=898,["local_evasion_rating_+%"]=894,["local_evasion_rating_and_energy_shield"]=5151,["local_extra_max_charges"]=469,["local_extra_socket"]=1200,["local_fire_penetration_%"]=2975,["local_flask_additional_physical_damage_reduction_%"]=2826,["local_flask_adds_knockback_during_flask_effect"]=2263,["local_flask_adds_knockback_while_healing"]=491,["local_flask_amount_to_recover_+%"]=454,["local_flask_amount_to_recover_+%_when_on_low_life"]=457,["local_flask_area_of_consecrated_ground_+%"]=5152,["local_flask_area_of_effect_+%_during_flask_effect"]=5153,["local_flask_armour_+%_while_healing"]=477,["local_flask_attack_speed_+%_while_healing"]=480,["local_flask_avoid_stun_chance_%_during_flask_effect"]=5154,["local_flask_bleeding_immunity_while_healing"]=513,["local_flask_cannot_be_stunned_during_flask_effect"]=3464,["local_flask_cast_speed_+%_while_healing"]=481,["local_flask_chance_to_freeze_shock_ignite_%_while_healing"]=498,["local_flask_chill_and_freeze_immunity_while_healing"]=511,["local_flask_chilled_ground_on_flask_use_radius"]=2837,["local_flask_consumes_max_charges_on_use"]=5155,["local_flask_consumes_x_endurance_charges_on_use"]=1898,["local_flask_consumes_x_frenzy_charges_on_use"]=1897,["local_flask_consumes_x_power_charges_on_use"]=1899,["local_flask_critical_strike_chance_+%_during_flask_effect"]=5157,["local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect"]=5156,["local_flask_curse_immunity_while_healing"]=514,["local_flask_deals_%_maximum_life_as_chaos_damage_on_use"]=1901,["local_flask_deciseconds_to_recover"]=456,["local_flask_dispels_burning"]=466,["local_flask_dispels_freeze_and_chill"]=465,["local_flask_duration_+%"]=2838,["local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground"]=5158,["local_flask_effect_+%"]=2823,["local_flask_effect_not_removed_at_full_mana"]=5159,["local_flask_enemies_ignited_during_flask_effect_damage_taken_+%"]=502,["local_flask_energy_shield_+%_while_healing"]=479,["local_flask_energy_shield_leech_from_spell_damage_permyriad_while_healing"]=486,["local_flask_evasion_+%_while_healing"]=478,["local_flask_gain_X_charges_on_consuming_ignited_corpse"]=472,["local_flask_gain_X_charges_when_hit"]=475,["local_flask_gain_charges_consumed_as_vaal_souls_on_use"]=5160,["local_flask_gain_endurance_charges_on_use"]=1904,["local_flask_gain_frenzy_charges_on_use"]=1903,["local_flask_gain_power_charges_on_use"]=1902,["local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge"]=1900,["local_flask_gain_x_vaal_souls_on_use"]=5161,["local_flask_ghost_reaver"]=2979,["local_flask_ignite_immunity_while_healing"]=509,["local_flask_immune_to_damage"]=3008,["local_flask_is_petrified"]=2821,["local_flask_item_found_rarity_+%_during_flask_effect"]=5162,["local_flask_life_gain_on_skill_use_%_mana_cost"]=497,["local_flask_life_leech_from_attack_damage_permyriad_while_healing"]=487,["local_flask_life_leech_on_damage_taken_%_permyriad_during_flask_effect"]=5163,["local_flask_life_leech_permyriad_while_healing"]=488,["local_flask_life_recovery_from_flasks_also_recovers_energy_shield"]=5164,["local_flask_life_regeneration_per_minute_%_during_flask_effect"]=5165,["local_flask_life_to_recover"]=450,["local_flask_life_to_recover_+%"]=451,["local_flask_lose_all_charges_on_entering_new_area"]=3465,["local_flask_mana_leech_permyriad_while_healing"]=490,["local_flask_mana_recovery_occurs_instantly_at_end_of_flask_effect"]=460,["local_flask_mana_to_recover"]=452,["local_flask_mana_to_recover_+%"]=453,["local_flask_minion_heal_%"]=506,["local_flask_movement_speed_+%_while_healing"]=482,["local_flask_no_mana_recovery_during_effect"]=5166,["local_flask_number_of_additional_projectiles_during_flask_effect"]=499,["local_flask_poison_immunity_during_flask_effect"]=2824,["local_flask_prevents_death_while_healing"]=508,["local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect"]=505,["local_flask_recover_%_maximum_life_on_kill_during_flask_effect"]=503,["local_flask_recover_%_maximum_mana_on_kill_during_flask_effect"]=504,["local_flask_recover_instantly_when_on_low_life"]=458,["local_flask_recovers_instantly"]=461,["local_flask_recovery_amount_%_to_recover_instantly"]=459,["local_flask_recovery_speed_+%"]=455,["local_flask_removes_%_maximum_energy_shield_on_use"]=1896,["local_flask_removes_%_of_life_recovery_from_life_on_use"]=463,["local_flask_removes_%_of_life_recovery_from_mana_on_use"]=464,["local_flask_removes_%_of_mana_recovery_from_life_on_use"]=462,["local_flask_resistances_+%_while_healing"]=484,["local_flask_shock_immunity_while_healing"]=512,["local_flask_skill_mana_cost_+%_during_flask_effect"]=500,["local_flask_stun_recovery_+%_while_healing"]=483,["local_flask_unholy_might_during_flask_effect"]=507,["local_flask_use_causes_area_knockback"]=1239,["local_flask_use_causes_monster_flee_chance_%"]=1905,["local_flask_vaal_souls_gained_per_minute_during_effect"]=5167,["local_flask_zealots_oath"]=2980,["local_gain_vaal_pact_if_all_socketed_gems_red"]=6597,["local_gem_experience_gain_+%"]=1205,["local_gem_level_+"]=59,["local_grant_perfect_agony_during_flask_effect"]=6602,["local_grants_aura_maximum_added_chaos_damage_per_white_socket"]=2224,["local_grants_aura_maximum_added_cold_damage_per_green_socket"]=2222,["local_grants_aura_maximum_added_fire_damage_per_red_socket"]=2221,["local_grants_aura_maximum_added_lightning_damage_per_blue_socket"]=2223,["local_grants_aura_minimum_added_chaos_damage_per_white_socket"]=2224,["local_grants_aura_minimum_added_cold_damage_per_green_socket"]=2222,["local_grants_aura_minimum_added_fire_damage_per_red_socket"]=2221,["local_grants_aura_minimum_added_lightning_damage_per_blue_socket"]=2223,["local_has_X_abyss_sockets"]=51,["local_has_X_sockets"]=52,["local_has_no_sockets"]=50,["local_hit_causes_monster_flee_%"]=1331,["local_hit_damage_+%_vs_frozen_enemies"]=3561,["local_hit_damage_+%_vs_ignited_enemies"]=3560,["local_hit_damage_+%_vs_shocked_enemies"]=3562,["local_hits_always_inflict_elemental_ailments"]=3559,["local_hits_with_this_weapon_always_hit_if_have_blocked_recently"]=5168,["local_immune_to_curses_if_item_corrupted"]=5169,["local_implicit_stat_magnitude_+%"]=48,["local_intelligence_requirement_+"]=522,["local_intelligence_requirement_+%"]=523,["local_is_max_quality"]=1199,["local_item_allow_modification_while_corrupted"]=37,["local_item_can_have_x_additional_enchantments"]=39,["local_item_drops_on_death_if_equipped_by_animate_armour"]=1791,["local_item_implicit_modifier_limit"]=40,["local_item_quality_+"]=5170,["local_item_sell_price_doubled"]=5171,["local_item_stats_are_doubled_in_breach"]=5172,["local_jewel_+%_effect_per_passive_between_jewel_and_class_start"]=35,["local_jewel_allocated_non_notable_passives_in_radius_grant_nothing"]=5173,["local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius"]=5174,["local_jewel_expansion_jewels_count"]=5175,["local_jewel_expansion_jewels_count_override"]=5176,["local_jewel_expansion_keystone_disciple_of_kitava"]=5177,["local_jewel_expansion_keystone_hollow_palm_technique"]=5178,["local_jewel_expansion_keystone_kineticism"]=5179,["local_jewel_expansion_keystone_lone_messenger"]=5180,["local_jewel_expansion_keystone_natures_patience"]=5181,["local_jewel_expansion_keystone_pitfighter"]=5182,["local_jewel_expansion_keystone_secrets_of_suffering"]=5183,["local_jewel_expansion_keystone_veterans_awareness"]=5184,["local_jewel_expansion_passive_node_count"]=3589,["local_jewel_expansion_passive_node_index"]=5185,["local_jewel_nearby_passives_dex_to_int"]=2268,["local_jewel_nearby_passives_dex_to_str"]=2267,["local_jewel_nearby_passives_int_to_dex"]=2270,["local_jewel_nearby_passives_int_to_str"]=2269,["local_jewel_nearby_passives_str_to_dex"]=2265,["local_jewel_nearby_passives_str_to_int"]=2266,["local_jewel_variable_ring_radius_value"]=38,["local_knockback"]=880,["local_left_ring_slot_elemental_reflect_damage_taken_+%"]=1925,["local_left_ring_slot_energy_shield"]=1875,["local_left_ring_slot_mana_regeneration_rate_+%"]=1873,["local_left_ring_slot_mana_regeneration_rate_per_minute"]=1872,["local_left_ring_slot_maximum_mana"]=1874,["local_left_ring_slot_no_energy_shield_recharge_or_regeneration"]=1871,["local_left_ring_slot_projectiles_from_spells_cannot_chain"]=5186,["local_left_ring_slot_projectiles_from_spells_fork"]=5187,["local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura"]=5188,["local_level_requirement_-"]=524,["local_life_and_mana_gain_per_target"]=1053,["local_life_and_mana_leech_from_physical_damage_permyriad"]=985,["local_life_gain_per_target"]=1049,["local_life_gain_per_target_vs_blinded_enemies"]=5189,["local_life_gain_per_target_while_leeching"]=5190,["local_life_leech_from_any_damage_permyriad"]=5191,["local_life_leech_from_physical_damage_permyriad"]=980,["local_life_leech_is_instant"]=1769,["local_lightning_penetration_%"]=2977,["local_maim_on_hit"]=3342,["local_maim_on_hit_%"]=5192,["local_mana_gain_per_target"]=1056,["local_mana_leech_from_any_damage_permyriad"]=5193,["local_mana_leech_from_physical_damage_permyriad"]=1016,["local_max_charges_+%"]=468,["local_maximum_added_chaos_damage"]=745,["local_maximum_added_cold_damage"]=730,["local_maximum_added_fire_damage"]=723,["local_maximum_added_fire_damage_vs_bleeding_enemies"]=3756,["local_maximum_added_lightning_damage"]=739,["local_maximum_added_physical_damage"]=640,["local_maximum_added_physical_damage_vs_ignited_enemies"]=3760,["local_maximum_energy_shield_+%_if_item_corrupted"]=5194,["local_maximum_life_+%_if_item_corrupted"]=5195,["local_minimum_added_chaos_damage"]=745,["local_minimum_added_cold_damage"]=730,["local_minimum_added_fire_damage"]=723,["local_minimum_added_fire_damage_vs_bleeding_enemies"]=3756,["local_minimum_added_lightning_damage"]=739,["local_minimum_added_physical_damage"]=640,["local_minimum_added_physical_damage_vs_ignited_enemies"]=3760,["local_minion_accuracy_rating_with_minion_abyss_jewel_socketed"]=5196,["local_movement_speed_+%_if_item_corrupted"]=5197,["local_no_attribute_requirements"]=525,["local_no_block_chance"]=2482,["local_no_critical_strike_multiplier_during_flask_effect"]=5198,["local_number_of_bloodworms_to_spawn_on_flask_use"]=467,["local_one_socket_each_colour_only"]=55,["local_physical_damage_%_to_convert_to_a_random_element"]=3558,["local_physical_damage_+%"]=604,["local_physical_damage_reduction_rating_+%"]=885,["local_poison_duration_+%_during_flask_effect"]=5199,["local_poison_on_critical_strike_chance_%"]=5200,["local_poison_on_hit"]=1708,["local_poison_on_hit_%"]=5201,["local_quantity_of_sockets_+%"]=1206,["local_recharge_on_crit"]=473,["local_recharge_on_crit_%"]=474,["local_recharge_on_demon_killed"]=1980,["local_recharge_on_take_crit"]=476,["local_resist_all_elements_%_if_item_corrupted"]=5202,["local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%"]=1868,["local_right_ring_slot_energy_shield"]=1870,["local_right_ring_slot_maximum_mana"]=1869,["local_right_ring_slot_no_mana_regeneration"]=1867,["local_right_ring_slot_number_of_additional_chains_for_spell_projectiles"]=5203,["local_right_ring_slot_physical_reflect_damage_taken_+%"]=1926,["local_right_ring_slot_projectiles_from_spells_cannot_fork"]=5204,["local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura"]=5205,["local_ring_attack_speed_+%_final"]=5206,["local_ring_disable_other_ring"]=938,["local_ring_duplicate_other_ring"]=2070,["local_ring_nova_spells_area_of_effect_+%_final"]=5207,["local_six_linked_random_sockets"]=53,["local_smoke_ground_on_flask_use_radius"]=2804,["local_socketed_abyss_jewel_effect_+%"]=322,["local_socketed_area_of_effect_gem_level_+"]=74,["local_socketed_area_of_effect_gem_quality_+"]=5208,["local_socketed_aura_gem_level_+"]=79,["local_socketed_aura_gem_quality_+"]=5209,["local_socketed_bow_gem_level_+"]=76,["local_socketed_bow_gem_quality_+"]=5210,["local_socketed_chaos_gem_level_+"]=71,["local_socketed_chaos_gem_quality_+"]=5211,["local_socketed_cold_gem_level_+"]=69,["local_socketed_cold_gem_quality_+"]=5212,["local_socketed_curse_gem_level_+"]=82,["local_socketed_dexterity_gem_level_+"]=61,["local_socketed_dexterity_gem_quality_+"]=5213,["local_socketed_duration_gem_level_+"]=73,["local_socketed_elemental_gem_level_+"]=98,["local_socketed_fire_gem_level_+"]=68,["local_socketed_fire_gem_quality_+"]=5214,["local_socketed_gem_level_+"]=63,["local_socketed_gem_quality_+"]=96,["local_socketed_gems_in_blue_sockets_experience_gained_+%"]=67,["local_socketed_gems_in_green_sockets_get_quality_%"]=66,["local_socketed_gems_in_red_sockets_get_level_+"]=65,["local_socketed_golem_gem_level_+"]=95,["local_socketed_herald_gem_level_+"]=80,["local_socketed_intelligence_gem_level_+"]=62,["local_socketed_intelligence_gem_quality_+"]=5215,["local_socketed_lightning_gem_level_+"]=70,["local_socketed_lightning_gem_quality_+"]=5216,["local_socketed_melee_gem_level_+"]=77,["local_socketed_melee_gem_quality_+"]=5217,["local_socketed_minion_gem_level_+"]=78,["local_socketed_minion_gem_quality_+"]=5218,["local_socketed_movement_gem_level_+"]=81,["local_socketed_projectile_gem_level_+"]=75,["local_socketed_projectile_gem_quality_+"]=5219,["local_socketed_skill_gem_level_+"]=87,["local_socketed_skill_gem_level_+1_per_x_player_levels"]=64,["local_socketed_spell_gem_level_+"]=72,["local_socketed_strength_gem_level_+"]=60,["local_socketed_strength_gem_quality_+"]=5220,["local_socketed_support_gem_level_+"]=86,["local_socketed_support_gem_quality_+"]=97,["local_socketed_trap_and_mine_gem_level_+"]=84,["local_socketed_trap_gem_level_+"]=83,["local_socketed_vaal_gem_level_+"]=85,["local_socketed_warcry_gem_level_+"]=88,["local_spell_damage_+%_if_item_corrupted"]=5221,["local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed"]=5222,["local_strength_and_intelligence_requirement_+"]=526,["local_strength_requirement_+"]=527,["local_strength_requirement_+%"]=528,["local_stun_threshold_reduction_+%"]=1733,["local_support_gem_max_skill_level_requirement_to_support"]=2039,["local_unique_attacks_cast_socketed_lightning_spells_%"]=443,["local_unique_cast_socketed_cold_skills_on_melee_critical_strike"]=444,["local_unique_chaos_damage_does_not_bypass_energy_shield_during_flask_effect"]=495,["local_unique_counts_as_dual_wielding"]=1912,["local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing"]=1831,["local_unique_flask_avoid_chill_%_while_healing"]=494,["local_unique_flask_avoid_freeze_%_while_healing"]=496,["local_unique_flask_block_%_while_healing"]=2156,["local_unique_flask_cannot_recover_life_while_healing"]=2029,["local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing"]=2152,["local_unique_flask_charges_gained_+%_during_flask_effect"]=3401,["local_unique_flask_damage_+%_vs_demons_while_healing"]=1979,["local_unique_flask_damage_over_time_+%_during_flask_effect"]=5223,["local_unique_flask_damage_taken_+%_vs_demons_while_healing"]=1978,["local_unique_flask_elemental_damage_%_to_add_as_chaos_while_healing"]=2135,["local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type"]=5224,["local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type"]=5225,["local_unique_flask_instantly_recovers_%_maximum_life"]=2151,["local_unique_flask_item_quantity_+%_while_healing"]=1829,["local_unique_flask_item_rarity_+%_while_healing"]=1828,["local_unique_flask_kiaras_determination"]=501,["local_unique_flask_leech_is_instant_during_flask_effect"]=2526,["local_unique_flask_leech_lightning_damage_%_as_life_during_flask_effect"]=2524,["local_unique_flask_leech_lightning_damage_%_as_mana_during_flask_effect"]=2525,["local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"]=2131,["local_unique_flask_light_radius_+%_while_healing"]=1830,["local_unique_flask_lightning_resistance_penetration_%_during_flask_effect"]=2521,["local_unique_flask_maximum_added_lightning_damage_to_attacks_during_flask_effect"]=2522,["local_unique_flask_maximum_added_lightning_damage_to_spells_during_flask_effect"]=2523,["local_unique_flask_minimum_added_lightning_damage_to_attacks_during_flask_effect"]=2522,["local_unique_flask_minimum_added_lightning_damage_to_spells_during_flask_effect"]=2523,["local_unique_flask_nearby_enemies_cursed_with_level_x_despair_during_flask_effect"]=5226,["local_unique_flask_no_mana_cost_while_healing"]=2031,["local_unique_flask_physical_damage_%_converted_to_lightning_during_flask_effect"]=2520,["local_unique_flask_physical_damage_%_to_add_as_chaos_while_healing"]=2132,["local_unique_flask_physical_damage_%_to_add_as_cold_while_healing"]=493,["local_unique_flask_physical_damage_taken_%_as_cold_while_healing"]=492,["local_unique_flask_recover_%_maximum_life_when_effect_reaches_duration"]=2030,["local_unique_flask_resist_all_elements_%_during_flask_effect"]=1832,["local_unique_flask_shock_nearby_enemies_during_flask_effect"]=2518,["local_unique_flask_shocked_during_flask_effect"]=2519,["local_unique_flask_spell_block_%_while_healing"]=2157,["local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect"]=5227,["local_unique_flask_vaal_skill_damage_+%_during_flask_effect"]=5228,["local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect"]=5229,["local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect"]=5230,["local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect"]=5231,["local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect"]=5232,["local_unique_hungry_loop_has_consumed_gem"]=57,["local_unique_hungry_loop_number_of_gems_to_consume"]=57,["local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius"]=2283,["local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius"]=2284,["local_unique_jewel_X_strength_per_1_strength_allocated_in_radius"]=2285,["local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius"]=5233,["local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius"]=2372,["local_unique_jewel_additional_all_attributes_with_passive_tree_connected_to_scion_start"]=6477,["local_unique_jewel_additional_critical_strike_chance_permyriad_with_passive_tree_connected_to_shadow_start"]=6477,["local_unique_jewel_additional_life_per_X_int_in_radius"]=2348,["local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius"]=2365,["local_unique_jewel_alternate_tree_internal_revision"]=6541,["local_unique_jewel_alternate_tree_keystone"]=36,["local_unique_jewel_alternate_tree_seed"]=36,["local_unique_jewel_alternate_tree_version"]=36,["local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius"]=2370,["local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius"]=2470,["local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius"]=2479,["local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius"]=5234,["local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius"]=5235,["local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius"]=5236,["local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius"]=5237,["local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius"]=5238,["local_unique_jewel_burning_arrow_additional_ignite_stacks_with_50_dex_in_radius"]=2568,["local_unique_jewel_burning_arrow_spread_burning_ground_when_igniting_enemy_on_hit_%_with_50_dexterity_in_radius"]=2567,["local_unique_jewel_burning_arrow_spread_tar_ground_when_not_igniting_enemy_on_hit_%_with_50_dexterity_in_radius"]=2569,["local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius"]=5239,["local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius"]=5240,["local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius"]=5241,["local_unique_jewel_chaos_damage_+%_per_10_int_in_radius"]=2286,["local_unique_jewel_chaos_damage_+%_per_X_int_in_radius"]=2349,["local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius"]=2350,["local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius"]=2338,["local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius"]=2571,["local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius"]=2570,["local_unique_jewel_cold_and_lightning_resistance_to_melee_damage"]=5242,["local_unique_jewel_cold_damage_+1%_per_x_int_in_radius"]=2362,["local_unique_jewel_cold_damage_increases_applies_to_physical_damage"]=2341,["local_unique_jewel_cold_resistance_also_grants_dodge_chance_scaled_%"]=5243,["local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance"]=5244,["local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius"]=2475,["local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius"]=5245,["local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius"]=2373,["local_unique_jewel_damage_increases_applies_to_fire_damage"]=2339,["local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius"]=2352,["local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius"]=5246,["local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius"]=2443,["local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius"]=5247,["local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius"]=5248,["local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int"]=5249,["local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex"]=5250,["local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex"]=5251,["local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius"]=5252,["local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius"]=5253,["local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius"]=5254,["local_unique_jewel_elemental_penetration_%_with_passive_tree_connected_to_templar_start"]=6477,["local_unique_jewel_energy_shield_increases_applies_to_armour_doubled"]=2342,["local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius"]=2366,["local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius"]=2572,["local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius"]=2573,["local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius"]=2337,["local_unique_jewel_fire_and_cold_resistance_to_spell_damage"]=5255,["local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage"]=5256,["local_unique_jewel_fire_damage_+1%_per_x_int_in_radius"]=2361,["local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%"]=5257,["local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance"]=5258,["local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius"]=5259,["local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius"]=2467,["local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius"]=2466,["local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius"]=2360,["local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius"]=2580,["local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius"]=2579,["local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius"]=5260,["local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius"]=5261,["local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius"]=5262,["local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius"]=5263,["local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius"]=5284,["local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius"]=2369,["local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius"]=5264,["local_unique_jewel_glacial_cascade_physical_damage_%_to_convert_to_cold_with_40_int_in_radius"]=5265,["local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius"]=2441,["local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius"]=2574,["local_unique_jewel_glacial_hammer_physical_damage_%_to_convert_to_cold_with_50_str_in_radius"]=2575,["local_unique_jewel_grants_x_empty_passives"]=5266,["local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius"]=2473,["local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius"]=2472,["local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius"]=2445,["local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius"]=5267,["local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius"]=5268,["local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius"]=5269,["local_unique_jewel_intelligence_per_unallocated_node_in_radius"]=2306,["local_unique_jewel_life_increases_applies_to_energy_shield"]=2343,["local_unique_jewel_life_increases_applies_to_mana_doubled"]=2351,["local_unique_jewel_life_leech_from_attack_damage_permyriad_with_passive_tree_connected_to_duelist_start"]=6477,["local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius"]=5270,["local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius"]=5271,["local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_%"]=5272,["local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance"]=5273,["local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius"]=5274,["local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius"]=5275,["local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius"]=5276,["local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius"]=5277,["local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius"]=5278,["local_unique_jewel_mana_regeneration_rate_per_minute_%_with_passive_tree_connected_to_witch_start"]=6477,["local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius"]=2374,["local_unique_jewel_melee_applies_to_bow"]=2282,["local_unique_jewel_melee_skills_area_of_effect_+%_with_passive_tree_connected_to_marauder_start"]=6477,["local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius"]=5279,["local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius"]=5280,["local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius"]=2367,["local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius"]=5281,["local_unique_jewel_movement_speed_+%_with_passive_tree_connected_to_ranger_start"]=6477,["local_unique_jewel_nearby_disconnected_passives_can_be_allocated"]=517,["local_unique_jewel_non_keystone_passive_in_radius_effect_+%"]=5282,["local_unique_jewel_notable_passive_in_radius_does_nothing"]=5283,["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%"]=6555,["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%"]=6556,["local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex"]=2347,["local_unique_jewel_passives_in_radius_applied_to_minions_instead"]=2287,["local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage"]=6557,["local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage"]=6557,["local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius"]=2364,["local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius"]=2359,["local_unique_jewel_physical_damage_+1%_per_int_in_radius"]=2363,["local_unique_jewel_physical_damage_increases_applies_to_cold_damage"]=2340,["local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius"]=2368,["local_unique_jewel_rallying_cry_damage_taken_goes_to_mana_%_with_50_int_in_radius"]=2477,["local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius"]=2576,["local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius"]=2577,["local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius"]=5285,["local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius"]=2578,["local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius"]=5286,["local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius"]=5287,["local_unique_jewel_spectral_shield_throw_fire_shards_on_chain_with_total_40_str_+_dex_in_radius"]=5288,["local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius"]=5289,["local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius"]=2442,["local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius"]=5290,["local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius"]=5291,["local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius"]=2371,["local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius"]=5292,["local_unique_jewel_totem_life_+X%_per_10_str_in_radius"]=2273,["local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius"]=2353,["local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius"]=2464,["local_unique_jewel_viper_strike_attack_damage_per_poison_on_enemy_+%_with_50_dexterity_in_radius"]=2444,["local_unique_jewel_viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy_with_50_dex_in_radius"]=5293,["local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill"]=2275,["local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons"]=2462,["local_unique_jewel_with_70_dex_physical_damage_to_add_as_chaos_%"]=2307,["local_unique_jewel_with_70_str_life_recovery_speed_+%"]=2308,["local_unique_jewel_with_x_int_in_radius_+1_curse"]=2292,["local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius"]=5294,["local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius"]=5295,["local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect"]=2133,["local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect"]=3399,["local_unique_regen_es_from_removed_life_duration_ms"]=2358,["local_unique_remove_life_and_regen_es_from_removed_life"]=2358,["local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect"]=5296,["local_varunastra_weapon_counts_as_all_1h_melee_weapon_types"]=2994,["local_weapon_always_crit"]=3009,["local_weapon_enemy_phys_reduction_%_penalty"]=605,["local_weapon_no_physical_damage"]=604,["local_weapon_range_+"]=1957,["local_weapon_uses_both_hands"]=449,["lose_%_of_mana_when_you_use_an_attack_skill"]=5298,["lose_a_frenzy_charge_on_travel_skill_use_%_chance"]=3585,["lose_a_power_charge_when_you_gain_elusive_%_chance"]=3586,["lose_all_charges_on_starting_movement"]=5297,["lose_all_endurance_charges_when_reaching_maximum"]=1965,["lose_all_power_charges_on_reaching_maximum_power_charges"]=2811,["lose_endurance_charges_on_rampage_end"]=2485,["lose_power_charge_each_second_if_not_detonated_mines_recently"]=5299,["lose_soul_eater_souls_on_flask_use"]=2646,["lose_spirit_charges_on_savage_hit_taken"]=3576,["mace_accuracy_rating"]=1303,["mace_accuracy_rating_+%"]=797,["mace_ailment_damage_+%"]=691,["mace_attack_speed_+%"]=779,["mace_critical_strike_chance_+%"]=825,["mace_critical_strike_multiplier_+"]=849,["mace_damage_+%"]=688,["mace_elemental_damage_+%"]=1409,["mace_hit_and_ailment_damage_+%"]=689,["mace_or_staff_ailment_damage_+%"]=718,["mace_or_staff_hit_and_ailment_damage_+%"]=717,["magic_items_drop_identified"]=3365,["magic_monster_dropped_item_rarity_+%"]=5300,["magma_orb_damage_+%"]=2856,["magma_orb_num_of_additional_projectiles_in_chain"]=3163,["magma_orb_number_of_additional_projectiles"]=5301,["magma_orb_radius_+%"]=3023,["magma_orb_skill_area_of_effect_+%_per_bounce"]=5302,["maim_bleeding_enemies_on_hit_%"]=2540,["maim_effect_+%"]=5303,["maim_on_crit_%_with_attacks"]=5304,["maim_on_hit_%"]=5305,["maim_on_hit_%_vs_poisoned_enemies"]=2510,["main_hand_attack_damage_+%_while_wielding_two_weapon_types"]=5306,["main_hand_base_weapon_attack_duration_ms"]=16,["main_hand_maximum_attack_distance"]=20,["main_hand_minimum_attack_distance"]=18,["main_hand_quality"]=12,["main_hand_weapon_type"]=4,["mamba_strike_area_of_effect_+%"]=5307,["mamba_strike_damage_+%"]=5308,["mamba_strike_duration_+%"]=5309,["mana_%_gained_on_block"]=5323,["mana_%_to_add_as_energy_shield"]=1463,["mana_%_to_add_as_energy_shield_at_devotion_threshold"]=5324,["mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy"]=2613,["mana_cost_+%_for_channelling_skills"]=5310,["mana_cost_+%_for_trap_and_mine_skills"]=5311,["mana_cost_+%_for_trap_skills"]=5312,["mana_cost_+%_on_consecrated_ground"]=2768,["mana_cost_+%_on_totemified_aura_skills"]=2324,["mana_cost_+%_per_10_devotion"]=5313,["mana_cost_+%_per_200_mana_spent_recently"]=3539,["mana_cost_+%_when_on_low_life"]=1177,["mana_cost_+%_while_not_low_mana"]=2301,["mana_cost_+%_while_on_full_energy_shield"]=1176,["mana_cost_-%_per_endurance_charge"]=2483,["mana_degeneration_per_minute"]=5314,["mana_degeneration_per_minute_%"]=5315,["mana_flasks_gain_X_charges_every_3_seconds"]=5316,["mana_gain_per_target"]=1055,["mana_gained_on_block"]=1069,["mana_gained_on_enemy_death_per_level"]=2191,["mana_gained_on_hitting_taunted_enemy"]=1093,["mana_gained_on_spell_hit"]=5317,["mana_gained_on_spell_hit_vs_cursed_enemies"]=5318,["mana_gained_when_hit"]=1922,["mana_leech_from_any_damage_permyriad"]=1017,["mana_leech_from_attack_damage_permyriad_per_power_charge"]=5319,["mana_leech_from_attack_damage_permyriad_vs_poisoned_enemies"]=3387,["mana_leech_from_lightning_damage_permyriad_while_affected_by_wrath"]=5320,["mana_leech_from_physical_attack_damage_permyriad"]=1014,["mana_leech_from_physical_damage_permyriad_per_power_charge"]=1031,["mana_leech_from_physical_damage_with_bow_permyriad"]=988,["mana_leech_from_physical_damage_with_claw_permyriad"]=987,["mana_leech_permyriad_vs_frozen_enemies"]=5321,["mana_leech_speed_+%"]=1444,["mana_leech_speed_+%_per_equipped_corrupted_item"]=2317,["mana_per_level"]=5322,["mana_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=5325,["mana_recovery_rate_+%"]=2188,["mana_recovery_rate_+%_while_affected_by_a_mana_flask"]=5326,["mana_recovery_rate_+%_while_affected_by_clarity"]=5327,["mana_regeneration_+%_for_4_seconds_on_movement_skill_use"]=3289,["mana_regeneration_rate_+%"]=922,["mana_regeneration_rate_+%_during_flask_effect"]=2398,["mana_regeneration_rate_+%_if_enemy_frozen_recently"]=5340,["mana_regeneration_rate_+%_if_enemy_shocked_recently"]=5341,["mana_regeneration_rate_+%_if_hit_cursed_enemy_recently"]=5342,["mana_regeneration_rate_+%_per_1%_spell_block_chance"]=5328,["mana_regeneration_rate_+%_per_power_charge"]=1273,["mana_regeneration_rate_+%_per_raised_spectre"]=5343,["mana_regeneration_rate_+%_while_moving"]=5344,["mana_regeneration_rate_+%_while_phasing"]=1743,["mana_regeneration_rate_+%_while_stationary"]=3512,["mana_regeneration_rate_per_minute_%"]=920,["mana_regeneration_rate_per_minute_%_if_enemy_hit_recently"]=5333,["mana_regeneration_rate_per_minute_%_per_active_totem"]=5334,["mana_regeneration_rate_per_minute_%_per_power_charge"]=923,["mana_regeneration_rate_per_minute_if_enemy_hit_recently"]=5329,["mana_regeneration_rate_per_minute_if_used_movement_skill_recently"]=5330,["mana_regeneration_rate_per_minute_per_10_devotion"]=5331,["mana_regeneration_rate_per_minute_per_power_charge"]=5332,["mana_regeneration_rate_per_minute_while_dual_wielding"]=5335,["mana_regeneration_rate_per_minute_while_holding_shield"]=5336,["mana_regeneration_rate_per_minute_while_on_consecrated_ground"]=5337,["mana_regeneration_rate_per_minute_while_wielding_staff"]=5338,["mana_regeneration_rate_per_minute_while_you_have_avians_flight"]=5339,["mana_reservation_+%_per_250_total_attributes"]=5346,["mana_reservation_+%_with_curse_skills"]=5347,["mana_reservation_+%_with_skills_that_throw_mines"]=5345,["manifest_dancing_dervish_number_of_additional_copies"]=5348,["map_additional_number_of_packs_to_choose"]=1559,["map_additional_player_maximum_resistances_%"]=1616,["map_additional_rare_in_rare_pack_%_chance"]=5349,["map_additional_rare_in_synthesised_rare_pack_%_chance"]=5350,["map_additional_red_beasts"]=5351,["map_additional_tier"]=1589,["map_adds_X_extra_synthesis_mods"]=5352,["map_adds_X_extra_synthesis_special_mods"]=5353,["map_allow_shrines"]=1846,["map_always_has_weather"]=1845,["map_ambush_chests"]=1837,["map_architects_drops_additional_map_currency"]=5354,["map_area_contains_arcanists_strongbox"]=5356,["map_area_contains_avatar_of_ambush"]=5357,["map_area_contains_avatar_of_anarchy"]=5358,["map_area_contains_avatar_of_beyond"]=5359,["map_area_contains_avatar_of_bloodlines"]=5360,["map_area_contains_avatar_of_breach"]=5361,["map_area_contains_avatar_of_domination"]=5362,["map_area_contains_avatar_of_essence"]=5363,["map_area_contains_avatar_of_invasion"]=5364,["map_area_contains_avatar_of_nemesis"]=5365,["map_area_contains_avatar_of_onslaught"]=5366,["map_area_contains_avatar_of_perandus"]=5367,["map_area_contains_avatar_of_prophecy"]=5368,["map_area_contains_avatar_of_rampage"]=5369,["map_area_contains_avatar_of_talisman"]=5370,["map_area_contains_avatar_of_tempest"]=5371,["map_area_contains_avatar_of_torment"]=5372,["map_area_contains_avatar_of_warbands"]=5373,["map_area_contains_cartographers_strongbox"]=5374,["map_area_contains_currency_chest"]=5375,["map_area_contains_gemcutters_strongbox"]=5376,["map_area_contains_grandmaster_ally"]=5377,["map_area_contains_jewellery_chest"]=5378,["map_area_contains_map_chest"]=5379,["map_area_contains_metamorphs"]=5380,["map_area_contains_perandus_coin_chest"]=5381,["map_area_contains_tormented_embezzler"]=5382,["map_area_contains_tormented_seditionist"]=5383,["map_area_contains_tormented_vaal_cultist"]=5384,["map_area_contains_unique_item_chest"]=5385,["map_area_contains_unique_strongbox"]=5386,["map_area_contains_x_additional_clusters_of_beacon_barrels"]=5387,["map_area_contains_x_additional_clusters_of_bloodworm_barrels"]=5388,["map_area_contains_x_additional_clusters_of_explosive_barrels"]=5389,["map_area_contains_x_additional_clusters_of_explosive_eggs"]=5390,["map_area_contains_x_additional_clusters_of_parasite_barrels"]=5391,["map_area_contains_x_additional_clusters_of_volatile_barrels"]=5392,["map_area_contains_x_additional_clusters_of_wealthy_barrels"]=5393,["map_area_contains_x_rare_monsters_with_inner_treasure"]=5447,["map_atlas_influence_type"]=5355,["map_base_ground_desecration_damage_to_deal_per_minute"]=1567,["map_base_ground_fire_damage_to_deal_per_10_seconds"]=1561,["map_base_ground_fire_damage_to_deal_per_minute"]=1560,["map_beyond_chance_%"]=1849,["map_beyond_portal_spawn_additional_demon_%_chance"]=5394,["map_beyond_rules"]=1848,["map_blight_chest_%_chance_for_additional_drop"]=5395,["map_blight_tower_cost_+%"]=5396,["map_bloodline_packs_drop_x_additional_currency_items"]=5397,["map_bloodline_packs_drop_x_additional_rare_items"]=5398,["map_boss_accompanied_by_bodyguards"]=5399,["map_boss_accompanied_by_harbinger"]=5400,["map_boss_area_of_effect_+%"]=1671,["map_boss_attack_and_cast_speed_+%"]=1669,["map_boss_damage_+%"]=1668,["map_boss_dropped_item_quantity_+%"]=5401,["map_boss_dropped_unique_items_+"]=5402,["map_boss_drops_additional_currency_shards"]=5403,["map_boss_drops_corrupted_items"]=5404,["map_boss_drops_x_additional_vaal_items"]=5405,["map_boss_maximum_life_+%"]=1670,["map_breach_has_boss"]=5406,["map_breach_has_large_chest"]=5407,["map_breach_monster_quantity_+%"]=5408,["map_breach_rules"]=1838,["map_chest_item_quantity_+%"]=1672,["map_chest_item_rarity_+%"]=1673,["map_contains_additional_breaches"]=5409,["map_contains_additional_chrysalis_talisman"]=5410,["map_contains_additional_clutching_talisman"]=5411,["map_contains_additional_fangjaw_talisman"]=5412,["map_contains_additional_mandible_talisman"]=5413,["map_contains_additional_packs_of_chaos_monsters"]=5414,["map_contains_additional_packs_of_cold_monsters"]=5415,["map_contains_additional_packs_of_fire_monsters"]=5416,["map_contains_additional_packs_of_lightning_monsters"]=5417,["map_contains_additional_packs_of_physical_monsters"]=5418,["map_contains_additional_packs_of_vaal_monsters"]=5419,["map_contains_additional_three_rat_talisman"]=5420,["map_contains_additional_tormented_betrayers"]=5421,["map_contains_additional_tormented_graverobbers"]=5422,["map_contains_additional_tormented_heretics"]=5423,["map_contains_additional_unique_talisman"]=5424,["map_contains_additional_writhing_talisman"]=5425,["map_contains_chayula_breach"]=5426,["map_contains_corrupted_strongbox"]=5427,["map_contains_creeping_agony"]=5428,["map_contains_keepers_of_the_trove_bloodline_pack"]=5429,["map_contains_master"]=5430,["map_contains_nevalis_monkey"]=5431,["map_contains_perandus_boss"]=5432,["map_contains_talisman_boss_with_higher_tier"]=5433,["map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+%"]=5434,["map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final"]=5434,["map_contains_uul_netol_breach"]=5435,["map_contains_wealthy_pack"]=5436,["map_contains_x_additional_animated_weapon_packs"]=5437,["map_contains_x_additional_healing_packs"]=5438,["map_contains_x_additional_magic_packs"]=5439,["map_contains_x_additional_normal_packs"]=5440,["map_contains_x_additional_packs_on_their_own_team"]=5441,["map_contains_x_additional_packs_that_convert_on_death"]=5442,["map_contains_x_additional_packs_with_mirrored_rare_monsters"]=5443,["map_contains_x_additional_poison_packs"]=5444,["map_contains_x_additional_rare_packs"]=5445,["map_contains_x_fewer_portals"]=5446,["map_cowards_trial_extra_ghosts"]=5448,["map_cowards_trial_extra_oriath_citizens"]=5449,["map_cowards_trial_extra_phantasms"]=5450,["map_cowards_trial_extra_raging_spirits"]=5451,["map_cowards_trial_extra_rhoas"]=5452,["map_cowards_trial_extra_skeleton_cannons"]=5453,["map_cowards_trial_extra_zombies"]=5454,["map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on"]=5456,["map_damage_+%_per_poison_stack"]=5455,["map_damage_taken_+%_from_beyond_monsters"]=5457,["map_damage_taken_while_stationary_+%"]=5458,["map_damage_while_stationary_+%"]=5459,["map_death_and_taxes_boss_drops_additional_currency"]=5460,["map_delve_rules"]=5461,["map_display_area_contains_unbridged_gaps_to_cross"]=1558,["map_display_strongbox_monsters_are_enraged"]=5463,["map_display_unique_boss_drops_X_maps"]=1588,["map_divination_card_drop_chance_+%"]=5464,["map_duplicate_x_rare_monsters"]=5466,["map_duplicate_x_synthesised_rare_monsters"]=5467,["map_elder_boss_variation"]=5468,["map_elder_rare_chance_+%"]=5469,["map_endgame_affliction_reward_1"]=5470,["map_endgame_affliction_reward_2"]=5471,["map_endgame_affliction_reward_3"]=5472,["map_endgame_affliction_reward_4"]=5473,["map_endgame_affliction_reward_5"]=5474,["map_endgame_fog_depth"]=5475,["map_equipment_drops_identified"]=5476,["map_essence_monolith_contains_additional_essence_of_corruption"]=5477,["map_essence_monolith_contains_essence_of_corruption_%"]=5478,["map_essence_monsters_are_corrupted"]=5479,["map_essence_monsters_have_additional_essences"]=5480,["map_essence_monsters_higher_tier"]=5481,["map_experience_gain_+%"]=515,["map_extra_monoliths"]=5482,["map_first_invasion_boss_killed_drops_x_additional_currency"]=5483,["map_first_strongbox_contains_x_additional_rare_monsters"]=5484,["map_first_unique_beyond_boss_slain_drops_x_beyond_uniques"]=5485,["map_fishy_effect_0"]=5462,["map_fishy_effect_1"]=5462,["map_fishy_effect_2"]=5462,["map_fishy_effect_3"]=5462,["map_fixed_seed"]=1573,["map_flask_charges_recovered_per_3_seconds_%"]=5486,["map_force_stone_circle"]=1599,["map_gain_onslaught_for_x_ms_on_killing_rare_monster"]=5487,["map_ground_haste_action_speed_+%"]=5488,["map_ground_ice"]=1562,["map_ground_ice_base_magnitude"]=1563,["map_ground_lightning"]=1564,["map_ground_lightning_base_magnitude"]=1565,["map_ground_tar_movement_speed_+%"]=1566,["map_harbingers_drops_additional_currency_shards"]=5489,["map_has_X_seconds_between_waves"]=1675,["map_has_X_waves_of_monsters"]=1674,["map_has_monoliths"]=5490,["map_has_x%_quality"]=5491,["map_imprisoned_monsters_action_speed_+%"]=5492,["map_imprisoned_monsters_damage_+%"]=5493,["map_imprisoned_monsters_damage_taken_+%"]=5494,["map_incursion_boss_possessed_by_tormented_arsonist"]=5495,["map_incursion_boss_possessed_by_tormented_blasphemer"]=5496,["map_incursion_boss_possessed_by_tormented_cannibal"]=5497,["map_incursion_boss_possessed_by_tormented_charlatan"]=5498,["map_incursion_boss_possessed_by_tormented_corrupter"]=5499,["map_incursion_boss_possessed_by_tormented_counterfeiter"]=5500,["map_incursion_boss_possessed_by_tormented_cutthroat"]=5501,["map_incursion_boss_possessed_by_tormented_embezzler"]=5502,["map_incursion_boss_possessed_by_tormented_experimenter"]=5503,["map_incursion_boss_possessed_by_tormented_fisherman"]=5504,["map_incursion_boss_possessed_by_tormented_freezer"]=5505,["map_incursion_boss_possessed_by_tormented_librarian"]=5506,["map_incursion_boss_possessed_by_tormented_martyr"]=5507,["map_incursion_boss_possessed_by_tormented_mutilator"]=5508,["map_incursion_boss_possessed_by_tormented_necromancer"]=5509,["map_incursion_boss_possessed_by_tormented_poisoner"]=5510,["map_incursion_boss_possessed_by_tormented_rogue"]=5511,["map_incursion_boss_possessed_by_tormented_smuggler"]=5512,["map_incursion_boss_possessed_by_tormented_spy"]=5513,["map_incursion_boss_possessed_by_tormented_thief"]=5514,["map_incursion_boss_possessed_by_tormented_thug"]=5515,["map_incursion_boss_possessed_by_tormented_warlord"]=5516,["map_incursion_spawn_large_caustic_plants"]=5517,["map_incursion_spawn_parasitic_caustic_plants"]=5518,["map_invasion_bosses_are_twinned"]=5519,["map_invasion_bosses_drop_x_additional_vaal_orbs"]=5520,["map_invasion_bosses_dropped_items_are_fully_linked"]=5521,["map_invasion_bosses_dropped_items_have_x_additional_sockets"]=5522,["map_invasion_monster_packs"]=1840,["map_invasion_monsters_guarded_by_x_magic_packs"]=5523,["map_is_branchy"]=1557,["map_item_drop_quality_also_applies_to_map_item_drop_rarity"]=5524,["map_item_drop_quantity_+%"]=31,["map_item_drop_rarity_+%"]=32,["map_item_found_rarity_+%_per_15_rampage_stacks"]=5525,["map_item_level_override"]=516,["map_item_quantity_from_monsters_that_drop_silver_coin_+%"]=5526,["map_items_drop_corrupted"]=2260,["map_items_drop_corrupted_%"]=2261,["map_leaguestone_area_contains_x_additional_leaguestones"]=5527,["map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final"]=5528,["map_leaguestone_contains_warband_leader"]=5529,["map_leaguestone_explicit_warband_type_override"]=5530,["map_leaguestone_imprisoned_monsters_item_quantity_+%_final"]=5531,["map_leaguestone_imprisoned_monsters_item_rarity_+%_final"]=5532,["map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final"]=5533,["map_leaguestone_monolith_contains_essence_type"]=5534,["map_leaguestone_override_base_num_breaches"]=5535,["map_leaguestone_override_base_num_invasion_bosses"]=5536,["map_leaguestone_override_base_num_monoliths"]=5537,["map_leaguestone_override_base_num_perandus_chests"]=5538,["map_leaguestone_override_base_num_prophecy_coins"]=5539,["map_leaguestone_override_base_num_rogue_exiles"]=5540,["map_leaguestone_override_base_num_shrines"]=5541,["map_leaguestone_override_base_num_strongboxes"]=5542,["map_leaguestone_override_base_num_talismans"]=5543,["map_leaguestone_override_base_num_tormented_spirits"]=5544,["map_leaguestone_override_base_num_warband_packs"]=5545,["map_leaguestone_perandus_chests_have_item_quantity_+%_final"]=5546,["map_leaguestone_perandus_chests_have_item_rarity_+%_final"]=5547,["map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final"]=5548,["map_leaguestone_shrine_monster_rarity_override"]=5549,["map_leaguestone_shrine_override_type"]=5550,["map_leaguestone_strongboxes_rarity_override"]=5551,["map_leaguestone_warbands_packs_have_item_quantity_+%_final"]=5553,["map_leaguestone_warbands_packs_have_item_rarity_+%_final"]=5554,["map_leaguestone_x_monsters_spawn_abaxoth"]=5555,["map_leaguestone_x_monsters_spawn_random_beyond_boss"]=5556,["map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks"]=5557,["map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks"]=5558,["map_legion_league_extra_spawns"]=5559,["map_legion_league_force_general"]=5560,["map_legion_league_force_war_chest"]=5561,["map_level_+"]=5562,["map_magic_items_drop_as_normal"]=5563,["map_magic_monster_life_regeneration_rate_per_minute_%"]=3495,["map_magic_monsters_are_maimed"]=5564,["map_magic_monsters_damage_taken_+%"]=5565,["map_magic_pack_mod_rules"]=1843,["map_magic_pack_size_+%"]=5566,["map_map_item_drop_chance_+%"]=5567,["map_metamorph_all_metamorphs_have_rewards"]=5568,["map_metamorph_boss_drops_additional_itemised_organs"]=5569,["map_metamorphosis_league"]=5570,["map_mini_monolith_monsters_are_magic"]=5571,["map_minimap_revealed"]=1574,["map_monster_and_player_onslaught_effect_+%"]=5572,["map_monster_attack_cast_and_movement_speed_+%"]=5573,["map_monster_beyond_portal_chance_+%"]=5574,["map_monster_curse_effect_on_self_+%"]=5575,["map_monster_damage_taken_+%_while_possessed"]=5576,["map_monster_drop_higher_level_gear"]=2802,["map_monster_melee_attacks_apply_random_curses"]=1657,["map_monster_melee_attacks_apply_random_curses_%_chance"]=1658,["map_monster_no_drops"]=1666,["map_monster_non_damaging_ailment_effect_+%_on_self"]=5577,["map_monster_skills_chain_X_additional_times"]=1660,["map_monster_slain_experience_+%"]=5578,["map_monsters_%_chance_to_inflict_status_ailments"]=5602,["map_monsters_%_physical_damage_to_add_as_chaos"]=5603,["map_monsters_%_physical_damage_to_add_as_cold"]=1650,["map_monsters_%_physical_damage_to_add_as_fire"]=1649,["map_monsters_%_physical_damage_to_add_as_lightning"]=1651,["map_monsters_%_physical_damage_to_convert_to_chaos"]=1652,["map_monsters_%_physical_damage_to_convert_to_cold"]=1647,["map_monsters_%_physical_damage_to_convert_to_fire"]=1646,["map_monsters_%_physical_damage_to_convert_to_lightning"]=1648,["map_monsters_accuracy_rating_+%"]=5579,["map_monsters_add_endurance_charge_on_hit_%"]=5580,["map_monsters_add_frenzy_charge_on_hit_%"]=5581,["map_monsters_add_power_charge_on_hit_%"]=5582,["map_monsters_additional_chaos_resistance"]=5583,["map_monsters_additional_cold_resistance"]=1641,["map_monsters_additional_elemental_resistance"]=5584,["map_monsters_additional_fire_resistance"]=1640,["map_monsters_additional_lightning_resistance"]=1642,["map_monsters_additional_number_of_projecitles"]=1639,["map_monsters_additional_physical_damage_reduction"]=1643,["map_monsters_all_damage_can_chill"]=5585,["map_monsters_all_damage_can_shock"]=5586,["map_monsters_always_ignite"]=5587,["map_monsters_are_converted_on_kill"]=5588,["map_monsters_are_hexproof"]=1664,["map_monsters_are_immune_to_curses"]=1663,["map_monsters_area_of_effect_+%"]=1622,["map_monsters_attack_speed_+%"]=1635,["map_monsters_avoid_ailments_%"]=1626,["map_monsters_avoid_elemental_ailments_%"]=1627,["map_monsters_avoid_freeze_and_chill_%"]=1623,["map_monsters_avoid_ignite_%"]=1624,["map_monsters_avoid_poison_blind_bleed_%"]=5589,["map_monsters_avoid_shock_%"]=1625,["map_monsters_base_self_critical_strike_multiplier_-%"]=2820,["map_monsters_cannot_be_stunned"]=1644,["map_monsters_cannot_be_taunted"]=5590,["map_monsters_cast_speed_+%"]=1636,["map_monsters_chance_to_impale_%"]=5591,["map_monsters_chance_to_inflict_brittle_%"]=5592,["map_monsters_chance_to_inflict_sapped_%"]=5593,["map_monsters_chance_to_scorch_%"]=5594,["map_monsters_convert_all_physical_damage_to_fire"]=1661,["map_monsters_critical_strike_chance_+%"]=1628,["map_monsters_critical_strike_multiplier_+"]=1629,["map_monsters_curse_effect_+%"]=1665,["map_monsters_curse_effect_on_self_+%_final"]=5595,["map_monsters_damage_+%"]=1632,["map_monsters_drop_ground_fire_on_death_base_radius"]=1662,["map_monsters_enemy_phys_reduction_%_penalty_vs_hit"]=5596,["map_monsters_energy_shield_leech_resistance_%"]=5597,["map_monsters_gain_x_endurance_charges_every_20_seconds"]=1654,["map_monsters_gain_x_frenzy_charges_every_20_seconds"]=1653,["map_monsters_gain_x_power_charges_every_20_seconds"]=1655,["map_monsters_have_onslaught"]=1633,["map_monsters_immune_to_a_random_status_ailment_or_stun"]=1656,["map_monsters_life_+%"]=1621,["map_monsters_life_leech_resistance_%"]=1630,["map_monsters_maim_on_hit_%_chance"]=5598,["map_monsters_mana_leech_resistance_%"]=1631,["map_monsters_movement_speed_+%"]=1634,["map_monsters_movement_speed_cannot_be_reduced_below_base"]=5599,["map_monsters_near_shrines_are_chilled"]=5600,["map_monsters_penetrate_elemental_resistances_%"]=5601,["map_monsters_poison_on_hit"]=1645,["map_monsters_reduce_enemy_chaos_resistance_%"]=5604,["map_monsters_reduce_enemy_cold_resistance_%"]=5605,["map_monsters_reduce_enemy_fire_resistance_%"]=5606,["map_monsters_reduce_enemy_lightning_resistance_%"]=5607,["map_monsters_reflect_%_elemental_damage"]=1638,["map_monsters_reflect_%_physical_damage"]=1637,["map_monsters_reflect_curses"]=1659,["map_monsters_remove_%_of_mana_on_hit"]=5610,["map_monsters_remove_charges_on_hit_%"]=5608,["map_monsters_remove_enemy_flask_charge_on_hit_%_chance"]=5609,["map_monsters_spawned_with_talisman_drop_additional_rare_items"]=5611,["map_monsters_spells_chance_to_hinder_on_hit_%_chance"]=5612,["map_monsters_steal_charges"]=5613,["map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins"]=5614,["map_monsters_with_silver_coins_drop_x_additional_currency_items"]=5615,["map_monsters_with_silver_coins_drop_x_additional_rare_items"]=5616,["map_monstrous_treasure_no_monsters"]=5617,["map_movement_velocity_+%_per_poison_stack"]=5618,["map_nemesis_dropped_items_+"]=5619,["map_next_area_contains_x_additional_bearers_of_the_guardian_packs"]=5620,["map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs"]=5621,["map_no_magic_items_drop"]=5622,["map_no_rare_items_drop"]=5623,["map_no_refills_in_town"]=1575,["map_no_stashes"]=5624,["map_no_uniques_drop_randomly"]=5625,["map_no_vendors"]=5626,["map_non_unique_equipment_drops_as_sell_price"]=2259,["map_non_unique_items_drop_normal"]=5627,["map_non_unique_monster_life_regeneration_rate_per_minute_%"]=5628,["map_non_unique_monsters_spawn_X_monsters_on_death"]=1604,["map_normal_items_drop_as_magic"]=5629,["map_normal_monster_life_regeneration_rate_per_minute_%"]=3494,["map_nuke_everything"]=5630,["map_num_extra_abysses"]=5631,["map_num_extra_blights_"]=5632,["map_num_extra_gloom_shrines"]=5633,["map_num_extra_harbingers"]=5634,["map_num_extra_invasion_bosses"]=1841,["map_num_extra_resonating_shrines"]=5635,["map_num_extra_shrines"]=1593,["map_num_extra_strongboxes"]=1601,["map_number_of_additional_mods"]=5636,["map_number_of_additional_prefixes"]=5637,["map_number_of_additional_silver_coin_drops"]=5638,["map_number_of_additional_suffixes"]=5639,["map_number_of_magic_packs_+%"]=1602,["map_number_of_rare_packs_+%"]=1603,["map_on_complete_drop_x_additional_maps"]=5640,["map_owner_sulphite_gained_+%"]=5641,["map_packs_are_abomination_monsters"]=5642,["map_packs_are_animals"]=1581,["map_packs_are_bandits"]=1579,["map_packs_are_blackguards"]=5643,["map_packs_are_demons"]=1582,["map_packs_are_ghosts"]=5644,["map_packs_are_goatmen"]=1580,["map_packs_are_humanoids"]=1583,["map_packs_are_kitava"]=5645,["map_packs_are_lunaris"]=5646,["map_packs_are_sea_witches_and_spawn"]=1584,["map_packs_are_skeletons"]=1578,["map_packs_are_solaris"]=5647,["map_packs_are_spiders"]=5648,["map_packs_are_str_mission_totems"]=1577,["map_packs_are_totems"]=1576,["map_packs_are_undead_and_necromancers"]=1585,["map_packs_are_vaal"]=5649,["map_packs_fire_projectiles"]=1586,["map_packs_have_pop_up_traps"]=3490,["map_perandus_guards_are_rare"]=5650,["map_perandus_monsters_drop_perandus_coin_stack_%"]=5651,["map_player_attack_cast_and_movement_speed_+%_during_onslaught"]=5652,["map_player_base_chaos_damage_taken_per_minute"]=1605,["map_player_chance_to_gain_vaal_soul_on_kill_%"]=5653,["map_player_charges_gained_+%"]=5654,["map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack"]=2407,["map_player_curse_effect_on_self_+%"]=5655,["map_player_damage_+%_vs_breach_monsters"]=5656,["map_player_damage_taken_+%_vs_breach_monsters"]=5657,["map_player_damage_taken_+%_while_rampaging"]=5658,["map_player_disable_soul_gain_prevention"]=5659,["map_player_dodge_chance_%_during_shrine_effect"]=5465,["map_player_flask_recovery_is_instant"]=5660,["map_player_has_blood_magic_keystone"]=1606,["map_player_has_chaos_inoculation_keystone"]=1608,["map_player_has_elemental_equilibrium_keystone"]=1607,["map_player_has_level_X_conductivity"]=5661,["map_player_has_level_X_elemental_weakness"]=1613,["map_player_has_level_X_enfeeble"]=1611,["map_player_has_level_X_flammability"]=5662,["map_player_has_level_X_frostbite"]=5663,["map_player_has_level_X_projectile_weakness"]=5664,["map_player_has_level_X_punishment"]=1614,["map_player_has_level_X_silence"]=5665,["map_player_has_level_X_temporal_chains"]=1612,["map_player_has_level_X_vulnerability"]=1609,["map_player_has_level_X_warlords_mark"]=1610,["map_player_has_random_level_X_curse_every_10_seconds"]=5666,["map_player_life_and_es_recovery_speed_+%_final"]=5667,["map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks"]=5668,["map_player_movement_velocity_+%"]=5669,["map_player_no_regeneration"]=1615,["map_player_onslaught_on_kill_%"]=5670,["map_player_projectile_damage_+%_final"]=1618,["map_player_shrine_effect_duration_+%"]=5671,["map_player_status_recovery_speed_+%"]=1617,["map_players_action_speed_+%_while_chilled"]=2794,["map_players_additional_number_of_projectiles"]=1639,["map_players_additional_spell_dodge_%"]=5672,["map_players_and_monsters_chaos_damage_taken_+%"]=5673,["map_players_and_monsters_cold_damage_taken_+%"]=5674,["map_players_and_monsters_critical_strike_chance_+%"]=5675,["map_players_and_monsters_curses_are_reflected"]=5676,["map_players_and_monsters_damage_+%_per_curse"]=5677,["map_players_and_monsters_damage_taken_+%_while_stationary"]=5678,["map_players_and_monsters_fire_damage_taken_+%"]=5679,["map_players_and_monsters_have_onslaught_if_hit_recently"]=5680,["map_players_and_monsters_have_resolute_technique"]=5681,["map_players_and_monsters_lightning_damage_taken_+%"]=5682,["map_players_and_monsters_movement_speed_+%"]=5683,["map_players_and_monsters_physical_damage_taken_+%"]=5684,["map_players_are_poisoned_while_moving_chaos_damage_per_second"]=5685,["map_players_armour_+%_final"]=5686,["map_players_block_chance_+%"]=5687,["map_players_cannot_gain_endurance_charges"]=5688,["map_players_cannot_gain_frenzy_charges"]=5689,["map_players_cannot_gain_power_charges"]=5690,["map_players_cannot_take_reflected_damage"]=5691,["map_players_convert_all_physical_damage_to_fire"]=1619,["map_players_extra_dodge_rolls"]=5692,["map_players_gain_1_random_rare_monster_mod_on_kill_ms"]=5693,["map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=5694,["map_players_gain_onslaught_after_opening_a_strongbox_ms"]=5695,["map_players_gain_onslaught_during_flask_effect"]=5696,["map_players_gain_rampage_stacks"]=1847,["map_players_gain_rare_monster_mods_on_kill_%_chance"]=5697,["map_players_gain_rare_monster_mods_on_kill_ms"]=2642,["map_players_gain_soul_eater_on_rare_kill_ms"]=2644,["map_players_have_point_blank"]=5698,["map_players_movement_skills_cooldown_speed_+%"]=5699,["map_players_movement_speed_+%"]=5700,["map_players_no_regeneration_including_es"]=5701,["map_players_resist_all_%"]=5702,["map_players_skill_area_of_effect_+%_final"]=5703,["map_portals_do_not_expire"]=5704,["map_possessed_monsters_drop_gilded_scarab_chance_%"]=5705,["map_possessed_monsters_drop_map_chance_%"]=5706,["map_possessed_monsters_drop_polished_scarab_chance_%"]=5707,["map_possessed_monsters_drop_rusted_scarab_chance_%"]=5708,["map_possessed_monsters_drop_unique_chance_%"]=5709,["map_projectile_speed_+%"]=1620,["map_rampage_time_+%"]=5710,["map_random_unique_monster_is_possessed"]=5711,["map_rare_breach_monster_additional_breach_ring_drop_chance_%"]=5712,["map_rare_breach_monsters_drop_additional_shards"]=5713,["map_rare_monster_life_regeneration_rate_per_minute_%"]=3496,["map_rare_monsters_are_hindered"]=5714,["map_rare_monsters_drop_rare_prismatic_ring_on_death_%"]=5715,["map_rare_monsters_drop_x_additional_rare_items"]=5716,["map_rare_monsters_have_inner_treasure"]=5717,["map_rare_monsters_have_nemesis_mod"]=1842,["map_rogue_exile_attack_cast_and_movement_speed_+%"]=5718,["map_rogue_exile_drop_skill_gem_with_quality"]=5719,["map_rogue_exiles_are_doubled"]=5720,["map_rogue_exiles_damage_+%"]=5721,["map_rogue_exiles_drop_additional_currency_items_with_quality"]=5722,["map_rogue_exiles_drop_x_additional_jewels"]=5723,["map_rogue_exiles_dropped_items_are_corrupted"]=5724,["map_rogue_exiles_dropped_items_are_duplicated"]=5725,["map_rogue_exiles_dropped_items_are_fully_linked"]=5726,["map_rogue_exiles_maximum_life_+%"]=5727,["map_shaper_rare_chance_+%"]=5728,["map_shrines_are_darkshrines"]=1594,["map_shrines_drop_x_currency_items_on_activation"]=5729,["map_shrines_grant_a_random_additional_effect"]=5730,["map_simulacrum_reward_level_+"]=5731,["map_size_+%"]=1556,["map_spawn_abysses"]=5732,["map_spawn_bestiary_encounters"]=5733,["map_spawn_betrayals"]=1839,["map_spawn_beyond_boss_when_beyond_boss_slain_%"]=5734,["map_spawn_cadiro_%_chance"]=5735,["map_spawn_exile_per_area_%"]=1836,["map_spawn_extra_exiles"]=1590,["map_spawn_extra_perandus_chests"]=5736,["map_spawn_extra_talismans"]=1598,["map_spawn_extra_torment_spirits"]=1600,["map_spawn_extra_warbands"]=1592,["map_spawn_harbingers"]=1595,["map_spawn_incursion_encounters"]=5737,["map_spawn_perandus_chests"]=1597,["map_spawn_talismans"]=1596,["map_spawn_tormented_spirits"]=1844,["map_spawn_two_bosses"]=1667,["map_storm_area_of_effect_+%"]=5738,["map_strongbox_items_dropped_are_mirrored"]=5739,["map_strongbox_monsters_attack_speed_+%"]=5740,["map_strongbox_monsters_item_quantity_+%"]=5741,["map_strongboxes_are_corrupted"]=5742,["map_strongboxes_drop_x_additional_rare_items"]=5743,["map_strongboxes_minimum_rarity"]=5744,["map_strongboxes_vaal_orb_drop_chance_%"]=5552,["map_synthesis_league"]=5745,["map_synthesis_spawn_additional_abyss_bone_chest_clusters"]=5746,["map_synthesis_spawn_additional_bloodworm_barrel_clusters"]=5747,["map_synthesis_spawn_additional_fungal_chest_clusters"]=5748,["map_synthesis_spawn_additional_magic_ambush_chest"]=5749,["map_synthesis_spawn_additional_normal_ambush_chest"]=5750,["map_synthesis_spawn_additional_parasite_barrel_clusters"]=5751,["map_synthesis_spawn_additional_rare_ambush_chest"]=5752,["map_synthesis_spawn_additional_volatile_barrel_clusters"]=5753,["map_synthesis_spawn_additional_wealthy_barrel_clusters"]=5754,["map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%"]=5755,["map_synthesised_magic_monster_additional_currency_item_drop_chance_%"]=5756,["map_synthesised_magic_monster_additional_currency_shard_drop_chance_%"]=5757,["map_synthesised_magic_monster_additional_divination_card_drop_chance_%"]=5758,["map_synthesised_magic_monster_additional_elder_item_drop_chance_%"]=5759,["map_synthesised_magic_monster_additional_fossil_drop_chance_%"]=5760,["map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%"]=5761,["map_synthesised_magic_monster_additional_shaper_item_drop_chance_%"]=5762,["map_synthesised_magic_monster_drop_additional_currency"]=5763,["map_synthesised_magic_monster_drop_additional_currency_shard"]=5764,["map_synthesised_magic_monster_drop_additional_quality_currency"]=5765,["map_synthesised_magic_monster_dropped_item_quantity_+%"]=5766,["map_synthesised_magic_monster_dropped_item_rarity_+%"]=5767,["map_synthesised_magic_monster_fractured_item_drop_chance_+%"]=5768,["map_synthesised_magic_monster_items_drop_corrupted_%"]=5769,["map_synthesised_magic_monster_map_drop_chance_+%"]=5770,["map_synthesised_magic_monster_slain_experience_+%"]=5771,["map_synthesised_magic_monster_unique_item_drop_chance_+%"]=5772,["map_synthesised_monster_additional_breach_splinter_drop_chance_%"]=5773,["map_synthesised_monster_additional_currency_item_drop_chance_%"]=5774,["map_synthesised_monster_additional_currency_shard_drop_chance_%"]=5775,["map_synthesised_monster_additional_divination_card_drop_chance_%"]=5776,["map_synthesised_monster_additional_elder_item_drop_chance_%"]=5777,["map_synthesised_monster_additional_fossil_drop_chance_%"]=5778,["map_synthesised_monster_additional_quality_currency_item_drop_chance_%"]=5779,["map_synthesised_monster_additional_shaper_item_drop_chance_%"]=5780,["map_synthesised_monster_dropped_item_quantity_+%"]=5781,["map_synthesised_monster_dropped_item_rarity_+%"]=5782,["map_synthesised_monster_fractured_item_drop_chance_+%"]=5783,["map_synthesised_monster_items_drop_corrupted_%"]=5784,["map_synthesised_monster_map_drop_chance_+%"]=5785,["map_synthesised_monster_pack_size_+%"]=5786,["map_synthesised_monster_slain_experience_+%"]=5787,["map_synthesised_monster_unique_item_drop_chance_+%"]=5788,["map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%"]=5789,["map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%"]=5790,["map_synthesised_rare_monster_additional_currency_item_drop_chance_%"]=5791,["map_synthesised_rare_monster_additional_currency_shard_drop_chance_%"]=5792,["map_synthesised_rare_monster_additional_divination_card_drop_chance_%"]=5793,["map_synthesised_rare_monster_additional_elder_item_drop_chance_%"]=5794,["map_synthesised_rare_monster_additional_essence_drop_chance_%"]=5795,["map_synthesised_rare_monster_additional_fossil_drop_chance_%"]=5796,["map_synthesised_rare_monster_additional_jewel_drop_chance_%"]=5797,["map_synthesised_rare_monster_additional_map_drop_chance_%"]=5798,["map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%"]=5799,["map_synthesised_rare_monster_additional_shaper_item_drop_chance_%"]=5800,["map_synthesised_rare_monster_additional_talisman_drop_chance_%"]=5801,["map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%"]=5802,["map_synthesised_rare_monster_additional_veiled_item_drop_chance_%"]=5803,["map_synthesised_rare_monster_drop_additional_breach_splinter"]=5804,["map_synthesised_rare_monster_drop_additional_currency"]=5805,["map_synthesised_rare_monster_drop_additional_currency_shard"]=5806,["map_synthesised_rare_monster_drop_additional_quality_currency"]=5807,["map_synthesised_rare_monster_dropped_item_quantity_+%"]=5808,["map_synthesised_rare_monster_dropped_item_rarity_+%"]=5809,["map_synthesised_rare_monster_fractured_item_drop_chance_+%"]=5810,["map_synthesised_rare_monster_gives_mods_to_killer_chance_%"]=5811,["map_synthesised_rare_monster_items_drop_corrupted_%"]=5812,["map_synthesised_rare_monster_map_drop_chance_+%"]=5813,["map_synthesised_rare_monster_resurrect_as_ally_chance_%"]=5814,["map_synthesised_rare_monster_slain_experience_+%"]=5815,["map_synthesised_rare_monster_unique_item_drop_chance_+%"]=5816,["map_talismans_dropped_as_rare"]=5817,["map_talismans_higher_tier"]=5818,["map_tempest_area_of_effect_+%_visible"]=5819,["map_tempest_base_ground_desecration_damage_to_deal_per_minute"]=1572,["map_tempest_base_ground_fire_damage_to_deal_per_minute"]=1568,["map_tempest_display_prefix"]=33,["map_tempest_display_suffix"]=34,["map_tempest_frequency_+%"]=5820,["map_tempest_ground_ice"]=1569,["map_tempest_ground_lightning"]=1570,["map_tempest_ground_tar_movement_speed_+%"]=1571,["map_tormented_spirits_drop_x_additional_rare_items"]=5821,["map_tormented_spirits_duration_+%"]=5822,["map_tormented_spirits_movement_speed_+%"]=5823,["map_unique_boss_drops_divination_cards"]=5824,["map_unique_item_drop_chance_+%"]=5825,["map_unique_monsters_drop_corrupted_items"]=5826,["map_upgrade_pack_to_magic_%_chance"]=5827,["map_upgrade_pack_to_rare_%_chance"]=5828,["map_upgrade_synthesised_pack_to_magic_%_chance"]=5829,["map_upgrade_synthesised_pack_to_rare_%_chance"]=5830,["map_vaal_monster_items_drop_corrupted_%"]=5831,["map_vaal_mortal_strongbox_chance_per_fragment_%"]=5832,["map_vaal_sacrifice_strongbox_chance_per_fragment_%"]=5833,["map_vaal_vessel_drop_X_divination_cards"]=5834,["map_vaal_vessel_drop_X_fossils"]=5835,["map_vaal_vessel_drop_X_levelled_vaal_gems"]=5836,["map_vaal_vessel_drop_X_mortal_fragments"]=5837,["map_vaal_vessel_drop_X_prophecies"]=5838,["map_vaal_vessel_drop_X_rare_temple_items"]=5839,["map_vaal_vessel_drop_X_sacrifice_fragments"]=5840,["map_vaal_vessel_drop_X_vaal_orbs"]=5841,["map_vaal_vessel_drop_x_double_implicit_corrupted_uniques"]=5842,["map_vaal_vessel_drop_x_single_implicit_corrupted_uniques"]=5843,["map_vaal_vessel_item_drop_quantity_+%"]=5844,["map_vaal_vessel_item_drop_rarity_+%"]=5845,["map_warbands_packs_have_additional_elites"]=5846,["map_warbands_packs_have_additional_grunts"]=5847,["map_warbands_packs_have_additional_supports"]=5848,["map_warlord_influence"]=1591,["map_watchstone_additional_packs_of_elder_monsters"]=5849,["map_watchstone_additional_packs_of_shaper_monsters"]=5850,["map_watchstone_monsters_damage_+%_final"]=5851,["map_watchstone_monsters_life_+%_final"]=5852,["map_weapons_drop_animated"]=2262,["max_chance_to_block_attacks_if_not_blocked_recently"]=5853,["max_charged_attack_stacks"]=3427,["max_endurance_charges"]=1110,["max_frenzy_charges"]=1112,["max_power_charges"]=1114,["maximum_added_chaos_damage_if_have_crit_recently"]=5909,["maximum_added_chaos_damage_per_spiders_web_on_enemy"]=5910,["maximum_added_chaos_damage_vs_enemies_with_5+_poisons"]=5911,["maximum_added_cold_damage_if_have_crit_recently"]=5912,["maximum_added_cold_damage_per_frenzy_charge"]=3481,["maximum_added_cold_damage_to_attacks_per_10_dexterity"]=5913,["maximum_added_cold_damage_vs_chilled_enemies"]=5914,["maximum_added_cold_damage_while_affected_by_hatred"]=5915,["maximum_added_cold_damage_while_you_have_avians_might"]=5916,["maximum_added_fire_attack_damage_per_active_buff"]=637,["maximum_added_fire_damage_if_blocked_recently"]=3483,["maximum_added_fire_damage_if_have_crit_recently"]=5917,["maximum_added_fire_damage_per_active_buff"]=639,["maximum_added_fire_damage_per_endurance_charge"]=5918,["maximum_added_fire_damage_to_attacks_per_10_strength"]=5919,["maximum_added_fire_damage_to_hits_vs_blinded_enemies"]=5920,["maximum_added_fire_damage_vs_ignited_enemies"]=636,["maximum_added_fire_spell_damage_per_active_buff"]=638,["maximum_added_lightning_damage_if_have_crit_recently"]=5921,["maximum_added_lightning_damage_per_10_int"]=5854,["maximum_added_lightning_damage_per_power_charge"]=5922,["maximum_added_lightning_damage_per_shocked_enemy_killed_recently"]=5923,["maximum_added_lightning_damage_to_attacks_per_10_intelligence"]=5924,["maximum_added_lightning_damage_to_spells_per_power_charge"]=5925,["maximum_added_lightning_damage_while_you_have_avians_might"]=5926,["maximum_added_physical_damage_if_have_crit_recently"]=5927,["maximum_added_physical_damage_per_endurance_charge"]=5928,["maximum_added_physical_damage_vs_bleeding_enemies"]=1730,["maximum_added_physical_damage_vs_frozen_enemies"]=635,["maximum_added_physical_damage_vs_poisoned_enemies"]=5929,["maximum_added_spell_cold_damage_while_no_life_is_reserved"]=5930,["maximum_added_spell_fire_damage_while_no_life_is_reserved"]=5931,["maximum_added_spell_lightning_damage_while_no_life_is_reserved"]=5932,["maximum_blitz_charges"]=5855,["maximum_block_%"]=1282,["maximum_challenger_charges"]=5856,["maximum_chaos_damage_to_return_to_melee_attacker"]=1488,["maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice"]=5857,["maximum_cold_damage_to_return_to_melee_attacker"]=1486,["maximum_critical_strike_chance"]=1959,["maximum_divine_charges"]=3579,["maximum_dodge_chance_%"]=5858,["maximum_endurance_charges_is_equal_to_maximum_frenzy_charges"]=5859,["maximum_energy_shield_%_lost_on_kill"]=1067,["maximum_energy_shield_+%"]=904,["maximum_energy_shield_+_per_100_life_reserved"]=909,["maximum_energy_shield_+_per_5_armour_on_shield"]=3569,["maximum_energy_shield_+_per_5_strength"]=2992,["maximum_energy_shield_+_per_6_body_armour_evasion_rating"]=910,["maximum_energy_shield_from_body_armour_+%"]=5860,["maximum_energy_shield_leech_amount_per_leech_%_max_energy_shield"]=1040,["maximum_energy_shield_leech_amount_per_leech_+%"]=1037,["maximum_energy_shield_leech_rate_%_per_minute"]=1039,["maximum_energy_shield_leech_rate_+%"]=1045,["maximum_energy_shield_leech_rate_+%_while_affected_by_zealotry"]=1046,["maximum_es_+%_per_equipped_corrupted_item"]=2313,["maximum_es_leech_rate_+1%_per_6_stat_value_while_affected_by_zealotry"]=1047,["maximum_es_taken_as_physical_damage_on_minion_death_%"]=2239,["maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash"]=5861,["maximum_fire_damage_to_return_to_melee_attacker"]=1485,["maximum_frenzy_charges_is_equal_to_maximum_power_charges"]=5862,["maximum_intensify_stacks"]=5863,["maximum_life_%_lost_on_kill"]=1065,["maximum_life_%_to_add_as_maximum_armour"]=5870,["maximum_life_%_to_add_as_maximum_energy_shield"]=5871,["maximum_life_%_to_convert_to_maximum_energy_shield"]=5872,["maximum_life_+%"]=913,["maximum_life_+%_for_corpses_you_create"]=5873,["maximum_life_+%_per_abyssal_jewel_affecting_you"]=5874,["maximum_life_+%_per_equipped_corrupted_item"]=2312,["maximum_life_leech_amount_per_leech_%_max_life"]=5864,["maximum_life_leech_amount_per_leech_+%"]=1035,["maximum_life_leech_rate_%_per_minute"]=1038,["maximum_life_leech_rate_%_per_minute_is_doubled"]=5865,["maximum_life_leech_rate_+%"]=1042,["maximum_life_leech_rate_+%_if_have_taken_a_savage_hit_recently"]=5866,["maximum_life_leech_rate_+1%_per_12_stat_value"]=1043,["maximum_life_mana_and_energy_shield_+%"]=912,["maximum_life_per_10_dexterity"]=5867,["maximum_life_per_10_intelligence"]=5868,["maximum_life_per_10_levels"]=1975,["maximum_life_per_2%_increased_item_found_rarity"]=5869,["maximum_life_per_equipped_elder_item"]=3524,["maximum_life_taken_as_physical_damage_on_minion_death_%"]=2238,["maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=5875,["maximum_lightning_damage_to_return_on_block"]=1819,["maximum_lightning_damage_to_return_to_melee_attacker"]=1487,["maximum_mana_%_gained_on_kill"]=1066,["maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity"]=5877,["maximum_mana_+%"]=919,["maximum_mana_+%_per_2%_spell_block_chance"]=2792,["maximum_mana_+%_per_abyssal_jewel_affecting_you"]=5878,["maximum_mana_leech_amount_per_leech_%_max_mana"]=5876,["maximum_mana_leech_amount_per_leech_+%"]=1036,["maximum_mana_leech_rate_%_per_minute"]=1041,["maximum_mana_leech_rate_+%"]=1044,["maximum_physical_damage_reduction_%"]=881,["maximum_physical_damage_to_reflect_to_self_on_attack"]=1483,["maximum_physical_damage_to_return_on_block"]=1818,["maximum_physical_damage_to_return_to_melee_attacker"]=1484,["maximum_power_and_frenzy_charges_+"]=1115,["maximum_rage"]=6172,["maximum_siphoning_charges_per_elder_or_shaper_item_equipped"]=3530,["maximum_spell_block_chance_per_50_strength"]=1284,["maximum_spell_dodge_chance_%"]=5879,["maximum_spirit_charges_per_abyss_jewel_equipped"]=3572,["maximum_virulence_stacks"]=5880,["maximum_void_arrows"]=3549,["melee_ancestor_totem_damage_+%"]=2841,["melee_ancestor_totem_elemental_resistance_%"]=3325,["melee_ancestor_totem_grant_owner_attack_speed_+%"]=3015,["melee_ancestor_totem_placement_speed_+%"]=3185,["melee_attack_number_of_spirit_strikes"]=5881,["melee_attack_speed_+%"]=769,["melee_attacks_usable_without_mana_cost"]=1888,["melee_cold_damage_+%"]=1277,["melee_cold_damage_+%_while_holding_shield"]=1280,["melee_critical_strike_chance_+%"]=835,["melee_critical_strike_chance_+%_if_warcried_recently"]=5882,["melee_critical_strike_multiplier_+%_if_warcried_recently"]=5883,["melee_critical_strike_multiplier_+_while_wielding_shield"]=859,["melee_damage_+%"]=606,["melee_damage_+%_during_flask_effect"]=5884,["melee_damage_+%_per_endurance_charge"]=3381,["melee_damage_+%_vs_burning_enemies"]=611,["melee_damage_+%_vs_frozen_enemies"]=607,["melee_damage_+%_vs_shocked_enemies"]=609,["melee_damage_+%_when_on_full_life"]=1858,["melee_damage_+%_while_fortified"]=3458,["melee_damage_taken_%_to_deal_to_attacker"]=1921,["melee_damage_taken_+%"]=1960,["melee_damage_vs_bleeding_enemies_+%"]=1728,["melee_fire_damage_+%"]=1276,["melee_fire_damage_+%_while_holding_shield"]=1279,["melee_movement_skill_chance_to_fortify_on_hit_%"]=5885,["melee_physical_damage_+%"]=1275,["melee_physical_damage_+%_per_10_dexterity"]=5886,["melee_physical_damage_+%_per_10_strength_while_fortified"]=5887,["melee_physical_damage_+%_vs_ignited_enemies"]=3499,["melee_physical_damage_+%_while_fortify_is_active"]=1550,["melee_physical_damage_+%_while_holding_shield"]=1278,["melee_physical_damage_taken_%_to_deal_to_attacker"]=1696,["melee_range_+"]=1766,["melee_range_+_while_dual_wielding"]=5889,["melee_range_+_while_unarmed"]=2293,["melee_range_+_while_wielding_shield"]=5888,["melee_range_+_with_axe"]=5890,["melee_range_+_with_claw"]=5891,["melee_range_+_with_dagger"]=5892,["melee_range_+_with_mace"]=5893,["melee_range_+_with_one_handed"]=5894,["melee_range_+_with_staff"]=5895,["melee_range_+_with_sword"]=5896,["melee_range_+_with_two_handed"]=5897,["melee_skills_area_of_effect_+%"]=5898,["melee_splash"]=550,["melee_strike_skill_strike_previous_location"]=5899,["melee_weapon_ailment_damage_+%"]=651,["melee_weapon_critical_strike_multiplier_+"]=857,["melee_weapon_hit_and_ailment_damage_+%"]=647,["melee_weapon_range_+_if_you_have_killed_recently"]=5900,["melee_weapon_range_+_while_at_maximum_frenzy_charges"]=5901,["melee_weapon_range_+_while_fortified"]=5902,["mine_area_damage_+%_if_detonated_mine_recently"]=5903,["mine_area_of_effect_+%"]=5904,["mine_area_of_effect_+%_if_detonated_mine_recently"]=5905,["mine_arming_speed_+%"]=3436,["mine_aura_effect_+%"]=5906,["mine_critical_strike_chance_+%"]=831,["mine_critical_strike_multiplier_+"]=861,["mine_damage_+%"]=570,["mine_damage_leeched_as_life_to_you_permyriad"]=3443,["mine_damage_penetrates_%_elemental_resistance"]=2000,["mine_detonation_is_instant"]=1998,["mine_detonation_radius_+%"]=1211,["mine_detonation_speed_+%"]=5907,["mine_duration_+%"]=1209,["mine_extra_uses"]=2249,["mine_laying_speed_+%"]=1213,["mine_laying_speed_+%_for_4_seconds_on_detonation"]=2691,["mines_hinder_nearby_enemies_for_x_ms_on_arming"]=5908,["mines_invulnerable_for_duration_ms"]=2003,["minimum_added_chaos_damage_if_have_crit_recently"]=5909,["minimum_added_chaos_damage_per_spiders_web_on_enemy"]=5910,["minimum_added_chaos_damage_vs_enemies_with_5+_poisons"]=5911,["minimum_added_cold_damage_if_have_crit_recently"]=5912,["minimum_added_cold_damage_per_frenzy_charge"]=3481,["minimum_added_cold_damage_to_attacks_per_10_dexterity"]=5913,["minimum_added_cold_damage_vs_chilled_enemies"]=5914,["minimum_added_cold_damage_while_affected_by_hatred"]=5915,["minimum_added_cold_damage_while_you_have_avians_might"]=5916,["minimum_added_fire_attack_damage_per_active_buff"]=637,["minimum_added_fire_damage_if_blocked_recently"]=3483,["minimum_added_fire_damage_if_have_crit_recently"]=5917,["minimum_added_fire_damage_per_active_buff"]=639,["minimum_added_fire_damage_per_endurance_charge"]=5918,["minimum_added_fire_damage_to_attacks_per_10_strength"]=5919,["minimum_added_fire_damage_to_hits_vs_blinded_enemies"]=5920,["minimum_added_fire_damage_vs_ignited_enemies"]=636,["minimum_added_fire_spell_damage_per_active_buff"]=638,["minimum_added_lightning_damage_if_have_crit_recently"]=5921,["minimum_added_lightning_damage_per_power_charge"]=5922,["minimum_added_lightning_damage_per_shocked_enemy_killed_recently"]=5923,["minimum_added_lightning_damage_to_attacks_per_10_intelligence"]=5924,["minimum_added_lightning_damage_to_spells_per_power_charge"]=5925,["minimum_added_lightning_damage_while_you_have_avians_might"]=5926,["minimum_added_physical_damage_if_have_crit_recently"]=5927,["minimum_added_physical_damage_per_endurance_charge"]=5928,["minimum_added_physical_damage_vs_bleeding_enemies"]=1730,["minimum_added_physical_damage_vs_frozen_enemies"]=635,["minimum_added_physical_damage_vs_poisoned_enemies"]=5929,["minimum_added_spell_cold_damage_while_no_life_is_reserved"]=5930,["minimum_added_spell_fire_damage_while_no_life_is_reserved"]=5931,["minimum_added_spell_lightning_damage_while_no_life_is_reserved"]=5932,["minimum_chaos_damage_to_return_to_melee_attacker"]=1488,["minimum_cold_damage_to_return_to_melee_attacker"]=1486,["minimum_endurance_charges_at_devotion_threshold"]=5933,["minimum_endurance_charges_while_on_low_life_+"]=5934,["minimum_fire_damage_to_return_to_melee_attacker"]=1485,["minimum_frenzy_charges_at_devotion_threshold"]=5935,["minimum_lightning_damage_to_return_on_block"]=1819,["minimum_lightning_damage_to_return_to_melee_attacker"]=1487,["minimum_physical_damage_to_reflect_to_self_on_attack"]=1483,["minimum_physical_damage_to_return_on_block"]=1818,["minimum_physical_damage_to_return_to_melee_attacker"]=1484,["minimum_power_charges_at_devotion_threshold"]=5936,["minimum_power_charges_while_on_low_life_+"]=5937,["minion_accuracy_rating"]=5938,["minion_accuracy_rating_+%"]=5940,["minion_accuracy_rating_per_10_devotion"]=5939,["minion_additional_physical_damage_reduction_%"]=1554,["minion_additional_spell_block_%"]=2116,["minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently"]=5941,["minion_attack_and_cast_speed_+%"]=5942,["minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"]=5943,["minion_attack_and_cast_speed_+%_per_10_devotion"]=5944,["minion_attack_and_cast_speed_+%_per_active_skeleton"]=2489,["minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=5945,["minion_attack_hits_knockback_chance_%"]=5946,["minion_attack_maximum_added_physical_damage"]=2983,["minion_attack_minimum_added_physical_damage"]=2983,["minion_attack_speed_+%"]=2119,["minion_attack_speed_+%_per_50_dex"]=5947,["minion_attacks_chance_to_blind_on_hit_%"]=5948,["minion_attacks_chance_to_taunt_on_hit_%"]=2649,["minion_base_physical_damage_%_to_convert_to_chaos"]=1247,["minion_base_physical_damage_%_to_convert_to_chaos_per_white_socket_on_item"]=1945,["minion_base_physical_damage_%_to_convert_to_cold"]=1243,["minion_base_physical_damage_%_to_convert_to_cold_per_green_socket_on_item"]=1939,["minion_base_physical_damage_%_to_convert_to_fire"]=1241,["minion_base_physical_damage_%_to_convert_to_fire_per_red_socket_on_item"]=1935,["minion_base_physical_damage_%_to_convert_to_lightning"]=1245,["minion_base_physical_damage_%_to_convert_to_lightning_per_blue_socket_on_item"]=1941,["minion_block_%"]=2115,["minion_cast_speed_+%"]=2120,["minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=2657,["minion_chance_to_deal_double_damage_%"]=5949,["minion_chance_to_deal_double_damage_while_on_full_life_%"]=5950,["minion_chance_to_dodge_%"]=2274,["minion_chance_to_dodge_spells_%"]=5951,["minion_chance_to_freeze_shock_ignite_%"]=5952,["minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=2605,["minion_chance_to_gain_power_charge_on_hit_%"]=5953,["minion_chance_to_gain_unholy_might_on_kill_for_4_seconds_%"]=2603,["minion_chance_to_ignite_%"]=5954,["minion_chance_to_impale_on_attack_hit_%"]=5955,["minion_chaos_resistance_%"]=2125,["minion_cold_damage_resistance_%"]=3396,["minion_critical_strike_chance_+%"]=5956,["minion_damage_+%"]=1267,["minion_damage_+%_if_enemy_hit_recently"]=5958,["minion_damage_+%_if_have_used_a_minion_skill_recently"]=1268,["minion_damage_+%_per_10_dex"]=1270,["minion_damage_+%_per_active_spectre"]=2491,["minion_damage_+%_vs_abyssal_monsters"]=5959,["minion_damage_+%_while_affected_by_a_herald"]=5960,["minion_damage_against_ignited_enemies_+%"]=5957,["minion_damage_increases_and_reductions_also_affects_you"]=3505,["minion_damage_taken_+%"]=5961,["minion_duration_+%_per_active_zombie"]=2490,["minion_elemental_damage_%_to_add_as_chaos"]=5962,["minion_elemental_resistance_%"]=2124,["minion_elemental_resistance_30%"]=5963,["minion_flask_charges_used_+%"]=1473,["minion_global_maximum_added_chaos_damage"]=2984,["minion_global_maximum_added_cold_damage"]=2985,["minion_global_maximum_added_fire_damage"]=2986,["minion_global_maximum_added_lightning_damage"]=2987,["minion_global_maximum_added_physical_damage"]=2988,["minion_global_minimum_added_chaos_damage"]=2984,["minion_global_minimum_added_cold_damage"]=2985,["minion_global_minimum_added_fire_damage"]=2986,["minion_global_minimum_added_lightning_damage"]=2987,["minion_global_minimum_added_physical_damage"]=2988,["minion_grants_rampage_kill_to_parent_on_hitting_unique_enemy_%"]=5964,["minion_larger_aggro_radius"]=6554,["minion_life_leech_from_any_damage_permyriad"]=2122,["minion_life_leech_permyriad_vs_poisoned_enemies"]=5965,["minion_life_regeneration_per_minute_per_active_raging_spirit"]=2492,["minion_life_regeneration_rate_per_minute_%"]=2123,["minion_life_regeneration_rate_per_second"]=5966,["minion_maximum_all_elemental_resistances_%"]=5967,["minion_maximum_energy_shield_+%"]=1076,["minion_maximum_life_%_to_add_as_maximum_energy_shield"]=5968,["minion_maximum_life_+%"]=1074,["minion_maximum_mana_+%"]=1075,["minion_minimum_power_charges"]=5969,["minion_movement_speed_+%"]=1077,["minion_movement_speed_+%_per_50_dex"]=5970,["minion_movement_velocity_+%_for_each_herald_affecting_you"]=5971,["minion_no_extra_bleed_damage_while_moving"]=2405,["minion_physical_damage_%_to_add_as_cold"]=3397,["minion_physical_damage_%_to_add_as_fire"]=5972,["minion_physical_damage_reduction_rating"]=2117,["minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage"]=5974,["minion_raging_spirit_maximum_life_+%"]=5973,["minion_recover_%_maximum_life_on_minion_death"]=5975,["minion_recover_%_of_maximum_life_on_block"]=2278,["minion_recover_X_life_on_block"]=1071,["minion_skill_area_of_effect_+%"]=2240,["minion_skill_gem_level_+"]=947,["minion_skill_mana_cost_+%"]=5976,["minion_spells_chance_to_hinder_on_hit_%"]=5977,["minion_summoned_recently_attack_and_cast_speed_+%"]=5978,["minion_summoned_recently_cannot_be_damaged"]=5979,["minion_summoned_recently_movement_speed_+%"]=5980,["minion_unholy_might_on_kill_duration_ms"]=2129,["minions_%_chance_to_blind_on_hit"]=3364,["minions_cannot_be_blinded"]=3363,["minions_cannot_taunt_enemies"]=5981,["minions_chance_to_intimidate_on_hit_%"]=5982,["minions_chance_to_poison_on_hit_%"]=2388,["minions_gain_your_strength"]=5983,["minions_get_shield_stats_instead_of_you"]=1479,["minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%"]=2551,["minions_have_aura_effect_+%"]=1431,["minions_hits_can_only_kill_ignited_enemies"]=5984,["minions_recover_%_maximum_life_on_killing_poisoned_enemy"]=5985,["minions_recover_%_maximum_life_when_you_focus"]=5986,["minions_use_parents_flasks_on_summon"]=1469,["mirror_arrow_and_mirror_arrow_clone_attack_speed_+%"]=3078,["mirror_arrow_and_mirror_arrow_clone_damage_+%"]=2935,["mirror_arrow_cooldown_speed_+%"]=3096,["mod_granted_passive_hash"]=5987,["mod_granted_passive_hash_2"]=5988,["modifiers_to_claw_attack_speed_also_affect_unarmed_attack_speed"]=2780,["modifiers_to_claw_critical_strike_chance_also_affect_unarmed_critical_strike_chance"]=2781,["modifiers_to_claw_damage_also_affect_unarmed_damage"]=2779,["modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity"]=2803,["modifiers_to_minion_cast_speed_also_affect_you"]=2966,["modifiers_to_minion_damage_also_affect_you"]=2964,["modifiers_to_minion_life_regeneration_also_affect_you"]=2967,["modifiers_to_minion_movement_speed_also_affect_you"]=2968,["modifiers_to_minion_resistances_also_affect_you"]=2969,["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=5989,["molten_shell_buff_effect_+%"]=3236,["molten_shell_damage_+%"]=2923,["molten_shell_duration_+%"]=5990,["molten_strike_damage_+%"]=2857,["molten_strike_num_of_additional_projectiles"]=3158,["molten_strike_radius_+%"]=3025,["monster_base_block_%"]=529,["monster_dropped_item_quantity_+%"]=11,["monster_dropped_item_rarity_+%"]=10,["monster_life_+%_final_from_map"]=915,["monster_life_+%_final_from_rarity"]=914,["monster_slain_experience_+%"]=9,["mortar_barrage_mine_damage_+%"]=5991,["mortar_barrage_mine_num_projectiles"]=5992,["mortar_barrage_mine_throwing_speed_+%"]=5994,["mortar_barrage_mine_throwing_speed_halved_+%"]=5993,["movement_attack_skills_attack_speed_+%"]=5995,["movement_skills_cooldown_speed_+%"]=5996,["movement_skills_cooldown_speed_+%_while_affected_by_haste"]=5997,["movement_skills_cost_no_mana"]=2688,["movement_skills_deal_no_physical_damage"]=5998,["movement_skills_mana_cost_+%"]=3389,["movement_speed_+%_during_flask_effect"]=2400,["movement_speed_+%_for_4_seconds_on_block"]=2542,["movement_speed_+%_if_crit_recently"]=6001,["movement_speed_+%_if_enemy_hit_recently"]=6002,["movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently"]=6003,["movement_speed_+%_if_enemy_killed_recently"]=3470,["movement_speed_+%_if_have_not_taken_damage_recently"]=6004,["movement_speed_+%_if_have_used_a_vaal_skill_recently"]=6005,["movement_speed_+%_if_pierced_recently"]=3414,["movement_speed_+%_if_placed_trap_or_mine_recently"]=5999,["movement_speed_+%_if_used_a_warcry_recently"]=3385,["movement_speed_+%_on_throwing_trap"]=1989,["movement_speed_+%_per_chest_opened_recently"]=6006,["movement_speed_+%_per_endurance_charge"]=6007,["movement_speed_+%_per_nearby_enemy"]=6008,["movement_speed_+%_per_power_charge"]=6009,["movement_speed_+%_while_affected_by_grace"]=6010,["movement_speed_+%_while_bleeding"]=6011,["movement_speed_+%_while_fortified"]=2543,["movement_speed_+%_while_holding_shield"]=6012,["movement_speed_+%_while_not_affected_by_status_ailments"]=2533,["movement_speed_+%_while_not_using_flask"]=6013,["movement_speed_+%_while_on_burning_chilled_shocked_ground"]=6014,["movement_speed_+%_while_on_burning_ground"]=6015,["movement_speed_+%_while_you_have_cats_stealth"]=6016,["movement_speed_+%_while_you_have_energy_shield"]=6017,["movement_speed_+%_while_you_have_infusion"]=6018,["movement_speed_bonus_when_throwing_trap_ms"]=1989,["movement_speed_cannot_be_reduced_below_base"]=2409,["movement_speed_is_%_of_base"]=6000,["movement_velocity_+%_on_full_energy_shield"]=2184,["movement_velocity_+%_per_frenzy_charge"]=1108,["movement_velocity_+%_per_shock"]=2021,["movement_velocity_+%_per_totem"]=6019,["movement_velocity_+%_when_on_full_life"]=1106,["movement_velocity_+%_when_on_low_life"]=1105,["movement_velocity_+%_when_on_shocked_ground"]=1432,["movement_velocity_+%_while_at_maximum_power_charges"]=6020,["movement_velocity_+%_while_cursed"]=1850,["movement_velocity_+%_while_ignited"]=2020,["movement_velocity_+%_while_phasing"]=1835,["movement_velocity_+1%_per_X_evasion_rating"]=1878,["movement_velocity_while_not_hit_+%"]=2438,["nearby_enemies_all_exposure_%_while_phasing"]=6021,["nearby_enemies_chilled_on_block"]=3480,["nearby_traps_within_x_units_also_trigger_on_triggering_trap"]=2697,["necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse"]=6022,["necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse"]=6023,["necromancer_defensive_notable_minion_maximum_life_+%_final"]=6024,["necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse"]=6025,["necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse"]=6026,["never_block"]=2481,["never_freeze"]=1793,["never_freeze_or_chill"]=1794,["never_ignite"]=1792,["never_shock"]=1795,["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=2356,["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=2355,["newpunishment_applied_buff_duration_ms"]=1089,["newpunishment_attack_speed_+%"]=785,["newpunishment_melee_damage_+%_final"]=1272,["newpunishment_melee_physical_damage_+%_final"]=1271,["no_critical_strike_multiplier"]=1881,["no_energy_shield"]=1454,["no_energy_shield_recharge_or_regeneration"]=1876,["no_energy_shield_recovery"]=2333,["no_extra_bleed_damage_while_moving"]=2406,["no_extra_bleed_damage_while_target_is_moving"]=6027,["no_life_regeneration"]=1551,["no_mana"]=1467,["no_mana_regeneration"]=1552,["no_maximum_power_charges"]=2232,["no_physical_damage_reduction_rating"]=1453,["non_chaos_damage_%_to_add_as_chaos_damage_per_siphoning_charge"]=3533,["non_chaos_damage_to_add_as_chaos_damage_%"]=6028,["non_chilled_enemies_you_bleed_are_chilled"]=6029,["non_chilled_enemies_you_poison_are_chilled"]=6030,["non_critical_damage_multiplier_+%"]=1929,["non_critical_strikes_deal_no_damage"]=6031,["non_critical_strikes_penetrate_elemental_resistances_%"]=2771,["non_curse_aura_effect_+%"]=2775,["non_curse_aura_effect_+%_per_10_devotion"]=6032,["non_curse_aura_effect_+%_vs_enemies"]=6033,["non_damaging_ailment_effect_+%"]=6034,["non_damaging_ailment_effect_+%_per_10_devotion"]=6035,["non_damaging_ailment_effect_+%_per_equipped_elder_item"]=3527,["non_damaging_ailments_as_though_damage_+%_final"]=6036,["non_instant_mana_recovery_from_flasks_also_recovers_life"]=3538,["non_piercing_projectiles_critical_strike_chance_+%"]=6037,["non_unique_flask_effect_+%"]=1956,["normal_monster_dropped_item_quantity_+%"]=6038,["nova_spells_cast_at_target_location"]=6039,["num_of_additional_chains_at_max_frenzy_charges"]=1124,["number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more"]=6040,["number_of_additional_clones"]=2303,["number_of_additional_curses_allowed"]=1456,["number_of_additional_curses_allowed_on_self"]=1457,["number_of_additional_curses_allowed_while_at_maximum_power_charges"]=6041,["number_of_additional_ignites_allowed"]=6042,["number_of_additional_mines_to_place"]=2763,["number_of_additional_mines_to_place_with_at_least_500_dex"]=6043,["number_of_additional_mines_to_place_with_at_least_500_int"]=6044,["number_of_additional_projectiles"]=1100,["number_of_additional_projectiles_if_you_have_been_hit_recently"]=6045,["number_of_additional_projectiles_if_you_have_used_movement_skill_recently"]=6046,["number_of_additional_remote_mines_allowed"]=1538,["number_of_additional_siege_ballistae_per_200_dexterity"]=2616,["number_of_additional_totems_allowed"]=1536,["number_of_additional_totems_allowed_on_kill_for_8_seconds"]=2819,["number_of_additional_traps_allowed"]=1537,["number_of_additional_traps_to_throw"]=6047,["number_of_animated_weapons_allowed"]=6048,["number_of_chains"]=1097,["number_of_crab_charges_lost_when_hit"]=3545,["number_of_endurance_charges_to_gain_every_4_seconds_while_stationary"]=6049,["number_of_golems_allowed_with_3_primordial_jewels"]=6050,["number_of_melee_skeletons_to_summon_as_mage_skeletons"]=2463,["number_of_projectiles_+%_final_from_skill"]=6051,["number_of_skeletons_allowed_per_2_old"]=6052,["number_of_zombies_allowed_+%"]=1820,["number_of_zombies_allowed_+1_per_X_strength"]=6053,["object_inherent_attack_skills_damage_+%_final_per_frenzy_charge"]=2304,["occultist_energy_shield_always_recovers_for_4_seconds_after_starting_recovery"]=2959,["occultist_gain_%_of_non_chaos_damage_as_chaos_damage_per_curse_on_target_on_kill_for_4_seconds"]=2970,["occultist_immune_to_stun_while_has_energy_shield"]=2958,["occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds"]=2957,["off_hand_attack_speed_+%_while_wielding_two_weapon_types"]=6054,["off_hand_base_weapon_attack_duration_ms"]=17,["off_hand_maximum_attack_distance"]=21,["off_hand_minimum_attack_distance"]=19,["off_hand_quality"]=13,["off_hand_weapon_type"]=5,["offering_duration_+%"]=6055,["offering_spells_effect_+%"]=3274,["offerings_also_buff_you"]=551,["old_dagger_implicit_critical_strike_chance_+30%"]=817,["old_dagger_implicit_critical_strike_chance_+40%"]=818,["old_dagger_implicit_critical_strike_chance_+50%"]=819,["old_do_not_use_base_life_leech_from_cold_damage_permyriad"]=997,["old_do_not_use_base_life_leech_from_elemental_damage_permyriad"]=1002,["old_do_not_use_base_life_leech_from_fire_damage_permyriad"]=995,["old_do_not_use_base_life_leech_from_lightning_damage_permyriad"]=999,["old_do_not_use_base_life_leech_from_physical_damage_permyriad"]=993,["old_do_not_use_base_mana_leech_from_lightning_damage_permyriad"]=1024,["old_do_not_use_global_mana_leech_from_physical_attack_damage_%_per_blue_socket_on_item"]=1942,["old_do_not_use_life_leech_%_vs_frozen_enemies"]=1006,["old_do_not_use_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"]=1008,["old_do_not_use_life_leech_from_physical_damage_%"]=977,["old_do_not_use_life_leech_from_physical_damage_with_claw_%"]=981,["old_do_not_use_life_leech_from_spell_damage_%"]=990,["old_do_not_use_life_leech_permyriad_on_crit"]=1010,["old_do_not_use_life_leech_permyriad_vs_shocked_enemies"]=1004,["old_do_not_use_local_flask_life_leech_%_while_healing"]=485,["old_do_not_use_local_flask_mana_leech_%_while_healing"]=489,["old_do_not_use_local_life_leech_from_physical_damage_%"]=979,["old_do_not_use_local_mana_leech_from_physical_damage_%"]=1015,["old_do_not_use_local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"]=2130,["old_do_not_use_mana_leech_%_vs_shocked_enemies"]=1028,["old_do_not_use_mana_leech_from_physical_damage_%"]=1013,["old_do_not_use_mana_leech_from_physical_damage_%_per_power_charge"]=1030,["old_do_not_use_mana_leech_from_physical_damage_with_claw_%"]=986,["old_do_not_use_mana_leech_from_spell_damage_%"]=1018,["old_do_not_use_minion_life_leech_from_any_damage_permyriad"]=2121,["old_do_not_use_spell_block_%_from_assumed_block_value"]=539,["old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value"]=540,["on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds"]=6056,["on_casting_banner_recover_%_of_planted_banner_stages"]=6057,["on_planting_banner_you_and_nearby_allies_recover_permyriad_maximum_life_per_stage"]=6058,["on_weapon_global_damage_+%"]=566,["one_handed_attack_speed_+%"]=2541,["one_handed_melee_accuracy_rating_+%"]=791,["one_handed_melee_attack_speed_+%"]=774,["one_handed_melee_cold_damage_+%"]=655,["one_handed_melee_critical_strike_chance_+%"]=834,["one_handed_melee_critical_strike_multiplier_+"]=856,["one_handed_melee_fire_damage_+%"]=654,["one_handed_melee_physical_damage_+%"]=648,["one_handed_melee_weapon_ailment_damage_+%"]=652,["one_handed_melee_weapon_hit_and_ailment_damage_+%"]=649,["one_handed_weapon_ailment_damage_+%"]=653,["one_handed_weapon_hit_and_ailment_damage_+%"]=650,["onslaught_buff_duration_on_culling_strike_ms"]=2244,["onslaught_buff_duration_on_kill_ms"]=1863,["onslaught_buff_duration_on_killing_taunted_enemy_ms"]=1864,["onslaught_duration_+%"]=6059,["onslaught_effect_+%"]=2505,["onslaught_on_crit_duration_ms"]=1882,["onslaught_on_vaal_skill_use_duration_ms"]=2136,["onslaught_time_granted_on_kill_ms"]=2210,["onslaught_time_granted_on_killing_shocked_enemy_ms"]=2211,["orb_of_storms_cast_speed_+%"]=6060,["orb_of_storms_damage_+%"]=2952,["override_maximum_damage_resistance_%"]=6061,["override_off_hand_base_critical_strike_chance"]=812,["override_off_hand_base_critical_strike_chance_to_5%"]=813,["override_weapon_base_critical_strike_chance"]=6062,["pain_attunement_keystone_spell_damage_+%_final"]=1481,["passive_applies_to_minions"]=2288,["pathfinder_poison_damage_+100%_final_chance_during_flask_effect"]=6063,["penetrate_elemental_resistance_per_frenzy_charge_%"]=2212,["perandus_double_number_of_coins_found"]=6064,["permanently_intimidate_enemies_you_hit_on_full_life"]=3462,["permanently_intimidate_enemy_on_block"]=6069,["phase_acrobatics_additional_chance_to_dodge_spells_%"]=1507,["phase_on_vaal_skill_use_duration_ms"]=2137,["phase_run_%_chance_to_not_consume_frenzy_charges"]=3238,["phase_run_skill_effect_duration_+%"]=3328,["phase_through_objects"]=2038,["phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy"]=3449,["phasing_for_4_seconds_on_kill_%"]=2680,["phasing_if_blocked_recently"]=6070,["phasing_on_rampage_threshold_ms"]=2183,["phasing_on_trap_triggered_by_an_enemy_ms"]=3449,["phys_cascade_trap_cooldown_speed_+%"]=6071,["phys_cascade_trap_damage_+%"]=6072,["phys_cascade_trap_duration_+%"]=6073,["phys_cascade_trap_number_of_additional_cascades"]=6074,["physical_attack_damage_+%"]=577,["physical_attack_damage_+%_while_holding_a_shield"]=582,["physical_attack_damage_taken_+"]=1516,["physical_axe_damage_+%"]=666,["physical_bow_damage_+%"]=696,["physical_claw_damage_+%"]=678,["physical_claw_damage_+%_when_on_low_life"]=1816,["physical_dagger_damage_+%"]=684,["physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems"]=3472,["physical_damage_%_added_as_fire_damage_on_kill"]=2418,["physical_damage_%_taken_from_mana_before_life"]=3373,["physical_damage_%_to_add_as_chaos"]=1220,["physical_damage_%_to_add_as_chaos_vs_bleeding_enemies"]=3448,["physical_damage_%_to_add_as_chaos_vs_poisoned_enemies"]=6078,["physical_damage_%_to_add_as_cold"]=1218,["physical_damage_%_to_add_as_fire"]=1217,["physical_damage_%_to_add_as_fire_damage_while_affected_by_anger"]=6079,["physical_damage_%_to_add_as_fire_if_have_crit_recently"]=6080,["physical_damage_%_to_add_as_fire_per_rage"]=6081,["physical_damage_%_to_add_as_lightning"]=1219,["physical_damage_%_to_add_as_lightning_damage_while_affected_by_wrath"]=6082,["physical_damage_%_to_add_as_random_element"]=2150,["physical_damage_%_to_convert_to_cold_at_devotion_threshold"]=6083,["physical_damage_%_to_convert_to_fire_at_devotion_threshold"]=6084,["physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire"]=6607,["physical_damage_%_to_convert_to_lightning_at_devotion_threshold"]=6085,["physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges"]=2687,["physical_damage_+%"]=603,["physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit"]=3438,["physical_damage_+%_per_explicit_map_mod_affecting_area"]=6075,["physical_damage_+%_vs_ignited_enemies"]=6086,["physical_damage_+%_vs_poisoned_enemies"]=2174,["physical_damage_+%_while_affected_by_herald_of_purity"]=6087,["physical_damage_+%_while_at_maximum_frenzy_charges_final"]=3441,["physical_damage_+%_while_frozen"]=2566,["physical_damage_+%_while_life_leeching"]=591,["physical_damage_+%_while_you_have_resolute_technique"]=6605,["physical_damage_+%_with_axes_swords"]=6088,["physical_damage_+%_with_unholy_might"]=6089,["physical_damage_as_fire_damage_vs_ignited_enemies_%"]=1465,["physical_damage_can_chill"]=2092,["physical_damage_can_freeze"]=2093,["physical_damage_can_shock"]=2094,["physical_damage_cannot_poison"]=2103,["physical_damage_from_hits_%_taken_as_random_element"]=6076,["physical_damage_on_block_+%"]=2433,["physical_damage_over_time_+%"]=585,["physical_damage_over_time_per_10_dexterity_+%"]=3012,["physical_damage_over_time_taken_+%_while_moving"]=6077,["physical_damage_per_endurance_charge_+%"]=1424,["physical_damage_reduction_%_at_devotion_threshold"]=6090,["physical_damage_reduction_%_if_only_one_enemy_nearby"]=6098,["physical_damage_reduction_%_per_endurance_charge"]=1555,["physical_damage_reduction_%_per_hit_you_have_taken_recently"]=6092,["physical_damage_reduction_%_per_nearby_enemy"]=6100,["physical_damage_reduction_%_while_affected_by_herald_of_purity"]=6094,["physical_damage_reduction_and_minion_physical_damage_reduction_%"]=3273,["physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie"]=2671,["physical_damage_reduction_percent_per_frenzy_charge"]=6091,["physical_damage_reduction_percent_per_power_charge"]=6093,["physical_damage_reduction_rating_%_while_not_moving"]=3509,["physical_damage_reduction_rating_+%"]=884,["physical_damage_reduction_rating_+%_against_projectiles"]=1702,["physical_damage_reduction_rating_+%_per_endurance_charge"]=6099,["physical_damage_reduction_rating_+%_while_chilled_or_frozen"]=2793,["physical_damage_reduction_rating_+%_while_fortify_is_active"]=887,["physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked"]=2035,["physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand"]=1994,["physical_damage_reduction_rating_during_soul_gain_prevention"]=6095,["physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently"]=6096,["physical_damage_reduction_rating_per_5_evasion_on_shield"]=3570,["physical_damage_reduction_rating_per_endurance_charge"]=6097,["physical_damage_reduction_rating_per_level"]=1974,["physical_damage_reduction_rating_while_frozen"]=2018,["physical_damage_taken_%_as_chaos"]=1691,["physical_damage_taken_%_as_cold"]=1688,["physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements"]=6101,["physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice"]=6102,["physical_damage_taken_%_as_fire"]=1687,["physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements"]=6103,["physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire"]=6104,["physical_damage_taken_%_as_lightning"]=1689,["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements"]=6105,["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning"]=6106,["physical_damage_taken_+"]=1517,["physical_damage_taken_+%"]=1523,["physical_damage_taken_+%_while_at_maximum_endurance_charges"]=3442,["physical_damage_taken_+%_while_frozen"]=2019,["physical_damage_taken_+%_while_moving"]=3511,["physical_damage_taken_+_per_level"]=1518,["physical_damage_taken_+_vs_beasts"]=2143,["physical_damage_taken_on_minion_death"]=2243,["physical_damage_taken_per_minute_per_siphoning_charge_if_have_used_a_skill_recently"]=3536,["physical_damage_taken_when_hit_by_attack"]=1499,["physical_damage_to_return_to_melee_attacker"]=1489,["physical_damage_to_return_when_hit"]=1494,["physical_damage_while_dual_wielding_+%"]=643,["physical_damage_with_attack_skills_+%"]=6107,["physical_damage_with_spell_skills_+%"]=6108,["physical_dot_multiplier_+"]=617,["physical_dot_multiplier_+_while_wielding_axes_swords"]=6109,["physical_mace_damage_+%"]=690,["physical_ranged_attack_damage_taken_+"]=1528,["physical_reflect_damage_taken_+%"]=1924,["physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%"]=6110,["physical_skill_gem_level_+"]=6111,["physical_spell_skill_gem_level_+"]=942,["physical_staff_damage_+%"]=670,["physical_sword_damage_+%"]=701,["physical_wand_damage_+%"]=708,["physical_weapon_damage_+%_per_10_str"]=1777,["piercing_attacks_cause_bleeding"]=2640,["piercing_projectiles_critical_strike_chance_+%"]=6112,["placing_traps_cooldown_recovery_+%"]=2676,["player_far_shot"]=6588,["player_gain_rampage_stacks"]=6558,["poachers_mark_curse_effect_+%"]=3218,["poachers_mark_duration_+%"]=3119,["poison_cursed_enemies_on_hit"]=3415,["poison_damage_+%_per_frenzy_charge"]=6113,["poison_damage_+%_per_power_charge"]=6114,["poison_damage_+%_vs_bleeding_enemies"]=6115,["poison_damage_+%_with_over_300_dexterity"]=6116,["poison_dot_multiplier_+"]=630,["poison_dot_multiplier_+_per_frenzy_charge"]=6117,["poison_dot_multiplier_+_vs_bleeding_enemies"]=6118,["poison_dot_multiplier_+_with_spells"]=6119,["poison_duration_+%_per_poison_applied_recently"]=6120,["poison_duration_+%_per_power_charge"]=6121,["poison_duration_+%_with_over_150_intelligence"]=6122,["poison_from_critical_strikes_damage_+%_final"]=3454,["poison_on_critical_strike"]=6123,["poison_on_critical_strike_with_bow"]=810,["poison_on_critical_strike_with_dagger"]=807,["poison_on_hit_during_flask_effect_%"]=2517,["poison_on_melee_critical_strike_%"]=1990,["poison_on_melee_hit"]=3467,["poison_on_non_poisoned_enemies_damage_+%"]=6124,["poison_reflected_to_self"]=6125,["poison_time_passed_+%"]=6126,["posion_damage_over_time_multiplier_+%_while_wielding_claws_daggers"]=6127,["power_charge_duration_+%"]=1427,["power_charge_on_block_%_chance"]=3479,["power_charge_on_kill_percent_chance_while_holding_shield"]=6128,["power_charge_on_non_critical_strike_%_chance_with_claws_daggers"]=6129,["power_charge_on_spell_block_%_chance"]=6130,["power_frenzy_or_endurance_charge_on_kill_%"]=2822,["power_only_conduit"]=1543,["power_siphon_%_chance_to_gain_power_charge_on_kill"]=3184,["power_siphon_attack_speed_+%"]=3075,["power_siphon_damage_+%"]=2883,["power_siphon_number_of_additional_projectiles"]=6131,["precision_mana_reservation_+%"]=6133,["precision_mana_reservation_-50%_final"]=6132,["precision_reserves_no_mana"]=6134,["prevent_monster_heal"]=1193,["prevent_monster_heal_duration_+%"]=1194,["prevent_projectile_chaining_%_chance"]=6135,["pride_aura_effect_+%"]=6136,["pride_chance_to_deal_double_damage_%"]=6137,["pride_chance_to_impale_with_attacks_%"]=6138,["pride_intimidate_enemy_for_4_seconds_on_hit"]=6139,["pride_mana_reservation_+%"]=6140,["pride_physical_damage_+%"]=6141,["pride_reserves_no_mana"]=6142,["pride_your_impaled_debuff_lasts_+_additional_hits"]=6143,["primordial_jewel_count"]=6542,["projectile_attack_damage_+%"]=1290,["projectile_attack_damage_+%_during_flask_effect"]=6144,["projectile_attack_damage_+%_per_200_accuracy"]=3506,["projectile_attack_damage_+%_with_at_least_200_dex"]=3556,["projectile_attack_damage_+%_with_claw_or_dagger"]=6145,["projectile_attack_skill_critical_strike_chance_+%"]=3513,["projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion"]=3514,["projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion"]=3515,["projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion"]=3516,["projectile_base_number_of_targets_to_pierce"]=1098,["projectile_damage_+%"]=1289,["projectile_damage_+%_max_as_distance_travelled_increases"]=3291,["projectile_damage_+%_per_chain"]=6146,["projectile_damage_+%_per_pierced_enemy"]=6147,["projectile_damage_+%_per_power_charge"]=1861,["projectile_damage_+%_per_remaining_chain"]=6148,["projectile_damage_+%_vs_nearby_enemies"]=6149,["projectile_damage_modifiers_apply_to_skill_dot"]=1895,["projectile_damage_taken_+%"]=1961,["projectile_freeze_chance_%"]=1918,["projectile_ignite_chance_%"]=1917,["projectile_non_chaos_damage_to_add_as_chaos_damage_%_per_chain"]=6150,["projectile_shock_chance_%"]=1919,["projectile_speed_+%_per_frenzy_charge"]=1860,["projectile_weakness_curse_effect_+%"]=3219,["projectile_weakness_duration_+%"]=3120,["projectiles_always_pierce_you"]=6151,["projectiles_fork"]=2789,["projectiles_from_spells_cannot_pierce"]=6152,["projectiles_pierce_1_additional_target_per_10_stat_value"]=6153,["projectiles_pierce_1_additional_target_per_15_stat_value"]=6154,["projectiles_pierce_all_nearby_targets"]=6155,["projectiles_pierce_while_phasing"]=6156,["projectiles_pierce_x_additional_targets_while_you_have_phasing"]=6157,["projectiles_return"]=2040,["projectiles_return_if_no_hit_object"]=2040,["puncture_damage_+%"]=2872,["puncture_duration_+%"]=3111,["puncture_maim_on_hit_%_chance"]=3178,["punishment_curse_effect_+%"]=3227,["punishment_duration_+%"]=3124,["puppet_master_base_duration_ms"]=6158,["purge_additional_enemy_resistance_%"]=6159,["purge_damage_+%"]=6160,["purge_duration_+%"]=6161,["purity_of_elements_aura_effect_+%"]=2584,["purity_of_elements_mana_reservation_+%"]=3250,["purity_of_elements_reserves_no_mana"]=6162,["purity_of_fire_aura_effect_+%"]=2585,["purity_of_fire_mana_reservation_+%"]=3251,["purity_of_fire_reserves_no_mana"]=6163,["purity_of_ice_aura_effect_+%"]=2586,["purity_of_ice_mana_reservation_+%"]=3247,["purity_of_ice_reserves_no_mana"]=6164,["purity_of_lightning_aura_effect_+%"]=2587,["purity_of_lightning_mana_reservation_+%"]=3252,["purity_of_lightning_reserves_no_mana"]=6165,["quantity_of_items_dropped_by_maimed_enemies_+%"]=3377,["quick_dodge_added_cooldown_count"]=6166,["quick_dodge_travel_distance_+%"]=6167,["quick_guard_additional_physical_damage_reduction_%"]=6168,["quiver_projectiles_pierce_1_additional_target"]=6169,["quiver_projectiles_pierce_2_additional_targets"]=6170,["quiver_projectiles_pierce_3_additional_targets"]=6171,["rage_effects_doubled"]=6173,["raging_spirit_damage_+%"]=2866,["raging_spirits_always_ignite"]=6179,["raging_spirits_refresh_duration_when_they_kill_ignited_enemy"]=6180,["raider_nearby_enemies_accuracy_rating_+%_final_while_phasing"]=6181,["raider_passive_evade_melee_attacks_while_onslaughted_+%_final"]=2511,["raider_passive_evade_projectile_attacks_while_onslaughted_+%_final"]=2512,["rain_of_arrows_additional_sequence_chance_%"]=6182,["rain_of_arrows_attack_speed_+%"]=3069,["rain_of_arrows_damage_+%"]=2865,["rain_of_arrows_radius_+%"]=3027,["rain_of_arrows_rain_of_arrows_additional_sequence_chance_%"]=6183,["raise_spectre_gem_level_+"]=949,["raise_spectre_mana_cost_+%"]=6184,["raise_zombie_does_not_use_corpses"]=6185,["raise_zombie_gem_level_+"]=948,["raised_zombie_%_chance_to_taunt"]=6186,["raised_zombies_are_usable_as_corpses_when_alive"]=6187,["rallying_cry_buff_effect_+%"]=3324,["rallying_cry_damage_taken_goes_to_mana_%"]=2478,["rallying_cry_duration_+%"]=3132,["random_curse_on_hit_%"]=1747,["random_curse_on_hit_%_against_uncursed_enemies"]=6188,["randomly_cursed_when_totems_die_curse_level"]=1783,["ranged_weapon_physical_damage_+%"]=1291,["rare_or_unique_monster_dropped_item_rarity_+%"]=6189,["rarity_of_items_dropped_by_maimed_enemies_+%"]=3378,["reave_attack_speed_per_reave_stack_+%"]=3175,["reave_damage_+%"]=2859,["reave_radius_+%"]=3024,["recall_sigil_target_search_range_+%"]=6190,["receive_bleeding_chance_%_when_hit_by_attack"]=6191,["recharge_flasks_on_crit"]=2180,["recharge_flasks_on_crit_while_affected_by_precision"]=6192,["reckoning_cooldown_speed_+%"]=3092,["reckoning_damage_+%"]=2924,["recover_%_life_when_gaining_adrenaline"]=6196,["recover_%_maximum_life_on_enemy_ignited"]=3498,["recover_%_maximum_life_on_kill"]=1060,["recover_%_maximum_life_on_mana_flask_use"]=3537,["recover_%_maximum_life_on_rampage_threshold"]=2169,["recover_%_maximum_life_when_corpse_destroyed_or_consumed"]=2272,["recover_%_maximum_mana_on_kill"]=1062,["recover_%_maximum_mana_on_killing_cursed_enemy"]=1063,["recover_%_maximum_mana_when_enemy_frozen_permyriad"]=6197,["recover_%_maximum_mana_when_enemy_shocked"]=3374,["recover_%_of_maximum_life_on_block"]=2277,["recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity"]=6193,["recover_10%_of_maximum_mana_on_skill_use_%"]=2690,["recover_X_life_on_block"]=1070,["recover_X_life_on_enemy_ignited"]=6194,["recover_X_mana_on_killing_frozen_enemy"]=6195,["recover_energy_shield_%_on_kill"]=1061,["recover_permyriad_maximum_life_per_poison_on_enemy_on_kill"]=6198,["reduce_enemy_chaos_resistance_with_weapons_%"]=2799,["reduce_enemy_cold_resistance_%_while_affected_by_hatred"]=6199,["reduce_enemy_cold_resistance_with_weapons_%"]=2796,["reduce_enemy_dodge_%"]=1192,["reduce_enemy_elemental_resistance_%"]=2199,["reduce_enemy_elemental_resistance_with_weapons_%"]=2807,["reduce_enemy_fire_resistance_%_vs_blinded_enemies"]=6200,["reduce_enemy_fire_resistance_%_while_affected_by_anger"]=6201,["reduce_enemy_fire_resistance_with_weapons_%"]=2797,["reduce_enemy_lightning_resistance_%_while_affected_by_wrath"]=6202,["reduce_enemy_lightning_resistance_with_weapons_%"]=2798,["reflect_chill_and_freeze_%_chance"]=6203,["reflect_curses"]=1714,["reflect_damage_taken_+%"]=3478,["reflect_damage_taken_and_minion_reflect_damage_taken_+%"]=6204,["reflect_shocks"]=6205,["reflect_shocks_to_enemies_in_radius"]=6206,["reflected_physical_damage_taken_+%_while_affected_by_determination"]=6207,["regenerate_%_armour_as_life_over_1_second_on_block"]=2049,["regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse"]=6208,["regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse"]=6209,["regenerate_X_life_over_1_second_on_cast"]=2048,["regenerate_energy_shield_instead_of_life"]=6580,["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=3210,["rejuvenation_totem_aura_effect_+%"]=3211,["remove_%_of_mana_on_hit"]=6217,["remove_ailments_and_burning_on_gaining_adrenaline"]=6210,["remove_bleed_on_flask_use"]=2610,["remove_bleed_on_life_flask_use"]=6212,["remove_bleeding_on_warcry"]=6213,["remove_chill_and_freeze_on_flask_use"]=6214,["remove_curse_on_mana_flask_use"]=6215,["remove_ignite_and_burning_on_flask_use"]=6216,["remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder"]=6218,["remove_random_elemental_ailment_on_mana_flask_use"]=6219,["remove_shock_on_flask_use"]=6220,["resist_all_%_for_enemies_you_inflict_spiders_web_upon"]=6221,["resist_all_elements_%_per_10_levels"]=1976,["resist_all_elements_%_per_endurance_charge"]=952,["resist_all_elements_%_with_200_or_more_strength"]=3555,["resist_all_elements_+%_while_holding_shield"]=953,["resolute_technique"]=6589,["restore_energy_shield_and_mana_when_you_focus_%"]=6222,["restore_life_and_mana_on_warcry_%"]=2413,["returning_projectiles_always_pierce"]=6223,["righteous_fire_damage_+%"]=2889,["righteous_fire_radius_+%"]=3035,["righteous_fire_spell_damage_+%"]=3323,["riposte_cooldown_speed_+%"]=3097,["riposte_damage_+%"]=2936,["rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown"]=6224,["rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown"]=6225,running=2,["sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%"]=6226,["sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%"]=6227,["sacrifice_%_life_on_spell_skill"]=6228,["sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast"]=6229,["sanctify_area_of_effect_+%_when_targeting_consecrated_ground"]=6230,["sanctify_consecrated_ground_enemy_damage_taken_+%"]=6231,["sanctify_damage_+%"]=6232,["scion_helmet_skill_maximum_totems_+"]=326,["scourge_arrow_damage_+%"]=6233,["searing_bond_damage_+%"]=2884,["searing_bond_totem_placement_speed_+%"]=3186,["searing_totem_elemental_resistance_+%"]=3329,["secondary_maximum_base_chaos_damage"]=757,["secondary_maximum_base_cold_damage"]=755,["secondary_maximum_base_fire_damage"]=754,["secondary_maximum_base_lightning_damage"]=756,["secondary_maximum_base_physical_damage"]=753,["secondary_minimum_base_chaos_damage"]=757,["secondary_minimum_base_cold_damage"]=755,["secondary_minimum_base_fire_damage"]=754,["secondary_minimum_base_lightning_damage"]=756,["secondary_minimum_base_physical_damage"]=753,["self_chill_duration_-%"]=1162,["self_critical_strike_multiplier_+%_while_ignited"]=6234,["self_critical_strike_multiplier_-%_per_endurance_charge"]=868,["self_curse_duration_+%"]=1459,["self_curse_duration_+%_per_10_devotion"]=6235,["self_cursed_with_level_x_vulnerability"]=2336,["self_elemental_status_duration_-%"]=1161,["self_elemental_status_duration_-%_per_10_devotion"]=6236,["self_freeze_duration_-%"]=1164,["self_ignite_duration_-%"]=1165,["self_offering_effect_+%"]=552,["self_physical_damage_on_movement_skill_use"]=6237,["self_physical_damage_on_skill_use_%_mana_cost"]=1508,["self_shock_duration_-%"]=1163,["self_take_no_extra_damage_from_critical_strikes"]=3491,["self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently"]=6238,["self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy"]=6239,["self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=6240,["self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive"]=6241,["sentinel_of_purity_damage_+%"]=6242,["serpent_strike_maximum_snakes"]=6243,["share_endurance_charges_with_party_within_distance"]=1440,["share_frenzy_charges_with_party_within_distance"]=1441,["share_power_charges_with_party_within_distance"]=1442,["shatter_on_kill_vs_bleeding_enemies"]=6244,["shatter_on_kill_vs_poisoned_enemies"]=6245,["shattering_steel_damage_+%"]=6246,["shattering_steel_fortify_on_hit_close_range"]=6247,["shattering_steel_number_of_additional_projectiles"]=6248,["shield_armour_+%"]=1287,["shield_attack_speed_+%"]=783,["shield_block_%"]=530,["shield_charge_attack_speed_+%"]=3071,["shield_charge_damage_+%"]=2873,["shield_charge_damage_per_target_hit_+%"]=3299,["shield_defences_+%_per_10_devotion"]=6249,["shield_evasion_rating_+%"]=1285,["shield_maximum_energy_shield_+%"]=1266,["shield_physical_damage_reduction_rating_+%"]=1286,["shield_spell_block_%"]=531,["shock_X_nearby_enemies_for_2_s_on_killing_shocked_enemy"]=2032,["shock_attackers_for_4_seconds_on_block_%_chance"]=6250,["shock_duration_+%"]=1151,["shock_effect_+%"]=6251,["shock_effect_+%_with_critical_strikes"]=6252,["shock_maximum_magnitude_is_60%"]=6253,["shock_minimum_damage_taken_increase_%"]=6254,["shock_nearby_enemies_for_x_ms_when_you_focus"]=6255,["shock_nova_damage_+%"]=2899,["shock_nova_radius_+%"]=3048,["shock_nova_ring_damage_+%"]=3202,["shock_prevention_ms_when_shocked"]=2109,["shocked_effect_on_self_+%"]=6256,["shocked_enemies_explode_for_%_life_as_lightning_damage"]=6257,["shocked_for_4_seconds_on_reaching_maximum_power_charges"]=2812,["shocked_ground_base_magnitude_override"]=6258,["shocked_ground_effect_on_self_+%"]=1437,["shocked_ground_when_hit_%"]=1809,["shocks_enemies_that_hit_actor_while_actor_is_casting"]=1198,["shocks_reflected_to_self"]=1991,["shockwave_slam_attack_speed_+%"]=3077,["shockwave_slam_damage_+%"]=2955,["shockwave_slam_explosion_damage_+%_final"]=2774,["shockwave_slam_radius_+%"]=3061,["shockwave_totem_cast_speed_+%"]=3214,["shockwave_totem_damage_+%"]=2900,["shockwave_totem_radius_+%"]=3062,["should_use_alternate_fortify"]=1547,["shrapnel_ballista_num_additional_arrows"]=6259,["shrapnel_ballista_num_pierce"]=6260,["shrapnel_ballista_projectile_speed_+%"]=6261,["shrapnel_shot_damage_+%"]=2940,["shrapnel_shot_physical_damage_%_to_add_as_lightning_damage"]=3239,["shrapnel_shot_radius_+%"]=3050,["shrapnel_trap_area_of_effect_+%"]=6263,["shrapnel_trap_damage_+%"]=6264,["shrapnel_trap_number_of_additional_secondary_explosions"]=6265,["shrine_buff_effect_on_self_+%"]=2027,["shrine_effect_duration_+%"]=2028,["siege_ballista_attack_speed_+%"]=3076,["siege_ballista_damage_+%"]=2953,["siege_ballista_totem_placement_speed_+%"]=3216,["sigil_attached_target_damage_+%"]=6266,["sigil_attached_target_damage_taken_+%"]=6267,["sigil_critical_strike_chance_+%"]=6268,["sigil_critical_strike_multiplier_+"]=6269,["sigil_damage_+%"]=6270,["sigil_damage_+%_per_10_devotion"]=6271,["sigil_duration_+%"]=6272,["sigil_recall_cooldown_speed_+%"]=6273,["sigil_repeat_frequency_+%"]=6274,["sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently"]=6275,["sigil_target_search_range_+%"]=6276,["silver_footprints_from_item"]=6618,["siphon_duration_+%"]=3135,["siphon_life_leech_from_damage_permyriad"]=3205,["skeletal_chains_area_of_effect_+%"]=6277,["skeletal_chains_cast_speed_+%"]=6278,["skeletal_chains_damage_+%"]=2949,["skeleton_attack_speed_+%"]=6279,["skeleton_cast_speed_+%"]=6280,["skeleton_duration_+%"]=1087,["skeleton_movement_speed_+%"]=6281,["skeletons_damage_+%"]=2874,["skill_area_of_effect_+%_if_enemy_killed_recently"]=3426,["skill_area_of_effect_+%_per_active_mine"]=2682,["skill_area_of_effect_+%_per_power_charge"]=1415,["skill_area_of_effect_+%_while_no_frenzy_charges"]=1346,["skill_area_of_effect_when_unarmed_+%"]=2271,["skill_can_own_mirage_archers"]=6282,["skill_cold_damage_%_to_convert_to_chaos"]=1264,["skill_cold_damage_%_to_convert_to_fire"]=1263,["skill_cooldown_-%"]=1184,["skill_effect_duration_+%"]=1182,["skill_effect_duration_+%_if_killed_maimed_enemy_recently"]=3428,["skill_effect_duration_+%_per_10_strength"]=1307,["skill_effect_duration_+%_while_affected_by_malevolence"]=6283,["skill_effect_duration_+%_with_bow_skills"]=6284,["skill_effect_duration_+%_with_non_curse_aura_skills"]=6285,["skill_effect_duration_per_100_int"]=2305,["skill_fire_damage_%_to_convert_to_chaos"]=1265,["skill_internal_monster_responsiveness_+%"]=1214,["skill_lightning_damage_%_to_convert_to_chaos"]=1262,["skill_lightning_damage_%_to_convert_to_cold"]=1261,["skill_lightning_damage_%_to_convert_to_fire"]=1260,["skill_mana_cost_+"]=1178,["skill_mana_cost_+_for_each_equipped_corrupted_item"]=3528,["skill_mana_cost_+_while_affected_by_clarity"]=6286,["skill_mana_cost_+_with_channelling_skills"]=6287,["skill_mana_cost_+_with_non_channelling_skills"]=6289,["skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity"]=6288,["skill_max_unleash_seals"]=6543,["skill_physical_damage_%_to_convert_to_chaos"]=1259,["skill_physical_damage_%_to_convert_to_cold"]=1257,["skill_physical_damage_%_to_convert_to_fire"]=1256,["skill_physical_damage_%_to_convert_to_lightning"]=1258,["skill_range_+%"]=1216,["skill_repeat_count"]=1180,["skill_visual_scale_+%"]=15,["skills_cost_no_mana_while_focused"]=6290,["slam_ancestor_totem_damage_+%"]=3351,["slam_ancestor_totem_grant_owner_melee_damage_+%"]=3017,["slam_ancestor_totem_radius_+%"]=3354,["slash_ancestor_totem_damage_+%"]=3352,["slash_ancestor_totem_elemental_resistance_%"]=2005,["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=3016,["slash_ancestor_totem_radius_+%"]=3353,["slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%"]=6291,["slayer_ascendancy_melee_splash_damage_+%_final_for_splash"]=553,["slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100"]=6292,["slayer_damage_+%_final_against_unique_enemies"]=6293,["slayer_damage_+%_final_from_distance"]=6294,["slither_elusive_effect_+%"]=6295,["slither_wither_stacks"]=6296,["smite_aura_effect_+%"]=6297,["smite_chance_for_lighting_to_strike_extra_target_%"]=6298,["smite_damage_+%"]=6299,["smoke_mine_base_movement_velocity_+%"]=3319,["smoke_mine_duration_+%"]=3116,["snapping_adder_%_chance_to_retain_projectile_on_release"]=6301,["snapping_adder_damage_+%"]=6300,["snapping_adder_withered_on_hit_for_2_seconds_%_chance"]=6302,["soul_eater_on_rare_kill_ms"]=2643,["soulrend_applies_hinder_movement_speed_+%"]=6303,["soulrend_damage_+%"]=6304,["soulrend_number_of_additional_projectiles"]=6305,["spark_damage_+%"]=2860,["spark_num_of_additional_projectiles"]=3159,["spark_number_of_additional_projectiles"]=6306,["spark_projectile_speed_+%"]=3105,["spark_projectiles_nova"]=6307,["spark_skill_effect_duration_+%"]=6308,["spectral_shield_throw_additional_chains"]=6309,["spectral_shield_throw_damage_+%"]=6310,["spectral_shield_throw_fire_shards_on_chain"]=6311,["spectral_shield_throw_num_of_additional_projectiles"]=6312,["spectral_shield_throw_projectile_speed_+%"]=6313,["spectral_shield_throw_secondary_projectiles_pierce"]=6314,["spectral_shield_throw_shard_projectiles_+%_final"]=6315,["spectral_throw_damage_+%"]=2861,["spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%"]=2447,["spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%"]=6316,["spectral_throw_projectile_deceleration_+%"]=3176,["spectral_throw_projectile_speed_+%"]=3106,["spectre_attack_and_cast_speed_+%"]=3081,["spectre_damage_+%"]=2672,["spectre_elemental_resistances_%"]=3194,["spectre_maximum_life_+"]=6317,["spectre_zombie_skeleton_critical_strike_multiplier_+"]=6318,["spectres_critical_strike_chance_+%"]=6319,["spectres_gain_arcane_surge_when_you_do"]=6320,["spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance"]=6321,["spectres_have_base_duration_ms"]=6322,["spell_additional_critical_strike_chance_permyriad"]=6323,["spell_and_attack_dodge_%_while_moving"]=6324,["spell_and_attack_maximum_added_chaos_damage_during_flask_effect"]=6325,["spell_and_attack_maximum_added_cold_damage"]=733,["spell_and_attack_maximum_added_fire_damage"]=732,["spell_and_attack_maximum_added_lightning_damage"]=764,["spell_and_attack_minimum_added_chaos_damage_during_flask_effect"]=6325,["spell_and_attack_minimum_added_cold_damage"]=733,["spell_and_attack_minimum_added_fire_damage"]=732,["spell_and_attack_minimum_added_lightning_damage"]=764,["spell_area_of_effect_+%"]=6326,["spell_base_fire_damage_%_maximum_life"]=749,["spell_block_%_if_blocked_a_spell_recently"]=6327,["spell_block_%_if_blocked_an_attack_recently"]=6328,["spell_block_%_while_at_max_power_charges"]=6329,["spell_block_%_while_on_low_life"]=533,["spell_block_equals_attack_block"]=541,["spell_block_while_dual_wielding_%"]=532,["spell_block_with_bow_%"]=534,["spell_block_with_staff_%"]=535,["spell_bow_damage_+%"]=600,["spell_chance_to_deal_double_damage_%"]=6330,["spell_chance_to_shock_frozen_enemies_%"]=2141,["spell_cold_damage_+%"]=598,["spell_critical_strike_chance_+%"]=815,["spell_critical_strike_chance_+%_per_100_max_life"]=6331,["spell_critical_strike_chance_+%_per_raised_spectre"]=6332,["spell_critical_strike_chance_+%_while_dual_wielding"]=4183,["spell_critical_strike_chance_+%_while_holding_shield"]=4184,["spell_critical_strike_chance_+%_while_wielding_staff"]=4185,["spell_critical_strike_multiplier_+"]=846,["spell_critical_strike_multiplier_+_while_dual_wielding"]=4205,["spell_critical_strike_multiplier_+_while_holding_shield"]=4206,["spell_critical_strike_multiplier_+_while_wielding_staff"]=4207,["spell_damage_+%"]=596,["spell_damage_+%_during_flask_effect"]=6335,["spell_damage_+%_for_4_seconds_on_cast"]=2746,["spell_damage_+%_if_have_crit_in_past_8_seconds"]=6336,["spell_damage_+%_if_have_crit_recently"]=6333,["spell_damage_+%_if_other_ring_is_elder_item"]=3521,["spell_damage_+%_if_you_have_blocked_recently"]=6337,["spell_damage_+%_per_100_max_life"]=6338,["spell_damage_+%_per_100_maximum_mana_up_to_60%"]=6339,["spell_damage_+%_per_10_int"]=1951,["spell_damage_+%_per_10_strength"]=6340,["spell_damage_+%_per_16_dex"]=6341,["spell_damage_+%_per_16_int"]=6342,["spell_damage_+%_per_16_strength"]=6343,["spell_damage_+%_per_200_mana_spent_recently"]=3540,["spell_damage_+%_per_5%_block_chance"]=1950,["spell_damage_+%_per_500_maximum_mana"]=6334,["spell_damage_+%_per_level"]=2179,["spell_damage_+%_per_power_charge"]=1425,["spell_damage_+%_while_dual_wielding"]=602,["spell_damage_+%_while_es_full"]=2295,["spell_damage_+%_while_holding_shield"]=601,["spell_damage_+%_while_no_mana_reserved"]=2299,["spell_damage_+%_while_not_low_mana"]=2300,["spell_damage_+%_while_shocked"]=6344,["spell_damage_+%_while_you_have_arcane_surge"]=6345,["spell_damage_modifiers_apply_to_attack_damage"]=1889,["spell_damage_modifiers_apply_to_skill_dot"]=1894,["spell_damage_taken_+%_from_blinded_enemies"]=2436,["spell_damage_taken_+%_when_on_low_mana"]=1709,["spell_dodge_%_while_channelling"]=6347,["spell_dodge_chance_+%_if_you_have_taken_attack_damage_recently"]=3375,["spell_dodge_while_you_have_energy_shield_+%"]=6346,["spell_elemental_damage_+%"]=1357,["spell_fire_damage_+%"]=597,["spell_maximum_added_chaos_damage"]=762,["spell_maximum_added_chaos_damage_while_dual_wielding"]=1392,["spell_maximum_added_chaos_damage_while_holding_a_shield"]=1393,["spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon"]=1394,["spell_maximum_added_cold_damage"]=760,["spell_maximum_added_cold_damage_per_power_charge"]=1123,["spell_maximum_added_cold_damage_while_dual_wielding"]=1395,["spell_maximum_added_cold_damage_while_holding_a_shield"]=1396,["spell_maximum_added_cold_damage_while_wielding_two_handed_weapon"]=1397,["spell_maximum_added_fire_damage"]=759,["spell_maximum_added_fire_damage_while_dual_wielding"]=1398,["spell_maximum_added_fire_damage_while_holding_a_shield"]=1399,["spell_maximum_added_fire_damage_while_wielding_two_handed_weapon"]=1400,["spell_maximum_added_lightning_damage"]=761,["spell_maximum_added_lightning_damage_while_dual_wielding"]=1401,["spell_maximum_added_lightning_damage_while_holding_a_shield"]=1402,["spell_maximum_added_lightning_damage_while_unarmed"]=1679,["spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon"]=1403,["spell_maximum_added_physical_damage"]=758,["spell_maximum_added_physical_damage_while_dual_wielding"]=1404,["spell_maximum_added_physical_damage_while_holding_a_shield"]=1405,["spell_maximum_added_physical_damage_while_wielding_two_handed_weapon"]=1406,["spell_maximum_base_chaos_damage"]=752,["spell_maximum_base_cold_damage"]=750,["spell_maximum_base_cold_damage_+_per_10_intelligence"]=763,["spell_maximum_base_fire_damage"]=749,["spell_maximum_base_lightning_damage"]=751,["spell_maximum_base_physical_damage"]=748,["spell_minimum_added_chaos_damage"]=762,["spell_minimum_added_chaos_damage_while_dual_wielding"]=1392,["spell_minimum_added_chaos_damage_while_holding_a_shield"]=1393,["spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon"]=1394,["spell_minimum_added_cold_damage"]=760,["spell_minimum_added_cold_damage_per_power_charge"]=1123,["spell_minimum_added_cold_damage_while_dual_wielding"]=1395,["spell_minimum_added_cold_damage_while_holding_a_shield"]=1396,["spell_minimum_added_cold_damage_while_wielding_two_handed_weapon"]=1397,["spell_minimum_added_fire_damage"]=759,["spell_minimum_added_fire_damage_while_dual_wielding"]=1398,["spell_minimum_added_fire_damage_while_holding_a_shield"]=1399,["spell_minimum_added_fire_damage_while_wielding_two_handed_weapon"]=1400,["spell_minimum_added_lightning_damage"]=761,["spell_minimum_added_lightning_damage_while_dual_wielding"]=1401,["spell_minimum_added_lightning_damage_while_holding_a_shield"]=1402,["spell_minimum_added_lightning_damage_while_unarmed"]=1679,["spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon"]=1403,["spell_minimum_added_physical_damage"]=758,["spell_minimum_added_physical_damage_while_dual_wielding"]=1404,["spell_minimum_added_physical_damage_while_holding_a_shield"]=1405,["spell_minimum_added_physical_damage_while_wielding_two_handed_weapon"]=1406,["spell_minimum_base_chaos_damage"]=752,["spell_minimum_base_cold_damage"]=750,["spell_minimum_base_cold_damage_+_per_10_intelligence"]=763,["spell_minimum_base_fire_damage"]=749,["spell_minimum_base_lightning_damage"]=751,["spell_minimum_base_physical_damage"]=748,["spell_physical_damage_%_to_convert_to_fire"]=6348,["spell_repeat_count"]=1181,["spell_skill_gem_level_+"]=941,["spell_skills_deal_no_damage"]=6349,["spell_staff_damage_+%"]=599,["spells_chance_to_hinder_on_hit_%"]=6350,["spells_chance_to_knockback_on_hit_%"]=6351,["spells_chance_to_poison_on_hit_%"]=6352,["spells_have_culling_strike"]=1764,["spells_number_of_additional_projectiles"]=3504,["spellslinger_cooldown_duration_+%"]=6353,["spellslinger_mana_reservation_+%"]=6354,["spend_energy_shield_for_costs_before_mana"]=2329,["spider_aspect_debuff_duration_+%"]=6355,["spider_aspect_skill_area_of_effect_+%"]=6356,["spider_aspect_web_interval_ms_override"]=6357,["spirit_offering_duration_+%"]=3115,["spirit_offering_physical_damage_%_to_add_as_chaos"]=3392,["split_arrow_critical_strike_chance_+%"]=3150,["split_arrow_damage_+%"]=2862,["split_arrow_num_of_additional_projectiles"]=3160,["split_arrow_number_of_additional_arrows"]=2375,["split_arrow_projectiles_fire_in_parallel_x_dist"]=6358,["spread_freeze_to_nearby_enemies"]=6359,["spread_ignite_to_nearby_enemies"]=6360,["stacking_damage_+%_on_kill_for_4_seconds"]=2817,["stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds"]=2534,["staff_accuracy_rating"]=1302,["staff_accuracy_rating_+%"]=794,["staff_ailment_damage_+%"]=673,["staff_attack_speed_+%"]=776,["staff_block_%"]=536,["staff_critical_strike_chance_+%"]=826,["staff_critical_strike_multiplier_+"]=855,["staff_damage_+%"]=671,["staff_elemental_damage_+%"]=1408,["staff_hit_and_ailment_damage_+%"]=672,["staff_stun_duration_+%"]=1160,["start_at_zero_energy_shield"]=2332,["static_strike_additional_number_of_beam_targets"]=6361,["static_strike_damage_+%"]=2885,["static_strike_duration_+%"]=3142,["static_strike_radius_+%"]=3031,["status_ailments_removed_at_low_life"]=2545,["status_ailments_you_inflict_duration_+%_while_focused"]=6362,["status_ailments_you_inflict_duration_+%_with_bows"]=6363,["steelskin_damage_limit_+%"]=6364,["stone_golem_damage_+%"]=2908,["stone_golem_elemental_resistances_%"]=3196,["storm_brand_additional_chain_chance_%"]=6365,["storm_brand_attached_target_lightning_penetration_%"]=6366,["storm_brand_damage_+%"]=6367,["storm_burst_15_%_chance_to_create_additional_orb"]=6368,["storm_burst_additional_object_chance_%"]=6369,["storm_burst_area_of_effect_+%"]=6370,["storm_burst_avoid_interruption_while_casting_%"]=6371,["storm_burst_damage_+%"]=2950,["storm_burst_number_of_additional_projectiles"]=6372,["storm_call_damage_+%"]=2886,["storm_call_duration_+%"]=3143,["storm_call_radius_+%"]=3032,["storm_cloud_charge_count"]=2658,["storm_cloud_charged_damage_+%_final"]=2659,["storm_cloud_critical_strike_chance_+%"]=3155,["storm_cloud_radius_+%"]=3059,["stormbind_skill_area_of_effect_+%"]=6373,["stormbind_skill_damage_+%"]=6374,["strength_+%"]=562,["strength_damage_bonus_grants_melee_physical_damage_+3%_per_10_strength_instead"]=6375,["strength_skill_gem_level_+"]=6376,["strong_casting"]=6590,["stun_duration_+%"]=1296,["stun_duration_+%_per_15_strength"]=6377,["stun_duration_+%_per_endurance_charge"]=6378,["stun_duration_+%_vs_enemies_that_are_on_full_life"]=2556,["stun_duration_+%_vs_enemies_that_are_on_low_life"]=2557,["stun_duration_on_self_+%"]=3380,["stun_recovery_+%_per_frenzy_charge"]=1188,["stun_threshold_+%"]=2488,["stun_threshold_based_on_%_mana_instead_of_life"]=2487,["stun_threshold_based_on_energy_shield_instead_of_life"]=3484,["stun_threshold_reduction_+%_while_using_flask"]=2142,["stun_threshold_reduction_+%_with_500_or_more_strength"]=6379,["stuns_have_culling_strike"]=1330,["summon_2_totems"]=6380,["summon_skeleton_gem_level_+"]=950,["summon_skeletons_additional_warrior_skeleton_%_chance"]=6382,["summon_skeletons_additional_warrior_skeleton_one_twentieth_chance"]=6381,["summon_skeletons_cooldown_modifier_ms"]=6383,["summon_skeletons_num_additional_warrior_skeletons"]=3213,["summon_skitterbots_area_of_effect_+%"]=6384,["summon_skitterbots_mana_reservation_+%"]=6385,["summon_totem_cast_speed_+%"]=1810,["summoned_phantasms_grant_buff"]=6386,["summoned_phantasms_have_no_duration"]=6387,["summoned_raging_spirit_chance_to_spawn_additional_minion_%"]=2632,["summoned_raging_spirit_duration_+%"]=2631,["summoned_skeleton_%_chance_to_wither_for_2_seconds"]=6388,["summoned_skeleton_%_physical_to_chaos"]=6389,["summoned_skeletons_cover_in_ash_on_hit_%"]=6390,["summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute"]=6391,["summoned_skeletons_have_avatar_of_fire"]=6591,["summoned_skeletons_hits_cant_be_evaded"]=6392,["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=6393,["support_anticipation_charge_gain_frequency_+%"]=6394,["support_anticipation_charge_gain_interval_ms"]=6543,["support_anticipation_rapid_fire_count"]=6543,["support_gem_elemental_damage_+%_final"]=2801,["support_maimed_enemies_physical_damage_taken_+%"]=6395,["support_minion_maximum_life_+%_final"]=1073,["support_mirage_archer_base_duration"]=6397,["support_slashing_damage_+%_final_from_distance"]=6398,["support_slower_projectiles_damage_+%_final"]=2059,["supported_active_skill_gem_expereince_gained_+%"]=2104,["supported_active_skill_gem_level_+"]=1973,["supported_active_skill_gem_quality_%"]=2037,["supported_aura_skill_gem_level_+"]=6399,["supported_cold_skill_gem_level_+"]=6400,["supported_curse_skill_gem_level_+"]=6401,["supported_elemental_skill_gem_level_+"]=6402,["supported_fire_skill_gem_level_+"]=6403,["supported_lightning_skill_gem_level_+"]=6404,["sweep_add_endurance_charge_on_hit_%"]=3033,["sweep_damage_+%"]=2887,["sweep_knockback_chance_%"]=3187,["sweep_radius_+%"]=3034,["sword_accuracy_rating"]=1297,["sword_accuracy_rating_+%"]=799,["sword_ailment_damage_+%"]=704,["sword_attack_speed_+%"]=781,["sword_critical_strike_chance_+%"]=824,["sword_critical_strike_multiplier_+"]=852,["sword_damage_+%"]=702,["sword_hit_and_ailment_damage_+%"]=703,["sword_physical_damage_%_to_add_as_fire"]=2256,["synthesis_map_adjacent_nodes_global_mod_values_doubled"]=6405,["synthesis_map_global_mod_values_doubled_on_this_node"]=6406,["synthesis_map_global_mod_values_tripled_on_this_node"]=6407,["synthesis_map_memories_do_not_collapse_on_this_node"]=6408,["synthesis_map_monster_slain_experience_+%_on_this_node"]=6409,["synthesis_map_nearby_memories_have_bonus"]=6410,["synthesis_map_node_additional_uses_+"]=6411,["synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories"]=6412,["synthesis_map_node_grants_additional_global_mod"]=6413,["synthesis_map_node_grants_no_global_mod"]=6414,["synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters"]=6415,["synthesis_map_node_item_quantity_increases_doubled"]=6416,["synthesis_map_node_item_rarity_increases_doubled"]=6417,["synthesis_map_node_level_+"]=6418,["synthesis_map_node_monsters_drop_no_items"]=6419,["synthesis_map_node_pack_size_increases_doubled"]=6420,["tailwind_effect_on_self_+%"]=6421,["tailwind_effect_on_self_+%_for_each_skill_used_recently"]=6422,["tailwind_if_have_crit_recently"]=6423,["take_half_area_damage_from_hit_%_chance"]=6424,["talisman_implicit_projectiles_pierce_1_additional_target_per_10"]=6425,["taunt_duration_+%"]=1091,["taunt_on_projectile_hit_chance_%"]=6426,["taunted_enemies_chance_to_be_stunned_+%"]=2428,["taunted_enemies_damage_+%_final_vs_non_taunt_target"]=3463,["taunted_enemies_damage_taken_+%"]=2429,["tectonic_slam_%_chance_to_do_charged_slam"]=6431,["tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value"]=6427,["tectonic_slam_area_of_effect_+%"]=6428,["tectonic_slam_chance_to_use_endurance_charge_%"]=6429,["tectonic_slam_damage_+%"]=6430,["tempest_shield_damage_+%"]=2932,["tempest_shield_num_of_additional_projectiles_in_chain"]=3240,["temporal_chains_curse_effect_+%"]=3220,["temporal_chains_duration_+%"]=3121,["temporal_chains_effeciveness_+%"]=975,["temporal_chains_mana_reservation_+%"]=3261,["thaumaturgy_rotation_active"]=6432,["thrown_shield_secondary_projectile_damage_+%_final"]=6433,["tornado_shot_critical_strike_chance_+%"]=3154,["tornado_shot_damage_+%"]=2892,["tornado_shot_num_of_secondary_projectiles"]=3162,["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3002,["totem_additional_physical_damage_reduction_%"]=2006,["totem_attack_damage_leeched_as_mana_to_you_permyriad"]=6435,["totem_aura_enemy_damage_+%_final"]=3004,["totem_aura_enemy_fire_and_physical_damage_taken_+%"]=3005,["totem_chaos_immunity"]=6436,["totem_chaos_resistance_%"]=6437,["totem_critical_strike_chance_+%"]=842,["totem_critical_strike_multiplier_+"]=870,["totem_damage_+%"]=567,["totem_damage_+%_final_per_active_totem"]=2961,["totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds"]=6438,["totem_damage_+%_per_10_devotion"]=6439,["totem_damage_leeched_as_life_to_you_permyriad"]=3444,["totem_duration_+%"]=1086,["totem_elemental_resistance_%"]=2004,["totem_energy_shield_+%"]=1084,["totem_fire_immunity"]=940,["totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed"]=6440,["totem_life_+%"]=1082,["totem_mana_+%"]=1083,["totem_maximum_energy_shield"]=6441,["totem_number_of_additional_projectiles"]=2296,["totem_placement_range_+%"]=6442,["totem_range_+%"]=1085,["totem_skill_area_of_effect_+%"]=1813,["totem_skill_attack_speed_+%"]=1812,["totem_skill_cast_speed_+%"]=1811,["totem_spells_damage_+%"]=6443,["totemified_skills_taunt_on_hit_%"]=2647,["totems_action_speed_cannot_be_modified_below_base"]=6434,["totems_attack_speed_+%_per_active_totem"]=3402,["totems_cannot_be_stunned"]=2279,["totems_explode_for_%_of_max_life_as_fire_damage_on_low_life"]=2536,["totems_gain_%_of_players_armour"]=2437,["totems_nearby_enemies_damage_taken_+%"]=6444,["totems_resist_all_elements_+%_per_active_totem"]=3382,["totems_spells_cast_speed_+%_per_active_totem"]=3388,["toxic_rain_damage_+%"]=6445,["toxic_rain_num_of_additional_projectiles"]=6446,["toxic_rain_physical_damage_%_to_add_as_chaos"]=6447,["transfer_curses_to_X_nearby_enemies_on_kill"]=2148,trap=14,["trap_%_chance_to_trigger_twice"]=3011,["trap_and_mine_damage_+%_if_armed_for_4_seconds"]=6448,["trap_and_mine_damage_penetrates_%_elemental_resistance"]=2001,["trap_and_mine_maximum_added_physical_damage"]=3010,["trap_and_mine_minimum_added_physical_damage"]=3010,["trap_and_mine_throwing_speed_+%"]=6449,["trap_critical_strike_chance_+%"]=830,["trap_critical_strike_multiplier_+"]=860,["trap_damage_+%"]=568,["trap_damage_buildup_damage_+%_final_after_4_seconds"]=3007,["trap_damage_buildup_damage_+%_final_when_first_set"]=3006,["trap_damage_penetrates_%_elemental_resistance"]=1999,["trap_duration_+%"]=1208,["trap_or_mine_damage_+%"]=569,["trap_skill_area_of_effect_+%"]=2694,["trap_throw_skills_have_blood_magic"]=2426,["trap_throwing_speed_+%"]=1212,["trap_throwing_speed_+%_per_frenzy_charge"]=6450,["trap_trigger_radius_+%"]=1210,["traps_and_mines_%_chance_to_poison"]=3300,["traps_do_not_explode_on_timeout"]=1996,["traps_explode_on_timeout"]=1997,["traps_invulnerable_for_duration_ms"]=2002,["travel_skill_cooldown_speed_+%"]=3573,["travel_skills_cooldown_speed_+%_per_frenzy_charge"]=3583,["trickster_damage_over_time_+%_final"]=6451,["trickster_passive_chance_to_evade_attacks_while_not_on_full_energy_shield_+%_final"]=2744,["trigger_on_kill_vs_frozen_enemy_%"]=445,["trigger_socketed_spell_on_attack_%"]=446,["trigger_socketed_spell_on_skill_use_%"]=447,["trigger_socketed_spells_when_you_focus_%"]=448,["trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance"]=58,["triggered_spell_spell_damage_+%"]=6452,["two_handed_melee_accuracy_rating_+%"]=792,["two_handed_melee_area_damage_+%"]=6453,["two_handed_melee_area_of_effect_+%"]=6454,["two_handed_melee_attack_speed_+%"]=773,["two_handed_melee_cold_damage_+%"]=662,["two_handed_melee_critical_strike_chance_+%"]=832,["two_handed_melee_critical_strike_multiplier_+"]=833,["two_handed_melee_fire_damage_+%"]=661,["two_handed_melee_physical_damage_+%"]=656,["two_handed_melee_stun_duration_+%"]=1158,["two_handed_melee_weapon_ailment_damage_+%"]=659,["two_handed_melee_weapon_hit_and_ailment_damage_+%"]=657,["two_handed_weapon_ailment_damage_+%"]=660,["two_handed_weapon_hit_and_ailment_damage_+%"]=658,["unaffected_by_bleeding_while_affected_by_malevolence"]=6455,["unaffected_by_bleeding_while_leeching"]=6456,["unaffected_by_burning_ground"]=6457,["unaffected_by_burning_ground_while_affected_by_purity_of_fire"]=6458,["unaffected_by_chilled_ground"]=6459,["unaffected_by_chilled_ground_while_affected_by_purity_of_ice"]=6460,["unaffected_by_conductivity_while_affected_by_purity_of_lightning"]=6461,["unaffected_by_curses"]=1715,["unaffected_by_desecrated_ground"]=6462,["unaffected_by_elemental_weakness_while_affected_by_purity_of_elements"]=6463,["unaffected_by_enfeeble_while_affected_by_grace"]=6464,["unaffected_by_flammability_while_affected_by_purity_of_fire"]=6465,["unaffected_by_frostbite_while_affected_by_purity_of_ice"]=6466,["unaffected_by_ignite"]=6467,["unaffected_by_poison_while_affected_by_malevolence"]=6468,["unaffected_by_shock"]=6469,["unaffected_by_shocked_ground"]=6470,["unaffected_by_shocked_ground_while_affected_by_purity_of_lightning"]=6471,["unaffected_by_temporal_chains"]=6472,["unaffected_by_temporal_chains_while_affected_by_haste"]=6473,["unaffected_by_vulnerability_while_affected_by_determination"]=6474,["unarmed_damage_+%_vs_bleeding_enemies"]=2776,["unarmed_melee_attack_speed_+%"]=784,["unarmed_melee_physical_damage_+%"]=663,["unattached_sigil_attachment_range_+%_per_second"]=6475,["unearth_additional_corpse_level"]=6476,["unique_add_power_charge_on_melee_knockback_%"]=2153,["unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes"]=6608,["unique_chaos_damage_to_reflect_to_self_on_attack_%_chance"]=2185,["unique_chill_duration_+%_when_in_off_hand"]=1985,["unique_chin_sol_close_range_bow_damage_+%_final"]=1683,["unique_chin_sol_close_range_knockback"]=1684,["unique_cold_damage_can_also_ignite"]=2095,["unique_cold_damage_ignites"]=2074,["unique_cold_damage_resistance_%_when_green_gem_socketed"]=964,["unique_critical_strike_chance_+%_final"]=2042,["unique_dewaths_hide_physical_attack_damage_dealt_-"]=1705,["unique_facebreaker_unarmed_physical_damage_+%_final"]=1677,["unique_fire_damage_resistance_%_when_red_gem_socketed"]=958,["unique_fire_damage_shocks"]=2073,["unique_gain_onslaught_when_hit_duration_ms"]=2044,["unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge"]=2058,["unique_gain_power_charge_on_non_crit"]=2112,["unique_ignite_chance_%_when_in_main_hand"]=1984,["unique_lightning_damage_freezes"]=2075,["unique_lightning_damage_resistance_%_when_blue_gem_socketed"]=969,["unique_lions_roar_melee_physical_damage_+%_final"]=2134,["unique_local_maximum_added_chaos_damage_when_in_off_hand"]=746,["unique_local_maximum_added_cold_damage_when_in_off_hand"]=731,["unique_local_maximum_added_fire_damage_when_in_main_hand"]=724,["unique_local_minimum_added_chaos_damage_when_in_off_hand"]=746,["unique_local_minimum_added_cold_damage_when_in_off_hand"]=731,["unique_local_minimum_added_fire_damage_when_in_main_hand"]=724,["unique_loris_lantern_golden_light"]=1786,["unique_lose_a_power_charge_when_hit"]=6478,["unique_lose_all_endurance_charges_when_hit"]=2043,["unique_lose_all_power_charges_on_crit"]=2113,["unique_map_boss_class_of_rare_items_to_drop"]=1930,["unique_map_boss_number_of_rare_items_to_drop"]=1930,["unique_maximum_chaos_damage_to_reflect_to_self_on_attack"]=2185,["unique_mine_damage_+%_final"]=571,["unique_minimum_chaos_damage_to_reflect_to_self_on_attack"]=2185,["unique_monster_dropped_item_rarity_+%"]=6479,["unique_nearby_allies_recover_permyriad_max_life_on_death"]=2208,["unique_primordial_tether_golem_damage_+%_final"]=2915,["unique_primordial_tether_golem_life_+%_final"]=3304,["unique_quill_rain_damage_+%_final"]=1695,["unique_ryuslathas_clutches_maximum_physical_attack_damage_+%_final"]=573,["unique_ryuslathas_clutches_minimum_physical_attack_damage_+%_final"]=574,["unique_spread_poison_to_nearby_allies_as_200_life_regeneration_per_second_on_kill"]=2068,["unique_spread_poison_to_nearby_allies_as_regeneration_on_kill"]=2069,["unique_spread_poison_to_nearby_enemies_during_flask_effect"]=6480,["unique_spread_poison_to_nearby_enemies_on_kill"]=2067,["unique_volkuurs_clutch_poison_duration_+%_final"]=2385,["unique_voltaxic_rift_shock_as_though_damage_+%_final"]=6481,["unique_voltaxic_rift_shock_maximum_magnitude_override"]=6482,["unqiue_atzitis_acuity_instant_leech_60%_effectiveness_on_crit"]=1771,["use_life_in_place_of_mana"]=1201,["utility_flask_cold_damage_taken_+%_final"]=6483,["utility_flask_fire_damage_taken_+%_final"]=6484,["utility_flask_lightning_damage_taken_+%_final"]=6485,["vaal_skill_critical_strike_chance_+%"]=2321,["vaal_skill_critical_strike_multiplier_+"]=2322,["vaal_skill_damage_+%"]=2310,["vaal_skill_effect_duration_+%"]=2320,["vaal_skill_soul_cost_+%"]=6486,["vengeance_cooldown_speed_+%"]=3098,["vengeance_damage_+%"]=2937,["vigilant_strike_applies_to_nearby_allies_for_X_seconds"]=2465,["vigilant_strike_damage_+%"]=2925,["vigilant_strike_fortify_duration_+%"]=3118,["viper_strike_attack_damage_per_poison_on_enemy_+%"]=2449,["viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy"]=6487,["viper_strike_critical_strike_chance_+%"]=3151,["viper_strike_damage_+%"]=2867,["viper_strike_dual_wield_attack_speed_+%_final"]=6488,["viper_strike_dual_wield_damage_+%_final"]=6489,["viper_strike_poison_duration_+%"]=3140,["virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies"]=2615,["virtual_block_%_damage_taken"]=6490,["virtual_energy_shield_delay_-%"]=2786,["virtual_energy_shield_recharge_rate_+%"]=2788,["virtual_light_radius_+%"]=1737,["virtual_mana_gain_per_target"]=1057,["virtual_minion_damage_+%"]=1269,["virtual_number_of_ranged_animated_weapons_allowed"]=2486,["virtual_support_anticipation_charge_gain_interval_ms"]=6543,["virulent_arrow_additional_spores_at_max_stages"]=6492,["virulent_arrow_chance_to_poison_%_per_stage"]=6493,["vitality_mana_reservation_+%"]=3253,["vitality_reserves_no_mana"]=6494,["volatile_dead_base_number_of_corpses_to_consume"]=6495,["volatile_dead_cast_speed_+%"]=6496,["volatile_dead_consume_additional_corpse"]=6497,["volatile_dead_damage_+%"]=6498,["vortex_area_of_effect_+%_when_cast_on_frostbolt"]=6499,["vulnerability_curse_effect_+%"]=3228,["vulnerability_duration_+%"]=3123,["vulnerability_mana_reservation_+%"]=3262,["wall_maximum_length"]=1336,["wand_accuracy_rating"]=1304,["wand_accuracy_rating_+%"]=800,["wand_ailment_damage_+%"]=710,["wand_attack_speed_+%"]=782,["wand_critical_strike_chance_+%"]=827,["wand_critical_strike_multiplier_+"]=853,["wand_damage_+%"]=2161,["wand_damage_+%_if_crit_recently"]=6500,["wand_damage_+%_per_power_charge"]=1426,["wand_elemental_damage_+%"]=1407,["wand_hit_and_ailment_damage_+%"]=709,["wand_physical_damage_%_to_add_as_chaos"]=6501,["wand_physical_damage_%_to_add_as_cold"]=1327,["wand_physical_damage_%_to_add_as_fire"]=1326,["wand_physical_damage_%_to_add_as_lightning"]=1328,["wand_physical_damage_%_to_convert_to_lightning"]=6502,["war_banner_aura_effect_+%"]=6503,["warcries_are_instant"]=2678,["warcries_cost_no_mana"]=3343,["warcries_count_as_having_x_additional_nearby_enemies"]=6504,["warcries_knock_back_enemies"]=6505,["warcry_buff_effect_+%"]=6506,["warcry_cooldown_speed_+%"]=2552,["warcry_duration_+%"]=2414,["warcry_skill_area_of_effect_+%"]=6507,["warcry_skills_cooldown_is_2_seconds"]=6508,["warcry_speed_+%"]=2493,["warlords_mark_curse_effect_+%"]=3229,["warlords_mark_duration_+%"]=3122,["weapon_chaos_damage_+%"]=1356,["weapon_cold_damage_+%"]=1354,["weapon_elemental_damage_+%"]=719,["weapon_elemental_damage_+%_per_power_charge"]=1886,["weapon_elemental_damage_+%_while_using_flask"]=1971,["weapon_fire_damage_+%"]=1353,["weapon_lightning_damage_+%"]=1355,["weapon_physical_damage_%_to_add_as_each_element"]=3471,["weapon_physical_damage_%_to_add_as_random_element"]=2149,["weapon_physical_damage_+%"]=1958,["while_stationary_gain_additional_physical_damage_reduction_%"]=6509,["while_stationary_gain_life_regeneration_rate_per_minute_%"]=6510,["while_using_mace_stun_threshold_reduction_+%"]=872,["while_using_sword_reduce_enemy_block_%"]=1189,["whirling_blades_attack_speed_+%"]=3080,["whirling_blades_damage_+%"]=2926,["wild_strike_damage_+%"]=2901,["wild_strike_num_of_additional_projectiles_in_chain"]=3212,["wild_strike_radius_+%"]=3041,["with_bow_additional_block_%"]=1699,["wither_duration_+%"]=3136,["wither_radius_+%"]=3053,["withered_on_hit_for_2_seconds_%_chance"]=6511,["wrath_aura_effect_+%"]=2588,["wrath_mana_reservation_+%"]=3254,["wrath_reserves_no_mana"]=6512,["x_to_maximum_life_per_2_intelligence"]=1313,["you_and_allies_additional_block_%_if_have_attacked_recently"]=6513,["you_and_allies_additional_spell_block_%_if_cast_spell_recently"]=6514,["you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_stage"]=3281,["you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed"]=3282,["you_and_nearby_allies_armour_+_if_have_impaled_recently"]=6515,["you_and_nearby_allies_critical_strike_chance_+%"]=6516,["you_and_nearby_allies_critical_strike_multiplier_+"]=6517,["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently"]=6518,["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently"]=6519,["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently"]=6520,["you_and_nearby_party_members_gain_x_rage_when_you_warcry"]=6521,["you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem"]=6522,["you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%"]=2550,["you_cannot_be_hindered"]=6523,["you_cannot_have_non_animated_minions"]=6524,["you_cannot_have_non_golem_minions"]=2906,["you_count_as_low_life_while_affected_by_vulnerability"]=2334,["you_count_as_low_life_while_not_on_full_life"]=6525,["you_have_no_armour_or_energy_shield"]=6526,["you_have_zealots_oath_if_you_havent_been_hit_recently"]=6604,["your_ailments_deal_damage_faster_%_while_affected_by_malevolence"]=6528,["your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"]=6529,["your_consecrated_ground_grants_damage_+%"]=3439,["your_spells_are_disabled"]=6530,["zealotry_aura_effect_+%"]=6544,["zealotry_mana_reservation_+%"]=6545,["zealotry_reserves_no_mana"]=6546,["zero_elemental_resistance"]=2051,["zombie_attack_speed_+%"]=3068,["zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=6547,["zombie_chaos_elemental_damage_resistance_%"]=1822,["zombie_damage_+%"]=2858,["zombie_damage_leeched_as_life_to_you_permyriad_if_over_1000_strength"]=6548,["zombie_elemental_resistances_%"]=3195,["zombie_explode_on_kill_%_fire_damage_to_deal"]=1885,["zombie_maximum_life_+"]=1821,["zombie_physical_damage_+%"]=1884,["zombie_physical_damage_+%_final"]=6549,["zombie_scale_+%"]=1883,["zombie_slam_area_of_effect_+%"]=6550,["zombie_slam_cooldown_speed_+%"]=6551,["zombie_slam_damage_+%"]=6552} \ No newline at end of file diff --git a/Data/Global.lua b/Data/Global.lua index b5c418d22..aacd379fe 100644 --- a/Data/Global.lua +++ b/Data/Global.lua @@ -209,4 +209,11 @@ SkillType = { Type83 = 94, Type84 = 94, NovaSpell = 94, + Type85 = 95, + Type86 = 96, + Type87 = 97, + Type88 = 98, + Type89 = 99, + Type90 = 100, + Type91 = 101, } diff --git a/Export/Scripts/cluster.lua b/Export/Scripts/cluster.lua index 7c1ab537a..938b8930b 100644 --- a/Export/Scripts/cluster.lua +++ b/Export/Scripts/cluster.lua @@ -7,46 +7,56 @@ local out = io.open("../Data/3_0/ClusterJewels.lua", "w") out:write('-- This file is automatically generated, do not edit!\n') out:write('-- Jewel data (c) Grinding Gear Games\n\nreturn {\n') +out:write('\tjewels = {\n') for jewel in dat"PassiveTreeExpansionJewels":Rows() do - out:write('\t["', jewel.BaseItemType.Name, '"] = {\n') - out:write('\t\tsize = "', jewel.Size.Id, '",\n') - out:write('\t\tsizeIndex = ', jewel.Size._rowIndex - 1, ',\n') - out:write('\t\tminNodes = ', jewel.MinNodes, ',\n') - out:write('\t\tmaxNodes = ', jewel.MaxNodes, ',\n') - out:write('\t\tsmallIndicies = { ', table.concat(jewel.SmallIndicies, ', '), ' },\n') - out:write('\t\tnotableIndicies = { ', table.concat(jewel.NotableIndicies, ', '), ' },\n') - out:write('\t\tsocketIndicies = { ', table.concat(jewel.SocketIndicies, ', '), ' },\n') - out:write('\t\ttotalIndicies = ', jewel.TotalIndicies, ',\n') - out:write('\t\tskills = {\n') - for index, skill in ipairs(dat"PassiveTreeExpansionSkills":GetRowList("JewelSize", jewel.Size)) do - out:write('\t\t\t["', skill.Node.Id, '"] = {\n') - out:write('\t\t\t\tname = "', skill.Node.Name, '",\n') - out:write('\t\t\t\ticon = "', skill.Node.Icon:gsub("dds$","png"), '",\n') - if skill.Mastery then - out:write('\t\t\t\tmasteryIcon = "', skill.Mastery.Icon:gsub("dds$","png"), '",\n') - end - out:write('\t\t\t\ttag = "', skill.Tag.Id, '",\n') - local stats = { } - for index, stat in ipairs(skill.Node.Stats) do - stats[stat.Id] = { min = skill.Node["Stat"..index], max = skill.Node["Stat"..index] } - end - local desc = describeStats(stats) - out:write('\t\t\t\tstats = { "', table.concat(desc, '", "'), '" },\n') - out:write('\t\t\t\tenchant = {\n') - for index, stat in ipairs(skill.Node.Stats) do - local stats = { - [stat.Id] = { min = skill.Node["Stat"..index], max = skill.Node["Stat"..index] } - } - for _, line in ipairs(describeStats(stats)) do - out:write('\t\t\t\t\t"Added Small Passive Skills grant: ', line, '",\n') - end + out:write('\t\t["', jewel.BaseItemType.Name, '"] = {\n') + out:write('\t\t\tsize = "', jewel.Size.Id, '",\n') + out:write('\t\t\tsizeIndex = ', jewel.Size._rowIndex - 1, ',\n') + out:write('\t\t\tminNodes = ', jewel.MinNodes, ',\n') + out:write('\t\t\tmaxNodes = ', jewel.MaxNodes, ',\n') + out:write('\t\t\tsmallIndicies = { ', table.concat(jewel.SmallIndicies, ', '), ' },\n') + out:write('\t\t\tnotableIndicies = { ', table.concat(jewel.NotableIndicies, ', '), ' },\n') + out:write('\t\t\tsocketIndicies = { ', table.concat(jewel.SocketIndicies, ', '), ' },\n') + out:write('\t\t\ttotalIndicies = ', jewel.TotalIndicies, ',\n') + out:write('\t\t\tskills = {\n') + for index, skill in ipairs(dat"PassiveTreeExpansionSkills":GetRowList("JewelSize", jewel.Size)) do + out:write('\t\t\t\t["', skill.Node.Id, '"] = {\n') + out:write('\t\t\t\t\tname = "', skill.Node.Name, '",\n') + out:write('\t\t\t\t\ticon = "', skill.Node.Icon:gsub("dds$","png"), '",\n') + if skill.Mastery then + out:write('\t\t\t\t\tmasteryIcon = "', skill.Mastery.Icon:gsub("dds$","png"), '",\n') + end + out:write('\t\t\t\t\ttag = "', skill.Tag.Id, '",\n') + local stats = { } + for index, stat in ipairs(skill.Node.Stats) do + stats[stat.Id] = { min = skill.Node["Stat"..index], max = skill.Node["Stat"..index] } + end + local desc = describeStats(stats) + out:write('\t\t\t\t\tstats = { "', table.concat(desc, '", "'), '" },\n') + out:write('\t\t\t\t\tenchant = {\n') + for index, stat in ipairs(skill.Node.Stats) do + local stats = { + [stat.Id] = { min = skill.Node["Stat"..index], max = skill.Node["Stat"..index] } + } + for _, line in ipairs(describeStats(stats)) do + out:write('\t\t\t\t\t\t"Added Small Passive Skills grant: ', line, '",\n') end - out:write('\t\t\t\t},\n') - out:write('\t\t\t},\n') end + out:write('\t\t\t\t\t},\n') + out:write('\t\t\t\t},\n') + end + out:write('\t\t\t},\n') out:write('\t\t},\n') - out:write('\t},\n') end +out:write('\t},\n') + +out:write('\tnotableSortOrder = {\n') +for skill in dat"PassiveTreeExpansionSpecialSkills":Rows() do + if skill.Node.Notable then + out:write('\t\t["', skill.Node.Name, '"] = ', skill.Stat._rowIndex, ',\n') + end +end +out:write('\t},\n') out:write('}') out:close() diff --git a/Export/Scripts/mods.lua b/Export/Scripts/mods.lua index 4a48b6a82..a46417233 100644 --- a/Export/Scripts/mods.lua +++ b/Export/Scripts/mods.lua @@ -28,7 +28,14 @@ local function writeMods(outName, condFunc) for _, tag in ipairs(mod.SpawnTags) do out:write('"', tag.Id, '", ') end - out:write('}, weightVal = { ', table.concat(mod.SpawnWeights, ', '), ', }, ') + out:write('}, ') + out:write('weightVal = { ', table.concat(mod.SpawnWeights, ', '), ' }, ') + out:write('weightMultiplierKey = { ') + for _, tag in ipairs(mod.GenerationWeightTags) do + out:write('"', tag.Id, '", ') + end + out:write('}, ') + out:write('weightMultiplierVal = { ', table.concat(mod.GenerationWeightValues, ', '), ' }, ') if mod.Tags[1] then out:write('tags = { ') for _, tag in ipairs(mod.Tags) do diff --git a/Export/Scripts/skills.lua b/Export/Scripts/skills.lua index a2ab7a7a6..d9bf93e08 100644 --- a/Export/Scripts/skills.lua +++ b/Export/Scripts/skills.lua @@ -83,6 +83,13 @@ local skillTypes = { "Attack", "Type83", "Type84", "NovaSpell", + "Type85", + "Type86", + "Type87", + "Type88", + "Type89", + "Type90", + "Type91", } local function mapAST(ast) diff --git a/Export/Skills/act_dex.txt b/Export/Skills/act_dex.txt index 3f68b1262..448a5703c 100644 --- a/Export/Skills/act_dex.txt +++ b/Export/Skills/act_dex.txt @@ -401,7 +401,11 @@ local skills, mod, flag, skill = ... area = true, }, { - name = "Explosion (5 fuses)", + name = "Explosion (10 fuses)", + area = true, + }, + { + name = "Explosion (20 fuses)", area = true, }, { @@ -411,23 +415,24 @@ local skills, mod, flag, skill = ... }, statMap = { ["explosive_arrow_explosion_minimum_added_fire_damage"] = { - mod("FireMin", "BASE", nil, 0, 0, { type = "SkillPart", skillPartList = { 1, 2 } }), + mod("FireMin", "BASE", nil, 0, 0, { type = "SkillPart", skillPartList = { 1, 2, 3 } }), }, ["explosive_arrow_explosion_maximum_added_fire_damage"] = { - mod("FireMax", "BASE", nil, 0, 0, { type = "SkillPart", skillPartList = { 1, 2 } }), + mod("FireMax", "BASE", nil, 0, 0, { type = "SkillPart", skillPartList = { 1, 2, 3 } }), }, ["fuse_arrow_explosion_radius_+_per_fuse_arrow_orb"] = { skill("radiusExtra", nil, { type = "Multiplier", var = "ExplosiveArrowFuse" }), }, - ["explosive_arrow_ignite_damage_+%_final_per_stack"] = { - mod("Damage", "MORE", nil, 0, KeywordFlag.Ignite, { type = "Multiplier", var = "ExplosiveArrowFuse" }), + ["explosive_arrow_hit_and_ailment_damage_+%_final_per_stack"] = { + mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "Multiplier", var = "ExplosiveArrowFuse" }), }, }, #baseMod skill("radius", 15) -#baseMod skill("showAverage", true, { type = "SkillPart", skillPartList = { 1, 2 } }) -#baseMod mod("Damage", "MORE", 100, 0, 0, { type = "SkillPart", skillPartList = { 1, 2 } }, { type = "Multiplier", var = "ExplosiveArrowFuse", base = -100 }) +#baseMod skill("showAverage", true, { type = "SkillPart", skillPartList = { 1, 2, 3 } }) +#baseMod mod("Damage", "MORE", 100, 0, 0, { type = "SkillPart", skillPartList = { 1, 2, 3 } }, { type = "Multiplier", var = "ExplosiveArrowFuse", base = -100 }) #baseMod mod("Multiplier:ExplosiveArrowFuse", "BASE", 1, 0, 0, { type = "SkillPart", skillPart = 1 }) -#baseMod mod("Multiplier:ExplosiveArrowFuse", "BASE", 5, 0, 0, { type = "SkillPart", skillPart = 2 }) +#baseMod mod("Multiplier:ExplosiveArrowFuse", "BASE", 10, 0, 0, { type = "SkillPart", skillPart = 2 }) +#baseMod mod("Multiplier:ExplosiveArrowFuse", "BASE", 20, 0, 0, { type = "SkillPart", skillPart = 3 }) #mods #skill ShrapnelTrap @@ -1006,8 +1011,8 @@ local skills, mod, flag, skill = ... ["buff_time_passed_+%_other_than_temporal_chains"] = { mod("BuffExpireFaster", "MORE", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }), }, - ["curse_effect_+%_vs_players"] = { - mod("CurseEffectAgainstPlayer", "INC", nil), + ["curse_effect_+%_final_vs_players"] = { + mod("CurseEffectAgainstPlayer", "MORE", nil), }, ["temporal_chains_action_speed_+%_vs_rare_or_unique_final"] = { mod("TemporalChainsActionSpeed", "INC", nil, 0, 0, { type = "GlobalEffect", effectType = "Curse" }, { type = "Condition", var = "RareOrUnique" }), diff --git a/Export/Skills/act_int.txt b/Export/Skills/act_int.txt index 808060915..da53461ea 100644 --- a/Export/Skills/act_int.txt +++ b/Export/Skills/act_int.txt @@ -1024,6 +1024,9 @@ local skills, mod, flag, skill = ... ["base_resist_all_elements_%"] = { mod("ElementalResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), }, + ["base_chaos_damage_resistance_%"] = { + mod("ChaosResist", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + }, }, #baseMod skill("buffMinions", true) #baseMod skill("buffNotPlayer", true) diff --git a/Export/spec.lua b/Export/spec.lua index 7c07877f8..a15aeb462 100644 --- a/Export/spec.lua +++ b/Export/spec.lua @@ -4638,7 +4638,7 @@ return { PassiveTreeExpansionSpecialSkills={ [1]={ list=false, - name="Id", + name="Node", refTo="PassiveSkills", type="Key", width=270 @@ -4872,6 +4872,20 @@ return { refTo="GrantedEffects", type="Key", width=150 + }, + [12]={ + list=false, + name="GlobalGemLevelStat", + refTo="Stats", + type="Key", + width=150 + }, + [13]={ + list=false, + name="SecondarySupportName", + refTo="", + type="String", + width=150 } }, SkillMineVariations={ diff --git a/Modules/CalcPerform.lua b/Modules/CalcPerform.lua index e7ab66ec6..789c6c5e1 100644 --- a/Modules/CalcPerform.lua +++ b/Modules/CalcPerform.lua @@ -911,7 +911,7 @@ function calcs.perform(env) modDB.conditions["AffectedBy"..grantedEffect.name:gsub(" ","")] = true local cfg = { skillName = grantedEffect.name } local inc = modDB:Sum("INC", cfg, "CurseEffectOnSelf") + gemModList:Sum("INC", nil, "CurseEffectAgainstPlayer") - local more = modDB:More(cfg, "CurseEffectOnSelf") + local more = modDB:More(cfg, "CurseEffectOnSelf") * gemModList:Sum("MORE", nil, "CurseEffectAgainstPlayer") modDB:ScaleAddList(curseModList, (1 + inc / 100) * more) end elseif not enemyDB:Flag(nil, "Hexproof") or modDB:Flag(nil, "CursesIgnoreHexproof") then diff --git a/Modules/ModParser-3_0.lua b/Modules/ModParser-3_0.lua index 845a68255..463807122 100644 --- a/Modules/ModParser-3_0.lua +++ b/Modules/ModParser-3_0.lua @@ -1074,6 +1074,7 @@ local specialModList = { ["projectile attack hits deal up to 30%% more damage to targets at the start of their movement, dealing less damage to targets as the projectile travels farther"] = { flag("PointBlank") }, ["leech energy shield instead of life"] = { flag("GhostReaver") }, ["minions explode when reduced to low life, dealing 33%% of their maximum life as fire damage to surrounding enemies"] = { mod("ExtraMinionSkill", "LIST", { skillId = "MinionInstability" }) }, + ["minions explode when reduced to low life, dealing 33%% of their life as fire damage to surrounding enemies"] = { mod("ExtraMinionSkill", "LIST", { skillId = "MinionInstability" }) }, ["all bonuses from an equipped shield apply to your minions instead of you"] = { }, -- The node itself is detected by the code that handles it ["spend energy shield before mana for skill costs"] = { }, ["energy shield protects mana instead of life"] = { flag("EnergyShieldProtectsMana") }, @@ -2085,7 +2086,7 @@ end -- Generate list of cluster jewel skills local clusterJewelSkills = {} -for baseName, jewel in pairs(data["3_0"].clusterJewels) do +for baseName, jewel in pairs(data["3_0"].clusterJewels.jewels) do for skillId, skill in pairs(jewel.skills) do clusterJewelSkills[table.concat(skill.enchant, " "):lower()] = { mod("JewelData", "LIST", { key = "clusterJewelSkill", value = skillId }) } end diff --git a/changelog.txt b/changelog.txt index 9e10e4924..2bbbf16e8 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,11 @@ +VERSION[1.4.163][2020/03/16] + * Applied the skill reworks and balance changes for 3.10.0 + * New skills are still to come + * Fixed ordering of notables in Cluster Jewel wheels + * Various fixes to the layout of passives in Cluster Jewel wheels + * Fixed issue allowing 2 Notable passives to be crafted onto Small Cluster Jewels + * Duplicating passive trees now correctly copies allocated nodes in Cluster Jewel wheels + * Fixed Minion Instability VERSION[1.4.162][2020/03/15] * Fixed Cluster Jewels not updating their cluster layouts when edited * Fixed Rigwald's Curse not correctly converting Claw modifiers diff --git a/manifest.xml b/manifest.xml index a9b3b0bce..be66ebed0 100644 --- a/manifest.xml +++ b/manifest.xml @@ -1,6 +1,6 @@ - + @@ -14,7 +14,7 @@ - + @@ -29,12 +29,12 @@ - + - + @@ -42,8 +42,8 @@ - - + + @@ -68,7 +68,7 @@ - + @@ -80,7 +80,7 @@ - + @@ -88,7 +88,7 @@ - + @@ -153,21 +153,21 @@ - + - - + + - - - - - - - + + + + + + + @@ -190,32 +190,32 @@ - - - - - - - - - - - + + + + + + + + + + + - + - + - - - - - - + + + + + +